Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Build
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Build@v17
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Build@v18
with:
project-name: Umbraco.Community.DataProtection
project-path: src/Umbraco.Community.DataProtection/Umbraco.Community.DataProtection.csproj
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
steps:
- name: Build
id: build
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Build@v17
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Build@v18
with:
project-name: Umbraco.Community.DataProtection
project-path: src/Umbraco.Community.DataProtection/Umbraco.Community.DataProtection.csproj
- name: Release
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Release@v17
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Release@v18
with:
artifact-name: ${{ steps.build.outputs.artifact-name }}
version: ${{ steps.build.outputs.version }}
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2024 James Carter
Copyright (c) 2026 James Carter

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Umbraco.Cms" Version="17.0.0" />
<PackageReference Include="uSync" Version="17.0.0" />
<PackageReference Include="Umbraco.Cms" Version="18.0.0-rc3" />
<PackageReference Include="uSync" Version="18.0.0-rc1" />
</ItemGroup>

<ItemGroup>
Expand All @@ -20,6 +20,10 @@
<RuntimeHostConfigurationOption Include="System.Globalization.AppLocalIcu" Value="72.1.0.3" Condition="$(RuntimeIdentifier.StartsWith('linux')) or $(RuntimeIdentifier.StartsWith('win')) or ('$(RuntimeIdentifier)' == '' and !$([MSBuild]::IsOSPlatform('osx')))" />
</ItemGroup>

<ItemGroup>
<Folder Include="uSync\" />
</ItemGroup>

<PropertyGroup>
<!-- Razor files are needed for the backoffice to work correctly -->
<CopyRazorGenerateFilesToPublishDirectory>true</CopyRazorGenerateFilesToPublishDirectory>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
class="umb-block-grid__layout-item"
data-content-element-type-alias="@item.Content.ContentType.Alias"
data-content-element-type-key="@item.Content.ContentType.Key"
data-element-udi="@item.ContentUdi"
data-element-udi="@item.ContentKey"
data-col-span="@item.ColumnSpan"
data-row-span="@item.RowSpan"
style=" --umb-block-grid--item-column-span: @item.ColumnSpan; --umb-block-grid--item-row-span: @item.RowSpan; ">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<div class="umb-block-list">
@foreach (var block in Model)
{
if (block?.ContentUdi == null)
if (block?.ContentKey == null)
{
continue;
}
Expand Down
Loading
Loading