mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-25 08:05:55 +01:00
Update changelog
This commit is contained in:
parent
e91ad80d27
commit
8bd7e103d0
15
CHANGELOG.md
15
CHANGELOG.md
@ -2,12 +2,15 @@
|
|||||||
|
|
||||||
#### Next release (WIP)
|
#### Next release (WIP)
|
||||||
* Initial support for Amazfit Balance
|
* Initial support for Amazfit Balance
|
||||||
|
* Initial support for Amazfit Active
|
||||||
* Initial support for Femometer Vinca II
|
* Initial support for Femometer Vinca II
|
||||||
* Initial support for Mijia LYWSD02MMC variant
|
* Initial support for Mijia LYWSD02MMC variant
|
||||||
* Initial support for Sony Wena 3
|
* Initial support for Sony Wena 3
|
||||||
* Experimental support for Sony WF-1000XM5
|
* Experimental support for Sony WF-1000XM5
|
||||||
* Experimental support for Amazfit Active
|
|
||||||
* Experimental support for Amazfit Active Edge
|
* Experimental support for Amazfit Active Edge
|
||||||
|
* Experimental support for Mi Band 8
|
||||||
|
* Experimental support for Mi Watch Lite
|
||||||
|
* Experimental support for Redmi Watch 3 Lite
|
||||||
* Amazfit Band 7: Add alexa menu entries
|
* Amazfit Band 7: Add alexa menu entries
|
||||||
* Amazfit GTR 3 Pro: Fix firmware and watchface upload
|
* Amazfit GTR 3 Pro: Fix firmware and watchface upload
|
||||||
* Amazfit T-Rex: Fix activity summary parsing
|
* Amazfit T-Rex: Fix activity summary parsing
|
||||||
@ -15,7 +18,9 @@
|
|||||||
* AsteroidOS: Fix media info
|
* AsteroidOS: Fix media info
|
||||||
* AsteroidOS: Fix notification dismissal
|
* AsteroidOS: Fix notification dismissal
|
||||||
* Bangle.js: Add loyalty cards integration with Catima
|
* Bangle.js: Add loyalty cards integration with Catima
|
||||||
|
* Bangle.js: Improve handling of chinese characters
|
||||||
* Bangle.js: Lower threshold for low battery warning
|
* Bangle.js: Lower threshold for low battery warning
|
||||||
|
* Bangle.js: Recover from device initialization failure
|
||||||
* Casio GBX100/GBD-200: Fix first connect
|
* Casio GBX100/GBD-200: Fix first connect
|
||||||
* Fossil/Skagen Hybrids: Add new navigation app
|
* Fossil/Skagen Hybrids: Add new navigation app
|
||||||
* Fossil/Skagen Hybrids: Allow configuring call rejection method
|
* Fossil/Skagen Hybrids: Allow configuring call rejection method
|
||||||
@ -24,20 +29,28 @@
|
|||||||
* Fossil/Skagen Hybrids: Show device specific settings in more logical order
|
* Fossil/Skagen Hybrids: Show device specific settings in more logical order
|
||||||
* Message privacy: Add mode Hide only body
|
* Message privacy: Add mode Hide only body
|
||||||
* Mijia LYWSD02: Add battery
|
* Mijia LYWSD02: Add battery
|
||||||
|
* Mijia LYWSD02: Add low battery notification
|
||||||
* Mijia LYWSD02: Set temperature unit
|
* Mijia LYWSD02: Set temperature unit
|
||||||
* Mijia LYWSD02: Fix battery drain while connected
|
* Mijia LYWSD02: Fix battery drain while connected
|
||||||
* PineTime: Display app name for VoIP app calls
|
* PineTime: Display app name for VoIP app calls
|
||||||
|
* PineTime: Honor Sync time setting on connect
|
||||||
|
* PineTime: Improve notification handling
|
||||||
* PineTime: Reduce weather memory usage
|
* PineTime: Reduce weather memory usage
|
||||||
* Withings Steel HR: Fix crash when calibrating hands on the nightly
|
* Withings Steel HR: Fix crash when calibrating hands on the nightly
|
||||||
* Zepp OS: Add blood oxygen graph
|
* Zepp OS: Add blood oxygen graph
|
||||||
* Zepp OS: Add workout codes for hiking and outdoor swimming
|
* Zepp OS: Add workout codes for hiking and outdoor swimming
|
||||||
|
* Zepp OS: Attempt to fix activity fetch operation getting stuck
|
||||||
* Zepp OS: Display swimming activity data
|
* Zepp OS: Display swimming activity data
|
||||||
* Zepp OS: Fix health settings on older Zepp OS versions
|
* Zepp OS: Fix health settings on older Zepp OS versions
|
||||||
* Zepp OS: Fix setting of unknown button press apps
|
* Zepp OS: Fix setting of unknown button press apps
|
||||||
* Zepp OS: Fix sunrise and moon dates being off by local time + UTC offset
|
* Zepp OS: Fix sunrise and moon dates being off by local time + UTC offset
|
||||||
* Zepp OS: Map hiking, outdoor swimming, climbing and table tennis activity types
|
* Zepp OS: Map hiking, outdoor swimming, climbing and table tennis activity types
|
||||||
* Add transliteration for Latvian and Common Symbols
|
* Add transliteration for Latvian and Common Symbols
|
||||||
|
* Autodetect OsmAnd package name and make it configurable
|
||||||
|
* Make GMaps navigation handler follow the "navigation forwarding" setting
|
||||||
|
* Support selecting enabled navigation apps
|
||||||
* Allow ignore notifications from work profile apps
|
* Allow ignore notifications from work profile apps
|
||||||
|
* Display alias in low battery notification
|
||||||
* Fix emoji when a transliterator is enabled
|
* Fix emoji when a transliterator is enabled
|
||||||
* Fix UV Index and rain probability for some weather apps
|
* Fix UV Index and rain probability for some weather apps
|
||||||
* Improve device discovery stability and fix freezes
|
* Improve device discovery stability and fix freezes
|
||||||
|
@ -32,6 +32,11 @@ import nodomain.freeyourgadget.gadgetbridge.service.devices.huami.AbstractHuami2
|
|||||||
import nodomain.freeyourgadget.gadgetbridge.service.devices.huami.amazfitactiveedge.AmazfitActiveEdgeSupport;
|
import nodomain.freeyourgadget.gadgetbridge.service.devices.huami.amazfitactiveedge.AmazfitActiveEdgeSupport;
|
||||||
|
|
||||||
public class AmazfitActiveEdgeCoordinator extends Huami2021Coordinator {
|
public class AmazfitActiveEdgeCoordinator extends Huami2021Coordinator {
|
||||||
|
@Override
|
||||||
|
public boolean isExperimental() {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
@NonNull
|
@NonNull
|
||||||
@Override
|
@Override
|
||||||
public Class<? extends DeviceSupport> getDeviceSupportClass() {
|
public Class<? extends DeviceSupport> getDeviceSupportClass() {
|
||||||
|
Loading…
Reference in New Issue
Block a user