Skip to content

Commit 653e459

Browse files
authored
Merge pull request #7028 from umbraco/16rc/preps
Prep 16: Added RC Guide to CMS + notes to product landing pages
2 parents 88c30c0 + 0ee6a11 commit 653e459

File tree

7 files changed

+58
-46
lines changed

7 files changed

+58
-46
lines changed

16/umbraco-cms/README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,14 @@ layout:
2020

2121
# Umbraco CMS Documentation
2222

23+
{% hint style="info" %}
24+
This is documentation for the **Umbraco CMS 16 Release Candidate**.
25+
26+
Do you want to test the Release candidate?
27+
28+
Check out the [**Release Candidate Guide**](release-candidate-guide.md) to get started.
29+
{% endhint %}
30+
2331
Umbraco CMS is a flexible and editor-friendly Content Management System (CMS) that allows you to create beautiful and modern websites. Use the latest version of .NET, integrate with your favorite services, and help your customers launch a website tailored to their specific needs.
2432

2533
Learn more about Umbraco CMS and get an overview of the top features on [Umbraco.com](https://umbraco.com/products/umbraco-cms/).
@@ -47,4 +55,3 @@ The documentation for Umbraco CMS provides information for experienced Umbraco a
4755
***
4856

4957
{% include ".gitbook/includes/umbraco-fundamentals-training-course.md" %}
50-

16/umbraco-cms/release-candidate-guide.md

Lines changed: 30 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -2,46 +2,56 @@
22
description: >-
33
Learn how to start testing the Release Candidate for the latest version of
44
Umbraco CMS, and find information about new and updated documentation.
5-
hidden: true
65
---
76

87
# Release Candidate Guide
98

10-
## How to test the Release Candidate
9+
The RC can be used to test your website and projects against the next major version of Umbraco CMS.
1110

12-
{% hint style="warning" %}
13-
To install the Umbraco 15 Release Candidate you need the latest [.NET SDK 9.0.0](https://dotnet.microsoft.com/en-us/download/dotnet/9.0).
11+
This article contains all the resources needed for you to start testing.
12+
13+
* [How to Test the Release Candidate](#test-the-release-candidate)
14+
* [What to Focus on When Testing](#what-to-focus-on-when-testing)
15+
* [New and Updated Documentation](#new-and-updated-documentation)
16+
17+
{% hint style="info" %}
18+
This document will be updated and expanded as more and more documentation are added throughout the release candidate phase.
1419
{% endhint %}
1520

16-
The[ release candidate is available on NuGet](https://www.nuget.org/packages/Umbraco.Cms/15.0.0-rc2).
21+
## Test the Release Candidate
22+
23+
Ensure you meet the prerequisites and move on to the installation steps outlined below.
24+
25+
### Prerequisites
26+
27+
* The latest [.NET SDK 9.0.0](https://dotnet.microsoft.com/en-us/download/dotnet/9.0).
28+
29+
### Install the Release Candidate
30+
31+
The [release candidate is available on NuGet](https://www.nuget.org/packages/Umbraco.Cms/16.0.0-rc).
1732

1833
1. Install the Umbraco dotnet template for the Release Candidate.
1934

20-
```
21-
dotnet new install Umbraco.Templates::15.0.0-rc*
35+
```cmd
36+
dotnet new install Umbraco.Templates::16.0.0-rc*
2237
```
2338

2439
2. Create a new Umbraco project.
2540

26-
```
41+
```cmd
2742
dotnet new umbraco -n MyCustomUmbracoProject
2843
```
2944

3045
3. Navigate to the newly created folder.
3146

32-
```
47+
```cmd
3348
cd MyCustomUmbracoProject
3449
```
3550

36-
4. Build the project.
51+
4. Build and run the project.
3752

38-
```
53+
```cmd
3954
dotnet build
40-
```
41-
42-
5. Run the project.
43-
44-
```
4555
dotnet run
4656
```
4757

@@ -51,9 +61,9 @@ This will boot the project, and write the log to the console. The website is now
5161
Alternatively, you can install and run the Umbraco project using your favorite IDE (Integrated Development Environment).
5262
{% endhint %}
5363

54-
### What should you focus on when testing?
64+
## What to focus on when testing
5565

56-
Read the [Release Candidate blog post](https://umbraco.com/blog/umbraco-15-release-candidate/) to learn more about notable features and changes added to the upcoming version.
66+
Read the [Release Candidate blog post](https://umbraco.com/) to learn more about notable features and changes added to the upcoming version.
5767

5868
The blog post will mention if there are any specific features or workflows that the Umbraco HQ team needs feedback on.
5969

@@ -63,33 +73,8 @@ Here is a list of all the articles that are new to this version or have been upd
6373

6474
### New articles
6575

66-
* [Tutorial: Extending the Help Menu](tutorials/extending-the-help-menu.md)
67-
* [Running Umbraco in Docker using Docker Compose](fundamentals/setup/install/running-umbraco-on-docker-locally.md)
68-
* [Creating a Custom Seed Key Provider](extending/creating-custom-seed-key-provider.md)
69-
* [Cache Settings](reference/configuration/cache-settings.md)
70-
* [Cache Seeding](reference/cache/cache-seeding.md)
71-
* [API Users](fundamentals/data/users/api-users.md)
72-
* [External Access](reference/management-api/external-access.md)
73-
* New UI for the Rich Text Editor: Tiptap
74-
* [Rich Text Editor](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/)
75-
* [Configuration](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/configuration.md)
76-
* [Blocks](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/blocks.md)
77-
* [Change Rich Text Editor UI](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/rich-text-editor/change-rich-text-editor-ui.md)
76+
* Coming soon...
7877

7978
### Updated articles
8079

81-
* Changes made based on the removal of the UmbracoAPIController
82-
* [Common Pitfalls: Static references to scoped references](reference/common-pitfalls.md#static-references-to-scoped-instances-such-as-umbracohelper)
83-
* [Creating a custom database table](extending/database.md)
84-
* [Image Cropper](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/image-cropper.md)
85-
* [UmbracoMapper](reference/mapping.md)
86-
* [Depencency Injection / IoC](reference/using-ioc.md)
87-
* [Working with Caching: Tags example](reference/cache/examples/tags.md)
88-
* [Unit Testing](implementation/unit-testing.md)
89-
* [Querying: ITagQuery](reference/querying/itagquery.md)
90-
* [UmbracoContext helper](reference/querying/umbraco-context.md)
91-
* [Block Grid](fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/block-editor/block-grid-editor.md)
92-
* Replacing the deprecated GetAll() method
93-
* [Working with Caching: Tags example](reference/cache/examples/tags.md)
94-
* [Using Services: ContentTypeService](reference/management/using-services/contenttypeservice.md)
95-
* [Request Pipeline: IContentFinder](reference/routing/request-pipeline/icontentfinder.md)
80+
* Coming soon...

16/umbraco-commerce/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ description: >-
77

88
# Umbraco Commerce Documentation
99

10+
{% hint style="info" %}
11+
This is documentation for the **Umbraco Commerce 16 Release Candidate**.
12+
{% endhint %}
13+
1014
Umbraco Commerce is the official Umbraco e-commerce addon for your Umbraco CMS website. It can be used to set up small webshops, while it can also be implemented for big-scale e-commerce solutions spanning multiple countries.
1115

1216
<table data-view="cards"><thead><tr><th></th><th></th><th data-hidden data-card-target data-type="content-ref"></th><th data-hidden data-card-cover data-type="files"></th></tr></thead><tbody><tr><td><a href="getting-started/requirements.md"><strong>Install Umbraco Commerce</strong></a></td><td>Find all the information you need to get started using Umbraco Commerce with your Umbraco CMS implementation.</td><td><a href="getting-started/requirements.md">requirements.md</a></td><td><a href=".gitbook/assets/commerce-icon.png">commerce-icon.png</a></td></tr><tr><td><a href="https://docs.umbraco.com/umbraco-commerce/v/10.commerce.latest/how-to-guides/overview"><strong>How-to Guides</strong></a></td><td>Looking to configure and implement something specific? Take a look through the How-to section where you might find a guide that fits your needs.</td><td><a href="how-to-guides/overview.md">overview.md</a></td><td><a href=".gitbook/assets/umbraco_free_way_01.png">umbraco_free_way_01.png</a></td></tr><tr><td><a href="https://docs.umbraco.com/umbraco-commerce/v/10.commerce.latest/key-concepts/overview"><strong>Key Concepts</strong></a></td><td>Looking to learn more about the different concepts and features of Umbraco Commerce? You can find detailed information about each of them in this section.</td><td><a href="key-concepts/overview.md">overview.md</a></td><td><a href=".gitbook/assets/Umbraco_Brand_Guidelines_2020_28_Illustration blocks.png">Umbraco_Brand_Guidelines_2020_28_Illustration blocks.png</a></td></tr></tbody></table>

16/umbraco-deploy/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ description: Documentation on how to work with Umbraco Deploy.
44

55
# Umbraco Deploy Documentation
66

7+
{% hint style="info" %}
8+
This is documentation for the **Umbraco Deploy 16 Release Candidate**.
9+
{% endhint %}
10+
711
Umbraco Deploy is a deployment tool that helps you with the process of transferring code and data between multiple environments. Deploy can be configured for many different setups and is great for both small setups as well as large and more complex infrastructures.
812

913
<table data-view="cards"><thead><tr><th></th><th></th><th data-hidden data-card-cover data-type="files"></th><th data-hidden data-card-target data-type="content-ref"></th></tr></thead><tbody><tr><td><strong>Set up Umbraco Deploy</strong></td><td>Learn how you can set up Umbraco Deploy on new and existing Umbraco projects.</td><td><a href=".gitbook/assets/Documentations Icons_Umbraco_Deploy_Setup.png">Documentations Icons_Umbraco_Deploy_Setup.png</a></td><td><a href="installation/install-configure.md">install-configure.md</a></td></tr><tr><td><strong>Deployment workflow in</strong></td><td>Learn about how the Deployment workflow in Umbraco Deploy work.</td><td><a href=".gitbook/assets/Documentations Icons_Umbraco_Deploy_Deployment_Workflow.png">Documentations Icons_Umbraco_Deploy_Deployment_Workflow.png</a></td><td><a href="deployment-workflow/">deployment-workflow</a></td></tr><tr><td><strong>Upgrading</strong></td><td>Learn how you can upgrade Umbraco Deploy.</td><td><a href=".gitbook/assets/Documentations Icons_Umbraco_Deploy_Upgrading.png">Documentations Icons_Umbraco_Deploy_Upgrading.png</a></td><td><a href="upgrades/">upgrades</a></td></tr></tbody></table>

16/umbraco-forms/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ description: >-
66

77
# Umbraco Forms Documentation
88

9+
{% hint style="info" %}
10+
This is documentation for the **Umbraco Forms 16 Release Candidate**.
11+
{% endhint %}
12+
913
Umbraco Forms is a tool that lets you build forms of all shapes and sizes and put them on your Umbraco websites. Build forms using a long list of elements like multiple choice, dropdowns, text areas and checkboxes. Choose between a series of different workflows and control what happens once a form has been submitted.
1014

1115
[Purchase Umbraco Forms](https://umbraco.com/products/umbraco-forms/) or sign up for an [Umbraco Cloud](https://try.umbraco.com/) project where Umbraco Forms is part of the package.

16/umbraco-ui-builder/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ description: A guide to using Umbraco UI Builder for creating custom backoffice
44

55
# Umbraco UI Builder Documentation
66

7+
{% hint style="info" %}
8+
This is documentation for the **Umbraco UI Builder 16 Release Candidate**.
9+
{% endhint %}
10+
711
Umbraco UI Builder is a tool for creating custom Backoffice User Interfaces (UIs) in Umbraco using a fluent API.
812

913
![Example Umbraco UI Builder UI](images/listview.png)

16/umbraco-workflow/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ description: Documentation on how to work with Umbraco Workflow in just a few st
55

66
# Umbraco Workflow Documentation
77

8+
{% hint style="info" %}
9+
This is documentation for the **Umbraco Workflow 16 Release Candidate**.
10+
{% endhint %}
11+
812
Umbraco Workflow allows the creation of multi-stage approval workflows when writing and publishing content. Umbraco Workflow extends Umbraco's out-of-the-box publishing model with multi-stage and configurable approval workflows. A workflow process comprises multiple steps and multiple users assigned to the group responsible for providing approval at each step.
913

1014
[Learn more or purchase Umbraco Workflow to get all the features and support.](https://umbraco.com/products/umbraco-workflow/)

0 commit comments

Comments
 (0)