Skip to content

Commit

Permalink
Version 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DevEmperor committed Jun 20, 2024
1 parent e802b22 commit c1e667c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
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 29
versionName "3.0.3"
versionCode 30
versionName "3.1.0"
}

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 < 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));
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 @@ -94,4 +94,5 @@
<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>
<string name="wristassist_global_system_query">Globale System Anweisung</string>
<string name="wristassist_define_global_system_prompt">Lege eine globale System Anweisung fest</string>
<string name="changelog_md_30">### 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</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 @@ -103,4 +103,5 @@
<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>
<string name="wristassist_global_system_query">Global system query</string>
<string name="wristassist_define_global_system_prompt">Define global system prompt</string>
<string name="changelog_md_30">### 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</string>
</resources>

0 comments on commit c1e667c

Please sign in to comment.