Description
After the repository was transferred from appergb/openless to Open-Less/openless, the in-app updater configuration was not updated. The plugins.updater.endpoints in src-tauri/tauri.conf.json still points to github.com/appergb/openless, which returns 404.
Steps to Reproduce
- Install OpenLess v1.3.15-Beta.1 (or any recent version)
- Go to Settings → About → Check for Updates
- Updater fails — the request goes to
https://github.com/appergb/openless/releases/latest/download/... which no longer exists
Expected Behavior
Updater should check https://github.com/Open-Less/openless/releases/latest/download/...
Actual Behavior
Updater checks the old appergb/openless URL and fails with 404.
Evidence
- main branch (
tauri.conf.json): endpoints still use appergb/openless
- beta branch (
tauri.conf.json): endpoints correctly use Open-Less/openless
- v1.3.15-Beta.1 release: the shipped binary still has
appergb/openless in its config
Suggested Fix
Update plugins.updater.endpoints in src-tauri/tauri.conf.json on the main branch to:
"endpoints": [
"https://github.com/Open-Less/openless/releases/latest/download/latest-{{target}}-{{arch}}.json",
"https://fastgit.cc/https://github.com/Open-Less/openless/releases/latest/download/latest-{{target}}-{{arch}}-mirror.json"
]
Related Issues
Description
After the repository was transferred from
appergb/openlesstoOpen-Less/openless, the in-app updater configuration was not updated. Theplugins.updater.endpointsinsrc-tauri/tauri.conf.jsonstill points togithub.com/appergb/openless, which returns 404.Steps to Reproduce
https://github.com/appergb/openless/releases/latest/download/...which no longer existsExpected Behavior
Updater should check
https://github.com/Open-Less/openless/releases/latest/download/...Actual Behavior
Updater checks the old
appergb/openlessURL and fails with 404.Evidence
tauri.conf.json): endpoints still useappergb/openlesstauri.conf.json): endpoints correctly useOpen-Less/openlessappergb/openlessin its configSuggested Fix
Update
plugins.updater.endpointsinsrc-tauri/tauri.conf.jsonon the main branch to:Related Issues