Procházet zdrojové kódy

Prepare release of v0.8.3

Sebastián Katzer před 10 roky
rodič
revize
ed859d07c8
4 změnil soubory, kde provedl 75 přidání a 51 odebrání
  1. 22 17
      CHANGELOG.md
  2. 3 2
      README.md
  3. 49 32
      package.json
  4. 1 0
      plugin.xml

+ 22 - 17
CHANGELOG.md

@@ -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.
 
-#### Version 0.8.3 (not yet released)
-- Support cordova-ios@4 and the new WKWebView Engine
-- New `color` attribute for Android (Thanks to @Eusebius1920)
-- New `quarter` intervall for iOS & Android
-- Made small icon optional (Android)
-- Decreased time-frame for trigger event (iOS)
-- Windows platform works without hooks
-- `update` checks for permission like `schedule`
-- Fixed #634 option to skip permission check
-- Fixed #588 crash when basename & extension can't be extracted (Android)
-- Fixed #732 loop between update and trigger (Android)
-- 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.3 (03.01.2016)
+- Platform enhancements
+ - Support for the `Crosswalk Engine`
+ - Support for `cordova-ios@4` and the `WKWebView Engine`
+ - Support for `cordova-windows@4` and `Windows 10` without using hooks
+- Enhancements
+ - New `color` attribute for Android (Thanks to @Eusebius1920)
+ - New `quarter` intervall for iOS & Android
+ - `smallIcon` is optional (Android)
+ - `update` checks for permission like _schedule_
+ - Decreased time-frame for trigger event (iOS)
+ - Force `every:` to be a string on iOS
+- Bug fixes
+ - Fixed #634 option to skip permission check
+ - Fixed #588 crash when basename & extension can't be extracted (Android)
+ - Fixed #732 loop between update and trigger (Android)
+ - 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)
 - Submitted to npm

+ 3 - 2
README.md

@@ -24,10 +24,11 @@ For example, applications that depend on servers for messages or data can poll t
 
 ## Supported Platforms
 The current 0.8 branch supports the following platforms:
-- __iOS__ _(including iOS8)_<br>
+- __iOS__ _(>= 8)_<br>
 - __Android__ _(SDK >=7)_
 - __Windows 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.
 
@@ -114,7 +115,7 @@ Thank you!
 
 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

+ 49 - 32
package.json

@@ -1,35 +1,52 @@
 {
-    "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"
+  "name": "de.appplant.cordova.plugin.local-notification",
+  "cordova_name": "Cordova LocalNotification Plugin",
+  "version": "0.8.2",
+  "description": "Schedules and queries for local notifications",
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/katzer/cordova-plugin-local-notifications.git"
+  },
+  "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"
+    },
+    {
+      "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"
 }

+ 1 - 0
plugin.xml

@@ -21,6 +21,7 @@
     <engines>
         <engine name="cordova" version=">=3.6.0" />
         <engine name="cordova-plugman" version=">=4.3.0" />
+        <engine name="cordova-windows" version=">=4.2.0" />
     </engines>
 
     <!-- dependencies -->