adding the sorting in release notes
This commit is contained in:
parent
2f4119faac
commit
129ce686e0
|
@ -10,7 +10,7 @@ android {
|
|||
applicationId "com.simplemobiletools.filemanager"
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 23
|
||||
versionCode 28
|
||||
versionCode 29
|
||||
versionName "2.1.0"
|
||||
}
|
||||
|
||||
|
|
|
@ -232,6 +232,7 @@ class MainActivity : SimpleActivity(), ItemsFragment.ItemInteractionListener, Br
|
|||
arrayListOf<Release>().apply {
|
||||
add(Release(26, R.string.release_26))
|
||||
add(Release(28, R.string.release_28))
|
||||
add(Release(29, R.string.release_29))
|
||||
checkWhatsNew(this, BuildConfig.VERSION_CODE)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
<resources>
|
||||
|
||||
<!-- Release notes -->
|
||||
<string name="release_29">Added a couple ways of sorting</string>
|
||||
<string name="release_28">
|
||||
Added a Home Folder button\n
|
||||
Added Favorites for easy access
|
||||
|
|
Loading…
Reference in New Issue