diff --git a/package.json b/package.json index 01a7cc7..bf1b93c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codev-ai", - "version": "0.5.8", + "version": "0.5.9", "description": "CoDev — AI Coding Agent Hub. Install, configure, and manage multiple AI coding agents.", "keywords": [ "ai", diff --git a/src/lib/office.ts b/src/lib/office.ts index 3f294ca..b457ae2 100644 --- a/src/lib/office.ts +++ b/src/lib/office.ts @@ -8,7 +8,7 @@ import { officeDownloadsDir } from "@/lib/paths.js"; // `codevhub skill office`: fetch the CoDev Office offline bundle (published by // the codev-storage MinIO backend) for this OS and run the bundled setup -// script, which installs the Office skills (DOCX/XLSX authoring, …). +// script, which installs the Office skills (DOCX, XLSX, PPTX and PDF). // File names are deterministic per platform — no manifest fetch — and each // bundle carries its own SHA256SUMS.txt that the setup flow can verify. // Non-interactive on purpose — the second half hands the terminal to an @@ -147,9 +147,9 @@ export function officeUninstallScriptName(platform: OfficePlatform): string { // Rough bundle sizes for the pre-download heads-up only; progress totals come // from the server's content-length. const APPROX_BUNDLE_MB: Record = { - ubuntu: 610, - windows: 820, - macos: 1400, + ubuntu: 1200, + windows: 1400, + macos: 3100, }; // Adaptive size for progress lines: the setup script is ~13 KB and rendered