-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathfluidsynth.json
More file actions
39 lines (39 loc) 路 1.75 KB
/
Copy pathfluidsynth.json
File metadata and controls
39 lines (39 loc) 路 1.75 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
{
"version": "2.5.4",
"description": "Software synthesizer based on the SoundFont 2 specifications.",
"homepage": "https://www.fluidsynth.org",
"license": {
"identifier": "LGPL-2.1-only",
"url": "https://github.com/FluidSynth/fluidsynth/blob/master/LICENSE"
},
"architecture": {
"64bit": {
"url": "https://github.com/FluidSynth/fluidsynth/releases/download/v2.5.4/fluidsynth-v2.5.4-win10-x64-cpp11.zip",
"hash": "cc8959425acdcf09d3af546e77f22072857af8d8ecec2c38972bc8d9cc188e60",
"extract_dir": "fluidsynth-v2.5.4-win10-x64-cpp11"
},
"32bit": {
"url": "https://github.com/FluidSynth/fluidsynth/releases/download/v2.5.4/fluidsynth-v2.5.4-win10-x86-cpp11.zip",
"hash": "319e1595a508e7fcec43e778d7cc9c9852dcb411a51b3b689e5f5964f18e47dd",
"extract_dir": "fluidsynth-v2.5.4-win10-x86-cpp11"
}
},
"env_add_path": "bin",
"checkver": {
"github": "https://api.github.com/repos/FluidSynth/fluidsynth/releases",
"jsonpath": "$..assets[?(@.name =~ /win(?!.+glib).+\\.zip$/i)].browser_download_url",
"regex": "(?i)download/(?<tag>v?([\\d.]+))/(?<prefix>[^\"]+)-x(?:64|86)(?<suffix>-[^\"]+)?\\.zip"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/FluidSynth/fluidsynth/releases/download/$matchTag/$matchPrefix-x64$matchSuffix.zip",
"extract_dir": "$matchPrefix-x64$matchSuffix"
},
"32bit": {
"url": "https://github.com/FluidSynth/fluidsynth/releases/download/$matchTag/$matchPrefix-x86$matchSuffix.zip",
"extract_dir": "$matchPrefix-x86$matchSuffix"
}
}
}
}