feat: establish NekoNest Cloud control and relay

This commit is contained in:
2026-08-12 23:25:43 +08:00
commit f27606b709
222 changed files with 71456 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
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",
}),
]),
});