flipping the order of WhatsNew items

This commit is contained in:
tibbi 2019-07-25 11:32:26 +02:00
parent f23f0e2c77
commit cac8f486ac
1 changed files with 1 additions and 1 deletions

View File

@ -154,8 +154,8 @@ class MainActivity : SimpleActivity(), Calculator {
private fun checkWhatsNewDialog() {
arrayListOf<Release>().apply {
add(Release(28, R.string.release_28))
add(Release(18, R.string.release_18))
add(Release(28, R.string.release_28))
checkWhatsNew(this, BuildConfig.VERSION_CODE)
}
}