Build release script
This commit is contained in:
@@ -53,7 +53,7 @@ jobs:
|
|||||||
run: apt update -y && apt install -y zip
|
run: apt update -y && apt install -y zip
|
||||||
|
|
||||||
- name: Create release zip
|
- name: Create release zip
|
||||||
run: zip -r ./mgt2.zip system.json template.json README.md LICENSE mgt2.bundle.js assets/ lang/ styles/ templates/
|
run: zip -r ./mgt2.zip system.json README.md LICENSE mgt2.bundle.js assets/ lang/ styles/ templates/
|
||||||
|
|
||||||
- name: setup go
|
- name: setup go
|
||||||
uses: https://github.com/actions/setup-go@v4
|
uses: https://github.com/actions/setup-go@v4
|
||||||
|
|||||||
59
system.json
59
system.json
@@ -35,6 +35,65 @@
|
|||||||
"path": "lang/fr.json"
|
"path": "lang/fr.json"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
"documentTypes": {
|
||||||
|
"Actor": {
|
||||||
|
"character": {
|
||||||
|
"htmlFields": [
|
||||||
|
"personal.speciesText.descriptionLong",
|
||||||
|
"biography",
|
||||||
|
"finance.notes",
|
||||||
|
"notes"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"vehicule": {
|
||||||
|
"htmlFields": [
|
||||||
|
"description",
|
||||||
|
"notes"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"creature": {
|
||||||
|
"htmlFields": [
|
||||||
|
"biography",
|
||||||
|
"notes"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Item": {
|
||||||
|
"armor": {
|
||||||
|
"htmlFields": [ "description" ]
|
||||||
|
},
|
||||||
|
"career": {
|
||||||
|
"htmlFields": [ "description" ]
|
||||||
|
},
|
||||||
|
"computer": {
|
||||||
|
"htmlFields": [ "description" ]
|
||||||
|
},
|
||||||
|
"contact": {
|
||||||
|
"htmlFields": [ "description", "notes" ]
|
||||||
|
},
|
||||||
|
"container": {
|
||||||
|
"htmlFields": [ "description", "lockedDescription" ]
|
||||||
|
},
|
||||||
|
"disease": {
|
||||||
|
"htmlFields": [ "description" ]
|
||||||
|
},
|
||||||
|
"equipment": {
|
||||||
|
"htmlFields": [ "description" ]
|
||||||
|
},
|
||||||
|
"item": {
|
||||||
|
"htmlFields": [ "description" ]
|
||||||
|
},
|
||||||
|
"species": {
|
||||||
|
"htmlFields": [ "description", "descriptionLong" ]
|
||||||
|
},
|
||||||
|
"talent": {
|
||||||
|
"htmlFields": [ "description" ]
|
||||||
|
},
|
||||||
|
"weapon": {
|
||||||
|
"htmlFields": [ "description" ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"compatibility": {
|
"compatibility": {
|
||||||
"minimum": "11",
|
"minimum": "11",
|
||||||
"verified": "12.324"
|
"verified": "12.324"
|
||||||
|
|||||||
41
template.json.DEAD
Normal file
41
template.json.DEAD
Normal file
@@ -0,0 +1,41 @@
|
|||||||
|
{
|
||||||
|
"Actor": {
|
||||||
|
"types": [
|
||||||
|
"character",
|
||||||
|
"vehicule",
|
||||||
|
"creature"
|
||||||
|
],
|
||||||
|
"htmlFields": ["notes", "biography"],
|
||||||
|
"character": {},
|
||||||
|
"vehicule": {},
|
||||||
|
"creature": {}
|
||||||
|
},
|
||||||
|
"Item": {
|
||||||
|
"types": [
|
||||||
|
"contact",
|
||||||
|
"career",
|
||||||
|
"disease",
|
||||||
|
"item",
|
||||||
|
"equipment",
|
||||||
|
"talent",
|
||||||
|
"armor",
|
||||||
|
"weapon",
|
||||||
|
"computer",
|
||||||
|
"container",
|
||||||
|
"species"
|
||||||
|
],
|
||||||
|
"htmlFields": ["description", "notes"],
|
||||||
|
"item": {},
|
||||||
|
"equipment": {},
|
||||||
|
"container": {},
|
||||||
|
"weapon": {},
|
||||||
|
"armor": {},
|
||||||
|
"computer": {},
|
||||||
|
"disease": {},
|
||||||
|
"career": {},
|
||||||
|
"contact": {},
|
||||||
|
"talent": {},
|
||||||
|
"race": {},
|
||||||
|
"species": {}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user