bump version, add changelog, commit missing file

This commit is contained in:
Andreas Shimokawa 2020-02-24 14:29:11 +01:00
parent 2580a0b818
commit 8f0a407db9
5 changed files with 20 additions and 2 deletions

View File

@ -1,5 +1,9 @@
### 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
* Initial iTag support
* Fix indefinitely lasting bluetooth scans when location permission has not been granted

View File

@ -25,8 +25,8 @@ android {
targetSdkVersion 28
// Note: always bump BOTH versionCode and versionName!
versionName "0.42.0"
versionCode 167
versionName "0.42.1"
versionCode 168
vectorDrawables.useSupportLibrary = true
}
buildTypes {

View File

@ -1,5 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<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">
<change>Initial iTag support</change>
<change>Fix indefinitely lasting bluetooth scans when location permission has not been granted</change>

View 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>

View 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