Skip to content

Commit

Permalink
Release v1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
GitToTheHub committed Jan 24, 2025
1 parent 2a47484 commit 7fe309d
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 14 deletions.
11 changes: 7 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
# ChangeLog

## Version 1.1.1-dev
## Version 1.1.1 (24.01.2025)

### Android
- Improve documentation
- `SCHEDULE_EXACT_ALARM` is not pre-configured anymore by this plugin to have more flexibility. If you want exact alarms, see [Android inexact and exact alarms](README.md#android-inexact-and-exact-alarms)
- `SCHEDULE_EXACT_ALARM` is not pre-configured anymore by this plugin to have more flexibility. If you want exact alarms, see [Schedule exact alarms](README.md#android-schedule-exact-alarms).
- You can declare `USE_EXACT_ALARM` to set your app as a calendar or alarm clock app. See [Exact alarms: Define your app as a Calender or Alarm Clock app](README.md#exact-alarms-define-your-app-as-a-calender-or-alarm-clock-app)
- Renamed property `vibrate` to [androidChannelEnableVibration](README.md#property-androidchannelenablevibration)
- Image resources: Support `res://`, `www` and `shared://` for [attachments](README.md#property-attachments) and [attachments.personIcon](README.md#property-personicon)

### iOS
- Since iOS 14: Show a notification in the notification center when the app is in foreground, like on Android. Happens also if [iOSForeground](#property-iosforeground) is `false`.
- Since iOS 14: Show a notification in the notification center when the app is in foreground, like on Android. Happens also if [iOSForeground](README.md#property-iosforeground) is `false`.

### Common
- Improved documentation
- Renamed internal plugin method `check` to `hasPermission` to make it consistent with `cordova.plugins.notification.local.hasPermission`

## Version 1.1.0 (23.12.2024)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Install from local source:

## Upgrade Notice

In Version 1.1.0 some properties were changed. Please see [Changes since Version `1.1.0`](#changes-since-version-110)
In Version 1.1.0 and newer, some properties were changed. Please see [Changed properties](#changed-properties).

## Basics

Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-local-notification",
"version": "1.1.1-dev",
"version": "1.1.1",
"description": "Schedules and queries for local notifications",
"cordova": {
"id": "cordova-plugin-local-notification",
Expand All @@ -24,17 +24,17 @@
],
"engines": {
"cordovaDependencies": {
"1.0.0": {
"cordova": ">=12.0.0",
"cordova-android": ">=13.0.0",
"cordova-ios": ">=7.0.0",
"cordova-plugin-device": ">=3.0.0"
},
"0.9.0-beta.3": {
"cordova": ">=3.6.0",
"cordova-android": ">=6.0.0",
"cordova-ios": ">=4.3.0",
"cordova-plugin-device": ">=2.0.0"
},
"1.0.0": {
"cordova": ">=12.0.0",
"cordova-android": ">=13.0.0",
"cordova-ios": ">=7.0.0",
"cordova-plugin-device": ">=3.0.0"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-local-notification"
version="1.1.1-dev">
version="1.1.1">

<name>LocalNotification</name>

Expand Down
2 changes: 1 addition & 1 deletion www/local-notification.js
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ exports._defaults = {
...exports._commonOptions,
meta: {
plugin: 'cordova-plugin-local-notification',
version: '1.1.1-dev'
version: '1.1.1'
}
};

Expand Down

0 comments on commit 7fe309d

Please sign in to comment.