Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 1.26 KB

CHANGELOG.md

File metadata and controls

20 lines (15 loc) · 1.26 KB

#Changelog

The versioning in this project is based on Semantic Versioning.

v0.4.0

The localizedDescription of an NSError will now be used as the alert's title by default. This is a breaking change from the previous versions. Make sure to use the NSLocalizedDescriptionKey in your custom errors instead of the NSLocalizedFailureReasonErrorKey. This change was made to be consistent with the OS X error presentation.

v0.3.0

Errors will now be queued to prevent several error messages from popping up at the same time. Also multiple error messages of the same type are coalesced and only displayed once.

v0.2.0

Introduce a new api to present view controller based errors. This api is especially made for overriding and displaying custom error dialogs, such as TSMessages. The default implementation looks the same as the regular api but is only shown if the passed-in view controller is visible.

v0.1.2

There are no changes to the source code in this release. Only the Podfile.lock of the example project has been updated.

v0.1.1

  • Minor fixes to support travis-ci as continuous integration server
  • Reformat the documentation comments to support cocoadocs parsing

v0.1.0

  • Initial release