Skip to content

Commit

Permalink
Updated to v10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tidyui committed Nov 10, 2021
1 parent feacf71 commit 4a60f35
Show file tree
Hide file tree
Showing 10 changed files with 68 additions and 63 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.100-rc.2.21505.57
dotnet-version: '6.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dotnet_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.100-rc.2.21505.57
dotnet-version: '6.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish_to_nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
- name: Setup .NET Core @ Latest
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
source-url: https://api.nuget.org/v3/index.json
env:
NUGET_AUTH_TOKEN: ${{secrets.NugetAuthToken}}
Expand Down
2 changes: 1 addition & 1 deletion nuspec/Piranha.Templates.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
<metadata>
<id>Piranha.Templates</id>
<version>10.0.0-alpha1</version>
<version>10.0.0</version>
<title>Piranha CMS Templates</title>
<authors>Piranha CMS</authors>
<owners>Piranha CMS</owners>
Expand Down
34 changes: 17 additions & 17 deletions src/empty/Empty.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Piranha" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha.AspNetCore" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseSQLite) != False" Include="Piranha.AspNetCore.Identity.SQLite" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseSQLServer) == True" Include="Piranha.AspNetCore.Identity.SQLServer" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseMySql) == True" Include="Piranha.AspNetCore.Identity.MySql" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UsePostgreSql) == True" Include="Piranha.AspNetCore.Identity.PostgreSql" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha.AttributeBuilder" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseBlobStorage) == True" Include="Piranha.Azure.BlobStorage" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseSQLite) != False" Include="Piranha.Data.EF.SQLite" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseSQLServer) == True" Include="Piranha.Data.EF.SQLServer" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseMySql) == True" Include="Piranha.Data.EF.MySql" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UsePostgreSql) == True" Include="Piranha.Data.EF.PostgreSql" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha.ImageSharp" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseBlobStorage) != True" Include="Piranha.Local.FileStorage" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha.Manager" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha.Manager.LocalAuth" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha.Manager.TinyMCE" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha" Version="10.0.0" />
<PackageReference Include="Piranha.AspNetCore" Version="10.0.0" />
<PackageReference Condition="$(UseSQLite) != False" Include="Piranha.AspNetCore.Identity.SQLite" Version="10.0.0" />
<PackageReference Condition="$(UseSQLServer) == True" Include="Piranha.AspNetCore.Identity.SQLServer" Version="10.0.0" />
<PackageReference Condition="$(UseMySql) == True" Include="Piranha.AspNetCore.Identity.MySql" Version="10.0.0" />
<PackageReference Condition="$(UsePostgreSql) == True" Include="Piranha.AspNetCore.Identity.PostgreSql" Version="10.0.0" />
<PackageReference Include="Piranha.AttributeBuilder" Version="10.0.0" />
<PackageReference Condition="$(UseBlobStorage) == True" Include="Piranha.Azure.BlobStorage" Version="10.0.0" />
<PackageReference Condition="$(UseSQLite) != False" Include="Piranha.Data.EF.SQLite" Version="10.0.0" />
<PackageReference Condition="$(UseSQLServer) == True" Include="Piranha.Data.EF.SQLServer" Version="10.0.0" />
<PackageReference Condition="$(UseMySql) == True" Include="Piranha.Data.EF.MySql" Version="10.0.0" />
<PackageReference Condition="$(UsePostgreSql) == True" Include="Piranha.Data.EF.PostgreSql" Version="10.0.0" />
<PackageReference Include="Piranha.ImageSharp" Version="10.0.0" />
<PackageReference Condition="$(UseBlobStorage) != True" Include="Piranha.Local.FileStorage" Version="10.0.0" />
<PackageReference Include="Piranha.Manager" Version="10.0.0" />
<PackageReference Include="Piranha.Manager.LocalAuth" Version="10.0.0" />
<PackageReference Include="Piranha.Manager.TinyMCE" Version="10.0.0" />
</ItemGroup>

