Skip to content

Commit

Permalink
Version 0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
YohDeadfall committed Jan 1, 2024
1 parent 7b65f93 commit 42b5455
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Project>
<PropertyGroup>
<Version>0.3</Version>
<Version>0.4</Version>
<Authors>Yoh Deadfall</Authors>
<Description>A lightweight implementation of the Reactive framework.</Description>
<PackageTags>observable reactive ui</PackageTags>

<Copyright>Copyright 2021 © Yoh Deadfall</Copyright>
<Copyright>Copyright 2024 © Yoh Deadfall</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/YohDeadfall/Kinetic</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,14 @@ In contradiction to .NET and DynamicData, there are no multiple element changes

Other than that Kinetic collections looks pretty similar to what the .NET ecosystem has.

For possible scenarios of making views using LINQ operators please refer to tests. Currently only `Where` and `OrderBy` are supported, but more options and operators should come to Kinetic.
For possible scenarios of making views using LINQ operators please refer to tests. Currently there are three operators with their async variants are available, but more options and operators should come to Kinetic:

* `OrderBy`
* `OrderByAsync`
* `Select`
* `SelectAsync`
* `Where`
* `WhereAsync`

### Commands

Expand Down

0 comments on commit 42b5455

Please sign in to comment.