-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathversions.json5
More file actions
51 lines (50 loc) · 1.07 KB
/
Copy pathversions.json5
File metadata and controls
51 lines (50 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{//first meta file
metaVersion: [
1,
0
],
releaseCandidates: [
{
version: "5.6.0-beta.4",
//the same as version's version obj, normally hidden in file chooser
},
//...
],
releases: [
{
version: "5.0.0",
url: "aij./com/specific/version.json",
minJava: 21,
maxJava: 24,
}
],
}
//specific version file
{
version: "5.5.0",//todo support x.y.z.n, implicit n=0
files: [
{
fileName: "ij.jar",
url: "github.com/blah",
destination: "libs",//location to put downloaded file todo verify location on download is with AIJ app
hash: "safhuiaqyq",//maybe, for verifying download success
signing: "sdugfy98",//maybe later
os: "windows"//todo maybe, possibly an array or if unspecified do it for all
}
],
launchArgs: [
{
os: "all",//todo if not specified, apply to all
args: [
"--enable-native-access=ALL-UNNAMED"
]
},
{
os: "mac",
args: [
"--some-mac-arg"
]
}
],
message: "..."//message to show on update
}