Releases: runceel/ReactiveProperty
Releases · runceel/ReactiveProperty
Release 8.0.0-pre202109160117
This release was built by .NET 6.0 SDK RC1.
Changes
- Improve
IFilteredReadOnlyObservableCollection
for fixing #286
Release 8.0.0-pre202108141424
This version is build on .NET 6 SDK Preview 7.
Release 7.12.0
Changes
- Add
ForceNotify
method toIReactiveProperty
interface. - Change using Scheduler for calling ICommand#Execute on EventToReactiveCommand from UIThread to ReactivePropertyScheduler.Default.
- Add CallExecuteOnScheduler property to EventToReactiveCommand. If true, EventToReactiveCommand call ICommand#Execute on IScheduler that is set to ReactivePropertyScheduler.Default. If false, no changing thread to call ICommand#Execute. Default is true.
Release 8.0.0-pre202107040319
This is a first release build on .NET 6 SDK. New features are not this release.
Changes
- Remove UWP specific feature package because the project was not able to build using
dotnet build
command, to keep build pipeline simply. I will re-support the UWP package when UWP will support the dotnet tool chain.
Release 7.11.0
Release 7.10.0
- Add ReactivePropertyWpfScheduler. Please use this scheduler for WPF applications. Please see: https://okazuki.jp/ReactiveProperty/getting-started/wpf.html
Release 7.9.0
Add
- Add
Reactive.Bindings.CollectionUtilities
class for easy to createObserveElementPropertyChanged
,ObserveElementObservableProperty
andObserveElementProperty
extension methods for custom collection classes.
If you want to add the extension methods to your custom collection classes, then please add the methods yourself like ObservableCollectionExtensions.cs
Release 7.8.3
Changes
- Supporting properties that don't throw
PropertyChanged
events forObserveProperty
method's a property path.
Release 7.8.2
Add
- To fix an error when types that are observed using ObserveProperty change. #248
Release 7.8.1
Supporting Reset CollectionChanged events for IFilteredObservableCollection<T>
.