diff --git a/CHANGELOG.md b/CHANGELOG.md index 003231f..845fba3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to the Daily Notification Plugin will be documented in this The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.1.6] - 2026-02-16 + +### Fixed + +- **Android**: Alarm set after edit/reschedule now fires. Removed `existingPendingIntent.cancel()` in the "cancel existing alarm before rescheduling" path so the PendingIntent passed to `setAlarmClock` is not cancelled (only `alarmManager.cancel()` is used), fixing no-fire on some devices. + ## [1.1.5] - 2026-02-16 ### Fixed diff --git a/README.md b/README.md index 5ac7dc4..cb5607a 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Daily Notification Plugin **Author**: Matthew Raymer -**Version**: 1.1.5 (see `package.json` for source of truth) +**Version**: 1.1.6 (see `package.json` for source of truth) **Created**: 2025-09-22 09:22:32 UTC **Last Updated**: 2025-12-23 UTC diff --git a/android/src/main/java/com/timesafari/dailynotification/FetchWorker.kt b/android/src/main/java/com/timesafari/dailynotification/FetchWorker.kt index 356b00e..81824b4 100644 --- a/android/src/main/java/com/timesafari/dailynotification/FetchWorker.kt +++ b/android/src/main/java/com/timesafari/dailynotification/FetchWorker.kt @@ -17,7 +17,7 @@ import org.json.JSONObject * Implements exponential backoff and network constraints * * @author Matthew Raymer - * @version 1.1.5 + * @version 1.1.6 */ class FetchWorker( appContext: Context, @@ -205,7 +205,7 @@ class FetchWorker( val entity = com.timesafari.dailynotification.entities.NotificationContentEntity( notificationId, - "1.1.5", // Plugin version + "1.1.6", // Plugin version null, // timesafariDid - can be set if available "daily", title, @@ -301,7 +301,7 @@ class FetchWorker( "timestamp": ${System.currentTimeMillis()}, "content": "Daily notification content", "source": "mock_generator", - "version": "1.1.5" + "version": "1.1.6" } """.trimIndent() return mockData.toByteArray() diff --git a/android/src/main/java/com/timesafari/dailynotification/NotifyReceiver.kt b/android/src/main/java/com/timesafari/dailynotification/NotifyReceiver.kt index 43daac2..ad2eb81 100644 --- a/android/src/main/java/com/timesafari/dailynotification/NotifyReceiver.kt +++ b/android/src/main/java/com/timesafari/dailynotification/NotifyReceiver.kt @@ -21,7 +21,7 @@ import kotlinx.coroutines.runBlocking * Implements TTL-at-fire logic and notification delivery * * @author Matthew Raymer - * @version 1.1.5 + * @version 1.1.6 */ /** * Source of schedule request - tracks which code path triggered scheduling @@ -251,7 +251,7 @@ class NotifyReceiver : BroadcastReceiver() { val roomStorage = com.timesafari.dailynotification.storage.DailyNotificationStorageRoom(context) val entity = com.timesafari.dailynotification.entities.NotificationContentEntity( notificationId, - "1.1.5", // Plugin version + "1.1.6", // Plugin version null, // timesafariDid - can be set if available "daily", config.title, diff --git a/android/src/main/java/com/timesafari/dailynotification/ReactivationManager.kt b/android/src/main/java/com/timesafari/dailynotification/ReactivationManager.kt index 21718f2..1d30ff2 100644 --- a/android/src/main/java/com/timesafari/dailynotification/ReactivationManager.kt +++ b/android/src/main/java/com/timesafari/dailynotification/ReactivationManager.kt @@ -247,7 +247,7 @@ class ReactivationManager(private val context: Context) { // Create new notification content entry for missed alarm val notification = com.timesafari.dailynotification.entities.NotificationContentEntity( notificationId, - "1.1.5", // Plugin version + "1.1.6", // Plugin version null, // timesafariDid "daily", // notificationType "Daily Notification", @@ -1014,7 +1014,7 @@ class ReactivationManager(private val context: Context) { // Create new notification content entry for missed alarm val notification = com.timesafari.dailynotification.entities.NotificationContentEntity( notificationId, - "1.1.5", // Plugin version + "1.1.6", // Plugin version null, // timesafariDid "daily", // notificationType "Daily Notification", diff --git a/android/src/main/java/com/timesafari/dailynotification/storage/DailyNotificationStorageRoom.java b/android/src/main/java/com/timesafari/dailynotification/storage/DailyNotificationStorageRoom.java index c43d5eb..8aef298 100644 --- a/android/src/main/java/com/timesafari/dailynotification/storage/DailyNotificationStorageRoom.java +++ b/android/src/main/java/com/timesafari/dailynotification/storage/DailyNotificationStorageRoom.java @@ -52,7 +52,7 @@ public class DailyNotificationStorageRoom { private final ExecutorService executorService; // Plugin version for migration tracking - private static final String PLUGIN_VERSION = "1.1.5"; + private static final String PLUGIN_VERSION = "1.1.6"; /** * Constructor diff --git a/docs/CONSUMING_APP_ANDROID_NOTES.md b/docs/CONSUMING_APP_ANDROID_NOTES.md index bb3ec68..36819ca 100644 --- a/docs/CONSUMING_APP_ANDROID_NOTES.md +++ b/docs/CONSUMING_APP_ANDROID_NOTES.md @@ -26,7 +26,7 @@ When logs show "Scheduling OS alarm" and "Updated schedule in database" but the 2. **Avoid double schedule** Ensure the app is not calling `scheduleDailyNotification` twice in quick succession for the same reminder (see above). -3. **Plugin fix (v1.1.5+)** +3. **Plugin fix (v1.1.6+)** The plugin no longer overwrites the app’s schedule row when handling rollover work that uses a `daily_rollover_*` id, so the app’s `nextRunAt` stays correct after a notification fires. --- diff --git a/ios/DailyNotificationPlugin.podspec b/ios/DailyNotificationPlugin.podspec index 3da2389..cdb766b 100644 --- a/ios/DailyNotificationPlugin.podspec +++ b/ios/DailyNotificationPlugin.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'DailyNotificationPlugin' - s.version = '1.1.5' + s.version = '1.1.6' s.summary = 'Daily Notification Plugin for Capacitor' s.license = 'MIT' s.homepage = 'https://github.com/timesafari/daily-notification-plugin' diff --git a/package.json b/package.json index 80e879a..f1960c7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@timesafari/daily-notification-plugin", - "version": "1.1.5", + "version": "1.1.6", "description": "TimeSafari Daily Notification Plugin - Enterprise-grade daily notification functionality with dual scheduling, callback support, TTL-at-fire logic, and comprehensive observability across Mobile (Capacitor) and Desktop (Electron) platforms", "main": "dist/plugin.js", "module": "dist/esm/index.js", diff --git a/src/definitions.ts b/src/definitions.ts index 2d08f77..c9b3aca 100644 --- a/src/definitions.ts +++ b/src/definitions.ts @@ -5,7 +5,7 @@ * Aligned with Android implementation and test requirements * * @author Matthew Raymer - * @version 1.1.5 (see package.json for source of truth) + * @version 1.1.6 (see package.json for source of truth) */ // Import SPI types from content-fetcher.ts diff --git a/src/observability.ts b/src/observability.ts index 6c7d086..c571899 100644 --- a/src/observability.ts +++ b/src/observability.ts @@ -3,7 +3,7 @@ * Provides structured logging, event codes, and health monitoring * * @author Matthew Raymer - * @version 1.1.5 + * @version 1.1.6 */ import { diff --git a/src/web.ts b/src/web.ts index 2424d68..f5e1d9c 100644 --- a/src/web.ts +++ b/src/web.ts @@ -7,7 +7,7 @@ * This implementation provides clear error messages for all methods. * * @author Matthew Raymer - * @version 1.1.5 + * @version 1.1.6 */ import type {