mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-14 14:45:49 +01:00
* Test release workflow * Update release.yml * Update release.yml * add linux deps * Update release.yml * Update release.yml * Update release.yml * Update release.yml * Update release.yml * Update release.yml * Update release.yml * Update release.yml * Update release.yml * Fix: Misc tests * Fix: Misc tests + linux build tags * Fix: Bindings tests + move templates to pkg. Add json schema for templates * Fix: template tests * Add tests to release workflow. Test for go 1.18 + go 1.19 Fix: ignore .m files for non darwin builds. Fix watcher test. Fix warning in clilogger. * Fix release pipeline * Matrix for tests * Rename templates to make tests work * Update template test * Debug template test * Debug template test * Debug template test * Fix gitignore * Update release.yml
30 lines
No EOL
787 B
JSON
30 lines
No EOL
787 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema",
|
|
"$id": "https://wails.io/schemas/template.v1.json",
|
|
"required": [],
|
|
"title": "template",
|
|
"description": "Defines the schema for a Wails template configuration file",
|
|
"type": "object",
|
|
"properties": {
|
|
"author": {
|
|
"description": "The author of the template",
|
|
"type": "string"
|
|
},
|
|
"helpurl": {
|
|
"description": "The URL to the help page for the template",
|
|
"type": "string"
|
|
},
|
|
"name": {
|
|
"description": "The name of the template",
|
|
"type": "string"
|
|
},
|
|
"description": {
|
|
"description": "The description of the template",
|
|
"type": "string"
|
|
},
|
|
"shortname": {
|
|
"description": "The short name of the template",
|
|
"type": "string"
|
|
}
|
|
}
|
|
} |