28 lines
850 B
JavaScript
28 lines
850 B
JavaScript
export const DAEMON_RELEASE_POLICY = Object.freeze({
|
|
repository: "klarkxy/nekonest",
|
|
minimumVersion: "0.2.6",
|
|
assets: Object.freeze([
|
|
Object.freeze({
|
|
platform: "windows",
|
|
architecture: "amd64",
|
|
label: "Windows 10/11 · x64",
|
|
filename: "nekonest-daemon-windows-amd64.zip",
|
|
checksumEnv: "NEKONEST_CLOUD_DAEMON_WINDOWS_AMD64_SHA256",
|
|
}),
|
|
Object.freeze({
|
|
platform: "linux",
|
|
architecture: "amd64",
|
|
label: "Linux · x86_64",
|
|
filename: "nekonest-daemon-linux-amd64.tar.gz",
|
|
checksumEnv: "NEKONEST_CLOUD_DAEMON_LINUX_AMD64_SHA256",
|
|
}),
|
|
Object.freeze({
|
|
platform: "linux",
|
|
architecture: "arm64",
|
|
label: "Linux · arm64",
|
|
filename: "nekonest-daemon-linux-arm64.tar.gz",
|
|
checksumEnv: "NEKONEST_CLOUD_DAEMON_LINUX_ARM64_SHA256",
|
|
}),
|
|
]),
|
|
});
|