Skip to content

Commit

Permalink
typo: Dall-E --> DALL-E
Browse files Browse the repository at this point in the history
  • Loading branch information
DevEmperor committed Feb 14, 2024
1 parent f78c1a8 commit 9fc935c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<a href='https://play.google.com/store/apps/details?id=net.devemperor.wristassist'><img alt='Get it on Google Play' width="258px" height="100px" src='https://raw.githubusercontent.com/DevEmperor/WristAssist/master/img/readme/google-play-badge.png'/></a>


#### WristAssist is the first app for all WearOS watches that fully brings the classic [ChatGPT](https://chat.openai.com/) and [Dall-E](https://openai.com/dall-e-3) features to your wrist. Since a picture is worth a thousand words, here is a showcase video and some screenshots:
#### WristAssist is the first app for all WearOS watches that fully brings the classic [ChatGPT](https://chat.openai.com/) and [DALL-E](https://openai.com/dall-e-3) features to your wrist. Since a picture is worth a thousand words, here is a showcase video and some screenshots:

| <a href='https://youtube.com/watch?v=YM0kUdrCiPI'><img src='https://raw.githubusercontent.com/DevEmperor/WristAssist/master/img/readme/menu.png'/></a> | ![chat_input.png](https://raw.githubusercontent.com/DevEmperor/WristAssist/master/img/readme/chat_input.png) | ![chat.png](https://raw.githubusercontent.com/DevEmperor/WristAssist/master/img/readme/chat.png) | ![chat_system.png](https://raw.githubusercontent.com/DevEmperor/WristAssist/master/img/readme/chat_system.png) |
| :----------------------------------------------------------: | :----------------------------------------------------------: | :----------------------------------------------------------: | :----------------------------------------------------------: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ public void onCreatePreferences(Bundle savedInstanceState, String rootKey) {
if (imageModelPreference != null && imageQualityPreference != null && imageStylePreference != null && imageSizePreference != null) {
imageModelPreference.setOnPreferenceChangeListener((preference, newValue) -> {
if ((Boolean) newValue) {
imageModelPreference.setSummaryProvider(preference1 -> "Dall-E 3");
imageModelPreference.setSummaryProvider(preference1 -> "DALL-E 3");
imageQualityPreference.setEnabled(true);
imageStylePreference.setEnabled(true);
imageSizePreference.setEnabled(false);

} else {
imageModelPreference.setSummaryProvider(preference1 -> "Dall-E 2");
imageModelPreference.setSummaryProvider(preference1 -> "DALL-E 2");
imageQualityPreference.setEnabled(false);
imageStylePreference.setEnabled(false);
imageSizePreference.setEnabled(true);
Expand All @@ -113,7 +113,7 @@ public void onCreatePreferences(Bundle savedInstanceState, String rootKey) {
});

if (imageModelPreference.isChecked()) {
imageModelPreference.setSummaryProvider(preference -> "Dall-E 3");
imageModelPreference.setSummaryProvider(preference -> "DALL-E 3");
imageQualityPreference.setEnabled(true);
imageStylePreference.setEnabled(true);
imageSizePreference.setEnabled(false);
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/net/devemperor/wristassist/util/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ public static String translate(Context context, String origin) {
case "gpt-4-32k":
return "GPT-4 32K";
case "dall-e-3":
return "Dall-E 3";
return "DALL-E 3";
case "dall-e-2":
return "Dall-E 2";
return "DALL-E 2";
case "hd":
return "HD";
case "standard":
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values-de-rDE/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -87,5 +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>
<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>
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -96,5 +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>
<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>
2 changes: 1 addition & 1 deletion app/src/main/res/xml/fragment_preferences.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<SwitchPreference
app:key="net.devemperor.wristassist.image_model"
app:title="@string/wristassist_select_image_model"
android:summary="Dall-E 2"
android:summary="DALL-E 2"
android:defaultValue="false"/>

<SwitchPreference
Expand Down

0 comments on commit 9fc935c

Please sign in to comment.