File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed
ViewModels/CheckpointManager Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ All notable changes to Stability Matrix will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
66and this project adheres to [ Semantic Versioning 2.0] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## v2.4.1
9+ ### Fixed
10+ - Fixed deleting checkpoints not updating the visual grid until the page is refreshed
11+ - Fixed updates sometimes freezing on "Installing Requirements" step
12+
813## v2.4.0
914### Added
1015- New installable Package - [ Fooocus-MRE] ( https://github.com/MoonRide303/Fooocus-MRE )
Original file line number Diff line number Diff line change 88 <ApplicationManifest >app.manifest</ApplicationManifest >
99 <AvaloniaUseCompiledBindingsByDefault >true</AvaloniaUseCompiledBindingsByDefault >
1010 <ApplicationIcon >./Assets/Icon.ico</ApplicationIcon >
11- <Version >2.3.3 -dev.1</Version >
11+ <Version >2.4.1 -dev.1</Version >
1212 <InformationalVersion >$(Version)</InformationalVersion >
1313 <EnableWindowsTargeting >true</EnableWindowsTargeting >
1414 </PropertyGroup >
Original file line number Diff line number Diff line change 33using System . Collections . Specialized ;
44using System . IO ;
55using System . Linq ;
6+ using System . Reactive . Linq ;
67using System . Threading . Tasks ;
78using Avalonia . Controls ;
89using Avalonia . Controls . Notifications ;
@@ -118,6 +119,12 @@ public CheckpointFolder(
118119 checkpointFilesCache
119120 . Connect ( )
120121 . DeferUntilLoaded ( )
122+ . SubscribeMany (
123+ file =>
124+ Observable
125+ . FromEventPattern < EventArgs > ( file , nameof ( ParentListRemoveRequested ) )
126+ . Subscribe ( _ => checkpointFilesCache . Remove ( file ) )
127+ )
121128 . Bind ( CheckpointFiles )
122129 . Sort (
123130 SortExpressionComparer < CheckpointFile >
You can’t perform that action at this time.
0 commit comments