</Project>
6 changes: 3 additions & 3 deletions src/module/TemplateModule.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Piranha" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha.AspNetCore.Hosting" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha.Manager" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha" Version="10.0.0" />
<PackageReference Include="Piranha.AspNetCore.Hosting" Version="10.0.0" />
<PackageReference Include="Piranha.Manager" Version="10.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
8 changes: 5 additions & 3 deletions src/web/mvc/Controllers/SetupController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ await _api.Media.SaveAsync(new Piranha.Models.StreamMediaContent()
post3.Blocks.Add(new HtmlBlock
{
Body =
"<p class=\"lead\">Please note that this is a preview version of Piranha CMS.</p>"
"<p class=\"lead\">Big thanks to [@aatmmr](https://github.com/aatmmr), [@brianpopow](https://github.com/brianpopow) and [@tedvanderveen](https://github.com/tedvanderveen) for their contributions and all of the people who has helped with translating the manager.</p>"
});
post3.Blocks.Add(new ColumnBlock
{
Expand All @@ -252,11 +252,13 @@ await _api.Media.SaveAsync(new Piranha.Models.StreamMediaContent()
"* Update to .NET 6 [#1733](https://github.com/piranhacms/piranha.core/issues/1733)\n" +
"* Use Identify to get image width and height [#1734](https://github.com/piranhacms/piranha.core/pull/1734)\n" +
"* Clean up application startup [#1738](https://github.com/piranhacms/piranha.core/issues/1738)\n" +
"* Add markdown block [#1744](https://github.com/piranhacms/piranha.core/issues/1744)\n\n" +
"* Add markdown block [#1744](https://github.com/piranhacms/piranha.core/issues/1744)\n" +
"* Remove description attributes [#1747](https://github.com/piranhacms/piranha.core/issues/1747)\n\n" +
"#### Manager\n\n" +
"* Add content settings (with region support) [#1524](https://github.com/piranhacms/piranha.core/issues/1524)\n" +
"* Update Summernote package [#1730](https://github.com/piranhacms/piranha.core/issues/1730)\n" +
"* Manager security update [#1741](https://github.com/piranhacms/piranha.core/issues/1741)\n\n" +
"* Manager security update [#1741](https://github.com/piranhacms/piranha.core/issues/1741)\n" +
"* Redesign Add page button in manager [#1748](https://github.com/piranhacms/piranha.core/issues/1748)\n\n" +
"#### Bugfixes\n\n" +
"* Cannot access disposed object [#1701](https://github.com/piranhacms/piranha.core/issues/1701)\n" +
"* Invalid PageField URL in Manager [#1705](https://github.com/piranhacms/piranha.core/issues/1705)\n"
Expand Down
34 changes: 17 additions & 17 deletions src/web/mvc/MvcWeb.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Piranha" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha.AspNetCore" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseSQLite) != False" Include="Piranha.AspNetCore.Identity.SQLite" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseSQLServer) == True" Include="Piranha.AspNetCore.Identity.SQLServer" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseMySql) == True" Include="Piranha.AspNetCore.Identity.MySql" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UsePostgreSql) == True" Include="Piranha.AspNetCore.Identity.PostgreSql" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha.AttributeBuilder" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseBlobStorage) == True" Include="Piranha.Azure.BlobStorage" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseSQLite) != False" Include="Piranha.Data.EF.SQLite" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseSQLServer) == True" Include="Piranha.Data.EF.SQLServer" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseMySql) == True" Include="Piranha.Data.EF.MySql" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UsePostgreSql) == True" Include="Piranha.Data.EF.PostgreSql" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha.ImageSharp" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseBlobStorage) != True" Include="Piranha.Local.FileStorage" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha.Manager" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha.Manager.LocalAuth" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha.Manager.TinyMCE" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha" Version="10.0.0" />
<PackageReference Include="Piranha.AspNetCore" Version="10.0.0" />
<PackageReference Condition="$(UseSQLite) != False" Include="Piranha.AspNetCore.Identity.SQLite" Version="10.0.0" />
<PackageReference Condition="$(UseSQLServer) == True" Include="Piranha.AspNetCore.Identity.SQLServer" Version="10.0.0" />
<PackageReference Condition="$(UseMySql) == True" Include="Piranha.AspNetCore.Identity.MySql" Version="10.0.0" />
<PackageReference Condition="$(UsePostgreSql) == True" Include="Piranha.AspNetCore.Identity.PostgreSql" Version="10.0.0" />
<PackageReference Include="Piranha.AttributeBuilder" Version="10.0.0" />
<PackageReference Condition="$(UseBlobStorage) == True" Include="Piranha.Azure.BlobStorage" Version="10.0.0" />
<PackageReference Condition="$(UseSQLite) != False" Include="Piranha.Data.EF.SQLite" Version="10.0.0" />
<PackageReference Condition="$(UseSQLServer) == True" Include="Piranha.Data.EF.SQLServer" Version="10.0.0" />
<PackageReference Condition="$(UseMySql) == True" Include="Piranha.Data.EF.MySql" Version="10.0.0" />
<PackageReference Condition="$(UsePostgreSql) == True" Include="Piranha.Data.EF.PostgreSql" Version="10.0.0" />
<PackageReference Include="Piranha.ImageSharp" Version="10.0.0" />
<PackageReference Condition="$(UseBlobStorage) != True" Include="Piranha.Local.FileStorage" Version="10.0.0" />
<PackageReference Include="Piranha.Manager" Version="10.0.0" />
<PackageReference Include="Piranha.Manager.LocalAuth" Version="10.0.0" />
<PackageReference Include="Piranha.Manager.TinyMCE" Version="10.0.0" />
</ItemGroup>

