Skip to content

Commit

Permalink
Version 3.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
DevEmperor committed May 14, 2024
1 parent aef5208 commit e2f24e9
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 2 deletions.
10 changes: 10 additions & 0 deletions .idea/deploymentTargetSelector.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 28
versionName "3.0.2"
versionCode 29
versionName "3.0.3"
}

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 < 29) md = md.concat(getString(R.string.changelog_md_29));
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));
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 @@ -91,4 +91,5 @@
<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>
<string name="changelog_md_29">### Version 3.0.3 \n#### Neues GPT-4 Omni-Modell \nOpenAI hat ein neues Flaggschiff-Modell eingeführt, das Audio, Vision und Text in Echtzeit verarbeiten kann. Unterstützung für andere Eingabemethoden als Text wird in Zukunft verfügbar sein. Dieses Modell ist nur halb so teuer wie "GPT-4 Turbo" und kann in den Einstellungen ausgewählt werden. \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 @@ -100,4 +100,5 @@
<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>
<string name="changelog_md_29">### Version 3.0.3 \n#### New GPT-4 Omni model \nOpenAI introduced a new flagship model, that can reason across audio, vision, and text in real time. Support for input method other than text will be available in the future. You can switch to this model, which is only half the price as "GPT-4 Turbo", in the settings. \n</string>
</resources>

0 comments on commit e2f24e9

Please sign in to comment.