Skip to content

Commit

Permalink
Version 3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
DevEmperor committed Mar 4, 2024
1 parent 4d483bb commit 07d9594
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ android {
defaultConfig {
applicationId 'net.devemperor.wristassist'
minSdk 26
targetSdk 34
versionCode 27
versionName "3.0.1"
targetSdk 33
versionCode 28
versionName "3.0.2"
}

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

if (lastVersionCode < 28) md = md.concat(getString(R.string.changelog_md_28));
if (lastVersionCode < 27) md = md.concat(getString(R.string.changelog_md_27));
if (lastVersionCode < 26) md = md.concat(getString(R.string.changelog_md_26));
if (lastVersionCode < 25) md = md.concat(getString(R.string.changelog_md_25));
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 @@ -90,4 +90,5 @@
<string name="changelog_md_26">### Version 3.0.0 \n#### Bilder KI (DALL-E) hinzugefügt \nDu kannst nun mit OpenAI\'s Dall-E Bilder generieren, speichern und über einen QR-Code teilen. In den Einstellungen kannst du zwischen verschiedenen Modellen, Qualitäten und Größen wechseln. \n#### Mehrere Fehlerbehebungen und Design Änderungen \n</string>
<string name="wristassist_saving">Speichert …</string>
<string name="changelog_md_27">### Version 3.0.1 \n#### Wichtiger Hinweis: Änderungen an der OpenAI-API-Abrechnung \nOpenAI aktualisiert die Art und Weise, wie dein OpenAI-API-Konto ab **8. März 2024** abgerechnet wird. Anstatt eine Rechnung am Ende des Monats zu erhalten, musst du **Guthaben im Voraus erwerben**, um die API zu nutzen. <u>Klicke einfach auf die Schaltfläche "OK", um Guthaben zu deinem Konto hinzuzufügen.</u> Andernfalls werden API-Anfragen für WristAssist vorübergehend fehlschlagen, bis Guthaben erworben wird. \n</string>
<string name="changelog_md_28">### Version 3.0.2 \n#### Mehrere Fehlerbehebungen und Design Änderungen \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 @@ -99,4 +99,5 @@
<string name="changelog_md_26">### Version 3.0.0 \n#### Added image AI (DALL-E) \nYou can now use OpenAI\'s Dall-E to generate, save and share images via a QR code. You can switch between different models, qualities and sizes in the settings. \n#### Several bugfixes and design changes \n</string>
<string name="wristassist_saving">Saving …</string>
<string name="changelog_md_27">### Version 3.0.1 \n#### Important notice: Changes to your OpenAI API billing \nOpenAI is updating how they bill for your OpenAI API account starting **March 8, 2024**. Instead of receiving a bill at the end of the month, you will need to **pre-purchase credits** to use the API. <u>Just click the okay button to add credits to your account.</u> Otherwise, API requests will temporarily fail for WristAssist until credits are purchased. \n</string>
<string name="changelog_md_28">### Version 3.0.2 \n#### Several bugfixes and design changes \n</string>
</resources>

0 comments on commit 07d9594

Please sign in to comment.