</Project>
8 changes: 5 additions & 3 deletions src/web/razor/Controllers/SetupController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ await _api.Media.SaveAsync(new Piranha.Models.StreamMediaContent()
post3.Blocks.Add(new HtmlBlock
{
Body =
"<p class=\"lead\">Please note that this is a preview version of Piranha CMS.</p>"
"<p class=\"lead\">Big thanks to [@aatmmr](https://github.com/aatmmr), [@brianpopow](https://github.com/brianpopow) and [@tedvanderveen](https://github.com/tedvanderveen) for their contributions and all of the people who has helped with translating the manager.</p>"
});
post3.Blocks.Add(new ColumnBlock
{
Expand All @@ -252,11 +252,13 @@ await _api.Media.SaveAsync(new Piranha.Models.StreamMediaContent()
"* Update to .NET 6 [#1733](https://github.com/piranhacms/piranha.core/issues/1733)\n" +
"* Use Identify to get image width and height [#1734](https://github.com/piranhacms/piranha.core/pull/1734)\n" +
"* Clean up application startup [#1738](https://github.com/piranhacms/piranha.core/issues/1738)\n" +
"* Add markdown block [#1744](https://github.com/piranhacms/piranha.core/issues/1744)\n\n" +
"* Add markdown block [#1744](https://github.com/piranhacms/piranha.core/issues/1744)\n" +
"* Remove description attributes [#1747](https://github.com/piranhacms/piranha.core/issues/1747)\n\n" +
"#### Manager\n\n" +
"* Add content settings (with region support) [#1524](https://github.com/piranhacms/piranha.core/issues/1524)\n" +
"* Update Summernote package [#1730](https://github.com/piranhacms/piranha.core/issues/1730)\n" +
"* Manager security update [#1741](https://github.com/piranhacms/piranha.core/issues/1741)\n\n" +
"* Manager security update [#1741](https://github.com/piranhacms/piranha.core/issues/1741)\n" +
"* Redesign Add page button in manager [#1748](https://github.com/piranhacms/piranha.core/issues/1748)\n\n" +
"#### Bugfixes\n\n" +
"* Cannot access disposed object [#1701](https://github.com/piranhacms/piranha.core/issues/1701)\n" +
"* Invalid PageField URL in Manager [#1705](https://github.com/piranhacms/piranha.core/issues/1705)\n"
Expand Down
34 changes: 17 additions & 17 deletions src/web/razor/RazorWeb.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Piranha" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha.AspNetCore" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseSQLite) != False" Include="Piranha.AspNetCore.Identity.SQLite" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseSQLServer) == True" Include="Piranha.AspNetCore.Identity.SQLServer" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseMySql) == True" Include="Piranha.AspNetCore.Identity.MySql" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UsePostgreSql) == True" Include="Piranha.AspNetCore.Identity.PostgreSql" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha.AttributeBuilder" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseBlobStorage) == True" Include="Piranha.Azure.BlobStorage" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseSQLite) != False" Include="Piranha.Data.EF.SQLite" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseSQLServer) == True" Include="Piranha.Data.EF.SQLServer" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseMySql) == True" Include="Piranha.Data.EF.MySql" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UsePostgreSql) == True" Include="Piranha.Data.EF.PostgreSql" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha.ImageSharp" Version="10.0.0-alpha1" />
<PackageReference Condition="$(UseBlobStorage) != True" Include="Piranha.Local.FileStorage" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha.Manager" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha.Manager.LocalAuth" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha.Manager.TinyMCE" Version="10.0.0-alpha1" />
<PackageReference Include="Piranha" Version="10.0.0" />
<PackageReference Include="Piranha.AspNetCore" Version="10.0.0" />
<PackageReference Condition="$(UseSQLite) != False" Include="Piranha.AspNetCore.Identity.SQLite" Version="10.0.0" />
<PackageReference Condition="$(UseSQLServer) == True" Include="Piranha.AspNetCore.Identity.SQLServer" Version="10.0.0" />
<PackageReference Condition="$(UseMySql) == True" Include="Piranha.AspNetCore.Identity.MySql" Version="10.0.0" />
<PackageReference Condition="$(UsePostgreSql) == True" Include="Piranha.AspNetCore.Identity.PostgreSql" Version="10.0.0" />
<PackageReference Include="Piranha.AttributeBuilder" Version="10.0.0" />
<PackageReference Condition="$(UseBlobStorage) == True" Include="Piranha.Azure.BlobStorage" Version="10.0.0" />
<PackageReference Condition="$(UseSQLite) != False" Include="Piranha.Data.EF.SQLite" Version="10.0.0" />
<PackageReference Condition="$(UseSQLServer) == True" Include="Piranha.Data.EF.SQLServer" Version="10.0.0" />
<PackageReference Condition="$(UseMySql) == True" Include="Piranha.Data.EF.MySql" Version="10.0.0" />
<PackageReference Condition="$(UsePostgreSql) == True" Include="Piranha.Data.EF.PostgreSql" Version="10.0.0" />
<PackageReference Include="Piranha.ImageSharp" Version="10.0.0" />
<PackageReference Condition="$(UseBlobStorage) != True" Include="Piranha.Local.FileStorage" Version="10.0.0" />
<PackageReference Include="Piranha.Manager" Version="10.0.0" />
<PackageReference Include="Piranha.Manager.LocalAuth" Version="10.0.0" />
<PackageReference Include="Piranha.Manager.TinyMCE" Version="10.0.0" />
</ItemGroup>

</Project>

0 comments on commit 4a60f35

Please sign in to comment.