From c1e667cee7830387381f8cbdb6e48951045f5fe5 Mon Sep 17 00:00:00 2001 From: DevEmperor <56255079+devemperor@users.noreply.github.com> Date: Thu, 20 Jun 2024 17:02:21 +0200 Subject: [PATCH] Version 3.1.0 --- app/build.gradle | 4 ++-- .../devemperor/wristassist/activities/ChangelogActivity.java | 1 + app/src/main/res/values-de-rDE/strings.xml | 1 + app/src/main/res/values/strings.xml | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index c5f9051..6ad48ff 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -15,8 +15,8 @@ android { applicationId 'net.devemperor.wristassist' minSdk 26 targetSdk 33 - versionCode 29 - versionName "3.0.3" + versionCode 30 + versionName "3.1.0" } 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 6091564..54c9fa9 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 < 30) md = md.concat(getString(R.string.changelog_md_30)); 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)); diff --git a/app/src/main/res/values-de-rDE/strings.xml b/app/src/main/res/values-de-rDE/strings.xml index f1742f2..733aec0 100644 --- a/app/src/main/res/values-de-rDE/strings.xml +++ b/app/src/main/res/values-de-rDE/strings.xml @@ -94,4 +94,5 @@ ### 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 Globale System Anweisung Lege eine globale System Anweisung fest + ### Version 3.1.0 \n#### Globale System Anweisungen \nDu kannst jetzt in den Einstellungen eine globale Systemrolle festlegen, die die KI in jedem Chat verwenden wird. \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 d9d4dec..97962bf 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -103,4 +103,5 @@ ### 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 Global system query Define global system prompt + ### Version 3.1.0 \n#### Global system prompts \nYou can now set a global system role in the settings, that the AI will use in every chat. \n \ No newline at end of file