feat: cloudControlService 支持 macOS 平台版本识别

This commit is contained in:
hicccc77
2026-03-08 12:25:06 +08:00
parent e1a23ac606
commit 10ce7d772c
2 changed files with 5 additions and 0 deletions

View File

@@ -66,6 +66,10 @@ class CloudControlService {
return `Windows ${release}`
}
if (platform === 'darwin') {
return `macOS ${os.release()}`
}
return platform
}