Skip to content

Commit daa152c

Browse files
Sofie Toft Kristensengitbook-bot
authored andcommitted
GITBOOK-93: Flex.Env: Update screenshots
1 parent d5f888d commit daa152c

File tree

14 files changed

+31
-32
lines changed

14 files changed

+31
-32
lines changed
34.8 KB
Loading
38.8 KB
Loading
55.4 KB
Loading
6.35 KB
Loading
-6.69 KB
Loading

umbraco-cloud/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ description: >-
88

99
Umbraco Cloud is a hosting option for your favorite Umbraco CMS offered by Umbraco HQ. Built on Microsoft Azure Cloud and encompassing web standard approaches, Umbraco Cloud is familiar to Umbraco's new and old users. With Umbraco Cloud, there are no limits to what you can accomplish. You can do anything with Umbraco and web technology with Umbraco Cloud.
1010

11-
<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><strong>Getting Started</strong></td><td>Learn how to get started working with Umbraco Cloud.</td><td><a href="getting-started/the-umbraco-cloud-portal/">the-umbraco-cloud-portal</a></td><td><a href=".gitbook/assets/Documentations Icons_Umbraco_Cloud_Getting_Started.png">Documentations Icons_Umbraco_Cloud_Getting_Started.png</a></td></tr><tr><td><strong>Setup</strong></td><td>Learn how you can set up your Umbraco Cloud projects.</td><td><a href="set-up/ready-to-set-up-your-project.md">set-up/ready-to-set-up-your-project.md</a></td><td><a href=".gitbook/assets/Documentations Icons_Umbraco_Cloud_Setup.png">Documentations Icons_Umbraco_Cloud_Setup.png</a></td></tr><tr><td><strong>Deployments</strong></td><td>Learn how Deployments on Umbraco Cloud works.</td><td><a href="deployment/">deployment</a></td><td><a href=".gitbook/assets/Documentations Icons_Umbraco_Cloud_Deploying.png">Documentations Icons_Umbraco_Cloud_Deploying.png</a></td></tr></tbody></table>
11+
<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><strong>Getting Started</strong></td><td>Learn how to get started working with Umbraco Cloud.</td><td><a href="getting-started/the-umbraco-cloud-portal/">the-umbraco-cloud-portal</a></td><td><a href=".gitbook/assets/Documentations Icons_Umbraco_Cloud_Getting_Started.png">Documentations Icons_Umbraco_Cloud_Getting_Started.png</a></td></tr><tr><td><strong>Setup</strong></td><td>Learn how you can set up your Umbraco Cloud projects.</td><td><a href="set-up/ready-to-set-up-your-project.md">ready-to-set-up-your-project.md</a></td><td><a href=".gitbook/assets/Documentations Icons_Umbraco_Cloud_Setup.png">Documentations Icons_Umbraco_Cloud_Setup.png</a></td></tr><tr><td><strong>Deployments</strong></td><td>Learn how Deployments on Umbraco Cloud works.</td><td><a href="deployment/">deployment</a></td><td><a href=".gitbook/assets/Documentations Icons_Umbraco_Cloud_Deploying.png">Documentations Icons_Umbraco_Cloud_Deploying.png</a></td></tr></tbody></table>
1212

1313
{% embed url="https://www.youtube.com/watch?v=gKaDKENeea4" %}
1414
How to create a trial
@@ -73,7 +73,7 @@ Once a project is created, you can get an overview of it from the Umbraco Cloud
7373
2. Select your Project from the **Projects** dashboard.
7474
3. Click on **Overview** from the left side menu.
7575

76-
<figure><img src=".gitbook/assets/image (65).png" alt="Project Overview"><figcaption><p>Project Overview.</p></figcaption></figure>
76+
<figure><img src=".gitbook/assets/image.png" alt=""><figcaption><p>Project Overview</p></figcaption></figure>
7777

7878
The **Overview** menu consists of:
7979

umbraco-cloud/getting-started/git-repository-in-a-cloud-project.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,30 +39,30 @@ Once you're happy with the results or wish to see how your website has progresse
3939

4040
{% tabs %}
4141
{% tab title="Umbraco 10+" %}
42-
### Code Deployment Summary
42+
#### Code Deployment Summary
4343

4444
![Umbraco Cloud Overview](images/UCP.png)
4545

