Skip to content

Commit

Permalink
Version 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DevEmperor committed Feb 13, 2024
1 parent dca6af5 commit a0f2e78
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 25
versionName "2.7.0"
versionCode 26
versionName "3.0.0"
}

buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ protected void onCreate(Bundle savedInstanceState) {
int versionCode = BuildConfig.VERSION_CODE;
int lastVersionCode = sp.getInt("net.devemperor.wristassist.last_version_code", 0);

if (lastVersionCode < 26) md = md.concat(getString(R.string.changelog_md_26));
if (lastVersionCode < 25) md = md.concat(getString(R.string.changelog_md_25));
if (lastVersionCode < 24) {
String newTts = "off";
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 @@ -87,4 +87,5 @@
<string name="wristassist_images_count" formatted="false">Anzahl an Bildern: %1$s</string>
<string name="wristassist_image_expires_in" formatted="false">Geteilter Link läuft in %1$d Minuten ab</string>
<string name="wristassist_image_request_rejected">Die Anfrage wurde abgelehnt. Deine Anfrage enthält möglicherweise Text, der nicht erlaubt ist.</string>
<string name="changelog_md_26">### Version 3.0.0 \n#### Bilder KI (Dall-E) hinzugefügt \nDu kannst nun mit OpenAI\'s Dall-E Bilder generieren, speichern und über einen QR-Code teilen. In den Einstellungen kannst du zwischen verschiedenen Modellen, Qualitäten und Größen wechseln. \n#### Mehrere Fehlerbehebungen und Design Änderungen \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 @@ -96,4 +96,5 @@
<string name="wristassist_images_count" formatted="false">Number of images: %1$s</string>
<string name="wristassist_image_expires_in" formatted="false">Shared link will expire in %1$d minutes</string>
<string name="wristassist_image_request_rejected">The request was rejected. Your prompt may contain text that is not allowed.</string>
<string name="changelog_md_26">### Version 3.0.0 \n#### Added image AI (Dall-E) \nYou can now use OpenAI\'s Dall-E to generate, save and share images via a QR code. You can switch between different models, qualities and sizes in the settings. \n#### Several bugfixes and design changes \n</string>
</resources>

0 comments on commit a0f2e78

Please sign in to comment.