Skip to content

Commit

Permalink
Release
Browse files Browse the repository at this point in the history
  • Loading branch information
mtotschnig committed Jun 11, 2024
1 parent 252a57f commit 9c0f670
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,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 = 739
versionName = '3.8.5'
versionCode = 740
versionName = '3.8.6'
compileSdkVersion = 34
minSdkVersion = 21
targetSdkVersion = 34
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ class VersionDialogFragment : ComposeBaseDialogFragment(), DialogInterface.OnCli
VersionInfoButton(
version = version,
resPrefix = "project_board_",
baseUri = "https://github.com/mtotschnig/MyExpenses/projects/",
baseUri = if (version.code < 740) "https://github.com/mtotschnig/MyExpenses/projects/" else "https://github.com/mtotschnig/projects/",
drawableRes = R.drawable.ic_github,
contentDescription = "Github"
)
Expand Down
5 changes: 5 additions & 0 deletions myExpenses/src/main/res/values/version_info.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="versions">
<item>740;3.8.6</item>
<item>739;3.8.5</item>
<item>737;3.8.4</item>
<item>735;3.8.3</item>
Expand Down Expand Up @@ -141,6 +142,7 @@
<string name="project_board_383">140#column-19850840</string>
<string name="project_board_384">142#column-19861846</string>
<string name="project_board_385">143#column-19888171</string>
<string name="project_board_386">1</string>

<string-array name="whats_new_355">
<item>@string/whats_new_355</item>
Expand Down Expand Up @@ -194,4 +196,7 @@
<string-array name="whats_new_384">
<item>@string/whats_new_384</item>
</string-array>
<string-array name="whats_new_386">
<item>@string/whats_new_386</item>
</string-array>
</resources>
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 @@ -20,4 +20,5 @@
<!-- %1$s will be replaced with quoted label for "Scan receipt" functionality. %2$s will be replaced with quoted label for "My accounts widget-->
<string name="whats_new_382">%1$s feature can be called from widget %2$s.</string>
<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>
</resources>

0 comments on commit 9c0f670

Please sign in to comment.