4646
In the above diagram, the Umbraco Git repository contains the source code of a class library CS project.
4747

4848
With this setup, once you commit your code in the Umbraco Cloud Git repository, your C# source code is built by Umbraco Cloud and then deployed to the `wwwroot` folder.
4949

50-
### Disadvantages of using an Umbraco Cloud Project repository as a source code repository
50+
#### Disadvantages of using an Umbraco Cloud Project repository as a source code repository
5151

5252
* We only guarantee to maintain and keep the `master` branch. If there are any other branches, they might be removed without any notification causing data loss.
5353
* You will need to commit your frontend artifacts as the build pipeline only builds dlls from your C# code.
5454
{% endtab %}
5555

5656
{% tab title="Legacy Umbraco 7 and 8" %}
57-
### Code Deployment Summary
57+
#### Code Deployment Summary
5858

5959
<figure><img src="../.gitbook/assets/UCP_v8.png" alt=""><figcaption><p>Umbraco cloud overview Legacy versions</p></figcaption></figure>
6060

6161
In the above diagram, the external git repository contains the source code of a class library CS project, if you had a class library project that was used in your Cloud project.
6262

6363
With this setup, you commit your changes twice. Once to commit your code in your source control and the other commit to the Umbraco Cloud Git repository to deploy your website. Your source code is not hosted on Umbraco Cloud but only your cloned project will be in the Umbraco Cloud Git Repository. Your code is built and compiled into the cloned project and then pushed to Umbraco Cloud. Thus updating the site with your latest code changes.
6464

65-
### Disadvantages of using an Umbraco Cloud Project repository as a source code repository
65+
#### Disadvantages of using an Umbraco Cloud Project repository as a source code repository
6666

6767
* We only guarantee to maintain and keep the `master` branch. If there are any other branches, they might be removed without any notification causing data loss.
6868
* You will always need to commit your dll files.

umbraco-cloud/getting-started/the-umbraco-cloud-portal/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ When you click on the User Profile link, you will find the following options:
7171

7272
Managing your projects has been simplified with Umbraco Cloud. By navigating to a specific project, you can quickly view the environments within your project.
7373

74-
<figure><img src="../../.gitbook/assets/image (8).png" alt="Project Overview"><figcaption><p>Project Overview</p></figcaption></figure>
74+
<figure><img src="../../.gitbook/assets/image (1).png" alt=""><figcaption><p>Project Overview</p></figcaption></figure>
7575

7676
* **Project Name:** includes options to **Create environments** or **Invite User**.
7777
* **Environment Name:** offers options to **Restart** the environment, view **History**, **Logs**, **Error Logs**, **Clone project**, **Delete** project.

umbraco-cloud/release-notes/overview-2024/2024-01-releasenotes.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
* **Self-Service Cipher Suite Management** - Effortlessly manage and disable cipher suites on the Security page for tailored efficient control.
66
* **Project Invitation Renewal Request** - Easily request a resend of expired Umbraco Cloud project invitations with this new 'Request New Invitation' feature.
77

8-
## [Self-Service Cipher Suite Management](../set-up/project-settings/manage-security.md#cipher-suite-management)
8+
## [Self-Service Cipher Suite Management](../../set-up/project-settings/manage-security.md#cipher-suite-management)
99

1010
In our ongoing effort to enhance your experience with Umbraco Cloud, we've introduced a new feature that puts the power of cipher suite management at your fingertips. Now available as a self-service option in the Cloud Portal's “Security Page”, this update lets you enable or disable cipher suites directly through a user-friendly "Ciphers" dropdown menu.
1111

1212
We understand that managing security settings is a critical aspect of any cloud project, and our goal is to make this process as seamless as possible. With this latest update, you have the flexibility to tailor security settings to your specific needs, whether it's for an individual project or across multiple hostnames. By default, we've kept all cipher suites enabled, ensuring that you start with robust security measures in place
1313

14-
![Disable Cipher Suites](images/DisableCipherSuites.gif)
14+
![Disable Cipher Suites](../images/DisableCipherSuites.gif)
1515

1616
The interface for this feature has been designed with simplicity in mind. You can now adjust your security settings with just a few clicks, saving you time and effort and allowing you to focus on the more critical aspects of your work. We believe this streamlined approach will significantly enhance your overall efficiency and ease of use.
1717

