Releases: runceel/ReactiveProperty
Releases · runceel/ReactiveProperty
Release 8.0.5
No any new features. Just adding support for Source Link.
Release 8.0.5-pre202203191529
No any new features. Just adding support for Source Link.
https://www.nuget.org/packages/ReactiveProperty/8.0.5-pre202203191529
Release 8.0.4
Bug fix
- Fixing an issue notify wrong
StartingIndex
fromCollectionChanged
event ofReadOnlyReactiveCollection<T>
that is created fromIObservable<T>
.
@toras9000 Thank you for reporting this issue.
Release 8.0.3
Bug fix
- Fixed an issue that could break synchronization between
ObservableCollection<T>
andReadOnlyReactiveCollection<T>
.
Release 8.0.2
Changes
- Update dependency library version
Microsoft.Xaml.Behaviors.Wpf
to 1.1.39 from 1.1.31 forReactiveProperty.WPF
.
Release 8.0.1
Buf fix
InvalidCastException
is occurred when accessingCollectionChanged<T>.Value
property on a callback method forSubscribe
ofReadOnlyReactiveCollection.ToCollectionChanged()
. This bug was occurred on only v8.0.0, never occurred on previous versions.
Release 8.0.0
Changes
- Add overload methods of
ToFilteredReadOnlyObservableCollection
for customize trigger for collection's element status changed. see documentation. - Improve
IFilteredReadOnlyObservableCollection
for fixing throwingArgumentOutOfRangeException
when source collection was calledClear
method. - Remove UWP specific package. If you would like to use
EventToReactiveProperty
andEventToReactiveCommand
on UWP, please use v7.x. If UWP support SDK style project file, then I re-enable UWP support.
Release 8.0.0-pre202110131323
Build on .NET 6 RC2
Release 8.0.0-pre202110071401
Add
- Add overload methods of
ToFilteredReadOnlyObservableCollection
for customize trigger for collection's element status changed. see documentation
Release 8.0.0-pre202109190434
This release was built by .NET 6.0 SDK RC1.
Changes
- Improve
IFilteredReadOnlyObservableCollection
for fixing #286