Skip to content

Releases: runceel/ReactiveProperty

Release 8.0.0-pre202109160117

16 Sep 01:25
d5aeaf6
Compare
Choose a tag to compare
Pre-release

This release was built by .NET 6.0 SDK RC1.

Changes

  • Improve IFilteredReadOnlyObservableCollection for fixing #286

Release 8.0.0-pre202108141424

14 Aug 14:29
44c6674
Compare
Choose a tag to compare
Pre-release

This version is build on .NET 6 SDK Preview 7.

Release 7.12.0

07 Aug 00:06
bcfaa41
Compare
Choose a tag to compare

Changes

  • Add ForceNotify method to IReactiveProperty 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

04 Jul 03:26
5195bb0
Compare
Choose a tag to compare
Pre-release

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

31 May 05:58
28f8f6b
Compare
Choose a tag to compare

Change

  • Synchronize between CanExecute status of ICommand and IsEnabled property for controls on EventToReactiveCommand behavior. The feature was implemented by @Ruix. Thank you for your contribution, (#261)

Release 7.10.0

29 Apr 13:07
418aae5
Compare
Choose a tag to compare

Release 7.9.0

20 Apr 03:36
6dc2859
Compare
Choose a tag to compare

Add

  • Add Reactive.Bindings.CollectionUtilities class for easy to create ObserveElementPropertyChanged, ObserveElementObservableProperty and ObserveElementProperty 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

30 Mar 00:34
e204f05
Compare
Choose a tag to compare

Changes

  • Supporting properties that don't throw PropertyChanged events for ObserveProperty method's a property path.

Release 7.8.2

24 Mar 00:41
53c7fdc
Compare
Choose a tag to compare

Add

  • To fix an error when types that are observed using ObserveProperty change. #248

Release 7.8.1

18 Mar 12:43
c69fcd4
Compare
Choose a tag to compare

Supporting Reset CollectionChanged events for IFilteredObservableCollection<T>.