diff --git a/CHANGELOG.md b/CHANGELOG.md index c69264c8f..5abc7e0ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ ###Changelog -####Version next +####Version 0.17.2 * Pebble: Fix temperature unit in Timestyle Pebble watchface +* Add optional Cyrillic transliteration (for devices lacking the font) ####Version 0.17.1 * Pebble: Fix installation of some watchapps diff --git a/app/build.gradle b/app/build.gradle index 23646f821..17ca06fd4 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -26,8 +26,8 @@ android { targetSdkVersion 23 // note: always bump BOTH versionCode and versionName! - versionName "0.17.1" - versionCode 82 + versionName "0.17.2" + versionCode 83 } buildTypes { release { diff --git a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/DeviceCommunicationService.java b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/DeviceCommunicationService.java index da4fa9a06..b2d9be35f 100644 --- a/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/DeviceCommunicationService.java +++ b/app/src/main/java/nodomain/freeyourgadget/gadgetbridge/service/DeviceCommunicationService.java @@ -178,6 +178,7 @@ public class DeviceCommunicationService extends Service implements SharedPrefere String action = intent.getAction(); if (action.equals(GBDevice.ACTION_DEVICE_CHANGED)) { GBDevice device = intent.getParcelableExtra(GBDevice.EXTRA_DEVICE); + // FIXME: mGBDevice was null here once if (mGBDevice.equals(device)) { mGBDevice = device; boolean enableReceivers = mDeviceSupport != null && (mDeviceSupport.useAutoConnect() || mGBDevice.isInitialized()); diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index e219e6106..2af54dfc4 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -82,7 +82,7 @@ Do Not Disturb Stop unwanted Notifications from being sent based on the Do Not Disturb mode. Transliteration - Use, if the device can not work with your language + Use, if you device has no support for your language's font (Currently Cyrillic only) always when screen is off diff --git a/app/src/main/res/xml/changelog_master.xml b/app/src/main/res/xml/changelog_master.xml index 99edf2ac1..1c84aab98 100644 --- a/app/src/main/res/xml/changelog_master.xml +++ b/app/src/main/res/xml/changelog_master.xml @@ -1,7 +1,8 @@ - + Pebble: Fix temperature unit in Timestyle Pebble watchface + Add optional Cyrillic transliteration (for devices lacking the font) Pebble: Fix installation of some watchapps @@ -11,10 +12,7 @@ Add weather support through "Weather Notification" app Various fixes for K9 mail when using the generic notification receiver - Added transliteration support for Russian characters into English - Added transliteration option in the settings screen Add a preference to hide the notification icon of Gadgetbridge - Pebble: Support for build-in weather system app (FW 4.x) Pebble: Add weather support for various watchfaces Pebble: Add option to automatically delete notifications that got dismissed on the phone