add Address and Notes in release notes

This commit is contained in:
tibbi 2018-02-22 21:08:14 +01:00
parent 3d7f14039b
commit ec0dbd23e1
2 changed files with 2 additions and 0 deletions

View File

@ -396,6 +396,7 @@ class MainActivity : SimpleActivity(), RefreshContactsListener {
private fun checkWhatsNewDialog() { private fun checkWhatsNewDialog() {
arrayListOf<Release>().apply { arrayListOf<Release>().apply {
add(Release(10, R.string.release_10)) add(Release(10, R.string.release_10))
add(Release(11, R.string.release_11))
checkWhatsNew(this, BuildConfig.VERSION_CODE) checkWhatsNew(this, BuildConfig.VERSION_CODE)
} }
} }

View File

@ -2,6 +2,7 @@
<resources> <resources>
<!-- Release notes --> <!-- Release notes -->
<string name="release_11">Added Address and Notes fields</string>
<string name="release_10">Allow storing contacts in a local database, hidden from other apps</string> <string name="release_10">Allow storing contacts in a local database, hidden from other apps</string>
</resources> </resources>