fix(desktop): recommend the model the app actually uses
Some checks failed
deploy-site / deploy (push) Failing after 13m48s

The Ollama setup guide still led with two retired models while the app already
defaults to the newer one, so a fresh setup would install a model the app does
not use. The guide now recommends the same model as the rest of the app and
lists current lightweight alternatives.
This commit is contained in:
Yun Chan 2026-09-18 17:15:37 +09:00
parent f14341ace4
commit 57c17d0977
25 changed files with 65 additions and 56 deletions

View file

@ -151,8 +151,8 @@ def versionSettingsValid = configuredVersionName != null &&
configuredVersionName ==~ strictSemver &&
configuredVersionCodeValue != null &&
configuredVersionCodeValue <= 2100000000L
def resolvedVersionName = versionSettingsValid ? configuredVersionName : "1.3.4"
def resolvedVersionCode = versionSettingsValid ? configuredVersionCodeValue.toInteger() : 1031004
def resolvedVersionName = versionSettingsValid ? configuredVersionName : "1.3.5"
def resolvedVersionCode = versionSettingsValid ? configuredVersionCodeValue.toInteger() : 1031005
def requiredReleaseSettings = [
D3RO_RELEASE_STORE_FILE: releaseStoreFilePath,