-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversion.json.example
More file actions
37 lines (37 loc) · 2 KB
/
Copy pathversion.json.example
File metadata and controls
37 lines (37 loc) · 2 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
{
"deprecated_notice": "DEPRECATED: the in-app updater (update.go) no longer consumes this manifest. It discovers release assets via the GitHub Releases API (/releases/latest) and verifies downloads against the sha256sums.txt release asset. This file is kept only as a historical schema reference.",
"version": "1.0.0",
"changelog": "## 1.0.0\n- First official release\n- Multi-SDK management with cross-platform support (macOS/Windows/Linux, amd64/arm64)\n- Multi-bin directory support (e.g. Rust cargo/bin + rustc/bin)\n- Path migration, version switching, shim mechanism",
"downloads": {
"windows-amd64": {
"url": "https://github.com/mose-x/svc/releases/download/v1.0.0/svc-1.0.0-windows-x64.exe",
"filename": "svc-1.0.0-windows-x64.exe",
"sha256": "0000000000000000000000000000000000000000000000000000000000000000"
},
"windows-arm64": {
"url": "https://github.com/mose-x/svc/releases/download/v1.0.0/svc-1.0.0-windows-arm64.exe",
"filename": "svc-1.0.0-windows-arm64.exe",
"sha256": "0000000000000000000000000000000000000000000000000000000000000000"
},
"darwin-amd64": {
"url": "https://github.com/mose-x/svc/releases/download/v1.0.0/svc-1.0.0-macos-x64.bin",
"filename": "svc",
"sha256": "0000000000000000000000000000000000000000000000000000000000000000"
},
"darwin-arm64": {
"url": "https://github.com/mose-x/svc/releases/download/v1.0.0/svc-1.0.0-macos-arm64.bin",
"filename": "svc",
"sha256": "0000000000000000000000000000000000000000000000000000000000000000"
},
"linux-amd64": {
"url": "https://github.com/mose-x/svc/releases/download/v1.0.0/svc-1.0.0-linux-x64",
"filename": "svc",
"sha256": "0000000000000000000000000000000000000000000000000000000000000000"
},
"linux-arm64": {
"url": "https://github.com/mose-x/svc/releases/download/v1.0.0/svc-1.0.0-linux-arm64",
"filename": "svc",
"sha256": "0000000000000000000000000000000000000000000000000000000000000000"
}
}
}