Skip to content

Commit aa6f710

Browse files
committed
feat: update icon size description and modify force update configuration
1 parent 45c9a80 commit aa6f710

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

extension/shopware-extension-schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@
353353
},
354354
"icon": {
355355
"type": "string",
356-
"description": "Specifies the Path to the icon (128x128 px) for store."
356+
"description": "Specifies the Path to the icon (256x256 px) for store."
357357
},
358358
"automatic_bugfix_version_compatibility": {
359359
"type": "boolean",

shop/config.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,10 @@ type ConfigDeployment struct {
135135

136136
Overrides ConfigDeploymentOverrides `yaml:"overrides"`
137137

138+
// DEPRECATED, On these extensions, it will be always called plugin:update
139+
ForceUpdatesDeprecated []string `yaml:"force_updates,omitempty" jsonschema:"deprecated=true"`
138140
// On these extensions, it will be always called plugin:update
139-
ForceUpdates []string `yaml:"force_updates,omitempty"`
141+
ForceUpdate []string `yaml:"force-update,omitempty"`
140142
} `yaml:"extension-management"`
141143

142144
OneTimeTasks []struct {

shop/shopware-project-schema.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,12 @@
205205
"type": "string"
206206
},
207207
"type": "array"
208+
},
209+
"force-update": {
210+
"items": {
211+
"type": "string"
212+
},
213+
"type": "array"
208214
}
209215
},
210216
"additionalProperties": false,

0 commit comments

Comments
 (0)