Skip to content

Releases: skybrud/Skybrud.Umbraco.Feedback

v4.0.0-alpha002

01 Mar 14:24
Compare
Choose a tag to compare

New alpha release for Umbraco 9 🎉

Installation

Install via NuGet - either via the .NET CLI:

dotnet add package Skybrud.Umbraco.Feedback --version 4.0.0-alpha002

or the NuGet package manager:

Install-Package Skybrud.Umbraco.Feedback -Version 4.0.0-alpha002

v3.0.0

08 Apr 13:27
Compare
Choose a tag to compare

Skybrud.Umbraco.Feedback v4.0.0-alpha001

08 Feb 18:20
Compare
Choose a tag to compare

First alpha release for Umbraco 9 🎉

Installation

Install for Umbraco 9 via NuGet:

dotnet add package Skybrud.Umbraco.Feedback --version 4.0.0-alpha001

Skybrud.Umbraco.Feedback v2.0.0-beta006

17 Jun 10:54
Compare
Choose a tag to compare
Pre-release

New beta release for Umbraco 7.

Installation

Changelog

  • Added support for batch operations (see 94ef3dd)
    It's now possible to select multiple entries within the current page to archive them, delete them or change their status.

Skybrud.Umbraco.Feedback v3.0.0-alpha004

09 Mar 13:05
Compare
Choose a tag to compare

New alpha release for Umbraco 8.

Installation

Changelog

  • If not specified, the Name, Email, and Comment fields should always be null instead of an empty string (see 193f78b)
    This was an issue in the FeedbackService.UpdateEntry method, which now has been updated both to trim the input value, and replace the trim result with null should it be empty. The fix also adds a new migration that will fix existing feedback in the database.

Skybrud.Umbraco.Feedback v3.0.0-alpha003

18 Nov 08:52
Compare
Choose a tag to compare

New alpha release for Umbraco 8.

Installation

Skybrud.Umbraco.Feedback v3.0.0-alpha002

16 Nov 08:30
Compare
Choose a tag to compare

New alpha release for Umbraco 8.

Installation

Skybrud.Umbraco.Feedback v3.0.0-alpha001

16 Nov 08:30
Compare
Choose a tag to compare

First alpha release for Umbraco 8.

Installation

Skybrud.Umbraco.Feedback v2.0.0-beta005

13 Jan 12:57
Compare
Choose a tag to compare
Pre-release

Changelog

  • The SetStatus and SetAssignedTo methods should update the FeedbackEntry instance directly instead of the underlying FeedbackDatabaseEntry instance (see 62cfe50)
    When only updating the FeedbackDatabaseEntry instance, changes won't be reflected in the corresponding FeedbackEntry instance. This the status or responsible user before the changes is returned in the API instead of the new value. The code has now been updated to change the FeedbackEntry instance directly, which then also automatically updates the FeedbackDatabaseEntry instance.

  • Added missing translation keys for en-US (see 7111152)
    Two of the translation keys were missing for en-US.

Skybrud.Umbraco.Feedback v2.0.0-beta004

22 Mar 13:58
Compare
Choose a tag to compare
Pre-release

Changelog

  • Added new cleanup feature (see 680b1d6)
    The new feature now allows editors to delete all entries made before a given date.

    image