Updated version
This commit is contained in:
parent
1471cd25eb
commit
e9e7e8105b
|
@ -0,0 +1,4 @@
|
|||
- Fixed framerate issues on some devices
|
||||
- Added update dialog
|
||||
- Extended sidebar drag space
|
||||
- Added updater
|
|
@ -317,6 +317,72 @@
|
|||
"description": "Text displayed when chats are imported successfully",
|
||||
"context": "Visible in the settings view"
|
||||
},
|
||||
"settingsUpdateCheck": "Nach Updates suchen",
|
||||
"@settingsUpdateCheck": {
|
||||
"description": "Text displayed as description for check for updates button",
|
||||
"context": "Visible in the settings view"
|
||||
},
|
||||
"settingsUpdateChecking": "Suchen nach Updates ...",
|
||||
"@settingsUpdateChecking": {
|
||||
"description": "Text displayed while looking for updates",
|
||||
"context": "Visible in the settings view"
|
||||
},
|
||||
"settingsUpdateLatest": "Du verwendest die neueste Version",
|
||||
"@settingsUpdateLatest": {
|
||||
"description": "Text displayed when the app is up to date",
|
||||
"context": "Visible in the settings view"
|
||||
},
|
||||
"settingsUpdateAvailable": "Update verfügbar (v{version})",
|
||||
"@settingsUpdateAvailable": {
|
||||
"description": "Text displayed when an update is available",
|
||||
"context": "Visible in the settings view",
|
||||
"placeholders": {
|
||||
"version": {
|
||||
"type": "String",
|
||||
"description": "Version number of the available update"
|
||||
}
|
||||
}
|
||||
},
|
||||
"settingsUpdateRateLimit": "Kann nicht überprüfen, API-Anforderungslimit",
|
||||
"@settingsUpdateRateLimit": {
|
||||
"description": "Text displayed when the API rate limit is exceeded",
|
||||
"context": "Visible in the settings view"
|
||||
},
|
||||
"settingsUpdateIssue": "Ein Problem ist aufgetreten",
|
||||
"@settingsUpdateIssue": {
|
||||
"description": "Text displayed when an issue occurs while checking for updates",
|
||||
"context": "Visible in the settings view"
|
||||
},
|
||||
"settingsUpdateDialogTitle": "Neue Version verfügbar",
|
||||
"@settingsUpdateDialogTitle": {
|
||||
"description": "Title of the update dialog",
|
||||
"context": "Visible in the settings view"
|
||||
},
|
||||
"settingsUpdateDialogDescription": "Eine neue Version von Ollama ist verfügbar. Möchtest du sie jetzt herunterladen und installieren?",
|
||||
"@settingsUpdateDialogDescription": {
|
||||
"description": "Description of the update dialog",
|
||||
"context": "Visible in the settings view"
|
||||
},
|
||||
"settingsUpdateChangeLog": "Versionshinweise",
|
||||
"@settingsUpdateChangeLog": {
|
||||
"description": "Text displayed as description for change log button",
|
||||
"context": "Visible in the settings view"
|
||||
},
|
||||
"settingsUpdateDialogUpdate": "Aktualisieren",
|
||||
"@settingsUpdateDialogUpdate": {
|
||||
"description": "Text displayed for update button, should be capitalized",
|
||||
"context": "Visible in the settings view"
|
||||
},
|
||||
"settingsUpdateDialogCancel": "Abbrechen",
|
||||
"@settingsUpdateDialogCancel": {
|
||||
"description": "Text displayed for cancel button, should be capitalized",
|
||||
"context": "Visible in the settings view"
|
||||
},
|
||||
"settingsCheckForUpdates": "Beim Einstellungs-Öffnen Updates suchen",
|
||||
"@settingsCheckForUpdates": {
|
||||
"description": "Text displayed as description for check for updates toggle",
|
||||
"context": "Visible in the settings view"
|
||||
},
|
||||
"settingsGithub": "GitHub",
|
||||
"@settingsGithub": {
|
||||
"description": "Text displayed as description for GitHub button",
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
name: ollama_app
|
||||
description: "A modern and easy-to-use client for Ollama"
|
||||
publish_to: 'none'
|
||||
version: 1.0.2+5
|
||||
version: 1.0.3+6
|
||||
|
||||
environment:
|
||||
sdk: '>=3.3.4 <4.0.0'
|
||||
|
|
Loading…
Reference in New Issue