Skip to content

Commit

Permalink
Version 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
DevEmperor committed Jul 24, 2024
1 parent 273a70c commit fcc373c
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 30
versionName "3.1.0"
versionCode 31
versionName "3.1.1"
}

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 < 31) md = md.concat(getString(R.string.changelog_md_31));
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));
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 @@ -95,4 +95,5 @@
<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>
<string name="changelog_md_31">### Version 3.1.1 \n#### Neues GPT-4 Omni Mini Modell \nOpenAI hat ihr neues Modell GPT-4o mini veröffentlicht, das ihr kostengünstigstes kleines Modell ist – intelligenter und billiger als GPT-3.5 Turbo und hat auch Vision-Fähigkeiten. Das Modell hat einen Kontext von 128K und eine Wissensgrenze bis Oktober 2023. Du kannst in den Einstellungen zu diesem Modell wechseln, das 60% günstiger ist als GPT-3.5 Turbo. \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 @@ -104,4 +104,5 @@
<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>
<string name="changelog_md_31">### Version 3.1.1 \n#### New GPT-4 Omni mini model \nOpenAI released their new model GPT-4o mini, which is their most cost-efficient small model that\'s smarter and cheaper than GPT-3.5 Turbo, and has vision capabilities. The model has 128K context and an October 2023 knowledge cutoff. You can switch to this model, which is 60% cheaper than GPT-3.5 Turbo, in the settings. \n</string>
</resources>

0 comments on commit fcc373c

Please sign in to comment.