mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-03 17:02:13 +01:00
bump version, add changelogs
This commit is contained in:
parent
53353663a9
commit
b228c7b061
@ -1,5 +1,10 @@
|
|||||||
### Changelog
|
### 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
|
#### Version 0.31.1
|
||||||
* Pebble: Fix crash when no canned replies have been set
|
* Pebble: Fix crash when no canned replies have been set
|
||||||
* Pebble: Let the firmware show localized default canned replies if none have been set
|
* Pebble: Let the firmware show localized default canned replies if none have been set
|
||||||
|
@ -25,8 +25,8 @@ android {
|
|||||||
targetSdkVersion 27
|
targetSdkVersion 27
|
||||||
|
|
||||||
// Note: always bump BOTH versionCode and versionName!
|
// Note: always bump BOTH versionCode and versionName!
|
||||||
versionName "0.31.1"
|
versionName "0.31.2"
|
||||||
versionCode 140
|
versionCode 141
|
||||||
vectorDrawables.useSupportLibrary = true
|
vectorDrawables.useSupportLibrary = true
|
||||||
}
|
}
|
||||||
buildTypes {
|
buildTypes {
|
||||||
|
@ -342,7 +342,8 @@ public class NotificationListener extends NotificationListenerService {
|
|||||||
muteAction.type = NotificationSpec.Action.TYPE_SYNTECTIC_MUTE;
|
muteAction.type = NotificationSpec.Action.TYPE_SYNTECTIC_MUTE;
|
||||||
notificationSpec.attachedActions.add(muteAction);
|
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
|
mPackageLookup.add(notificationSpec.getId(), sbn.getPackageName()); // for MUTE
|
||||||
|
|
||||||
notificationBurstPrevention.put(source, cur_time);
|
notificationBurstPrevention.put(source, cur_time);
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<changelog>
|
<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">
|
<release version="0.31.1" versioncode="140">
|
||||||
<change>Pebble: Fix crash when no canned replies have been set</change>
|
<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>
|
<change>Pebble: Let the firmware show localized default canned replies if none have been set</change>
|
||||||
|
3
fastlane/metadata/android/en-US/changelogs/141.txt
Normal file
3
fastlane/metadata/android/en-US/changelogs/141.txt
Normal 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)
|
Loading…
Reference in New Issue
Block a user