cordova-plugin-local-notifications-mm
Advanced tools
Comparing version 1.0.10 to 1.0.11
{ | ||
"name": "cordova-plugin-local-notifications-mm", | ||
"cordova_name": "Cordova LocalNotification Plugin", | ||
"version": "1.0.10", | ||
"description": "Schedules and queries for local notifications", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
"version": "1.0.11", | ||
"description": "Schedule, trigger and query local notifications on iOS and Android", | ||
"cordova": { | ||
"id": "de.appplant.cordova.plugin.local-notification", | ||
"platforms": [ | ||
"ios", | ||
"android", | ||
"windows" | ||
] | ||
}, | ||
@@ -17,13 +21,7 @@ "repository": { | ||
"local notification", | ||
"cordova", | ||
"ecosystem:cordova", | ||
"cordova-ios", | ||
"cordova-android", | ||
"cordova-ios", | ||
"cordova-windows" | ||
], | ||
"platforms": [ | ||
"ios", | ||
"android", | ||
"windows" | ||
], | ||
"engines": [ | ||
@@ -35,6 +33,2 @@ { | ||
{ | ||
"name": "cordova-plugman", | ||
"version": ">=4.3.0" | ||
}, | ||
{ | ||
"name": "cordova-windows", | ||
@@ -44,8 +38,4 @@ "version": ">=4.2.0" | ||
], | ||
"dependencies": { | ||
"cordova-plugin-device": "*", | ||
"cordova-plugin-app-event": ">=1.1.0" | ||
}, | ||
"author": "Sebastián Katzer", | ||
"license": "Apache-2.0", | ||
"license": "Apache 2.0", | ||
"bugs": { | ||
@@ -52,0 +42,0 @@ "url": "https://github.com/katzer/cordova-plugin-local-notifications/issues" |
@@ -5,2 +5,14 @@ | ||
## Important notice | ||
1. Its been a while that the plugin has received major updates and bug fixes. My (free)time is limited and I have multiple projects to maintain. Once I've updated my background-mode plugin the local-notification plugin will get an official release supporting ios10. The ios10 branch will be merged into the master as well. | ||
2. For the future I am looking for other opportunities to support and enhance the plugin. That might be a crowdfunding campain or adding other core maintainers. Everyone with an serious interest is welcome to contact me! | ||
3. I am aware of the growing number of open issues and pull. Therefore, there's a new ticket template that can be found [here][ticket_template]. For every new issue please add an filled template. That will help rwillett and me to faster response to your issue. If you ignore this template, we'll ignore your issue. | ||
__UPDATE (22.05.2017)__ I've released v0.8.5 with contains the code from ios10 branch as it is. I will start working on a new major version while dropping support for older SDKs. I will try to include all you PRs. | ||
Thanks for using my plugin and for your support!</br> | ||
Sebastián Katzer | ||
Cordova Local-Notification Plugin | ||
@@ -34,3 +46,3 @@ ================================= | ||
Find out more informations [here][wiki_platforms] in our wiki. | ||
Find out more information [here][wiki_platforms] in our wiki. | ||
@@ -41,9 +53,9 @@ | ||
Find out more informations [here][wiki_installation] in our wiki. | ||
Find out more information [here][wiki_installation] in our wiki. | ||
## I want to get a quick overview | ||
All wiki pages contain samples, but for a quick overview the sample section may be the fastest way. | ||
All wiki pages contain samples, but for a quick overview, the sample section may be the fastest way. | ||
Find out more informations [here][wiki_samples] in our wiki. | ||
Find out more information [here][wiki_samples] in our wiki. | ||
@@ -55,3 +67,3 @@ | ||
Find out more about how to schedule single, multiple, delayed or repeating local notifications [here][wiki_schedule].<br> | ||
Informations about events like _click_ or _trigger_ can be found [here][wiki_events]. | ||
Information about events like _click_ or _trigger_ can be found [here][wiki_events]. | ||
@@ -62,11 +74,11 @@ To get a deep overview we recommend to read about all the topics in our [wiki][wiki] and try out the [Kitchen Sink App][wiki_kitchensink] | ||
## I want to see the plugin in action | ||
The plugin offers a kitchen sink sample app. Check out the cordova project and run the app directly from your command line or preferred IDE. | ||
The plugin offers a kitchen sink sample app. Check out the Cordova project and run the app directly from your command line or preferred IDE. | ||
Find out more informations [here][wiki_kitchensink] in our wiki. | ||
Find out more information [here][wiki_kitchensink] in our wiki. | ||
## What's new | ||
We are proud to announce our newest release version 0.8.x. Beside the hard work at the office and at the weekends it contains a lot of goodies, new features and easy to use APIs. | ||
We are proud to announce our newest release version 0.8.x. Besides the hard work at the office and at the weekends it contains a lot of goodies, new features and easy to use APIs. | ||
Find out more informations [here][wiki_changelog] in our wiki. | ||
Find out more information [here][wiki_changelog] in our wiki. | ||
@@ -78,8 +90,10 @@ | ||
```javascript | ||
var date = new Date(); | ||
cordova.plugins.notification.local.schedule({ | ||
id: 1, | ||
title: "Production Jour fixe", | ||
text: "Duration 1h", | ||
firstAt: monday_9_am, | ||
every: "week", | ||
title: "Message Title", | ||
message: "Message Text", | ||
firstAt: date, // firstAt and at properties must be an IETF-compliant RFC 2822 timestamp | ||
every: "week", // this also could be minutes i.e. 25 (int) | ||
sound: "file://sounds/reminder.mp3", | ||
@@ -95,9 +109,9 @@ icon: "http://icons.com/?cal_id=1", | ||
Find out more informations [here][wiki_samples] in our wiki. | ||
Find out more information [here][wiki_samples] in our wiki. | ||
## I would like to propose new features | ||
We appricate any feature proposal and support for their development. Please describe them [here][feature_proposal_issue]. | ||
We appreciate any feature proposal and support for their development. Please describe them [here][feature_proposal_issue]. | ||
Find out more informations [here][wiki_next] in our wiki. | ||
Find out more information [here][wiki_next] in our wiki. | ||
@@ -128,2 +142,3 @@ ## Supporting | ||
[ticket_template]: https://github.com/katzer/cordova-plugin-local-notifications/issues/1188 | ||
[cordova]: https://cordova.apache.org | ||
@@ -130,0 +145,0 @@ [wiki]: https://github.com/katzer/cordova-plugin-local-notifications/wiki |
@@ -422,3 +422,3 @@ /* | ||
if (device.platform != 'iOS') { | ||
if (device.platform != 'iOS' && device.platform != 'Android') { | ||
fn(true); | ||
@@ -425,0 +425,0 @@ return; |
@@ -74,2 +74,4 @@ /* | ||
defaults.color = undefined; | ||
defaults.vibrate = undefined; | ||
defaults.channelParams = {}; | ||
break; | ||
@@ -96,2 +98,3 @@ } | ||
options.data = this.getValueFor(options, 'data', 'json'); | ||
options.channelParams = this.getValueFor(options, 'channelParams'); | ||
@@ -98,0 +101,0 @@ if (defaults.hasOwnProperty('autoClear')) { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Wildcard dependency
QualityPackage has a dependency with a floating version range. This can cause issues if the dependency publishes a new major version.
Found 1 instance in 1 package
No tests
QualityPackage does not have any tests. This is a strong signal of a poorly maintained or low quality package.
Found 1 instance in 1 package
Unidentified License
License(Experimental) Something that seems like a license was found, but its contents could not be matched with a known license.
Found 1 instance in 1 package
240484
0
37
2041
0
1
148
- Removedcordova-plugin-app-event@>=1.1.0
- Removedcordova-plugin-device@*
- Removedcordova-plugin-app-event@1.2.2(transitive)
- Removedcordova-plugin-device@3.0.0(transitive)