Bläddra i källkod

Release version 0.8.2

Sebastián Katzer 10 år sedan
förälder
incheckning
9b54ec61db
4 ändrade filer med 48 tillägg och 3 borttagningar
  1. 12 0
      CHANGELOG.md
  2. 35 0
      package.json
  3. 1 2
      plugin.xml
  4. 0 1
      src/android/LocalNotification.java

+ 12 - 0
CHANGELOG.md

@@ -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

+ 35 - 0
package.json

@@ -0,0 +1,35 @@
+{
+    "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"
+    }
+}

+ 1 - 2
plugin.xml

@@ -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 -->

+ 0 - 1
src/android/LocalNotification.java

@@ -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;