New alpha release for Umbraco 10 and 11. This release will not work on older versions of Umbraco.
Installation
Via NuGet:
.NET CLI:
dotnet add package Limbo.Umbraco.Feedback --version 1.0.0-alpha003
Package Manager:
Install-Package Limbo.Umbraco.Feedback -Version 1.0.0-alpha003
Changelog
-
Added content ID check to the content app logic (see 093ce0d)
This ensures that the content app isn't shown (and thereby doesn't fail) when trying to create a new site node. -
Fixed issue with incorrect extension method being called (see 2813bb1)
Umbraco/NPoco provides severalOrderBy
extension methods forSql<T>
, so the compiler would pick an incorrect overload, causing errors when sorting in ascending order. To be more specific about the method that we wish to use, this commit changes the code to call the viaNPocoSqlExtensions.OrderBy
like a static method instead.