mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-23 18:36:50 +01:00
bump version, add changelog, commit missing file
This commit is contained in:
parent
2580a0b818
commit
8f0a407db9
@ -1,5 +1,9 @@
|
|||||||
### Changelog
|
### Changelog
|
||||||
|
|
||||||
|
#### Version 0.42.1
|
||||||
|
* Fix accepting/rejecting calls on Android 9
|
||||||
|
* Mi Band 3/4, Amazfit Bip/Cor/GTS/GTR: Option to sync calender events as reminder
|
||||||
|
|
||||||
#### Version 0.42.0
|
#### Version 0.42.0
|
||||||
* Initial iTag support
|
* Initial iTag support
|
||||||
* Fix indefinitely lasting bluetooth scans when location permission has not been granted
|
* Fix indefinitely lasting bluetooth scans when location permission has not been granted
|
||||||
|
@ -25,8 +25,8 @@ android {
|
|||||||
targetSdkVersion 28
|
targetSdkVersion 28
|
||||||
|
|
||||||
// Note: always bump BOTH versionCode and versionName!
|
// Note: always bump BOTH versionCode and versionName!
|
||||||
versionName "0.42.0"
|
versionName "0.42.1"
|
||||||
versionCode 167
|
versionCode 168
|
||||||
vectorDrawables.useSupportLibrary = true
|
vectorDrawables.useSupportLibrary = true
|
||||||
}
|
}
|
||||||
buildTypes {
|
buildTypes {
|
||||||
|
@ -1,5 +1,9 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<changelog>
|
<changelog>
|
||||||
|
<release version="0.42.1" versioncode="168">
|
||||||
|
<change>Fix accepting/rejecting calls on Android 9</change>
|
||||||
|
<change>Mi Band 3/4, Amazfit Bip/Cor/GTS/GTR: Option to sync calender events as reminder</change>
|
||||||
|
</release>
|
||||||
<release version="0.42.0" versioncode="167">
|
<release version="0.42.0" versioncode="167">
|
||||||
<change>Initial iTag support</change>
|
<change>Initial iTag support</change>
|
||||||
<change>Fix indefinitely lasting bluetooth scans when location permission has not been granted</change>
|
<change>Fix indefinitely lasting bluetooth scans when location permission has not been granted</change>
|
||||||
|
8
app/src/main/res/xml/devicesettings_sync_calendar.xml
Normal file
8
app/src/main/res/xml/devicesettings_sync_calendar.xml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<SwitchPreference
|
||||||
|
android:defaultValue="false"
|
||||||
|
android:key="sync_calendar"
|
||||||
|
android:summary="@string/pref_summary_sync_calendar"
|
||||||
|
android:title="@string/pref_title_sync_caldendar" />
|
||||||
|
</androidx.preference.PreferenceScreen>
|
2
fastlane/metadata/android/en-US/changelogs/168.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/168.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
* Fix accepting/rejecting calls on Android 9
|
||||||
|
* Mi Band 3/4, Amazfit Bip/Cor/GTS/GTR: Option to sync calender events as reminder
|
Loading…
Reference in New Issue
Block a user