Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OSOE-903: Update to Orchard Core 2.1.0 #74

Merged
merged 1 commit into from
Dec 4, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="OrchardCore.Module.Targets" Version="2.0.0" />
<PackageReference Include="OrchardCore.Contents" Version="2.0.0" />
<PackageReference Include="OrchardCore.Module.Targets" Version="2.1.0" />
<PackageReference Include="OrchardCore.Contents" Version="2.1.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Lombiq.ContentEditors.Samples/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This sample project demonstrates:
- How to create an async editor provider for a content type. If you are using the OSOCE application you can try it out on the front-end by clicking on the "Content Editor Samples" and "Employee (admin)" menu items. It will redirect you to the Admin UI where you can click through an async editor for the Employee content type that contains two editor pages. You can also access the demo editor on this URL: _/Admin/ContentTypes/Employee/ContentItemAsyncEditor_.
- How to create an async editor that can be used on the front-end instead of the Admin UI. You can try it out by clicking on the "Content Editor Samples" and "Support Ticket (front-end)" menu items. It will redirect you to an editor where you can click through an async editor for the Support Ticket content type that contains two editor pages. Instead of using the Admin UI, it uses a custom front-end editor that is initialized by a custom controller (`FrontEndDemoContentItemAsyncEditorController`). You can also access the demo editor on this URL: _/FrontEndDemoContentItemAsyncEditor_.

Note, that both of these example editors are accessible with the respective EditContent permission only. For the sake of simplicity, just log in with the site owner account to try them out.
Note, that both of these example editors are accessible with the respective EditContent permission only. For the sake of simplicity, just log in with an Administrator account to try them out.

For detailed instructions please check out the training sections below.

Expand Down
14 changes: 7 additions & 7 deletions Lombiq.ContentEditors/Lombiq.ContentEditors.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="OrchardCore.Module.Targets" Version="2.0.0" />
<PackageReference Include="OrchardCore.ContentFields" Version="2.0.0" />
<PackageReference Include="OrchardCore.ContentManagement" Version="2.0.0" />
<PackageReference Include="OrchardCore.ContentTypes.Abstractions" Version="2.0.0" />
<PackageReference Include="OrchardCore.DisplayManagement" Version="2.0.0" />
<PackageReference Include="OrchardCore.Media" Version="2.0.0" />
<PackageReference Include="OrchardCore.ResourceManagement" Version="2.0.0" />
<PackageReference Include="OrchardCore.Module.Targets" Version="2.1.0" />
<PackageReference Include="OrchardCore.ContentFields" Version="2.1.0" />
<PackageReference Include="OrchardCore.ContentManagement" Version="2.1.0" />
<PackageReference Include="OrchardCore.ContentTypes.Abstractions" Version="2.1.0" />
<PackageReference Include="OrchardCore.DisplayManagement" Version="2.1.0" />
<PackageReference Include="OrchardCore.Media" Version="2.1.0" />
<PackageReference Include="OrchardCore.ResourceManagement" Version="2.1.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading