From 7e4520a8a325273e6d0672a7f83eff8fcc7e8b53 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 02:25:59 +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=D0=B7=D0=B0=D0=BC=D0=B5=D0=BD=D1=83=20?= =?UTF-8?q?=D0=BE=D1=81=D0=B8=D1=80=D0=BE=D1=82=D0=B5=D0=B2=D1=88=D0=B5?= =?UTF-8?q?=D0=B3=D0=BE=20=D0=B4=D0=B8=D1=81=D0=BA=D0=B0=20=D0=B2=20=D1=83?= =?UTF-8?q?=D1=81=D1=82=D0=B0=D0=BD=D0=BE=D0=B2=D1=89=D0=B8=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/patch_update_center.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/patch_update_center.py b/scripts/patch_update_center.py index 7d11e26..0f4525e 100644 --- a/scripts/patch_update_center.py +++ b/scripts/patch_update_center.py @@ -11,8 +11,8 @@ 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, conversion progress, VM architecture selector, -# ARM64 emulation XML path, dashboard update notifications and update center. -for optional_patch in ('patch_disk_images.py', 'patch_disk_convert_progress.py', 'patch_vm_architecture.py', 'patch_arm64_emulation_xml.py', 'patch_update_badge.py'): +# ARM64 emulation XML path, orphan disk replacement, dashboard update notifications and update center. +for optional_patch in ('patch_disk_images.py', 'patch_disk_convert_progress.py', 'patch_vm_architecture.py', 'patch_arm64_emulation_xml.py', 'patch_vm_disk_replace.py', 'patch_update_badge.py'): patch_path = script_dir / optional_patch if patch_path.exists(): old_argv = sys.argv[:]