From e83587dfba1572bad6b21d5c1cb9d42c5a168c4c Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:31:10 +0800 Subject: [PATCH 001/436] Move HaiYing.OfficeCLI 1.0.70 to iOfficeAI.OfficeCLI 1.0.70 (#419251) --- .../1.0.70/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.70/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.70/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.70/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.70/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.70/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.70/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.70/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..495051b65c7c --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.70/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.70 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-02 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.70/officecli-win-x64.exe + InstallerSha256: 989190DEC6495C9091A135B6D51204F192C0C750FADD23EA838E9F87D53A7B60 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.70/officecli-win-arm64.exe + InstallerSha256: 6AFCE81F2A9A431C1CE21603822A6F7A6DE59398B03D46DF96D9D93CB9BE7CD0 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.70/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.70/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..dd86a03d29e3 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.70/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.70 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.69...v1.0.70' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.70 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.70/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.70/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..b35c11502151 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.70/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.70 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.70/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.70/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..0cc454075a8d --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.70/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.70 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From ef63e2966bb74d3168322a4cc6d557db7e08412a Mon Sep 17 00:00:00 2001 From: Gentian Shkembi Date: Tue, 18 Aug 2026 20:31:32 +0200 Subject: [PATCH 002/436] Gentian28.PgpUtility version 1.0.0 (#410626) --- .../1.0.0/Gentian28.PgpUtility.installer.yaml | 21 +++++++++ .../Gentian28.PgpUtility.locale.en-US.yaml | 45 +++++++++++++++++++ .../1.0.0/Gentian28.PgpUtility.yaml | 8 ++++ 3 files changed, 74 insertions(+) create mode 100644 manifests/g/Gentian28/PgpUtility/1.0.0/Gentian28.PgpUtility.installer.yaml create mode 100644 manifests/g/Gentian28/PgpUtility/1.0.0/Gentian28.PgpUtility.locale.en-US.yaml create mode 100644 manifests/g/Gentian28/PgpUtility/1.0.0/Gentian28.PgpUtility.yaml diff --git a/manifests/g/Gentian28/PgpUtility/1.0.0/Gentian28.PgpUtility.installer.yaml b/manifests/g/Gentian28/PgpUtility/1.0.0/Gentian28.PgpUtility.installer.yaml new file mode 100644 index 000000000000..a85271ac80df --- /dev/null +++ b/manifests/g/Gentian28/PgpUtility/1.0.0/Gentian28.PgpUtility.installer.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.12.13.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Gentian28.PgpUtility +PackageVersion: 1.0.0 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Gentian28/pgp-utility/releases/download/v1.0.0/PgpUtility-win-Setup.exe + InstallerSha256: CA0DBAE436593723F2AAE04BDA44C955AF348A753702CFFC5059FEB1C1E07E40 +ManifestType: installer +ManifestVersion: 1.6.0 +ReleaseDate: 2026-07-31 diff --git a/manifests/g/Gentian28/PgpUtility/1.0.0/Gentian28.PgpUtility.locale.en-US.yaml b/manifests/g/Gentian28/PgpUtility/1.0.0/Gentian28.PgpUtility.locale.en-US.yaml new file mode 100644 index 000000000000..342c19587a58 --- /dev/null +++ b/manifests/g/Gentian28/PgpUtility/1.0.0/Gentian28.PgpUtility.locale.en-US.yaml @@ -0,0 +1,45 @@ +# Created using wingetcreate 1.12.13.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Gentian28.PgpUtility +PackageVersion: 1.0.0 +PackageLocale: en-US +Publisher: Gentian Shkembi +PublisherUrl: https://www.gentianshkembi.com +PublisherSupportUrl: https://github.com/Gentian28/pgp-utility/issues +Author: Gentian Shkembi +PackageName: PGP Utility +PackageUrl: https://github.com/Gentian28/pgp-utility +License: MIT +LicenseUrl: https://github.com/Gentian28/pgp-utility/blob/main/LICENSE +Copyright: Copyright (c) 2026 Gentian Shkembi +CopyrightUrl: https://github.com/Gentian28/pgp-utility/blob/main/LICENSE +ShortDescription: Local OpenPGP tool for key management, file and text encryption, signing and verification. +Description: |- + A desktop OpenPGP tool that runs entirely on your machine. Generate Ed25519 or RSA key pairs, + encrypt and decrypt files and text with AES-256, sign and verify with detached or clear-signed + signatures, and save a revocation certificate the moment a key is created. + + Everything is interoperable with GnuPG in both directions: keys generated here import into + gpg, gpg can encrypt to them, and this app reads what gpg produces. + + Nothing leaves your machine. There is no keyserver upload, no account, no telemetry and no + network use at all. +Moniker: pgp-utility +Tags: +- aes-256 +- avalonia +- cryptography +- dotnet +- encryption +- gnupg +- gpg +- offline +- open-source +- openpgp +- pgp +- privacy +- security +ReleaseNotesUrl: https://github.com/Gentian28/pgp-utility/releases/tag/v1.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/g/Gentian28/PgpUtility/1.0.0/Gentian28.PgpUtility.yaml b/manifests/g/Gentian28/PgpUtility/1.0.0/Gentian28.PgpUtility.yaml new file mode 100644 index 000000000000..d9e7d621166d --- /dev/null +++ b/manifests/g/Gentian28/PgpUtility/1.0.0/Gentian28.PgpUtility.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.13.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Gentian28.PgpUtility +PackageVersion: 1.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From fa43fcdda4767d0e3f11a752352b12537a9fb519 Mon Sep 17 00:00:00 2001 From: Mitch Cotter Date: Wed, 19 Aug 2026 04:37:47 +1000 Subject: [PATCH 003/436] New version: ArduinoSA.IDE.stable version 2.3.10 (#414657) --- .../ArduinoSA.IDE.stable.installer.yaml | 57 +++++++++++++++++++ .../ArduinoSA.IDE.stable.locale.en-US.yaml | 39 +++++++++++++ .../stable/2.3.10/ArduinoSA.IDE.stable.yaml | 8 +++ 3 files changed, 104 insertions(+) create mode 100644 manifests/a/ArduinoSA/IDE/stable/2.3.10/ArduinoSA.IDE.stable.installer.yaml create mode 100644 manifests/a/ArduinoSA/IDE/stable/2.3.10/ArduinoSA.IDE.stable.locale.en-US.yaml create mode 100644 manifests/a/ArduinoSA/IDE/stable/2.3.10/ArduinoSA.IDE.stable.yaml diff --git a/manifests/a/ArduinoSA/IDE/stable/2.3.10/ArduinoSA.IDE.stable.installer.yaml b/manifests/a/ArduinoSA/IDE/stable/2.3.10/ArduinoSA.IDE.stable.installer.yaml new file mode 100644 index 000000000000..504e5cd052dc --- /dev/null +++ b/manifests/a/ArduinoSA/IDE/stable/2.3.10/ArduinoSA.IDE.stable.installer.yaml @@ -0,0 +1,57 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ArduinoSA.IDE.stable +PackageVersion: 2.3.10 +InstallModes: +- interactive +- silent +UpgradeBehavior: install +FileExtensions: +- c +- c++ +- cc +- cpp +- cxx +- h +- h++ +- hh +- hpp +- hxx +- i++ +- inc +- ino +- ipp +- ixx +ReleaseDate: 2026-06-09 +Installers: +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Arduino IDE.exe + InstallerUrl: https://github.com/arduino/arduino-ide/releases/download/2.3.10/arduino-ide_2.3.10_Windows_64bit.zip + InstallerSha256: 5DD9D6B2E2C9EF8DD9D98DA7808F712DAFF97911A91D3CCFAF946355C6B6ABB3 +- InstallerLocale: en-US + Architecture: x64 + InstallerType: nullsoft + InstallerUrl: https://github.com/arduino/arduino-ide/releases/download/2.3.10/arduino-ide_2.3.10_Windows_64bit.exe + InstallerSha256: A8F3DF0AC57C6B74AA1B1D22E5F202DC5DDB46663579D4E5108A69CC99B6F823 + ProductCode: 459fc68c-eb53-59f8-8957-9913bc627af3 + AppsAndFeaturesEntries: + - DisplayName: Arduino IDE 2.3.10 + ProductCode: 459fc68c-eb53-59f8-8957-9913bc627af3 +- InstallerLocale: en-US + Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/arduino/arduino-ide/releases/download/2.3.10/arduino-ide_2.3.10_Windows_64bit.msi + InstallerSha256: AEBBD1EFEAC5CFB02A6CAD0D93AF8221054FC983A5B3C5CE6DA8A6BFB9425165 + ProductCode: '{2512FA64-8592-4C98-8430-9262623F95F0}' + AppsAndFeaturesEntries: + - ProductCode: '{2512FA64-8592-4C98-8430-9262623F95F0}' + UpgradeCode: '{315F6168-1C48-5F6A-953D-BD5ADC41FE08}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\arduino-ide' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/ArduinoSA/IDE/stable/2.3.10/ArduinoSA.IDE.stable.locale.en-US.yaml b/manifests/a/ArduinoSA/IDE/stable/2.3.10/ArduinoSA.IDE.stable.locale.en-US.yaml new file mode 100644 index 000000000000..493aaeb3116e --- /dev/null +++ b/manifests/a/ArduinoSA/IDE/stable/2.3.10/ArduinoSA.IDE.stable.locale.en-US.yaml @@ -0,0 +1,39 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ArduinoSA.IDE.stable +PackageVersion: 2.3.10 +PackageLocale: en-US +Publisher: Arduino SA +PublisherUrl: https://www.arduino.cc/ +PublisherSupportUrl: https://support.arduino.cc/ +PrivacyUrl: https://www.arduino.cc/en/privacy-policy +Author: Arduino SA +PackageName: Arduino IDE +PackageUrl: https://www.arduino.cc/en/software +License: AGPL-3.0 +LicenseUrl: https://github.com/arduino/arduino-ide/blob/HEAD/LICENSE.txt +Copyright: Copyright © 2022 Arduino SA +ShortDescription: Open-source electronic prototyping platform enabling users to create interactive electronic objects. +Description: An integrated development environment for Arduino microcontroller boards and compatibles +Moniker: arduino-ide +Tags: +- arduino +- arm +- avr +- c++ +- electronics +- embedded +- i686 +- mcu +- microcontroller +ReleaseNotes: |- + Changed + - Bump Arduino CLI to 1.5.1 (#2920) + - Add clean compile/verify (with shift+click on the verify button) (#2923) + Fixed + - In some cases, sketch code is not recompiled (cached) after being modified. + - Startup error due to missing CLI directory defaults (#2922) +ReleaseNotesUrl: https://github.com/arduino/arduino-ide/releases/tag/2.3.10 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/ArduinoSA/IDE/stable/2.3.10/ArduinoSA.IDE.stable.yaml b/manifests/a/ArduinoSA/IDE/stable/2.3.10/ArduinoSA.IDE.stable.yaml new file mode 100644 index 000000000000..08718e4af5c6 --- /dev/null +++ b/manifests/a/ArduinoSA/IDE/stable/2.3.10/ArduinoSA.IDE.stable.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: ArduinoSA.IDE.stable +PackageVersion: 2.3.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 355271dbad8d62de4a32a4f37bf240fae20b2336 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:38:06 +0800 Subject: [PATCH 004/436] Move HaiYing.AionUi 1.1.2 to iOfficeAI.AionUi 1.1.2 (#417860) --- .../1.1.2/iOfficeAI.AionUi.installer.yaml | 22 +++++++++ .../1.1.2/iOfficeAI.AionUi.locale.en-US.yaml | 46 +++++++++++++++++++ .../1.1.2/iOfficeAI.AionUi.locale.zh-CN.yaml | 34 ++++++++++++++ .../AionUi/1.1.2/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 110 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.1.2/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.1.2/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.1.2/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.1.2/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.1.2/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.1.2/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..c2f169a54a8c --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.1.2/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 v2.5.0 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.1.2 +InstallerType: exe # Squirrel +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +ProductCode: AionUi +ReleaseDate: 2025-08-16 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/office-sec/AionUi/releases/download/v1.1.2/AionUi_1.1.2_win_x64.exe + InstallerSha256: 905CC99FE4B582B399D6D9E261B8AC0530B84D6C09345B93F1AFE7619301A2DA +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.1.2/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.1.2/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..53266f167d82 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.1.2/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,46 @@ +# Created with YamlCreate.ps1 v2.5.0 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.1.2 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/office-sec/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/office-sec/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/office-sec/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2025 AionUi (aionui.com) +# CopyrightUrl: +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +# Description: +# Moniker: +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - feat: add fix-path to resolve PATH environment variable issues on mac… by @goworm in #51 + - feat: Synchronously upgrade the relevant adaptation capabilities of g… by @halvee-tech in #52 + - fixed: add fix-path dependent by @halvee-tech in #53 + - fixed: bug fixed by @halvee-tech in #54 + New Contributors + - @goworm made their first contribution in #51 + Full Changelog: https://github.com/office-sec/AionUi/compare/v1.1.1...v1.1.2 +ReleaseNotesUrl: https://github.com/office-sec/AionUi/releases/tag/v1.1.2 +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/office-sec/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.1.2/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.1.2/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..3d176971319f --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.1.2/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 v2.5.0 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.1.2 +PackageLocale: zh-CN +# Publisher: +PublisherUrl: https://www.haiyingsec.cn/ +# PublisherSupportUrl: +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +# PackageName: +# PackageUrl: +# License: +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +# Description: +# Moniker: +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.1.2/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.1.2/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..e75606e80ebe --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.1.2/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.5.0 $debug=NVS1.CRLF.7-5-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.1.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From f578fcbd9b187ac63191059002b30c03573468da Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:38:27 +0800 Subject: [PATCH 005/436] Move HaiYing.AionUi 1.1.4 to iOfficeAI.AionUi 1.1.4 (#417862) --- .../1.1.4/iOfficeAI.AionUi.installer.yaml | 22 ++++++++++ .../1.1.4/iOfficeAI.AionUi.locale.en-US.yaml | 44 +++++++++++++++++++ .../1.1.4/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++++ .../AionUi/1.1.4/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 93 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.1.4/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.1.4/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.1.4/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.1.4/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.1.4/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.1.4/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..3f2b1e88f3f3 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.1.4/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.1.4 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +ProductCode: AionUi +ReleaseDate: 2025-08-22 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.1.4/AionUi_1.1.4_win_x64.exe + InstallerSha256: A89DBE5FBE3C4AA5E023539342CEB902BCB19975B5938D1367D7DAA56C6C8A0C +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.1.4/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.1.4/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..88227841b5e9 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.1.4/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.1.4 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2025 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - feat: Add dark mode support by @syblock in https://github.com/office-sec/AionUi/pull/80 + - feat: Implement storage migration from temp to userData/config by @czqgithub2017 @goworm in https://github.com/office-sec/AionUi/pull/79 + - feat: Enhance platform selection with searchable dropdown by @ninesunsabiu in https://github.com/office-sec/AionUi/pull/82 + - feat: Auto-fix OpenAI API base URL on failure by @halvee in https://github.com/office-sec/AionUi/pull/81 + - fix: Remove trailing \r characters from environment variables by @halvee in https://github.com/office-sec/AionUi/pull/83 + - fix: Handle chat record deletion during session removal by @syblock in https://github.com/office-sec/AionUi/pull/84 + New Contributors + - @syblock made their first contribution in https://github.com/office-sec/AionUi/pull/80 + - @ninesunsabiu made their first contribution in https://github.com/office-sec/AionUi/pull/82 + Full Changelog: https://github.com/office-sec/AionUi/compare/v1.1.3...v1.1.4 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.1.4 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.1.4/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.1.4/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..42718216d5d4 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.1.4/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.1.4 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.1.4/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.1.4/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..1b7572915093 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.1.4/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.1.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 803b72cab933d62e2642feb604eb33e40f4317bc Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:38:54 +0800 Subject: [PATCH 006/436] Move HaiYing.AionUi 1.1.5 to iOfficeAI.AionUi 1.1.5 (#417864) --- .../1.1.5/iOfficeAI.AionUi.installer.yaml | 22 +++++++++ .../1.1.5/iOfficeAI.AionUi.locale.en-US.yaml | 47 +++++++++++++++++++ .../1.1.5/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++++ .../AionUi/1.1.5/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 96 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.1.5/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.1.5/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.1.5/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.1.5/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.1.5/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.1.5/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..e1d0c5fa1590 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.1.5/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.1.5 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +ProductCode: AionUi +ReleaseDate: 2025-08-29 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.1.5/AionUi_1.1.5_win_x64.exe + InstallerSha256: 2607098A23EEFA6F8920EC45A6E19909B6580D14AC8E1E50998DD9CAE18D6681 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.1.5/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.1.5/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..b6b8b1634752 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.1.5/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,47 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.1.5 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2025 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - Update TypeScript to 5.3.3 for Gemini CLI compatibility by @goworm in https://github.com/iOfficeAI/AionUi/pull/82 + - feat: remember last selected model by @syblock in https://github.com/iOfficeAI/AionUi/pull/86 + - Correct the URL of repo by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/88 + - feat: Add conversation-level tool configuration for OpenAI web search by @goworm in https://github.com/iOfficeAI/AionUi/pull/92 + - feat: Add custom web fetch tool and improve tool configuration by @goworm in https://github.com/iOfficeAI/AionUi/pull/93 + - Feat/img gen by @halvee-tech in https://github.com/iOfficeAI/AionUi/pull/100 + - Feat/img gen by @halvee-tech in https://github.com/iOfficeAI/AionUi/pull/101 + - feat: Modify the tool configuration display and github address by @halvee-tech in https://github.com/iOfficeAI/AionUi/pull/102 + - feat: Support local image rendering in markdown by @halvee-tech in https://github.com/iOfficeAI/AionUi/pull/103 + Important functions + A new image processing tool has been added, which can be connected to image models for image processing. + If the OpenRouter apikey is connected, we will default to enabling and using the google/gemini-2.5-flash-image-preview:free model for image processing for you. You can switch or turn off the model in the Settings/Tool configuration + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.1.4...v1.1.5 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.1.5 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.1.5/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.1.5/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..da6a05660140 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.1.5/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.1.5 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.1.5/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.1.5/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..0ceb871206a0 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.1.5/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.1.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 18e5c103d946f0c9939bfd9f1e2771ecc97333f0 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:39:13 +0800 Subject: [PATCH 007/436] Move HaiYing.AionUi 1.1.6 to iOfficeAI.AionUi 1.1.6 (#417866) --- .../1.1.6/iOfficeAI.AionUi.installer.yaml | 22 +++++++++++ .../1.1.6/iOfficeAI.AionUi.locale.en-US.yaml | 38 +++++++++++++++++++ .../1.1.6/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++++++ .../AionUi/1.1.6/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 87 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.1.6/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.1.6/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.1.6/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.1.6/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.1.6/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.1.6/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..63bf6ba85cec --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.1.6/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.1.6 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +ProductCode: AionUi +ReleaseDate: 2025-09-01 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.1.6/AionUi_1.1.6_win_x64.exe + InstallerSha256: 58213CE96C6113E734DD10AB09A84E07B9DDEC941544872D30A9D280E9798FD2 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.1.6/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.1.6/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..d9ad31a980d5 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.1.6/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.1.6 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2025 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - feat: showcase AI image generation capabilities in all readme versions by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/106 + - feat: enhance image generation tool and model capabilities system by @goworm in https://github.com/iOfficeAI/AionUi/pull/107 + - feat: enhance dark theme support and model selection architecture by @goworm in https://github.com/iOfficeAI/AionUi/pull/113 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.1.5...v1.1.6 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.1.6 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.1.6/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.1.6/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..037a69f65997 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.1.6/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.1.6 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.1.6/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.1.6/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..f4a6e4724a8b --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.1.6/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.1.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From fff1c92731ab8b3a71f1a14f7bccbfb373fbe757 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:39:32 +0800 Subject: [PATCH 008/436] Move HaiYing.AionUi 1.2.0-preview to iOfficeAI.AionUi 1.2.0-preview (#417868) --- .../iOfficeAI.AionUi.installer.yaml | 22 ++++++++ .../iOfficeAI.AionUi.locale.en-US.yaml | 51 +++++++++++++++++++ .../iOfficeAI.AionUi.locale.zh-CN.yaml | 19 +++++++ .../1.2.0-preview/iOfficeAI.AionUi.yaml | 8 +++ 4 files changed, 100 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.2.0-preview/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.2.0-preview/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.2.0-preview/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.2.0-preview/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.2.0-preview/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.2.0-preview/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..326b257136a6 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.2.0-preview/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.2.0-preview +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +ProductCode: AionUi +ReleaseDate: 2025-09-05 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.2.0-preview/AionUi_1.2.0_win_x64.exe + InstallerSha256: 7B0A9C9B5EB17F498A6E1851DF2BCE663CA0A42BE310407BF50811B194C3847E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.2.0-preview/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.2.0-preview/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..81a5edd41c5e --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.2.0-preview/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,51 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.2.0-preview +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2025 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + Key features + Support Mmultiple API key for auto-rotation + Support multi-agent mode and allow users to use Claude Code/Qwen Code + What's Changed + - feat: enhance image generation tool settings with better UX by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/114 + - docs: add configuration guide links for image generation by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/115 + - feat: enhance image generation tool with multi-image support and core upgrades by @goworm in https://github.com/iOfficeAI/AionUi/pull/118 + - feat: optimize tool configuration and fix Google auth logout issue by @goworm in https://github.com/iOfficeAI/AionUi/pull/119 + - refactor: improve type naming and debug performance by @goworm in https://github.com/iOfficeAI/AionUi/pull/120 + - feat: improve type system and add backward compatibility for tool configurations by @goworm in https://github.com/iOfficeAI/AionUi/pull/121 + - feat: add configuration migration for useModel → selectedModel by @goworm in https://github.com/iOfficeAI/AionUi/pull/123 + - refactor: revert selectedModel to useModel and remove migration logic by @goworm in https://github.com/iOfficeAI/AionUi/pull/124 + - feat: implement multi-API key rotation system with time-based blacklisting by @goworm in https://github.com/iOfficeAI/AionUi/pull/130 + - Feature: ACP (AI Code Protocol) Integration and Chat History Recovery Improvements by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/132 + - UI: Improve Welcome Page Layout and Input Styling by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/134 + New Contributors + - @kaizhou-lab made their first contribution in https://github.com/iOfficeAI/AionUi/pull/132 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.1.6...v1.2.0 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.2.0-preview +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.2.0-preview/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.2.0-preview/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..7ea4c3e10174 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.2.0-preview/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.2.0-preview +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.2.0-preview/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.2.0-preview/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..c468299dbd71 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.2.0-preview/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.2.0-preview +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From bc3771a456dea0f8868a3c95f948175af585a3ea Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:39:53 +0800 Subject: [PATCH 009/436] Move HaiYing.AionUi 1.2.5 to iOfficeAI.AionUi 1.2.5 (#417876) --- .../1.2.5/iOfficeAI.AionUi.installer.yaml | 38 ++++++++++++++++ .../1.2.5/iOfficeAI.AionUi.locale.en-US.yaml | 45 +++++++++++++++++++ .../1.2.5/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++++ .../AionUi/1.2.5/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 110 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.2.5/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.2.5/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.2.5/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.2.5/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.2.5/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.2.5/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..34d326eb3927 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.2.5/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.2.5 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2025-09-30 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.2.5/AionUi-1.2.5-win-x64.exe + InstallerSha256: E7742B79813A477B79D0B738716543AD600E5A916709345B547F00C44FB4C4C6 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.2.5/AionUi-1.2.5-win-x64.exe + InstallerSha256: E7742B79813A477B79D0B738716543AD600E5A916709345B547F00C44FB4C4C6 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.2.5/AionUi-1.2.5-win-arm64.exe + InstallerSha256: 4152FB562465925D07D3F4FBBB38D101D8861BA247B3F90345040B4065C4B2AB + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.2.5/AionUi-1.2.5-win-arm64.exe + InstallerSha256: 4152FB562465925D07D3F4FBBB38D101D8861BA247B3F90345040B4065C4B2AB + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.2.5/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.2.5/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..8d307e5afb38 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.2.5/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,45 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.2.5 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2025 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - feat: Support for multiple independent conversations within the same … by @Chengxiwei in https://github.com/iOfficeAI/AionUi/pull/171 + - Revert "feat: Support for multiple independent conversations within the same …" by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/174 + - feat: 1. Add a quick session creation function to the workspace by @halvee-tech in https://github.com/iOfficeAI/AionUi/pull/173 + - Optimize ux by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/175 + - fix: acp init after first create by @halvee-tech in https://github.com/iOfficeAI/AionUi/pull/178 + - feat: Complete Codex integration with enhanced architecture and UX improvements by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/164 + - chore: update npm dependencies after registry change by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/182 + New Contributors + - @Chengxiwei made their first contribution in https://github.com/iOfficeAI/AionUi/pull/171 + - @kuishou68 made their first contribution in https://github.com/iOfficeAI/AionUi/pull/164 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.2.4...v1.2.5 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.2.5 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.2.5/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.2.5/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..6b41ebf02980 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.2.5/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.2.5 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.2.5/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.2.5/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..8b86fd0bdd62 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.2.5/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.2.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From d1fd10d6b8bc24c050ab74b0b4f1ccac63f543fb Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:40:12 +0800 Subject: [PATCH 010/436] Move HaiYing.AionUi 1.4.2 to iOfficeAI.AionUi 1.4.2 (#417887) --- .../1.4.2/iOfficeAI.AionUi.installer.yaml | 38 ++++++++++ .../1.4.2/iOfficeAI.AionUi.locale.en-US.yaml | 73 +++++++++++++++++++ .../1.4.2/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 +++++ .../AionUi/1.4.2/iOfficeAI.AionUi.yaml | 8 ++ 4 files changed, 138 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.4.2/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.4.2/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.4.2/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.4.2/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.4.2/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.4.2/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..857db08b532d --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.4.2/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.4.2 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2025-10-25 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.4.2/AionUi-1.4.2-win-x64.exe + InstallerSha256: 1E1574296963867F4D152B37CCF1C53682CCDBA30E97272463568A4F0D4C248C + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.4.2/AionUi-1.4.2-win-x64.exe + InstallerSha256: 1E1574296963867F4D152B37CCF1C53682CCDBA30E97272463568A4F0D4C248C + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.4.2/AionUi-1.4.2-win-arm64.exe + InstallerSha256: B78C5DB03E1FD58D1E8D0D734131478EB4E76BDD6D61B9BA4ABD5851B70A57D9 + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.4.2/AionUi-1.4.2-win-arm64.exe + InstallerSha256: B78C5DB03E1FD58D1E8D0D734131478EB4E76BDD6D61B9BA4ABD5851B70A57D9 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.4.2/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.4.2/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..596dfd9c4ce6 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.4.2/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,73 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.4.2 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2025 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Fixed + - Unified WebUI launch and password reset command formats across all platforms, reducing operational costs + - Fixed unresponsive file uploads and non-functional folder opening to restore normal file interactions + - Resolved Gemini initial session failure on some Windows devices to ensure a smooth startup experience + 🚀 WebUI Mode Quick Start Guide + macOS + # Launch WebUI + /Applications/AionUi.app/Contents/MacOS/AionUi --webui + + # Reset Password (quit AionUi first) + /Applications/AionUi.app/Contents/MacOS/AionUi --resetpass admin + Windows + # Launch WebUI (right-click desktop shortcut → "Open file location" to copy path) + "C:\Program Files\AionUi\AionUi.exe" --webui + + # Reset Password + "C:\Program Files\AionUi\AionUi.exe" --resetpass admin + Linux + Desktop Environment (Non-root User): + # Local Access + AionUi --webui + + # Network Access (LAN) + AionUi --webui --remote + + # Reset Password + AionUi --resetpass + Headless / Root User: + # Local Access + sudo AionUi --webui --no-sandbox + + # Network Access (LAN) + sudo AionUi --webui --remote --no-sandbox + + # Reset Password + sudo AionUi --resetpass --no-sandbox + What's Changed + - feat: add complete WebUI support - web server mode with JWT auth and multi-platform builds by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/227 + - WebUI Support and Critical Stability Fixes by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/233 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.4.0...v1.4.2 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.4.2 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.4.2/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.4.2/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..468a6553eed7 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.4.2/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.4.2 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.4.2/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.4.2/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..bb8e8826f3c9 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.4.2/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.4.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From bb95043f7b1c4de49502345b23e179924a7b6ae8 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:40:28 +0800 Subject: [PATCH 011/436] Move HaiYing.OfficeCLI 1.0.47 to iOfficeAI.OfficeCLI 1.0.47 (#418956) --- .../1.0.47/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.47/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.47/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.47/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.47/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.47/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.47/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.47/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..7f4f5020807a --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.47/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.47 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.47/officecli-win-x64.exe + InstallerSha256: 9B70954E684AF1D3A33A86FC2F5A6A9EA895DA7B70E9BCA6008300ACA6930726 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.47/officecli-win-arm64.exe + InstallerSha256: B93AA30577EFB26F2310F524EB09D1CFCA378B74FB276BF5578AB7B06FC18F25 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.47/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.47/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..5a49a60a4b3a --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.47/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.47 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.46...v1.0.47' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.47 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.47/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.47/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..a2740d39cc91 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.47/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.47 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.47/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.47/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..005625706804 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.47/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.47 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 852855e3c98415296a009ad01e08bdad27cef6f2 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:40:46 +0800 Subject: [PATCH 012/436] Move HaiYing.OfficeCLI 1.0.48 to iOfficeAI.OfficeCLI 1.0.48 (#418958) --- .../1.0.48/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.48/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.48/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.48/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.48/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.48/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.48/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.48/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..cef52eeba9bf --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.48/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.48 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-16 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.48/officecli-win-x64.exe + InstallerSha256: 7F9F6DDE68D09B5A247A5AA5876DDE61E39A41CB5F02ACC3F0E813EFC09EA43B +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.48/officecli-win-arm64.exe + InstallerSha256: 97FF558567583BF5B75BD5128192F5D34B0E1DB26049A727E461EC6B23F3A341 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.48/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.48/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..91e210edb291 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.48/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.48 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.47...v1.0.48' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.48 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.48/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.48/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..ecaca95d7d75 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.48/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.48 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.48/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.48/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..0133fd99a1e0 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.48/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.48 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 23f64b8f232fd395577e33c6893c40c741a7d387 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:41:02 +0800 Subject: [PATCH 013/436] Move HaiYing.OfficeCLI 1.0.49 to iOfficeAI.OfficeCLI 1.0.49 (#418960) --- .../1.0.49/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.49/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.49/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.49/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.49/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.49/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.49/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.49/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..a0a007c5be14 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.49/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.49 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-16 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.49/officecli-win-x64.exe + InstallerSha256: E2F46D527BCBE9830579A3D4B4E4B5EB2BCC0FDBF8EA3BDC9057933775F2DC39 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.49/officecli-win-arm64.exe + InstallerSha256: 652B6EAFB417A619BAA6CD4655876EBD36694011BCCE67D98FCC75CB9826AEEE +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.49/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.49/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..36c27801aa51 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.49/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.49 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.48...v1.0.49' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.49 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.49/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.49/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..1075e5041bb0 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.49/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.49 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.49/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.49/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..1e2cdd775b94 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.49/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.49 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From c90910a70b16ef2b9edfd302b056115c3c8d67fc Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:41:20 +0800 Subject: [PATCH 014/436] Move HaiYing.OfficeCLI 1.0.50 to iOfficeAI.OfficeCLI 1.0.50 (#418962) --- .../1.0.50/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 77 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 ++++++++++++ .../OfficeCLI/1.0.50/iOfficeAI.OfficeCLI.yaml | 8 ++ 4 files changed, 152 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.50/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.50/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.50/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.50/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.50/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.50/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..7c6b71e06a6d --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.50/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.50 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-17 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.50/officecli-win-x64.exe + InstallerSha256: 889012E0658FCAD84FAC95F5BD55D15846005846D10EE443C0CAF20998BA693A +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.50/officecli-win-arm64.exe + InstallerSha256: EF7A69D9896B64BB887F7AD7AF9CB9C8DC937C069432174279FD7E842C55B90B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.50/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.50/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..7f45f01e7386 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.50/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,77 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.50 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: |- + What's Changed + - fix(watch): skip HTML rendering when no watch session exists by @windrider2010 in https://github.com/iOfficeAI/OfficeCLI/pull/62 + New Contributors + - @windrider2010 made their first contribution in https://github.com/iOfficeAI/OfficeCLI/pull/62 + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.49...v1.0.50 +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.50 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.50/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.50/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..13deccda32f7 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.50/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.50 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.50/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.50/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..2530b83276a3 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.50/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.50 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 92035482ddf208bf3829fbf07479c937dd8cdbd7 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:41:37 +0800 Subject: [PATCH 015/436] Move HaiYing.OfficeCLI 1.0.51 to iOfficeAI.OfficeCLI 1.0.51 (#418964) --- .../1.0.51/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.51/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.51/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.51/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.51/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.51/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.51/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.51/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..f9502a9eb8c9 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.51/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.51 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-17 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.51/officecli-win-x64.exe + InstallerSha256: 3A5B31774D50403CA8EC9E35F8EF93DEA0374C2A4F31550A2217D9911AC15241 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.51/officecli-win-arm64.exe + InstallerSha256: 65B3CAFB4904DF664EE7093611F0FD8E925E6E98FE48E7A01C9DA576ECA209A3 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.51/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.51/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..de5f8aab19c3 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.51/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.51 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.50...v1.0.51' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.51 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.51/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.51/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..436e8673f95a --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.51/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.51 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.51/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.51/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..d07f9937c5d6 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.51/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.51 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 59f9eea997de040c656fe51c9c5ffed4455cf0e3 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:41:55 +0800 Subject: [PATCH 016/436] Move HaiYing.OfficeCLI 1.0.52 to iOfficeAI.OfficeCLI 1.0.52 (#418967) --- .../1.0.52/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 77 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 ++++++++++++ .../OfficeCLI/1.0.52/iOfficeAI.OfficeCLI.yaml | 8 ++ 4 files changed, 152 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.52/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.52/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.52/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.52/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.52/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.52/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..9797bd28c8a9 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.52/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.52 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-18 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.52/officecli-win-x64.exe + InstallerSha256: 6829AA9AC94D2729A8CA6EB28AD07F9538E90C231E3EBC9277FC3C98DBF1C32A +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.52/officecli-win-arm64.exe + InstallerSha256: 3FDA614F3097112652A0F3B2E37CCE960CBDD811B278F4DA00ED6BF04DDFD55E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.52/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.52/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..d9adf9033b8d --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.52/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,77 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.52 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: |- + What's Changed + - fix: refresh excel watch when row patches change columns by @xpfxzxc in https://github.com/iOfficeAI/OfficeCLI/pull/64 + New Contributors + - @xpfxzxc made their first contribution in https://github.com/iOfficeAI/OfficeCLI/pull/64 + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.51...v1.0.52 +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.52 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.52/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.52/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..48b2c2a58045 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.52/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.52 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.52/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.52/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..c649965bcf23 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.52/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.52 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 7726b3ca135d8f16e3d112f480bf61e793b9b7f3 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:42:19 +0800 Subject: [PATCH 017/436] Move HaiYing.OfficeCLI 1.0.53 to iOfficeAI.OfficeCLI 1.0.53 (#418969) --- .../1.0.53/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.53/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.53/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.53/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.53/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.53/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.53/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.53/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..70f45699d5fc --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.53/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.53 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-19 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.53/officecli-win-x64.exe + InstallerSha256: 0B1848BE67134AA684B68A0B95220CB0647718A273C0DF244AB59F8C230732A0 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.53/officecli-win-arm64.exe + InstallerSha256: 2FAB98063252661A396EDB0153338C47F1F10B4180B639164EE3C569F8EB7ECC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.53/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.53/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..2c4744df1dda --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.53/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.53 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.52...v1.0.53' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.53 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.53/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.53/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..1f9c743fc9bd --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.53/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.53 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.53/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.53/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..bb5c1a48211b --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.53/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.53 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From e7e2f485761af45d0a0b64b0db2f560450114550 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:42:35 +0800 Subject: [PATCH 018/436] Move HaiYing.OfficeCLI 1.0.54 to iOfficeAI.OfficeCLI 1.0.54 (#418972) --- .../1.0.54/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.54/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.54/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.54/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.54/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.54/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.54/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.54/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..3095d5ca1203 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.54/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.54 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-22 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.54/officecli-win-x64.exe + InstallerSha256: FB3592CBBEAD3A065FB57F804C40FFCCD2ED8618AA480F75C4EC264EDE597C0A +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.54/officecli-win-arm64.exe + InstallerSha256: D78D2D15705FD0BB357DAEDC6D2A9340A27FAF2960C7B99F49FC9AA6816F6B5A +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.54/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.54/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..9bd39af59c33 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.54/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.54 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.53...v1.0.54' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.54 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.54/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.54/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..5feb4aae1787 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.54/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.54 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.54/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.54/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..acae953c6590 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.54/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.54 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 411abf5b7b263c516e0739b5a8bd85cde03f3243 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:42:50 +0800 Subject: [PATCH 019/436] Move HaiYing.OfficeCLI 1.0.56 to iOfficeAI.OfficeCLI 1.0.56 (#419021) --- .../1.0.56/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.56/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.56/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.56/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.56/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.56/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.56/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.56/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..dea93bea1d72 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.56/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.56 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.56/officecli-win-x64.exe + InstallerSha256: 2D1B5F3B8204224528A9D4D52080F8746743927A3703B7A050870984A4FA67E0 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.56/officecli-win-arm64.exe + InstallerSha256: 42FA15A84FFDCB78E658978195A0938E30A3ED1E35366DEAA0A0B5D21DE2D862 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.56/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.56/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..1359aea37df0 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.56/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.56 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.55...v1.0.56' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.56 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.56/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.56/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..7f4fa83a3b3e --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.56/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.56 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.56/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.56/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..71a7ce446bbe --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.56/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.56 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From b16334470daf95900b12f64af44bb824d075c266 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:43:05 +0800 Subject: [PATCH 020/436] Move HaiYing.OfficeCLI 1.0.58 to iOfficeAI.OfficeCLI 1.0.58 (#419025) --- .../1.0.58/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.58/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.58/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.58/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.58/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.58/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.58/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.58/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..ffebdd5b5546 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.58/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.58 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.58/officecli-win-x64.exe + InstallerSha256: 3E51436DE69375B6BD9E056E497685D67096304AF2A75E554929F0BF5E9FEDF8 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.58/officecli-win-arm64.exe + InstallerSha256: CB0689EC536E74746AC2B2D196E66FCAB050A499BCB931238AE8DC540A3D5798 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.58/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.58/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..577b3c27d7e0 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.58/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.58 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.57...v1.0.58' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.58 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.58/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.58/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..80b857bde514 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.58/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.58 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.58/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.58/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..deffd3a4b8ea --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.58/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.58 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From ba892d18da082a720b9e6f7a53c78143c2250c8f Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:43:23 +0800 Subject: [PATCH 021/436] Move HaiYing.OfficeCLI 1.0.59 to iOfficeAI.OfficeCLI 1.0.59 (#419228) --- .../1.0.59/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.59/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.59/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.59/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.59/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.59/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.59/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.59/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..b41a1819aa31 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.59/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.59 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.59/officecli-win-x64.exe + InstallerSha256: 918E2EB595D8BE3D5889480F541FCE470360E0380C560E23DA54E14A944DAACB +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.59/officecli-win-arm64.exe + InstallerSha256: 88A332773144288273652F6D44E6C6E4FF18596A7F82EA89B807936BF1EB3032 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.59/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.59/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..1701fcf81ebc --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.59/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.59 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.58...v1.0.59' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.59 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.59/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.59/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..7c1f1e198e16 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.59/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.59 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.59/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.59/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..9e5dee9fda2d --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.59/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.59 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 764b6c80be1745627fdf2f1b1d4113372974aa8a Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:43:39 +0800 Subject: [PATCH 022/436] Move HaiYing.OfficeCLI 1.0.60 to iOfficeAI.OfficeCLI 1.0.60 (#419230) --- .../1.0.60/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.60/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.60/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.60/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.60/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.60/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.60/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.60/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..54bfa33403a4 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.60/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.60 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.60/officecli-win-x64.exe + InstallerSha256: F42FF0A38F88D1ED3BDEC725349D68C4A991775DE906DC98F33B3B4C70DA772F +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.60/officecli-win-arm64.exe + InstallerSha256: FE27FE65DBC823A28A8FF1DAEC3A9C59FC6826C8914A208062478B1055580978 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.60/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.60/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..73a65e4d9886 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.60/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.60 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.59...v1.0.60' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.60 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.60/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.60/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..c4a952aa4b87 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.60/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.60 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.60/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.60/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..7a08ff1a1c2c --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.60/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.60 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From ccc888f5c5c6f1402bf62492223405c1ce1ecb4e Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:43:59 +0800 Subject: [PATCH 023/436] Move HaiYing.OfficeCLI 1.0.61 to iOfficeAI.OfficeCLI 1.0.61 (#419232) --- .../1.0.61/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 75 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 ++++++++++++ .../OfficeCLI/1.0.61/iOfficeAI.OfficeCLI.yaml | 8 ++ 4 files changed, 150 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.61/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.61/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.61/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.61/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.61/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.61/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..550971346f4b --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.61/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.61 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-28 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.61/officecli-win-x64.exe + InstallerSha256: 0F4CB3450FF86CD9C28A2C08ABB82A7CC89361C7D42757130ED872AD18AC5EA7 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.61/officecli-win-arm64.exe + InstallerSha256: 6A17DC7ED1561812F8D8EFBEE61B406A937F5A3D3A52592EC5B910C50ED40147 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.61/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.61/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..80744f5782cb --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.61/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,75 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.61 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: |- + What's Changed + - fix(pptx): suppress layout/master placeholder prompt text in html preview by @goworm in https://github.com/iOfficeAI/OfficeCLI/pull/81 + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.60...v1.0.61 +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.61 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.61/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.61/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..6b78c4b86881 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.61/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.61 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.61/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.61/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..2e4cf6bc0503 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.61/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.61 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From b1383ac2ec7ba94a944f676c2cf61826c0f190e1 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:44:13 +0800 Subject: [PATCH 024/436] Move HaiYing.OfficeCLI 1.0.62 to iOfficeAI.OfficeCLI 1.0.62 (#419234) --- .../1.0.62/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.62/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.62/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.62/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.62/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.62/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.62/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.62/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..6d67d55c87ac --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.62/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.62 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-28 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.62/officecli-win-x64.exe + InstallerSha256: 20173B40933044268638B4787D3CBE7C76A9652962681EAD573C88E980C67596 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.62/officecli-win-arm64.exe + InstallerSha256: 3F59CD71A93AE0180F0EE00875E789927BBA5E73C785975BC72C3DE71E05A2BF +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.62/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.62/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..33b9e35e700d --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.62/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.62 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.61...v1.0.62' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.62 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.62/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.62/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..24a1b1eedfba --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.62/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.62 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.62/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.62/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..0e20b430b78a --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.62/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.62 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From ee362935b9d267a0b97098ae1ce2d22fd7f0d243 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:44:40 +0800 Subject: [PATCH 025/436] Move HaiYing.OfficeCLI 1.0.63 to iOfficeAI.OfficeCLI 1.0.63 (#419236) --- .../1.0.63/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.63/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.63/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.63/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.63/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.63/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.63/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.63/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..834f405f9e3f --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.63/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.63 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-29 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.63/officecli-win-x64.exe + InstallerSha256: B687396B3A44C6A6AAB7A1A3D9D2325E38D9E7D7F8BF632C2EB2D2B8A9C4872C +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.63/officecli-win-arm64.exe + InstallerSha256: BE3B49BB7AA33DE968B3160AF28CC0D6F9D1877A500E6F856FB1B2F77E5A3FD5 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.63/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.63/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..148271d959e7 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.63/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.63 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.62...v1.0.63' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.63 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.63/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.63/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..7e04776d82c5 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.63/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.63 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.63/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.63/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..2a03158d0475 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.63/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.63 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 8ae54492db33530ddfe427f9c119c0838c1a4a81 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:44:57 +0800 Subject: [PATCH 026/436] Move HaiYing.OfficeCLI 1.0.64 to iOfficeAI.OfficeCLI 1.0.64 (#419238) --- .../1.0.64/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 77 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 ++++++++++++ .../OfficeCLI/1.0.64/iOfficeAI.OfficeCLI.yaml | 8 ++ 4 files changed, 152 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.64/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.64/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.64/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.64/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.64/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.64/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..a029be23ae34 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.64/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.64 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-29 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.64/officecli-win-x64.exe + InstallerSha256: B535D04ABFCF84B054FCB53EC67539CEF45CCD442F6E1606C8D4CEBCE5A9B1A2 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.64/officecli-win-arm64.exe + InstallerSha256: 596AC740927EA99232CF439F15371A4A2C83DD8411349387455967596893AD76 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.64/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.64/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..b5cccb5c5f08 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.64/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,77 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.64 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: |- + What's Changed + - refactor(skills): xlsx/docx/pptx v2 — philosophy-first rewrite by @IceyLiu in https://github.com/iOfficeAI/OfficeCLI/pull/84 + - refactor(skills): v2 round 2 — academic-paper / pitch-deck v2 + triplet lessons by @IceyLiu in https://github.com/iOfficeAI/OfficeCLI/pull/85 + - docs(skills): dedupe version pin in academic-paper and docx SKILL.md by @goworm in https://github.com/iOfficeAI/OfficeCLI/pull/86 + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.63...v1.0.64 +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.64 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.64/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.64/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..cdb074cac465 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.64/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.64 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.64/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.64/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..0af5e24e6fbf --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.64/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.64 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 7f13ed3d46d2ff7662255d81e57afe684d5bfdec Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:45:12 +0800 Subject: [PATCH 027/436] Move HaiYing.OfficeCLI 1.0.66 to iOfficeAI.OfficeCLI 1.0.66 (#419242) --- .../1.0.66/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 75 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 ++++++++++++ .../OfficeCLI/1.0.66/iOfficeAI.OfficeCLI.yaml | 8 ++ 4 files changed, 150 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.66/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.66/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.66/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.66/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.66/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.66/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..0f50d25d75e3 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.66/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.66 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.66/officecli-win-x64.exe + InstallerSha256: 3AFAFD29C6CF1B2748CCC4C321E46006118056D72EC4FA8A66C2BB340C7E4C99 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.66/officecli-win-arm64.exe + InstallerSha256: 40DBB232A2AFA7A60F451D2CEC586C237D7FE6D30F356993D5E402E5A7BA1F5F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.66/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.66/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..1a95c1fca212 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.66/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,75 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.66 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: |- + What's Changed + - docs(skills): unify BEFORE YOU START install guidance + add manual-install fallback by @IceyLiu in https://github.com/iOfficeAI/OfficeCLI/pull/88 + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.65...v1.0.66 +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.66 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.66/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.66/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..7a2a831a9632 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.66/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.66 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.66/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.66/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..10f4da52e108 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.66/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.66 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 13a613eb1acbfaaaf25717b48656663ad299b677 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:45:30 +0800 Subject: [PATCH 028/436] Move HaiYing.OfficeCLI 1.0.67 to iOfficeAI.OfficeCLI 1.0.67 (#419244) --- .../1.0.67/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.67/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.67/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.67/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.67/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.67/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.67/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.67/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..dff280a0f30a --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.67/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.67 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.67/officecli-win-x64.exe + InstallerSha256: CACE173352A96A8A5C86E2A741F3A813F0FA92C144A8B1C71A95CA49847383DF +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.67/officecli-win-arm64.exe + InstallerSha256: FB3ED140CFC58DAB138FD2165D5C7DB521488105F49F1EBD68D977D3D2846BE3 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.67/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.67/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..4e77f5aeef0a --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.67/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.67 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.66...v1.0.67' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.67 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.67/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.67/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..f24e3dda2e67 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.67/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.67 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.67/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.67/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..076aa0cffe12 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.67/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.67 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From a2675dd718b600acc6f91a060f301c9fcdab9d04 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:45:48 +0800 Subject: [PATCH 029/436] Move HaiYing.OfficeCLI 1.0.68 to iOfficeAI.OfficeCLI 1.0.68 (#419247) --- .../1.0.68/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 76 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 ++++++++++++ .../OfficeCLI/1.0.68/iOfficeAI.OfficeCLI.yaml | 8 ++ 4 files changed, 151 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.68/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.68/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.68/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.68/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.68/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.68/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..1fbd6da80755 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.68/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.68 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-01 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.68/officecli-win-x64.exe + InstallerSha256: E2CCEB5D7F01F770527C5449F04ED4622D2F1C4F3377839BBD792EB7EC50A382 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.68/officecli-win-arm64.exe + InstallerSha256: C8F8FF171EED70F158E23C5A8F2120BDA76A195B1BC71E7C4F8C08B53536CABC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.68/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.68/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..4fc3aca8fed6 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.68/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,76 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.68 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: |- + What's Changed + - refactor(skills): v2 R3 unified polish — 9 skills + word-form by @IceyLiu in https://github.com/iOfficeAI/OfficeCLI/pull/93 + - docs(docx): add pointer to officecli-word-form for fillable forms by @goworm in https://github.com/iOfficeAI/OfficeCLI/pull/94 + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.67...v1.0.68 +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.68 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.68/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.68/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..5bd5f41c3e62 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.68/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.68 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.68/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.68/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..7fa4806b377e --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.68/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.68 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 671f5b644ae803c5926b8d7c9d2fe245406f08ea Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:46:03 +0800 Subject: [PATCH 030/436] Move HaiYing.OfficeCLI 1.0.69 to iOfficeAI.OfficeCLI 1.0.69 (#419249) --- .../1.0.69/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 75 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 ++++++++++++ .../OfficeCLI/1.0.69/iOfficeAI.OfficeCLI.yaml | 8 ++ 4 files changed, 150 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.69/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.69/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.69/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.69/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.69/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.69/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..20ab4d2bbcd1 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.69/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.69 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-02 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.69/officecli-win-x64.exe + InstallerSha256: 9F4ACEBD4B4845943B1AEFD2F4C5F44C5B3AA784A1A7CDA3D8D52F31AAC5166A +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.69/officecli-win-arm64.exe + InstallerSha256: 0248BABB018EB7A721F582D6F05333143361E5A490EDFBF278358829523A9335 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.69/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.69/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..d8d824b38277 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.69/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,75 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.69 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: |- + What's Changed + - refactor(skills): restore design aesthetic depth + P1 hardcode sweep by @IceyLiu in https://github.com/iOfficeAI/OfficeCLI/pull/95 + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.68...v1.0.69 +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.69 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.69/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.69/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..3eaedf59f0da --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.69/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.69 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.69/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.69/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..f9c3f0dc5f51 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.69/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.69 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From d12ccbce649e71079dfbb4a1258693ae3775679d Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:46:23 +0800 Subject: [PATCH 031/436] Move HaiYing.OfficeCLI 1.0.71 to iOfficeAI.OfficeCLI 1.0.71 (#419254) --- .../1.0.71/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.71/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.71/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.71/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.71/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.71/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.71/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.71/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..4baffa81af60 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.71/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.71 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-04 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.71/officecli-win-x64.exe + InstallerSha256: CD0CBAAA1F4771B4FF718C265B74F982FB1274111F41A2D224B97F4D2BE8E7FD +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.71/officecli-win-arm64.exe + InstallerSha256: D7138A1E68C136D72CC0921C203859B21B42C144D84F7248A1FB1C2320E7CA60 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.71/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.71/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..8f00a1d01910 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.71/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.71 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.70...v1.0.71' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.71 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.71/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.71/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..5e8e70346a81 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.71/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.71 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.71/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.71/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..68cf0fdbce17 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.71/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.71 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From db84e98d2cbdfdee938618ef31a0b0231c3fd663 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:46:39 +0800 Subject: [PATCH 032/436] Move HaiYing.OfficeCLI 1.0.72 to iOfficeAI.OfficeCLI 1.0.72 (#419258) --- .../1.0.72/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.72/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.72/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.72/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.72/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.72/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.72/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.72/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..a71731b9c8f2 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.72/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.72 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-04 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.72/officecli-win-x64.exe + InstallerSha256: F019E9CB9383C6C46F6F34F3F95A35C2A6E0ADC7D8E06D32038E4EF13D581C25 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.72/officecli-win-arm64.exe + InstallerSha256: 4B15C2BD404E1A1B566D5C24EA75CE0514EB6A9571A4D42F0AB30C60CC71244D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.72/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.72/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..c33ba01ad0f6 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.72/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.72 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.71...v1.0.72' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.72 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.72/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.72/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..e020d9833d94 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.72/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.72 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.72/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.72/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..7d20bef86c19 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.72/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.72 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From c3358014c4e96e96d939de25db3989a4d50c3657 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:47:01 +0800 Subject: [PATCH 033/436] Move HaiYing.AionUi 1.5.2 to iOfficeAI.AionUi 1.5.2 (#417894) --- .../1.5.2/iOfficeAI.AionUi.installer.yaml | 38 +++++++++++++++++++ .../1.5.2/iOfficeAI.AionUi.locale.en-US.yaml | 37 ++++++++++++++++++ .../1.5.2/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++++++ .../AionUi/1.5.2/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 102 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.5.2/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.5.2/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.5.2/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.5.2/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.5.2/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.5.2/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..47d524c46eb0 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.5.2/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.5.2 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2025-11-11 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.5.2/AionUi-1.5.2-win-x64.exe + InstallerSha256: 2212EF7A0E432EA73A1E619CEF9895813916E056178A67897253B7E760CD9916 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.5.2/AionUi-1.5.2-win-x64.exe + InstallerSha256: 2212EF7A0E432EA73A1E619CEF9895813916E056178A67897253B7E760CD9916 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.5.2/AionUi-1.5.2-win-arm64.exe + InstallerSha256: B868AC5F0E063EB07071DA2FBD9789B40DAE117C3EA252DF4E40B573AD16D902 + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.5.2/AionUi-1.5.2-win-arm64.exe + InstallerSha256: B868AC5F0E063EB07071DA2FBD9789B40DAE117C3EA252DF4E40B573AD16D902 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.5.2/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.5.2/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..3c3b47d03580 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.5.2/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.5.2 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2025 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - Fix/windows white screen by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/303 + - Fix/windows white screen by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/307 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.5.1...v1.5.2 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.5.2 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.5.2/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.5.2/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..01eeee303e6c --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.5.2/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.5.2 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.5.2/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.5.2/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..3107fc29464b --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.5.2/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.5.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From a81128d6f3022c40d770ca02a93553a61e5124b4 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:47:22 +0800 Subject: [PATCH 034/436] Move HaiYing.AionUi 1.5.5 to iOfficeAI.AionUi 1.5.5 (#417899) --- .../1.5.5/iOfficeAI.AionUi.installer.yaml | 38 +++++++++++++++++++ .../1.5.5/iOfficeAI.AionUi.locale.en-US.yaml | 36 ++++++++++++++++++ .../1.5.5/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++++++ .../AionUi/1.5.5/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 101 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.5.5/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.5.5/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.5.5/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.5.5/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.5.5/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.5.5/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..b866bc7374fe --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.5.5/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.5.5 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2025-11-21 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.5.5/AionUi-1.5.5-win-x64.exe + InstallerSha256: B225F373F49543C1656ED721726B42638415ACF13E83BCEF85B593453CAC9795 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.5.5/AionUi-1.5.5-win-x64.exe + InstallerSha256: B225F373F49543C1656ED721726B42638415ACF13E83BCEF85B593453CAC9795 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.5.5/AionUi-1.5.5-win-arm64.exe + InstallerSha256: 5387D4DA8C0512D2D6BE541179DCC8181A5D3FA18D8DAAA45DB2F23538581AEB + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.5.5/AionUi-1.5.5-win-arm64.exe + InstallerSha256: 5387D4DA8C0512D2D6BE541179DCC8181A5D3FA18D8DAAA45DB2F23538581AEB + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.5.5/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.5.5/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..91fc339bda5e --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.5.5/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.5.5 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2025 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - Fix console errors including CSP security, React warnings, and library compatibility issues. by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/329 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.5.4...v1.5.5 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.5.5 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.5.5/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.5.5/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..8d7b9b332314 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.5.5/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.5.5 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.5.5/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.5.5/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..1f55ca154274 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.5.5/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.5.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 956d0cb8663a1b52669ab5bd7161299175c34d9f Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:47:37 +0800 Subject: [PATCH 035/436] Move HaiYing.AionUi 1.6.0 to iOfficeAI.AionUi 1.6.0 (#417901) --- .../1.6.0/iOfficeAI.AionUi.installer.yaml | 38 +++++++++++ .../1.6.0/iOfficeAI.AionUi.locale.en-US.yaml | 66 +++++++++++++++++++ .../1.6.0/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++ .../AionUi/1.6.0/iOfficeAI.AionUi.yaml | 8 +++ 4 files changed, 131 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.0/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.0/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.0/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.0/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.6.0/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.6.0/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..6e1cc6bbeb55 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.0/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.0 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2025-11-27 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.0/AionUi-1.6.0-win-x64.exe + InstallerSha256: EDE76198E6A48A723BF61FB3A13B0B062FCE7778F1C76F9D28145DEBA71FFD36 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.0/AionUi-1.6.0-win-x64.exe + InstallerSha256: EDE76198E6A48A723BF61FB3A13B0B062FCE7778F1C76F9D28145DEBA71FFD36 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.0/AionUi-1.6.0-win-arm64.exe + InstallerSha256: 008D7FD938F08F45420EC27D7D4F8FAB4659E1848D60DC06B2118B3B098F0069 + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.0/AionUi-1.6.0-win-arm64.exe + InstallerSha256: 008D7FD938F08F45420EC27D7D4F8FAB4659E1848D60DC06B2118B3B098F0069 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.6.0/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.6.0/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..da837c71f715 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.0/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,66 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.0 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2025 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + AionUi v1.6.0 Release Notes + 🎉 Major Updates + 📄 Multi-Format Document Preview & Editing System + Editable Formats: + - 📝 Markdown (.md) - Live preview, side-by-side editing, split-screen mode, synchronized scrolling, source/preview toggle, relative image path support, HTML tag rendering, typing animation for streaming updates + - 🌐 HTML (.html, .htm) - Monaco-based code editor, syntax highlighting, live preview, inspect mode (hover to highlight, right-click to copy DOM), split-screen editing, synchronized scrolling, automatic base tag injection + - 💻 Code Files (various programming languages) - Syntax highlighting, line numbers, code folding, editable mode, read-only preview mode + Preview-Only Formats: + - 📊 Excel (.xlsx, .xls) - Spreadsheet preview + - 📑 Word (.docx, .doc) - Document preview + - 📊 PowerPoint (.pptx, .ppt) - Presentation preview + - 📄 PDF (.pdf) - Native browser PDF viewer + - 🖼️ Images (.png, .jpg, .jpeg, .gif, .svg, .webp) - Image viewer + - 🔀 Diff Files - Code diff comparison preview + Universal Preview Features: + - Multi-tab Interface: View multiple documents simultaneously with easy switching + - Tab Context Menu: Support for closing left/right/others/all tabs + - Unsaved Changes Indicator: Clearly identifies document modification status + - Download Functionality: Unified download support for all formats + - "Open in System" Button: Quickly open documents with system default applications + ⏱️ Version History & Snapshots + - Manual snapshot saving for document states + - View and restore previous versions + 🎨 UI/UX & Technical Improvements + User Experience Enhancements + - Custom Titlebar: macOS-style, supports drag-to-move + - Layout Optimization: Resizable split-panel layout, responsive design + - Text Selection Toolbar: Quick actions + Technical Optimizations + - File watching service (auto-reload on external modifications) + - Window controls migrated to bridge system + - Code refactoring: ChatWorkspace reduced from 1300+ lines to 550 lines + - Preview module refactoring: PreviewPanel reduced from 1020 lines to 561 lines +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.6.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.6.0/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.6.0/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..58c3c7f81883 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.0/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.0 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.6.0/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.6.0/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..62d474560d86 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.0/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 0cc472dff8b8eec690c0b3e363aed1489980a9e9 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:48:01 +0800 Subject: [PATCH 036/436] Move HaiYing.AionUi 1.6.10 to iOfficeAI.AionUi 1.6.10 (#417907) --- .../1.6.10/iOfficeAI.AionUi.installer.yaml | 38 +++++++++++++++++++ .../1.6.10/iOfficeAI.AionUi.locale.en-US.yaml | 36 ++++++++++++++++++ .../1.6.10/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++++++ .../AionUi/1.6.10/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 101 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.10/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.10/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.10/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.10/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.6.10/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.6.10/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..00214908ca3d --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.10/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.10 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-01-09 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.10/AionUi-1.6.10-win-x64.exe + InstallerSha256: 3282E4577A4FADCBD9EB5EEE95CBE0EC30C422452676D9C807A424A1899448F3 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.10/AionUi-1.6.10-win-x64.exe + InstallerSha256: 3282E4577A4FADCBD9EB5EEE95CBE0EC30C422452676D9C807A424A1899448F3 + InstallerSwitches: + Custom: /allusers +# - Architecture: arm64 +# Scope: user +# InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.10/AionUi-1.6.10-win-arm64.exe +# InstallerSha256: 7F04C4D1855FFAB2BA70176F9A71188248BD2BD8FD3A57B2E6E1D36A4781B7EA +# InstallerSwitches: +# Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.10/AionUi-1.6.10-win-arm64.exe + InstallerSha256: 7F04C4D1855FFAB2BA70176F9A71188248BD2BD8FD3A57B2E6E1D36A4781B7EA + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.6.10/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.6.10/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..6b5e58af657f --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.10/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.10 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - Introduces workspace-based conversation grouping by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/419 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.6.9...v1.6.10 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.6.10 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.6.10/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.6.10/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..2f7dfd8add83 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.10/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.10 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.6.10/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.6.10/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..9bb15b77e16e --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.10/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From c6f1992ccd306d35da80bcad02d57ef5f639e61e Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:48:22 +0800 Subject: [PATCH 037/436] Move HaiYing.AionUi 1.6.2 to iOfficeAI.AionUi 1.6.2 (#417909) --- .../1.6.2/iOfficeAI.AionUi.installer.yaml | 38 ++++++++++++++++++ .../1.6.2/iOfficeAI.AionUi.locale.en-US.yaml | 39 +++++++++++++++++++ .../1.6.2/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 +++++++++ .../AionUi/1.6.2/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 104 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.2/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.2/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.2/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.2/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.6.2/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.6.2/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..5c1ad970baa9 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.2/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.2 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2025-12-10 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.2/AionUi-1.6.2-win-x64.exe + InstallerSha256: C375C2D9B8FBFA830B9E782981935421A4D93CAC4C99660F9F68848332206DEC + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.2/AionUi-1.6.2-win-x64.exe + InstallerSha256: C375C2D9B8FBFA830B9E782981935421A4D93CAC4C99660F9F68848332206DEC + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.2/AionUi-1.6.2-win-arm64.exe + InstallerSha256: 329873ADE82CF4440E67F6D126BF55245FC7F373AA2B837165BD23B9A0D6389A + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.2/AionUi-1.6.2-win-arm64.exe + InstallerSha256: 329873ADE82CF4440E67F6D126BF55245FC7F373AA2B837165BD23B9A0D6389A + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.6.2/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.6.2/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..2dcb28dcbf69 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.2/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.2 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2025 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - feat: Add custom ACP agent support by @codefromthecrypt in https://github.com/iOfficeAI/AionUi/pull/361 + - This PR introduces significant enhancements to the preview panel, workspace functionality, and overall UI/UX improvements. by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/365 + New Contributors + - @codefromthecrypt made their first contribution in https://github.com/iOfficeAI/AionUi/pull/361 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.6.1...v1.6.2 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.6.2 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.6.2/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.6.2/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..f7bd822e79f3 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.2/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.2 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.6.2/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.6.2/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..eb245675d5db --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.2/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From ab75f01b8b7be58ebb458d86d70da2ae2956facb Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Tue, 18 Aug 2026 11:48:35 -0700 Subject: [PATCH 038/436] Automatic Waiver Addition for PR 410350 (#419973) --- manifests/m/Microsoft/Outlook/.validation | 1 + 1 file changed, 1 insertion(+) create mode 100644 manifests/m/Microsoft/Outlook/.validation diff --git a/manifests/m/Microsoft/Outlook/.validation b/manifests/m/Microsoft/Outlook/.validation new file mode 100644 index 000000000000..908da5b10736 --- /dev/null +++ b/manifests/m/Microsoft/Outlook/.validation @@ -0,0 +1 @@ +{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"ab9e6791-1a60-4216-b42c-0ee6ac03073e","TestPlan":"Validation-Domain","PackagePath":"manifests/m/Microsoft/Outlook/1.2026.720.100","CommitId":"68848bd692a9e6679004f839891165f5dcfce4d9"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file From 6623969fe249fa049e95435149de82cd7b546144 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:48:47 +0800 Subject: [PATCH 039/436] Move HaiYing.AionUi 1.6.3 to iOfficeAI.AionUi 1.6.3 (#417911) --- .../1.6.3/iOfficeAI.AionUi.installer.yaml | 38 +++++++++++++++++++ .../1.6.3/iOfficeAI.AionUi.locale.en-US.yaml | 36 ++++++++++++++++++ .../1.6.3/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++++++ .../AionUi/1.6.3/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 101 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.3/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.3/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.3/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.3/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.6.3/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.6.3/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..7ea7a4a91626 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.3/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.3 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2025-12-11 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.3/AionUi-1.6.3-win-x64.exe + InstallerSha256: 4CA6D79A5C8E5E41D777D35E37C62D2AFFDDD3E0AE0C1CB72CEBA633212FCDB8 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.3/AionUi-1.6.3-win-x64.exe + InstallerSha256: 4CA6D79A5C8E5E41D777D35E37C62D2AFFDDD3E0AE0C1CB72CEBA633212FCDB8 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.3/AionUi-1.6.3-win-arm64.exe + InstallerSha256: 904408AC32D9D055379BAEFAC5B49E8E80B43D442294FC1AD8C4AA7D70CF6910 + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.3/AionUi-1.6.3-win-arm64.exe + InstallerSha256: 904408AC32D9D055379BAEFAC5B49E8E80B43D442294FC1AD8C4AA7D70CF6910 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.6.3/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.6.3/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..4da0e0b4f730 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.3/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.3 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2025 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - Feat/preview by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/368 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.6.2...v1.6.3 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.6.3 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.6.3/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.6.3/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..9cc041b53c3d --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.3/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.3 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.6.3/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.6.3/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..067a1f909248 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.3/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From c981a3a7a40a966d56c2e627a4c243b9289bf5e7 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:49:02 +0800 Subject: [PATCH 040/436] Move HaiYing.AionUi 1.6.4 to iOfficeAI.AionUi 1.6.4 (#417913) --- .../1.6.4/iOfficeAI.AionUi.installer.yaml | 38 +++++++++++++++++++ .../1.6.4/iOfficeAI.AionUi.locale.en-US.yaml | 37 ++++++++++++++++++ .../1.6.4/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++++++ .../AionUi/1.6.4/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 102 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.4/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.4/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.4/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.4/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.6.4/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.6.4/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..61c1f2fe50f5 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.4/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,38 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.4 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2025-12-12 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.4/AionUi-1.6.4-win-x64.exe + InstallerSha256: 78515A5324CED2D57CBD236F54D4B2E54FC103A639A19BAEA079D2BC065A1DB1 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.4/AionUi-1.6.4-win-x64.exe + InstallerSha256: 78515A5324CED2D57CBD236F54D4B2E54FC103A639A19BAEA079D2BC065A1DB1 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.4/AionUi-1.6.4-win-arm64.exe + InstallerSha256: 87B1A5151D52F4BD50B8284007F770EE0AA55E892CBD8694067FB0C737EB9E74 + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.4/AionUi-1.6.4-win-arm64.exe + InstallerSha256: 87B1A5151D52F4BD50B8284007F770EE0AA55E892CBD8694067FB0C737EB9E74 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.6.4/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.6.4/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..89bd250f9314 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.4/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.4 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2025 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - Feat/mobile experience optimization by @xavierliang in https://github.com/iOfficeAI/AionUi/pull/369 + - Feat/preview by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/371 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.6.3...v1.6.4 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.6.4 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.6.4/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.6.4/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..0dbb7b3d1e45 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.4/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.4 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.6.4/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.6.4/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..cbe9aa816798 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.4/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 9cbe038b77a0a2608b47bd61f3f5903eb76dd5d4 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:49:18 +0800 Subject: [PATCH 041/436] Move HaiYing.AionUi 1.6.5 to iOfficeAI.AionUi 1.6.5 (#417915) --- .../1.6.5/iOfficeAI.AionUi.installer.yaml | 38 ++++++++++++++++++ .../1.6.5/iOfficeAI.AionUi.locale.en-US.yaml | 39 +++++++++++++++++++ .../1.6.5/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 +++++++++ .../AionUi/1.6.5/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 104 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.5/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.5/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.5/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.5/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.6.5/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.6.5/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..eec85970ddd0 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.5/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.5 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2025-12-17 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.5/AionUi-1.6.5-win-x64.exe + InstallerSha256: 6C9096C8FF5F63D2CB43DE12C78110A40871D42031F6818C9B61AF841FC3B39C + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.5/AionUi-1.6.5-win-x64.exe + InstallerSha256: 6C9096C8FF5F63D2CB43DE12C78110A40871D42031F6818C9B61AF841FC3B39C + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.5/AionUi-1.6.5-win-arm64.exe + InstallerSha256: 8CBDC88C851389A86DD329EC3B0C3B26984B86F760F2652B30D5BB2F4A756392 + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.5/AionUi-1.6.5-win-arm64.exe + InstallerSha256: 8CBDC88C851389A86DD329EC3B0C3B26984B86F760F2652B30D5BB2F4A756392 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.6.5/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.6.5/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..9482b01af4ca --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.5/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.5 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2025 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - feat(gemini): Add context usage indicator and token tracking by @Castor6 in https://github.com/iOfficeAI/AionUi/pull/376 + - Refactor/workspace directory by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/379 + New Contributors + - @Castor6 made their first contribution in https://github.com/iOfficeAI/AionUi/pull/376 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.6.4...v1.6.5 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.6.5 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.6.5/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.6.5/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..6d330c0e91ca --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.5/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.5 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.6.5/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.6.5/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..cf965ffb52b5 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.5/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 85d434a053cccad9fe1800ec4536b937327bcb14 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:49:32 +0800 Subject: [PATCH 042/436] Move HaiYing.AionUi 1.6.6 to iOfficeAI.AionUi 1.6.6 (#417917) --- .../1.6.6/iOfficeAI.AionUi.installer.yaml | 38 +++++++++++++++++++ .../1.6.6/iOfficeAI.AionUi.locale.en-US.yaml | 38 +++++++++++++++++++ .../1.6.6/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++++++ .../AionUi/1.6.6/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 103 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.6/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.6/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.6/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.6.6/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.6.6/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.6.6/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..39a987666260 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.6/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.6 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2025-12-19 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.6/AionUi-1.6.6-win-x64.exe + InstallerSha256: 8B36E87DE48E44CA8A2C8A8688D9649D6673DBD0D34BAAF9A1045A2B797800C1 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.6/AionUi-1.6.6-win-x64.exe + InstallerSha256: 8B36E87DE48E44CA8A2C8A8688D9649D6673DBD0D34BAAF9A1045A2B797800C1 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.6/AionUi-1.6.6-win-arm64.exe + InstallerSha256: AFBD5643A02AD0795EB9CD2A9C53FC36B3E9F13B5AAB6F2976B1EB04C21A160F + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.6.6/AionUi-1.6.6-win-arm64.exe + InstallerSha256: AFBD5643A02AD0795EB9CD2A9C53FC36B3E9F13B5AAB6F2976B1EB04C21A160F + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.6.6/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.6.6/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..cb2aea711c9d --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.6/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.6 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2025 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - docs: Optimize README structure and content by @ringringlin in https://github.com/iOfficeAI/AionUi/pull/380 + - Refactor/workspace directory by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/381 + - fix: update package-lock.json by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/382 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.6.5...v1.6.6 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.6.6 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.6.6/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.6.6/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..7164cb6f51e2 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.6/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.6 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.6.6/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.6.6/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..621257823631 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.6.6/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.6.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 25df640bca6e0e3dc2040360efc0ac281b40a486 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:49:48 +0800 Subject: [PATCH 043/436] Move HaiYing.AionUi 1.7.0 to iOfficeAI.AionUi 1.7.0 (#417926) --- .../1.7.0/iOfficeAI.AionUi.installer.yaml | 32 +++++++++++++++ .../1.7.0/iOfficeAI.AionUi.locale.en-US.yaml | 40 +++++++++++++++++++ .../1.7.0/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 +++++++++ .../AionUi/1.7.0/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 99 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.7.0/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.7.0/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.7.0/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.7.0/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.7.0/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.7.0/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..67f1dbb2d08e --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.7.0/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.7.0 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-01-15 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.7.0/AionUi-1.7.0-win-x64.exe + InstallerSha256: 21E7B5B668C820B3032832A2B75EC8B537A5BEE6D2E5F09E9C8072E0DD0AB766 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.7.0/AionUi-1.7.0-win-x64.exe + InstallerSha256: 21E7B5B668C820B3032832A2B75EC8B537A5BEE6D2E5F09E9C8072E0DD0AB766 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.7.0/AionUi-1.7.0-win-arm64.exe + InstallerSha256: B4C1259CF293E69798A71E3D286EE6F4A47EA0DDBF8BE8DEE54DD2015E41E6F1 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.7.0/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.7.0/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..d67ce6a1ebce --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.7.0/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.7.0 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - docs: Update branding to emphasize Cowork concept across all README v… by @ringringlin in https://github.com/iOfficeAI/AionUi/pull/422 + - docs: Increase download button size across all README versions by @ringringlin in https://github.com/iOfficeAI/AionUi/pull/424 + - Feat/add korean support by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/421 + - docs: enhance Cowork positioning and add comparison FAQ by @ringringlin in https://github.com/iOfficeAI/AionUi/pull/430 + - Feat/add built in assistants by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/429 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.6.10...v1.7.0 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.7.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.7.0/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.7.0/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..4a41842b3cf9 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.7.0/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.7.0 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.7.0/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.7.0/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..a7b4cc1e98e1 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.7.0/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.7.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From d57ac1dccb668ffa2b9d4ae514748b4ada757358 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:50:07 +0800 Subject: [PATCH 044/436] Move HaiYing.AionUi 1.7.4 to iOfficeAI.AionUi 1.7.4 (#417942) --- .../1.7.4/iOfficeAI.AionUi.installer.yaml | 32 +++++++++++++++ .../1.7.4/iOfficeAI.AionUi.locale.en-US.yaml | 41 +++++++++++++++++++ .../1.7.4/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 +++++++++ .../AionUi/1.7.4/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 100 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.7.4/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.7.4/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.7.4/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.7.4/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.7.4/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.7.4/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..ad4054fbf57f --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.7.4/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.7.4 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-01-23 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.7.4/AionUi-1.7.4-win-x64.exe + InstallerSha256: 427419227D8883F0F24AF0EA46FC6E246EC691EBBF8F7580EA80A2ACEA93EAD5 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.7.4/AionUi-1.7.4-win-x64.exe + InstallerSha256: 427419227D8883F0F24AF0EA46FC6E246EC691EBBF8F7580EA80A2ACEA93EAD5 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.7.4/AionUi-1.7.4-win-arm64.exe + InstallerSha256: 730D3A6A87BF7389C4FED3946A47865528D342B79178417B692ADB07D40DA1AA + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.7.4/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.7.4/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..b968dbe537ac --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.7.4/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.7.4 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - Add Linuxdo and Packyapi introduction by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/490 + - docs: Update Thanks Section by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/491 + - feat: improve assistant selection UI and xiaohongshu automation by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/484 + - feat: add YouTube video reviews and update banner image by @ringringlin in https://github.com/iOfficeAI/AionUi/pull/493 + - Fix/tsconfig types error by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/494 + - fix: remove tar override to fix electron-builder ESM compatibility by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/497 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.7.3...v1.7.4 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.7.4 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.7.4/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.7.4/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..9f7b16519235 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.7.4/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.7.4 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.7.4/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.7.4/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..e349c28206ae --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.7.4/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.7.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 97f47fe7a2d951ff737b3d290b90701c1458f1a7 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:50:25 +0800 Subject: [PATCH 045/436] Move HaiYing.AionUi 1.8.0 to iOfficeAI.AionUi 1.8.0 (#417952) --- .../1.8.0/iOfficeAI.AionUi.installer.yaml | 32 ++++++++++++++++ .../1.8.0/iOfficeAI.AionUi.locale.en-US.yaml | 38 +++++++++++++++++++ .../1.8.0/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++++++ .../AionUi/1.8.0/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 97 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.0/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.0/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.0/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.0/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.8.0/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.8.0/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..349e7080559e --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.0/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.0 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-02-01 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.0/AionUi-1.8.0-win-x64.exe + InstallerSha256: 16D8BCB2733B08F7E0385D6CA3C427B44104BE7C5619567D25D9395DA8D70E4D + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.0/AionUi-1.8.0-win-x64.exe + InstallerSha256: 16D8BCB2733B08F7E0385D6CA3C427B44104BE7C5619567D25D9395DA8D70E4D + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.0/AionUi-1.8.0-win-arm64.exe + InstallerSha256: A57F0D2795AEA44B62E79EDFA80138C894BF551FA9B702C5CB8F264513A1CDEB + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.0/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.8.0/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..186e00a9ef2c --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.0/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.0 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - docs: update readme by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/624 + - feat(cron): implement scheduled task system for AI agents by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/630 + - feat(cron): implement scheduled task system for AI agents by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/582 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.7.9...v1.8.0 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.8.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.0/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.8.0/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..91dd6b128c0d --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.0/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.0 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.0/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.8.0/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..cf12c6935656 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.0/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 3fa44a6535cf2b11e2babedfdc8476f4eb96d221 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:50:40 +0800 Subject: [PATCH 046/436] Move HaiYing.AionUi 1.8.12 to iOfficeAI.AionUi 1.8.12 (#417960) --- .../1.8.12/iOfficeAI.AionUi.installer.yaml | 32 ++++++++++++++++ .../1.8.12/iOfficeAI.AionUi.locale.en-US.yaml | 37 +++++++++++++++++++ .../1.8.12/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++++++ .../AionUi/1.8.12/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 96 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.12/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.12/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.12/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.12/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.8.12/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.8.12/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..d020bc150e94 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.12/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.12 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-02-16 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.12/AionUi-1.8.12-win-x64.exe + InstallerSha256: E601A90C2C867CB58595F69C45C644E2F55F7AD671BAF6CE4A87F535CB9FC136 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.12/AionUi-1.8.12-win-x64.exe + InstallerSha256: E601A90C2C867CB58595F69C45C644E2F55F7AD671BAF6CE4A87F535CB9FC136 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.12/AionUi-1.8.12-win-arm64.exe + InstallerSha256: D1FC2F7D38486F005E7EE4385F90E407D3CEB9D8DF3962BB3A4D8DF383E808CA + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.12/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.8.12/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..e80fe640778c --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.12/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.12 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - Docs Update by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/886 + - Feat roleplay by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/887 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.8.11...v1.8.12 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.8.12 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.12/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.8.12/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..bbca80ea6dd5 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.12/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.12 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.12/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.8.12/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..17781d24dc90 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.12/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.12 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 7a9d7ee254c22aa878ef57836355369913fd7161 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:51:00 +0800 Subject: [PATCH 047/436] Move HaiYing.AionUi 1.8.14 to iOfficeAI.AionUi 1.8.14 (#417964) --- .../1.8.14/iOfficeAI.AionUi.installer.yaml | 32 ++++++++++++++ .../1.8.14/iOfficeAI.AionUi.locale.en-US.yaml | 42 +++++++++++++++++++ .../1.8.14/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 +++++++++ .../AionUi/1.8.14/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 101 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.14/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.14/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.14/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.14/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.8.14/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.8.14/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..0c9b91af40d3 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.14/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.14 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-02-19 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.14/AionUi-1.8.14-win-x64.exe + InstallerSha256: 269493D8ADD2D8F50CC4E208E99BDB6FCCEDD65DFA2D0F418F6151BE58221D42 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.14/AionUi-1.8.14-win-x64.exe + InstallerSha256: 269493D8ADD2D8F50CC4E208E99BDB6FCCEDD65DFA2D0F418F6151BE58221D42 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.14/AionUi-1.8.14-win-arm64.exe + InstallerSha256: 2CE9AD345F2B2A08F03E45C87EFB3C8BCE9907D5BC7C4AEE572E31A9C9B62AE3 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.14/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.8.14/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..24cf5838ac02 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.14/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.14 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - docs: Unify the translations of all languages to be consistent with E… by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/903 + - fix(claude): rename default agent mode label to 'Default' by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/904 + - fix(webui): prevent white screen when navigating to parent directory by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/862 + - fix(acp): terminate Windows ACP process tree on disconnect by @godnight10061 in https://github.com/iOfficeAI/AionUi/pull/894 + - refactor(acp): async disconnect with graceful termination on Windows by @piorpua in https://github.com/iOfficeAI/AionUi/pull/908 + - fix(mcp): support HTTP/SSE/Streamable HTTP transport across all agents by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/907 + - chore: bump version to 1.8.14 by @piorpua in https://github.com/iOfficeAI/AionUi/pull/909 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.8.13...v1.8.14 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.8.14 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.14/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.8.14/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..a2966b0a8267 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.14/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.14 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.14/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.8.14/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..3d016ea3a01b --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.14/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.14 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 42da349dd91114e515e6bc2f1ac20d12d0e15ac8 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:51:21 +0800 Subject: [PATCH 048/436] Move HaiYing.AionUi 1.8.17 to iOfficeAI.AionUi 1.8.17 (#417970) --- .../1.8.17/iOfficeAI.AionUi.installer.yaml | 32 ++++++++++++ .../1.8.17/iOfficeAI.AionUi.locale.en-US.yaml | 50 +++++++++++++++++++ .../1.8.17/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 +++++++ .../AionUi/1.8.17/iOfficeAI.AionUi.yaml | 8 +++ 4 files changed, 109 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.17/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.17/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.17/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.17/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.8.17/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.8.17/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..a72bad350c0c --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.17/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.17 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-02-24 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.17/AionUi-1.8.17-win-x64.exe + InstallerSha256: DC23F0BD482EE31FBAAC3B6EB55419319428751AC2179FFA01EA2710EAB70EC0 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.17/AionUi-1.8.17-win-x64.exe + InstallerSha256: DC23F0BD482EE31FBAAC3B6EB55419319428751AC2179FFA01EA2710EAB70EC0 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.17/AionUi-1.8.17-win-arm64.exe + InstallerSha256: 86C2157A91D0B68A2C3DD339A54DB79FF7991D8FF32C3E17531E94E6D0076B61 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.17/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.8.17/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..8ac1430d4756 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.17/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,50 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.17 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - feat(guid): agent bar select pop, spacing, assistant 1px border, add-assistant circle hover, quick actions safe area by @ringringlin in https://github.com/iOfficeAI/AionUi/pull/942 + - chore(ci): add manual build workflow for targeted platform builds by @piorpua in https://github.com/iOfficeAI/AionUi/pull/948 + - chore(ci): add emoji to manual build workflow name by @piorpua in https://github.com/iOfficeAI/AionUi/pull/949 + - chore(build-manual): add step summary with branch, commit, and platform info by @piorpua in https://github.com/iOfficeAI/AionUi/pull/950 + - 构建系统迁移 (Webpack → electron-vite) by @loonghao in https://github.com/iOfficeAI/AionUi/pull/947 + - fix: add Node.js engine version constraint by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/956 + - ci: extract reusable build workflow to eliminate duplication by @piorpua in https://github.com/iOfficeAI/AionUi/pull/957 + - ci: consolidate per-platform build summaries into single job by @piorpua in https://github.com/iOfficeAI/AionUi/pull/959 + - feat(gemini): lazy-load skills via index injection instead of full content by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/952 + - feat(markdown): support [...] and (...) LaTeX math delimiters by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/958 + - fix(gemini): disable native SkillManager XML injection by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/966 + - fix(ui): detect orphaned closing tags from MiniMax M2.5 by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/962 + - WIP: fix(gemini): compact large tool responses in history to prevent context overflow by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/960 + - fix(ui): prevent horizontal overflow on summary message items by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/968 + - fix(lint): fix prettier formatting and replace no-explicit-any in tests by @piorpua in https://github.com/iOfficeAI/AionUi/pull/969 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.8.16...v1.8.17 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.8.17 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.17/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.8.17/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..9773ba349dd5 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.17/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.17 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.17/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.8.17/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..304c5eb23d0c --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.17/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.17 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 20bac4982e4f762b7ef4b87a11e9e53427201d8a Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:51:43 +0800 Subject: [PATCH 049/436] Move HaiYing.AionUi 1.8.20 to iOfficeAI.AionUi 1.8.20 (#417979) --- .../1.8.20/iOfficeAI.AionUi.installer.yaml | 32 ++++++++++ .../1.8.20/iOfficeAI.AionUi.locale.en-US.yaml | 62 +++++++++++++++++++ .../1.8.20/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++ .../AionUi/1.8.20/iOfficeAI.AionUi.yaml | 8 +++ 4 files changed, 121 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.20/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.20/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.20/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.20/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.8.20/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.8.20/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..a632d74d8ee9 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.20/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.20 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-03-02 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.20/AionUi-1.8.20-win-x64.exe + InstallerSha256: 56FD14E30FF7EF685FCD1925E5440A7179BA740891FAA738129F94983EF9F45A + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.20/AionUi-1.8.20-win-x64.exe + InstallerSha256: 56FD14E30FF7EF685FCD1925E5440A7179BA740891FAA738129F94983EF9F45A + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.20/AionUi-1.8.20-win-arm64.exe + InstallerSha256: 7B8792C06C45602BCEFD87575959A671EBE0D4925745B944F7D713C07E4A41B2 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.20/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.8.20/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..a80436b25fb7 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.20/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,62 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.20 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + New Features + 1. aionui:// deep link protocol + Support for the aionui:// URL scheme to pre-fill New-API provider settings, so external links can open AionUi with API config pre-filled. + 2. Keyboard shortcuts for confirmation prompts + Confirmation dialogs now support keyboard shortcuts so you can confirm or cancel quickly from the keyboard. + 3. Slash commands and WebUI dev-mode proxy + Slash commands are implemented and supported in the chat interface. + WebUI dev-mode proxy is available so slash commands work when developing against the WebUI server. + What's Changed + - readme remote oinline gif by @ringringlin in https://github.com/iOfficeAI/AionUi/pull/1081 + - fix: DashScope Coding Plan model list and WebUI dev server proxy by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/1087 + - update wechat_group QR code by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/1089 + - fix(acp): use enhanced PATH for CLI detection by @Jassy930 in https://github.com/iOfficeAI/AionUi/pull/1059 + - fix(models): update Gemini model references to 3.1 and sync bun.lock with aioncli-core 0.30.0 by @audichuang in https://github.com/iOfficeAI/AionUi/pull/1091 + - fix(sendbox): preserve user input during AI reply in Codex/Nanobot/OpenClaw by @cdxiaodong in https://github.com/iOfficeAI/AionUi/pull/1076 + - feat: add aionui:// deep link protocol for new-api provider pre-fill by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/1097 + - Fix: windows arch detection windows 修复安装包能在错误的指令集上安装 by @LeeShunEE in https://github.com/iOfficeAI/AionUi/pull/1055 + - fix(webui): handle expired token on initial WebSocket connection by @Jassy930 in https://github.com/iOfficeAI/AionUi/pull/1094 + - fix(telegram): harden polling shutdown and add lifecycle tests by @loonghao in https://github.com/iOfficeAI/AionUi/pull/1099 + - feat(confirm): add keyboard shortcuts for confirmation prompts by @cdxiaodong in https://github.com/iOfficeAI/AionUi/pull/1079 + - feat(slash): implement slash commands with WebUI dev-mode proxy by @Jassy930 in https://github.com/iOfficeAI/AionUi/pull/1054 + - fix: 修复 WebUI 下自定义 CSS 丢失,并基于队列与状态降级重构主题存储 by @taekchef in https://github.com/iOfficeAI/AionUi/pull/1084 + - chore: bump version to 1.8.20 by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/1104 + New Contributors + - @Jassy930 made their first contribution in https://github.com/iOfficeAI/AionUi/pull/1059 + - @audichuang made their first contribution in https://github.com/iOfficeAI/AionUi/pull/1091 + - @LeeShunEE made their first contribution in https://github.com/iOfficeAI/AionUi/pull/1055 + - @taekchef made their first contribution in https://github.com/iOfficeAI/AionUi/pull/1084 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.8.19...v1.8.20 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.8.20 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.20/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.8.20/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..d17cae9322f6 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.20/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.20 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.20/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.8.20/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..c2e5d51c8234 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.20/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.20 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 64b57ae231d40a74073c2b0c2a0cfff64a3a23b1 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:51:59 +0800 Subject: [PATCH 050/436] Move HaiYing.AionUi 1.8.24 to iOfficeAI.AionUi 1.8.24 (#417987) --- .../1.8.24/iOfficeAI.AionUi.installer.yaml | 32 ++++++++++ .../1.8.24/iOfficeAI.AionUi.locale.en-US.yaml | 62 +++++++++++++++++++ .../1.8.24/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++ .../AionUi/1.8.24/iOfficeAI.AionUi.yaml | 8 +++ 4 files changed, 121 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.24/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.24/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.24/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.24/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.8.24/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.8.24/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..2ae054c76487 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.24/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.24 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-03-10 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.24/AionUi-1.8.24-win-x64.exe + InstallerSha256: 29D4F3EB8A8CE2A5225824DA1DD54AE953CCDE3675A3B16A902A0A49C1DBDF6C + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.24/AionUi-1.8.24-win-x64.exe + InstallerSha256: 29D4F3EB8A8CE2A5225824DA1DD54AE953CCDE3675A3B16A902A0A49C1DBDF6C + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.24/AionUi-1.8.24-win-arm64.exe + InstallerSha256: 37F256D3E8584B4BA1612CD0D0087FC8B8D8826FF572E83E99D328E8A3BF14C3 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.24/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.8.24/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..e6d1704752e8 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.24/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,62 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.24 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's New + Features + - Reasoning effort – Choose thinking strength (e.g. low/medium/high) for Gemini, ACP, and Codex to balance speed and depth. + - Unified chips and layout – Model and permission chips are unified, and the chat, preview, and workspace layout is cleaned up. + - Slash command menu – The slash command menu has a clearer, more consistent look and is easier to scan. + - Extension system – The app supports a pluggable extension system with an E2E test setup for add‑ons. + What's Changed + - 基本本地 Windows 打包做了一些修复 by @JAVA-LW in https://github.com/iOfficeAI/AionUi/pull/1058 + - style(sendbox): refine slash command menu visual design by @ringringlin in https://github.com/iOfficeAI/AionUi/pull/1140 + - fix: normalize electron-updater metadata to ensure deterministic release builds by @loonghao in https://github.com/iOfficeAI/AionUi/pull/1195 + - chore: update bun.lock with testing library dependencies by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1198 + - fix(acp): two-phase retry for Codex/Claude ACP bridge with named version constants by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1212 + - docs: rewrite CLAUDE.md to be lean and accurate by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1217 + - feat(commands): add pr-review and bump-version commands by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1219 + - fix(test): skip i18n-packaged test when renderer output is missing by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1220 + - update wx-group qr code by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/1222 + - fix(acp): implement Codex session resume via session/load by @audichuang in https://github.com/iOfficeAI/AionUi/pull/1215 + - refactor(acp): extract parseSessionCapabilities to eliminate duplication by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1224 + - feat: extension system core + E2E test infrastructure by @loonghao in https://github.com/iOfficeAI/AionUi/pull/1161 + - refactor: address post-merge review findings from PR #1161 by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1227 + - update UI by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/1226 + - chore: migrate oss-commit to project-level command and rename to oss-pr by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1229 + - feat: add reasoning effort selector for Gemini, ACP, and Codex (#1211) by @audichuang in https://github.com/iOfficeAI/AionUi/pull/1213 + - fix(codex): resolve mode switch errors and Full Auto permission behavior by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/1234 + - docs(readme): remove outdated development section, move to docs/ by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/1235 + - chore: bump version to 1.8.24 by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1236 + - feat(ui): unify model/permission chips and polish chat+preview+workspace layout by @ringringlin in https://github.com/iOfficeAI/AionUi/pull/1231 + - style: remove extra blank line in AgentPillBar by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1238 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.8.23...v1.8.24 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.8.24 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.24/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.8.24/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..3775d61c6bd1 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.24/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.24 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.24/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.8.24/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..645d75076026 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.24/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.24 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From af8c236e34fcb53751f6be045afc95b9b157225e Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:52:14 +0800 Subject: [PATCH 051/436] Move HaiYing.AionUi 1.8.27 to iOfficeAI.AionUi 1.8.27 (#417993) --- .../1.8.27/iOfficeAI.AionUi.installer.yaml | 32 +++++++++++ .../1.8.27/iOfficeAI.AionUi.locale.en-US.yaml | 54 +++++++++++++++++++ .../1.8.27/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 +++++++ .../AionUi/1.8.27/iOfficeAI.AionUi.yaml | 8 +++ 4 files changed, 113 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.27/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.27/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.27/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.27/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.8.27/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.8.27/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..e70fbd1e828f --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.27/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.27 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-03-13 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.27/AionUi-1.8.27-win-x64.exe + InstallerSha256: 68A9E22D6024096E8E3B97C030EA988E0E1F4A5AE21C59D21656760D2EDC64EF + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.27/AionUi-1.8.27-win-x64.exe + InstallerSha256: 68A9E22D6024096E8E3B97C030EA988E0E1F4A5AE21C59D21656760D2EDC64EF + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.27/AionUi-1.8.27-win-arm64.exe + InstallerSha256: D03EE503F10118A7E86AC0B14D00932E70534EE9247F9E648108D21F1DF29C73 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.27/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.8.27/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..4a8d1eb9958d --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.27/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,54 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.27 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's New + Features + - Conversation Minimap – New session minimap with improved theme thumbnail preview + - Conversation history – Drag-and-drop sorting for pinned chat + - Star Office – A super nice office was provided for the lobsters + Fixes + - OpenClaw – More reliable gateway streaming and history fallback + - Preview – Better large text preview and unified size limits + What's Changed + - feat(ui): 新增会话 Minimap 并增强主题缩略图预览 by @taekchef in https://github.com/iOfficeAI/AionUi/pull/1154 + - feat(conversation): add drag-and-drop sorting for conversation history by @cdxiaodong in https://github.com/iOfficeAI/AionUi/pull/1138 + - chore: improve bump-version workflow steps by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1282 + - fix(openclaw): fix gateway streaming reliability and add history fallback by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1256 + - fix(star-office): rebase #1205 on main and restore monitor UX by @ringringlin in https://github.com/iOfficeAI/AionUi/pull/1250 + - fix(preview): optimize large text preview and unify limits by @HarryFight in https://github.com/iOfficeAI/AionUi/pull/1289 + - chore: bump version to 1.8.27 by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1292 + - chore: add post-merge steps to bump-version command by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1293 + - ci: add retry for bun install in build job by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1294 + New Contributors + - @HarryFight made their first contribution in https://github.com/iOfficeAI/AionUi/pull/1289 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.8.26...v1.8.27 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.8.27 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.27/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.8.27/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..954e5f2f5551 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.27/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.27 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.27/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.8.27/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..09a06db5b306 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.27/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.27 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 1cd215a8cfd7bc3b825cd7bc5513d3dbacb8b709 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:52:43 +0800 Subject: [PATCH 052/436] Move HaiYing.AionUi 1.8.28 to iOfficeAI.AionUi 1.8.28 (#417995) --- .../1.8.28/iOfficeAI.AionUi.installer.yaml | 32 +++++++++ .../1.8.28/iOfficeAI.AionUi.locale.en-US.yaml | 68 +++++++++++++++++++ .../1.8.28/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++ .../AionUi/1.8.28/iOfficeAI.AionUi.yaml | 8 +++ 4 files changed, 127 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.28/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.28/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.28/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.28/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.8.28/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.8.28/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..4a66f28b0bbe --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.28/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.28 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-03-16 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.28/AionUi-1.8.28-win-x64.exe + InstallerSha256: 20F7B309394F13D48CA5DBEA1EC7E33E0EF6510AE0FAE5635727338D75ACBFA9 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.28/AionUi-1.8.28-win-x64.exe + InstallerSha256: 20F7B309394F13D48CA5DBEA1EC7E33E0EF6510AE0FAE5635727338D75ACBFA9 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.28/AionUi-1.8.28-win-arm64.exe + InstallerSha256: 4F6357CFFAC3FD5979BE233AF8D96D94706530D336AF0D20F298CD65B78EB1D6 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.28/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.8.28/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..279d20cdd339 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.28/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,68 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.28 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's New + Features + - Cursor Agent – Cursor Agent added as a built-in ACP backend (#1319). + - WebUI – Remote access username can be changed (#1297); + - Notifications – Agent task completion notifications with user message (#1185). + - Guid – AionUi Skills Market toggle added on the guide page (#1343). + - WebUI – Desktop WebUI preferences are persisted and restored on startup (#1127). + - Tray – Tray menu updated with recent chats and task controls (#1187). + What's Changed + - feat: add Cursor Agent as built-in ACP backend by @iam-zekai in https://github.com/iOfficeAI/AionUi/pull/1319 + - feat(webui): Persist desktop WebUI preferences with startup restore by @Jassy930 in https://github.com/iOfficeAI/AionUi/pull/1127 + - fix(acp): bump bridge versions and fix Windows UTF-8 encoding for npx by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1316 + - fix(windows): resolve cygpath not found and improve cross-platform compat by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1276 + - fix(cron): implement and harden cron job handling during workspace migration by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1328 + - fix(auto-update): correct channel names, fallback logic, and clean up release artifacts by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1320 + - feat(tray): enhance tray menu with recent chats and task controls by @cdxiaodong in https://github.com/iOfficeAI/AionUi/pull/1187 + - feat(webui): allow changing remote access username by @a18014144564-cmyk in https://github.com/iOfficeAI/AionUi/pull/1297 + - fix(webui): address code review issues in username change feature by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1329 + - docs: add i18n validation command to AGENTS.md by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1331 + - fix(conversation): improve minimap search experience by @Asunfly in https://github.com/iOfficeAI/AionUi/pull/1305 + - fix(minimap): replace hardcoded i18n string and add coverage tracking by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1334 + - feat: Add agent task completion notification with user message by @cdxiaodong in https://github.com/iOfficeAI/AionUi/pull/1185 + - fix(ci): adapt pr-checks and release scripts to new build artifact rules by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1337 + - docs(pr-review): add solution rationality review dimension by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1336 + - feat: refine guid sendbox layout and add custom model support note by @ringringlin in https://github.com/iOfficeAI/AionUi/pull/1327 + - fix(test,i18n): update minimap test and fix tr-TR missing keys by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1339 + - chore: set printWidth 120, reformat codebase, and fix CodeQL path traversal by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1340 + - chore: refresh bun.lock with latest compatible dependencies by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1341 + - chore: remove unnecessary bun install step from bump-version command by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1342 + - feat(guid): add AionUi Skills Market toggle on guide page by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1343 + - chore: bump version to 1.8.28 by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1345 + New Contributors + - @iam-zekai made their first contribution in https://github.com/iOfficeAI/AionUi/pull/1319 + - @a18014144564-cmyk made their first contribution in https://github.com/iOfficeAI/AionUi/pull/1297 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.8.27...v1.8.28 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.8.28 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.28/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.8.28/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..895d31138ffd --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.28/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.28 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.28/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.8.28/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..1e483b80d654 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.28/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.28 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From cf7a88257eec1d770ed8a505b498366178ef78d0 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:53:07 +0800 Subject: [PATCH 053/436] Move HaiYing.AionUi 1.8.3 to iOfficeAI.AionUi 1.8.3 (#417999) --- .../1.8.3/iOfficeAI.AionUi.installer.yaml | 32 +++++++++++++ .../1.8.3/iOfficeAI.AionUi.locale.en-US.yaml | 47 +++++++++++++++++++ .../1.8.3/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++++ .../AionUi/1.8.3/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 106 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.3/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.3/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.3/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.3/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.8.3/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.8.3/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..43f83495ffbc --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.3/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.3 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-02-07 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.3/AionUi-1.8.3-win-x64.exe + InstallerSha256: 2D77D44DB508F438D05F7F357807D1EAA1F51BCB2EF3F22353961BC8C84001CD + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.3/AionUi-1.8.3-win-x64.exe + InstallerSha256: 2D77D44DB508F438D05F7F357807D1EAA1F51BCB2EF3F22353961BC8C84001CD + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.3/AionUi-1.8.3-win-arm64.exe + InstallerSha256: 8A8148F951AC217E686FDEF6E2D05A0D07964DD007A197C813B08D43CE15A991 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.3/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.8.3/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..65e4b7ace365 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.3/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,47 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.3 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - fix(agent): improve agent auto-switch and UI experience by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/708 + - fix(acp): merge PATH instead of override to fix npx ENOENT by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/700 + - fix(codex): improve message persistence with proper merge logic by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/706 + - feat(acp): add OpenClaw CLI support by @piorpua in https://github.com/iOfficeAI/AionUi/pull/713 + - release: v1.8.3 — agent auto-switch, readiness check, and stability fixes by @kuishou68 in https://github.com/iOfficeAI/AionUi/pull/712 + - chore(acp): remove OpenClaw CLI support by @piorpua in https://github.com/iOfficeAI/AionUi/pull/718 + - feat(openclaw): add OpenClaw Gateway WebSocket integration by @piorpua in https://github.com/iOfficeAI/AionUi/pull/719 + - fix(ci): add multi-platform builds and fix artifact upload by @pojian68 in https://github.com/iOfficeAI/AionUi/pull/725 + - CI: expand build matrix and retry non-Windows builds by @pojian68 in https://github.com/iOfficeAI/AionUi/pull/729 + - CI: build macOS x64 on macos-14 (Rosetta) by @pojian68 in https://github.com/iOfficeAI/AionUi/pull/731 + New Contributors + - @pojian68 made their first contribution in https://github.com/iOfficeAI/AionUi/pull/725 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.8.2...v1.8.3 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.8.3 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.3/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.8.3/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..de8811781793 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.3/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.3 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.3/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.8.3/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..e823efe7fd4c --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.3/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From be996028f9875758146abd663198719ad73b25c6 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:53:37 +0800 Subject: [PATCH 054/436] Move HaiYing.AionUi 1.8.32 to iOfficeAI.AionUi 1.8.32 (#418007) --- .../1.8.32/iOfficeAI.AionUi.installer.yaml | 32 +++++++++++++ .../1.8.32/iOfficeAI.AionUi.locale.en-US.yaml | 46 +++++++++++++++++++ .../1.8.32/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++++ .../AionUi/1.8.32/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 105 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.32/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.32/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.32/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.8.32/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.8.32/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.8.32/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..828e519f3dad --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.32/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.32 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-03-20 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.32/AionUi-1.8.32-win-x64.exe + InstallerSha256: A9E07A06FF86BA47C064FF8CF5B2DB0B29D0FA57DB44222F6579266A95E9940B + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.32/AionUi-1.8.32-win-x64.exe + InstallerSha256: A9E07A06FF86BA47C064FF8CF5B2DB0B29D0FA57DB44222F6579266A95E9940B + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.8.32/AionUi-1.8.32-win-arm64.exe + InstallerSha256: 726EE56D63442462F2D94B468B4D3867E462DAB64349728AA6B714300A46CEF2 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.32/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.8.32/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..891012f6349c --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.32/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,46 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.32 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - chore(tooling): migrate from ESLint + Prettier to oxc ecosystem (oxlint + oxfmt) by @loonghao in https://github.com/iOfficeAI/AionUi/pull/1488 + - fix(coverage): switch from whitelist to full-source coverage reporting by @loonghao in https://github.com/iOfficeAI/AionUi/pull/1491 + - docs(skills): update coverage config references for glob-based include by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1576 + - refactor: reorganize src/ directory structure (835 files, 0 TS errors) by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1583 + - fix(builtin-mcp): make image-gen server runnable by external node in packaged app by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1584 + - refactor(settings): restructure SystemModalContent, fix CDP switch, hide dev tools in production by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1587 + - fix(utils): replace runtime require with static import for initStorage by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1600 + - fix(mcp): align image generation agent badges with dynamic registration state by @Castor6 in https://github.com/iOfficeAI/AionUi/pull/1505 + - fix(image-generation-mcp): address review issues from PR #1505 by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1601 + - feat(display-settings): add CSS theme presets by @Asunfly in https://github.com/iOfficeAI/AionUi/pull/1598 + - chore: bump version to 1.8.32 by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1603 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.8.31...v1.8.32 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.8.32 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.32/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.8.32/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..1c900dc11334 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.32/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.32 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.8.32/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.8.32/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..7ba04307059b --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.8.32/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.8.32 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From c17a09709e5b1e1ba4e5205dc1ce981afe587fc6 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:53:58 +0800 Subject: [PATCH 055/436] Move HaiYing.AionUi 1.9.0 to iOfficeAI.AionUi 1.9.0 (#418024) --- .../1.9.0/iOfficeAI.AionUi.installer.yaml | 32 +++++++++ .../1.9.0/iOfficeAI.AionUi.locale.en-US.yaml | 67 +++++++++++++++++++ .../1.9.0/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++ .../AionUi/1.9.0/iOfficeAI.AionUi.yaml | 8 +++ 4 files changed, 126 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.0/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.0/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.0/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.0/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.9.0/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.9.0/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..3b3868b71857 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.0/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.0 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-03-24 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.0/AionUi-1.9.0-win-x64.exe + InstallerSha256: D7B7AE17CF9950AB951348639F835994793368BA9C29C0035E0085788BBD15BC + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.0/AionUi-1.9.0-win-x64.exe + InstallerSha256: D7B7AE17CF9950AB951348639F835994793368BA9C29C0035E0085788BBD15BC + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.0/AionUi-1.9.0-win-arm64.exe + InstallerSha256: BBB6112F83B4EF58673FF4FC0BA757B44114515F603E11B4BB50F89B7919FDE4 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.0/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.9.0/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..46952e41730d --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.0/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,67 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.0 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + ✨ Highlights + 1) AionUi Morph PPT with real-time rendering, powerred by OfficeCLI x AionUi + + - Expanded morph-ppt capabilities for a more visual and transparent slide-building workflow. + - Added clearer preview and system-app warning messages to reduce confusion during generation. + - Improved WebUI/Server-mode support for PPT preview and shell-open actions, making local and remote usage more consistent. + - Result: users can see the PPT being produced step by step instead of waiting for a black-box final output. + 2) OfficeCli now includes built-in Skills + - OfficeCli ships with built-in skills to reduce setup friction and speed up onboarding. + - Skills sync reliability improved by separating built-in and user skill directories. + - Better end-to-end flow from intent → generation → preview → iteration in PPT workflows. + 🚀 Other Improvements + - i18n: replaced Chinese fallback strings with English in t() calls. + - Search: added Cmd/Ctrl + Shift + F history shortcut. + - Conversation UX: cycle visible sessions with Ctrl + Tab. + - Server: added webserver standalone mode. + - UI polish: formatting fixes in channel config forms and skills hub settings. + - Mobile: mobile-related enhancements and fixes. + What's Changed + - fix(i18n): replace Chinese fallback strings with English in t() calls by @amanharshx in https://github.com/iOfficeAI/AionUi/pull/1651 + - feat(search): add Cmd/Ctrl+Shift+F history shortcut by @Eric-Song-Nop in https://github.com/iOfficeAI/AionUi/pull/1625 + - fix(morph-ppt): clarify preview and system app warning by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/1664 + - refactor(morph-ppt): remove hardcoded inspiration topics by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/1666 + - style: fix formatting issues in channel config forms and skills hub settings by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1668 + - feat(server): webserver standalone mode by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1665 + - fix(skills): separate builtin and user skills directories for reliable sync by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1673 + - fix(conversation): cycle visible sessions with ctrl+tab by @Eric-Song-Nop in https://github.com/iOfficeAI/AionUi/pull/1623 + - Mobile by @xavierliang in https://github.com/iOfficeAI/AionUi/pull/1506 + - fix(webui): support PPT preview and shell open in server mode by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1679 + - chore: bump version to 1.9.0 by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1680 + New Contributors + - @amanharshx made their first contribution in https://github.com/iOfficeAI/AionUi/pull/1651 + - @Eric-Song-Nop made their first contribution in https://github.com/iOfficeAI/AionUi/pull/1625 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.8.33...v1.9.0 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.9.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.0/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.9.0/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..852a5ec87293 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.0/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.0 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.0/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.9.0/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..88f455916974 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.0/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 52de94fcbf80b1e56ff9f6dd9c788ee1407cf9c6 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:54:13 +0800 Subject: [PATCH 056/436] Move HaiYing.AionUi 1.9.10 to iOfficeAI.AionUi 1.9.10 (#418028) --- .../1.9.10/iOfficeAI.AionUi.installer.yaml | 32 ++++++++++++++ .../1.9.10/iOfficeAI.AionUi.locale.en-US.yaml | 42 +++++++++++++++++++ .../1.9.10/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 +++++++++ .../AionUi/1.9.10/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 101 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.10/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.10/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.10/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.10/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.9.10/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.9.10/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..73c8203d05fd --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.10/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.10 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-04-09 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.10/AionUi-1.9.10-win-x64.exe + InstallerSha256: 3AD98B79B7A8C5E3B045F3B94FC0D4287FA5513495CC9115ED4A2007CB9FF7CE + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.10/AionUi-1.9.10-win-x64.exe + InstallerSha256: 3AD98B79B7A8C5E3B045F3B94FC0D4287FA5513495CC9115ED4A2007CB9FF7CE + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.10/AionUi-1.9.10-win-arm64.exe + InstallerSha256: 0D7D00D09AB92EEF0D5D8025CD6A9CABA31A3483D6A3A90F6542DA42602E1E30 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.10/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.9.10/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..76b9d877b3ec --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.10/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.10 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + Highlights + Team Workspace (Agent Team Mode) + - Team is now available in production builds as an official user-facing feature in AionUi. + - You can create and enter team spaces directly from the packaged app again. + - Team mode in production supports claude and codex backends.(More agents will be coming soon.) + What's Changed + - fix(layout): restore team entry points by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/2238 + - chore: bump version to 1.9.10 by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/2239 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.9.9...v1.9.10 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.9.10 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.10/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.9.10/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..fb7e312a22a0 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.10/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.10 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.10/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.9.10/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..08f2e6597b8d --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.10/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From ece3cf4cbce77a6337c3da6fb6cf7b1df2a1c875 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:54:27 +0800 Subject: [PATCH 057/436] Move HaiYing.AionUi 1.9.18 to iOfficeAI.AionUi 1.9.18 (#418045) --- .../1.9.18/iOfficeAI.AionUi.installer.yaml | 32 ++++++ .../1.9.18/iOfficeAI.AionUi.locale.en-US.yaml | 108 ++++++++++++++++++ .../1.9.18/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 +++ .../AionUi/1.9.18/iOfficeAI.AionUi.yaml | 8 ++ 4 files changed, 167 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.18/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.18/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.18/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.18/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.9.18/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.9.18/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..fcf470e66a5f --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.18/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.18 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-04-20 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.18/AionUi-1.9.18-win-x64.exe + InstallerSha256: 95E3100882B29DCF97153078D16A4A9C4E88BFD4AFAE092B2C492233B5DC9FCD + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.18/AionUi-1.9.18-win-x64.exe + InstallerSha256: 95E3100882B29DCF97153078D16A4A9C4E88BFD4AFAE092B2C492233B5DC9FCD + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.18/AionUi-1.9.18-win-arm64.exe + InstallerSha256: F30F12C1A18FC1070FE3B8C2C7FE0530A61CD582ADCE7295378F7B6CFF0DB273 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.18/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.9.18/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..2c8d32723200 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.18/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,108 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.18 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + Highlights + Team Mode + - Team mode now supports per-session model selection, letting you choose which model each team session uses directly from the team interface. + - Aion CLI (`aionrs`) is now available as a backend in team mode, expanding the set of agents that can participate in multi-agent teams. + - MCP TCP memory blowups in team sessions are now prevented, improving stability in long-running team tasks. + - Workspace migration now uses in-place updates instead of delete-and-recreate, eliminating data loss risks during team workspace transitions. + Built-in Skill Management + - A new built-in skill management UI lets you browse, enable/disable, and configure skills, with per-conversation indicators and exclude filtering. Installed skills are now visible directly in the conversation interface. + - The `fix-sentry` skill now supports user feedback issues with attachment analysis — diagnose issues from logs and screenshots attached to Sentry events without leaving the app. + ACP 2.0 Protocol Layer + - ACP has been fully rewritten as a modular protocol layer with a single-owner `ProcessAcpClient`, completing the V1→V2 migration. The new architecture closes all remaining audit gaps and introduces YOLO mode for power users. + - ACP startup is now significantly faster: CLI detection switches from serial `execSync` calls to async batch execution, cutting the time needed to connect backends. + - Windows users benefit from two targeted fixes: bun cache directories are now redirected to `userData` (preventing `EPERM` errors on launch), and `TMP`/`TEMP` are overridden so bunx working directories escape antivirus scan paths that previously blocked execution. + Aion CLI: Safe-level Context Compression + Aion CLI (`aionrs`) now applies safe-level context compression inspired by RTK and TOON's compaction strategies. The compressor trims redundant content from conversation history while preserving agent behavior fidelity, meaningfully reducing token consumption per session without any observable change in output quality. More details: https://github.com/iOfficeAI/aionrs/blob/main/docs/advanced.md#output-compaction + Renderer Performance + - Streaming re-render hotspots in Markdown and Mermaid components have been resolved, reducing CPU usage during long AI responses and improving perceived responsiveness. + WebUI & Workspace + - WebUI sidebar now includes a logout action. + - Workspace folder UI on the Guid page has been improved with better visual organization. + - Conversations now carry preferred modes and model IDs in the payload, enabling more precise backend routing per conversation. + WeChat Integration + - The WeChat (`weixin`) backend now supports session management commands, giving users programmatic control over WeChat session lifecycle from within AionUi. + Bug Fixes + - Permission confirmation dialog now correctly adapts to dark mode. + - Cron jobs now use in-place updates instead of delete-and-recreate, preventing race conditions and unintended data loss. + - Updates to already-deleted cron jobs are now silently ignored instead of throwing errors. + - Dead fork worker processes are now handled gracefully in `postMessagePromise`, preventing unhandled rejections. + - OfficeCLI update check is now deferred to first use instead of running at startup, improving launch time. + - Agent mode selected on the Guid page is now correctly carried into the conversation for all backends. + - Cookie-backed sessions now rotate on refresh, improving session security. + - Git `rev-parse` failures during snapshot initialization are now handled gracefully instead of crashing. + - New chat reset rendering on the Guid page is now stable and no longer flickers. + + What's Changed + - feat(team): add model selection capability to team mode by @zhuqingyv in https://github.com/iOfficeAI/AionUi/pull/2457 + - feat(skills): add builtin skill management, conversation indicator, and exclude filtering by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/2280 + - perf(acp): replace serial execSync with async batch CLI detection by @piorpua in https://github.com/iOfficeAI/AionUi/pull/2485 + - fix(acp): redirect bun cache dirs to userData to avoid Windows EPERM by @piorpua in https://github.com/iOfficeAI/AionUi/pull/2482 + - feat(skills): add user feedback and attachment analysis to fix-sentry by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/2491 + - feat(opencode): add skillsDirs for native skill auto-discovery by @JerryLiu369 in https://github.com/iOfficeAI/AionUi/pull/2479 + - fix(ui): adapt permission confirmation dialog for dark mode by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/2492 + - fix(team): prevent MCP TCP memory blowups by @lixunqi12 in https://github.com/iOfficeAI/AionUi/pull/2429 + - refactor(acp): ACP 2.0 modular protocol layer with single-owner ProcessAcpClient by @TCP404 in https://github.com/iOfficeAI/AionUi/pull/2310 + - fix(acp): override TMP/TEMP on Windows so bunx working dir escapes antivirus scan by @piorpua in https://github.com/iOfficeAI/AionUi/pull/2496 + - fix(cron): replace delete-recreate with in-place update workflow by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/2487 + - fix(cron): silently ignore updates to deleted cron jobs by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/2502 + - feat: add support for preferred modes and model IDs in conversation p… by @JAVA-LW in https://github.com/iOfficeAI/AionUi/pull/2510 + - fix(team): replace delete-recreate with in-place update for workspace migration by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/2506 + - fix(worker): handle dead fork process in postMessagePromise gracefully by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/2499 + - feat(bench): add performance benchmark system with unified report by @zhuqingyv in https://github.com/iOfficeAI/AionUi/pull/2497 + - fix(pptPreview): defer officecli update check to first use by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/2507 + - fix(agentMode): sync guid page mode into conversation for all backends by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/2518 + - feat(team): add Aion CLI (aionrs) support for team mode by @piorpua in https://github.com/iOfficeAI/AionUi/pull/2521 + - refactor(acp): V1→V2 migration phase 2 — close all gaps and add YOLO mode by @TCP404 in https://github.com/iOfficeAI/AionUi/pull/2520 + - fix(aionrs): respect modelProtocols for new-api anthropic models by @JerryLiu369 in https://github.com/iOfficeAI/AionUi/pull/2484 + - fix(snapshot): handle git rev-parse failure in initSnapshot gracefully by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/2495 + - perf(renderer): fix streaming re-render hotspots in Markdown and Mermaid by @zhuqingyv in https://github.com/iOfficeAI/AionUi/pull/2493 + - feat(webui): add sidebar logout action by @cdxiaodong in https://github.com/iOfficeAI/AionUi/pull/2411 + - fix(sider): unify section header style and always show expand arrow by @JerryLiu369 in https://github.com/iOfficeAI/AionUi/pull/2539 + - fix(team): unify 'lead' to 'leader' across all team mode code by @zhuqingyv in https://github.com/iOfficeAI/AionUi/pull/2535 + - fix(auth): rotate cookie-backed sessions on refresh by @cdxiaodong in https://github.com/iOfficeAI/AionUi/pull/2536 + - fix(settings): guard undefined platform.model by @cdxiaodong in https://github.com/iOfficeAI/AionUi/pull/2532 + - feat(weixin): add support for session management commands by @HuangHongkai in https://github.com/iOfficeAI/AionUi/pull/2078 + - feat(guid): workspace folder UI improvements by @JerryLiu369 in https://github.com/iOfficeAI/AionUi/pull/2516 + - fix(guid): stabilize new chat reset rendering by @cdxiaodong in https://github.com/iOfficeAI/AionUi/pull/2511 + - fix(renderer): rename MessagetText.tsx to MessageText.tsx by @Jassy930 in https://github.com/iOfficeAI/AionUi/pull/2463 + - fix(acp): close all V1→V2 migration audit gaps (#20-#26) by @TCP404 in https://github.com/iOfficeAI/AionUi/pull/2548 + - chore(acp): upgrade claude-agent-acp bridge to 0.29.2 by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/2550 + - fix(acp): add missing idle transition for starting and resuming states by @TCP404 in https://github.com/iOfficeAI/AionUi/pull/2549 + - fix(gemini): remove redundant L3 InvalidStream retry by @piorpua in https://github.com/iOfficeAI/AionUi/pull/2554 + - chore: bump version to 1.9.18 by @piorpua in https://github.com/iOfficeAI/AionUi/pull/2557 + New Contributors + - @HuangHongkai made their first contribution in https://github.com/iOfficeAI/AionUi/pull/2078 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.9.17...v1.9.18 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.9.18 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.18/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.9.18/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..d464f35ff007 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.18/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.18 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.18/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.9.18/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..f54b9acd2a02 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.18/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.18 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 77a04ef7484090e74bcfa916a207d433cd3a5201 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:54:43 +0800 Subject: [PATCH 058/436] Move HaiYing.AionUi 1.9.2 to iOfficeAI.AionUi 1.9.2 (#418049) --- .../1.9.2/iOfficeAI.AionUi.installer.yaml | 32 +++++++ .../1.9.2/iOfficeAI.AionUi.locale.en-US.yaml | 92 +++++++++++++++++++ .../1.9.2/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++ .../AionUi/1.9.2/iOfficeAI.AionUi.yaml | 8 ++ 4 files changed, 151 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.2/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.2/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.2/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.2/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.9.2/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.9.2/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..c65af4bc05b4 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.2/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.2 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.2/AionUi-1.9.2-win-x64.exe + InstallerSha256: 00964BA1D2C35DAFA23E04176E7F2FD2DEF953251709C23F7FBA06945FD29356 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.2/AionUi-1.9.2-win-x64.exe + InstallerSha256: 00964BA1D2C35DAFA23E04176E7F2FD2DEF953251709C23F7FBA06945FD29356 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.2/AionUi-1.9.2-win-arm64.exe + InstallerSha256: C6F91A15A1B2DFC1BF2C6447FBCAE856DFC5954880F512EE6A54A0A2682FC0D3 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.2/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.9.2/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..8f2b9cf949b3 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.2/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,92 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.2 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + New Features + Remote Agent Support + You can now connect to remote AI agents via the OpenClaw protocol. A new Agent management page with Local / Remote tabs lets you add, configure, and switch between local and remote agents in one place. + Upload Progress Indicator + File uploads now display a real-time progress bar. The send button is automatically disabled while files are still uploading, so you'll never accidentally send an incomplete message again. + PWA Support for WebUI + AionUi WebUI can now be installed as a Progressive Web App. Add it to your home screen on mobile or install it on desktop for a native app-like experience — faster launches and offline-ready. + Smarter Timeout Handling + Long-running tasks (like generating large documents or complex presentations) will no longer falsely time out. AionUi now checks whether the agent process is actually still working before triggering a timeout, so your big tasks can finish reliably. + Improvements + - Cmd+F search works everywhere — Find-in-chat now works correctly when the conversation is inside a folder or when using the mobile interface. + - Built-in skills always available — Skills like office-cli are now reliably injected regardless of which backend is in use. + - Added MiniMax models — MiniMax model options are now available in the model selector. + - Codex startup improved — Better fallback handling when starting the packaged Codex backend. + Bug Fixes + - Fixed multiple crash scenarios reported via Sentry, significantly improving overall stability: + - App no longer crashes when the workspace directory is missing or inaccessible + - Fixed crash when storage directory doesn't exist on first launch + - Fixed crash when opening an invalid URL from the app + - Fixed crash when the API key is empty or invalid + - Fixed file read errors when a file is temporarily locked by another process + - Fixed PPT preview crash when the rendering provider encounters an error + - Fixed WebUI server crash when the default port is already in use + - Fixed WeChat plugin crash when the login QR code scan times out + - Fixed Gemini backend crash when initialization fails + - Fixed health check crash when the connection times out + What's Changed + - fix(skills): fallback to prompt injection for custom workspaces by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1717 + - fix(model): add missing MiniMax models by @FencyJay in https://github.com/iOfficeAI/AionUi/pull/1637 + - fix(acp): clear cronBusyGuard and status on sendMessage failure by @JerryLiu369 in https://github.com/iOfficeAI/AionUi/pull/1700 + - test(skills): add tests for customWorkspace skill injection fallback by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1722 + - fix(acp): address review issues from PR #1700 by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1723 + - feat(acp): add process-liveness keepalive to prevent false prompt timeouts by @JerryLiu369 in https://github.com/iOfficeAI/AionUi/pull/1702 + - fix(skills): always inject _builtin skills for native-skill backends by @JerryLiu369 in https://github.com/iOfficeAI/AionUi/pull/1718 + - fix(acp): address review issues from PR #1702 by @piorpua in https://github.com/iOfficeAI/AionUi/pull/1725 + - fix(pptPreview): return error result instead of throwing in provider callback by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1731 + - fix(webui): handle EADDRINUSE when starting server in WebUI mode by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1733 + - fix(weixin): clear poll interval on timeout to prevent accessing destroyed BrowserWindow by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1728 + - feat(upload): add progress indicator and disable send during upload by @JerryLiu369 in https://github.com/iOfficeAI/AionUi/pull/1705 + - chore: bump @office-ai/aioncli-core to 0.30.2 by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1751 + - fix(fsBridge): handle EBUSY in readFile/readFileBuffer by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1754 + - fix(health-check): prevent unhandled rejection on timeout by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1756 + - fix(model-bridge): validate apiKey before creating OpenAI client in new-api branch by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1758 + - chore(fix-sentry): add daemon script and single-issue mode by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1759 + - fix(initStorage): ensure parent directory exists before WriteFile (ELECTRON-68) by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1761 + - fix(workspace): prevent unhandled rejection on missing workspace directory by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1763 + - fix(shellBridge): validate URL before openExternal to prevent Invalid URL errors by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1767 + - refactor(fix-sentry): migrate Sentry API logic from daemon to skill by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1770 + - fix(gemini): prevent unhandled rejection when bootstrap fails by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1769 + - fix(acp): improve packaged codex startup fallback by @JAVA-LW in https://github.com/iOfficeAI/AionUi/pull/1594 + - feat(webui): add pwa support by @Ericwong5021 in https://github.com/iOfficeAI/AionUi/pull/1688 + - fix(search): make Cmd+F work when chat is in a folder or on mobile by @amanharshx in https://github.com/iOfficeAI/AionUi/pull/1692 + - feat(agent): add remote agent support with OpenClaw protocol by @TCP404 in https://github.com/iOfficeAI/AionUi/pull/1739 + - chore: bump version to 1.9.2 by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/1802 + - fix(agent): apply missing remote agent UI updates from #1739 by @TCP404 in https://github.com/iOfficeAI/AionUi/pull/1807 + New Contributors + - @FencyJay made their first contribution in https://github.com/iOfficeAI/AionUi/pull/1637 + - @Ericwong5021 made their first contribution in https://github.com/iOfficeAI/AionUi/pull/1688 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.9.1...v1.9.2 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.9.2 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.2/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.9.2/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..f19b3da6bd02 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.2/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.2 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.2/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.9.2/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..2b41a5ff9cfc --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.2/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From efd8969cb93edcfc046791051430f6eedd0d8666 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:54:57 +0800 Subject: [PATCH 059/436] Move HaiYing.AionUi 1.9.20 to iOfficeAI.AionUi 1.9.20 (#418051) --- .../1.9.20/iOfficeAI.AionUi.installer.yaml | 32 ++++++++++ .../1.9.20/iOfficeAI.AionUi.locale.en-US.yaml | 58 +++++++++++++++++++ .../1.9.20/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++ .../AionUi/1.9.20/iOfficeAI.AionUi.yaml | 8 +++ 4 files changed, 117 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.20/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.20/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.20/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.20/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.9.20/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.9.20/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..0cef9d457919 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.20/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.20 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-04-23 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.20/AionUi-1.9.20-win-x64.exe + InstallerSha256: DDA616DE0AD87CEEE48AE89F98E84FABB1CBA254BB2C098526B639D6C9862AF1 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.20/AionUi-1.9.20-win-x64.exe + InstallerSha256: DDA616DE0AD87CEEE48AE89F98E84FABB1CBA254BB2C098526B639D6C9862AF1 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.20/AionUi-1.9.20-win-arm64.exe + InstallerSha256: BBE6EB955AC47CC100E52E00E16EA2B20629015664B8E9D1656CC1E35C46A7A2 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.20/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.9.20/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..a2824f1d4030 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.20/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,58 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.20 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + Highlights + ACP: Stability & Reliability Fixes + - Codex and other ACP agents no longer show a false "process exited unexpectedly" error when a conversation ends normally — the process exit is now correctly recognized as a clean idle shutdown. + - Long gaps between stream events during tool-call execution (common with Codex) no longer trigger spurious idle-finish warnings or duplicate finish events. + - Switching permission mode before sending your first message no longer throws a "Cannot set mode in idle" error — the mode change is silently deferred and applied on first activation. + - Agents like qwen-code that advertise their available modes during initialization now show the full mode list in the selector. + Windows: Broader Tool Detection + - Cargo, Go, Deno, and ~/.local/bin (uv/pipx) are now included in the Windows enhanced PATH, matching macOS/Linux behavior — CLI tools in those locations are now discoverable by ACP auto-detection. + - Windows users with Node.js below v20 can now use Codex and Claude Code backends without being blocked — those backends run via bundled bun, not system Node. + Aion CLI + - Fixed: Aion CLI mode on Windows now correctly finds the officecli binary — it was previously missing from the environment passed to the aionrs process. + Bug Fixes + - Fixed a white screen on app refresh after clicking "New Chat" in the packaged Electron app. A URL corruption bug under HashRouter caused the real pathname to be overwritten, resulting in ERR_FILE_NOT_FOUND on reload. + What's Changed + - fix(guid): use navigate() to clear resetAssistant state so HashRouter URL stays intact by @kaizhou-lab in #2583 + - fix(acp): preserve top-level modes from initialize response by @kaizhou-lab in #2598 + - fix(acp): defer setMode/setModel in idle state and sync reassertConfig on start by @zhuqingyv in #2595 + - test(e2e): add PRDs and E2E specs for ACP conversations by @TCP404 in #2591 + - fix(acp): suppress false crash report on idle process exit and idle-timer misfire during prompt by @TCP404 in #2619 + - fix(shellEnv): add missing Windows extra tool paths to align with macOS/Linux by @piorpua in #2618 + - fix(aionrs): use getEnhancedEnv() when spawning aionrs binary by @piorpua in #2610 + - fix(acp): remove stale Node.js version checks for bundled-bun backends by @piorpua in #2622 + - feat(skill): add pr-ship end-to-end PR lifecycle skill by @TCP404 in #2623 + - chore: bump version to 1.9.20 by @piorpua in #2624 + Full Changelog: v1.9.19...v1.9.20 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.9.20 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.20/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.9.20/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..504abc68a120 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.20/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.20 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.20/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.9.20/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..570b80f542e4 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.20/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.20 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 801e674219adf196408eafa69e1f17ab89632027 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:55:11 +0800 Subject: [PATCH 060/436] Move HaiYing.AionUi 1.9.21 to iOfficeAI.AionUi 1.9.21 (#418053) --- .../1.9.21/iOfficeAI.AionUi.installer.yaml | 32 ++++++++++ .../1.9.21/iOfficeAI.AionUi.locale.en-US.yaml | 60 +++++++++++++++++++ .../1.9.21/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++ .../AionUi/1.9.21/iOfficeAI.AionUi.yaml | 8 +++ 4 files changed, 119 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.21/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.21/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.21/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.21/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.9.21/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.9.21/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..7d5c7226e20d --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.21/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.21 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-04-24 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.21/AionUi-1.9.21-win-x64.exe + InstallerSha256: 8AE4E17F20BCB720C208DA2ECB933D7973DCBAB4930E0373FC310918E5D743A1 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.21/AionUi-1.9.21-win-x64.exe + InstallerSha256: 8AE4E17F20BCB720C208DA2ECB933D7973DCBAB4930E0373FC310918E5D743A1 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.21/AionUi-1.9.21-win-arm64.exe + InstallerSha256: B38268416AC8A3A823113E9CB0E027AC9E5C1672FF89BD57B30845B325165ABA + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.21/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.9.21/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..f41704aa2357 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.21/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.21 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + Highlights + Aion CLI: Reliability & Protocol Upgrades + - Replaced the unreliable 15-second idle fallback with a proper process-exit handler and a ping/pong heartbeat protocol — long tool executions no longer trigger fake "finish" events, and truly stuck processes are now detected and recovered deterministically. + - Fixed a crash when tool commands contained non-ASCII characters (e.g. Chinese): UTF-8 safe truncation now prevents the aionrs process from panicking mid-session. + - Aligned max turn behavior with Claude Code — the main agent now runs unlimited turns by default (configurable), sub-agents allow up to 200 turns, and hitting the limit is treated as a graceful stop instead of an error. Team collaboration sessions no longer dead-end at 30 turns. + - Added diagnostic logging when autocompact is skipped, making it easier to understand why context management didn't trigger. + Attachments: Safer Path & Binary Handling + - Fixed attachment previews and metadata reads that were pointing to fake workspace paths — real absolute paths are now preserved in message markers. + - Binary attachments in ACP sessions are kept as file references instead of being inlined as garbled UTF-8 into the prompt, avoiding prompt pollution and model confusion. + WeChat: Ordered Streaming Fix + - Weixin assistant text drafts are now flushed before silent tool, status, and plan events — preserving the correct message order during streaming. ACP and Codex tool-only turns also now complete cleanly in the WeChat channel. + Bug Fixes + - Fixed agent-switch failure on the guid page for built-in preset assistants (e.g. "Morph PPT") — the switcher now searches both assistants and acp.customAgents storage. + - Fixed the aionrs channel send path to use the correct { content, msg_id } payload; Gemini keeps its existing { input, msg_id } contract. + - Fixed broken quick-navigation links in all 9 non-English READMEs (Chinese, Japanese, Korean, Spanish, Portuguese, Russian, Turkish, Traditional Chinese, Ukrainian) — they now render as clickable links on GitHub. + What's Changed + - fix(docs): add missing blank line in quick navigation for non-English READMEs by @IceyLiu in #2627 + - fix(guid): search both storage sources when switching preset agent type by @piorpua in #2633 + - fix(channels): send content payload for aionrs by @piorpua in #2637 + - fix(attachments): avoid fake paths and binary prompt injection by @piorpua in #2634 + - fix(weixin): flush assistant text before silent events by @JerryLiu369 in #2638 + - chore: bump version to 1.9.21 by @piorpua in #2649 + - fix(aionrs): replace idle fake-finish with process exit error and heartbeat by @piorpua in #2650 + Aion CLI (aionrs) Changes + - 0.1.15 (2026-04-24) — Added ping/pong heartbeat protocol support (#68) + - 0.1.14 (2026-04-23) — Aligned maxTurns logic with Claude Code (#66); fixed UTF-8 panic in tool describe and added autocompact skip logging (#63) + Full Changelog: v1.9.20...v1.9.21 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.9.21 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.21/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.9.21/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..f870719fda12 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.21/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.21 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.21/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.9.21/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..7667e8010f5b --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.21/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.21 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 42e8f47fc1743580e96e5c5af4b2fd99bab43f68 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:55:26 +0800 Subject: [PATCH 061/436] Move HaiYing.AionUi 1.9.22 to iOfficeAI.AionUi 1.9.22 (#418055) --- .../1.9.22/iOfficeAI.AionUi.installer.yaml | 32 +++++++++++++++ .../1.9.22/iOfficeAI.AionUi.locale.en-US.yaml | 40 +++++++++++++++++++ .../1.9.22/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 +++++++++ .../AionUi/1.9.22/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 99 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.22/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.22/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.22/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.22/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.9.22/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.9.22/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..84f868ccb6c2 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.22/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.22 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-04-29 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.22/AionUi-1.9.22-win-x64.exe + InstallerSha256: 47714295F52D3E9E6FD4287F6C93A1B9AEFF5A8BC3B0220408631F3CB5FD89DF + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.22/AionUi-1.9.22-win-x64.exe + InstallerSha256: 47714295F52D3E9E6FD4287F6C93A1B9AEFF5A8BC3B0220408631F3CB5FD89DF + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.22/AionUi-1.9.22-win-arm64.exe + InstallerSha256: 5C0B2B9DBCC8569BC0C2DB3137A0D6827B725BA7CCDCDD245811259FA6813F61 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.22/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.9.22/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..ea9054921e13 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.22/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.22 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - docs(prds): restructure docs and add PRDs for E2E test planning by @TCP404 in https://github.com/iOfficeAI/AionUi/pull/2653 + - fix(bundled-bun): add baseline variant for linux-x64 to support non-AVX2 CPUs by @TCP404 in https://github.com/iOfficeAI/AionUi/pull/2654 + - fix(aionrs): use resolveAionrsBinary() in AionrsMcpAgent to locate bundled binary by @piorpua in https://github.com/iOfficeAI/AionUi/pull/2691 + - chore(skills): sync officecli skills to v1.0.63 by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/2692 + - chore: bump version to 1.9.22 by @piorpua in https://github.com/iOfficeAI/AionUi/pull/2694 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.9.21...v1.9.22 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.9.22 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.22/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.9.22/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..b00f13db3dd1 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.22/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.22 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.22/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.9.22/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..a63ca29053c3 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.22/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.22 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 26652ec8d604e2f345915d7c9dc920e8ea968994 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:55:41 +0800 Subject: [PATCH 062/436] Move HaiYing.AionUi 1.9.23 to iOfficeAI.AionUi 1.9.23 (#418058) --- .../1.9.23/iOfficeAI.AionUi.installer.yaml | 32 +++++++++++++++ .../1.9.23/iOfficeAI.AionUi.locale.en-US.yaml | 39 +++++++++++++++++++ .../1.9.23/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 +++++++++ .../AionUi/1.9.23/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 98 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.23/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.23/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.23/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.23/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.9.23/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.9.23/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..da48b85eb696 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.23/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.23 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-04-30 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.23/AionUi-1.9.23-win-x64.exe + InstallerSha256: D511C7F21DEF2B2D8CC0071E9745FA62C76EAB0BC4E3CF37D21CA2FAB5F5DAF1 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.23/AionUi-1.9.23-win-x64.exe + InstallerSha256: D511C7F21DEF2B2D8CC0071E9745FA62C76EAB0BC4E3CF37D21CA2FAB5F5DAF1 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.23/AionUi-1.9.23-win-arm64.exe + InstallerSha256: 569D98DD769AE593E7779B980B1AD2FEA0400DC5AB2A3ADFCCC4677E3001A1A4 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.23/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.9.23/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..33aaf20c320f --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.23/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.23 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - ci: add release asset distribution workflow by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/2699 + - fix(ci): use release.published instead of released by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/2701 + - chore(docs): update WeChat group QR code to wx-7 by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/2714 + - chore: bump version to 1.9.23 by @piorpua in https://github.com/iOfficeAI/AionUi/pull/2716 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.9.22...v1.9.23 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.9.23 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.23/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.9.23/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..03a4517f31ef --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.23/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.23 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.23/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.9.23/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..125bace73293 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.23/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.23 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From a0281ac904a0540e6073e7bc618dfe16467cafa9 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:55:59 +0800 Subject: [PATCH 063/436] Move HaiYing.AionUi 1.9.25 to iOfficeAI.AionUi 1.9.25 (#418063) --- .../1.9.25/iOfficeAI.AionUi.installer.yaml | 32 ++++++++++++++ .../1.9.25/iOfficeAI.AionUi.locale.en-US.yaml | 44 +++++++++++++++++++ .../1.9.25/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++++ .../AionUi/1.9.25/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 103 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.25/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.25/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.25/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.25/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.9.25/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.9.25/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..817f896b98ca --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.25/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.25 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-05-05 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.25/AionUi-1.9.25-win-x64.exe + InstallerSha256: BE366EFDC69EE64EB3D28E354D3182A0D09B74D0DFE277AF1E89364EED8228BE + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.25/AionUi-1.9.25-win-x64.exe + InstallerSha256: BE366EFDC69EE64EB3D28E354D3182A0D09B74D0DFE277AF1E89364EED8228BE + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.25/AionUi-1.9.25-win-arm64.exe + InstallerSha256: F5A336C9F360AD2BC281AE2941E709814455F5570FB3832BC927A9FB6786A295 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.25/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.9.25/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..cc76a321bd19 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.25/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.25 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + Highlights + OfficeCLI Skills Refreshed + - Bundled OfficeCLI skills (pptx, docx, xlsx, pitch-deck, word-form, data-dashboard, academic-paper, financial-model, morph-ppt, morph-ppt-3d) have been resynced from upstream. The PPTX skill was heavily streamlined for clarity, the Pitch Deck skill expanded with more guidance, and the Morph helper scripts updated. + - The built-in officecli generic skill also ships the latest upstream SKILL.md, so agents routed through the generic entry point get the same fresh rules. + Documentation + - README now showcases the Hermes and OpenClaw demo videos, with broader mentions of integrated agents across all localized readmes. + What's Changed + - docs: add Hermes/OpenClaw videos and expand agent mentions in all readmes by @ringringlin in https://github.com/iOfficeAI/AionUi/pull/2749 + - chore(skills): sync officecli skills from upstream by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/2750 + - chore: bump version to 1.9.25 by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/2753 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.9.24...v1.9.25 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.9.25 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.25/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.9.25/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..cbeba4a8f98c --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.25/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.25 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.25/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.9.25/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..03a03dc2176a --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.25/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.25 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From e5271e74b6422af56ff6a3400b05c90d3f661e82 Mon Sep 17 00:00:00 2001 From: kipavy <88386090+kipavy@users.noreply.github.com> Date: Tue, 18 Aug 2026 20:56:23 +0200 Subject: [PATCH 064/436] New version: Voltius.Voltius version 0.21.0 (#415419) --- .../0.21.0/Voltius.Voltius.installer.yaml | 22 ++++++ .../0.21.0/Voltius.Voltius.locale.en-US.yaml | 75 +++++++++++++++++++ .../Voltius/0.21.0/Voltius.Voltius.yaml | 8 ++ 3 files changed, 105 insertions(+) create mode 100644 manifests/v/Voltius/Voltius/0.21.0/Voltius.Voltius.installer.yaml create mode 100644 manifests/v/Voltius/Voltius/0.21.0/Voltius.Voltius.locale.en-US.yaml create mode 100644 manifests/v/Voltius/Voltius/0.21.0/Voltius.Voltius.yaml diff --git a/manifests/v/Voltius/Voltius/0.21.0/Voltius.Voltius.installer.yaml b/manifests/v/Voltius/Voltius/0.21.0/Voltius.Voltius.installer.yaml new file mode 100644 index 000000000000..1825f7b37474 --- /dev/null +++ b/manifests/v/Voltius/Voltius/0.21.0/Voltius.Voltius.installer.yaml @@ -0,0 +1,22 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Voltius.Voltius +PackageVersion: 0.21.0 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +ProductCode: Voltius +ReleaseDate: 2026-08-11 +AppsAndFeaturesEntries: +- Publisher: voltius + ProductCode: Voltius +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\Voltius' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/VoltiusApp/voltius/releases/download/v0.21.0/Voltius_0.21.0_x64-setup.exe + InstallerSha256: 3F3F7106BF124C54B7D37431A0C476E524EDF83332C9F679B57657872326D7DC +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/v/Voltius/Voltius/0.21.0/Voltius.Voltius.locale.en-US.yaml b/manifests/v/Voltius/Voltius/0.21.0/Voltius.Voltius.locale.en-US.yaml new file mode 100644 index 000000000000..6222df6609f3 --- /dev/null +++ b/manifests/v/Voltius/Voltius/0.21.0/Voltius.Voltius.locale.en-US.yaml @@ -0,0 +1,75 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Voltius.Voltius +PackageVersion: 0.21.0 +PackageLocale: en-US +Publisher: Voltius +PublisherUrl: https://voltius.app/ +PublisherSupportUrl: https://github.com/VoltiusApp/voltius/issues +PackageName: Voltius +PackageUrl: https://voltius.app/ +License: AGPL-3.0 +LicenseUrl: https://github.com/VoltiusApp/voltius/blob/HEAD/LICENSE +ShortDescription: Cross-platform SSH client and terminal +Moniker: voltius +Tags: +- crdt +- credential-manager +- homelab +- local-first +- plugins +- port-forwarding +- rust +- serial +- sftp +- ssh +- ssh-client +- sync +- sysadmin +- tauri +- teams +- terminal +ReleaseNotes: |- + Added + - Published container ports are now clickable everywhere Docker lists them — + the container list, the stack view and the mobile screen. Clicking one opens + it in your browser, or copies the address; a port on a remote host is + tunnelled to this machine first, automatically, and an existing tunnel is + reused. + - The MCP server gained eleven verbs, taking its own surface to 37 (52 with the + bundled plugins' tools). An agent can now organise your vault, not just read + and write inside it: vault_list/create/rename/delete, + folder_list/create/rename/delete, object_move and object_copy — the same + cut/copy-and-paste the pages do, including whole folder subtrees — and + key_add_to_host, which appends a saved key's public half to a host's + authorized_keys over SSH. Deleting a vault or folder cascades, moving + objects into a different vault has to be asked for explicitly, and team vaults + are refused throughout. + - Plugins gained four new gated namespaces mirroring that surface: api.vaults, + api.folders, api.objects and api.ports.reach. Object moves are gated per + object type rather than wholesale — a plugin allowed to file snippets cannot + move your keys — and snippets and port forwarding rules now have their own + write permissions. Every new permission ships with plain-language consent + copy, and the install dialog now distinguishes read-only grants (a container + list, a vault name) from the destructive ones. + Fixed + - Ad-hoc port forwarding tunnels no longer die when their host reconnects, and + tunnel channels now open on the session's current SSH handle — after a sleep + or a dropped link, forwarding kept using the handle that was already gone. + - File panes keep working after the SSH link behind them is replaced, instead + of failing every operation until the tab is reopened. + - The titlebar no longer swallows clicks on the close and new-tab buttons. + - Docker no longer lists the same published port twice when it is bound on both + IPv4 and IPv6, and pressing Enter on a port chip in the mobile view acts on + the chip instead of the row behind it. + - ssh_exec_command now reports a command's exit code and stderr rather than + presenting a failed command as a success — this silently affected Proxmox + actions. + - An MCP tool call that the app refuses is now returned to the client as an + error instead of a successful result carrying a refusal message. + Security + - Pinned js-yaml to 4.3.1 or later, clearing CVE-2026-59870. +ReleaseNotesUrl: https://github.com/VoltiusApp/voltius/releases/tag/v0.21.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/v/Voltius/Voltius/0.21.0/Voltius.Voltius.yaml b/manifests/v/Voltius/Voltius/0.21.0/Voltius.Voltius.yaml new file mode 100644 index 000000000000..a2cc0c50a1af --- /dev/null +++ b/manifests/v/Voltius/Voltius/0.21.0/Voltius.Voltius.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Voltius.Voltius +PackageVersion: 0.21.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 3741ba81813e08f208016b7aa1f30e81e92a91e7 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:56:48 +0800 Subject: [PATCH 065/436] New package: binaricat.Netcatty version 1.1.77 (#415849) --- .../1.1.77/binaricat.Netcatty.installer.yaml | 17 ++++++ .../binaricat.Netcatty.locale.en-US.yaml | 55 +++++++++++++++++++ .../binaricat.Netcatty.locale.zh-CN.yaml | 16 ++++++ .../Netcatty/1.1.77/binaricat.Netcatty.yaml | 8 +++ 4 files changed, 96 insertions(+) create mode 100644 manifests/b/binaricat/Netcatty/1.1.77/binaricat.Netcatty.installer.yaml create mode 100644 manifests/b/binaricat/Netcatty/1.1.77/binaricat.Netcatty.locale.en-US.yaml create mode 100644 manifests/b/binaricat/Netcatty/1.1.77/binaricat.Netcatty.locale.zh-CN.yaml create mode 100644 manifests/b/binaricat/Netcatty/1.1.77/binaricat.Netcatty.yaml diff --git a/manifests/b/binaricat/Netcatty/1.1.77/binaricat.Netcatty.installer.yaml b/manifests/b/binaricat/Netcatty/1.1.77/binaricat.Netcatty.installer.yaml new file mode 100644 index 000000000000..50f21734b8d9 --- /dev/null +++ b/manifests/b/binaricat/Netcatty/1.1.77/binaricat.Netcatty.installer.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: binaricat.Netcatty +PackageVersion: 1.1.77 +InstallerType: nullsoft +Scope: user +ProductCode: 31df50fe-edbb-5d76-969b-4e1d47e4b7d7 +ReleaseDate: 2026-08-10 +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\Programs\Netcatty' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/binaricat/Netcatty/releases/download/v1.1.77/Netcatty-1.1.77-win-x64.exe + InstallerSha256: 93274B238FF98E211464198CA839DBC094610C5CF6F53D1AF4D853765B75292E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/binaricat/Netcatty/1.1.77/binaricat.Netcatty.locale.en-US.yaml b/manifests/b/binaricat/Netcatty/1.1.77/binaricat.Netcatty.locale.en-US.yaml new file mode 100644 index 000000000000..0c91ea64fa85 --- /dev/null +++ b/manifests/b/binaricat/Netcatty/1.1.77/binaricat.Netcatty.locale.en-US.yaml @@ -0,0 +1,55 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: binaricat.Netcatty +PackageVersion: 1.1.77 +PackageLocale: en-US +Publisher: binaricat +PublisherUrl: https://github.com/binaricat +PublisherSupportUrl: https://github.com/binaricat/Netcatty/issues +PackageName: Netcatty +PackageUrl: https://github.com/binaricat/Netcatty +License: GPL-3.0 +LicenseUrl: https://github.com/binaricat/Netcatty/blob/HEAD/LICENSE +Copyright: Copyright © 2026 binaricat +ShortDescription: AI-powered SSH client, SFTP browser and terminal manager. +Description: Netcatty is a beautiful, feature-rich SSH workspace built with Electron, React, and xterm.js. Built-in AI agent (Catty Agent), split terminals, vault views, SFTP workflows, and custom themes — all in one. +Tags: +- console +- remote +- sftp +- ssh +- terminal +ReleaseNotes: |- + ✨ Release Highlights + Netcatty v1.1.77 is a productivity-and-stability release: multi-tab shell performance is reworked, System Manager grows Ports/Services panels, workspace AI chat survives merge/dissolve, Notes paste/rendering is much closer to GitHub README quality, and Linux deb/rpm/pacman packages finally get in-app auto-update. + ⚡ Faster multi-tab shell + - Terminal hot props are isolated and Host-island mega-subscribers are removed so theme, CWD, title, and AI panel churn no longer re-render every pane (#2790, #2809). + - StrictMode double-fire cleanups and Notes page jank fixes keep edit mode responsive under heavy note lists (#2810). + 🖥️ System Manager: Ports & Services + - New Ports and Services tabs (with capability gating) let you inspect listening ports and systemctl units without leaving the terminal side panel (#2817). + - Disk overview shows PVE CT ZFS/bind mounts; Ascend 910B NPU tables parse correctly on CANN 24.x hosts (#2837, #2812). + 🤖 AI chat across workspace merge + - Merging, dissolving, or detaching panes keeps the active chat, side panel, and SFTP mounts instead of dropping into a blank draft (#2851 / #2855 family). + - Follow-up typing after merge no longer silently creates a New Chat; MCP permissions restore on startup; sidebar Catty no longer exposes host_open (#2876, #2861, #2859). + - Settings gain a one-click provider connection test (#2845). + 📝 Notes: paste, images, and link chrome + - HTML clipboard paste goes through Turndown; long markdown, remote images, badge rows, centered blocks, and GitHub-like image scaling are preserved (#2868, #2869). + - MDX link preview toolbar stays anchored on the link instead of drifting into the notes tree (#2877). + 📂 SFTP path UX and terminal handoff + - Path chrome gets its own toolbar row with tail-preferring breadcrumbs, pinned roots (including UNC), and a trailing overflow menu (#2857 family). + - Open current path in linked terminal jumps the paired shell to the folder you are browsing (#2825). + - Tree view search filtering and safer single-file overwrite / zmodem replace close real-world transfer gaps (#2829, #2863). + ⌨️ Terminal autocomplete and history + - History recall, mid-line edits, search-highlight cleanup, CJK IME punctuation, pinyin snippet titles, dnf completion, and SSH echo/path lag handling keep suggestions local and fail-closed when needed (#2850, #2849, #2834, #2814, #2840, #2831). + - Session logs no longer record alternate-screen TUI paint (htop/vim) as terminal history (#2875). + ⚙️ Settings, vault, scripts, and updates + - Settings global search with expandable jump suggestions (#2816). + - Port-forward runtime state is authoritative in the main process for consistent tray/restart behavior (#2819). + - Host context menu can copy hostname; Scripts toolbar adds expand/collapse-all and delete-selected (#2820, #2828). + - Linux deb/rpm/pacman packages enable in-app auto-update, with recovery when a previous install attempt failed. + ✨ Smaller polish + - Closing a temporary session restores the previous tab; external-editor temp downloads no longer look empty; and assorted SFTP/SSH bastion and CI automation false-positive fixes. +ReleaseNotesUrl: https://github.com/binaricat/Netcatty/releases/tag/v1.1.77 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/binaricat/Netcatty/1.1.77/binaricat.Netcatty.locale.zh-CN.yaml b/manifests/b/binaricat/Netcatty/1.1.77/binaricat.Netcatty.locale.zh-CN.yaml new file mode 100644 index 000000000000..549a015f8b91 --- /dev/null +++ b/manifests/b/binaricat/Netcatty/1.1.77/binaricat.Netcatty.locale.zh-CN.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: binaricat.Netcatty +PackageVersion: 1.1.77 +PackageLocale: zh-CN +ShortDescription: AI 驱动的 SSH 客户端、SFTP 浏览器与终端管理器。 +Description: Netcatty 是一个基于 Electron、React 和 xterm.js 构建的功能丰富的 SSH 工作空间,内置 AI Agent(Catty Agent)、分屏终端、Vault 多视图、SFTP 工作流与自定义主题,一应俱全。 +Tags: +- sftp +- ssh +- 命令行 +- 终端 +- 远程 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/binaricat/Netcatty/1.1.77/binaricat.Netcatty.yaml b/manifests/b/binaricat/Netcatty/1.1.77/binaricat.Netcatty.yaml new file mode 100644 index 000000000000..e5d26686d3f8 --- /dev/null +++ b/manifests/b/binaricat/Netcatty/1.1.77/binaricat.Netcatty.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: binaricat.Netcatty +PackageVersion: 1.1.77 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 9bf99d2b13feb63e7853d3fab962648c51193ffc Mon Sep 17 00:00:00 2001 From: Rodrigo Borges de Oliveira Date: Tue, 18 Aug 2026 15:57:00 -0300 Subject: [PATCH 066/436] New version: raphamorim.rio version 0.5.20 (#415956) --- .../rio/0.5.20/raphamorim.rio.installer.yaml | 39 +++++++++++++++++++ .../0.5.20/raphamorim.rio.locale.en-US.yaml | 27 +++++++++++++ .../raphamorim/rio/0.5.20/raphamorim.rio.yaml | 8 ++++ 3 files changed, 74 insertions(+) create mode 100644 manifests/r/raphamorim/rio/0.5.20/raphamorim.rio.installer.yaml create mode 100644 manifests/r/raphamorim/rio/0.5.20/raphamorim.rio.locale.en-US.yaml create mode 100644 manifests/r/raphamorim/rio/0.5.20/raphamorim.rio.yaml diff --git a/manifests/r/raphamorim/rio/0.5.20/raphamorim.rio.installer.yaml b/manifests/r/raphamorim/rio/0.5.20/raphamorim.rio.installer.yaml new file mode 100644 index 000000000000..3bdd9a303dc1 --- /dev/null +++ b/manifests/r/raphamorim/rio/0.5.20/raphamorim.rio.installer.yaml @@ -0,0 +1,39 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: raphamorim.rio +PackageVersion: 0.5.20 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2026-08-11 +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/Rio' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/raphamorim/rio/releases/download/v0.5.20/Rio-installer-x86_64.msi + InstallerSha256: F0B819BC11C7C49BE8632142F0DB3AB4E0EECF48842CABA9AAAF0199B3119309 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + ProductCode: '{6BF17517-2EE1-4551-ADCC-1548F4851BD4}' + AppsAndFeaturesEntries: + - ProductCode: '{6BF17517-2EE1-4551-ADCC-1548F4851BD4}' + UpgradeCode: '{87C21C74-DBD5-4584-89D5-46D9CD0C40A8}' +- Architecture: arm64 + InstallerUrl: https://github.com/raphamorim/rio/releases/download/v0.5.20/Rio-installer-aarch64.msi + InstallerSha256: 9487EF2670A0A1E81746DA1EC51E51465099FC2A58BDA3D100BF23B032E18452 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 + ProductCode: '{C990BEC9-EB07-4C65-8B2E-6B68F2A42F22}' + AppsAndFeaturesEntries: + - ProductCode: '{C990BEC9-EB07-4C65-8B2E-6B68F2A42F22}' + UpgradeCode: '{87C21C74-DBD5-4584-89D5-46D9CD0C40A8}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/raphamorim/rio/0.5.20/raphamorim.rio.locale.en-US.yaml b/manifests/r/raphamorim/rio/0.5.20/raphamorim.rio.locale.en-US.yaml new file mode 100644 index 000000000000..4c2ece3146e4 --- /dev/null +++ b/manifests/r/raphamorim/rio/0.5.20/raphamorim.rio.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: raphamorim.rio +PackageVersion: 0.5.20 +PackageLocale: en-US +Publisher: Raphael Amorim +PublisherUrl: https://github.com/raphamorim/rio +PublisherSupportUrl: https://github.com/raphamorim/rio/issues +Author: Raphael Amorim +PackageName: Rio +PackageUrl: https://github.com/raphamorim/rio +License: MIT +LicenseUrl: https://github.com/raphamorim/rio/blob/HEAD/LICENSE +Copyright: Copyright (c) 2022-present Raphael Amorim +CopyrightUrl: https://raw.githubusercontent.com/raphamorim/rio/main/LICENSE +ShortDescription: Rio terminal is a hardware-accelerated GPU terminal emulator, focusing to run in desktops and browsers. +Description: |- + Rio terminal is a hardware-accelerated GPU terminal emulator, focusing to run in desktops and browsers. + The supported platforms currently consist of BSD, Linux, MacOS and Windows. +Moniker: rio +Tags: +- cross-platform +- terminal +- terminal-emulators +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/raphamorim/rio/0.5.20/raphamorim.rio.yaml b/manifests/r/raphamorim/rio/0.5.20/raphamorim.rio.yaml new file mode 100644 index 000000000000..86c2dab36fb8 --- /dev/null +++ b/manifests/r/raphamorim/rio/0.5.20/raphamorim.rio.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: raphamorim.rio +PackageVersion: 0.5.20 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 71d8e485e862dab892be923331f34c64b81b230e Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Tue, 18 Aug 2026 11:57:12 -0700 Subject: [PATCH 067/436] Automatic update of LMCP.LocalMCP from 3.0.159 to 3.0.400 (#416028) --- .../3.0.400/LMCP.LocalMCP.installer.yaml | 20 +++++++++++ .../3.0.400/LMCP.LocalMCP.locale.en-US.yaml | 35 +++++++++++++++++++ .../LMCP/LocalMCP/3.0.400/LMCP.LocalMCP.yaml | 8 +++++ 3 files changed, 63 insertions(+) create mode 100644 manifests/l/LMCP/LocalMCP/3.0.400/LMCP.LocalMCP.installer.yaml create mode 100644 manifests/l/LMCP/LocalMCP/3.0.400/LMCP.LocalMCP.locale.en-US.yaml create mode 100644 manifests/l/LMCP/LocalMCP/3.0.400/LMCP.LocalMCP.yaml diff --git a/manifests/l/LMCP/LocalMCP/3.0.400/LMCP.LocalMCP.installer.yaml b/manifests/l/LMCP/LocalMCP/3.0.400/LMCP.LocalMCP.installer.yaml new file mode 100644 index 000000000000..4470419750c2 --- /dev/null +++ b/manifests/l/LMCP/LocalMCP/3.0.400/LMCP.LocalMCP.installer.yaml @@ -0,0 +1,20 @@ +# Automatically updated by the winget bot at 2026/Aug/12 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: LMCP.LocalMCP +PackageVersion: 3.0.400 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +Scope: machine +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://download.local-mcp.com/LMCP-Setup.exe + InstallerSha256: A6F3D803F77979BCF2A05520D871FCB493DB3026F949D67B5D218EF8C530C4EA + InstallerLocale: en-US + InstallerSwitches: + Silent: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART + SilentWithProgress: /SILENT /SUPPRESSMSGBOXES /NORESTART +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/LMCP/LocalMCP/3.0.400/LMCP.LocalMCP.locale.en-US.yaml b/manifests/l/LMCP/LocalMCP/3.0.400/LMCP.LocalMCP.locale.en-US.yaml new file mode 100644 index 000000000000..3ff10c5719e5 --- /dev/null +++ b/manifests/l/LMCP/LocalMCP/3.0.400/LMCP.LocalMCP.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Automatically updated by the winget bot at 2026/Aug/12 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: LMCP.LocalMCP +PackageVersion: 3.0.400 +PackageLocale: en-US +Publisher: LMCP +PublisherUrl: https://www.local-mcp.com +PublisherSupportUrl: https://github.com/lanchuske/local-mcp-releases/issues +Author: Dario Lanchuske +PackageName: LMCP +PackageUrl: https://www.local-mcp.com +License: Proprietary +LicenseUrl: https://www.local-mcp.com/en/tos +ShortDescription: Connect AI agents to your local apps — Outlook, Calendar, Teams, Excel, Word. 95+ tools, 100% local. +Description: |- + LMCP is a native MCP server that connects AI agents (Claude, ChatGPT, Cursor, VS Code) to your local desktop apps. + Read and send email via Outlook, manage calendar events, read Teams messages, access OneDrive files, + create Excel and Word documents — all running locally on your machine. + No cloud processing, no API keys, no OAuth tokens. GDPR compliant by architecture. +Tags: +- ai +- mcp +- automation +- email +- outlook +- teams +- onedrive +- excel +- productivity +- local +- privacy +ReleaseNotesUrl: https://github.com/lanchuske/local-mcp-releases/releases +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LMCP/LocalMCP/3.0.400/LMCP.LocalMCP.yaml b/manifests/l/LMCP/LocalMCP/3.0.400/LMCP.LocalMCP.yaml new file mode 100644 index 000000000000..ae53bb5b9bf3 --- /dev/null +++ b/manifests/l/LMCP/LocalMCP/3.0.400/LMCP.LocalMCP.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2026/Aug/12 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: LMCP.LocalMCP +PackageVersion: 3.0.400 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From ddee8da26148bc0b7ce434f7905757a5e3c660ec Mon Sep 17 00:00:00 2001 From: powerstacks-wingetbot Date: Tue, 18 Aug 2026 13:57:26 -0500 Subject: [PATCH 068/436] New version: NewRelic.InfrastructureAgent version 1.79.0 (#416219) --- ...ewRelic.InfrastructureAgent.installer.yaml | 19 ++++++++++++++++++ ...elic.InfrastructureAgent.locale.en-US.yaml | 20 +++++++++++++++++++ ...elic.InfrastructureAgent.locale.zh-CN.yaml | 9 +++++++++ .../1.79.0/NewRelic.InfrastructureAgent.yaml | 8 ++++++++ 4 files changed, 56 insertions(+) create mode 100644 manifests/n/NewRelic/InfrastructureAgent/1.79.0/NewRelic.InfrastructureAgent.installer.yaml create mode 100644 manifests/n/NewRelic/InfrastructureAgent/1.79.0/NewRelic.InfrastructureAgent.locale.en-US.yaml create mode 100644 manifests/n/NewRelic/InfrastructureAgent/1.79.0/NewRelic.InfrastructureAgent.locale.zh-CN.yaml create mode 100644 manifests/n/NewRelic/InfrastructureAgent/1.79.0/NewRelic.InfrastructureAgent.yaml diff --git a/manifests/n/NewRelic/InfrastructureAgent/1.79.0/NewRelic.InfrastructureAgent.installer.yaml b/manifests/n/NewRelic/InfrastructureAgent/1.79.0/NewRelic.InfrastructureAgent.installer.yaml new file mode 100644 index 000000000000..230e7c70536f --- /dev/null +++ b/manifests/n/NewRelic/InfrastructureAgent/1.79.0/NewRelic.InfrastructureAgent.installer.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: NewRelic.InfrastructureAgent +PackageVersion: 1.79.0 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ProductCode: '{7ADFE46F-FEF7-48A5-A30F-DDA1816EE579}' +ReleaseDate: 2026-08-12 +AppsAndFeaturesEntries: +- ProductCode: '{7ADFE46F-FEF7-48A5-A30F-DDA1816EE579}' + UpgradeCode: '{527B3F06-B23D-426A-9999-C77506EE6B28}' +Installers: +- Architecture: x64 + InstallerUrl: https://download.newrelic.com/infrastructure_agent/windows/newrelic-infra.1.79.0.msi + InstallerSha256: C52C997F955732F2756526C02622BC7352C5890BB809D8E56B1D981CC21524AF +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/NewRelic/InfrastructureAgent/1.79.0/NewRelic.InfrastructureAgent.locale.en-US.yaml b/manifests/n/NewRelic/InfrastructureAgent/1.79.0/NewRelic.InfrastructureAgent.locale.en-US.yaml new file mode 100644 index 000000000000..afd356f43c6a --- /dev/null +++ b/manifests/n/NewRelic/InfrastructureAgent/1.79.0/NewRelic.InfrastructureAgent.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: NewRelic.InfrastructureAgent +PackageVersion: 1.79.0 +PackageLocale: en-US +Publisher: New Relic, Inc. +PublisherUrl: https://newrelic.com/ +PublisherSupportUrl: https://github.com/newrelic/infrastructure-agent/issues +PrivacyUrl: https://newrelic.com/termsandconditions/privacy +Author: New Relic, Inc. +PackageName: New Relic Infrastructure Agent +PackageUrl: https://docs.newrelic.com/docs/infrastructure/infrastructure-agent/windows-installation/windows-msi-installer/ +License: Apache-2.0 +LicenseUrl: https://github.com/newrelic/infrastructure-agent/blob/HEAD/LICENSE +Copyright: Copyright 2026 New Relic +CopyrightUrl: https://newrelic.com/termsandconditions/terms +ShortDescription: Collect inventory data and metrics of your hosts and sends it to the New Relic platform. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NewRelic/InfrastructureAgent/1.79.0/NewRelic.InfrastructureAgent.locale.zh-CN.yaml b/manifests/n/NewRelic/InfrastructureAgent/1.79.0/NewRelic.InfrastructureAgent.locale.zh-CN.yaml new file mode 100644 index 000000000000..392206d82e84 --- /dev/null +++ b/manifests/n/NewRelic/InfrastructureAgent/1.79.0/NewRelic.InfrastructureAgent.locale.zh-CN.yaml @@ -0,0 +1,9 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: NewRelic.InfrastructureAgent +PackageVersion: 1.79.0 +PackageLocale: zh-CN +ShortDescription: 收集主机库存数据和指标,并将其发送至 New Relic 平台。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NewRelic/InfrastructureAgent/1.79.0/NewRelic.InfrastructureAgent.yaml b/manifests/n/NewRelic/InfrastructureAgent/1.79.0/NewRelic.InfrastructureAgent.yaml new file mode 100644 index 000000000000..adc00c14e6a4 --- /dev/null +++ b/manifests/n/NewRelic/InfrastructureAgent/1.79.0/NewRelic.InfrastructureAgent.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: NewRelic.InfrastructureAgent +PackageVersion: 1.79.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From d7c39f3ef96ee1b1504c53563410cdc31bccf72d Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:57:45 +0800 Subject: [PATCH 069/436] New version: DuxburySystems.DBT version 15.1.0000 (15.1) (#416280) --- .../DuxburySystems.DBT.installer.yaml | 25 +++++++++++++++++++ .../DuxburySystems.DBT.locale.en-US.yaml | 24 ++++++++++++++++++ .../DuxburySystems.DBT.locale.zh-CN.yaml | 15 +++++++++++ .../DBT/15.1.0000/DuxburySystems.DBT.yaml | 8 ++++++ 4 files changed, 72 insertions(+) create mode 100644 manifests/d/DuxburySystems/DBT/15.1.0000/DuxburySystems.DBT.installer.yaml create mode 100644 manifests/d/DuxburySystems/DBT/15.1.0000/DuxburySystems.DBT.locale.en-US.yaml create mode 100644 manifests/d/DuxburySystems/DBT/15.1.0000/DuxburySystems.DBT.locale.zh-CN.yaml create mode 100644 manifests/d/DuxburySystems/DBT/15.1.0000/DuxburySystems.DBT.yaml diff --git a/manifests/d/DuxburySystems/DBT/15.1.0000/DuxburySystems.DBT.installer.yaml b/manifests/d/DuxburySystems/DBT/15.1.0000/DuxburySystems.DBT.installer.yaml new file mode 100644 index 000000000000..575b168be09d --- /dev/null +++ b/manifests/d/DuxburySystems/DBT/15.1.0000/DuxburySystems.DBT.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: DuxburySystems.DBT +PackageVersion: 15.1.0000 +InstallerType: msi +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +Protocols: +- duxbraille +FileExtensions: +- dxb +- dxp +ProductCode: '{CD688FDD-BF16-414D-8AC0-C393D8412285}' +ReleaseDate: 2026-08-07 +AppsAndFeaturesEntries: +- UpgradeCode: '{821B7A43-D044-4236-9361-0409A25F57D1}' +Installers: +- Architecture: x86 + InstallerUrl: https://www.duxburysystems.org/downloads/dbt_15.1/dbt-1501.msi + InstallerSha256: 6207823ECE6B72B550BC0FC0788E1FF795737445DB666B1AFF148221F1C7E46B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DuxburySystems/DBT/15.1.0000/DuxburySystems.DBT.locale.en-US.yaml b/manifests/d/DuxburySystems/DBT/15.1.0000/DuxburySystems.DBT.locale.en-US.yaml new file mode 100644 index 000000000000..8e398cd05dfd --- /dev/null +++ b/manifests/d/DuxburySystems/DBT/15.1.0000/DuxburySystems.DBT.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: DuxburySystems.DBT +PackageVersion: 15.1.0000 +PackageLocale: en-US +Publisher: Duxbury Systems, Inc. +PublisherUrl: https://www.duxburysystems.com/ +PublisherSupportUrl: https://www.duxburysystems.com/contact.asp +Author: Duxbury Systems, Inc. +PackageName: DBT +PackageUrl: https://www.duxburysystems.com/DBT_main.asp +License: Proprietary +Copyright: Copyright (c) 1975-2026, Duxbury Systems, Inc. All rights reserved. +ShortDescription: Braille Translation Software +Tags: +- braille +# ReleaseNotesUrl: https://www.duxburysystems.com/dbtwhst.asp +PurchaseUrl: https://www.duxburysystems.com/prices.asp +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://www.duxburysystems.com/faq.asp +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DuxburySystems/DBT/15.1.0000/DuxburySystems.DBT.locale.zh-CN.yaml b/manifests/d/DuxburySystems/DBT/15.1.0000/DuxburySystems.DBT.locale.zh-CN.yaml new file mode 100644 index 000000000000..19346d509b11 --- /dev/null +++ b/manifests/d/DuxburySystems/DBT/15.1.0000/DuxburySystems.DBT.locale.zh-CN.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: DuxburySystems.DBT +PackageVersion: 15.1.0000 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 盲文翻译软件 +Tags: +- 盲文 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://www.duxburysystems.com/faq.asp +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DuxburySystems/DBT/15.1.0000/DuxburySystems.DBT.yaml b/manifests/d/DuxburySystems/DBT/15.1.0000/DuxburySystems.DBT.yaml new file mode 100644 index 000000000000..9e69a424fe51 --- /dev/null +++ b/manifests/d/DuxburySystems/DBT/15.1.0000/DuxburySystems.DBT.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: DuxburySystems.DBT +PackageVersion: 15.1.0000 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From a2ce162991a13e681ac3882b37606bb4723792b1 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Wed, 19 Aug 2026 02:58:02 +0800 Subject: [PATCH 070/436] New version: B3log.SiYuan version 3.8.0 (#416311) --- .../SiYuan/3.8.0/B3log.SiYuan.installer.yaml | 42 +++++++++++++++++++ .../3.8.0/B3log.SiYuan.locale.en-US.yaml | 39 +++++++++++++++++ .../3.8.0/B3log.SiYuan.locale.zh-CN.yaml | 39 +++++++++++++++++ .../b/B3log/SiYuan/3.8.0/B3log.SiYuan.yaml | 8 ++++ 4 files changed, 128 insertions(+) create mode 100644 manifests/b/B3log/SiYuan/3.8.0/B3log.SiYuan.installer.yaml create mode 100644 manifests/b/B3log/SiYuan/3.8.0/B3log.SiYuan.locale.en-US.yaml create mode 100644 manifests/b/B3log/SiYuan/3.8.0/B3log.SiYuan.locale.zh-CN.yaml create mode 100644 manifests/b/B3log/SiYuan/3.8.0/B3log.SiYuan.yaml diff --git a/manifests/b/B3log/SiYuan/3.8.0/B3log.SiYuan.installer.yaml b/manifests/b/B3log/SiYuan/3.8.0/B3log.SiYuan.installer.yaml new file mode 100644 index 000000000000..b04860571ae2 --- /dev/null +++ b/manifests/b/B3log/SiYuan/3.8.0/B3log.SiYuan.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: B3log.SiYuan +PackageVersion: 3.8.0 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- siyuan +ProductCode: c1e77cb7-68e1-5adb-ab29-ecf7379a9944 +ReleaseDate: 2026-08-12 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/siyuan-note/siyuan/releases/download/v3.8.0/siyuan-3.8.0-win.exe + InstallerSha256: B9A0272F231B2ACD9C36D2E81F3D8ACE8FC72C73B44ED43BA09D13D0632C4672 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/siyuan-note/siyuan/releases/download/v3.8.0/siyuan-3.8.0-win.exe + InstallerSha256: B9A0272F231B2ACD9C36D2E81F3D8ACE8FC72C73B44ED43BA09D13D0632C4672 + InstallerSwitches: + Custom: /allusers + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/siyuan-note/siyuan/releases/download/v3.8.0/siyuan-3.8.0-win-arm64.exe + InstallerSha256: 81E1FDC33BC15F3E950B5634BDF5F901F17EBE98FC98324569593EBEC06DF9E6 + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/siyuan-note/siyuan/releases/download/v3.8.0/siyuan-3.8.0-win-arm64.exe + InstallerSha256: 81E1FDC33BC15F3E950B5634BDF5F901F17EBE98FC98324569593EBEC06DF9E6 + InstallerSwitches: + Custom: /allusers + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/B3log/SiYuan/3.8.0/B3log.SiYuan.locale.en-US.yaml b/manifests/b/B3log/SiYuan/3.8.0/B3log.SiYuan.locale.en-US.yaml new file mode 100644 index 000000000000..72788577f482 --- /dev/null +++ b/manifests/b/B3log/SiYuan/3.8.0/B3log.SiYuan.locale.en-US.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: B3log.SiYuan +PackageVersion: 3.8.0 +PackageLocale: en-US +Publisher: Yunnan Liandi Technology Co., Ltd. +PublisherUrl: https://b3log.org/ +PublisherSupportUrl: https://b3log.org/siyuan/en/community.html +PrivacyUrl: https://b3log.org/siyuan/en/privacy.html +Author: Yunnan Liandi Technology Co., Ltd. +PackageName: SiYuan +PackageUrl: https://b3log.org/siyuan/en +License: AGPL-3.0 +LicenseUrl: https://github.com/siyuan-note/siyuan/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026-present, ld246.com +ShortDescription: The next generation PKM system, your digital garden +Description: SiYuan is a local-first personal knowledge management system, support fine-grained block-level reference and Markdown WYSIWYG. +Tags: +- backlink +- bi-directional-link +- block +- docs +- document +- editor +- graph +- knowledge +- knowledge-base +- markdown +- mind-map +- mindmap +- notes +- outliner +- pkm +- reference +ReleaseNotesUrl: https://github.com/siyuan-note/siyuan/releases/tag/v3.8.0 +PurchaseUrl: https://b3log.org/siyuan/en/pricing.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/B3log/SiYuan/3.8.0/B3log.SiYuan.locale.zh-CN.yaml b/manifests/b/B3log/SiYuan/3.8.0/B3log.SiYuan.locale.zh-CN.yaml new file mode 100644 index 000000000000..1c569f16067c --- /dev/null +++ b/manifests/b/B3log/SiYuan/3.8.0/B3log.SiYuan.locale.zh-CN.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: B3log.SiYuan +PackageVersion: 3.8.0 +PackageLocale: zh-CN +Publisher: Yunnan Liandi Technology Co., Ltd. +PublisherUrl: https://b3log.org/ +PublisherSupportUrl: https://b3log.org/siyuan/community.html +PrivacyUrl: https://b3log.org/siyuan/privacy.html +Author: 云南链滴科技有限公司 +PackageName: SiYuan +PackageUrl: https://b3log.org/siyuan +License: AGPL-3.0 +LicenseUrl: https://b3log.org/siyuan/eula.html +Copyright: Copyright (c) 2026-present, ld246.com +ShortDescription: 下一代的个人知识管理系统,你的数字花园 +Description: 思源笔记是一款本地优先的个人知识管理系统,支持细粒度块级引用和 Markdown 所见即所得。 +Tags: +- markdown +- 个人知识管理 +- 内容块 +- 双向链接 +- 反向链接 +- 图谱 +- 大纲 +- 引用 +- 思源笔记 +- 思维导图 +- 文档 +- 知识 +- 知识库 +- 笔记 +- 编辑器 +- 脑图 +ReleaseNotesUrl: https://github.com/siyuan-note/siyuan/releases/tag/v3.8.0 +PurchaseUrl: https://b3log.org/siyuan/pricing.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/B3log/SiYuan/3.8.0/B3log.SiYuan.yaml b/manifests/b/B3log/SiYuan/3.8.0/B3log.SiYuan.yaml new file mode 100644 index 000000000000..aee69654313a --- /dev/null +++ b/manifests/b/B3log/SiYuan/3.8.0/B3log.SiYuan.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: B3log.SiYuan +PackageVersion: 3.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 570785b835a01b57b853ce8935e083064e4a5a93 Mon Sep 17 00:00:00 2001 From: Rodrigo Borges de Oliveira Date: Tue, 18 Aug 2026 15:58:15 -0300 Subject: [PATCH 071/436] New version: raphamorim.rio version 0.5.21 (#416372) --- .../rio/0.5.21/raphamorim.rio.installer.yaml | 39 +++++++++++++++++++ .../0.5.21/raphamorim.rio.locale.en-US.yaml | 27 +++++++++++++ .../raphamorim/rio/0.5.21/raphamorim.rio.yaml | 8 ++++ 3 files changed, 74 insertions(+) create mode 100644 manifests/r/raphamorim/rio/0.5.21/raphamorim.rio.installer.yaml create mode 100644 manifests/r/raphamorim/rio/0.5.21/raphamorim.rio.locale.en-US.yaml create mode 100644 manifests/r/raphamorim/rio/0.5.21/raphamorim.rio.yaml diff --git a/manifests/r/raphamorim/rio/0.5.21/raphamorim.rio.installer.yaml b/manifests/r/raphamorim/rio/0.5.21/raphamorim.rio.installer.yaml new file mode 100644 index 000000000000..ebb6b0a3b1f3 --- /dev/null +++ b/manifests/r/raphamorim/rio/0.5.21/raphamorim.rio.installer.yaml @@ -0,0 +1,39 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: raphamorim.rio +PackageVersion: 0.5.21 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2026-08-12 +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/Rio' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/raphamorim/rio/releases/download/v0.5.21/Rio-installer-x86_64.msi + InstallerSha256: C8A6F6094E7EE1B2DFCA5391D936BC6C2475B6657BC36853F65B34D94023FF21 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + ProductCode: '{2DEB8755-B189-4635-8F31-9FB12497CDD2}' + AppsAndFeaturesEntries: + - ProductCode: '{2DEB8755-B189-4635-8F31-9FB12497CDD2}' + UpgradeCode: '{87C21C74-DBD5-4584-89D5-46D9CD0C40A8}' +- Architecture: arm64 + InstallerUrl: https://github.com/raphamorim/rio/releases/download/v0.5.21/Rio-installer-aarch64.msi + InstallerSha256: 952E19A7277DA60CD3CD366AADB099F7CC243A252FE7F67EDBF5A3D60319960B + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 + ProductCode: '{327A5AD2-5013-40C6-AEFC-54B4E04C1243}' + AppsAndFeaturesEntries: + - ProductCode: '{327A5AD2-5013-40C6-AEFC-54B4E04C1243}' + UpgradeCode: '{87C21C74-DBD5-4584-89D5-46D9CD0C40A8}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/raphamorim/rio/0.5.21/raphamorim.rio.locale.en-US.yaml b/manifests/r/raphamorim/rio/0.5.21/raphamorim.rio.locale.en-US.yaml new file mode 100644 index 000000000000..70976d635d41 --- /dev/null +++ b/manifests/r/raphamorim/rio/0.5.21/raphamorim.rio.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: raphamorim.rio +PackageVersion: 0.5.21 +PackageLocale: en-US +Publisher: Raphael Amorim +PublisherUrl: https://github.com/raphamorim/rio +PublisherSupportUrl: https://github.com/raphamorim/rio/issues +Author: Raphael Amorim +PackageName: Rio +PackageUrl: https://github.com/raphamorim/rio +License: MIT +LicenseUrl: https://github.com/raphamorim/rio/blob/HEAD/LICENSE +Copyright: Copyright (c) 2022-present Raphael Amorim +CopyrightUrl: https://raw.githubusercontent.com/raphamorim/rio/main/LICENSE +ShortDescription: Rio terminal is a hardware-accelerated GPU terminal emulator, focusing to run in desktops and browsers. +Description: |- + Rio terminal is a hardware-accelerated GPU terminal emulator, focusing to run in desktops and browsers. + The supported platforms currently consist of BSD, Linux, MacOS and Windows. +Moniker: rio +Tags: +- cross-platform +- terminal +- terminal-emulators +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/raphamorim/rio/0.5.21/raphamorim.rio.yaml b/manifests/r/raphamorim/rio/0.5.21/raphamorim.rio.yaml new file mode 100644 index 000000000000..7207e5eb740c --- /dev/null +++ b/manifests/r/raphamorim/rio/0.5.21/raphamorim.rio.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: raphamorim.rio +PackageVersion: 0.5.21 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From d3a0a111b59fe8f6ae06c2f623be9580f215c4df Mon Sep 17 00:00:00 2001 From: Rodrigo Borges de Oliveira Date: Tue, 18 Aug 2026 15:58:30 -0300 Subject: [PATCH 072/436] New version: raphamorim.rio version 0.5.22 (#416391) --- .../rio/0.5.22/raphamorim.rio.installer.yaml | 39 +++++++++++++++++++ .../0.5.22/raphamorim.rio.locale.en-US.yaml | 27 +++++++++++++ .../raphamorim/rio/0.5.22/raphamorim.rio.yaml | 8 ++++ 3 files changed, 74 insertions(+) create mode 100644 manifests/r/raphamorim/rio/0.5.22/raphamorim.rio.installer.yaml create mode 100644 manifests/r/raphamorim/rio/0.5.22/raphamorim.rio.locale.en-US.yaml create mode 100644 manifests/r/raphamorim/rio/0.5.22/raphamorim.rio.yaml diff --git a/manifests/r/raphamorim/rio/0.5.22/raphamorim.rio.installer.yaml b/manifests/r/raphamorim/rio/0.5.22/raphamorim.rio.installer.yaml new file mode 100644 index 000000000000..93a1c1a61108 --- /dev/null +++ b/manifests/r/raphamorim/rio/0.5.22/raphamorim.rio.installer.yaml @@ -0,0 +1,39 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: raphamorim.rio +PackageVersion: 0.5.22 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2026-08-12 +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/Rio' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/raphamorim/rio/releases/download/v0.5.22/Rio-installer-x86_64.msi + InstallerSha256: 9B0E434E49A11AC273ABD9E221527CC5E6B4C1345544F91FF21C1E920E567A44 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + ProductCode: '{8BC5593D-2731-4BA7-BB47-C1DA236EA180}' + AppsAndFeaturesEntries: + - ProductCode: '{8BC5593D-2731-4BA7-BB47-C1DA236EA180}' + UpgradeCode: '{87C21C74-DBD5-4584-89D5-46D9CD0C40A8}' +- Architecture: arm64 + InstallerUrl: https://github.com/raphamorim/rio/releases/download/v0.5.22/Rio-installer-aarch64.msi + InstallerSha256: 3E2CCF4FA60161A69A0D8AEFDF0176A539AEC8B671AB084B4AE046F07525D996 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 + ProductCode: '{6A67CEFA-F41B-4030-8A1C-DB6CA49FAFC5}' + AppsAndFeaturesEntries: + - ProductCode: '{6A67CEFA-F41B-4030-8A1C-DB6CA49FAFC5}' + UpgradeCode: '{87C21C74-DBD5-4584-89D5-46D9CD0C40A8}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/raphamorim/rio/0.5.22/raphamorim.rio.locale.en-US.yaml b/manifests/r/raphamorim/rio/0.5.22/raphamorim.rio.locale.en-US.yaml new file mode 100644 index 000000000000..205921cf9ce8 --- /dev/null +++ b/manifests/r/raphamorim/rio/0.5.22/raphamorim.rio.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: raphamorim.rio +PackageVersion: 0.5.22 +PackageLocale: en-US +Publisher: Raphael Amorim +PublisherUrl: https://github.com/raphamorim/rio +PublisherSupportUrl: https://github.com/raphamorim/rio/issues +Author: Raphael Amorim +PackageName: Rio +PackageUrl: https://github.com/raphamorim/rio +License: MIT +LicenseUrl: https://github.com/raphamorim/rio/blob/HEAD/LICENSE +Copyright: Copyright (c) 2022-present Raphael Amorim +CopyrightUrl: https://raw.githubusercontent.com/raphamorim/rio/main/LICENSE +ShortDescription: Rio terminal is a hardware-accelerated GPU terminal emulator, focusing to run in desktops and browsers. +Description: |- + Rio terminal is a hardware-accelerated GPU terminal emulator, focusing to run in desktops and browsers. + The supported platforms currently consist of BSD, Linux, MacOS and Windows. +Moniker: rio +Tags: +- cross-platform +- terminal +- terminal-emulators +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/raphamorim/rio/0.5.22/raphamorim.rio.yaml b/manifests/r/raphamorim/rio/0.5.22/raphamorim.rio.yaml new file mode 100644 index 000000000000..15f9d2641f37 --- /dev/null +++ b/manifests/r/raphamorim/rio/0.5.22/raphamorim.rio.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: raphamorim.rio +PackageVersion: 0.5.22 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 7a1e0205f3bd4dc90284de11a33a21ad4c0cc9a7 Mon Sep 17 00:00:00 2001 From: UnownBot Date: Tue, 18 Aug 2026 14:58:52 -0400 Subject: [PATCH 073/436] New version: MongoDB.DatabaseTools version 100.18.0 (#416472) --- .../MongoDB.DatabaseTools.installer.yaml | 28 ++++++++++++++++ .../MongoDB.DatabaseTools.locale.en-US.yaml | 33 +++++++++++++++++++ .../100.18.0/MongoDB.DatabaseTools.yaml | 8 +++++ 3 files changed, 69 insertions(+) create mode 100644 manifests/m/MongoDB/DatabaseTools/100.18.0/MongoDB.DatabaseTools.installer.yaml create mode 100644 manifests/m/MongoDB/DatabaseTools/100.18.0/MongoDB.DatabaseTools.locale.en-US.yaml create mode 100644 manifests/m/MongoDB/DatabaseTools/100.18.0/MongoDB.DatabaseTools.yaml diff --git a/manifests/m/MongoDB/DatabaseTools/100.18.0/MongoDB.DatabaseTools.installer.yaml b/manifests/m/MongoDB/DatabaseTools/100.18.0/MongoDB.DatabaseTools.installer.yaml new file mode 100644 index 000000000000..6e76f7e051a6 --- /dev/null +++ b/manifests/m/MongoDB/DatabaseTools/100.18.0/MongoDB.DatabaseTools.installer.yaml @@ -0,0 +1,28 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: MongoDB.DatabaseTools +PackageVersion: 100.18.0 +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + InstallLocation: INSTALLLOCATION="" +UpgradeBehavior: install +ProductCode: '{62366959-C730-4DD1-9601-3565F94B389B}' +ReleaseDate: 2026-08-12 +AppsAndFeaturesEntries: +- DisplayName: MongoDB Tools 100 + ProductCode: '{62366959-C730-4DD1-9601-3565F94B389B}' + UpgradeCode: '{EFFC2F80-8F82-413F-A3BA-4A96F3D2883A}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/MongoDB/Tools/100' +Installers: +- Architecture: x64 + InstallerUrl: https://fastdl.mongodb.org/tools/db/mongodb-database-tools-windows-x86_64-100.18.0.msi + InstallerSha256: 4B1A0EECE6B17F764363A36F64A95F3D2D950037D0881276FD9ABBA1FCBFB12D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/MongoDB/DatabaseTools/100.18.0/MongoDB.DatabaseTools.locale.en-US.yaml b/manifests/m/MongoDB/DatabaseTools/100.18.0/MongoDB.DatabaseTools.locale.en-US.yaml new file mode 100644 index 000000000000..f70006a245f1 --- /dev/null +++ b/manifests/m/MongoDB/DatabaseTools/100.18.0/MongoDB.DatabaseTools.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: MongoDB.DatabaseTools +PackageVersion: 100.18.0 +PackageLocale: en-US +Publisher: MongoDB Inc. +PublisherUrl: https://www.mongodb.com/ +PublisherSupportUrl: https://support.mongodb.com/ +PrivacyUrl: https://www.mongodb.com/legal/privacy-policy +Author: MongoDB Inc. +PackageName: MongoDB Tools +PackageUrl: https://docs.mongodb.com/database-tools/ +License: Server Side Public License (SSPL) +LicenseUrl: https://www.mongodb.com/licensing/server-side-public-license +Copyright: Copyright © 2023 MongoDB, Inc. +CopyrightUrl: https://www.mongodb.com/licensing/server-side-public-license +ShortDescription: The MongoDB Database Tools are a collection of command-line utilities for working with a MongoDB deployment. +Moniker: mongodbtools +Tags: +- bsondump +- mongodump +- mongoexport +- mongofiles +- mongoimport +- mongorestore +- mongostat +- mongotop +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://www.mongodb.com/docs/database-tools/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MongoDB/DatabaseTools/100.18.0/MongoDB.DatabaseTools.yaml b/manifests/m/MongoDB/DatabaseTools/100.18.0/MongoDB.DatabaseTools.yaml new file mode 100644 index 000000000000..4dba33fe7368 --- /dev/null +++ b/manifests/m/MongoDB/DatabaseTools/100.18.0/MongoDB.DatabaseTools.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: MongoDB.DatabaseTools +PackageVersion: 100.18.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 6e46cdb67a4b075e0cb60b4ef3369de242d32e7a Mon Sep 17 00:00:00 2001 From: Rodrigo Borges de Oliveira Date: Tue, 18 Aug 2026 15:59:06 -0300 Subject: [PATCH 074/436] New version: raphamorim.rio version 0.5.23 (#416520) --- .../rio/0.5.23/raphamorim.rio.installer.yaml | 39 +++++++++++++++++++ .../0.5.23/raphamorim.rio.locale.en-US.yaml | 27 +++++++++++++ .../raphamorim/rio/0.5.23/raphamorim.rio.yaml | 8 ++++ 3 files changed, 74 insertions(+) create mode 100644 manifests/r/raphamorim/rio/0.5.23/raphamorim.rio.installer.yaml create mode 100644 manifests/r/raphamorim/rio/0.5.23/raphamorim.rio.locale.en-US.yaml create mode 100644 manifests/r/raphamorim/rio/0.5.23/raphamorim.rio.yaml diff --git a/manifests/r/raphamorim/rio/0.5.23/raphamorim.rio.installer.yaml b/manifests/r/raphamorim/rio/0.5.23/raphamorim.rio.installer.yaml new file mode 100644 index 000000000000..2f29ef5524ee --- /dev/null +++ b/manifests/r/raphamorim/rio/0.5.23/raphamorim.rio.installer.yaml @@ -0,0 +1,39 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: raphamorim.rio +PackageVersion: 0.5.23 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2026-08-12 +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/Rio' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/raphamorim/rio/releases/download/v0.5.23/Rio-installer-x86_64.msi + InstallerSha256: 7F8B0DDBFD700F9F24D437770A4CF2540B7FD2CC05503B59632F75B160790C4E + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + ProductCode: '{54F6C838-947A-4C09-9150-178A5D3111AF}' + AppsAndFeaturesEntries: + - ProductCode: '{54F6C838-947A-4C09-9150-178A5D3111AF}' + UpgradeCode: '{87C21C74-DBD5-4584-89D5-46D9CD0C40A8}' +- Architecture: arm64 + InstallerUrl: https://github.com/raphamorim/rio/releases/download/v0.5.23/Rio-installer-aarch64.msi + InstallerSha256: 79BC5EA48D6B55CD2AA7AFAF01E8BF15A54AE21EB2D3E1002F4CFBA5F937333D + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 + ProductCode: '{203A4388-7502-4FC8-A26C-95A9469C9673}' + AppsAndFeaturesEntries: + - ProductCode: '{203A4388-7502-4FC8-A26C-95A9469C9673}' + UpgradeCode: '{87C21C74-DBD5-4584-89D5-46D9CD0C40A8}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/raphamorim/rio/0.5.23/raphamorim.rio.locale.en-US.yaml b/manifests/r/raphamorim/rio/0.5.23/raphamorim.rio.locale.en-US.yaml new file mode 100644 index 000000000000..2df2b73a8c12 --- /dev/null +++ b/manifests/r/raphamorim/rio/0.5.23/raphamorim.rio.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: raphamorim.rio +PackageVersion: 0.5.23 +PackageLocale: en-US +Publisher: Raphael Amorim +PublisherUrl: https://github.com/raphamorim/rio +PublisherSupportUrl: https://github.com/raphamorim/rio/issues +Author: Raphael Amorim +PackageName: Rio +PackageUrl: https://github.com/raphamorim/rio +License: MIT +LicenseUrl: https://github.com/raphamorim/rio/blob/HEAD/LICENSE +Copyright: Copyright (c) 2022-present Raphael Amorim +CopyrightUrl: https://raw.githubusercontent.com/raphamorim/rio/main/LICENSE +ShortDescription: Rio terminal is a hardware-accelerated GPU terminal emulator, focusing to run in desktops and browsers. +Description: |- + Rio terminal is a hardware-accelerated GPU terminal emulator, focusing to run in desktops and browsers. + The supported platforms currently consist of BSD, Linux, MacOS and Windows. +Moniker: rio +Tags: +- cross-platform +- terminal +- terminal-emulators +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/raphamorim/rio/0.5.23/raphamorim.rio.yaml b/manifests/r/raphamorim/rio/0.5.23/raphamorim.rio.yaml new file mode 100644 index 000000000000..bd79c99a387e --- /dev/null +++ b/manifests/r/raphamorim/rio/0.5.23/raphamorim.rio.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: raphamorim.rio +PackageVersion: 0.5.23 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 9ada0193b77e5acb0ce7aec8096cd0ec67363eed Mon Sep 17 00:00:00 2001 From: PckgrTom <142365879+PckgrTom@users.noreply.github.com> Date: Wed, 19 Aug 2026 04:59:21 +1000 Subject: [PATCH 075/436] New version: TechSmith.Audiate version 2026.4.0 (#416626) --- .../2026.4.0/TechSmith.Audiate.installer.yaml | 26 ++++++++++++++ .../TechSmith.Audiate.locale.en-US.yaml | 35 +++++++++++++++++++ .../Audiate/2026.4.0/TechSmith.Audiate.yaml | 8 +++++ 3 files changed, 69 insertions(+) create mode 100644 manifests/t/TechSmith/Audiate/2026.4.0/TechSmith.Audiate.installer.yaml create mode 100644 manifests/t/TechSmith/Audiate/2026.4.0/TechSmith.Audiate.locale.en-US.yaml create mode 100644 manifests/t/TechSmith/Audiate/2026.4.0/TechSmith.Audiate.yaml diff --git a/manifests/t/TechSmith/Audiate/2026.4.0/TechSmith.Audiate.installer.yaml b/manifests/t/TechSmith/Audiate/2026.4.0/TechSmith.Audiate.installer.yaml new file mode 100644 index 000000000000..c5a74043b4f4 --- /dev/null +++ b/manifests/t/TechSmith/Audiate/2026.4.0/TechSmith.Audiate.installer.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: TechSmith.Audiate +PackageVersion: 2026.4.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +InstallModes: +- silent +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.EdgeWebView2Runtime + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: bc3871fa-d9e7-5868-bad9-e52aadd9d163 +AppsAndFeaturesEntries: +- DisplayName: Audiate 2026.2.1 + ProductCode: bc3871fa-d9e7-5868-bad9-e52aadd9d163 +Installers: +- Architecture: x64 + InstallerUrl: https://cdn-audiate.cloud.techsmith.com/audiate/Audiate%20Setup%202026.4.0.exe + InstallerSha256: B554A1342887ECD8B861C1C2EC1E880245F458F8CD5B16D1ECFF92132B726114 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/TechSmith/Audiate/2026.4.0/TechSmith.Audiate.locale.en-US.yaml b/manifests/t/TechSmith/Audiate/2026.4.0/TechSmith.Audiate.locale.en-US.yaml new file mode 100644 index 000000000000..1946f36377a6 --- /dev/null +++ b/manifests/t/TechSmith/Audiate/2026.4.0/TechSmith.Audiate.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: TechSmith.Audiate +PackageVersion: 2026.4.0 +PackageLocale: en-US +Publisher: TechSmith Corporation +PublisherUrl: https://www.techsmith.com/ +PublisherSupportUrl: https://support.techsmith.com/ +PrivacyUrl: https://www.techsmith.com/trust-center/privacy-policy/ +Author: TechSmith Corporation +PackageName: Camtasia Audiate +PackageUrl: https://www.techsmith.com/camtasia/audiate/ +License: Proprietary +Copyright: Copyright © 2025 TechSmith Corporation +ShortDescription: AI script generation, text-to-speech, and text-based video editing +Description: |- + Camtasia Audiate puts the power of AI in your hands to make video and audio editing easier than ever before. + + Text-based video and audio editing + The easiest way to edit video and audio. If you can edit a document, you can edit a video. + - Easily transcribe your video voice over + - Edit your audio and video at the same time + - Changes to your voice over are automatically synced to your video +Tags: +- AI +- Trial +- audio +- editing +PurchaseUrl: https://www.techsmith.com/store/audiatev +Documentations: +- DocumentLabel: Learn Audiate + DocumentUrl: https://www.techsmith.com/learn/tutorials/audiate/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/TechSmith/Audiate/2026.4.0/TechSmith.Audiate.yaml b/manifests/t/TechSmith/Audiate/2026.4.0/TechSmith.Audiate.yaml new file mode 100644 index 000000000000..2be1b1814d5e --- /dev/null +++ b/manifests/t/TechSmith/Audiate/2026.4.0/TechSmith.Audiate.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: TechSmith.Audiate +PackageVersion: 2026.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 01ba7ef9accde59f1ecdeb2bd9f605d3bbb8c52a Mon Sep 17 00:00:00 2001 From: PckgrTom <142365879+PckgrTom@users.noreply.github.com> Date: Wed, 19 Aug 2026 04:59:35 +1000 Subject: [PATCH 076/436] New version: Verizon.OneTalk version 4.0.8 (#416629) --- .../4.0.8/Verizon.OneTalk.installer.yaml | 20 +++++++++++++++++++ .../4.0.8/Verizon.OneTalk.locale.en-US.yaml | 14 +++++++++++++ .../OneTalk/4.0.8/Verizon.OneTalk.yaml | 8 ++++++++ 3 files changed, 42 insertions(+) create mode 100644 manifests/v/Verizon/OneTalk/4.0.8/Verizon.OneTalk.installer.yaml create mode 100644 manifests/v/Verizon/OneTalk/4.0.8/Verizon.OneTalk.locale.en-US.yaml create mode 100644 manifests/v/Verizon/OneTalk/4.0.8/Verizon.OneTalk.yaml diff --git a/manifests/v/Verizon/OneTalk/4.0.8/Verizon.OneTalk.installer.yaml b/manifests/v/Verizon/OneTalk/4.0.8/Verizon.OneTalk.installer.yaml new file mode 100644 index 000000000000..286e0cceb7d0 --- /dev/null +++ b/manifests/v/Verizon/OneTalk/4.0.8/Verizon.OneTalk.installer.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Verizon.OneTalk +PackageVersion: 4.0.8 +InstallerLocale: en-US +InstallerType: wix +ProductCode: '{DC86CF91-2C12-43BC-9471-9444D11542CD}' +ReleaseDate: 2026-08-04 +AppsAndFeaturesEntries: +- ProductCode: '{DC86CF91-2C12-43BC-9471-9444D11542CD}' + UpgradeCode: '{D7BC8916-D72D-4A32-85F7-A33D83EB8341}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\.\Verizon\One Talk' +Installers: +- Architecture: x64 + InstallerUrl: https://v4b.verizonwireless.com/onetalk/One_Talk-4.0.8-win64.msi + InstallerSha256: BBAD03B616ACA4332CD9BAFAC5228D1C8610F558F5F7BCCD7E39DA4E11D447C0 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/v/Verizon/OneTalk/4.0.8/Verizon.OneTalk.locale.en-US.yaml b/manifests/v/Verizon/OneTalk/4.0.8/Verizon.OneTalk.locale.en-US.yaml new file mode 100644 index 000000000000..3ce0f2b8d1e6 --- /dev/null +++ b/manifests/v/Verizon/OneTalk/4.0.8/Verizon.OneTalk.locale.en-US.yaml @@ -0,0 +1,14 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Verizon.OneTalk +PackageVersion: 4.0.8 +PackageLocale: en-US +Publisher: Verizon +PackageName: One Talk +PackageUrl: https://v4b.verizonwireless.com/onetalk/downloads.html +License: Proprietary +ShortDescription: | + Verizon One Talk is a versatile, multi-line phone solution for offices, remote work, or a combination of both. Your mobile phone number is shared across multiple devices, giving you access to calls and business telephone features while on the go. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/v/Verizon/OneTalk/4.0.8/Verizon.OneTalk.yaml b/manifests/v/Verizon/OneTalk/4.0.8/Verizon.OneTalk.yaml new file mode 100644 index 000000000000..ca28ce5afba5 --- /dev/null +++ b/manifests/v/Verizon/OneTalk/4.0.8/Verizon.OneTalk.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Verizon.OneTalk +PackageVersion: 4.0.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From dfee9ade1160a3a700ada31f73f319a12ac571ba Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:00:04 +0800 Subject: [PATCH 077/436] Move HaiYing.AionUi 1.9.9 to iOfficeAI.AionUi 1.9.9 (#418077) --- .../1.9.9/iOfficeAI.AionUi.installer.yaml | 32 +++++++++++ .../1.9.9/iOfficeAI.AionUi.locale.en-US.yaml | 57 +++++++++++++++++++ .../1.9.9/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 +++++++ .../AionUi/1.9.9/iOfficeAI.AionUi.yaml | 8 +++ 4 files changed, 116 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.9/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.9/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.9/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/1.9.9/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/1.9.9/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/1.9.9/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..7f6e6aa37d4c --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.9/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.9 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-04-08 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.9/AionUi-1.9.9-win-x64.exe + InstallerSha256: E05F3CE03BA89DFD1C25DD0FA31A1A9876C532EB73FDC21769512D74C9B25F8C + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.9/AionUi-1.9.9-win-x64.exe + InstallerSha256: E05F3CE03BA89DFD1C25DD0FA31A1A9876C532EB73FDC21769512D74C9B25F8C + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.9/AionUi-1.9.9-win-arm64.exe + InstallerSha256: F4887E41DF031879C03F00EE9B6B82A3A17000C7EA25D69E450E27379E323E48 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.9/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/1.9.9/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..0385efd4f558 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.9/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,57 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.9 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - chore(skills): disable auto-merge, use detached worktrees by @piorpua in https://github.com/iOfficeAI/AionUi/pull/2183 + - chore(skills): improve oss-pr quality checks documentation by @piorpua in https://github.com/iOfficeAI/AionUi/pull/2185 + - fix(team): resolve concurrency bugs with atomic repository operations by @lornestack in https://github.com/iOfficeAI/AionUi/pull/2169 + - fix(team): restore team mode and fix MCP stdio packaging by @zhuqingyv in https://github.com/iOfficeAI/AionUi/pull/2184 + - fix(acp): bypass Windows .cmd shims for npx invocation to fix MODULE_NOT_FOUND by @TCP404 in https://github.com/iOfficeAI/AionUi/pull/2171 + - fix(cron): resolve mode switching and conversation display bugs by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/2180 + - fix(utils): resolve symlink path on macOS when migrating cache dir back by @piorpua in https://github.com/iOfficeAI/AionUi/pull/2191 + - fix(pet): Windows drag, resize, and blur issues by @ringringlin in https://github.com/iOfficeAI/AionUi/pull/2179 + - fix(acp): unify detector agent ordering by @JerryLiu369 in https://github.com/iOfficeAI/AionUi/pull/2116 + - Add Russian UI localization by @AlexZander85 in https://github.com/iOfficeAI/AionUi/pull/2167 + - fix(webui): preserve custom remote username on restart by @puyujian in https://github.com/iOfficeAI/AionUi/pull/2174 + - fix(sendbox): restore placeholder visibility and compact default height by @ringringlin in https://github.com/iOfficeAI/AionUi/pull/2181 + - fix(sider): center team add button by @zhuqingyv in https://github.com/iOfficeAI/AionUi/pull/2198 + - fix(pet): prevent hit window from sticking the system mouse by @ringringlin in https://github.com/iOfficeAI/AionUi/pull/2193 + - feat(diagnostics): enhance startup environment logging by @TCP404 in https://github.com/iOfficeAI/AionUi/pull/2194 + - feat(aionrs): add native skill discovery support by @piorpua in https://github.com/iOfficeAI/AionUi/pull/2197 + - feat(pet): add done state and P0 animation/UX improvements by @ringringlin in https://github.com/iOfficeAI/AionUi/pull/2199 + - chore: bump version to 1.9.9 by @piorpua in https://github.com/iOfficeAI/AionUi/pull/2202 + - fix(layout): hide team entry points by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/2219 + New Contributors + - @AlexZander85 made their first contribution in https://github.com/iOfficeAI/AionUi/pull/2167 + - @puyujian made their first contribution in https://github.com/iOfficeAI/AionUi/pull/2174 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.9.8...v1.9.9 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.9.9 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.9/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/1.9.9/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..e9a5825990fe --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.9/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.9 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/1.9.9/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/1.9.9/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..bc74515b68cb --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/1.9.9/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 1.9.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 2e55ded4b0a6cba5b5bfe81aec783ed8fdf6eb99 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:02:19 +0800 Subject: [PATCH 078/436] Move HaiYing.AionUi 2.1.18 to iOfficeAI.AionUi 2.1.18 (#418101) --- .../2.1.18/iOfficeAI.AionUi.installer.yaml | 32 ++++++++++++ .../2.1.18/iOfficeAI.AionUi.locale.en-US.yaml | 51 +++++++++++++++++++ .../2.1.18/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 +++++++ .../AionUi/2.1.18/iOfficeAI.AionUi.yaml | 8 +++ 4 files changed, 110 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.18/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.18/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.18/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.18/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/2.1.18/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/2.1.18/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..c2923679b28c --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.18/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.18 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-06-12 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.18/AionUi-2.1.18-win-x64.exe + InstallerSha256: 1B30546BF5A2CCF6843871666187750D6C0669FE2681AD9DA67C9FB08B90CF92 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.18/AionUi-2.1.18-win-x64.exe + InstallerSha256: 1B30546BF5A2CCF6843871666187750D6C0669FE2681AD9DA67C9FB08B90CF92 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.18/AionUi-2.1.18-win-arm64.exe + InstallerSha256: 60F67968AADC891C789D37C43B658A1D9692EDAD5C8B76B05B4DC9BABDDCA2C9 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.18/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/2.1.18/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..7097f96afe04 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.18/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,51 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.18 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - fix(preview): office watch proxy url 404 in webui mode by @lornestack in https://github.com/iOfficeAI/AionUi/pull/3287 + - test(bootstrap): stop clobbering real out/ artifacts in build-with-builder test by @lornestack in https://github.com/iOfficeAI/AionUi/pull/3289 + - feat(stt): streaming voice input with live transcript by @lornestack in https://github.com/iOfficeAI/AionUi/pull/3291 + - fix(macos): add audio-input entitlement so microphone works under hardened runtime by @szafranski in https://github.com/iOfficeAI/AionUi/pull/3294 + - fix(windows-installer): recover from old uninstaller atomic cleanup long-path failures by @TCP404 in https://github.com/iOfficeAI/AionUi/pull/3296 + - fix(workspace): enable clickable folder picker in webui by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/3301 + - feat(assistant): deliver phase-1 governance settings by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/3277 + - polish(conversation): compact display defaults & tidier chat UI (#21–#24) by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/3306 + - test(e2e): cover cron busy retry flow by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/3298 + - Fix send gating during cancelling runtime by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3307 + - feat: stabilize team mode conversation runtime by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3309 + - fix(updater): wait for backend shutdown before install by @TCP404 in https://github.com/iOfficeAI/AionUi/pull/3270 + - chore: bump version to 2.1.18 by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3311 + - fix(ci): increase web-cli build heap by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3313 + New Contributors + - @szafranski made their first contribution in https://github.com/iOfficeAI/AionUi/pull/3294 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v2.1.17...v2.1.18 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v2.1.18 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.18/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/2.1.18/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..e5cc9836a316 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.18/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.18 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.18/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/2.1.18/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..f36a800cc240 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.18/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.18 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 8d4a428e313a096d7f68994a68a2691323d50e9b Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:02:33 +0800 Subject: [PATCH 079/436] Move HaiYing.AionUi 2.1.20 to iOfficeAI.AionUi 2.1.20 (#418107) --- .../2.1.20/iOfficeAI.AionUi.installer.yaml | 32 ++++++++++ .../2.1.20/iOfficeAI.AionUi.locale.en-US.yaml | 62 +++++++++++++++++++ .../2.1.20/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++ .../AionUi/2.1.20/iOfficeAI.AionUi.yaml | 8 +++ 4 files changed, 121 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.20/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.20/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.20/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.20/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/2.1.20/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/2.1.20/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..ef24af30a509 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.20/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.20 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-06-17 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.20/AionUi-2.1.20-win-x64.exe + InstallerSha256: 7647997F8B6C9997A5703D8581B7EFAE029EB3EAD3618FECF6537805CD143A78 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.20/AionUi-2.1.20-win-x64.exe + InstallerSha256: 7647997F8B6C9997A5703D8581B7EFAE029EB3EAD3618FECF6537805CD143A78 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.20/AionUi-2.1.20-win-arm64.exe + InstallerSha256: 2A06D2317B89AE634D0D912EEBD72149201597266EAC69665F41697475B41ED4 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.20/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/2.1.20/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..384683e6f50a --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.20/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,62 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.20 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + Highlights + ⭐ Meet the AionUi Butler — your built-in assistant for AionUi itself + This release bundles AionCore v0.1.31, which introduces a brand-new built-in assistant: the AionUi Butler. Instead of digging through settings menus, you can now just talk to it in plain language to manage AionUi itself — across three areas: + - Configure — create and edit assistants, attach skills, manage MCP servers and LLM providers, and change app/UI settings, all by asking. + - Diagnose — when something isn't working, the Butler can inspect your conversations, read logs, and check the health of your providers, scheduled tasks, teams, and MCP connections to tell you what went wrong. + - Remote access — ask it to put your local WebUI online and it walks you through a one-click public link (via an automatic Cloudflare tunnel) — no networking knowledge needed, no jargon. It even sets everything up and verifies the link works before handing it to you. + Just pick the AionUi Butler assistant and start chatting — it's the easiest way to set up, fix, and share your AionUi. + Smarter Update Notifications + - Updates no longer interrupt you with a blocking pop-up. New versions now appear as a quiet card in the bottom-right corner that you can dismiss or minimize and keep working. + - Downloads are smarter: repeated download requests no longer pile up, you can truly cancel a download in progress, and an already-downloaded update is remembered so you don't have to fetch it again. + Cleaner Model & Thinking Controls + - The thinking-level (thought depth) selector now lives directly inside the header model menu for ACP and Aion CLI conversations, so picking a model and its reasoning level is one tidy step instead of two separate controls. + Team Mode Reliability + - Team conversations stay in sync more reliably: queued team messages are tracked correctly, and a turn's status clears properly when a teammate finishes. + - When you upgrade a solo chat into a team, handoff messages now wait for the original conversation to finish its turn before being delivered, preventing dropped or out-of-order messages. + Codex Image Handling + - Images generated in Codex ACP conversations now display inline in tool cards and the View Steps summary, with a lightweight hover-to-download button. Oversized raw output is trimmed automatically so previews load cleanly. + Bug Fixes + - Fixed a wide empty gap that appeared above the list on the assistant management page. + What's Changed + - chore(docs): update WeChat group QR code to wx-12 by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/3343 + - 优化 Codex ACP 图片预览与下载 by @Jassy930 in https://github.com/iOfficeAI/AionUi/pull/2935 + - fix(assistant): remove leftover gap above assistant list by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/3344 + - feat(team): handle queued team runtime metadata by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3349 + - fix(team): wait for solo turn before handoff queue drain by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3353 + - feat(update): add singleton update notification by @TCP404 in https://github.com/iOfficeAI/AionUi/pull/3351 + - feat(agent): combine header model thinking selector by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3358 + - chore: bump version to 2.1.20 by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3359 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v2.1.19...v2.1.20 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v2.1.20 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.20/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/2.1.20/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..4ad16bf3add8 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.20/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.20 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.20/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/2.1.20/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..b8ae0bb58013 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.20/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.20 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From e6bfd6bbd8178d6feeb0450a48ce2695c31ffff1 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:02:52 +0800 Subject: [PATCH 080/436] Move HaiYing.AionUi 2.1.21 to iOfficeAI.AionUi 2.1.21 (#418109) --- .../2.1.21/iOfficeAI.AionUi.installer.yaml | 32 ++++++++++++++ .../2.1.21/iOfficeAI.AionUi.locale.en-US.yaml | 43 +++++++++++++++++++ .../2.1.21/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++++ .../AionUi/2.1.21/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 102 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.21/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.21/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.21/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.21/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/2.1.21/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/2.1.21/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..4c92f49fd15b --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.21/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.21 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-06-19 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.21/AionUi-2.1.21-win-x64.exe + InstallerSha256: B3576976B1DFAB7E9C25E5A6E6B422119219041A7EFD09317F942DC335233AED + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.21/AionUi-2.1.21-win-x64.exe + InstallerSha256: B3576976B1DFAB7E9C25E5A6E6B422119219041A7EFD09317F942DC335233AED + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.21/AionUi-2.1.21-win-arm64.exe + InstallerSha256: EC7733534800EA03CF560A6BAA55DDA2DF0250B5631C1940A813E55A182E4606 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.21/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/2.1.21/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..ccbda824eb1d --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.21/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.21 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - fix(i18n): wire pt-BR into language pickers and main-process loader by @lornestack in https://github.com/iOfficeAI/AionUi/pull/3361 + - fix(preview): build valid file:// URL for PDF preview on Windows by @lornestack in https://github.com/iOfficeAI/AionUi/pull/3366 + - fix(preview): restore local html and selected file reopen by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3369 + - feat(i18n): add German (de-DE) locale by @oliverhees in https://github.com/iOfficeAI/AionUi/pull/3370 + - chore: bump version to 2.1.21 by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3373 + - chore(skills): remove PR automation skills by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3374 + New Contributors + - @oliverhees made their first contribution in https://github.com/iOfficeAI/AionUi/pull/3370 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v2.1.20...v2.1.21 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v2.1.21 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.21/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/2.1.21/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..7fd67e343e7e --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.21/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.21 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.21/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/2.1.21/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..cde698893399 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.21/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.21 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 7bd97492d805aab960d7c746c1ca5f4d19cbc6e8 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:03:07 +0800 Subject: [PATCH 081/436] Move HaiYing.AionUi 2.1.22 to iOfficeAI.AionUi 2.1.22 (#418111) --- .../2.1.22/iOfficeAI.AionUi.installer.yaml | 32 +++++++++++++ .../2.1.22/iOfficeAI.AionUi.locale.en-US.yaml | 45 +++++++++++++++++++ .../2.1.22/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 ++++++++ .../AionUi/2.1.22/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 104 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.22/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.22/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.22/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.22/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/2.1.22/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/2.1.22/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..85fe13396202 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.22/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.22 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-06-22 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.22/AionUi-2.1.22-win-x64.exe + InstallerSha256: E7BD955BA6EC6EEFBC2E01B1523F7BB6F7A258833F46625FB5EF7AAEBEAAA73F + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.22/AionUi-2.1.22-win-x64.exe + InstallerSha256: E7BD955BA6EC6EEFBC2E01B1523F7BB6F7A258833F46625FB5EF7AAEBEAAA73F + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.22/AionUi-2.1.22-win-arm64.exe + InstallerSha256: 659E9F0E3D14A6BB8677345C9665211EAE16F84435B5D16544DF9872B4AC9780 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.22/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/2.1.22/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..9ebecc8b067d --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.22/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,45 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.22 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - fix(installer): harden win arm64 install by @TCP404 in https://github.com/iOfficeAI/AionUi/pull/3387 + - fix(preview): improve file diffs and local file links by @CottChen in https://github.com/iOfficeAI/AionUi/pull/3379 + - fix(mcp): guard message calls against use-after-unmount crash by @lornestack in https://github.com/iOfficeAI/AionUi/pull/3376 + - fix(conversation): localize OpenClaw Gateway startup error by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3392 + - feat(acp): preserve redacted raw error in AIONUI_INTERNAL_ERROR fallback by @lornestack in https://github.com/iOfficeAI/AionUi/pull/3393 + - fix(markdown): support local file hash line links by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3396 + - ci(sentry): validate sourcemap upload release config by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/3397 + - chore: bump version to 2.1.22 by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3400 + New Contributors + - @CottChen made their first contribution in https://github.com/iOfficeAI/AionUi/pull/3379 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v2.1.21...v2.1.22 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v2.1.22 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.22/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/2.1.22/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..8018e76893b8 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.22/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.22 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.22/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/2.1.22/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..b6bcff095a75 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.22/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.22 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 70f198d79306dd3e353c6eb4922a179003fd868b Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:06:09 +0800 Subject: [PATCH 082/436] Move HaiYing.AionUi 2.1.39 to iOfficeAI.AionUi 2.1.39 (#418145) --- .../2.1.39/iOfficeAI.AionUi.installer.yaml | 32 +++++++++ .../2.1.39/iOfficeAI.AionUi.locale.en-US.yaml | 72 +++++++++++++++++++ .../2.1.39/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 +++++ .../AionUi/2.1.39/iOfficeAI.AionUi.yaml | 8 +++ 4 files changed, 131 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.39/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.39/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.39/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.39/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/2.1.39/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/2.1.39/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..ccaeebeab515 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.39/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.39 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-07-21 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.39/AionUi-2.1.39-win-x64.exe + InstallerSha256: 4C71D1C19544A736BD6DFEAB9B879565000EDEAB748F54CC3272DC7EF235D7D8 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.39/AionUi-2.1.39-win-x64.exe + InstallerSha256: 4C71D1C19544A736BD6DFEAB9B879565000EDEAB748F54CC3272DC7EF235D7D8 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.39/AionUi-2.1.39-win-arm64.exe + InstallerSha256: 702A98C909C5E0D3F34AFB18CC5D8B44808613A577111D21869BE25DF51DDFF1 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.39/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/2.1.39/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..9418a50c1526 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.39/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.39 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + Highlights + 🎁 AionUi × Kimi Partnership — Free Subscription Plans for Contributors + - AionUi has entered a strategic partnership with Kimi (Moonshot AI). To thank our community, Kimi is offering free "Allegretto" subscription plans ($39/mo · ¥199/mo value) to AionUi contributors. + - Campaign runs July 21 – September 21, 2026. Two ways to claim: veteran contributors with 10+ merged PRs in the AionUi repo, or 3 newly merged PRs during the campaign via the claim-an-issue process (see rules). First batch: 30 plans, first come first served. + - Campaign details: https://x.com/AionUi/status/2079493379914961069 · Claim thread: https://github.com/iOfficeAI/AionUi/discussions/3640 + Per-Model Capability Settings + - Configure each model's capabilities directly in settings: a per-model Vision indicator with automatic / enabled / disabled modes, and an OpenAI API mode switch (automatic / Chat Completions / Responses). Automatic detection is preserved unless you set an explicit override. + Fixes & Improvements + - Workspace file tree is stabilized — expand state, search, and the preview panel stay consistent. + - Clearer sign-in hint when an auth-gated agent returns an empty turn, so you know to log in instead of seeing nothing. + - No more false "local data repair failed" alarm caused by concurrent startup. + - Agent settings: launch path is hidden for npx-based agents, and the repair panel stays mounted during background revalidation with a correct status banner. + - Markdown preview renders distinct heading texts correctly. + - Send button arrow-up icon restored. + Engine updates (AionCore v0.1.49 → v0.1.50) + - Official Kimi K2.7 Code image input is now enabled — send images to Kimi's coding model. + - Per-model capability settings supported at the engine layer (pairs with the settings UI above); automatic vision detection preserved. + - More reliable ACP: bounded config RPC timeout without tearing down the connection; auth failures from real turns now reflect into agent availability. + - Safer concurrent AionCore startup over one data directory; aionrs sessions rebuilt from persisted runtime permissions. + - Updated Kimi logo to the official brand mark. + What's Changed + - chore: bump version to 2.1.39 and aioncore to v0.1.50 by @piorpua in #3660 + - fix(startup): stop false "local data repair failed" alarm from concurrent startup by @piorpua in #3650 + - feat(github): post claim invitation when an issue is labeled bonus by @IceyLiu in #3649 + - fix(github): never auto-assign bonus-labeled issues in triage workflow by @IceyLiu in #3647 + - feat(settings): configure model capabilities by @jiahe0510 in #3639 + - fix(conversation): show sign-in hint for empty ACP turns needing auth by @kaizhou-lab in #3644 + - fix(workspace): stable file tree — expand state, search, preview panel by @IceyLiu in #3642 + - fix(agent-settings): hide launch path for npx agents and fix repair-panel status banner by @kaizhou-lab in #3641 + - docs(readme): add AionUi × Kimi contributor campaign section by @IceyLiu in #3643 + - fix(github): use English-only module dropdown with exact-match triage parsing by @IceyLiu in #3636 + - feat(github): automated issue/PR/discussion triage to module owners by @IceyLiu in #3631 + - fix(preview): render distinct heading texts in markdown preview by @IceyLiu in #3630 + - feat(settings): promote Kimi/Moonshot placement in platform and agent lists by @IceyLiu in #3629 + - feat(feedback): route-aware module preselection and ask-the-butler chip on error surfaces by @IceyLiu in #3626 + - fix(chat): restore arrow-up icon on send buttons by @IceyLiu in #3627 + - chore(docs): update WeChat group QR code to wx-17 by @IceyLiu in #3623 + - fix(settings): keep agent repair panel mounted during background revalidation by @IceyLiu in #3624 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v2.1.38...v2.1.39 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v2.1.39 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.39/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/2.1.39/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..af6b25df62e5 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.39/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.39 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.39/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/2.1.39/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..7dd78c92543d --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.39/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.39 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From c47f6010cf4375854ad2b8c5ad39b3f2ad3838ff Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:06:26 +0800 Subject: [PATCH 083/436] Move HaiYing.AionUi 2.1.4 to iOfficeAI.AionUi 2.1.4 (#418147) --- .../2.1.4/iOfficeAI.AionUi.installer.yaml | 32 +++++++++++ .../2.1.4/iOfficeAI.AionUi.locale.en-US.yaml | 53 +++++++++++++++++++ .../2.1.4/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 +++++++ .../AionUi/2.1.4/iOfficeAI.AionUi.yaml | 8 +++ 4 files changed, 112 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.4/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.4/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.4/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.4/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/2.1.4/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/2.1.4/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..99101c94d171 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.4/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.4 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-05-27 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.4/AionUi-2.1.4-win-x64.exe + InstallerSha256: 712BF5B60C28C081B20DC326467D26B5EBD4E9958CD9659CC5789F28004F1C57 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.4/AionUi-2.1.4-win-x64.exe + InstallerSha256: 712BF5B60C28C081B20DC326467D26B5EBD4E9958CD9659CC5789F28004F1C57 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.4/AionUi-2.1.4-win-arm64.exe + InstallerSha256: F1AF6DD742B172E81F3AFF0194DF852381FAFD62DC23DAA8DAA768E607A904CD + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.4/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/2.1.4/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..5f20f5f68cec --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.4/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,53 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.4 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + Highlights + Mobile Sendbox Redesign + - The mobile sendbox is now a single-line input with a compact + button that opens a bottom action sheet — model selection, permission mode, attachments, and Skills are all reachable from one place instead of being crammed into the input bar. + - Skills in the action sheet now show the conversation's loaded skills and one tap inserts /skill-name directly into the input. + - Desktop behavior is unchanged: model and permission switching still go through the same dropdowns and propagate across team chats as before. + Reliability & Crash Fixes + - Deleted providers and assistants no longer resurrect on the next launch. Legacy model.config migration was running every startup and silently re-inserting any provider you had removed; it now records a one-time completion flag and stops, while keeping the legacy data on disk for safe downgrades. + - The desktop window now stays open if the aioncore backend fails to start, so you can read the failure dialog (with optional diagnostic report) instead of the app vanishing on launch. WebUI/headless modes keep their fail-fast behavior. + - Quit cleanup is now serialized on Linux/desktop — backend shutdown, tray, and pet teardown happen in order before the app actually quits, fixing a class of races during shutdown. + - Native GPU crashpad fatals (GPU process isn't usable. Goodbye) are filtered from Sentry so the dashboard isn't flooded with unrecoverable Chromium GPU crashes, while real Linux shutdown crashes still get reported. + Bug Fixes + - Pasting an image or dragging a file into the prompt no longer kicks you out of "Work in project" mode — paste/drag now preserves the selected workspace, matching the dialog upload flow. + - Streaming chat replies render more reliably when tools interrupt a response: separate text and thinking segments are preserved, the thinking timer finalizes on the next non-thinking event instead of waiting for a trailing done, and reopening a conversation no longer restarts the thinking counter. + - Tool call records that arrive without a call ID are now dropped with a warning instead of leaking orphaned UI state into the conversation. + - Polished feedback/issue-reporting entry naming across the homepage, settings, and error alerts to consistently say "Report Issue" / "反馈问题"; removed the redundant feedback button from agent detection error alerts. Updated the English app slogan to "One desktop. Your AI agents, actually coworking." + What's Changed + - fix(messages): stabilize stream scrolling and initial loading by @kaizhou-lab in https://github.com/iOfficeAI/AionUi/pull/3042 + - fix(messages): ignore non-renderable stream events by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3053 + - chore: bump version to 2.1.4 by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3054 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v2.1.3...v2.1.4 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v2.1.4 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.4/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/2.1.4/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..1ed5dc2bd385 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.4/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.4 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.4/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/2.1.4/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..2f49de422e48 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.4/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 1796e3a8f5e7b6d47d9158e6165fa859e1b5dd77 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:06:40 +0800 Subject: [PATCH 084/436] Move HaiYing.AionUi 2.1.41 to iOfficeAI.AionUi 2.1.41 (#418152) --- .../2.1.41/iOfficeAI.AionUi.installer.yaml | 32 +++++++++++++++ .../2.1.41/iOfficeAI.AionUi.locale.en-US.yaml | 41 +++++++++++++++++++ .../2.1.41/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 +++++++++ .../AionUi/2.1.41/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 100 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.41/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.41/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.41/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.41/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/2.1.41/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/2.1.41/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..502831b06942 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.41/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.41 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-07-24 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.41/AionUi-2.1.41-win-x64.exe + InstallerSha256: 930101A643CD60A1FEA83DD65396E882123B6E5603560DFD8CA54CBFF2D3D36D + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.41/AionUi-2.1.41-win-x64.exe + InstallerSha256: 930101A643CD60A1FEA83DD65396E882123B6E5603560DFD8CA54CBFF2D3D36D + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.41/AionUi-2.1.41-win-arm64.exe + InstallerSha256: 578130993CD160301B5B44CF79B12E37E20F14B7C2BE0A84F63B2BEB9ED79A0B + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.41/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/2.1.41/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..18f3b79af7ae --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.41/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.41 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - feat(shortcuts): add common UI bindings by @eyaeya in https://github.com/iOfficeAI/AionUi/pull/3675 + - fix(team): extend ITeamRunEvent.source with system_lifecycle by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3721 + - feat(notification): notify on agent turn completion when window is unfocused (desktop) by @GoldenDecade in https://github.com/iOfficeAI/AionUi/pull/3715 + - chore: bump version to 2.1.41 by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3728 + New Contributors + - @GoldenDecade made their first contribution in https://github.com/iOfficeAI/AionUi/pull/3715 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v2.1.40...v2.1.41 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v2.1.41 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.41/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/2.1.41/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..30e36a37148f --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.41/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.41 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.41/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/2.1.41/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..c76ec10e0ab9 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.41/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.41 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From b48f142c4046541ccd6544aaf7f39d35c0e465d1 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:06:58 +0800 Subject: [PATCH 085/436] Move HaiYing.AionUi 2.1.44 to iOfficeAI.AionUi 2.1.44 (#418158) --- .../2.1.44/iOfficeAI.AionUi.installer.yaml | 32 ++++++++++++++ .../2.1.44/iOfficeAI.AionUi.locale.en-US.yaml | 42 +++++++++++++++++++ .../2.1.44/iOfficeAI.AionUi.locale.zh-CN.yaml | 19 +++++++++ .../AionUi/2.1.44/iOfficeAI.AionUi.yaml | 8 ++++ 4 files changed, 101 insertions(+) create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.44/iOfficeAI.AionUi.installer.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.44/iOfficeAI.AionUi.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.44/iOfficeAI.AionUi.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/AionUi/2.1.44/iOfficeAI.AionUi.yaml diff --git a/manifests/i/iOfficeAI/AionUi/2.1.44/iOfficeAI.AionUi.installer.yaml b/manifests/i/iOfficeAI/AionUi/2.1.44/iOfficeAI.AionUi.installer.yaml new file mode 100644 index 000000000000..6671e5e676a5 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.44/iOfficeAI.AionUi.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.44 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c +ReleaseDate: 2026-07-30 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.44/AionUi-2.1.44-win-x64.exe + InstallerSha256: 233226865213D94AF889FFAAA00D3F2813949265B8B8F9311B6BC7E0BA62D776 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.44/AionUi-2.1.44-win-x64.exe + InstallerSha256: 233226865213D94AF889FFAAA00D3F2813949265B8B8F9311B6BC7E0BA62D776 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v2.1.44/AionUi-2.1.44-win-arm64.exe + InstallerSha256: 5950D233A65A92D5C0D3FBA52838BD6EA5D396DB31D3CCE9AC92976B0C018468 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.44/iOfficeAI.AionUi.locale.en-US.yaml b/manifests/i/iOfficeAI/AionUi/2.1.44/iOfficeAI.AionUi.locale.en-US.yaml new file mode 100644 index 000000000000..f804012712ea --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.44/iOfficeAI.AionUi.locale.en-US.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.44 +PackageLocale: en-US +Publisher: aionui +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues +PrivacyUrl: https://office-ai.net/privacy-policy/ +Author: Hying Technology Co., Ltd. +PackageName: AionUi +PackageUrl: https://github.com/iOfficeAI/AionUi +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE +Copyright: Copyright 2026 AionUi (aionui.com) +ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more +Tags: +- ai +- code +- coding +- gemini +- gemini-cli +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - feat(search): filename search + chat-ref by @tcp404 in https://github.com/iOfficeAI/AionUi/pull/3784 + - fix(tray): honor close-to-tray on custom title-bar close (#3669) by @gaursomya777-dev in https://github.com/iOfficeAI/AionUi/pull/3717 + - fix(preview): restore file rendering for Explorer opens by @tcp404 in https://github.com/iOfficeAI/AionUi/pull/3786 + - feat(skills): add file browser to detail page by @luisinluisao in https://github.com/iOfficeAI/AionUi/pull/3683 + - chore: bump version to 2.1.44 by @piorpua in https://github.com/iOfficeAI/AionUi/pull/3792 + New Contributors + - @luisinluisao made their first contribution in https://github.com/iOfficeAI/AionUi/pull/3683 + Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v2.1.43...v2.1.44 +ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v2.1.44 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.44/iOfficeAI.AionUi.locale.zh-CN.yaml b/manifests/i/iOfficeAI/AionUi/2.1.44/iOfficeAI.AionUi.locale.zh-CN.yaml new file mode 100644 index 000000000000..bf4ca5c64b05 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.44/iOfficeAI.AionUi.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.44 +PackageLocale: zh-CN +PublisherUrl: https://www.haiyingsec.cn/ +PrivacyUrl: https://www.office-ai.cn/privacy-policy +Author: 珠海海鹦安全科技有限公司 +ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能 +Tags: +- gemini +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 编程 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/AionUi/2.1.44/iOfficeAI.AionUi.yaml b/manifests/i/iOfficeAI/AionUi/2.1.44/iOfficeAI.AionUi.yaml new file mode 100644 index 000000000000..019055d5cef7 --- /dev/null +++ b/manifests/i/iOfficeAI/AionUi/2.1.44/iOfficeAI.AionUi.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.AionUi +PackageVersion: 2.1.44 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 1fcbc2baaafb2be8caebfcdbe42667ebd01d1ab8 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:07:42 +0800 Subject: [PATCH 086/436] Move HaiYing.OfficeCLI 1.0.100 to iOfficeAI.OfficeCLI 1.0.100 (#418834) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.100/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.100/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.100/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.100/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.100/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.100/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.100/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..558b3a5b3268 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.100/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.100 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.100/officecli-win-x64.exe + InstallerSha256: D0E10B82293AE25282103030033BC37EA48758A188ED254A1C15D05EB8899FD9 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.100/officecli-win-arm64.exe + InstallerSha256: 4BA52D240F6C788A7634249B7AE6DFB01085654BDADD6C6AF1C3AA7C2969C1AB +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.100/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.100/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..49282d649c96 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.100/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.100 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.99...v1.0.100' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.100 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.100/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.100/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..26e341c7d90c --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.100/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.100 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.100/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.100/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..1cb6b8482c9b --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.100/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.100 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From adfa89af4242f2c6e55736dd19ef8c18e0cb9591 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:07:57 +0800 Subject: [PATCH 087/436] Move HaiYing.OfficeCLI 1.0.102 to iOfficeAI.OfficeCLI 1.0.102 (#418836) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.102/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.102/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.102/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.102/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.102/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.102/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.102/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..15b78c91db3b --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.102/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.102 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-28 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.102/officecli-win-x64.exe + InstallerSha256: C12D6FF3661BD1C00CDABA8FC4EB16E9B973501B55B21901A82E912B194574AA +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.102/officecli-win-arm64.exe + InstallerSha256: 95EFD1700389DF306D2115538DFB560E1C58C940E303827031468C124360EAEA +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.102/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.102/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..c5621499c62d --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.102/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.102 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.101...v1.0.102' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.102 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.102/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.102/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..4e4078742b02 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.102/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.102 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.102/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.102/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..7f9a4e067a67 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.102/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.102 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From da87efe71841dcd8221555fe05e77ef899a626f5 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:08:12 +0800 Subject: [PATCH 088/436] Move HaiYing.OfficeCLI 1.0.103 to iOfficeAI.OfficeCLI 1.0.103 (#418839) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.103/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.103/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.103/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.103/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.103/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.103/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.103/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..7467c970d3cc --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.103/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.103 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-06-03 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.103/officecli-win-x64.exe + InstallerSha256: 7EA42D03667065D7542501EE2A173C445221FC384752E94D62D6CEA45AA5CFCB +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.103/officecli-win-arm64.exe + InstallerSha256: C9EA7EB9C23034A8C1218F4B9A84141274AE8784149E84918F0A17D19ACDAFFE +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.103/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.103/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..5d9db37e5a3a --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.103/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.103 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.102...v1.0.103' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.103 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.103/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.103/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..a0aedea65361 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.103/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.103 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.103/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.103/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..52317f0b0521 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.103/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.103 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 6c4e3001c7d0d27b05c3660fc7ba285b395aca9a Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:08:29 +0800 Subject: [PATCH 089/436] Move HaiYing.OfficeCLI 1.0.104 to iOfficeAI.OfficeCLI 1.0.104 (#418841) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.104/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.104/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.104/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.104/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.104/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.104/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.104/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..22657ae51059 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.104/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.104 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-06-06 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.104/officecli-win-x64.exe + InstallerSha256: AD6BEC4E1DD1D1B3D69B7716905BA186C6C3806585E0D4F1687523B6C18D6A32 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.104/officecli-win-arm64.exe + InstallerSha256: EBD7106D38BAEB4BC062B09E7726DF80093303BA2547C335827F0E2503FE960B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.104/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.104/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..91bb32a4350c --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.104/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.104 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.103...v1.0.104' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.104 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.104/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.104/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..15bd0251caba --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.104/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.104 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.104/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.104/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..32c8b6d40882 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.104/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.104 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 577dc453a87f9b67a1224481bc47ca18fb4df7e7 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:08:45 +0800 Subject: [PATCH 090/436] Move HaiYing.OfficeCLI 1.0.105 to iOfficeAI.OfficeCLI 1.0.105 (#418843) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.105/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.105/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.105/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.105/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.105/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.105/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.105/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..c297cc881ae1 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.105/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.105 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-06-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.105/officecli-win-x64.exe + InstallerSha256: 9B03133975214F7EDE78FCBA64C7ED968164D6F0762C27658E404CD57B41C23C +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.105/officecli-win-arm64.exe + InstallerSha256: BFC0CD9009B62AA8AAC030201703644ACB8A6C4EC5869E8D89467313B9BF1533 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.105/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.105/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..6708359e03c4 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.105/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.105 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.104...v1.0.105' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.105 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.105/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.105/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..4471f7fac551 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.105/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.105 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.105/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.105/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..6c83ec9a7c42 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.105/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.105 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From bf3da4f54f60682a4f937118c8b2afd8b192dcd6 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:09:11 +0800 Subject: [PATCH 091/436] Move HaiYing.OfficeCLI 1.0.106 to iOfficeAI.OfficeCLI 1.0.106 (#418847) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.106/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.106/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.106/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.106/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.106/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.106/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.106/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..e99261d915c5 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.106/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.106 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-06-08 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.106/officecli-win-x64.exe + InstallerSha256: 69A28967F89C3197BF98EFEAFD68FA7D5680193F02CC95CA7FA9A066DB3625EC +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.106/officecli-win-arm64.exe + InstallerSha256: 698B28580ADD8505BD4EF48BDD60D2261B4AEA0C4E88301D32E65C25085FAF3D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.106/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.106/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..bcc5a5a11eb7 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.106/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.106 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.105...v1.0.106' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.106 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.106/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.106/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..0c1830ef6f69 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.106/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.106 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.106/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.106/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..51378d7a3ccf --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.106/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.106 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From df383703e3c4711274280780c3f062b73d625aec Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:09:21 +0800 Subject: [PATCH 092/436] Move HaiYing.OfficeCLI 1.0.107 to iOfficeAI.OfficeCLI 1.0.107 (#418849) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.107/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.107/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.107/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.107/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.107/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.107/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.107/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..d3ed23d64e22 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.107/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.107 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-06-09 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.107/officecli-win-x64.exe + InstallerSha256: 663FBA693FBBC6BEB96416A47DAEA95B67DB2AA52F0B29C5ACD375180422FA7C +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.107/officecli-win-arm64.exe + InstallerSha256: D4A26E931778067AEB011118246318288049902DFC97F615FCDAADD52CE9C77B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.107/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.107/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..89225a9e6732 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.107/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.107 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.106...v1.0.107' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.107 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.107/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.107/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..e62884e0151c --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.107/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.107 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.107/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.107/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..23a53129987b --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.107/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.107 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From cb27062ea83b0022316640c3ace9aa5f33500b63 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:09:35 +0800 Subject: [PATCH 093/436] Move HaiYing.OfficeCLI 1.0.108 to iOfficeAI.OfficeCLI 1.0.108 (#418851) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 78 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 ++++++++++++ .../1.0.108/iOfficeAI.OfficeCLI.yaml | 8 ++ 4 files changed, 153 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.108/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.108/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.108/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.108/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.108/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.108/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..bffdbcfb24d8 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.108/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.108 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-06-09 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.108/officecli-win-x64.exe + InstallerSha256: 643485A71367C1E0389F4C7E6781976E2AB80C84A0D43491D3B9C3FDDB727F62 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.108/officecli-win-arm64.exe + InstallerSha256: 4C583E396C108E4D0B2700E4266CD73F012797040121C9876194AE6A40E218FB +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.108/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.108/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..ba7e7081c490 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.108/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,78 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.108 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: |- + What's Changed + - fix(xlsx): shift embedded formulas in dataValidation/conditionalFormatting/table on row insert/delete by @dragonwhites in https://github.com/iOfficeAI/OfficeCLI/pull/146 + - fix(xlsx): clamp conditional-format sqref expansion to the sheet's used extent by @dragonwhites in https://github.com/iOfficeAI/OfficeCLI/pull/147 + New Contributors + - @dragonwhites made their first contribution in https://github.com/iOfficeAI/OfficeCLI/pull/146 + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.107...v1.0.108 +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.108 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.108/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.108/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..9165564596eb --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.108/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.108 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.108/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.108/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..d33c5f7be33c --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.108/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.108 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From af0d458429a5fe6330a855163e29670d8dd4f405 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:09:50 +0800 Subject: [PATCH 094/436] Move HaiYing.OfficeCLI 1.0.110 to iOfficeAI.OfficeCLI 1.0.110 (#418854) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.110/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.110/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.110/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.110/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.110/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.110/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.110/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..b83db5e08eab --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.110/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.110 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-06-10 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.110/officecli-win-x64.exe + InstallerSha256: DE475AABDB4DF1B80DFDE6F5BA45CDFD4B5766B27FC59C6F6D6A6340497783C4 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.110/officecli-win-arm64.exe + InstallerSha256: 26891D4862C5005F459F3FDECA491332B5C047E2ED6D4021524FB37349C3C8CE +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.110/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.110/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..4afecfdccf5d --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.110/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.110 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.109...v1.0.110' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.110 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.110/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.110/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..06fb4631ea60 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.110/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.110 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.110/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.110/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..bcebbf2face6 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.110/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.110 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 6e3356c15c460e28b51359ebf33f226543addefc Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:10:07 +0800 Subject: [PATCH 095/436] Move HaiYing.OfficeCLI 1.0.111 to iOfficeAI.OfficeCLI 1.0.111 (#418857) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.111/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.111/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.111/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.111/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.111/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.111/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.111/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..d871b5f6ca1a --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.111/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.111 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-06-12 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.111/officecli-win-x64.exe + InstallerSha256: 51A9E25FF7CC6EAF8E95C38C01BCF391F5138F5799EE273AAE19A2E8C4BF7138 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.111/officecli-win-arm64.exe + InstallerSha256: 94F85BCA99EDE5670B1E455917F243F55106A1284B7AC098256AADC5290DCC70 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.111/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.111/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..6623f793e862 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.111/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.111 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.110...v1.0.111' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.111 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.111/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.111/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..dfce6086a95f --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.111/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.111 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.111/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.111/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..e19721ac9d55 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.111/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.111 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 4df2fa91152504a717172e06329c9fd396dee8a7 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:10:22 +0800 Subject: [PATCH 096/436] Move HaiYing.OfficeCLI 1.0.112 to iOfficeAI.OfficeCLI 1.0.112 (#418860) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.112/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.112/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.112/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.112/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.112/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.112/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.112/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..c5dc6755f336 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.112/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.112 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-06-13 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.112/officecli-win-x64.exe + InstallerSha256: FEAFD0A3960CC175283C358D0D19F0971D0E698017445D8309FCE37F26A38915 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.112/officecli-win-arm64.exe + InstallerSha256: D3059B07D94C89EEA2454B66617CDA1F10712D553D23243B05F360F12DCC60DE +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.112/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.112/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..04d41d20a101 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.112/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.112 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.111...v1.0.112' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.112 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.112/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.112/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..bd3e53ae9544 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.112/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.112 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.112/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.112/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..1a9e83cb5cc9 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.112/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.112 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From c1f339c05d9259788f2d13ae64aeb6b38bde12a2 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:10:38 +0800 Subject: [PATCH 097/436] Move HaiYing.OfficeCLI 1.0.113 to iOfficeAI.OfficeCLI 1.0.113 (#418864) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.113/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.113/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.113/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.113/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.113/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.113/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.113/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..b938783b4a9b --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.113/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.113 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.113/officecli-win-x64.exe + InstallerSha256: 15D29F3A04E6AD00503DE178F98DAE872B47EF71F09FAC3C614212B209C4D229 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.113/officecli-win-arm64.exe + InstallerSha256: 94FA5101B94F2FE59C1458688BBC3DDCDE4F244AFE204143B7EAC9BB5089F784 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.113/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.113/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..da4ad94c18cf --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.113/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.113 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.112...v1.0.113' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.113 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.113/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.113/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..6641eb206cea --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.113/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.113 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.113/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.113/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..4ab9f91c36d3 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.113/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.113 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 8fdceae0ee9d1be17bf374c56b7149a174c4a51c Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:10:58 +0800 Subject: [PATCH 098/436] Move HaiYing.OfficeCLI 1.0.114 to iOfficeAI.OfficeCLI 1.0.114 (#418866) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.114/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.114/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.114/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.114/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.114/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.114/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.114/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..e00ac502481d --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.114/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.114 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-06-16 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.114/officecli-win-x64.exe + InstallerSha256: A83F712639B3B9E22565E64E0F9451DBDC5774917BAEA361FD14E0F6446FA4FB +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.114/officecli-win-arm64.exe + InstallerSha256: 8C23531F1CC4706DD53886CDF3A1927B28C082C30085CF2C909B312519CFFBB9 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.114/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.114/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..6e9a6b7f71e3 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.114/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.114 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.113...v1.0.114' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.114 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.114/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.114/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..f73bdc7b57c7 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.114/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.114 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.114/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.114/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..2e9b5512c4c9 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.114/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.114 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 755eba97a60d3ee10fb128326f7e7b7d8d517f9a Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:11:17 +0800 Subject: [PATCH 099/436] Move HaiYing.OfficeCLI 1.0.115 to iOfficeAI.OfficeCLI 1.0.115 (#418869) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 75 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 ++++++++++++ .../1.0.115/iOfficeAI.OfficeCLI.yaml | 8 ++ 4 files changed, 150 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.115/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.115/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.115/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.115/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.115/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.115/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..10695538d687 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.115/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.115 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-06-18 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.115/officecli-win-x64.exe + InstallerSha256: 602FDB8E718E0188AEACEEA1A9B90144027B54819DE75E95814FF6FB4C45758D +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.115/officecli-win-arm64.exe + InstallerSha256: D80879C1E90E38C2C45D26467E67A22611EC5B5351B53EDA10EDF8533CF31244 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.115/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.115/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..603d8a5d25f7 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.115/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,75 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.115 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: |- + What's Changed + - fix(excel-html): chart overlays match Excel position and size by @dragonwhites in https://github.com/iOfficeAI/OfficeCLI/pull/152 + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.114...v1.0.115 +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.115 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.115/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.115/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..307b5a789e94 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.115/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.115 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.115/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.115/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..7c8cee0e08a4 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.115/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.115 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 9344911962acd9cd4b41d49a000ddd3862f3fd90 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:11:34 +0800 Subject: [PATCH 100/436] Move HaiYing.OfficeCLI 1.0.116 to iOfficeAI.OfficeCLI 1.0.116 (#418871) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.116/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.116/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.116/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.116/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.116/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.116/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.116/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..273ec1cc1c98 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.116/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.116 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-06-20 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.116/officecli-win-x64.exe + InstallerSha256: 76F86FF7F40D44BB59C5B105DE98CE08B4D7DD1E15600C49C58A3B93C91A01A9 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.116/officecli-win-arm64.exe + InstallerSha256: 0E3BD440EBB44784A49D583EF3C9962B054CD83B61E287845E88DEE43AAF5399 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.116/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.116/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..4ff28b30d358 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.116/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.116 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.115...v1.0.116' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.116 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.116/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.116/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..b6f636c9dc8f --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.116/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.116 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.116/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.116/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..43f15b98c926 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.116/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.116 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 8ebe61329c93b5265e8edf150a94f9405e14e5f3 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:11:49 +0800 Subject: [PATCH 101/436] Move HaiYing.OfficeCLI 1.0.117 to iOfficeAI.OfficeCLI 1.0.117 (#418873) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.117/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.117/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.117/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.117/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.117/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.117/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.117/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..f9b63d9b0617 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.117/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.117 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-06-22 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.117/officecli-win-x64.exe + InstallerSha256: FF4A790637BCD4FDAF046727752E9E44207425D5CEAFE36131516D37500D9EBD +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.117/officecli-win-arm64.exe + InstallerSha256: B7157E13F622029032FB4E3F56B59A3485FBFDD8F691023FF74AD1326F54BDD3 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.117/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.117/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..e3530dada552 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.117/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.117 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.116...v1.0.117' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.117 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.117/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.117/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..8561b2ad2269 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.117/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.117 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.117/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.117/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..8df8efc87401 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.117/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.117 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From b99104e72e58664a1ea51821474f34b8d282e445 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:12:06 +0800 Subject: [PATCH 102/436] Move HaiYing.OfficeCLI 1.0.119 to iOfficeAI.OfficeCLI 1.0.119 (#418875) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.119/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.119/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.119/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.119/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.119/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.119/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.119/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..565406e2703f --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.119/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.119 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-06-24 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.119/officecli-win-x64.exe + InstallerSha256: F41FA096554DD27930D06B2A2771D8C0386EDEE57C9ECBAB68427035A8C311C1 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.119/officecli-win-arm64.exe + InstallerSha256: 23FAD7736CFC591EBE486DEDB72607D1C86C775BA6F1C23F47FB839BF1EEFAC1 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.119/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.119/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..e245a83548f6 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.119/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.119 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.118...v1.0.119' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.119 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.119/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.119/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..10c5d0f8cd71 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.119/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.119 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.119/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.119/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..1c78121528a5 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.119/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.119 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From ce957a75ec578c8dbf42faa05f933ab3bed32e9d Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:12:23 +0800 Subject: [PATCH 103/436] Move HaiYing.OfficeCLI 1.0.121 to iOfficeAI.OfficeCLI 1.0.121 (#418879) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 74 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 ++++++++++++ .../1.0.121/iOfficeAI.OfficeCLI.yaml | 8 ++ 4 files changed, 149 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.121/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.121/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.121/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.121/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.121/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.121/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..3fb9694f52f5 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.121/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.121 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-06-25 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.121/officecli-win-x64.exe + InstallerSha256: 8EDBB7740940F2C03C8E8D17C948BC28C11ABCC19EFD405F48D40A44E1F31092 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.121/officecli-win-arm64.exe + InstallerSha256: C94A71622CC7EEA944C1E3E64E80E972727C36A2E620BD4B27579DA3DD2AFADC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.121/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.121/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..aa9f968ca7fa --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.121/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,74 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.121 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: |- + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.120...v1.0.121 + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.120...v1.0.121 +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.121 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.121/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.121/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..b9e0050d8e01 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.121/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.121 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.121/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.121/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..c2b8f165ce7e --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.121/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.121 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 82ea5d9def5ea471014a53449cd6820e2857135c Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:12:38 +0800 Subject: [PATCH 104/436] Move HaiYing.OfficeCLI 1.0.122 to iOfficeAI.OfficeCLI 1.0.122 (#418881) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.122/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.122/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.122/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.122/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.122/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.122/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.122/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..e671e0b46177 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.122/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.122 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-06-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.122/officecli-win-x64.exe + InstallerSha256: 9486DB0FABD4FD373FE6B12062B3062DE632CE0119F2106A1C0FF32F421DEC11 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.122/officecli-win-arm64.exe + InstallerSha256: 2A69C8229279F82C0207BB1EA31E9AF71CD5B5485FBDCA68B28D3669295735AA +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.122/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.122/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..1be5137e62cf --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.122/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.122 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.121...v1.0.122' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.122 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.122/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.122/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..9f79991b8351 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.122/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.122 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.122/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.122/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..f8267c4f8816 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.122/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.122 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 07605cd9c89fadcbd74f20f10259bd8d0482252e Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:12:55 +0800 Subject: [PATCH 105/436] Move HaiYing.OfficeCLI 1.0.123 to iOfficeAI.OfficeCLI 1.0.123 (#418883) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.123/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.123/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.123/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.123/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.123/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.123/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.123/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..96c3610037e7 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.123/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.123 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-06-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.123/officecli-win-x64.exe + InstallerSha256: FC2585737F7900CB3B6245E59B8B68EA79D19BD9E672961995F7F2619EA52317 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.123/officecli-win-arm64.exe + InstallerSha256: D82388D7C9CF7078CD664C2D64D1AB01CDEE45D8C20E6CD0D141B61F4986753A +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.123/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.123/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..d75cf2a4b8af --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.123/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.123 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.122...v1.0.123' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.123 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.123/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.123/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..39525fbd75c3 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.123/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.123 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.123/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.123/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..89883059e687 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.123/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.123 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From ad25f19006cf5e85101683dac1625f949f3d1d81 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:13:09 +0800 Subject: [PATCH 106/436] Move HaiYing.OfficeCLI 1.0.124 to iOfficeAI.OfficeCLI 1.0.124 (#418885) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.124/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.124/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.124/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.124/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.124/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.124/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.124/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..3675f0dae809 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.124/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.124 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-06-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.124/officecli-win-x64.exe + InstallerSha256: A4CB35C272D305CAFD876DD7A2DF552B4F01EBA2412DECBFB82FB82EA673A4EF +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.124/officecli-win-arm64.exe + InstallerSha256: 668300C8773063736B2B1675146523F3778707DEACA5BC27934404A4BB1A2EFF +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.124/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.124/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..2810523bcaee --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.124/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.124 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.123...v1.0.124' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.124 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.124/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.124/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..edc8e5146f0e --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.124/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.124 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.124/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.124/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..d926770f9ffe --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.124/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.124 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 8c1171d309d03c7d36d4549f7294eaea9fbba8d3 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:13:23 +0800 Subject: [PATCH 107/436] Move HaiYing.OfficeCLI 1.0.125 to iOfficeAI.OfficeCLI 1.0.125 (#418887) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.125/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.125/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.125/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.125/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.125/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.125/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.125/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..ee7f68cc3f8e --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.125/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.125 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-06-28 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.125/officecli-win-x64.exe + InstallerSha256: A9BDFA5F59BF493C77C49B4EFB9B72466455FA280FAAD6BDAE9E0916D6E674DE +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.125/officecli-win-arm64.exe + InstallerSha256: 6D0D07C143A25901B648BCEB6B8A7921A106473B53650B1192726615147AF3A9 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.125/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.125/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..3be721079b4d --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.125/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.125 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.124...v1.0.125' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.125 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.125/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.125/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..a8eed4489088 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.125/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.125 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.125/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.125/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..552e6cf4d736 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.125/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.125 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From ee3bfe68c2edad1a287d5682d4728c631fedb609 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:13:38 +0800 Subject: [PATCH 108/436] Move HaiYing.OfficeCLI 1.0.126 to iOfficeAI.OfficeCLI 1.0.126 (#418889) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.126/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.126/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.126/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.126/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.126/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.126/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.126/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..06a3ed8d1ad7 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.126/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.126 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-06-30 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.126/officecli-win-x64.exe + InstallerSha256: 1A21233782866F7D5FB028A6875628D610E5B524A02BB30EF92F44AB63266346 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.126/officecli-win-arm64.exe + InstallerSha256: 9FCF78933938DC8113449AB139CC3FEF0A9DD6BB295D3495BCB83F34E956E5C4 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.126/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.126/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..3ef927a99624 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.126/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.126 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.125...v1.0.126' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.126 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.126/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.126/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..a7a6b6157896 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.126/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.126 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.126/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.126/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..34586bea03a9 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.126/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.126 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From b645b8aefbda6af06bd0d162e932ee2a40cd54fb Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:13:53 +0800 Subject: [PATCH 109/436] Move HaiYing.OfficeCLI 1.0.127 to iOfficeAI.OfficeCLI 1.0.127 (#418891) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.127/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.127/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.127/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.127/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.127/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.127/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.127/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..cca55e317f1b --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.127/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.127 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-07-02 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.127/officecli-win-x64.exe + InstallerSha256: 93A778F334C078A89073572EE635E620FB1E4151B3922BC5627A1D2B20FE51A0 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.127/officecli-win-arm64.exe + InstallerSha256: 4B3D2DCFA8D4D400E1B26B59BD11013E0AFFF0207B7E3CCF81F9C6A5C639C8D5 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.127/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.127/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..7d43fe564334 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.127/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.127 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.126...v1.0.127' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.127 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.127/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.127/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..6f7c23a4e9d4 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.127/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.127 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.127/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.127/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..47e1b59f1a16 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.127/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.127 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 64e1ea59316606e7ed15eb99e0d7683fdfd1fdad Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:14:10 +0800 Subject: [PATCH 110/436] Move HaiYing.OfficeCLI 1.0.128 to iOfficeAI.OfficeCLI 1.0.128 (#418893) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.128/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.128/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.128/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.128/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.128/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.128/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.128/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..2181185a9602 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.128/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.128 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-07-03 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.128/officecli-win-x64.exe + InstallerSha256: B69B9CE2BB5BAD0B14DE5E6312EDF47B8EB657EA6C8E49DEB716B39B1190FB04 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.128/officecli-win-arm64.exe + InstallerSha256: AF3657D96CA8F37CF1404064EB97C7CEB7B4E94BE1EF1B4E318381D43A447584 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.128/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.128/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..fd165eea8fd1 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.128/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.128 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.127...v1.0.128' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.128 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.128/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.128/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..3a9bb805b9b1 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.128/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.128 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.128/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.128/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..b20638fd8a20 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.128/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.128 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 57490082ca516a24d8ba9ca5fb3ff2a8beb6589c Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:14:27 +0800 Subject: [PATCH 111/436] Move HaiYing.OfficeCLI 1.0.129 to iOfficeAI.OfficeCLI 1.0.129 (#418895) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 77 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 ++++++++++++ .../1.0.129/iOfficeAI.OfficeCLI.yaml | 8 ++ 4 files changed, 152 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.129/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.129/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.129/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.129/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.129/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.129/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..1d9fc3410ac2 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.129/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.129 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-07-06 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.129/officecli-win-x64.exe + InstallerSha256: E4C84A4A32F4D22F3880575D16B1499856D1C48E86D293274919906F95D81057 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.129/officecli-win-arm64.exe + InstallerSha256: 77FB8F7802593D40D751E59281CA7A454D6F339061C0B4BC97DC0BB37C12A798 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.129/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.129/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..6fa163c28d76 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.129/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,77 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.129 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: |- + What's Changed + - fix(pptx/xlsx/docx): notify watch SSE after resident batch edits by @sixtycat2000-ctrl in https://github.com/iOfficeAI/OfficeCLI/pull/170 + New Contributors + - @sixtycat2000-ctrl made their first contribution in https://github.com/iOfficeAI/OfficeCLI/pull/170 + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.128...v1.0.129 +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.129 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.129/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.129/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..120664063779 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.129/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.129 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.129/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.129/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..c144262d4dbc --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.129/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.129 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 397248c1c084c9b9d75b6f2726f64671d90ef521 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:14:44 +0800 Subject: [PATCH 112/436] Move HaiYing.OfficeCLI 1.0.131 to iOfficeAI.OfficeCLI 1.0.131 (#418898) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.131/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.131/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.131/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.131/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.131/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.131/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.131/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..546a5841f3e2 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.131/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.131 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.131/officecli-win-x64.exe + InstallerSha256: B67E6F95C309707FAD51FAD2DA26A87AA8D967774CDE9F7B47BB452811164E73 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.131/officecli-win-arm64.exe + InstallerSha256: F4224772A7D450053FCACAA54175704E89D99CA23535E7D24FC340BC6DCEF43E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.131/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.131/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..3c2c165e009e --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.131/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.131 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.130...v1.0.131' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.131 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.131/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.131/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..46bed529c8e4 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.131/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.131 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.131/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.131/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..7c367f063bdc --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.131/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.131 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 38a264b494384022df9a17b17fe273ad3a588c74 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:15:00 +0800 Subject: [PATCH 113/436] Move HaiYing.OfficeCLI 1.0.132 to iOfficeAI.OfficeCLI 1.0.132 (#418900) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.132/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.132/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.132/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.132/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.132/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.132/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.132/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..5f496f42b41e --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.132/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.132 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-07-08 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.132/officecli-win-x64.exe + InstallerSha256: 303FF8BFBF05F5535ED423B59D8D664BB4C95C1E646A0CCE2A619996FBE0F6DE +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.132/officecli-win-arm64.exe + InstallerSha256: F5CD21E28158C88175D1CC5DCCD863E1A8D618625C4223F658C3F9EA5987092E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.132/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.132/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..8668191b1641 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.132/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.132 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.131...v1.0.132' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.132 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.132/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.132/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..8bedd3516e69 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.132/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.132 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.132/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.132/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..eb529bad015a --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.132/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.132 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 85040037ff2e7c67b0ef50edab006f3c6aed56e0 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:15:16 +0800 Subject: [PATCH 114/436] Move HaiYing.OfficeCLI 1.0.133 to iOfficeAI.OfficeCLI 1.0.133 (#418903) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.133/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.133/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.133/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.133/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.133/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.133/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.133/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..2140a124627b --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.133/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.133 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-07-09 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.133/officecli-win-x64.exe + InstallerSha256: 899BFE2989F51B0322C8D47B302DC2CD0D64C751C16411792F4BF00A8300D1F8 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.133/officecli-win-arm64.exe + InstallerSha256: A8EB62283C8FD987A8BA29DA479C255585C81E2C62DD9EDF0BEE20C2AD244AE2 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.133/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.133/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..5401ad62e8d6 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.133/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.133 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.132...v1.0.133' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.133 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.133/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.133/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..bd972bc73b44 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.133/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.133 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.133/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.133/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..0da85fcb0760 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.133/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.133 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 0dc073ba735b6929bd363572878fb28e5e84aa2c Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:15:32 +0800 Subject: [PATCH 115/436] Move HaiYing.OfficeCLI 1.0.135 to iOfficeAI.OfficeCLI 1.0.135 (#418910) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.135/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.135/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.135/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.135/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.135/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.135/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.135/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..ea05d4036368 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.135/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.135 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-07-10 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.135/officecli-win-x64.exe + InstallerSha256: 937DB176B585E874AA5BFF48D536BCE78037665CD862B5DEEFE56E79977E6588 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.135/officecli-win-arm64.exe + InstallerSha256: C818013023F83D3C9EC3DCBA4DABAF824BDF861DA6FA925D0557F508D3B11558 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.135/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.135/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..44635bd2d6b9 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.135/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.135 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.134...v1.0.135' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.135 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.135/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.135/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..c23634d1e577 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.135/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.135 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.135/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.135/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..454b79af7469 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.135/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.135 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 9359d85c16b222746d46a7ab3dcbde3b607e5822 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:15:47 +0800 Subject: [PATCH 116/436] Move HaiYing.OfficeCLI 1.0.136 to iOfficeAI.OfficeCLI 1.0.136 (#418912) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 79 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 ++++++++++++ .../1.0.136/iOfficeAI.OfficeCLI.yaml | 8 ++ 4 files changed, 154 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.136/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.136/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.136/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.136/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.136/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.136/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..c53d75ba6664 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.136/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.136 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-07-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.136/officecli-win-x64.exe + InstallerSha256: 0BA8550BB236A2A23982311A747B22F318D7BD18C1C06A402D96F7642C85FB6A +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.136/officecli-win-arm64.exe + InstallerSha256: 94E5EBB1900974681430197035476E2E6C6E905E2E45C2C71ED7DE0A3BA87131 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.136/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.136/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..56c60a999f4e --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.136/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,79 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.136 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: |- + What's Changed + - fix(xlsx) Caching of formats, fonts, fills and borders on Excel rendering by @andulv in https://github.com/iOfficeAI/OfficeCLI/pull/190 + - 修正 DOCX skill 的分页和 TOC 指引 by @eric8810 in https://github.com/iOfficeAI/OfficeCLI/pull/193 + New Contributors + - @andulv made their first contribution in https://github.com/iOfficeAI/OfficeCLI/pull/190 + - @eric8810 made their first contribution in https://github.com/iOfficeAI/OfficeCLI/pull/193 + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.135...v1.0.136 +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.136 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.136/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.136/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..8bf0cd48050a --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.136/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.136 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.136/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.136/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..1c9f7745b9dd --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.136/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.136 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 21373c41c0b0f3dec421fc615d8f7a988e9eba9d Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:16:02 +0800 Subject: [PATCH 117/436] Move HaiYing.OfficeCLI 1.0.137 to iOfficeAI.OfficeCLI 1.0.137 (#418914) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.137/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.137/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.137/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.137/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.137/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.137/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.137/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..138ea492b145 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.137/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.137 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-07-17 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.137/officecli-win-x64.exe + InstallerSha256: EC788E51C4B1F28C1916D570630E7BB32C10AB505BD401FC5C9B7369986B6043 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.137/officecli-win-arm64.exe + InstallerSha256: 0B1C54C0AC8049AD1DFB528A3383F2EABFBE06332A657426809B068561651CE3 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.137/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.137/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..780e4b43ab50 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.137/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.137 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.136...v1.0.137' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.137 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.137/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.137/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..a76c34d9e7df --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.137/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.137 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.137/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.137/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..52438672b849 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.137/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.137 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 4d3d9323723e893a277b0dc3cf1d7557cd3c319b Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:16:20 +0800 Subject: [PATCH 118/436] Move HaiYing.OfficeCLI 1.0.140 to iOfficeAI.OfficeCLI 1.0.140 (#418919) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 77 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 ++++++++++++ .../1.0.140/iOfficeAI.OfficeCLI.yaml | 8 ++ 4 files changed, 152 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.140/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.140/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.140/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.140/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.140/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.140/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..13f8e6b18feb --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.140/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.140 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-07-22 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.140/officecli-win-x64.exe + InstallerSha256: 43AD45527BF2C486DA1DD7C8D9257B90AC17A6B83028D7064EA38235CD43EC3E +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.140/officecli-win-arm64.exe + InstallerSha256: A83BCFBAB9A092DD060D6016168C42A639865D198EF6AA3772DD196109433551 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.140/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.140/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..b5a8e5418732 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.140/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,77 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.140 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: |- + What's Changed + - fix(xlsx): round-trip in-cell images through dump by @Hanxcellent in https://github.com/iOfficeAI/OfficeCLI/pull/248 + New Contributors + - @Hanxcellent made their first contribution in https://github.com/iOfficeAI/OfficeCLI/pull/248 + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.139...v1.0.140 +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.140 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.140/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.140/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..4d681a92ebf6 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.140/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.140 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.140/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.140/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..9c373ca5cc6f --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.140/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.140 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 7ab5c752c1fb519de588b4c830f1f831d448a29d Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:16:35 +0800 Subject: [PATCH 119/436] Move HaiYing.OfficeCLI 1.0.141 to iOfficeAI.OfficeCLI 1.0.141 (#418921) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../1.0.141/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.141/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.141/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.141/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.141/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.141/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.141/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..c377085b8e64 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.141/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.141 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-07-23 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.141/officecli-win-x64.exe + InstallerSha256: 65D119912147B47D102224715DF2288813A2FEA56520BFC4313B2FA0BF4672C7 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.141/officecli-win-arm64.exe + InstallerSha256: E0FC9AE2D73059E2317479FFFD023697A9D3DF2D0A6ABDF66D5AB0C5F5CC4346 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.141/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.141/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..1275aba69700 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.141/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.141 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.140...v1.0.141' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.141 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.141/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.141/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..360cdaa35d22 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.141/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.141 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.141/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.141/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..adea54f82d4e --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.141/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.141 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From f11e38ef8aac212554f7e1f548fdc561b4746d6c Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:16:50 +0800 Subject: [PATCH 120/436] Move HaiYing.OfficeCLI 1.0.142 to iOfficeAI.OfficeCLI 1.0.142 (#418924) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 75 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 ++++++++++++ .../1.0.142/iOfficeAI.OfficeCLI.yaml | 8 ++ 4 files changed, 150 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.142/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.142/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.142/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.142/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.142/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.142/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..f6034b92c47b --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.142/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.142 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-07-25 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.142/officecli-win-x64.exe + InstallerSha256: 676E0ACEE691288968A31B9832299AD05599E83140E801C382B6FC4509622FE2 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.142/officecli-win-arm64.exe + InstallerSha256: 0926428513E15F2D1C6EB726A07B141F7F31D60360226DAA7526E518213D3578 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.142/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.142/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..e43fd97dcbea --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.142/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,75 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.142 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: |- + What's Changed + - fix(docx): keep read-only commands byte-preserving by @Hanxcellent in https://github.com/iOfficeAI/OfficeCLI/pull/256 + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.141...v1.0.142 +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.142 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.142/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.142/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..6ff324a69018 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.142/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.142 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.142/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.142/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..9e5a974d81c5 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.142/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.142 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 6c9a18b24245850c31cd6fdff6da9a3147ed7b29 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:17:04 +0800 Subject: [PATCH 121/436] Move HaiYing.OfficeCLI 1.0.143 to iOfficeAI.OfficeCLI 1.0.143 (#418926) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 80 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 ++++++++++++ .../1.0.143/iOfficeAI.OfficeCLI.yaml | 8 ++ 4 files changed, 155 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.143/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.143/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.143/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.143/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.143/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.143/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..9c12b3926ed5 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.143/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.143 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-07-28 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.143/officecli-win-x64.exe + InstallerSha256: D4D4C10FCED307E209744CF98A56B003A6E613424FD651B08469274704AFD2C6 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.143/officecli-win-arm64.exe + InstallerSha256: 51BAF511FE136EE216FCC13CF0DA9D18078DA42212B22805C3A81F4163A4D7B9 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.143/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.143/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..3418356dfcc0 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.143/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,80 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.143 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: |- + What's Changed + - fix(pptx): notes slides get the package relationships they require by @leomem in https://github.com/iOfficeAI/OfficeCLI/pull/265 + - fix(cli): decode piped stdin as UTF-8 without mutating the console by @leomem in https://github.com/iOfficeAI/OfficeCLI/pull/264 + - Preserve Excel drawing hyperlinks and grouped shapes during round-trip by @tjlstar in https://github.com/iOfficeAI/OfficeCLI/pull/266 + New Contributors + - @leomem made their first contribution in https://github.com/iOfficeAI/OfficeCLI/pull/265 + - @tjlstar made their first contribution in https://github.com/iOfficeAI/OfficeCLI/pull/266 + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.142...v1.0.143 +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.143 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.143/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.143/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..52d7d87b8deb --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.143/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.143 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.143/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.143/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..44b694f9ce84 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.143/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.143 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From b708bf9a21b593faef95fe524c0093f1c915f86b Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:17:19 +0800 Subject: [PATCH 122/436] Move HaiYing.OfficeCLI 1.0.144 to iOfficeAI.OfficeCLI 1.0.144 (#418928) --- .../iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 79 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 ++++++++++++ .../1.0.144/iOfficeAI.OfficeCLI.yaml | 8 ++ 4 files changed, 154 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.144/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.144/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.144/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.144/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.144/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.144/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..074615418893 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.144/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.144 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-08-13 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.144/officecli-win-x64.exe + InstallerSha256: E780CC6A5385F84B4D54D71B0C179904ED534125EC33FE39B1A8711FA80E387E +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.144/officecli-win-arm64.exe + InstallerSha256: 0ADB928D118E237B108077DADCA9E272C236CD378C699712A41ADDA697047860 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.144/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.144/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..a725b5cfd781 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.144/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,79 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.144 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: |- + What's Changed + - fix(xlsx): SUBTOTAL ignores AutoFilter-hidden rows (1-11) and all hidden rows (101-111) by @JiaZhengOng in https://github.com/iOfficeAI/OfficeCLI/pull/270 + - fix(xlsx): comparison treats an empty cell as Excel's empty value, not text by @JiaZhengOng in https://github.com/iOfficeAI/OfficeCLI/pull/271 + - fix(xlsx): arithmetic coerces date/time-formatted text to its serial like Excel by @JiaZhengOng in https://github.com/iOfficeAI/OfficeCLI/pull/276 + New Contributors + - @JiaZhengOng made their first contribution in https://github.com/iOfficeAI/OfficeCLI/pull/270 + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.143...v1.0.144 +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.144 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.144/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.144/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..dd92a4bd6482 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.144/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.144 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.144/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.144/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..9886e10d83c0 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.144/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.144 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 0eba1eee186aedfba31e457ba2e5e9c5ee29ba4f Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:17:35 +0800 Subject: [PATCH 123/436] Move HaiYing.OfficeCLI 1.0.34 to iOfficeAI.OfficeCLI 1.0.34 (#418930) --- .../1.0.34/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 80 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 67 ++++++++++++++++ .../OfficeCLI/1.0.34/iOfficeAI.OfficeCLI.yaml | 8 ++ 4 files changed, 173 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.34/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.34/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.34/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.34/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.34/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.34/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..fdc8d6b53e35 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.34/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 v2.7.1 $debug=NVS1.CRLF.7-6-0.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.34 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-04 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.34/officecli-win-x64.exe + InstallerSha256: 9D1D97B687BA072318BB7CB3B4E24BB5CFD65B8399CBAC3D7C8AED2107CF650F +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.34/officecli-win-arm64.exe + InstallerSha256: 0060EBB84B386533ADEF0DB44125446FF92E63F6846BF3314E49ADE8DB5D5F32 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.34/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.34/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..2ed19e09676c --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.34/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,80 @@ +# Created with YamlCreate.ps1 v2.7.1 $debug=NVS1.CRLF.7-6-0.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.34 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +# PrivacyUrl: +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +# CopyrightUrl: +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +# Moniker: +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: |- + What's Changed + - fix: resolve named pipe deadlock on Windows for open/close commands by @shuff57 in #39 + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.33...v1.0.34 +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.34 +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.34/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.34/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..bed73d862c4d --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.34/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,67 @@ +# Created with YamlCreate.ps1 v2.7.1 $debug=NVS1.CRLF.7-6-0.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.34 +PackageLocale: zh-CN +# Publisher: +# PublisherUrl: +# PublisherSupportUrl: +# PrivacyUrl: +# Author: +# PackageName: +# PackageUrl: +# License: +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +# Moniker: +# Tags: +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +# Documentations: +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.34/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.34/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..f63a99d9a9ef --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.34/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.7.1 $debug=NVS1.CRLF.7-6-0.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.34 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 0e80af931f8fb6bdf2c6c6ca4d5e35b4663f181a Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:17:50 +0800 Subject: [PATCH 124/436] Move HaiYing.OfficeCLI 1.0.36 to iOfficeAI.OfficeCLI 1.0.36 (#418933) --- .../1.0.36/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.36/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.36/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.36/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.36/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.36/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.36/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.36/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..b14197a4c84b --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.36/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.36 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-05 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.36/officecli-win-x64.exe + InstallerSha256: AF2F5924A23AA9AECCC0B91E07DD441591EE31DB001F5592E189488FD82CB747 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.36/officecli-win-arm64.exe + InstallerSha256: 6131E66481C9B79F85BEF9E871893D9F2EDCE87D3F703F64EE7F9D119F303C04 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.36/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.36/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..4efedf91a472 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.36/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.36 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.35...v1.0.36' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.36 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.36/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.36/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..5aad8b450eb0 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.36/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.36 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.36/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.36/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..9307d45504c5 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.36/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.36 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From c594397e23d9612c69ce994593b89697fbece913 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:18:07 +0800 Subject: [PATCH 125/436] Move HaiYing.OfficeCLI 1.0.37 to iOfficeAI.OfficeCLI 1.0.37 (#418935) --- .../1.0.37/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.37/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.37/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.37/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.37/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.37/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.37/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.37/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..7420ba52bcfe --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.37/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.37 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-06 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.37/officecli-win-x64.exe + InstallerSha256: 8E30683CD19172E8FD43ADCB29A2EC733BD5A346910529610025A6DAD9A3EE27 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.37/officecli-win-arm64.exe + InstallerSha256: FFC7CAEC37925675AF3D29F764BDC86E5507771F8FA244320CF25885C7B5A231 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.37/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.37/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..e784e6f43078 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.37/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.37 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.36...v1.0.37' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.37 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.37/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.37/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..43778c144ff5 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.37/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.37 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.37/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.37/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..2c0dce9a3a22 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.37/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.37 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 38bae8f8bd81a3c41e5fea56dbfe2e0332b6d9e4 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:18:24 +0800 Subject: [PATCH 126/436] Move HaiYing.OfficeCLI 1.0.39 to iOfficeAI.OfficeCLI 1.0.39 (#418937) --- .../1.0.39/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.39/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.39/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.39/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.39/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.39/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.39/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.39/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..3c999f7e5c8c --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.39/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.39 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-09 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.39/officecli-win-x64.exe + InstallerSha256: FC425F595263AF5C0E4D210BB2A1C293FC15744CD9F5A5E14FD1C9F15B1EF10F +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.39/officecli-win-arm64.exe + InstallerSha256: D2AFA5230012238DF8065C1924EE2892E0129C2CA3641656BDAD5178C4F2529B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.39/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.39/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..ec8d57387413 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.39/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.39 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.38...v1.0.39' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.39 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.39/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.39/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..a8349668e36c --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.39/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.39 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.39/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.39/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..5d2ffb24c811 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.39/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.39 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 3055a25f91c82d7f6114dfe389297a15846a46fa Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:18:48 +0800 Subject: [PATCH 127/436] Move HaiYing.OfficeCLI 1.0.40 to iOfficeAI.OfficeCLI 1.0.40 (#418939) --- .../1.0.40/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.40/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.40/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.40/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.40/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.40/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.40/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.40/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..49d1651ab417 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.40/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.40 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-09 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.40/officecli-win-x64.exe + InstallerSha256: F2A6A154D8A6388182136B069C843F40FE83F10E8A5D699164120C2AECD5201C +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.40/officecli-win-arm64.exe + InstallerSha256: 4CC49A102A7104BF2395A6A521BF2DBF89A357B7FE0A49118F3C802E7515FBC2 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.40/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.40/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..54fc44be9f8d --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.40/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.40 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.39...v1.0.40' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.40 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.40/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.40/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..31fcead1f03d --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.40/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.40 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.40/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.40/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..af38153ccb42 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.40/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.40 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 991a5d546650390e4a797b9d6607236ed25174e4 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:19:06 +0800 Subject: [PATCH 128/436] Move HaiYing.OfficeCLI 1.0.41 to iOfficeAI.OfficeCLI 1.0.41 (#418941) --- .../1.0.41/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.41/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.41/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.41/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.41/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.41/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.41/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.41/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..a282d5bc6720 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.41/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.41 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-10 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.41/officecli-win-x64.exe + InstallerSha256: F09B94F33410B0F6721DFE43665A5F5731A62BC0434C59B5ABAF4FA1F2F48891 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.41/officecli-win-arm64.exe + InstallerSha256: 30170F94EB3EB439E995E2E06E8346319BA78DB0FC62E0FF899A34994955C1C2 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.41/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.41/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..b0771c86abb9 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.41/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.41 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.40...v1.0.41' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.41 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.41/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.41/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..a24ed8651263 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.41/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.41 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.41/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.41/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..d7107eedff71 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.41/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.41 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From d616ac7414d81c3ba9bf653dceb2121dba875642 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:19:28 +0800 Subject: [PATCH 129/436] Move HaiYing.OfficeCLI 1.0.42 to iOfficeAI.OfficeCLI 1.0.42 (#418943) --- .../1.0.42/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 76 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 ++++++++++++ .../OfficeCLI/1.0.42/iOfficeAI.OfficeCLI.yaml | 8 ++ 4 files changed, 151 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.42/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.42/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.42/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.42/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.42/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.42/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..fa61bd34cff7 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.42/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.42 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-10 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.42/officecli-win-x64.exe + InstallerSha256: E1EE79ABB05373E3D7B87D4D440318C7C615DAA7F972986347FE368E4AF90176 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.42/officecli-win-arm64.exe + InstallerSha256: 33CE38BD24AB42A1D291CE7E44A2E95D7DFBBE1AE27C5456EAFCD124CC9DA27E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.42/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.42/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..44dacb640119 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.42/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,76 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.42 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: |- + What's Changed + - [codex] docs(skills): standardize officecli install guidance by @IceyLiu in https://github.com/iOfficeAI/OfficeCLI/pull/51 + - feat(word): OLE object support, image auto aspect ratio, and insertion positioning fixes by @konbakuyomu in https://github.com/iOfficeAI/OfficeCLI/pull/50 + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.41...v1.0.42 +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.42 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.42/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.42/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..27ec86456461 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.42/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.42 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.42/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.42/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..bd788935c880 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.42/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.42 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 446e521ff0f6bdf4a6cbef8ba290edbd05c860e0 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:19:45 +0800 Subject: [PATCH 130/436] Move HaiYing.OfficeCLI 1.0.43 to iOfficeAI.OfficeCLI 1.0.43 (#418945) --- .../1.0.43/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.43/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.43/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.43/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.43/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.43/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.43/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.43/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..7d8cdcd56416 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.43/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.43 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.43/officecli-win-x64.exe + InstallerSha256: 8244D1B2BD594A68C93208BA5C1898EF5263BC87B931EA838250ED5BDFC7FA8C +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.43/officecli-win-arm64.exe + InstallerSha256: 5719D7EA97AB08067D5796FDD0DE96EC7E3C158C8B3360BEF64082EC5A75F410 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.43/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.43/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..21c265f71ab5 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.43/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.43 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.42...v1.0.43' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.43 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.43/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.43/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..b5fa0ad8e2e8 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.43/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.43 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.43/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.43/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..dd8a55d79ab6 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.43/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.43 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From ba08234d3402d11a12099cbf8d597c7cfb4351b8 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:20:01 +0800 Subject: [PATCH 131/436] Move HaiYing.OfficeCLI 1.0.44 to iOfficeAI.OfficeCLI 1.0.44 (#418947) --- .../1.0.44/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 75 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 ++++++++++++ .../OfficeCLI/1.0.44/iOfficeAI.OfficeCLI.yaml | 8 ++ 4 files changed, 150 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.44/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.44/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.44/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.44/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.44/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.44/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..f062997c66f5 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.44/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.44 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-13 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.44/officecli-win-x64.exe + InstallerSha256: 2F3C1EFBBE4B545D29088C8CC983B3D1B69584316DBFA0B155D654C55C1C0CA3 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.44/officecli-win-arm64.exe + InstallerSha256: EC507B90737228DA0B7F53190D261FE25842B497BFBE5DE074ADCDEE9AC71017 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.44/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.44/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..243d4365b356 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.44/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,75 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.44 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: |- + What's Changed + - feat(skills): add morph-ppt-3d skill for 3D model presentations by @ringringlin in https://github.com/iOfficeAI/OfficeCLI/pull/55 + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.43...v1.0.44 +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.44 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.44/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.44/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..233b159e1768 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.44/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.44 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.44/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.44/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..3ce3703fc418 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.44/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.44 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From b982e64eb8d116aa0cfb9917174017e193e717c2 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:20:16 +0800 Subject: [PATCH 132/436] Move HaiYing.OfficeCLI 1.0.45 to iOfficeAI.OfficeCLI 1.0.45 (#418950) --- .../1.0.45/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 74 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 ++++++++++++ .../OfficeCLI/1.0.45/iOfficeAI.OfficeCLI.yaml | 8 ++ 4 files changed, 149 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.45/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.45/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.45/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.45/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.45/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.45/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..df17603ff1ec --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.45/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.45 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-13 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.45/officecli-win-x64.exe + InstallerSha256: 72C9A14DD5D760216934BB8433EAC4E8BF52070EE1A5E2CDDD2EF46728C21FC9 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.45/officecli-win-arm64.exe + InstallerSha256: 8F5C703870D3A27CDBCF89B35197D5776E4752C167E4E0609739B40A256A7DB4 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.45/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.45/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..3216884a1f23 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.45/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,74 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.45 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: |- + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.44...v1.0.45 + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.44...v1.0.45 +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.45 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.45/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.45/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..a246f2949048 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.45/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.45 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.45/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.45/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..53420c8e4fe4 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.45/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.45 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 0864c4fd54ad2e593a0b531e9f2c3834ba665826 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:20:34 +0800 Subject: [PATCH 133/436] Move HaiYing.OfficeCLI 1.0.46 to iOfficeAI.OfficeCLI 1.0.46 (#418953) --- .../1.0.46/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.46/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.46/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.46/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.46/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.46/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.46/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.46/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..7e57017ec887 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.46/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.46 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-04-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.46/officecli-win-x64.exe + InstallerSha256: A409E734CCD7B8F466767B17F53FCAD8B2A51E6FD15E8B2BF06077AE69F11660 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.46/officecli-win-arm64.exe + InstallerSha256: 5B5AEF530B431FE4D956373DC0253C12CFC4690B94CAD98CF164613519D4B4B9 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.46/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.46/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..607564ac0334 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.46/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.46 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.45...v1.0.46' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.46 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.46/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.46/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..b42aea07fbdd --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.46/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.46 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.46/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.46/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..f59fe34a8d04 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.46/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.46 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From c825613433019e01350daf88c72908091daa7ad9 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:20:48 +0800 Subject: [PATCH 134/436] Move HaiYing.OfficeCLI 1.0.73 to iOfficeAI.OfficeCLI 1.0.73 (#419260) --- .../1.0.73/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 75 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 ++++++++++++ .../OfficeCLI/1.0.73/iOfficeAI.OfficeCLI.yaml | 8 ++ 4 files changed, 150 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.73/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.73/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.73/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.73/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.73/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.73/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..9ccb77c67181 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.73/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.73 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-05 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.73/officecli-win-x64.exe + InstallerSha256: 0853B40D8B154BED480F08586FD07AE2B5169D8A7FEC4ED0AB10C5C6C0BEE535 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.73/officecli-win-arm64.exe + InstallerSha256: 24CF01BEB21B5F0CB305B426C8876F7EC7495F18A5B5D5512A9C29F78F18C688 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.73/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.73/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..096b6eeea95d --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.73/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,75 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.73 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: |- + What's Changed + - Word/docx batch of correctness fixes (59 commits) by @goworm in https://github.com/iOfficeAI/OfficeCLI/pull/98 + Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.72...v1.0.73 +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.73 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.73/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.73/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..ccdbf5ada7c2 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.73/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.73 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.73/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.73/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..b6f39b989cf6 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.73/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.73 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 13e5e58ab6d1c60a390d593db48cfd6bd01e8bc0 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:21:04 +0800 Subject: [PATCH 135/436] Move HaiYing.OfficeCLI 1.0.75 to iOfficeAI.OfficeCLI 1.0.75 (#419263) --- .../1.0.75/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.75/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.75/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.75/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.75/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.75/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.75/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.75/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..ab1987fc8c99 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.75/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.75 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.75/officecli-win-x64.exe + InstallerSha256: CD5D50FB8418BB37CB9736C4502B30F7D6A2E545B1D6032E0CD7A9FC70EF0F20 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.75/officecli-win-arm64.exe + InstallerSha256: E2B32A6955B67D9E32846B17625577A3110655C44975972B9282DE4D2659C7FA +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.75/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.75/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..e75ba0f727b6 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.75/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.75 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.73...v1.0.75' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.75 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.75/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.75/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..647503254d1e --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.75/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.75 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.75/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.75/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..90f9f685ecee --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.75/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.75 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 1d061a7a8efd224715ba65e8a6e40a2e462139c9 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:21:18 +0800 Subject: [PATCH 136/436] Move HaiYing.OfficeCLI 1.0.76 to iOfficeAI.OfficeCLI 1.0.76 (#419265) --- .../1.0.76/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.76/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.76/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.76/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.76/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.76/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.76/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.76/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..ec221adcd5b2 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.76/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.76 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.76/officecli-win-x64.exe + InstallerSha256: F9E4895505858AB813E133D4D1F9F01004C7B4B08397408487F534CAF9E2EC58 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.76/officecli-win-arm64.exe + InstallerSha256: 513E28718299A42FB499B0A87CB7E5850266AD41EBACADE5B1DBCB8915F4671D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.76/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.76/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..2973cb2ea1fb --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.76/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.76 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.75...v1.0.76' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.76 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.76/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.76/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..534d51b51059 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.76/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.76 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.76/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.76/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..69645ed44e07 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.76/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.76 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 3f36adcf7848b267daff5b5678e7cba0e75b8a88 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:21:35 +0800 Subject: [PATCH 137/436] Move HaiYing.OfficeCLI 1.0.77 to iOfficeAI.OfficeCLI 1.0.77 (#419267) --- .../1.0.77/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.77/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.77/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.77/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.77/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.77/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.77/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.77/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..d9f789a37bd1 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.77/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.77 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-08 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.77/officecli-win-x64.exe + InstallerSha256: 5DC944A8ED20A1EA196FE297A33CA77059ECF2503325DB294169D202E46C6650 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.77/officecli-win-arm64.exe + InstallerSha256: 89F82A8452AC42870E73097135CE650DC5CE5BDCED9733D0713C2D41360C9745 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.77/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.77/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..77ea2ea79c57 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.77/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.77 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.76...v1.0.77' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.77 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.77/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.77/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..1b9b50d36bcb --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.77/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.77 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.77/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.77/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..6f16b17bf3d1 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.77/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.77 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From cf4a8ee5db142f8b92dbff8460a1abbeaabe26ba Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:21:49 +0800 Subject: [PATCH 138/436] Move HaiYing.OfficeCLI 1.0.80 to iOfficeAI.OfficeCLI 1.0.80 (#419271) --- .../1.0.80/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.80/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.80/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.80/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.80/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.80/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.80/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.80/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..f6e4fb4b5292 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.80/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.80 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-09 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.80/officecli-win-x64.exe + InstallerSha256: 914FD971879081A8C00C70C60B822096DA165CB8AFDD58970E85C7C817306C57 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.80/officecli-win-arm64.exe + InstallerSha256: 48F21CB8D07309D1067E856757DA958529BC5E410A51E6BD6C337842FE8EF196 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.80/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.80/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..96ba042dbad9 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.80/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.80 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.79...v1.0.80' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.80 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.80/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.80/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..acab83fb1d60 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.80/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.80 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.80/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.80/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..d19190bab224 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.80/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.80 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 790e9dd12bb628d57dd93957ea4d53133ce71d1a Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:22:04 +0800 Subject: [PATCH 139/436] Move HaiYing.OfficeCLI 1.0.81 to iOfficeAI.OfficeCLI 1.0.81 (#419273) --- .../1.0.81/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.81/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.81/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.81/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.81/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.81/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.81/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.81/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..fea4ff1433a3 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.81/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.81 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-09 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.81/officecli-win-x64.exe + InstallerSha256: 073AEDD0C34FD601FD0D55EBA33DB751859F0E4A12C1DCDB5A5F8727FDB946BF +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.81/officecli-win-arm64.exe + InstallerSha256: 51E8FE85AB6E6D12E5596B51B914738DBA035DD5037183DD2C3493C9A5F45255 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.81/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.81/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..a9f110e24bdc --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.81/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.81 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.80...v1.0.81' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.81 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.81/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.81/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..5fe43779da8e --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.81/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.81 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.81/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.81/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..7a70edb95785 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.81/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.81 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 9dbb1f13a02e9060eac0e90e3caf8eea4145c434 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:22:21 +0800 Subject: [PATCH 140/436] Move HaiYing.OfficeCLI 1.0.83 to iOfficeAI.OfficeCLI 1.0.83 (#419275) --- .../1.0.83/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.83/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.83/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.83/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.83/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.83/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.83/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.83/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..9dd76411d9f2 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.83/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.83 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-10 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.83/officecli-win-x64.exe + InstallerSha256: CB3C56B16D2BDBEB72A3CBBEFF79827FF84FD4D0D7A7DC386E1EF45623DDDBF4 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.83/officecli-win-arm64.exe + InstallerSha256: 77F9D10DF7D2E93DCCEC899FDC1C53A2BC1E612DC9A96941A4B8B0A006A74B37 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.83/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.83/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..fdc101402c5c --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.83/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.83 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.82...v1.0.83' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.83 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.83/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.83/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..10a0ce11bc58 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.83/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.83 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.83/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.83/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..8635b03d9ee1 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.83/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.83 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 7700bdc75fd1a6c757df57fac2b911ad34669ad1 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:22:38 +0800 Subject: [PATCH 141/436] Move HaiYing.OfficeCLI 1.0.84 to iOfficeAI.OfficeCLI 1.0.84 (#419277) --- .../1.0.84/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.84/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.84/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.84/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.84/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.84/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.84/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.84/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..edc686e642fa --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.84/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.84 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-10 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.84/officecli-win-x64.exe + InstallerSha256: A88B2A81D1C4E07141FCE87C59ACB88BD10CD4B4DC04D59968279ED008F3A7C4 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.84/officecli-win-arm64.exe + InstallerSha256: 072DE8B8CDF98EC87331ABBBBB7D2409140A322E3F1DC6FEA77558AD88F4045C +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.84/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.84/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..b343e452a970 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.84/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.84 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.83...v1.0.84' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.84 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.84/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.84/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..b40613ee5021 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.84/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.84 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.84/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.84/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..d5110f3ff1f3 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.84/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.84 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 0237889926593c2822a9fca44d6a8700a7466b0e Mon Sep 17 00:00:00 2001 From: Imre Eilertsen Date: Tue, 18 Aug 2026 21:22:49 +0200 Subject: [PATCH 142/436] New package: Microsoft.UpdateHealthTools.W10 version 3.70 (#414286) --- ...osoft.UpdateHealthTools.W10.installer.yaml | 20 +++++++++++++++++ ...ft.UpdateHealthTools.W10.locale.en-US.yaml | 22 +++++++++++++++++++ .../3.70/Microsoft.UpdateHealthTools.W10.yaml | 7 ++++++ 3 files changed, 49 insertions(+) create mode 100644 manifests/m/Microsoft/UpdateHealthTools/W10/3.70/Microsoft.UpdateHealthTools.W10.installer.yaml create mode 100644 manifests/m/Microsoft/UpdateHealthTools/W10/3.70/Microsoft.UpdateHealthTools.W10.locale.en-US.yaml create mode 100644 manifests/m/Microsoft/UpdateHealthTools/W10/3.70/Microsoft.UpdateHealthTools.W10.yaml diff --git a/manifests/m/Microsoft/UpdateHealthTools/W10/3.70/Microsoft.UpdateHealthTools.W10.installer.yaml b/manifests/m/Microsoft/UpdateHealthTools/W10/3.70/Microsoft.UpdateHealthTools.W10.installer.yaml new file mode 100644 index 000000000000..213e14e0ac2c --- /dev/null +++ b/manifests/m/Microsoft/UpdateHealthTools/W10/3.70/Microsoft.UpdateHealthTools.W10.installer.yaml @@ -0,0 +1,20 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.UpdateHealthTools.W10 +PackageVersion: "3.70" +InstallerType: zip +NestedInstallerType: msi +NestedInstallerFiles: +- RelativeFilePath: 'Expedite_packages\Windows 10\UpdHealthTools.msi' +ProductCode: '{89581302-705F-42C5-99B0-E368A845DAD5}' +Installers: +- Architecture: x64 + InstallerUrl: https://download.microsoft.com/download/d/7/e/d7e9fd79-e6fe-4036-85df-c60254f50d90/Expedite_packages.zip + InstallerSha256: ED4DEAD7E64F16C30DA29593EB05015274E9AA9A826DE510B659C7BEE94F4A52 +UnsupportedOSArchitectures: +- arm64 +- x86 +- arm +ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/UpdateHealthTools/W10/3.70/Microsoft.UpdateHealthTools.W10.locale.en-US.yaml b/manifests/m/Microsoft/UpdateHealthTools/W10/3.70/Microsoft.UpdateHealthTools.W10.locale.en-US.yaml new file mode 100644 index 000000000000..d3a9da7990b8 --- /dev/null +++ b/manifests/m/Microsoft/UpdateHealthTools/W10/3.70/Microsoft.UpdateHealthTools.W10.locale.en-US.yaml @@ -0,0 +1,22 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.UpdateHealthTools.W10 +PackageVersion: "3.70" +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft Update Health Tools (Windows 10) +PackageUrl: https://www.microsoft.com/en-gb/download/details.aspx?id=103324 +License: Proprietary +ShortDescription: Enables expediting Windows 10 quality updates in Microsoft Intune. +Moniker: muht10 +Tags: +- microsoft-update-health-tools-w10 +- microsoftupdatehealthtoolswindows10 +- expediteupdater +- uhssvc +- microsoft-intune +- microsoftintune +- updhealthtools-windows-10 +- kb4023057 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/UpdateHealthTools/W10/3.70/Microsoft.UpdateHealthTools.W10.yaml b/manifests/m/Microsoft/UpdateHealthTools/W10/3.70/Microsoft.UpdateHealthTools.W10.yaml new file mode 100644 index 000000000000..9983bea3d3f3 --- /dev/null +++ b/manifests/m/Microsoft/UpdateHealthTools/W10/3.70/Microsoft.UpdateHealthTools.W10.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Microsoft.UpdateHealthTools.W10 +PackageVersion: "3.70" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 185f2c7843c9a3e1a0d1751040aecf5fdf80c2da Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:22:53 +0800 Subject: [PATCH 143/436] Move HaiYing.OfficeCLI 1.0.85 to iOfficeAI.OfficeCLI 1.0.85 (#419279) --- .../1.0.85/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.85/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.85/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.85/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.85/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.85/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.85/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.85/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..37fa5be26236 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.85/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.85 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-10 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.85/officecli-win-x64.exe + InstallerSha256: 644DF325FE73BBD389B09835DCEC0F0471FE8ABC31C8B6089403C3E0FE72D442 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.85/officecli-win-arm64.exe + InstallerSha256: 2B02F7CB7CD68F07C076652FF7BD061D67D3DB82E3E793BB6255B53F3C19B684 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.85/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.85/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..7b1d898a3b16 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.85/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.85 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.84...v1.0.85' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.85 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.85/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.85/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..1ce8dbb0b184 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.85/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.85 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.85/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.85/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..7ed768943848 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.85/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.85 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 5a042a2c88bed95c52edead29458fcea83e158a4 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:23:09 +0800 Subject: [PATCH 144/436] Move HaiYing.OfficeCLI 1.0.86 to iOfficeAI.OfficeCLI 1.0.86 (#419281) --- .../1.0.86/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.86/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.86/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.86/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.86/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.86/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.86/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.86/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..f182cce5c6b0 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.86/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.86 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.86/officecli-win-x64.exe + InstallerSha256: 31F743C1457687F7C38CA2CC0D330DF7EF9084A8368E314630BE5D6743FADDDB +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.86/officecli-win-arm64.exe + InstallerSha256: 53375DB42D642586D57908D93026683ED65C77319FAF9F9823739E05FB5ED7BC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.86/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.86/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..030018850a49 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.86/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.86 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.85...v1.0.86' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.86 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.86/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.86/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..19b2247b8455 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.86/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.86 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.86/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.86/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..8f8b00dd8baf --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.86/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.86 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 597476019383e859b35f9d7207b4c32da2738bdb Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:23:33 +0800 Subject: [PATCH 145/436] Move HaiYing.OfficeCLI 1.0.87 to iOfficeAI.OfficeCLI 1.0.87 (#419283) --- .../1.0.87/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.87/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.87/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.87/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.87/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.87/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.87/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.87/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..84b043d27045 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.87/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.87 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.87/officecli-win-x64.exe + InstallerSha256: 727EB0E2A1B6BA6613D1D613B78001F8AD426254F637D3E91AD05C252D76228A +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.87/officecli-win-arm64.exe + InstallerSha256: 1378048CB3C0B120C36DCB0337540342F28F3813F41577E51D6A479A99DE9D14 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.87/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.87/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..cd5a2a311316 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.87/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.87 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.86...v1.0.87' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.87 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.87/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.87/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..f25ad353e33c --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.87/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.87 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.87/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.87/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..a0eab85a1483 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.87/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.87 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From c7b9397910afb7e9cebd6a71d92a2e34bd255a8d Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:23:56 +0800 Subject: [PATCH 146/436] Move HaiYing.OfficeCLI 1.0.88 to iOfficeAI.OfficeCLI 1.0.88 (#419285) --- .../1.0.88/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.88/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.88/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.88/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.88/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.88/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.88/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.88/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..0b4d6bcebac7 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.88/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.88 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.88/officecli-win-x64.exe + InstallerSha256: CC8C826488FAB0435FF1FE3211F74A6E1C526230F8FC5CD325A69D66EC246B2D +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.88/officecli-win-arm64.exe + InstallerSha256: CB3741C1B68643D0E07729EF7B16C7144ABF48DECB50CCB1BE1F2B965C54A482 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.88/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.88/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..66c67aece75a --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.88/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.88 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.87...v1.0.88' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.88 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.88/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.88/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..5105ac4c3a77 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.88/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.88 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.88/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.88/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..caca690a216b --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.88/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.88 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 953f0e983ca53273d66944983ac86b7a44f1043d Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:24:11 +0800 Subject: [PATCH 147/436] Move HaiYing.OfficeCLI 1.0.89 to iOfficeAI.OfficeCLI 1.0.89 (#419287) --- .../1.0.89/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.89/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.89/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.89/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.89/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.89/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.89/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.89/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..3fb5fee7eda2 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.89/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.89 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-12 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.89/officecli-win-x64.exe + InstallerSha256: AE69E605309C6C5F69AC6FF9B417F98C07BE8E880BEDE3DB83F6D4E7F84782B7 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.89/officecli-win-arm64.exe + InstallerSha256: 00028F577E0E3F1655DBAA569CB36795F0B8BA559C8EE2463837D67607EB5524 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.89/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.89/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..fcf3ea9bdf5f --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.89/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.89 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.88...v1.0.89' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.89 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.89/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.89/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..3b7f96dcbba7 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.89/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.89 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.89/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.89/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..5fdc1693dfa8 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.89/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.89 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From a02a5ab673ba7650408f047790e098364f11f72f Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:24:39 +0800 Subject: [PATCH 148/436] Move HaiYing.OfficeCLI 1.0.90 to iOfficeAI.OfficeCLI 1.0.90 (#419289) --- .../1.0.90/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.90/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.90/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.90/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.90/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.90/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.90/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.90/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..587e6d66eabf --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.90/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.90 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-13 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.90/officecli-win-x64.exe + InstallerSha256: AAF40F585A80E9E07A2CE8BF2D58C100C8F8BD45EAE6C9A2C53E896CDB96CCC1 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.90/officecli-win-arm64.exe + InstallerSha256: 6BDEC05729969832AF2FBEDBA7F73073E480EAF9698B57DC422B9564A4D9EE3A +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.90/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.90/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..02494ca0c537 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.90/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.90 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.89...v1.0.90' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.90 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.90/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.90/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..4005d47d0725 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.90/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.90 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.90/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.90/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..0540193c86a2 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.90/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.90 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From cfa543a16c2eef542bfd07460e326e9a8f241e07 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:24:58 +0800 Subject: [PATCH 149/436] Move HaiYing.OfficeCLI 1.0.92 to iOfficeAI.OfficeCLI 1.0.92 (#419293) --- .../1.0.92/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.92/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.92/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.92/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.92/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.92/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.92/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.92/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..7f02c02f6524 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.92/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.92 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-14 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.92/officecli-win-x64.exe + InstallerSha256: CE5E4926DCFC766E467E92B207786822150A28930700F98334E10FE16DDC054A +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.92/officecli-win-arm64.exe + InstallerSha256: 4B33E72AEBF71486AA9551957F1037E6535F8FD00EFC7A01485CEC408269E315 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.92/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.92/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..64bee858f433 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.92/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.92 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.91...v1.0.92' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.92 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.92/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.92/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..7b10644ec9ea --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.92/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.92 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.92/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.92/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..62d7d903a29a --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.92/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.92 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From ca67bed2b2c3ff9d6de16135f856974774046a49 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:25:18 +0800 Subject: [PATCH 150/436] Move HaiYing.OfficeCLI 1.0.93 to iOfficeAI.OfficeCLI 1.0.93 (#419295) --- .../1.0.93/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.93/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.93/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.93/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.93/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.93/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.93/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.93/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..96f3f92f5551 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.93/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.93 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-16 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.93/officecli-win-x64.exe + InstallerSha256: 2470480E402D503F65621A4A335CA301817092EE960590AD3B172B058CF87778 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.93/officecli-win-arm64.exe + InstallerSha256: 34B164E4E7B324A013BA1DC8DA15FE6FE8CCEE1430A03BF1CE1AE1EC77463994 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.93/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.93/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..ddc4ffe2278d --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.93/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.93 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.92...v1.0.93' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.93 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.93/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.93/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..84fc2df727d5 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.93/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.93 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.93/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.93/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..69d408a33e85 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.93/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.93 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 313e22e63b3cfb2e7f54c9635257968c16ecd6c5 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:25:38 +0800 Subject: [PATCH 151/436] Move HaiYing.OfficeCLI 1.0.94 to iOfficeAI.OfficeCLI 1.0.94 (#419297) --- .../1.0.94/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.94/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.94/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.94/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.94/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.94/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.94/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.94/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..d6c17b641261 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.94/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.94 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-18 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.94/officecli-win-x64.exe + InstallerSha256: E93B04E918308C68823AE16675177CD49815E830D879679FAC47669314BDC291 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.94/officecli-win-arm64.exe + InstallerSha256: 6A66134233B4099B7F695381850F52F6760CCF2B24E85503FF396543563984CA +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.94/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.94/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..1e249d19602b --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.94/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.94 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.93...v1.0.94' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.94 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.94/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.94/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..00fc1777b0dd --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.94/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.94 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.94/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.94/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..60b33ae8df78 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.94/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.94 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 6915b83be312dca8fdc27f3648c48bd364a6fcdb Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:25:57 +0800 Subject: [PATCH 152/436] Move HaiYing.OfficeCLI 1.0.95 to iOfficeAI.OfficeCLI 1.0.95 (#419299) --- .../1.0.95/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.95/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.95/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.95/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.95/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.95/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.95/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.95/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..641c6b1abd32 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.95/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.95 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-20 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.95/officecli-win-x64.exe + InstallerSha256: 755863A486F5925C8F08BCA023261DA91CD8FE408A053B4C245443AF2CF25185 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.95/officecli-win-arm64.exe + InstallerSha256: 895667B5DE063E18AB590D60F966A9778C94AA1786B0D3B641F776B60679EDF0 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.95/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.95/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..6e5a1811682c --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.95/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.95 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.94...v1.0.95' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.95 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.95/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.95/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..ab214c882080 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.95/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.95 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.95/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.95/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..42f3e5a06fea --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.95/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.95 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 96ba46c45646ef54b37d3ea315c785062cba0737 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:26:18 +0800 Subject: [PATCH 153/436] Move HaiYing.OfficeCLI 1.0.96 to iOfficeAI.OfficeCLI 1.0.96 (#419301) --- .../1.0.96/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.96/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.96/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.96/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.96/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.96/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.96/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.96/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..40e3dfe8e586 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.96/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.96 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-21 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.96/officecli-win-x64.exe + InstallerSha256: FCB3CA20498D21D66E3239775042A3B312B277C19DD336D987B9C87E08BFA898 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.96/officecli-win-arm64.exe + InstallerSha256: 6FC211A52D092C8B2FA847F8181E76A712F295DBA9D8A37E1E0490C440892463 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.96/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.96/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..f08767920aae --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.96/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.96 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.95...v1.0.96' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.96 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.96/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.96/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..81e8c829d43e --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.96/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.96 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.96/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.96/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..c51f746b59a9 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.96/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.96 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 33faf93e215367d8c7b945125cc3e0a26841e73e Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:26:45 +0800 Subject: [PATCH 154/436] Move HaiYing.OfficeCLI 1.0.97 to iOfficeAI.OfficeCLI 1.0.97 (#419303) --- .../1.0.97/iOfficeAI.OfficeCLI.installer.yaml | 18 +++++ .../iOfficeAI.OfficeCLI.locale.en-US.yaml | 72 +++++++++++++++++++ .../iOfficeAI.OfficeCLI.locale.zh-CN.yaml | 49 +++++++++++++ .../OfficeCLI/1.0.97/iOfficeAI.OfficeCLI.yaml | 8 +++ 4 files changed, 147 insertions(+) create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.97/iOfficeAI.OfficeCLI.installer.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.97/iOfficeAI.OfficeCLI.locale.en-US.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.97/iOfficeAI.OfficeCLI.locale.zh-CN.yaml create mode 100644 manifests/i/iOfficeAI/OfficeCLI/1.0.97/iOfficeAI.OfficeCLI.yaml diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.97/iOfficeAI.OfficeCLI.installer.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.97/iOfficeAI.OfficeCLI.installer.yaml new file mode 100644 index 000000000000..e55cc9a932c2 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.97/iOfficeAI.OfficeCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.97 +InstallerType: portable +Commands: +- officecli +ReleaseDate: 2026-05-24 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.97/officecli-win-x64.exe + InstallerSha256: 16B1F4D1EDF47284462A5ED4E7519B8BF926B5E9499223646EF0B060C78D0775 +- Architecture: arm64 + InstallerUrl: https://github.com/iOfficeAI/OfficeCLI/releases/download/v1.0.97/officecli-win-arm64.exe + InstallerSha256: 857DF92E5D13D6834D7A76D7F5BC5D116E8B14072872A370E3E915CF33E6F812 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.97/iOfficeAI.OfficeCLI.locale.en-US.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.97/iOfficeAI.OfficeCLI.locale.en-US.yaml new file mode 100644 index 000000000000..4780459d5a57 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.97/iOfficeAI.OfficeCLI.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.97 +PackageLocale: en-US +Publisher: Hying Technology Co., Ltd. +PublisherUrl: https://office-ai.net/ +PublisherSupportUrl: https://github.com/iOfficeAI/OfficeCLI/issues +Author: Hying Technology Co., Ltd. +PackageName: OfficeCLI +PackageUrl: https://github.com/iOfficeAI/OfficeCLI +License: Apache-2.0 +LicenseUrl: https://github.com/iOfficeAI/OfficeCLI/blob/HEAD/LICENSE +Copyright: Copyright 2026 OfficeCli (https://OfficeCli.AI) +ShortDescription: The first and best command-line tool purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required. +Description: |- + Why OfficeCLI? + + What used to take 50 lines of Python and 3 separate libraries: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 45 more lines ... prs.save('deck.pptx') + + Now takes one command: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + What OfficeCLI can do: + - Create documents from scratch -- blank or with content + - Read text, structure, styles, formulas -- in plain text or structured JSON + - Analyze formatting issues, style inconsistencies, and structural problems + - Modify any element -- text, fonts, colors, layout, formulas, charts, images + - Reorganize content -- add, remove, move, copy elements across documents + + | Format | Read | Modify | Create | + | ------------------ | ---- | ------ | ------ | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — paragraphs, runs, tables, styles, headers/footers, images, equations, comments, footnotes, watermarks, bookmarks, TOC, charts, hyperlinks, sections, form fields, content controls (SDT), fields, document properties + Excel — cells, formulas (150+ built-in functions with auto-evaluation), sheets, tables, conditional formatting, charts, pivot tables, named ranges, data validation, images, sparklines, comments, autofilter, shapes, CSV/TSV import, $Sheet:A1 cell addressing + PowerPoint — slides, shapes, images, tables, charts, animations, morph transitions, 3D models (.glb), slide zoom, equations, themes, connectors, video/audio, groups, notes, placeholders + + Use Cases + + For Developers: + - Automate report generation from databases or APIs + - Batch-process documents (bulk find/replace, style updates) + - Build document pipelines in CI/CD environments (generate docs from test results) + - Headless Office automation in Docker/containerized environments + For AI Agents: + - Generate presentations from user prompts (see examples above) + - Extract structured data from documents to JSON + - Validate and check document quality before delivery + For Teams: + - Clone document templates and populate with data + - Automated document validation in CI/CD pipelines +Tags: +- docx +- excel +- office +- openxml +- powerpoint +- pptx +- word +- xlsx +ReleaseNotes: 'Full Changelog: https://github.com/iOfficeAI/OfficeCLI/compare/v1.0.96...v1.0.97' +ReleaseNotesUrl: https://github.com/iOfficeAI/OfficeCLI/releases/tag/v1.0.97 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/iOfficeAI/OfficeCLI/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.97/iOfficeAI.OfficeCLI.locale.zh-CN.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.97/iOfficeAI.OfficeCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..5436177e064c --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.97/iOfficeAI.OfficeCLI.locale.zh-CN.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.97 +PackageLocale: zh-CN +ShortDescription: 首款且性能最佳的命令行工具,专为 AI 智能体打造,可实现 Word、Excel、PowerPoint 文件的读取、编辑与自动化处理。免费开源、仅单二进制文件,无需安装 Office 办公软件。 +Description: |- + 为什么选择 OfficeCLI? + + 以前需要 50 行 Python 和 3 个独立库: + from pptx import Presentation from pptx.util import Inches, Pt prs = Presentation() slide = prs.slides.add_slide(prs.slide_layouts[0]) title = slide.shapes.title title.text = "Q4 Report" # ... 还有 45 行 ... prs.save('deck.pptx') + + 现在只需一条命令: + officecli add deck.pptx / --type slide --prop title="Q4 Report" + + OfficeCLI 能做什么: + - 创建 文档 -- 空白文档或带内容的文档 + - 读取 文本、结构、样式、公式 -- 纯文本或结构化 JSON + - 分析 格式问题、样式不一致和结构缺陷 + - 修改 任意元素 -- 文本、字体、颜色、布局、公式、图表、图片 + - 重组 内容 -- 添加、删除、移动、复制跨文档元素 + + | 格式 | 读取 | 修改 | 创建 | + | ------------------ | ---- | ---- | ---- | + | Word (.docx) | ✅ | ✅ | ✅ | + | Excel (.xlsx) | ✅ | ✅ | ✅ | + | PowerPoint (.pptx) | ✅ | ✅ | ✅ | + + Word — 段落、文本片段、表格、样式、页眉/页脚、图片、公式、批注、脚注、水印、书签、目录、图表、超链接、节、表单域、内容控件 (SDT)、域、文档属性 + Excel — 单元格、公式(内置 150+ 函数自动求值)、工作表、表格、条件格式、图表、数据透视表、命名范围、数据验证、图片、迷你图、批注、自动筛选、形状、CSV/TSV 导入、$Sheet:A1 单元格寻址 + PowerPoint — 幻灯片、形状、图片、表格、图表、动画、morph 过渡、3D 模型(.glb)、幻灯片缩放、公式、主题、连接线、视频/音频、组合、备注、占位符 + + 使用场景 + + 开发者: + - 从数据库或 API 自动生成报告 + - 批量处理文档(批量查找/替换、样式更新) + - 在 CI/CD 环境中构建文档流水线(从测试结果生成文档) + - Docker/容器化环境中的无头 Office 自动化 + AI 智能体: + - 根据用户提示生成演示文稿(见上方示例) + - 从文档提取结构化数据到 JSON + - 交付前验证和检查文档质量 + 团队: + - 克隆文档模板并填充数据 + - CI/CD 流水线中的自动化文档验证 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/i/iOfficeAI/OfficeCLI/1.0.97/iOfficeAI.OfficeCLI.yaml b/manifests/i/iOfficeAI/OfficeCLI/1.0.97/iOfficeAI.OfficeCLI.yaml new file mode 100644 index 000000000000..03d22c58c9d9 --- /dev/null +++ b/manifests/i/iOfficeAI/OfficeCLI/1.0.97/iOfficeAI.OfficeCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: iOfficeAI.OfficeCLI +PackageVersion: 1.0.97 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 194dfea888a0293523d9eeed29e2153e528970de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=85=89=E5=85=89?= Date: Wed, 19 Aug 2026 03:27:12 +0800 Subject: [PATCH 155/436] gg.ai.ggcode-cli version 1.3.211 (#419542) --- .../1.3.211/gg.ai.ggcode-cli.installer.yaml | 38 +++++++++++++++++++ .../gg.ai.ggcode-cli.locale.en-US.yaml | 33 ++++++++++++++++ .../ggcode-cli/1.3.211/gg.ai.ggcode-cli.yaml | 8 ++++ 3 files changed, 79 insertions(+) create mode 100644 manifests/g/gg/ai/ggcode-cli/1.3.211/gg.ai.ggcode-cli.installer.yaml create mode 100644 manifests/g/gg/ai/ggcode-cli/1.3.211/gg.ai.ggcode-cli.locale.en-US.yaml create mode 100644 manifests/g/gg/ai/ggcode-cli/1.3.211/gg.ai.ggcode-cli.yaml diff --git a/manifests/g/gg/ai/ggcode-cli/1.3.211/gg.ai.ggcode-cli.installer.yaml b/manifests/g/gg/ai/ggcode-cli/1.3.211/gg.ai.ggcode-cli.installer.yaml new file mode 100644 index 000000000000..b51f36344dc0 --- /dev/null +++ b/manifests/g/gg/ai/ggcode-cli/1.3.211/gg.ai.ggcode-cli.installer.yaml @@ -0,0 +1,38 @@ +# Created using wingetcreate 1.12.13.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: gg.ai.ggcode-cli +PackageVersion: 1.3.211 +Platform: +- Windows.Desktop +InstallerType: wix +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- ggcode +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/topcheer/ggcode/releases/download/v1.3.211/ggcode_1.3.211_windows_x64.msi + InstallerSha256: EBEA300AF34BA87F63A7E68FC2DC0D4F822728E203145CA4C4B4F1AAFF6EC99C + ProductCode: '{BEB9CAD4-A34E-4450-AEC3-B1A3A73550D2}' + AppsAndFeaturesEntries: + - DisplayName: ggcode + Publisher: GG AI Studio + ProductCode: '{BEB9CAD4-A34E-4450-AEC3-B1A3A73550D2}' + UpgradeCode: '{B3C4D5E6-F7A8-9012-BCDE-F23456789012}' +- Architecture: arm64 + InstallerUrl: https://github.com/topcheer/ggcode/releases/download/v1.3.211/ggcode_1.3.211_windows_arm64.msi + InstallerSha256: E553EEB56867D3707614C7EDDC2D292C116CC1507A167AE091CE7310AE167B12 + ProductCode: '{1591D54E-8045-4198-841D-7BC4E0845638}' + AppsAndFeaturesEntries: + - DisplayName: ggcode + Publisher: GG AI Studio + ProductCode: '{1591D54E-8045-4198-841D-7BC4E0845638}' + UpgradeCode: '{B3C4D5E6-F7A8-9012-BCDE-F23456789012}' +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-08-18 diff --git a/manifests/g/gg/ai/ggcode-cli/1.3.211/gg.ai.ggcode-cli.locale.en-US.yaml b/manifests/g/gg/ai/ggcode-cli/1.3.211/gg.ai.ggcode-cli.locale.en-US.yaml new file mode 100644 index 000000000000..a03dfa775fb8 --- /dev/null +++ b/manifests/g/gg/ai/ggcode-cli/1.3.211/gg.ai.ggcode-cli.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.12.13.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: gg.ai.ggcode-cli +PackageVersion: 1.3.211 +PackageLocale: en-US +Publisher: GG AI Studio +PublisherUrl: https://github.com/topcheer +PublisherSupportUrl: https://github.com/topcheer/ggcode/issues +Author: GG AI Studio +PackageName: ggcode +PackageUrl: https://github.com/topcheer/ggcode +License: MIT +LicenseUrl: https://github.com/topcheer/ggcode/blob/v1.3.52/LICENSE +ShortDescription: AI coding agent for the terminal. +Description: |- + ggcode is an AI coding agent for terminal-first workflows. It can understand + repositories, edit files, run commands, use MCP tools, and keep working with + resumable sessions inside a full-screen TUI. +Moniker: ggcode +Tags: +- ai +- cli +- coding +- developer-tools +- mcp +- terminal +ReleaseNotesUrl: https://github.com/topcheer/ggcode/releases/tag/v1.3.211 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/topcheer/ggcode/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/gg/ai/ggcode-cli/1.3.211/gg.ai.ggcode-cli.yaml b/manifests/g/gg/ai/ggcode-cli/1.3.211/gg.ai.ggcode-cli.yaml new file mode 100644 index 000000000000..22c91d118619 --- /dev/null +++ b/manifests/g/gg/ai/ggcode-cli/1.3.211/gg.ai.ggcode-cli.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.13.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: gg.ai.ggcode-cli +PackageVersion: 1.3.211 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 5b7b1496ca9a4d4f2629d02af594591879be9e89 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Wed, 19 Aug 2026 03:27:44 +0800 Subject: [PATCH 156/436] New version: Mozilla.Firefox.mk version 154.0 (#419834) --- .../154.0/Mozilla.Firefox.mk.installer.yaml | 40 +++++++ .../Mozilla.Firefox.mk.locale.cs-CZ.yaml | 14 +++ .../Mozilla.Firefox.mk.locale.da-DK.yaml | 14 +++ .../Mozilla.Firefox.mk.locale.de-DE.yaml | 16 +++ .../Mozilla.Firefox.mk.locale.el-GR.yaml | 13 ++ .../Mozilla.Firefox.mk.locale.en-GB.yaml | 20 ++++ .../Mozilla.Firefox.mk.locale.en-US.yaml | 112 ++++++++++++++++++ .../Mozilla.Firefox.mk.locale.es-MX.yaml | 18 +++ .../Mozilla.Firefox.mk.locale.fr-FR.yaml | 17 +++ .../Mozilla.Firefox.mk.locale.hu-HU.yaml | 16 +++ .../Mozilla.Firefox.mk.locale.ja-JP.yaml | 14 +++ .../Mozilla.Firefox.mk.locale.nb-NO.yaml | 16 +++ .../Mozilla.Firefox.mk.locale.ru-RU.yaml | 17 +++ .../Mozilla.Firefox.mk.locale.ta-IN.yaml | 20 ++++ .../Mozilla.Firefox.mk.locale.zh-CN.yaml | 24 ++++ .../Firefox/mk/154.0/Mozilla.Firefox.mk.yaml | 8 ++ 16 files changed, 379 insertions(+) create mode 100644 manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.installer.yaml create mode 100644 manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.cs-CZ.yaml create mode 100644 manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.da-DK.yaml create mode 100644 manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.de-DE.yaml create mode 100644 manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.el-GR.yaml create mode 100644 manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.en-GB.yaml create mode 100644 manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.en-US.yaml create mode 100644 manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.es-MX.yaml create mode 100644 manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.fr-FR.yaml create mode 100644 manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.hu-HU.yaml create mode 100644 manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.ja-JP.yaml create mode 100644 manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.nb-NO.yaml create mode 100644 manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.ru-RU.yaml create mode 100644 manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.ta-IN.yaml create mode 100644 manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.zh-CN.yaml create mode 100644 manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.yaml diff --git a/manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.installer.yaml b/manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.installer.yaml new file mode 100644 index 000000000000..60e2a897b556 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: "154.0" +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-08-18 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/154.0/win32/mk/Firefox%20Setup%20154.0.exe + InstallerSha256: B5C0DC18604A816B455B7F9D0FB0C0211058B51CC1A1D184E94CFCAAAC3F8CD4 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/154.0/win64/mk/Firefox%20Setup%20154.0.exe + InstallerSha256: 8529D4385CDA1C884050A18DF97185E644984DD77A476D0CCCBE65577A753C51 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/154.0/win64-aarch64/mk/Firefox%20Setup%20154.0.exe + InstallerSha256: CFB8108EAB8584BB0CE6C9D0A7ED4E67557BF8ED204ED5482DAF9B8620E71D03 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.cs-CZ.yaml new file mode 100644 index 000000000000..e45b83de94f8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: "154.0" +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.da-DK.yaml new file mode 100644 index 000000000000..81e459c2f746 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: "154.0" +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.de-DE.yaml new file mode 100644 index 000000000000..217c76fb774f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: "154.0" +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.el-GR.yaml new file mode 100644 index 000000000000..5f5a560e2b6f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: "154.0" +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.en-GB.yaml new file mode 100644 index 000000000000..5eb1cfefb209 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: "154.0" +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.en-US.yaml new file mode 100644 index 000000000000..ffa84f134f22 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/154.0/Mozilla.Firefox.mk.locale.en-US.yaml @@ -0,0 +1,112 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: "154.0" +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (mk) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + Version 154.0, first offered to Release channel users on August 18, 2026 + + New + - Firefox's Local Network Access protections now extend to WebSocket connections. Websites that try to open a WebSocket to a device on the local network will now ask for permission first. + - In Smart Window, Firefox can now suggest groups of related tabs and propose a name for each group. + + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + - Local Firefox profile backups are now available on macOS in addition to Windows and Linux, and backups can be restored across all three platforms. + - Sites can now be exempted from having their cookies and site data cleared on shutdown without also being exempted from tracking protection and other cookie restrictions. + - The full-page Translations feature now translates