Skip to content

Commit e2b49fe

Browse files
authored
Merge pull request #6879 from umbraco/cms/release/15.3
Umbraco 15.3 release documentation updates
2 parents 803601e + 38ccba8 commit e2b49fe

File tree

3 files changed

+20
-10
lines changed

3 files changed

+20
-10
lines changed

15/umbraco-cms/reference/configuration/contentsettings.md

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ The following snippet will give an overview of the keys and values in the conten
4848
"PreviewBadge": "<![CDATA[<b>My HTML here</b>]]>",
4949
"ResolveUrlsFromTextString": false,
5050
"ShowDeprecatedPropertyEditors": false,
51-
"ShowDomainWarnings": true
51+
"ShowDomainWarnings": true,
52+
"ShowUnroutableContentWarnings": true
5253
}
5354
}
5455
}
@@ -165,15 +166,23 @@ This setting is used for controlling whether or not the Data Types marked as obs
165166

166167
By default this is set to `false`. To make the obsolete data types visible in the dropdown change the value to `true`.
167168

168-
### Show Domain Warnings
169+
### Show domain warnings
169170

170171
If you do not configure Domains for each language in a multilingual site then every time you publish your content you get this warning:
171172

172173
`Content published: Domains are not configured for multilingual site, please contact an administrator, see log for more information.`
173174

174175
If you have a use case for not setting the domains, you can set this setting **ShowDomainWarnings** to `false` to stop the warning from displaying.
175176

176-
## ContentVersionCleanupPolicy
177+
### Show unroutable content warnings
178+
179+
If your routing setup leads to more than one document having the same URL, on publish a warning will be displayed:
180+
181+
`Content published: The document does not have a URL, possibly due to a naming collision with another document. More details can be found under Info.`
182+
183+
To suppress these warnings, set this option to `false`.
184+
185+
## Content version cleanup policy
177186

178187
The global settings for the scheduled job which cleans historic content versions. These settings can be overridden per Document Type.
179188

@@ -191,19 +200,19 @@ See [Content Version Cleanup](../../fundamentals/data/content-version-cleanup.md
191200

192201
If you don't wish to retain any content versions except for the current draft and currently published you can set both of the "keep" settings values to 0. After doing this, the next time the scheduled job runs (hourly) all non-current versions (except those marked "prevent cleanup") will be removed.
193202

194-
### EnableCleanup
203+
### Enable cleanup
195204

196205
When `true` a scheduled job will delete historic content versions that are not kept according to the policy every hour.
197206

198207
When `false`, the scheduled job will never delete any content versions regardless of overridden settings for a Document Type.
199208

200-
This defaults to `false` when not set in the configuration which will be the case for those upgrading from v9.0.0. However, the dotnet new template will supply an appsettings.json with the value set to true for all sites starting from Umbraco 9.1.0.
209+
This defaults to `false` when not set in the configuration which will be the case for those upgrading from v9.0.0. However, the dotnet new template will supply an `appsettings.json` with the value set to true for all sites starting from Umbraco 9.1.0.
201210

202-
### KeepAllVersionsNewerThanDays
211+
### Keep all versions newer than days
203212

204213
All versions that fall in this period will be kept.
205214

206-
### KeepLatestVersionPerDayForDays
215+
### Keep latest version per day for days
207216

208217
For content versions that fall in this period, the most recent version for each day is kept. All previous versions for that day are removed unless marked as preventCleanup.
209218

@@ -228,11 +237,11 @@ This section is used for managing how Umbraco handles images, allowed attributes
228237

229238
Let's break it down.
230239

231-
### ImageFileTypes
240+
### Image file types
232241

233242
This is a separated list of accepted image formats
234243

235-
### AutoFillImageProperties
244+
### Auto fill image properties
236245

237246
You can define what properties should be automatically updated when an image is being uploaded. This means that if you decide to rename the default **umbracoWidth** and **umbracoHeight** properties the values in **`"WidthFieldAlias"`** and **`"HeightFieldAlias"`** need to be updated. This needs to happen in order to automatically populate the values when the image is being uploaded.
238247

15/umbraco-cms/tutorials/editors-manual/getting-started-with-umbraco/creating-saving-and-publishing-content.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,9 @@ To publish the node with descendants, follow these steps:
6060
2. Select the arrow next to the **Save and Publish** button.
6161
3. Select **Publish with descendants**.
6262

63-
![Publish with descendants](images/Publish-with-descendants-v14.png)
63+
![Publish with descendants](images/Publish-with-descendants-v15.png)
6464
4. Toggle the option to **Include unpublished content items** if you wish to. This option includes all unpublished content items for the selected page and the available linked pages.
65+
5. Toggle the option to **Publish unchanged items** if you wish to. This option will trigger a re-publish of all the selected page and all descendant pages even if no changes are pending.
6566

6667
#### 3: Unpublish
6768

33 KB
Loading

0 commit comments

Comments
 (0)