mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-23 18:36:50 +01:00
Amazfit Cor/Cor2: Allow workout syncing
This commit is contained in:
parent
9f6d40d089
commit
9c239ec371
@ -1,11 +1,12 @@
|
||||
### Changelog
|
||||
|
||||
#### 0.47.0 (NEXT)
|
||||
#### 0.47.0
|
||||
* Initial experimental support for Pinetime-JF (not yet usable)
|
||||
* HPlus: Recognize Lemfo SG2
|
||||
* Huami: Support events forwarding via intents or direct triggering of certain actions (eg. stop music when fall asleep)
|
||||
* Huami: Add Sports Activity Detail screen from decoded sports summary values
|
||||
* Huami: Recogize and decode lot more activity (workout) types
|
||||
* Amazfit Cor/Cor2: Allow workout syncing
|
||||
* Add Sports Activity Summary filtering and statistics
|
||||
* Many icons have been re-drawn as vectors, also several new device and sports activity icons added
|
||||
* Many improvements to the Bluetooth discovery and scanning
|
||||
|
@ -67,6 +67,11 @@ public class AmazfitCorCoordinator extends HuamiCoordinator {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supportsActivityTracks() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supportsWeather() {
|
||||
return true;
|
||||
|
@ -67,6 +67,11 @@ public class AmazfitCor2Coordinator extends HuamiCoordinator {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supportsActivityTracks() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean supportsWeather() {
|
||||
return true;
|
||||
|
@ -6,6 +6,7 @@
|
||||
<change>Huami: Support events forwarding via intents or direct triggering of certain actions (eg. stop music when fall asleep)</change>
|
||||
<change>Huami: Add Sports Activity Detail screen from decoded sports summary values</change>
|
||||
<change>Huami: Recogize and decode lot more activity (workout) types</change>
|
||||
<change>Amazfit Cor/Cor2: Allow workout syncing</change>
|
||||
<change>Add Sports Activity Summary filtering and statistics</change>
|
||||
<change>Many icons have been re-drawn as vectors, also several new device and sports activity icons added</change>
|
||||
<change>Many improvements to the Bluetooth discovery and scanning</change>
|
||||
|
@ -3,6 +3,7 @@
|
||||
* Huami: Support events forwarding via intents or direct triggering of certain actions (eg. stop music when fall asleep)
|
||||
* Huami: Add Sports Activity Detail screen from decoded sports summary values
|
||||
* Huami: Recogize and decode lot more activity (workout) types
|
||||
* Amazfit Cor/Cor2: Allow workout syncing
|
||||
* Add Sports Activity Summary filtering and statistics
|
||||
* Many icons have been re-drawn as vectors, also several new device and sports activity icons added
|
||||
* Many improvements to the Bluetooth discovery and scanning
|
||||
|
Loading…
Reference in New Issue
Block a user