Skip to content

Commit d07fbd2

Browse files
author
Rick Butterfield
committed
Upgrade to rc5
1 parent 5928275 commit d07fbd2

17 files changed

+615
-618
lines changed

src/Umbraco.Community.Sustainability.TestSite.14.x/Umbraco.Community.Sustainability.TestSite.14.x.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Umbraco.Cms" Version="14.0.0-rc4" />
10+
<PackageReference Include="Umbraco.Cms" Version="14.0.0-rc5" />
1111
<PackageReference Include="uSync" Version="14.0.0-rc2" />
1212
</ItemGroup>
1313

src/Umbraco.Community.Sustainability.TestSite.14.x/appsettings-schema.Umbraco.Cms.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
"LoginLogoImage": {
161161
"type": "string",
162162
"description": "Gets or sets a value for the path to the login screen logo image\nshown on top of the background image set in LoginBackgroundImage.\n ",
163-
"default": "login/logo_dark.svg"
163+
"default": "login/logo_light.svg"
164164
},
165165
"LoginLogoImageAlternative": {
166166
"type": "string",

src/Umbraco.Community.Sustainability.TestSite.14.x/umbraco-package-schema.json

Lines changed: 86 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@
330330
"type": "string"
331331
},
332332
"type": {
333-
"const": "bockEditorCustomView",
333+
"const": "blockEditorCustomView",
334334
"description": "The type of extension such as dashboard etc...",
335335
"type": "string"
336336
},
@@ -3593,6 +3593,59 @@
35933593
],
35943594
"type": "object"
35953595
},
3596+
"ManifestSectionRoute": {
3597+
"properties": {
3598+
"alias": {
3599+
"description": "The alias of the extension, ensure it is unique",
3600+
"type": "string"
3601+
},
3602+
"api": {
3603+
"description": "The file location of the api javascript file to load",
3604+
"type": "string"
3605+
},
3606+
"element": {
3607+
"description": "The file location of the element javascript file to load",
3608+
"type": "string"
3609+
},
3610+
"elementName": {
3611+
"description": "The HTML web component name to use such as 'my-dashboard'\nNote it is NOT <my-dashboard></my-dashboard>, just the element name.",
3612+
"type": "string"
3613+
},
3614+
"js": {
3615+
"description": "The file location of the javascript file to load",
3616+
"type": "string"
3617+
},
3618+
"kind": {
3619+
"description": "The kind of the extension, used to group extensions together",
3620+
"examples": [
3621+
"button"
3622+
]
3623+
},
3624+
"meta": {
3625+
"$ref": "#/definitions/MetaSectionRoute"
3626+
},
3627+
"name": {
3628+
"description": "The friendly name of the extension",
3629+
"type": "string"
3630+
},
3631+
"type": {
3632+
"const": "sectionRoute",
3633+
"description": "The type of extension such as dashboard etc...",
3634+
"type": "string"
3635+
},
3636+
"weight": {
3637+
"description": "Extensions such as dashboards are ordered by weight with lower numbers being first in the list",
3638+
"type": "number"
3639+
}
3640+
},
3641+
"required": [
3642+
"alias",
3643+
"meta",
3644+
"name",
3645+
"type"
3646+
],
3647+
"type": "object"
3648+
},
35963649
"ManifestSectionSidebarApp": {
35973650
"properties": {
35983651
"alias": {
@@ -3936,6 +3989,13 @@
39363989
"description": "The file location of the api javascript file to load",
39373990
"type": "string"
39383991
},
3992+
"conditions": {
3993+
"description": "Set the conditions for when the extension should be loaded",
3994+
"items": {
3995+
"$ref": "#/definitions/ConditionTypes"
3996+
},
3997+
"type": "array"
3998+
},
39393999
"element": {
39404000
"description": "The file location of the element javascript file to load",
39414001
"type": "string"
@@ -3961,6 +4021,20 @@
39614021
"description": "The friendly name of the extension",
39624022
"type": "string"
39634023
},
4024+
"overwrites": {
4025+
"anyOf": [
4026+
{
4027+
"items": {
4028+
"type": "string"
4029+
},
4030+
"type": "array"
4031+
},
4032+
{
4033+
"type": "string"
4034+
}
4035+
],
4036+
"description": "Define one or more extension aliases that this extension should overwrite."
4037+
},
39644038
"type": {
39654039
"const": "tree",
39664040
"description": "The type of extension such as dashboard etc...",
@@ -4266,6 +4340,9 @@
42664340
{
42674341
"$ref": "#/definitions/ManifestSectionView"
42684342
},
4343+
{
4344+
"$ref": "#/definitions/ManifestSectionRoute"
4345+
},
42694346
{
42704347
"$ref": "#/definitions/ManifestStore"
42714348
},
@@ -6045,6 +6122,14 @@
60456122
],
60466123
"type": "object"
60476124
},
6125+
"MetaSectionRoute": {
6126+
"properties": {
6127+
"path": {
6128+
"type": "string"
6129+
}
6130+
},
6131+
"type": "object"
6132+
},
60486133
"MetaSectionSidebarAppMenuKind": {
60496134
"properties": {
60506135
"label": {

src/Umbraco.Community.Sustainability/Umbraco.Community.Sustainability.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131

3232
<ItemGroup>
3333
<PackageReference Include="Microsoft.Playwright" Version="1.44.0" />
34-
<PackageReference Include="Umbraco.Cms.Web.Website" Version="[14.0.0-rc4, 15.0.0)" />
35-
<PackageReference Include="Umbraco.Cms.Api.Common" Version="[14.0.0-rc4, 15.0.0)" />
34+
<PackageReference Include="Umbraco.Cms.Web.Website" Version="[14.0.0-rc5, 15.0.0)" />
35+
<PackageReference Include="Umbraco.Cms.Api.Common" Version="[14.0.0-rc5, 15.0.0)" />
3636
</ItemGroup>
3737

3838
<ItemGroup>

0 commit comments

Comments
 (0)