Skip to content

Release 1.1.0

Compare
Choose a tag to compare
@jamesmcroft jamesmcroft released this 10 May 21:17
· 268 commits to main since this release

Packages available on NuGet

Changes:

Improved documentation 📃

Included in this release is the official release of the new MADE.NET documentation. This new method of creating documentation using DocFX will make it easier to expand on topic areas quickly and easily through GitHub.

New packages ⭐

Taken from a few GitHub projects we've previously maintained and are currently working on, we've created 3 new library packages for you to consume in your applications.

The new packages available are:

You can find out more about the details of these new packages in our documentation.

Collection package changes ⭐

Included in this release are the following new extension methods from the Collections package:

  • TakeFrom, allowing you to take a number of elements from a collection from a specified starting index.
  • ForEach, a simple extension that performs an action over each element of a collection.
  • Chunk, to allow you to break up a collection into sized chunks to allow ease of processing.

Data.Converters package changes ⭐

Included in this release is a new Windows-specific value converter, BooleanToStringValueConverter, that allows you to convert a boolean value to a string and back. By default, the true and false values are 'Yes' and 'No' respectively, and these can be customized.

Data.Validation package changes ⭐

Included in this release are the following new extensions methods for DateTime values:

  • IsInRange, to determine whether a date falls between a from and to date.
  • IsWeekday, to determine whether a date is Monday through Friday.
  • IsWeekend, to determine whether a date is Saturday or Sunday.

Threading package changes ⭐

A minor change has been made to the Timer implementation to include the disposable pattern.

Updated dependencies ⭐

To ensure we keep up-to-date with all the latest changes in our dependencies, this release includes a rev of the following NuGet packages:

  • Uno.UI (3.6.6 -> 3.7.3)
    • Affects UI, UI.Controls.FilePicker, and UI.Controls.Validator