bump version, add changelogs

This commit is contained in:
Andreas Shimokawa 2018-11-15 20:30:15 +01:00
parent 53353663a9
commit b228c7b061
5 changed files with 17 additions and 3 deletions

View File

@ -1,5 +1,10 @@
### Changelog
#### Version 0.31.2
* Pebble: Fix a regression that caused non-working mute, open and dismiss actions
* Fix setting language to Czech manually
* Ignore summary notification from K-9 Mail (caused notification spamming)
#### Version 0.31.1
* Pebble: Fix crash when no canned replies have been set
* Pebble: Let the firmware show localized default canned replies if none have been set

View File

@ -25,8 +25,8 @@ android {
targetSdkVersion 27
// Note: always bump BOTH versionCode and versionName!
versionName "0.31.1"
versionCode 140
versionName "0.31.2"
versionCode 141
vectorDrawables.useSupportLibrary = true
}
buildTypes {

View File

@ -342,7 +342,8 @@ public class NotificationListener extends NotificationListenerService {
muteAction.type = NotificationSpec.Action.TYPE_SYNTECTIC_MUTE;
notificationSpec.attachedActions.add(muteAction);
mNotificationHandleLookup.add(notificationSpec.getId(), sbn.getPostTime()); // for both DISMISS and OPEN
mNotificationHandleLookup.add(notificationSpec.getId(), sbn.getId()); // for both DISMISS and OPEN
//getPostTime()); // for both DISMISS and OPEN
mPackageLookup.add(notificationSpec.getId(), sbn.getPackageName()); // for MUTE
notificationBurstPrevention.put(source, cur_time);

View File

@ -1,5 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<changelog>
<release version="0.31.2" versioncode="141">
<change>Pebble: Fix a regression that caused non-working mute, open and dismiss actions</change>
<change>Fix setting language to Czech manually</change>
<change>Ignore summary notification from K-9 Mail (caused notification spamming)</change>
</release>
<release version="0.31.1" versioncode="140">
<change>Pebble: Fix crash when no canned replies have been set</change>
<change>Pebble: Let the firmware show localized default canned replies if none have been set</change>

View File

@ -0,0 +1,3 @@
* Pebble: Fix a regression that caused non-working mute, open and dismiss actions
* Fix setting language to Czech manually
* Ignore summary notification from K-9 Mail (caused notification spamming)