Browse Source

Fix infinite progress wheel when package uninstall fails

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

2
CHANGELOG.md

@ -8,6 +8,8 @@ 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
### Fixed
- Fixed infinite progress wheel when package uninstall fails
## v2.5.4
### Fixed

4
StabilityMatrix.Avalonia/ViewModels/PackageManager/PackageCardViewModel.cs

@ -205,6 +205,10 @@ public partial class PackageCardViewModel : ProgressViewModel
EventManager.Instance.OnInstalledPackagesChanged();
}
Text = "";
IsIndeterminate = false;
Value = 0;
}
}

Loading…
Cancel
Save