Skip to content

Releases: JZKK720/cubecloud-agentic-os

cubecloud-agent-desktop v2.10.75

Choose a tag to compare

@JZKK720 JZKK720 released this 03 Jul 05:35

What this release changes

V2.10.74 → V2.10.75 ships four workstreams:

Chat/session persistence on renderer refresh

  • Persist currentSessionId to localStorage; auto-resume transcript from state.db on mount
  • Guard stale session IDs (profile switch, DB wipe)

Desktop app update button fix

  • Added publish: github block to electron-builder.yml so electron-updater has a feed URL
  • Fixed dev-app-update.yml owner from cubecloud-contributors to JZKK720

Settings reorganization

  • Added sticky section nav bar with 5 group buttons (Engine, Connection, Appearance, Data, Privacy)
  • Wrapped sections in group wrappers for scroll-to-group navigation

Surface audit and high-severity bug fixes

  • Memory.tsx: activated dead error state, wrapped loadData in try/catch
  • Soul.tsx: wrapped loadSoul, saveSoul, handleReset in try/catch
  • Agents.tsx: wrapped loadProfiles, handleCreate, handleDelete, handleSelect in try/catch
  • Gateway.tsx: wrapped loadConfig, polling, toggleGateway, togglePlatform, handleBlur in try/catch with rollback
  • Tools.tsx: added rollback on handleToggle IPC failure

Release workflow fixes

  • Fixed artifact upload paths (dist/ → agent-desktop/dist/)
  • Made macOS/Linux non-blocking (continue-on-error)
  • Skip latest-mac.yml generation when macOS artifacts absent

Assets

Windows installer (nsis + portable) + latest.yml for auto-update.

v2.10.73 — MCP registry overhaul

Choose a tag to compare

@JZKK720 JZKK720 released this 30 Jun 09:05

cubecloud-agent-desktop v2.10.73 — release notes

Source: V2.10.72 on origin/main of
JZKK720/cubecloud-agentic-os
Supersedes: v2.10.72 (commit on origin/main)
Internal version: 2.10.73 (in agent-desktop/package.json)

What this release changes

V2.10.72 → V2.10.73 is an MCP registry overhaul: the bundled MCP
server catalog is restructured around the local-first, no-API-key
principle that defines the product.

MCP registry changes

  1. Firecrawl replaces Tavily — Tavily MCP entry removed; Firecrawl
    added as the primary web-scraping MCP. Firecrawl supports a keyless
    free tier (scrape + search, rate-limited per IP) and self-hosted
    mode (all endpoints, no key, via FIRECRAWL_API_URL). The
    FIRECRAWL_API_KEY settings field already existed; a new
    FIRECRAWL_API_URL field is added for self-hosted instances.

  2. SkillSpector added — Security scanner for AI agent skills (68
    vulnerability patterns across 17 categories). Exposes a scan_skill
    MCP tool that returns a risk score (0-100) and safe-to-install
    verdict. Static analysis runs by default (no API key needed); the
    optional LLM semantic pass is opt-in via SKILLSPECTOR_PROVIDER.

  3. OpenKnowledge added — Markdown knowledge base with backlinks,
    link graph, and collaborative editing. Exposes write, search, wiki,
    research, discover, and links tools. Auto-starts a per-project
    collaboration server on demand. No API key needed.

  4. Qdrant defaults to local Docker — Default URL changed from
    https://qdrant.example/mcp to http://127.0.0.1:6333/mcp.
    QDRANT_API_KEY removed from required env keys. Hint documents
    the docker run -p 6333:6333 qdrant/qdrant path (no key needed).

Settings + env changes

  • TAVILY_API_KEY settings field removed; FIRECRAWL_API_URL added
  • SKILLSPECTOR_PROVIDER and SKILLSPECTOR_MODEL added to the Hermes
    env-var allowlist (KNOWN_API_KEYS in hermes.ts)
  • FIRECRAWL_API_URL added to the Hermes env-var allowlist
  • TAVILY_API_KEY removed from the Hermes env-var allowlist

i18n changes

  • All 8 locales (en, zh-CN, zh-TW, ja, es, pt-BR, pt-PT, id) updated:
    • tavilyApiKey / tavilyHint strings removed
    • firecrawlHint updated to mention keyless tier
    • firecrawlApiUrl / firecrawlUrlHint strings added

