Skip to content

Commit 4bae9f6

Browse files
committed
Version 1.1.9
1 parent 74fc217 commit 4bae9f6

5 files changed

Lines changed: 7 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# ChangeLog
22

3-
## Version 1.1.9-dev
3+
## Version 1.1.9 (12.06.2025)
44

55
### Android
66
- Bugfix: Subsequent notifications were ignored, when posting them without `trigger.at`: If no `trigger.at` was set, it was set to the current time, but due shallow copying the default properties, the `trigger`-property of the defaults was changed also to that time and all subsequent notifications were getting the time which resulted in being ignored.
77
- Fixes https://github.com/katzer/cordova-plugin-local-notifications/issues/2082
8+
89
## Version 1.1.8 (25.05.2025)
910

1011
### Android

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cordova-plugin-local-notification",
3-
"version": "1.1.9-dev",
3+
"version": "1.1.9",
44
"description": "Schedules and queries for local notifications",
55
"cordova": {
66
"id": "cordova-plugin-local-notification",

plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
2626
xmlns:android="http://schemas.android.com/apk/res/android"
2727
id="cordova-plugin-local-notification"
28-
version="1.1.9-dev">
28+
version="1.1.9">
2929

3030
<name>LocalNotification</name>
3131

www/local-notification.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ exports._commonOptions = {
4343
trigger: null,
4444
meta: {
4545
plugin: 'cordova-plugin-local-notification',
46-
version: '1.1.9-dev'
46+
version: '1.1.9'
4747
}
4848
}
4949

0 commit comments

Comments
 (0)