Skip to content

Commit 5c12c3b

Browse files
committed
Updated Generic articles
1 parent 32e28a7 commit 5c12c3b

File tree

3 files changed

+21
-21
lines changed

3 files changed

+21
-21
lines changed

15/umbraco-ui-builder/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
---
2-
description: Documentation for Umbraco UI Builder, the backoffice UI builder for Umbraco.
2+
description: A guide to using Umbraco UI Builder for creating custom backoffice UIs.
33
---
44

55
# Umbraco UI Builder Documentation
66

7-
Umbraco UI Builder is the backoffice UI builder for custom data structures configured via a fluent API.
7+
Umbraco UI Builder is a tool for creating custom Backoffice User Interfaces (UIs) in Umbraco using a fluent API.
88

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

11-
If you have a custom data store that you want to content manage from within Umbraco, then you can use Umbraco UI Builder. With some lines of code, you can configure a custom administration UI, and reuse many core components with a consistent look and feel.
11+
If you have a custom data store that you want to manage within Umbraco, you can use Umbraco UI Builder. With few lines of code, you can configure a custom administration UI, and reuse many core components with a consistent look and feel.
1212

13-
With Umbraco UI Builder, custom backoffice integrations can now take a matter of minutes, rather than days.
13+
With Umbraco UI Builder, custom backoffice integrations can now be set up in minutes rather than days.
1414

15-
## Using the Documentation
15+
## Using The Documentation
1616

17-
**This documentation is aimed at developers** who have at least a basic understanding of Umbraco, as well as C#/MVC principles.
17+
This documentation is intended for **developers** with a basic understanding of Umbraco and C#/MVC principles.
1818

19-
If you are new to Umbraco UI Builder, it is recommended that you start by taking a look at the [Getting Started](getting-started/overview.md) section. This provides details on the system requirements and how to install Umbraco UI Builder.
19+
If you are new to Umbraco UI Builder, it is recommended to start with the [Getting Started](getting-started/overview.md) section. This section covers system requirements and installation instructions.
2020

21-
Once you have Umbraco UI Builder installed and are wondering "What next?" then you'll want to take a look at the [Guides](guides/creating-your-first-integration.md) section. This provides a quick-start example of how to configure Umbraco UI Builder.
21+
Once you have Umbraco UI Builder installed, explore the [Guides](guides/creating-your-first-integration.md) section. This section provides a quick-start example on configuring Umbraco UI Builder.
2222

23-
Use the main menu to dive deeper into Umbraco UI Builder and get to know all of its features in detail. You can then jump to the specific topic you are interested in to find out more.
23+
Use the main menu to explore features in detail and navigate directly to topics of interest.
2424

25-
Finally, for all other resources/useful information you can head over to the [Miscellaneous](miscellaneous/conventions.md) section.
25+
For additional resources and best practices, visit the [Miscellaneous](miscellaneous/conventions.md) section.
2626

2727
## Getting Help
2828

29-
If you require assistance you can use our support channels to seek assistance.
29+
If you need assistance, refer to our support channels for help and troubleshooting.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
description: Known issues in Umbraco UI Builder, the backoffice UI builder for Umbraco.
2+
description: A list of known limitations and issues in Umbraco UI Builder
33
---
44

55
# Known Issues
66

7-
Umbraco UI Builder tries its best to mimic the content pipeline as closely as possible whilst sticking to public and supported APIs. This is so that the Data Type suite can be used fully for editing properties. There are some features in the Umbraco Core that are locked away in internal methods. This means that some features may not be fully supported. Below is a list of known issues to date.
7+
Umbraco UI Builder strives to closely mimic the content pipeline while adhering to public and supported APIs. This ensures full compatibility with the Data Type suite for property editing. However, some features in the Umbraco Core rely on internal methods, making full support for certain functionalities challenging. Below is a list of known issues.
88

99
## Property Editors
1010

1111
### Tags
1212

13-
Whilst we have support for persisting the tag's value, we don't currently have the ability to write these tags to the `cmsTags` DB table. This is all handled via a `tagsRepository` which is internal so we currently can't save to it as core does.
13+
While Umbraco UI Builder supports persisting tag values, it currently does not write these tags to the `cmsTags` database table. This functionality is managed by the internal `tagsRepository`, which is not publicly accessible, preventing direct saving in the same manner as Umbraco Core.

15/umbraco-ui-builder/release-notes.md

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

77
# Release Notes
88

9-
In this section, we have summarized the changes to Umbraco UI Builder released in each version. Each version is presented with a link to the [UI Builder issue tracker](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues) showing a list of issues resolved in the release. We also link to the individual issues themselves from the detail.
9+
This section summarizes the changes and fixes introduced in each version of Umbraco UI Builder. Each release includes a link to the [UI Builder issue tracker](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues), where you can find a list of resolved issues. Individual issues are also linked for more details.
1010

1111
If there are any breaking changes or other issues to be aware of when upgrading they are also noted here.
1212

@@ -16,7 +16,7 @@ If you are upgrading to a new major version, check the breaking changes in the [
1616

1717
## Release History
1818

19-
This section contains the release notes for Umbraco UI Builder 14 including all changes for this version.
19+
Below are the release notes for Umbraco UI Builder 15, detailing all changes in this version.
2020

2121
#### [**15.0.2**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F15.0.2) **(January 22nd 2025)**
2222

@@ -27,15 +27,15 @@ This section contains the release notes for Umbraco UI Builder 14 including all
2727

2828
* Added previously validated license resolver, to validate a license if a validation process was already executed successfully in the past 7 days.
2929
* Fixed an issue caused by `where` clauses for filter expression and deleted property.
30-
* Allow entity properties to be searched based on pattern: `StartsWith` | `Contains` [#116](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/116)
31-
* Switch entity create/edit header to label view for read-only collections [#111](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/111)
30+
* Allow entity properties to be searched based on pattern: `StartsWith` | `Contains` [#116](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/116).
31+
* Switch entity create/edit header to label view for read-only collections [#111](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues/111).
3232

3333
#### [**15.0.0**](https://github.com/umbraco/Umbraco.UIBuilder.Issues/issues?q=is%3Aissue+is%3Aclosed+label%3Arelease%2F15.0.0) **(November 14th 2024)**
3434

35-
* Product migrated to support the new Web Component-based Umbraco
35+
* Product migrated to support the new Web Component-based Umbraco.
3636

37-
You can read more about the new Backoffice [in the Umbraco CMS documentation](https://docs.umbraco.com/umbraco-cms/extending/customize-the-editing-experience).
37+
You can read more about the new Backoffice in the [Umbraco CMS documentation](https://docs.umbraco.com/umbraco-cms/extending/customize-the-editing-experience).
3838

39-
## Legacy release notes
39+
## Legacy Release Notes
4040

4141
You can find the release notes for **Konstrukt** in the [Change log file on GitHub](changelog-archive/changelog.md).

0 commit comments

Comments
 (0)