diff --git a/CHANGELOG.md b/CHANGELOG.md index dd52e4c50..12082dd66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ ### Changelog +#### Version 0.31.3 +* Pebble: Fix crash with DISMISS and OPEN actions + #### Version 0.31.2 * Pebble: Fix a regression that caused non-working mute, open and dismiss actions * Fix setting language to Czech manually diff --git a/app/build.gradle b/app/build.gradle index 4a2dc6f50..b637e8ea8 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -25,8 +25,8 @@ android { targetSdkVersion 27 // Note: always bump BOTH versionCode and versionName! - versionName "0.31.2" - versionCode 141 + versionName "0.31.3" + versionCode 142 vectorDrawables.useSupportLibrary = true } buildTypes { diff --git a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/externalevents/NotificationListener.java b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/externalevents/NotificationListener.java index 39e461b52..023541d5a 100644 --- a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/externalevents/NotificationListener.java +++ b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/externalevents/NotificationListener.java @@ -343,7 +343,6 @@ public class NotificationListener extends NotificationListenerService { notificationSpec.attachedActions.add(muteAction); mNotificationHandleLookup.add(notificationSpec.getId(), sbn.getPostTime()); // for both DISMISS and OPEN - //getPostTime()); // for both DISMISS and OPEN mPackageLookup.add(notificationSpec.getId(), sbn.getPackageName()); // for MUTE notificationBurstPrevention.put(source, cur_time); diff --git a/app/src/main/res/xml/changelog_master.xml b/app/src/main/res/xml/changelog_master.xml index 338a9430b..4fc4f2c8c 100644 --- a/app/src/main/res/xml/changelog_master.xml +++ b/app/src/main/res/xml/changelog_master.xml @@ -1,5 +1,8 @@ + + Pebble: Fix crash with DISMISS and OPEN actions + Pebble: Fix a regression that caused non-working mute, open and dismiss actions Fix setting language to Czech manually