From 162bbc654260e7f8f26aedc0e53b121746eaf047 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=B8=D0=BA=D1=82=D0=BE=D1=80?= <78488229+viktor138irk@users.noreply.github.com> Date: Thu, 7 May 2026 01:54:21 +0900 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BE=D0=B4=D0=BA=D0=BB=D1=8E=D1=87?= =?UTF-8?q?=D0=B8=D1=82=D1=8C=20=D1=83=D0=B2=D0=B5=D0=B4=D0=BE=D0=BC=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D1=8F=20=D0=BE=D0=B1=20=D0=BE=D0=B1=D0=BD?= =?UTF-8?q?=D0=BE=D0=B2=D0=BB=D0=B5=D0=BD=D0=B8=D1=8F=D1=85=20=D0=B2=20?= =?UTF-8?q?=D1=83=D1=81=D1=82=D0=B0=D0=BD=D0=BE=D0=B2=D1=89=D0=B8=D0=BA?= =?UTF-8?q?=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/patch_update_center.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/patch_update_center.py b/scripts/patch_update_center.py index 6c202a0..6056a08 100644 --- a/scripts/patch_update_center.py +++ b/scripts/patch_update_center.py @@ -10,9 +10,9 @@ if not app_path.exists(): script_dir = Path(__file__).resolve().parent # New installs run this patch from install_web_panel.sh. Keep feature patches here too -# so a fresh install gets disk images, VM architecture selector and update center -# without requiring extra manual commands. -for optional_patch in ('patch_disk_images.py', 'patch_vm_architecture.py'): +# so a fresh install gets disk images, VM architecture selector, dashboard update +# notifications and update center without requiring extra manual commands. +for optional_patch in ('patch_disk_images.py', 'patch_vm_architecture.py', 'patch_update_badge.py'): patch_path = script_dir / optional_patch if patch_path.exists(): old_argv = sys.argv[:]