Skip to content

Releases: abjerner/Skybrud.Umbraco.Time

Skybrud.Umbraco.Time v2.0.0

06 Jan 22:03
Compare
Choose a tag to compare

First release for Umbraco 9 🎉

Installation

The Umbraco 9 version of this package is only available via NuGet. To install the package, you can use either .NET CLI:

dotnet add package Skybrud.Umbraco.Time --version 2.0.0

or the older NuGet Package Manager:

Install-Package Skybrud.Umbraco.Time -Version 2.0.0

Skybrud.Umbraco.Time v1.0.0-beta004

29 Nov 13:50
Compare
Choose a tag to compare

New beta release 🎉

Installation

Changelog

  • Fixed issue with default value check in UNIX timestamp property editor (see 2532b4e)
    When added as a property directly on IContent, the default type is an empty string, whereas the default value will be null in other contexts. With this commit, the init function will check for both scenarios.

  • Changed composer runtime level to prevent errors during installs and upgrades (see #1 and 47e030f)
    Since value converters are registered at boot (eg. UnixTimestampValueConverter), TimeComposer needs to run at boot as well to avoid errors when installing or upgrading Umbraco.

Skybrud.Umbraco.Time v1.0.0-beta003

09 Mar 15:29
Compare
Choose a tag to compare
Pre-release

Second beta release 🎉

Installation

Changelog

  • Fixed issue with TimeValueConverter returning wrong property value type (d798504)
    The converter would return TimeOffset[] instead of TimeOffset for the property value type - causing problems for ModelsBuilder models.

  • Introduced new UNIX time editor (see 285f7e3, 137f2cf and ec8c6d9)
    The editors looks like Umbraco's default picker for date and time, but will save the picked value as a UNIX timestamp instead. The C# value property type will be EssentialsTime.

Skybrud.Umbraco.Time v1.0.0-beta002

07 Aug 13:20
Compare
Choose a tag to compare
Pre-release

Second beta release 🎉

Installation

Changelog

  • Fixed an issue with the value converters (see 9608382)
    Now they actually do work 😮

  • Added config option to the time picker for setting the output format (see 60c7b6c)
    The time picker returns an instance of TimeOffset. With this release, it is now possible to specify the format used when converting that TimeOffset instance to a string.

    See the Custom TimeSpan format strings page for more information on supported formats.

Skybrud.Umbraco.Time v1.0.0-beta001

07 Aug 01:29
Compare
Choose a tag to compare
Pre-release

First beta release 🎉

Installation