Skip to content

Commit e2f24e9

Browse files
committed
Version 3.0.3
1 parent aef5208 commit e2f24e9

5 files changed

Lines changed: 15 additions & 2 deletions

File tree

.idea/deploymentTargetSelector.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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 28
19-
versionName "3.0.2"
18+
versionCode 29
19+
versionName "3.0.3"
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
@@ -35,6 +35,7 @@ protected void onCreate(Bundle savedInstanceState) {
3535
int versionCode = BuildConfig.VERSION_CODE;
3636
lastVersionCode = sp.getInt("net.devemperor.wristassist.last_version_code", 0);
3737

38+
if (lastVersionCode < 29) md = md.concat(getString(R.string.changelog_md_29));
3839
if (lastVersionCode < 28) md = md.concat(getString(R.string.changelog_md_28));
3940
if (lastVersionCode < 27) md = md.concat(getString(R.string.changelog_md_27));
4041
if (lastVersionCode < 26) md = md.concat(getString(R.string.changelog_md_26));

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,5 @@
9191
<string name="wristassist_saving">Speichert …</string>
9292
<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>
9393
<string name="changelog_md_28">### Version 3.0.2 \n#### Mehrere Fehlerbehebungen und Design Änderungen \n</string>
94+
<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>
9495
</resources>

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,5 @@
100100
<string name="wristassist_saving">Saving …</string>
101101
<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>
102102
<string name="changelog_md_28">### Version 3.0.2 \n#### Several bugfixes and design changes \n</string>
103+
<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>
103104
</resources>

0 commit comments

Comments
 (0)