feat: support suppressing version checks

This commit is contained in:
guenhter
2025-07-02 14:43:57 +02:00
parent 7adb15d4b0
commit 34ddd62951
6 changed files with 14 additions and 10 deletions

View File

@@ -90,7 +90,7 @@
};
onMount(async () => {
if (!$config?.offline_mode) {
if ($config?.features?.enable_version_update_check) {
checkForVersionUpdates();
}
@@ -162,7 +162,7 @@
</button>
</div>
{#if !$config?.offline_mode}
{#if $config?.features?.enable_version_update_check}
<button
class=" text-xs px-3 py-1.5 bg-gray-50 hover:bg-gray-100 dark:bg-gray-850 dark:hover:bg-gray-800 transition rounded-lg font-medium"
type="button"