1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-11-03 17:02:13 +01:00

Bump version, add changelog

This commit is contained in:
Andreas Shimokawa 2018-07-22 16:31:38 +02:00
parent 2da6749a40
commit 8b445bab20
4 changed files with 21 additions and 2 deletions

View File

@ -1,5 +1,12 @@
### Changelog ### Changelog
#### Version 0.28.1
* Fix wrong weather icon mapping in rare cases
* Fix device discovery on Android 4.4
* Amazfit Bip: Use UTC in gpx tracks for better compatibility with external software
* Amazfit Bip: Add the (localized) activity type to the gpx filename
* Amazfit Bip: Fix weather on latest firmwares
#### Version 0.28.0 #### Version 0.28.0
* Initial support for ZeTime * Initial support for ZeTime
* Amazfit Bip/Cor: Rework firmware detection to cope with new version scheme * Amazfit Bip/Cor: Rework firmware detection to cope with new version scheme

View File

@ -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.28.0" versionName "0.28.1"
versionCode 134 versionCode 135
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true
} }
buildTypes { buildTypes {

View File

@ -1,5 +1,12 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<changelog> <changelog>
<release version="0.28.1" versioncode="135">
<change>Fix wrong weather icon mapping in rare cases</change>
<change>Fix device discovery on Android 4.4</change>
<change>Amazfit Bip: Use UTC in gpx tracks for better compatibility with external software</change>
<change>Amazfit Bip: Add the (localized) activity type to the gpx filename</change>
<change>Amazfit Bip: Fix weather on latest firmwares</change>
</release>
<release version="0.28.0" versioncode="134"> <release version="0.28.0" versioncode="134">
<change>Initial support for ZeTime</change> <change>Initial support for ZeTime</change>
<change>Amazfit Bip/Cor: Rework firmware detection to cope with new version scheme</change> <change>Amazfit Bip/Cor: Rework firmware detection to cope with new version scheme</change>

View File

@ -0,0 +1,5 @@
* Fix wrong weather icon mapping in rare cases
* Fix device discovery on Android 4.4
* Amazfit Bip: Use UTC in gpx tracks for better compatibility with external software
* Amazfit Bip: Add the (localized) activity type to the gpx filename
* Amazfit Bip: Fix weather on latest firmwares