Merge beta into release #21

Merged
didirus merged 276 commits from beta into release 2025-11-01 13:04:25 +00:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit bddc40e601 - Show all commits

View File

@@ -453,7 +453,7 @@ const availableUpdate = ref(null)
const updateSize = ref(null)
async function checkUpdates() {
if (!(await areUpdatesEnabled())) {
console.log('Skipping update check as updates are disabled in this build')
console.log('Skipping update check as updates are disabled in this build or environment')
return
}

View File

@@ -67,6 +67,7 @@ fn is_dev() -> bool {
#[tauri::command]
fn are_updates_enabled() -> bool {
cfg!(feature = "updater")
&& env::var("MODRINTH_EXTERNAL_UPDATE_PROVIDER").is_err()
}
#[cfg(feature = "updater")]