Skip to content

Commit d6b1ec9

Browse files
committed
Version 2.6.0
1 parent 41d1f29 commit d6b1ec9

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ android {
1515
applicationId 'net.devemperor.wristassist'
1616
minSdk 26
1717
targetSdk 33
18-
versionCode 22
19-
versionName "2.5.0"
18+
versionCode 23
19+
versionName "2.6.0"
2020
}
2121

2222
buildTypes {

app/src/main/java/net/devemperor/wristassist/activities/ChangelogActivity.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ protected void onCreate(Bundle savedInstanceState) {
3131
int versionCode = BuildConfig.VERSION_CODE;
3232
int lastVersionCode = getSharedPreferences("net.devemperor.wristassist", MODE_PRIVATE).getInt("net.devemperor.wristassist.last_version_code", 0);
3333

34+
if (lastVersionCode < 23) md = md.concat(getString(R.string.changelog_md_23));
3435
if (lastVersionCode < 22) md = md.concat(getString(R.string.changelog_md_22));
3536
if (lastVersionCode < 21) md = md.concat(getString(R.string.changelog_md_21));
3637
markwon.setMarkdown(changelogTv, md);

app/src/main/res/values-de-rDE/strings.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,5 @@
6060
<string name="wristassist_invalid_host">Ungültiges URL-Format</string>
6161
<string name="wristassist_ai">KI</string>
6262
<string name="wristassist_complication_description">Komplikation zum Öffnen von WristAssist</string>
63+
<string name="changelog_md_23">### Version 2.6.0 \n#### Komplikation für Watchfaces hinzugefügt \nEine Komplikation für deine Watchfaces wurde hinzugefügt, mit der du schnell den WristAssist-Eingabebildschirm öffnen kannst. \n#### Schnelles Scrollen \nWenn du auf einen gespeicherten Chat-Titel klickst, wird er sofort nach unten gescrollt. \n#### Vibration bei Fehler \nWenn im Chat ein Fehler auftritt, spürst du jetzt eine andere Vibration. \n</string>
6364
</resources>

app/src/main/res/values/strings.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,5 @@
6969
<string name="wristassist_invalid_host">Invalid URL format</string>
7070
<string name="wristassist_ai">AI</string>
7171
<string name="wristassist_complication_description">Complication to open WristAssist</string>
72+
<string name="changelog_md_23">### Version 2.6.0 \n#### Added watchface complication \nAdded a complication for your watchfaces to quickly open the WristAssist input screen. \n#### Scroll to bottom shortcut \nIf you click on a saved chat title, it will immediately scroll to bottom. \n#### Vibration on error \nIf an error occurs in the chat, you will now feel a different vibration. \n</string>
7273
</resources>

0 commit comments

Comments
 (0)