Commit ed859d07 by Sebastián Katzer

Prepare release of v0.8.3

parent 652535e5
...@@ -3,23 +3,28 @@ ChangeLog ...@@ -3,23 +3,28 @@ ChangeLog
Please also read the [Upgrade Guide](https://github.com/katzer/cordova-plugin-local-notifications/wiki/Upgrade-Guide) for more information. Please also read the [Upgrade Guide](https://github.com/katzer/cordova-plugin-local-notifications/wiki/Upgrade-Guide) for more information.
#### Version 0.8.3 (not yet released) #### Version 0.8.3 (03.01.2016)
- Support cordova-ios@4 and the new WKWebView Engine - Platform enhancements
- New `color` attribute for Android (Thanks to @Eusebius1920) - Support for the `Crosswalk Engine`
- New `quarter` intervall for iOS & Android - Support for `cordova-ios@4` and the `WKWebView Engine`
- Made small icon optional (Android) - Support for `cordova-windows@4` and `Windows 10` without using hooks
- Decreased time-frame for trigger event (iOS) - Enhancements
- Windows platform works without hooks - New `color` attribute for Android (Thanks to @Eusebius1920)
- `update` checks for permission like `schedule` - New `quarter` intervall for iOS & Android
- Fixed #634 option to skip permission check - `smallIcon` is optional (Android)
- Fixed #588 crash when basename & extension can't be extracted (Android) - `update` checks for permission like _schedule_
- Fixed #732 loop between update and trigger (Android) - Decreased time-frame for trigger event (iOS)
- Fixed #710 crash due to >500 notifications (Android) - Force `every:` to be a string on iOS
- Fixed #682 crash while resuming app from notification (Android 6) - Bug fixes
- Fixed #612 cannot update icon or sound (Android) - Fixed #634 option to skip permission check
- Fixed crashing `get(ID)` if notification doesn't exist - Fixed #588 crash when basename & extension can't be extracted (Android)
- Fixed #569 `getScheduled` returns two items per notification - Fixed #732 loop between update and trigger (Android)
- Fixed #700 notifications appears on bootup - Fixed #710 crash due to >500 notifications (Android)
- Fixed #682 crash while resuming app from notification (Android 6)
- Fixed #612 cannot update icon or sound (Android)
- Fixed crashing get(ID) if notification doesn't exist
- Fixed #569 getScheduled returns two items per notification
- Fixed #700 notifications appears on bootup
#### Version 0.8.2 (08.11.2015) #### Version 0.8.2 (08.11.2015)
- Submitted to npm - Submitted to npm
......
...@@ -24,10 +24,11 @@ For example, applications that depend on servers for messages or data can poll t ...@@ -24,10 +24,11 @@ For example, applications that depend on servers for messages or data can poll t
## Supported Platforms ## Supported Platforms
The current 0.8 branch supports the following platforms: The current 0.8 branch supports the following platforms:
- __iOS__ _(including iOS8)_<br> - __iOS__ _(>= 8)_<br>
- __Android__ _(SDK >=7)_ - __Android__ _(SDK >=7)_
- __Windows 8.1__ _(added with v0.8.2)_ - __Windows 8.1__ _(added with v0.8.2)_
- __Windows Phone 8.1__ _(added with v0.8.2)_ - __Windows Phone 8.1__ _(added with v0.8.2)_
- __Windows 10__ _(added with v0.8.3)_
Find out more informations [here][wiki_platforms] in our wiki. Find out more informations [here][wiki_platforms] in our wiki.
...@@ -114,7 +115,7 @@ Thank you! ...@@ -114,7 +115,7 @@ Thank you!
This software is released under the [Apache 2.0 License][apache2_license]. This software is released under the [Apache 2.0 License][apache2_license].
© 2013-2015 appPlant UG, Inc. All rights reserved © 2013-2016 appPlant UG, Inc. All rights reserved
[cordova]: https://cordova.apache.org [cordova]: https://cordova.apache.org
......
{ {
"version": "0.8.2", "name": "de.appplant.cordova.plugin.local-notification",
"name": "de.appplant.cordova.plugin.local-notification", "cordova_name": "Cordova LocalNotification Plugin",
"cordova_name": "Cordova LocalNotification Plugin", "version": "0.8.2",
"description": "Cordova plugin to schedule and query local notifications", "description": "Schedules and queries for local notifications",
"author": "Sebastián Katzer", "scripts": {
"license": "Apache 2.0", "test": "echo \"Error: no test specified\" && exit 1"
"repo": "https://github.com/katzer/cordova-plugin-local-notifications.git", },
"issue": "https://github.com/katzer/cordova-plugin-local-notifications/issues", "repository": {
"keywords": [ "type": "git",
"appplant", "url": "git+https://github.com/katzer/cordova-plugin-local-notifications.git"
"notification", },
"local notification", "keywords": [
"cordova", "appplant",
"ecosystem:cordova", "notification",
"cordova-android", "local notification",
"cordova-ios", "cordova",
"cordova-windows" "ecosystem:cordova",
], "cordova-android",
"platforms": [ "cordova-ios",
"ios", "cordova-windows"
"android", ],
"windows" "platforms": [
], "ios",
"engines": [ "android",
{ "windows"
"name": "cordova", ],
"version": ">=3.6.0" "engines": [
} {
], "name": "cordova",
"repository": { "version": ">=3.6.0"
"type": "git", },
"url": "https://github.com/katzer/cordova-plugin-local-notifications.git" {
"name": "cordova-plugman",
"version": ">=4.3.0"
},
{
"name": "cordova-windows",
"version": ">=4.2.0"
} }
],
"dependencies": {
"cordova-plugin-device": "*",
"cordova-plugin-app-event": ">=1.1.0"
},
"author": "Sebastián Katzer",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/katzer/cordova-plugin-local-notifications/issues"
},
"homepage": "https://github.com/katzer/cordova-plugin-local-notifications#readme"
} }
...@@ -21,6 +21,7 @@ ...@@ -21,6 +21,7 @@
<engines> <engines>
<engine name="cordova" version=">=3.6.0" /> <engine name="cordova" version=">=3.6.0" />
<engine name="cordova-plugman" version=">=4.3.0" /> <engine name="cordova-plugman" version=">=4.3.0" />
<engine name="cordova-windows" version=">=4.2.0" />
</engines> </engines>
<!-- dependencies --> <!-- dependencies -->
......
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