Skip to content

Commit

Permalink
Version 2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DevEmperor committed Nov 20, 2023
1 parent 41d1f29 commit d6b1ec9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ android {
applicationId 'net.devemperor.wristassist'
minSdk 26
targetSdk 33
versionCode 22
versionName "2.5.0"
versionCode 23
versionName "2.6.0"
}

buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ protected void onCreate(Bundle savedInstanceState) {
int versionCode = BuildConfig.VERSION_CODE;
int lastVersionCode = getSharedPreferences("net.devemperor.wristassist", MODE_PRIVATE).getInt("net.devemperor.wristassist.last_version_code", 0);

if (lastVersionCode < 23) md = md.concat(getString(R.string.changelog_md_23));
if (lastVersionCode < 22) md = md.concat(getString(R.string.changelog_md_22));
if (lastVersionCode < 21) md = md.concat(getString(R.string.changelog_md_21));
markwon.setMarkdown(changelogTv, md);
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/values-de-rDE/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,5 @@
<string name="wristassist_invalid_host">Ungültiges URL-Format</string>
<string name="wristassist_ai">KI</string>
<string name="wristassist_complication_description">Komplikation zum Öffnen von WristAssist</string>
<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>
</resources>
1 change: 1 addition & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,5 @@
<string name="wristassist_invalid_host">Invalid URL format</string>
<string name="wristassist_ai">AI</string>
<string name="wristassist_complication_description">Complication to open WristAssist</string>
<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>
</resources>

0 comments on commit d6b1ec9

Please sign in to comment.