Documentation changes

  • agent-desktop/README.md Install section rewritten with:
    • Prerequisites section (per connection mode)
    • Optional components table (Docker, IronClaw, OpenClaw, CodeGraph,
      EverOS, Headroom, Ollama, LM Studio)
    • MCP servers table (Firecrawl, SkillSpector, OpenKnowledge, Qdrant,
      Agent Reach, GitHub, Playwright, Headroom)
  • scripts/v2.10-readme.cjs and scripts/v2.10-readme-2.cjs updated
    to remove Tavily from the tool integrations list

What was NOT changed

  • The Hermes runtime's own web-tool backend list still includes Tavily
    (it's a runtime-level feature, not the desktop's MCP registry)
  • The Hermes agent SKILL.md still lists Tavily as a backend (accurate
    description of Hermes's capabilities, not our MCP registry)
  • No pre-install gate for SkillSpector yet (follow-up: call
    skillspector scan before installSkill() in skills.ts)
  • No backlink port from OpenKnowledge yet (follow-up: cherry-pick
    backlink-index.ts patterns into wiki.ts)
  • No agency-agents Hermes plugin shipped (user-side install via
    ./scripts/convert.sh --tool hermes && ./scripts/install.sh --tool hermes)

Files changed

File Change
agent-desktop/src/renderer/src/screens/Mcp/registry.ts Tavily → Firecrawl; SkillSpector + OpenKnowledge added; Qdrant local-first
agent-desktop/src/renderer/src/constants.ts TAVILY_API_KEY removed; FIRECRAWL_API_URL added
agent-desktop/src/main/hermes.ts TAVILY_API_KEYFIRECRAWL_API_URL; SKILLSPECTOR_PROVIDER + SKILLSPECTOR_MODEL added
agent-desktop/src/shared/i18n/locales/*/constants.ts 8 locales: Tavily strings removed, Firecrawl strings updated + URL field added
agent-desktop/README.md Install section rewritten with prerequisites + optional components + MCP servers table
agent-desktop/package.json Version bumped 2.10.72 → 2.10.73
scripts/v2.10-readme.cjs Tavily removed from tool integrations list
scripts/v2.10-readme-2.cjs Tavily removed from tool integrations list

cubecloud-agent-desktop v2.10.72

Choose a tag to compare

@JZKK720 JZKK720 released this 20 Jun 08:01

cubecloud-agent-desktop v2.10.72 — release notes

Source: commit 91a5226 (V2.10.71 docs+skills) on origin/main of
JZKK720/cubecloud-agentic-os
Supersedes: v2.10.71 (commit bad18b5)
Internal version: 2.10.72 (in agent-desktop/package.json)

What this release fixes

V2.10.71 published the first post-wrapper installer cleanly, but
commit 91a5226 landed on origin/main after the tag was cut and
shipped. That commit is in the GitHub source tree but not in the
v2.10.71 installer. V2.10.72 rebuilds the installer to include it.

Specifically, V2.10.71 → V2.10.72 picks up:

  1. 5 new operator-targeted skills bundled in the asar — visible in
    the in-app Skills → Browse tab on first launch.
  2. All 8 README files translated to zh-CN, ja-JP, ko-KR — the
    "Skills ecosystem — 3 layers" section, the .agents/skills/ bullet,
    the "Why teams adopt" prelaunch row, and the "On first launch"
    prelaunch list now have parity across EN / zh-CN / ja-JP / ko-KR.
  3. Locale count corrected from 8 to 9 in all 4 agent-desktop
    README files (en, zh-CN, zh-TW, ja-JP, ko-KR, es, id, pt-BR, pt-PT).
  4. Project-tree lines updated from a stale count to
    the {{SKILLS_TOTAL}} placeholder
    in the 3 translated monorepo READMEs.

5 new operator-targeted skills

Skill When the operator should use it
first-5-minutes "I'm new", "where do I start", "just installed" — walks through picking a runtime, attaching a provider, running the first chat
runtime-attach "Runtime won't connect", ECONNREFUSED 127.0.0.1:8642 — the 5 things to check when an attach fails (Hermes / IronClaw / OpenClaw)
models-page-scan "Models page doesn't see my Ollama", "health dot is red" — loopback scan, health probe, LAN opt-in
sidecar-setup "How do I install CodeGraph / EverOS / Headroom" — the 3 optional sidecars, opt-in per profile
session-search "Find my chat about X", "search past sessions" — SQLite FTS5 patterns, what it can and can't do

The 23 existing skills are kept untouched. Total desktop-bundled
skills after this release: 28.

Each new skill ships at
agent-desktop/.agents/skills/<name>/SKILL.md with the following
frontmatter so the operator can tell at a glance which skills were
written for the desktop vs upstream-adapted:

source: cubecloud
audience: end-user

Translation parity

All 8 README files now have matching section structure (ratio 1.00
per check-doc-pair.cjs):

File EN sections Translation sections ratio
README.md 11 11 1.00
agent-desktop/README.md 24 24 1.00

No mojibake (check-mojibake.cjs: 795 files clean). No hard-coded
skill counts in EN prose (check-skill-counts.cjs: clean).

Known limitations

  • Both portable.exe AND setup.exe uploads are throttled by the
    corporate proxy on github.com:443 as of 2026-06-20. The 130 MB
    NSIS setup.exe previously uploaded cleanly during the V2.10.71
    release, but as of this run the proxy began silently dropping
    large asset uploads mid-stream with no error returned. The 4 KB
    latest.yml and 138 KB setup.exe.blockmap upload fine, but
    the 130+ MB executables hang indefinitely.
  • First-run local install of Hermes runtime is required to
    activate the IronClaw and OpenClaw lanes. The desktop ships the
    installer; the runtime is fetched on first launch from
    ghcr.io/pewdiepipe-archdaemon/odysseus (no local build of the
    runtime tree).

Publishing status

V2.10.72 source is on origin/main (commit d02809f) and tag
v2.10.72 is pushed to origin.
The GitHub Release page is
not yet created — the 130 MB setup.exe upload hangs on the
corporate proxy as documented above. To publish from a network
that allows the upload:

# From a network that allows github.com large-file uploads:
gh release create v2.10.72 \
  --target main \
  --title "cubecloud-agent-desktop v2.10.72" \
  --notes-file agent-desktop/changelogs/2.10.72.md \
  agent-desktop/dist/cubecloud-agent-desktop-2.10.72-setup.exe \
  agent-desktop/dist/cubecloud-agent-desktop-2.10.72-setup.exe.blockmap \
  agent-desktop/dist/cubecloud-agent-desktop-2.10.72-portable.exe \
  agent-desktop/dist/latest.yml

The 4 build artifacts are present in agent-desktop/dist/
(205 MB asar packed, 133 MB setup.exe, 133 MB portable.exe,
142 KB blockmap, 381 B latest.yml). All 28 SKILL.md files are
verified present in the asar via
npx asar list dist/win-unpacked/resources/app.asar | grep SKILL.md.

Build verification (filled after npm run build:win)

Artifact Size SHA-256
cubecloud-agent-desktop-2.10.72-setup.exe TBD TBD
cubecloud-agent-desktop-2.10.72-portable.exe TBD TBD
cubecloud-agent-desktop-2.10.72-setup.exe.blockmap TBD TBD
latest.yml TBD TBD

Asar integrity: TBD

Why a patch bump (2.10.71 → 2.10.72) and not a minor bump

SemVer wise, the change is purely additive: new skills (new files,
no API change), new translations (new files, no source change), no
breaking changes to the IPC surface, no provider/runner changes.
2.10.71 → 2.10.72 correctly signals "rebuild to pick up source
additions" without claiming a new feature surface.

Provenance

  • Diff bad18b5..91a5226 — 13 files changed, 835 insertions, 19 deletions
  • 5 new files: agent-desktop/.agents/skills/{first-5-minutes,runtime-attach,models-page-scan,sidecar-setup,session-search}/SKILL.md
  • 8 modified files: 4 monorepo READMEs (en, zh-CN, ja-JP, ko-KR) + 4 agent-desktop READMEs
  • 1 version bump: agent-desktop/package.json (2.10.712.10.72)

cubecloud-agent-desktop v2.10.71

Choose a tag to compare

@JZKK720 JZKK720 released this 20 Jun 05:04

cubecloud-agent-desktop v2.10.71 — release notes

Why v2.10.71 and not v0.6.2? The previous v0.6.0 / v0.6.1 releases
were published while the wrapper workspace apps/desktop-shell/ was still
wired into the build — those installers were built from the wrong tree and
shipped under the same cubecloud-agent-desktop product name. V2.10.67
retired the wrapper (commit 06a10b9). This is the first post-wrapper
release
of the inner product, so the inner package.json semver
(2.10.682.10.71) is the honest version to ship. v0.6.x would
falsely imply continuity with the wrapper-era fake installs.

Source: commit 5c2daba (V2.10.71 merge) on origin/main of
JZKK720/cubecloud-agentic-os
Supersedes: v0.6.1 (commit 7d21aa6, V2.10.43b, wrapper-era; now marked pre-release)
Internal version: 2.10.71 (in agent-desktop/package.json; root package.json
stays at the business-wrapper version 2.10.68)

Build verification

Artifact Size SHA-256
cubecloud-agent-desktop-2.10.71-setup.exe 130,448,269 bytes A1E83A61EFA3DB14D96BD341EDA7D319DDB8837424CA7AF66231E589637755C0
cubecloud-agent-desktop-2.10.71-portable.exe 130,289,648 bytes 69DDDB681905913F155165836618C70DED3AA16F97D785C4E8A8A2BAE99CDC4B
cubecloud-agent-desktop-2.10.71-setup.exe.blockmap 136,220 bytes D7D8262B8FAD08952649AC6BB4365EC8A04D408DC40B957F7AC221FFBFD56330
latest.yml 381 bytes EC9A43081CA874ED9A0101F7A612213E3F67A0AA73988312FFEE51EF54C99A2D

Asar integrity: 21,770 total entries, 21,291 node_modules/ entries, 176.92 MB.
npm run verify:bundle — all 7 tests PASS.

What's in this release

IronClaw — third runtime lane (V2.10.61)

  • IronClaw is now a current gateway-handoff lane alongside Hermes. The
    Connect-to-remote-gateway screen picks one of three runtime providers;
    IronClaw is the WASM-sandbox gateway-handoff option, not a future lane.
  • SSH-tunnel attach for IronClaw (V2.10.68) — adds ssh-tunnel as a
    connectionMode for IronClaw in runtime-orchestration.ts, with
    canAttachViaSshTunnel: true and preferred port 3231. SSH attach reuses
    the existing forwarded-gateway path and expects the IronClaw operator
    surface on /api/health plus the OpenAI-compatible /v1 endpoints behind
    the tunnel.
  • New smoke tests: agent-desktop/tests/ssh-tunnel-ironclaw.test.ts.
  • Smoke docs: docs/ironclaw-attach.smoke.md, docs/hermes-agent-attach.smoke.md.

Models page — Ollama + LM Studio first-class (V2.10.60)

  • Scan-localhost button + suggestions list with per-card health dot (30s probe
    interval, debounced via useRef(new Set())).
  • Loopback-only by default; LAN hosts opt-in via scanLocalServers({ extraHosts }).
  • 8 locales × 15 new models.* i18n keys.
  • See agent-desktop/src/main/local-server-scan.ts (284 lines, pure HTTP).

Sandbox Tasks screen (V2.10.65)

  • New screen in the desktop for IronClaw Sandbox Tasks workflows.
  • 8-locale i18n coverage.

Welcome / Settings UI refresh (V2.10.68)

  • Runtime picker UI refreshed for the Hermes / IronClaw / OpenClaw trio.
  • Connection-mode selector reflects the new IronClaw SSH-tunnel option.
  • i18n (en + zh-CN welcome) updated.

CodeGraph upgrade (V2.10.66)

  • CodeGraph upgraded to 1.0.x.
  • Removed UA-export surface (CodeGraph.tsx, codegraph.ts, preload bridges,
    codegraph-ua-export.test.ts).
  • Adopted Agent-Reach, Graphify, Understand-Anything as bundled skills.

Repository layout (V2.10.67)

  • Retired apps/desktop-shell/ — the old workspace is gone; the build now
    comes from agent-desktop/ only.
  • New workspace-root AGENTS.md (Karpathy 4 principles + ECC Copilot adapter).
  • .github/copilot-instructions.md now points at AGENTS.md.

Skills ecosystem ({{SKILLS_TOTAL}} skills)

  • fable-mode added as the latest .agents/skills/ skill (autonomous
    high-reasoning mode for long-running multi-step work).
  • Agent Reach added to the bundled MCP registry.
  • Skill-count CI gate (scripts/check-skill-counts.cjs) wired into PR checks.

i18n + docs hygiene (V2.10.58, V2.10.59)

  • Renamed inner binary product name: dropped the cubecloud- prefix from the
    rendered product name across 8 ZH/JA/KO docs.
  • New mojibake + drift detectors wired into CI:
    scripts/check-mojibake.cjs, scripts/check-i18n-coverage.cjs,
    scripts/fix-stale-paths.cjs.
  • EN-ZH drift audit in docs/i18n/EN-ZH-DRIFT-REPORT.md.
  • Brand pack: bilingual Cubecloud / 智方云 mark adopted; legacy
    hand-rolled mark removed.

Bilingual brand (V2.10.51 – V2.10.55)

  • Cubecloud / 智方云 brand mark applied across all root READMEs.
  • Preview gallery with 6 captioned screens at the top of each root README.
  • Language switcher in root READMEs.
  • Brand pack mirrored into desktop-shell/ and platform-core/.

Verification

Built and verified locally on Windows 11:

  • npm run typecheck — PASS (platform-core + agent-desktop node + web)
  • npm run test --workspace @cubecloud/desktop-shell — focused tests PASS
  • npm run verify:win-package --workspace @cubecloud/desktop-shell — pending
    rebuild; v0.6.1 binary is the last verified Windows artifact.

Supersedes

This release supersedes v0.6.1. The v0.6.1 release stays online for users
already on it (so the auto-updater can offer the upgrade) but v0.6.2 is the
new canonical "latest."

Known follow-ups (not blocking this release)

  • agent-desktop/package-lock.json is stale at 0.6.1 (pre-existing
    inconsistency; will be regenerated by npm install --workspace agent-desktop).
  • Multi-platform CI (macOS, Linux snap/winget) requires
    App Store Connect / code-signing / PostHog secrets to be configured in repo
    settings. Windows artifacts are the only ones shipped in this release.

Commits since v0.6.1 (50)

6fbc5c5 V2.10.68: Version bump 2.10.67 → 2.10.68 (package.json + agent-desktop/package.json + package-lock.json)
7cc8c57 V2.10.68: IronClaw SSH-tunnel attach lane + Welcome/Settings refresh + CodeGraph UA export removal
235afd4 V2.10.67: Include jest-dom matcher types in agent-desktop web tsconfig
9a8d6bb V2.10.67: Discard apps/desktop-shell — retire old workspace completely
06a10b9 V2.10.67: Retire apps/desktop-shell, build from agent-desktop, fix typecheck
b23cb30 V2.10.67: Version bump to 2.10.67 + README with install instructions
1218c27 V2.10.67: Fix pre-existing typecheck errors in apps/desktop-shell
bf45f82 V2.10.67: Document IronClaw native SSE+Jobs API + fix package.json main field
e98bf1a V2.10.67: Auto-discovery + ambient tool suggestions
84aadec V2.10.66: Adopt Agent-Reach, Graphify, Understand-Anything; upgrade CodeGraph to 1.0.x
e78e8f0 V2.10.65: i18n keys for Sandbox Tasks screen (8 locales)
ac93b95 V2.10.65: Option B - IronClaw Sandbox Tasks screen
a7a9674 V2.10.65: IronClaw gateway port fix + AGENTS.md four-tier clarification
bbd6f00 V2.10.63: Hermes Agent attach smoke (credential-free)
4ee26b8 V2.10.62: IronClaw attach smoke (credential-free)
b9f6f9f V2.10.61: IronClaw third lane in Connect-to-remote-gateway
371fd2b V2.10.60: Ollama + LM Studio first-class integration on Models page
8c9f723 i18n(V2.10.59): drop the cubecloud- prefix from the inner binary product name
9122425 i18n(V2.10.58): fix stale cubecloud-desktop paths + add EN/ZH audit
aaf5826 ci: gate PRs on scripts/check-skill-counts.cjs
69592eb docs: replace hard-coded skill counts with {{SKILLS_*}} placeholders
99b05ba chore(repo): widen check-skill-counts regex to catch the upstream-adapted skill count
2686db9 chore(repo): add skill-counts and check-skill-counts scripts
8735b0d ci(desktop): add snap packaging, winget-publish workflow, and macOS secret preflight
ab86678 feat(desktop): add Agent Reach to bundled MCP registry
046c505 fix(desktop): resolve hidden skill paths from repo root and update lockfile
f76b341 chore(desktop): remove dangling skills-lock.json entries
9bb78c4 feat(desktop): wire fable-mode into hidden harness and update skill counts
0e162f1 feat(skills): add fable-mode as the 35th .agents/skills/ skill
76e0ed2 docs(i18n): align README translations with V2.10.57 three-tier surface model
76bbc0e docs: retire OpenSpace and reframe surface messaging to three-tier model (V2.10.57)
d7c0ab6 chore: add dev-only Graphify wrapper for repo-local coding support
e4c1eab docs: add V2.10.57 cross-machine planning handoff
97d88d2 V2.10.56 - add workspace-root AGENTS.md, fix broken skill refs in agent-desktop/AGENTS.md
a0e3320 V2.10.55 - adopt the user's real brand pack (docs/logos/logo.svg/)
7275083 V2.10.54 - extend bilingual brand into the desktop renderer
e43ac86 V2.10.53 - extend bilingual brand to inner binary READMEs, add language switcher
59b8e4b V2.10.52 - restore clean logo placement at top of root READMEs
67dd554 V2.10.51 - add Cubecloud 智方云 bilingual brand mark + curated 6-image preview gallery
0fd9228 V2.10.50 - tune GitHub Linguist to reflect product code instead of bundled skills
90b66bc V2.10.49 - restore original binary README framing; keep gallery, drop hermes-style shell
befb850 V2.10.48 - expand binary preview gallery + add setup-screen capturer
354d5fd V2.10.47 - restore 9 remaining FFFD-corrupted files from b981611 source
4f94b18 V2.10.46 - repair 0 FFFD positions across 32 non-translation, non-archive documents
0c689f1 V2.10.45 - repair 80 em-dash mojibake hits across 6 code files + BRANDING entries
aa10cb1 V2.10.43f - record v0.6.1 npmRebuild investigation and release-feed verification
f80a296 V2.10.44 - localize 30+ hardcoded English strings across 8 screens
6f99fd4 V2.10.43e - update handoff: v0.6.1 published, V2.10.43c deferred, cleanup done
a7e117d V2.10.43d - bump version to 0.6.1, publish v0.6.1 fix release

Release checklist — all done

  • Diagnosed the asar regression. Root cause: V2.10.43c added
    agent-desktop to npm workspaces, which hoists all deps to root
    node_modules/, leaving `agent-desk...
Read more

cubecloud-agent-desktop v0.6.1

Pre-release

Choose a tag to compare

@JZKK720 JZKK720 released this 08 Jun 21:57

⚠️ Superseded by v2.10.71

This release was built from the monorepo wrapper workspace (\�pps/desktop-shell/) which was retired in V2.10.67 (commit \

cubecloud-agent-desktop v0.6.0

Pre-release

Choose a tag to compare

@JZKK720 JZKK720 released this 08 Jun 08:37

cubecloud-agent-desktop v0.6.0

First GitHub release of cubecloud-agent-desktop for Windows.

What this is

A native Electron desktop shell that orchestrates Cubecloud Agentic-OS
runtimes, creative apps, and assistant workflows on a single machine.

What's in this release

  • Windows installer (NSIS, one-click) -- \cubecloud-desktop-0.6.0-setup.exe\
  • Windows portable executable -- \cubecloud-desktop-0.6.0-portable.exe\
  • Auto-updater block map and \latest.yml\ for \electron-updater\

Notes

  • The installer registers as cubecloud-agent-desktop in Windows
    Programs and Features (V2.10.41 rename).
  • Artifact file names still use the legacy \cubecloud-desktop-\ prefix
    from \package.json\ "name" -- this is a packaging-side detail, not
    a product-side detail. The user-facing program name is
    \cubecloud-agent-desktop.
  • macOS and Linux builds are produced by the GitHub Actions release
    workflow on tag push (.github/workflows/release.yml, V2.10.42).
    Building them in CI requires the App Store Connect, code-signing, and
    PostHog secrets to be configured in the repo settings. This first
    release ships the Windows artifacts only; multi-platform CI is a
    follow-up.
  • This release was prepared locally. The installers in \dist/\ were
    built with
    px electron-builder --win nsis portable --x64 --publish
    never, then attached to this release.

Checksums (SHA-256)

File SHA-256
\cubecloud-desktop-0.6.0-setup.exe\ \B797D89DD473C6D73601CDE5B79E919AC24D7FCF969764412BACEE59F46BCACD\
\cubecloud-desktop-0.6.0-portable.exe\ \86FD0ECE299855F3205799E9D068BB9732C39612FDC4AC53F7B5D171C7F3B847\
\cubecloud-desktop-0.6.0-setup.exe.blockmap\ \BB3A70B2BF0ABCCC619EE163F5C0FE058BDC26DDE1323756F9BF3E0358757DF4\
\latest.yml\ \�A5BE8E707B47963858C5C57C9908D1A8CAD3F4B0A3091A0C4A27D111673467F\

Provenance


⚠️ SUPERSEDED by v0.6.1 (2026-06-09). The v0.6.0 binaries have a broken app.asar that produces a blank window. Use v0.6.1 instead. Kept online for users who already have v0.6.0 installed so the auto-updater can offer the upgrade.