From 8956c41b4d67138c6be63012f128778182863068 Mon Sep 17 00:00:00 2001 From: Raphire <9938813+Raphire@users.noreply.github.com> Date: Sat, 7 Mar 2026 15:17:03 +0100 Subject: [PATCH] Update changes applied text --- Schemas/ApplyChangesWindow.xaml | 2 +- Scripts/GUI/Show-ApplyModal.ps1 | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Schemas/ApplyChangesWindow.xaml b/Schemas/ApplyChangesWindow.xaml index a650965..0bf66b6 100644 --- a/Schemas/ApplyChangesWindow.xaml +++ b/Schemas/ApplyChangesWindow.xaml @@ -141,7 +141,7 @@ Style="{DynamicResource ModalTitleStyle}"/> diff --git a/Scripts/GUI/Show-ApplyModal.ps1 b/Scripts/GUI/Show-ApplyModal.ps1 index b732cbc..9d127d9 100644 --- a/Scripts/GUI/Show-ApplyModal.ps1 +++ b/Scripts/GUI/Show-ApplyModal.ps1 @@ -110,7 +110,7 @@ function Show-ApplyModal { if ($script:CancelRequested) { Write-Host "Script execution was cancelled by the user. Some changes may not have been applied." } else { - Write-Host "All changes have been applied successfully." + Write-Host "All changes have been applied successfully!" } # Show completion state @@ -125,7 +125,7 @@ function Show-ApplyModal { $script:ApplyCompletionMessageEl.Text = "Script execution was cancelled by the user." } else { $script:ApplyCompletionTitleEl.Text = "Changes Applied" - $script:ApplyCompletionMessageEl.Text = "All changes have been applied successfully!" + $script:ApplyCompletionMessageEl.Text = "Your clean system is ready. Thanks for using Win11Debloat!" } $applyWindow.Dispatcher.Invoke([System.Windows.Threading.DispatcherPriority]::Render, [action]{}) }