Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 0 additions & 3 deletions apps/moonlight/moonlight-android.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,5 @@
"featured": true,
"compatibility": {
"sunshine": ">=0.1.0"
},
"metadata": {
"license": "GPL-3.0"
}
}
3 changes: 0 additions & 3 deletions apps/moonlight/moonlight-qt.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,5 @@
"featured": true,
"compatibility": {
"sunshine": ">=0.1.0"
},
"metadata": {
"license": "GPL-3.0"
}
}
2 changes: 2 additions & 0 deletions schemas/app.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"description": "Schema for featured applications in the LizardByte app directory",
"type": "object",
"required": ["id", "name", "category", "description", "platforms"],
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
Expand Down Expand Up @@ -81,6 +82,7 @@
},
"compatibility": {
"type": "object",
"additionalProperties": false,
"properties": {
"sunshine": {
"type": "string",
Expand Down
2 changes: 2 additions & 0 deletions schemas/categories.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@
"description": "Schema for project-specific category definitions",
"type": "object",
"required": ["categories"],
"additionalProperties": false,
"properties": {
"categories": {
"type": "array",
"items": {
"type": "object",
"required": ["id", "name", "description"],
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
Expand Down
1 change: 1 addition & 0 deletions schemas/project.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"description": "Schema for project-specific configuration",
"type": "object",
"required": ["id", "name"],
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
Expand Down