Pebble: Temporarily disable broken autoremove notification feature

This commit is contained in:
Andreas Shimokawa 2018-11-03 20:49:49 +01:00
parent 61872b7bbd
commit 17a82f09f2
3 changed files with 5 additions and 1 deletions

View File

@ -3,6 +3,7 @@
#### Version 0.31.0 (NEXT)
* Pebble: Send all wearable notification actions (not only reply)
* Pebble: Always allow reply action even if untested features are turned off
* Pebble: Temporarily disable broken autoremove notification feature
* Amazfit Bip: Allow flashing latest gps firmware (Mili_dth.gps)
* Mi Band 3/Amazfit Bip/Amazfit Cor: Send Fahrenheit if units are set to imperial
* Roidmi 3: Fix and enable support
@ -10,6 +11,7 @@
* Prevent re-sending old notifications to the wearable
* Enhancement and Fixes for Bengali Transliteration
#### Version 0.30.0
* Amazfit Bip + Mi Band 3: Support for right to left display (configurable) (#976)
* Add Arabic, Bengali Farsi, Persian, Scandinavian transliteration

View File

@ -396,7 +396,7 @@ public class NotificationListener extends NotificationListenerService {
@Override
public void onNotificationRemoved(StatusBarNotification sbn) {
if (shouldIgnore(sbn))
if (shouldIgnore(sbn) || true) // FIXME: DISABLED for now
return;
Prefs prefs = GBApplication.getPrefs();

View File

@ -379,12 +379,14 @@
android:key="pebble_reconnect_attempts"
android:maxLength="4"
android:title="@string/pref_title_pebble_reconnect_attempts" />
<!--
<CheckBoxPreference
android:layout="@layout/preference_checkbox"
android:defaultValue="false"
android:key="autoremove_notifications"
android:summary="@string/pref_summary_autoremove_notifications"
android:title="@string/pref_title_autoremove_notifications" />
-->
<ListPreference
android:key="pebble_pref_privacy_mode"
android:title="@string/pref_title_pebble_privacy_mode"