Links

Example manifest

To help you get a sense of how "application manifests" look like, here is one of them:

Obtain application from URL:

newozero.oscmeta
1
{
2
"information": {
3
"name": "Newo Zero",
4
"author": "Owen",
5
"author_preferred_contacts": "",
6
"category": "games",
7
"peripherals": ["Wii Remote", "Nunchuk", "Classic Controller", "GameCube Controller", "SDHC"],
8
"version": "auto"
9
},
10
"source": {
11
"type": "url",
12
"format": "zip",
13
"location": "https://owensoft.net/project/newogame/dl/newozero.zip"
14
},
15
"treatments": [
16
{
17
"treatment": "contents.move",
18
"arguments": ["newozero/", "apps/newozero/"]
19
}
20
]
21
}

Obtain application from GitHub releases:

mgba.oscmeta
1
{
2
"information": {
3
"name": "mGBA",
4
"author": "Vicki Pfau (endrift)",
5
"author_preferred_contacts": "",
6
"category": "emulators",
7
"peripherals": ["Wii Remote"],
8
"version": "auto"
9
},
10
"source": {
11
"type": "github_release",
12
"format": "7z",
13
"repository": "mgba-emu/mgba",
14
"file": "mGBA-*-wii.7z"
15
},
16
"treatments": [
17
{
18
"treatment": "contents.move",
19
"arguments": ["mGBA-*-wii/", "apps/mgba/"]
20
}
21
]
22
}