@@ -21,7 +21,7 @@ We are pleased to introduce an update to Umbraco Cloud, focusing on the efficien
2121

2222
When an invitation expires, you'll on the “Pending Invites” page under your profile, see a "Request New Invitation" button. Clicking this button triggers an email to the original inviter, prompting them to take action. The email contains a link that redirects the inviter to the "Edit Team" page of the project, where they can issue a new invitation to replace the expired one.
2323

24-
![Request New Project Invite](images/ResendProjectInvite.gif)
24+
![Request New Project Invite](../images/ResendProjectInvite.gif)
2525

2626
This new feature aims to significantly reduce any friction caused by expired project invites, ensuring seamless and uninterrupted collaboration across teams and organizations in Umbraco Cloud.
2727

umbraco-cloud/release-notes/overview-2024/2024-02-releasenotes.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@
77
* **Improved Search on Projects Dashboard** - Enhances project searchability with the ability to use project names, associated tags, and product versions, complemented by a filter-as-you-type functionality for streamlined navigation and project management.
88

99
## Project History Page (Beta)
10+
1011
The "Project History Page," today released as a beta release, provides a detailed insight into the significant activities within your project. This feature catalogs events initiated by users or by Umbraco Cloud itself, including modifications to your project plan, portal deployments, and automatic and manual upgrades.
1112

12-
![Project History Page](images/ProjectHistory.gif)
13+
![Project History Page](../images/ProjectHistory.gif)
1314

1415
Each entry in the overview is interactive, allowing you to click on it for more detailed information. This feature ensures that you have easy access to in-depth details about each event, further enhancing your insight into your project's history and ongoing activities.
1516

@@ -19,24 +20,25 @@ The overview today concentrates on activities spurred by users and Umbraco Cloud
1920

2021
The new "Upgrade Details" page is your gateway to detailed insights for every upgrade. By clicking the 'info' link from the "Project History" page for manual or automatic upgrades, you'll land on a page that highlights the essentials—product version, precise timestamps, current statuses, and error reports for troubleshooting. The page also showcases the impact of these upgrades across all relevant environments for your project.
2122

22-
![Upgrade Details Page](images/UpgradeDetailsPage.gif)
23+
![Upgrade Details Page](../images/UpgradeDetailsPage.gif)
2324

2425
The "Upgrade Details" page offers a clear view of how updates are applied within each environment of your project. This feature provides a straightforward breakdown, enabling you to understand the specific effects and application of upgrades across different environments. Designed to enhance your workflow, this page equips you with essential knowledge for efficient upgrade management, supports precise decision-making, and contributes to the smooth operation and success of your project.
2526

2627
We're here to support your journey every step of the way. Should you have any questions or need further assistance, feel free to reach out. Happy upgrading!
2728

2829
## Improved Search on Projects Dashboard
29-
Finally, we have rolled out a significant update to the search functionality on the Projects Dashboard. The update makes it easier and faster for you to navigate your projects. Now, you're not limited to only searching by project names. This enhancement introduces the ability to search using a wide array of associated tags and even specific product versions within each project's environment.
30+
31+
Finally, we have rolled out a significant update to the search functionality on the Projects Dashboard. The update makes it easier and faster for you to navigate your projects. Now, you're not limited to only searching by project names. This enhancement introduces the ability to search using a wide array of associated tags and even specific product versions within each project's environment.
3032

3133
Examples of searchable tags include:
3234

3335
* Project type.
3436
* Project plans.
35-
* Payment type.
37+
* Payment type.
3638
* If the project is a baseline or a child.
3739

3840
Providing a multifaceted approach to organizing and locating your projects.
3941

40-
![Improved Dashboard Search](images/DashboardSearch.gif)
42+
![Improved Dashboard Search](../images/DashboardSearch.gif)
4143

4244
This update shines with its filter-as-you-type functionality, designed to refine search results in real-time as you type. This immediate response system not only speeds up your search process but also makes it more intuitive and tailored to your specific needs. Whether you're looking for a specific project plan or need to filter projects by payment type, this new search tool adapts to your workflow, allowing for a smoother, more efficient project management experience. Dive in and explore how this enhanced search capability can transform your navigation experience on the Projects Dashboard.

0 commit comments

Comments
 (0)