Skip to content

Commit

Permalink
🎉 v1.4.0
Browse files Browse the repository at this point in the history
Initial work to support Umbraco v12
Add demo sites for v11 and v12, with the BlockGrid starter kit and uSync
Add alerts for the block if the page isn't saved, or the partial is erroring
  • Loading branch information
rickbutterfield authored Jun 29, 2023
2 parents bd514d1 + aaad090 commit f635490
Show file tree
Hide file tree
Showing 358 changed files with 13,814 additions and 32 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ bld/
[Oo]bj/
[Ll]og/
[Ll]ogs/
src-old/App_Plugins
src-old/App_Plugins/**
src/Our.Umbraco.BlockPreview/App_Plugins
src/Our.Umbraco.BlockPreview/App_Plugins/**

# Visual Studio 2015/2017 cache/options directory
.vs/
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ The Umbraco 10.4+ version of this package is [available via NuGet](https://www.n
To install the package, you can use either .NET CLI:

```
dotnet add package Umbraco.Community.BlockPreview --version 1.3.1
dotnet add package Umbraco.Community.BlockPreview --version 1.4.0
```

or the older NuGet Package Manager:

```
Install-Package Umbraco.Community.BlockPreview -Version 1.3.1
Install-Package Umbraco.Community.BlockPreview -Version 1.4.0
```

## Setup
Expand Down
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.4.0
4 changes: 2 additions & 2 deletions build/release.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@echo off
dotnet build ../src/Umbraco.Community.BlockPreview.csproj --configuration Release /t:rebuild /t:pack -p:PackageOutputPath=../releases/nuget
dotnet build ../src-old/Our.Umbraco.BlockPreview.csproj --configuration Release /t:rebuild /t:pack -p:PackageOutputPath=../releases/nuget
dotnet build ../src/Umbraco.Community.BlockPreview/Umbraco.Community.BlockPreview.csproj --configuration Release /t:rebuild /t:pack -p:PackageOutputPath=../../releases/nuget
dotnet build ../src/Our.Umbraco.BlockPreview/Our.Umbraco.BlockPreview.csproj --configuration Release /t:rebuild /t:pack -p:PackageOutputPath=../../releases/nuget
4 changes: 2 additions & 2 deletions build/release.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@echo off
dotnet build ../src/Umbraco.Community.BlockPreview.csproj --configuration Release /t:rebuild /t:pack -p:PackageOutputPath=../releases/nuget
dotnet build ../src-old/Our.Umbraco.BlockPreview.csproj --configuration Release /t:rebuild /t:pack -p:PackageOutputPath=../releases/nuget
dotnet build ../src/Umbraco.Community.BlockPreview/Umbraco.Community.BlockPreview.csproj --configuration Release /t:rebuild /t:pack -p:PackageOutputPath=../../releases/nuget
dotnet build ../src/Our.Umbraco.BlockPreview/Our.Umbraco.BlockPreview.csproj --configuration Release /t:rebuild /t:pack -p:PackageOutputPath=../../releases/nuget
Binary file modified releases/nuget/Our.Umbraco.BlockPreview.1.3.1.nupkg
Binary file not shown.
Binary file not shown.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@

<IncludeBuildOutput>true</IncludeBuildOutput>

<PackageReadmeFile>README.md</PackageReadmeFile>

</PropertyGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
Expand All @@ -40,15 +42,15 @@
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</Content>
<None Include="build\**">
<None Include="..\..\build\**">
<Pack>true</Pack>
<PackagePath>buildTransitive</PackagePath>
</None>
<None Include="..\.github\readme-assets\icon.png">
<None Include="..\..\.github\readme-assets\icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\README.md">
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
Expand Down
Loading

0 comments on commit f635490

Please sign in to comment.