Commit 679c750d by Sebastián Katzer

Release version 0.7.7

parent 4220687d
## ChangeLog ## ChangeLog
#### Version 0.7.7 (03.01.2015)
- [bugfix:] NSInvalidArgumentException caused on iOS.
#### Version 0.7.6 (03.10.2014) #### Version 0.7.6 (03.10.2014)
- [bugfix:] `hasPermission` and `promptForPermission` let the app crash on iOS7 and older. - [bugfix:] `hasPermission` and `promptForPermission` let the app crash on iOS7 and older.
......
...@@ -47,7 +47,7 @@ cordova plugin add https://github.com/katzer/cordova-plugin-local-notifications. ...@@ -47,7 +47,7 @@ cordova plugin add https://github.com/katzer/cordova-plugin-local-notifications.
or to use the last stable version: or to use the last stable version:
```bash ```bash
# ~~ stable version ~~ # ~~ stable version ~~
cordova plugin add de.appplant.cordova.plugin.local-notification@0.7.6 cordova plugin add de.appplant.cordova.plugin.local-notification@0.7.7
``` ```
### Removing the Plugin from your project ### Removing the Plugin from your project
...@@ -63,12 +63,14 @@ Add the following xml to your config.xml to always use the latest version of thi ...@@ -63,12 +63,14 @@ Add the following xml to your config.xml to always use the latest version of thi
``` ```
or to use an specific version: or to use an specific version:
```xml ```xml
<gap:plugin name="de.appplant.cordova.plugin.local-notification" version="0.7.6" /> <gap:plugin name="de.appplant.cordova.plugin.local-notification" version="0.7.5" />
``` ```
More informations can be found [here][PGB_plugin]. More informations can be found [here][PGB_plugin].
## ChangeLog ## ChangeLog
#### Version 0.7.7 (03.01.2015)
- [bugfix:] NSInvalidArgumentException caused on iOS.
#### Version 0.7.6 (03.10.2014) #### Version 0.7.6 (03.10.2014)
- [bugfix:] `hasPermission` and `promptForPermission` let the app crash on iOS7 and older. - [bugfix:] `hasPermission` and `promptForPermission` let the app crash on iOS7 and older.
...@@ -76,11 +78,6 @@ More informations can be found [here][PGB_plugin]. ...@@ -76,11 +78,6 @@ More informations can be found [here][PGB_plugin].
- [bugfix:] Prevent possible crash when calling `cancelAll`. - [bugfix:] Prevent possible crash when calling `cancelAll`.
- [enhancement:] Do not inherit any notification defaults. - [enhancement:] Do not inherit any notification defaults.
#### Version 0.7.5 (29.09.2014)
- [enhancement:] __iOS8 Support__
- [feature:] New method `hasPermission` to ask if the user has granted to display local notifications.
- [feature:] New method `promptForPermission` to promt the user to grant permission to display local notifications.
#### Further informations #### Further informations
- See [CHANGELOG.md][changelog] to get the full changelog for the plugin. - See [CHANGELOG.md][changelog] to get the full changelog for the plugin.
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" <plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
id="de.appplant.cordova.plugin.local-notification" id="de.appplant.cordova.plugin.local-notification"
version="0.7.6"> version="0.7.7">
<name>LocalNotification</name> <name>LocalNotification</name>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment