Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add subTitle to extension #413

Merged
merged 2 commits into from
Feb 3, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions docs/contribution/50-reference/2-extensions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ For more information about the individual attributes, see [which information an
"id",
"contributorId",
"name",
"subTitle",
"description",
"support",
"state",
Expand All @@ -41,6 +42,21 @@ For more information about the individual attributes, see [which information an
description: "Name of the extension",
example: "Example Extension",
},
subTitle: {
type: "object",
description: "A brief description of the extension",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

now we have a short description and a brief description.

We should clarify the purpose in the description of the fields.

required: ["de"],
properties: {
de: {
type: "string",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Information about max length is missing here (and in the other places)

example: "Erweitere das mStudio"
},
en: {
type: "string",
example: "Extend the mStudio"
}
}
},
description: {
type: "string",
description:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Für weitere Informationen zu den einzelnen Attributen siehe [Aus welchen Inform
"id",
"contributorId",
"name",
"subTitle",
"description",
"support",
"state",
Expand All @@ -41,6 +42,21 @@ Für weitere Informationen zu den einzelnen Attributen siehe [Aus welchen Inform
description: "Name der Extension",
example: "Example Extension",
},
subTitle: {
type: "object",
description: "Eine kurze Beschreibung der Extension.",
required: ["de"],
properties: {
de: {
type: "string",
example: "Erweitere das mStudio"
},
en: {
type: "string",
example: "Extend the mStudio"
}
},
},
description: {
type: "string",
description:
Expand Down