This repository has been archived by the owner on Feb 23, 2022. It is now read-only.
Releases: logikfabrik/uJet
Releases · logikfabrik/uJet
v4.2.0
- Fixed an issue with redundant NuGet dependencies.
- Fixed an issue with data type pre-values getting cleared on synchronization.
- Compiled using Umbraco 7.6.0 binaries.
- Added support for
ContentPicker2
,MediaPicker2
,MemberPicker2
, andRelatedLinks2
. - Added logging to
PropertyTypeFinder
. - Replaced extension methods for logging with service implementation,
LogService
. - Compiled using Umbraco 7.5.6 binaries.
v4.1.0
- Added attribute
AliasAttribute
. - Added property ID and alias validation.
- Added content type property
IsContainer
to support list views. - Changed default data type for media picker from
int
tostring
(change in Umbraco 7.5+). - Compiled using Umbraco 7.5.3 binaries.
- Compiled using Umbraco 7.4.3 binaries.
v4.0.0
- Added basic logging to the
TypeService
. - Added support for data type pre-values.
- Added basic logging to the
JetApplicationHandler
. - Added a logging wrapper (extension methods).
- Added support for inheritance and composition.
- Added support for nested templates (layouts/masters).
- Fixed an issue with templates being duplicated on synchronization.
- Compiled using Umbraco 7.3.4 binaries.
- Added mapping by convention for properties
CreatorId
,CreatorName
,WriterId
,WriterName
,DocumentTypeId
, andDocumentTypeAlias
.
v3.3.0
- Compiled using Umbraco 7.3.1 binaries.
- Improved the way type aliases are generated.
- Added support for member types.
v3.2.0
- Compiled using Umbraco 7.2.8 binaries.
- Reverted changes to the
JetViewEngine
made 2015-05-04.
v3.1.1
- Bug fix for when using
ContentAttribute
without setting theName
property, causing exception to be thrown when editing users through the back office. - Bug fix for later Umbraco versions, 7.2.4 known.
ViewLocationFormats
andPartialViewLocationFormats
was changed to LINQ queries, causing exceptions in theJetViewEngine
.
v3.1.0
- Fixed an issue in the type service.
TypeLoadException
andReflectionTypeLoadException
are now ignored.
v3.0.0
- Added type constraints in the type service.
- Fixed an issue with uJet when setting up Umbraco for the first time.
- Added tracking. Setting the ID (
Guid
) property ofDocumentTypeAttribute
,MediaTypeAttribute
, andDataTypeAttribute
will enable tracking. Properties can be tracked by using theIdAttribute
. Tracking allows you to rename types and properties in your code - uJet will update existing types and properties in the Umbraco DB. - Improved the performance of the type service.
- Removed the use of the data type definition mappings when querying property value converters. Using the
UIHint
attribute in combination with a property value converter will no longer trigger queries to the data type definition mappings. - Fixed an issue in the property value converter for
decimal
anddecimal?
values. - Added a property value converter for
float
,float?
,double
, anddouble?
values.