Commit 9b54ec61 by Sebastián Katzer

Release version 0.8.2

parent d74caf68
......@@ -3,6 +3,18 @@ ChangeLog
Please also read the [Upgrade Guide](https://github.com/katzer/cordova-plugin-local-notifications/wiki/Upgrade-Guide) for more information.
#### Version 0.8.2 (08.11.2015)
- Submitted to npm
- Initial support for the `windows` platform
- Re-add autoCancel option on Android
- Warn about unknown properties
- Fix crash on iOS 9
- Fixed webView-Problems with cordova-android 4.0
- Fix get* with single id
- Fix issue when passing data in milliseconds
- Update device plugin id
- Several other fixes
#### Version 0.8.1 (08.03.2015)
- Fix incompatibility with cordova version 3.5-3.0
......
{
"version": "0.8.2",
"name": "de.appplant.cordova.plugin.local-notification",
"cordova_name": "Cordova LocalNotification Plugin",
"description": "Cordova plugin to schedule and query local notifications",
"author": "Sebastián Katzer",
"license": "Apache 2.0",
"repo": "https://github.com/katzer/cordova-plugin-local-notifications.git",
"issue": "https://github.com/katzer/cordova-plugin-local-notifications/issues",
"keywords": [
"appplant",
"notification",
"local notification",
"cordova",
"ecosystem:cordova",
"cordova-android",
"cordova-ios",
"cordova-windows"
],
"platforms": [
"ios",
"android",
"windows"
],
"engines": [
{
"name": "cordova",
"version": ">=3.6.0"
}
],
"repository": {
"type": "git",
"url": "https://github.com/katzer/cordova-plugin-local-notifications.git"
}
}
......@@ -3,7 +3,7 @@
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="de.appplant.cordova.plugin.local-notification"
version="0.8.2-dev">
version="0.8.2">
<name>LocalNotification</name>
......@@ -20,7 +20,6 @@
<!-- cordova -->
<engines>
<engine name="cordova" version=">=3.6.0" />
<engine name="cordova" version="<4.0.0" />
</engines>
<!-- dependencies -->
......
......@@ -24,7 +24,6 @@
package de.appplant.cordova.plugin.localnotification;
import android.app.Activity;
import android.os.Build;
import org.apache.cordova.CallbackContext;
import org.apache.cordova.CordovaInterface;
......
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