Update AppUpdateProgress to add ellipsis to active download and installation labels for improved user feedback during update processes.

This commit is contained in:
Tom Butcher 2026-06-21 20:23:06 +01:00
parent 77ef061c15
commit 5201555cf8

View File

@ -32,7 +32,7 @@ const STAGE_CONFIG = {
icon: CloudIcon, icon: CloudIcon,
labels: { labels: {
pending: 'Download', pending: 'Download',
active: 'Downloading', active: 'Downloading...',
complete: 'Downloaded', complete: 'Downloaded',
error: 'Download failed' error: 'Download failed'
} }
@ -41,7 +41,7 @@ const STAGE_CONFIG = {
icon: HostIcon, icon: HostIcon,
labels: { labels: {
pending: 'Install', pending: 'Install',
active: 'Installing', active: 'Installing...',
complete: 'Installed', complete: 'Installed',
error: 'Install failed' error: 'Install failed'
} }