Browse Source

Add showing of manual input prompt from unrecognized input APC

pull/214/head
Ionite 1 year ago
parent
commit
d45da70bd9
No known key found for this signature in database
  1. 1
      CHANGELOG.md
  2. 4
      StabilityMatrix.Avalonia/ViewModels/LaunchPageViewModel.cs

1
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

4
StabilityMatrix.Avalonia/ViewModels/LaunchPageViewModel.cs

@ -146,6 +146,10 @@ public partial class LaunchPageViewModel : PageViewModelBase, IDisposable, IAsyn
{
ShowConfirmInputPrompt = true;
}
else
{
ShowManualInputPrompt = true;
}
};
}

Loading…
Cancel
Save