diff --git a/CHANGELOG.md b/CHANGELOG.md index 09ded7e3..0c0b71f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning 2.0](https://semver.org/spec/v2 ## v2.5.5 ### Added - Added Spanish UI language options, thanks to Carlos Baena and Lautaroturina for the translations +- Manual input prompt popup on package input requests besides Y/n confirmations ### Fixed - Fixed infinite progress wheel when package uninstall fails diff --git a/StabilityMatrix.Avalonia/ViewModels/LaunchPageViewModel.cs b/StabilityMatrix.Avalonia/ViewModels/LaunchPageViewModel.cs index c7ad0216..87c7ea3f 100644 --- a/StabilityMatrix.Avalonia/ViewModels/LaunchPageViewModel.cs +++ b/StabilityMatrix.Avalonia/ViewModels/LaunchPageViewModel.cs @@ -146,6 +146,10 @@ public partial class LaunchPageViewModel : PageViewModelBase, IDisposable, IAsyn { ShowConfirmInputPrompt = true; } + else + { + ShowManualInputPrompt = true; + } }; }