- Enhanced tests to ensure consistent messageId generation for legacy inbox rows lacking a messageId. - Updated test descriptions for better clarity regarding the new messageId handling. - Adjusted test expectations to align with the updated behavior of relaying legacy inbox rows with generated messageIds.
29 lines
869 B
TypeScript
29 lines
869 B
TypeScript
export type DownloadOs = "macos" | "windows" | "linux";
|
|
export type DownloadArch = "arm64" | "x64" | "universal";
|
|
|
|
export const downloadAssets = [
|
|
{
|
|
id: "macos",
|
|
os: "macos",
|
|
arch: "universal",
|
|
label: "macOS",
|
|
archLabel: "Apple Silicon / Intel",
|
|
url: "https://github.com/777genius/claude_agent_teams_ui/releases/latest/download/Claude-Agent-Teams-UI-arm64.dmg"
|
|
},
|
|
{
|
|
id: "windows-x64",
|
|
os: "windows",
|
|
arch: "x64",
|
|
label: "Windows",
|
|
archLabel: "64-bit",
|
|
url: "https://github.com/777genius/claude_agent_teams_ui/releases/latest/download/Claude-Agent-Teams-UI-Setup.exe"
|
|
},
|
|
{
|
|
id: "linux-appimage",
|
|
os: "linux",
|
|
arch: "x64",
|
|
label: "Linux",
|
|
archLabel: "64-bit",
|
|
url: "https://github.com/777genius/claude_agent_teams_ui/releases/latest/download/Claude-Agent-Teams-UI.AppImage"
|
|
}
|
|
] as const;
|