Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
8 changes: 4 additions & 4 deletions src/lib/office.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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<OfficePlatform, number> = {
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
Expand Down
Loading