diff --git a/.idea/deploymentTargetSelector.xml b/.idea/deploymentTargetSelector.xml new file mode 100644 index 0000000..b268ef3 --- /dev/null +++ b/.idea/deploymentTargetSelector.xml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle index 2298531..c5f9051 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -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 { diff --git a/app/src/main/java/net/devemperor/wristassist/activities/ChangelogActivity.java b/app/src/main/java/net/devemperor/wristassist/activities/ChangelogActivity.java index 75b1c3c..6091564 100644 --- a/app/src/main/java/net/devemperor/wristassist/activities/ChangelogActivity.java +++ b/app/src/main/java/net/devemperor/wristassist/activities/ChangelogActivity.java @@ -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)); diff --git a/app/src/main/res/values-de-rDE/strings.xml b/app/src/main/res/values-de-rDE/strings.xml index 13f7cba..25011fe 100644 --- a/app/src/main/res/values-de-rDE/strings.xml +++ b/app/src/main/res/values-de-rDE/strings.xml @@ -91,4 +91,5 @@ Speichert … ### 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. Klicke einfach auf die Schaltfläche "OK", um Guthaben zu deinem Konto hinzuzufügen. Andernfalls werden API-Anfragen für WristAssist vorübergehend fehlschlagen, bis Guthaben erworben wird. \n ### Version 3.0.2 \n#### Mehrere Fehlerbehebungen und Design Änderungen \n + ### 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 \ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 5a10135..1cdd052 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -100,4 +100,5 @@ Saving … ### 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. Just click the okay button to add credits to your account. Otherwise, API requests will temporarily fail for WristAssist until credits are purchased. \n ### Version 3.0.2 \n#### Several bugfixes and design changes \n + ### 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 \ No newline at end of file