From fab6b351a4722cb23a1871e8f18f12543c088dac 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:04:10 +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=BF=D1=80=D0=BE=D0=B3=D1=80=D0=B5=D1=81?= =?UTF-8?q?=D1=81=20=D0=BA=D0=BE=D0=BD=D0=B2=D0=B5=D1=80=D1=82=D0=B0=D1=86?= =?UTF-8?q?=D0=B8=D0=B8=20=D0=B2=20=D1=83=D1=81=D1=82=D0=B0=D0=BD=D0=BE?= =?UTF-8?q?=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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/patch_update_center.py b/scripts/patch_update_center.py index 6056a08..8fe9ccb 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, 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'): +# 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'): patch_path = script_dir / optional_patch if patch_path.exists(): old_argv = sys.argv[:]