Skip to content

Commit

Permalink
version info
Browse files Browse the repository at this point in the history
  • Loading branch information
mtotschnig committed Feb 2, 2025
1 parent c8cd3f5 commit e9a0935
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ plugins {

ext {
resConfig = ['en', 'en-rGB', 'ar', 'bg', 'ca', 'cs', 'da', 'de', 'de-rDE', 'el', 'es', 'eu', 'fr', 'fr-rCA', 'hr', 'hu', 'it', 'iw', 'ja', 'km', 'kn', 'ko', 'ms', 'nl', 'pl', 'pt-rBR', 'pt-rPT', 'ro', 'ru', 'si', 'ta', 'te', 'tr', 'uk', 'ur', 'vi', 'zh-rCN', 'zh-rHK', 'zh-rTW']
versionCode = 777
versionName = '3.9.4'
versionCode = 778
versionName = '3.9.5'
compileSdkVersion = 35
minSdkVersion = 21
targetSdkVersion = 34
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,11 @@ class VersionInfo(val code: Int, val name: String) : Parcelable {
"${t(R.string.split_transaction)}: ${t(R.string.ui_refinement)}"
)

"395" -> arrayOf(
t(R.string.whats_new_395),
t(R.string.performance_enhancement)
)

else -> {
//noinspection DiscouragedApi
val resId = res.getIdentifier(
Expand Down
3 changes: 2 additions & 1 deletion myExpenses/src/main/res/values/version_info.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="versions">
<item>777;3.9.4</item>
<item>778;3.9.5</item>
<item>774;3.9.3</item>
<item>770;3.9.2</item>
<item>766;3.9.1</item>
Expand Down Expand Up @@ -168,6 +168,7 @@
<string name="project_board_392">11</string>
<string name="project_board_393">13</string>
<string name="project_board_394">14</string>
<string name="project_board_395">15</string>

<string-array name="whats_new_355">
<item>@string/whats_new_355</item>
Expand Down
1 change: 1 addition & 0 deletions myExpenses/src/main/res/values/whats_new.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@
<string name="whats_new_384">Simplified setup of cloud backup</string>
<string name="whats_new_386">Distribution per expenses and distribution per income can be shown together in double-ring donut chart.</string>
<string name="whats_new_388">Transactions can be archived.</string>
<string name="whats_new_395">Exported files (PDF, backup, QIF, CSV, JSON) can be downloaded via Web User Interface.</string>
</resources>

0 comments on commit e9a0935

Please sign in to comment.