From 129b9d78a00a11685220c6d3b87fb80bbc8c2751 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:19:05 +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=20XML-=D1=8D=D0=BC=D1=83=D0=BB=D1=8F=D1=86?= =?UTF-8?q?=D0=B8=D1=8E=20ARM64=20=D0=B2=20=D1=83=D1=81=D1=82=D0=B0=D0=BD?= =?UTF-8?q?=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 8fe9ccb..7d11e26 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, -# dashboard update notifications and update center without extra manual commands. -for optional_patch in ('patch_disk_images.py', 'patch_disk_convert_progress.py', 'patch_vm_architecture.py', 'patch_update_badge.py'): +# 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'): patch_path = script_dir / optional_patch if patch_path.exists(): old_argv = sys.argv[:]