From 80189265278896801caf133d15ba11641ca78a27 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sun, 12 Apr 2026 04:46:25 +0800 Subject: [PATCH 01/87] New version: bodaay.hfdownloader version 3.0.4 (#358403) --- .../3.0.4/bodaay.hfdownloader.installer.yaml | 15 ++++++ .../bodaay.hfdownloader.locale.en-US.yaml | 50 +++++++++++++++++++ .../bodaay.hfdownloader.locale.zh-CN.yaml | 13 +++++ .../3.0.4/bodaay.hfdownloader.yaml | 8 +++ 4 files changed, 86 insertions(+) create mode 100644 manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.installer.yaml create mode 100644 manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.locale.en-US.yaml create mode 100644 manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.locale.zh-CN.yaml create mode 100644 manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.yaml diff --git a/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.installer.yaml b/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.installer.yaml new file mode 100644 index 0000000000000..f9e17c5dccb12 --- /dev/null +++ b/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.installer.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: bodaay.hfdownloader +PackageVersion: 3.0.4 +InstallerType: portable +Commands: +- hfdownloader +ReleaseDate: 2026-04-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/bodaay/HuggingFaceModelDownloader/releases/download/v3.0.4/hfdownloader_windows_amd64_v3.0.4.exe + InstallerSha256: B6CA755E68B5EC21041A542E75A146A47D2964C519998505CC4CD212496D2D34 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.locale.en-US.yaml b/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.locale.en-US.yaml new file mode 100644 index 0000000000000..f0226032e7200 --- /dev/null +++ b/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.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.12.0.schema.json + +PackageIdentifier: bodaay.hfdownloader +PackageVersion: 3.0.4 +PackageLocale: en-US +Publisher: bodaay +PublisherUrl: https://github.com/bodaay +PublisherSupportUrl: https://github.com/bodaay/HuggingFaceModelDownloader/issues +PackageName: HuggingFace Model Downloader +PackageUrl: https://github.com/bodaay/HuggingFaceModelDownloader +License: Apache-2.0 +LicenseUrl: https://github.com/bodaay/HuggingFaceModelDownloader/blob/HEAD/LICENSE +ShortDescription: Simple go utility to download HuggingFace Models and Datasets +Description: The HuggingFace Model Downloader is a utility tool for downloading models and datasets from the HuggingFace website. It offers multithreaded downloading for LFS files and ensures the integrity of downloaded models with SHA256 checksum verification. +Moniker: hfdownloader +Tags: +- huggingface +ReleaseNotes: |- + What's Changed in v3.0.4 + Bug-fix release tackling eight open issues reported against v3.0.3. Focused on download correctness, webui responsiveness, storage flexibility, and analyzer coverage for new quant formats. Every fix ships with regression tests; go test -race ./... is now fully green across every package. + Bug Fixes + - Resumable downloads actually resume now (#70) — downloadSingle and each downloadMultipart part goroutine now open .part files with O_RDWR|O_CREATE (no truncate), stat the existing size, and issue Range: bytes=pos-end requests from that offset. Interrupted downloads resume correctly on rerun, and within-process retries after a flaky-connection cut no longer lose bytes. Previously every Ctrl+C silently re-fetched from zero and single-file downloads literally had no resume code path at all. + - Unsloth Dynamic quant variants correctly labeled (#72) — the GGUF quant regex now supports Q{2..8}_K_XL / _XXL suffixes and IQ1_S / IQ1_M. Previously on repos like unsloth/Qwen3-30B-A3B-GGUF the regex silently collapsed six UD-Q*_K_XL files into Q2_K..Q8_K labels that collided with the real plain-K quants, and missed the two IQ1 files entirely. All 25 GGUF files in that repo now label correctly. Added quality/description map entries for Q2_K_L, Q2..8_K_XL, IQ1_S/M, IQ2_M, IQ3_XXS. + - Multimodal GGUF repos auto-bundle the vision encoder (#76) — analyzeGGUF now partitions .gguf files into LLM quants vs mmproj vision encoders. A vision_encoder SelectableItem is emitted as Recommended by default, so the recommended CLI command for a multimodal repo becomes e.g. -F q4_k_m,mmproj-f16 for unsloth/gemma-3-4b-it-GGUF. Downloading a single quant now pulls in the matching projector automatically, matching LM Studio's behavior. + - Progress no longer oscillates on slow/flaky connections (#75) — the multipart progress ticker now stops cleanly before assembly via an explicit done channel + WaitGroup, and an explicit final full-size reading is emitted after all parts complete. Root cause: the ticker kept stating part files while assembly was deleting them, emitting downloaded=0 events that made the UI appear stuck at 2.4% ↔ 2.5% for hours on slow links. Combined with the #70 fix above, flaky downloads of multi-GB files now converge cleanly. + - Pause no longer claims the file is 100% done — fixed a regression in the #75 tail path where downloadMultipart on cancellation would fall past its errCh drain (cancelled goroutines return silently via sleepCtx without pushing errors) and emit a bogus downloaded == total event followed by assembly over an incomplete part set — corrupting the final file and deleting the very partial bytes the next resume was supposed to continue from. Now bails out with ctx.Err() immediately after the ticker shutdown. Regression test in TestDownloadMultipart_CancelMidStreamDoesNotClaim100. + - Web UI no longer floods the browser with updates (#62) — two-layer fix: + - Server-side 250ms per-job WebSocket broadcast coalescer in front of BroadcastJob. Progress events arriving inside the window collapse to a single flush of the latest state; terminal status changes (completed/failed/cancelled/paused) bypass the gate so pause/cancel transitions still feel instant. + - Frontend renderJobs no longer does container.innerHTML = jobs.map(...).join('') on every tick. Per-job DOM elements are cached and updated in place — progress bar width and stats text change, but the card node, the action buttons, and their event listeners stay stable. Hover states persist and Pause/Cancel buttons are clickable during an active download. + - Dismissed jobs stay dismissed across refresh (#68) — new POST /api/jobs/{id}/dismiss endpoint permanently removes a terminal-state job from the manager. Frontend dismissJob now calls the server before removing from local state, so page reloads and WebSocket reconnects don't repopulate it. Attempts to dismiss queued or running jobs return 409. The primary per-file-deletion ask in the same issue is tracked separately. + - JobManager returns snapshots — data race fixed — CreateJob, GetJob, ListJobs, and the internal WebSocket broadcast path all now return/forward cloned Job snapshots via a new cloneJobLocked helper. Previously the HTTP JSON encoder and the WS broadcaster would read Job fields while runJob was mutating them on a separate goroutine. go test -race ./... is now fully green across every package for the first time. + Features + - --local-dir CLI flag (#71, #73) — new flag mirroring huggingface-cli download --local-dir. Downloads real files into the chosen directory instead of the HF cache's blobs+symlinks layout. Right choice for feeding weights to llama.cpp / ollama, Windows users without Developer Mode, and NFS/SMB/USB transfers. Equivalent to the existing --legacy -o form — both spellings are permanent and interchangeable, and --legacy is no longer marked for removal. + - Installer defaults to ~/.local/bin — no more sudo prompt (#69) — the one-liner bash <(curl -sSL https://g.bodaay.io/hfd) install now picks a user-local install path in this order: + 1. ~/.local/bin if already in PATH + 2. ~/bin if already in PATH + 3. /usr/local/bin if writable + 4. Fallback to ~/.local/bin with a printed export PATH= line + Explicit targets like install /usr/local/bin still work and still use sudo where needed. Root users still get /usr/local/bin by default. + Documentation + - README now has a prominent Storage Modes section documenting both HF-cache-default and flat-file --local-dir modes as first-class, permanent options with when-to-use-which guidance. + - docs/CLI.md and docs/V3_FEATURES.md updated to reflect the un-deprecated --legacy / --output flags and the new --local-dir spelling. + Test Infrastructure + - TestAPI_Health no longer pins to a stale hardcoded version string. + - TestJobManager_CreateJob no longer races its TempDir cleanup against in-flight runJob goroutines — new JobManager.WaitAll(timeout) lets the test block on actual goroutine exit before cleanup runs. + Full Changelog: https://github.com/bodaay/HuggingFaceModelDownloader/compare/v3.0.3...v3.0.4 +ReleaseNotesUrl: https://github.com/bodaay/HuggingFaceModelDownloader/releases/tag/v3.0.4 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.locale.zh-CN.yaml b/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.locale.zh-CN.yaml new file mode 100644 index 0000000000000..fda13fd0c9bcd --- /dev/null +++ b/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.locale.zh-CN.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: bodaay.hfdownloader +PackageVersion: 3.0.4 +PackageLocale: zh-CN +ShortDescription: 下载 HuggingFace 模型和数据集的简单 Go 工具 +Description: HuggingFace 模型下载器是一款从 HuggingFace 网站下载模型和数据集的实用工具,为 LFS 文件提供多线程下载,并通过 SHA256 校验和验证确保下载的模型是完整的。 +Tags: +- 抱抱脸 +ReleaseNotesUrl: https://github.com/bodaay/HuggingFaceModelDownloader/releases/tag/v3.0.4 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.yaml b/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.yaml new file mode 100644 index 0000000000000..7fa57aefece5e --- /dev/null +++ b/manifests/b/bodaay/hfdownloader/3.0.4/bodaay.hfdownloader.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: bodaay.hfdownloader +PackageVersion: 3.0.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 70b6148c8e1b39df1d32c33e4302fa36232a3915 Mon Sep 17 00:00:00 2001 From: Kaleb Luedtke Date: Sat, 11 Apr 2026 15:48:43 -0500 Subject: [PATCH 02/87] Add Pester Tests for `YamlCreate.InstallerDetection` (#327538) Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: Trenly <12611259+Trenly@users.noreply.github.com> --- .github/workflows/pesterTests.yaml | 51 +++ .github/workflows/scriptAnalyzer.yaml | 2 + .../YamlCreate.InstallerDetection/README.md | 94 +++++ .../YamlCreate.InstallerDetection.Tests.ps1 | 388 ++++++++++++++++++ 4 files changed, 535 insertions(+) create mode 100644 .github/workflows/pesterTests.yaml create mode 100644 Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/README.md create mode 100644 Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/YamlCreate.InstallerDetection.Tests.ps1 diff --git a/.github/workflows/pesterTests.yaml b/.github/workflows/pesterTests.yaml new file mode 100644 index 0000000000000..5b6944587a06d --- /dev/null +++ b/.github/workflows/pesterTests.yaml @@ -0,0 +1,51 @@ +name: Pester Tests + +on: + pull_request: + branches: + - master + paths: + - "**/*.ps1" + - "**/*.psm1" + - "**/*.psd1" + push: + paths: + - "**/*.ps1" + - "**/*.psm1" + - "**/*.psd1" + +permissions: + contents: read # Needed to check out the code + pull-requests: read # Needed to read pull request details + +jobs: + test: + runs-on: windows-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + - name: Install Pester + run: | + # Pester 5.x is already included in Windows runners, but ensure latest version + Install-Module -Name Pester -Force -SkipPublisherCheck -Scope CurrentUser -MinimumVersion 5.0.0 + - name: Run Pester Tests + run: | + # Find and run all Pester test files + $testFiles = Get-ChildItem -Recurse -Filter *.Tests.ps1 + if ($testFiles) { + Write-Host "Found $($testFiles.Count) test file(s)" + foreach ($testFile in $testFiles) { + Write-Host "Running tests in: $($testFile.FullName)" + } + + # Run all tests + $config = New-PesterConfiguration + $config.Run.Path = $testFiles.FullName + $config.Run.Exit = $true + $config.Output.Verbosity = 'Detailed' + $config.TestResult.Enabled = $true + + Invoke-Pester -Configuration $config + } else { + Write-Host "No Pester test files found." + } diff --git a/.github/workflows/scriptAnalyzer.yaml b/.github/workflows/scriptAnalyzer.yaml index d2d15f4e1cc4b..8cb2ea488c8eb 100644 --- a/.github/workflows/scriptAnalyzer.yaml +++ b/.github/workflows/scriptAnalyzer.yaml @@ -7,10 +7,12 @@ on: paths: - "**/*.ps1" - "**/*.psm1" + - "**/*.psd1" push: paths: - "**/*.ps1" - "**/*.psm1" + - "**/*.psd1" permissions: contents: read # Needed to check out the code diff --git a/Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/README.md b/Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/README.md new file mode 100644 index 0000000000000..c5b82d3f02d7d --- /dev/null +++ b/Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/README.md @@ -0,0 +1,94 @@ +# YamlCreate.InstallerDetection Tests + +This directory contains Pester tests for the YamlCreate.InstallerDetection PowerShell module. + +## Overview + +The test suite validates the functionality of the installer detection module, which provides functions to: +- Parse PE file structures +- Detect various installer types (ZIP, MSIX, MSI, WIX, Nullsoft, Inno, Burn) +- Identify font files +- Resolve installer types from file paths + +## Running the Tests + +### Prerequisites + +- PowerShell 7.0 or later +- Pester 5.x (included with PowerShell 7+) + +### Run All Tests + +From the module directory, run: + +```powershell +Invoke-Pester -Path ./YamlCreate.InstallerDetection.Tests.ps1 +``` + +### Run Tests with Detailed Output + +For more detailed test output: + +```powershell +Invoke-Pester -Path ./YamlCreate.InstallerDetection.Tests.ps1 -Output Detailed +``` + +### Run Tests with Code Coverage + +To see code coverage metrics: + +```powershell +Invoke-Pester -Path ./YamlCreate.InstallerDetection.Tests.ps1 -CodeCoverage ./YamlCreate.InstallerDetection.psm1 +``` + +## Test Structure + +The test suite is organized into the following sections: + +### Module Tests +- Module import validation +- Exported functions verification + +### Function Tests +- **Get-OffsetBytes**: Tests for byte array extraction with various offsets and endianness +- **Get-PESectionTable**: Tests for PE file parsing +- **Test-IsZip**: Tests for ZIP file detection +- **Test-IsMsix**: Tests for MSIX/APPX detection +- **Test-IsMsi**: Tests for MSI installer detection +- **Test-IsWix**: Tests for WIX installer detection +- **Test-IsNullsoft**: Tests for Nullsoft installer detection +- **Test-IsInno**: Tests for Inno Setup installer detection +- **Test-IsBurn**: Tests for Burn installer detection +- **Test-IsFont**: Tests for font file detection (TTF, OTF, TTC) +- **Resolve-InstallerType**: Tests for the main installer type resolution function + +## Known Limitations + +Some tests are skipped due to complexity or external dependencies: + +1. **ZIP Archive Tests**: Tests that require complete valid ZIP archives are skipped as they would need complex ZIP structure generation +2. **PE File Tests**: Some PE-related tests are skipped when they would require reading non-existent files +3. **External Dependencies**: The module relies on external commands (`Get-MSITable`, `Get-MSIProperty`, `Get-Win32ModuleResource`) that are stubbed in the test environment + +## Test Coverage + +Current test coverage includes: +- 32 passing tests +- 3 skipped tests (require complex setup) +- Covers all 11 exported functions +- Tests both positive and negative scenarios +- Validates edge cases and error handling + +## Contributing + +When adding new functions to the module: +1. Add corresponding tests to `YamlCreate.InstallerDetection.Tests.ps1` +2. Follow the existing test structure (Describe → Context → It blocks) +3. Use descriptive test names that explain what is being tested +4. Include both positive and negative test cases +5. Clean up any temporary files created during tests + +## Additional Resources + +- [Pester Documentation](https://pester.dev/) +- [PowerShell Testing Best Practices](https://pester.dev/docs/usage/test-file-structure) diff --git a/Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/YamlCreate.InstallerDetection.Tests.ps1 b/Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/YamlCreate.InstallerDetection.Tests.ps1 new file mode 100644 index 0000000000000..eb95354aefb96 --- /dev/null +++ b/Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/YamlCreate.InstallerDetection.Tests.ps1 @@ -0,0 +1,388 @@ +BeforeAll { + # Import the module to test + $ModulePath = Split-Path -Parent $PSCommandPath + Import-Module (Join-Path $ModulePath 'YamlCreate.InstallerDetection.psd1') -Force + + # Create stub functions for external dependencies that may not be available + # These are typically provided by external modules like MSI or Windows SDK tools + $Script:AddedGetMSITable = $false + if (-not (Get-Command Get-MSITable -ErrorAction SilentlyContinue)) { + function Global:Get-MSITable { + param([string]$Path) + return $null + } + $Script:AddedGetMSITable = $true + } + + $Script:AddedGetMSIProperty = $false + if (-not (Get-Command Get-MSIProperty -ErrorAction SilentlyContinue)) { + function Global:Get-MSIProperty { + param([string]$Path, [string]$Property) + return $null + } + $Script:AddedGetMSIProperty = $true + } + + $Script:AddedGetWin32ModuleResource = $false + if (-not (Get-Command Get-Win32ModuleResource -ErrorAction SilentlyContinue)) { + function Global:Get-Win32ModuleResource { + param([string]$Path, [switch]$DontLoadResource) + return @() + } + $Script:AddedGetWin32ModuleResource = $true + } +} + +AfterAll { + # Clean up stub functions that were created in BeforeAll to prevent them from persisting in the session + if ($Script:AddedGetMSITable) { Remove-Item Function:\Get-MSITable -ErrorAction SilentlyContinue } + if ($Script:AddedGetMSIProperty) { Remove-Item Function:\Get-MSIProperty -ErrorAction SilentlyContinue } + if ($Script:AddedGetWin32ModuleResource) { Remove-Item Function:\Get-Win32ModuleResource -ErrorAction SilentlyContinue } +} + +Describe 'YamlCreate.InstallerDetection Module' { + Context 'Module Import' { + It 'Should import the module successfully' { + Get-Module 'YamlCreate.InstallerDetection' | Should -Not -BeNullOrEmpty + } + + It 'Should export all expected functions' { + $ExportedFunctions = (Get-Module 'YamlCreate.InstallerDetection').ExportedFunctions.Keys + $ExpectedFunctions = @( + 'Get-OffsetBytes' + 'Get-PESectionTable' + 'Test-IsZip' + 'Test-IsMsix' + 'Test-IsMsi' + 'Test-IsWix' + 'Test-IsNullsoft' + 'Test-IsInno' + 'Test-IsBurn' + 'Test-IsFont' + 'Resolve-InstallerType' + ) + + foreach ($Function in $ExpectedFunctions) { + $ExportedFunctions | Should -Contain $Function + } + } + } +} + +Describe 'Get-OffsetBytes' { + Context 'Valid input' { + It 'Should extract bytes at the correct offset without little endian' { + $ByteArray = [byte[]](0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08) + $Result = Get-OffsetBytes -ByteArray $ByteArray -Offset 2 -Length 3 + $Result | Should -Be @(0x03, 0x04, 0x05) + } + + It 'Should extract bytes with little endian ordering' { + $ByteArray = [byte[]](0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08) + $Result = Get-OffsetBytes -ByteArray $ByteArray -Offset 2 -Length 3 -LittleEndian $true + $Result | Should -Be @(0x05, 0x04, 0x03) + } + + It 'Should extract a single byte' { + $ByteArray = [byte[]](0x01, 0x02, 0x03, 0x04) + $Result = Get-OffsetBytes -ByteArray $ByteArray -Offset 1 -Length 1 + $Result | Should -Be @(0x02) + } + + It 'Should extract bytes from the start of array' { + $ByteArray = [byte[]](0x0A, 0x0B, 0x0C, 0x0D) + $Result = Get-OffsetBytes -ByteArray $ByteArray -Offset 0 -Length 2 + $Result | Should -Be @(0x0A, 0x0B) + } + + It 'Should extract bytes to the end of array' { + $ByteArray = [byte[]](0x01, 0x02, 0x03, 0x04) + $Result = Get-OffsetBytes -ByteArray $ByteArray -Offset 2 -Length 2 + $Result | Should -Be @(0x03, 0x04) + } + } + + Context 'Edge cases' { + It 'Should return empty array when offset exceeds array length' { + $ByteArray = [byte[]](0x01, 0x02, 0x03, 0x04) + $Result = Get-OffsetBytes -ByteArray $ByteArray -Offset 10 -Length 2 + $Result | Should -BeNullOrEmpty + } + } +} + +Describe 'Get-PESectionTable' { + Context 'Invalid files' { + It 'Should return null for non-existent file' -Skip { + # Skipping as it attempts to read a non-existent file which causes errors + $Result = Get-PESectionTable -Path 'C:\NonExistent\File.exe' + $Result | Should -BeNullOrEmpty + } + + It 'Should return null for a text file' { + $TempFile = New-TemporaryFile + Set-Content -Path $TempFile.FullName -Value 'This is not a PE file' + $Result = Get-PESectionTable -Path $TempFile.FullName + $Result | Should -BeNullOrEmpty + Remove-Item $TempFile.FullName -Force + } + + It 'Should return null for file without MZ signature' { + $TempFile = New-TemporaryFile + [byte[]](0x00, 0x00, 0x00, 0x00) * 16 | Set-Content -Path $TempFile.FullName -AsByteStream + $Result = Get-PESectionTable -Path $TempFile.FullName + $Result | Should -BeNullOrEmpty + Remove-Item $TempFile.FullName -Force + } + } +} + +Describe 'Test-IsZip' { + Context 'Valid ZIP files' { + It 'Should return true for a valid ZIP file' { + $TempFile = New-TemporaryFile + # ZIP file signature: PK\x03\x04 + $ZipHeader = [byte[]](0x50, 0x4B, 0x03, 0x04) + ([byte[]](0x00) * 100) + Set-Content -Path $TempFile.FullName -Value $ZipHeader -AsByteStream + $Result = Test-IsZip -Path $TempFile.FullName + $Result | Should -Be $true + Remove-Item $TempFile.FullName -Force + } + } + + Context 'Invalid ZIP files' { + It 'Should return false for a non-ZIP file' { + $TempFile = New-TemporaryFile + Set-Content -Path $TempFile.FullName -Value 'This is not a ZIP file' + $Result = Test-IsZip -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + + It 'Should return false for a file with incorrect header' { + $TempFile = New-TemporaryFile + [byte[]](0x00, 0x01, 0x02, 0x03) | Set-Content -Path $TempFile.FullName -AsByteStream + $Result = Test-IsZip -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + } +} + +Describe 'Test-IsMsix' { + Context 'Non-ZIP files' { + It 'Should return false for a non-ZIP file' { + $TempFile = New-TemporaryFile + Set-Content -Path $TempFile.FullName -Value 'This is not a ZIP file' + $Result = Test-IsMsix -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + } + + Context 'ZIP files without MSIX indicators' { + It 'Should return false for a regular ZIP file without MSIX indicators' -Skip { + # This test requires creating a complete ZIP archive + # Skipped as it requires significant setup + } + } +} + +Describe 'Test-IsMsi' { + Context 'Non-MSI files' { + It 'Should return false for a text file' { + $TempFile = New-TemporaryFile + Set-Content -Path $TempFile.FullName -Value 'This is not an MSI file' + $Result = Test-IsMsi -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + + It 'Should return false for a random binary file' { + $TempFile = New-TemporaryFile + [byte[]](0x00, 0x01, 0x02, 0x03) * 25 | Set-Content -Path $TempFile.FullName -AsByteStream + $Result = Test-IsMsi -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + } +} + +Describe 'Test-IsWix' { + Context 'Non-MSI files' { + It 'Should return false for a text file' { + $TempFile = New-TemporaryFile + Set-Content -Path $TempFile.FullName -Value 'This is not a WIX file' + $Result = Test-IsWix -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + } +} + +Describe 'Test-IsNullsoft' { + Context 'Non-PE files' { + It 'Should return false for a text file' { + $TempFile = New-TemporaryFile + Set-Content -Path $TempFile.FullName -Value 'This is not a PE file' + $Result = Test-IsNullsoft -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + + It 'Should return false for a file without PE structure' { + $TempFile = New-TemporaryFile + [byte[]](0x00, 0x01, 0x02, 0x03) * 25 | Set-Content -Path $TempFile.FullName -AsByteStream + $Result = Test-IsNullsoft -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + } +} + +Describe 'Test-IsInno' { + Context 'Non-PE files' { + It 'Should return false for a text file' { + $TempFile = New-TemporaryFile + Set-Content -Path $TempFile.FullName -Value 'This is not a PE file' + $Result = Test-IsInno -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + } +} + +Describe 'Test-IsBurn' { + Context 'Non-PE files' { + It 'Should return false for a text file' { + $TempFile = New-TemporaryFile + Set-Content -Path $TempFile.FullName -Value 'This is not a PE file' + $Result = Test-IsBurn -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + + It 'Should return false for a random binary file' { + $TempFile = New-TemporaryFile + [byte[]](0x00, 0x01, 0x02, 0x03) * 25 | Set-Content -Path $TempFile.FullName -AsByteStream + $Result = Test-IsBurn -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + } +} + +Describe 'Test-IsFont' { + Context 'Valid font files' { + It 'Should return true for a TrueType font (TTF)' { + $TempFile = New-TemporaryFile + # TTF signature: 0x00, 0x01, 0x00, 0x00 + $TTFHeader = [byte[]](0x00, 0x01, 0x00, 0x00) + ([byte[]](0x00) * 100) + Set-Content -Path $TempFile.FullName -Value $TTFHeader -AsByteStream + $Result = Test-IsFont -Path $TempFile.FullName + $Result | Should -Be $true + Remove-Item $TempFile.FullName -Force + } + + It 'Should return true for an OpenType font (OTF)' { + $TempFile = New-TemporaryFile + # OTF signature: OTTO (0x4F, 0x54, 0x54, 0x4F) + $OTFHeader = [byte[]](0x4F, 0x54, 0x54, 0x4F) + ([byte[]](0x00) * 100) + Set-Content -Path $TempFile.FullName -Value $OTFHeader -AsByteStream + $Result = Test-IsFont -Path $TempFile.FullName + $Result | Should -Be $true + Remove-Item $TempFile.FullName -Force + } + + It 'Should return true for a TrueType Collection (TTC)' { + $TempFile = New-TemporaryFile + # TTC signature: ttcf (0x74, 0x74, 0x63, 0x66) + $TTCHeader = [byte[]](0x74, 0x74, 0x63, 0x66) + ([byte[]](0x00) * 100) + Set-Content -Path $TempFile.FullName -Value $TTCHeader -AsByteStream + $Result = Test-IsFont -Path $TempFile.FullName + $Result | Should -Be $true + Remove-Item $TempFile.FullName -Force + } + } + + Context 'Non-font files' { + It 'Should return false for a text file' { + $TempFile = New-TemporaryFile + Set-Content -Path $TempFile.FullName -Value 'This is not a font file' + $Result = Test-IsFont -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + + It 'Should return false for a file with incorrect header' { + $TempFile = New-TemporaryFile + [byte[]](0xFF, 0xFF, 0xFF, 0xFF) | Set-Content -Path $TempFile.FullName -AsByteStream + $Result = Test-IsFont -Path $TempFile.FullName + $Result | Should -Be $false + Remove-Item $TempFile.FullName -Force + } + } +} + +Describe 'Resolve-InstallerType' { + Context 'Font files' { + It 'Should identify TrueType font files' { + $TempFile = New-TemporaryFile + $TTFHeader = [byte[]](0x00, 0x01, 0x00, 0x00) + ([byte[]](0x00) * 100) + Set-Content -Path $TempFile.FullName -Value $TTFHeader -AsByteStream + $Result = Resolve-InstallerType -Path $TempFile.FullName + $Result | Should -Be 'font' + Remove-Item $TempFile.FullName -Force + } + + It 'Should identify OpenType font files' { + $TempFile = New-TemporaryFile + $OTFHeader = [byte[]](0x4F, 0x54, 0x54, 0x4F) + ([byte[]](0x00) * 100) + Set-Content -Path $TempFile.FullName -Value $OTFHeader -AsByteStream + $Result = Resolve-InstallerType -Path $TempFile.FullName + $Result | Should -Be 'font' + Remove-Item $TempFile.FullName -Force + } + + It 'Should identify TrueType Collection files' { + $TempFile = New-TemporaryFile + $TTCHeader = [byte[]](0x74, 0x74, 0x63, 0x66) + ([byte[]](0x00) * 100) + Set-Content -Path $TempFile.FullName -Value $TTCHeader -AsByteStream + $Result = Resolve-InstallerType -Path $TempFile.FullName + $Result | Should -Be 'font' + Remove-Item $TempFile.FullName -Force + } + } + + Context 'ZIP files' { + It 'Should identify basic ZIP files (or MSIX based on internal structure)' -Skip { + # This test requires a complete valid ZIP structure which Test-IsMsix will try to extract + # Skipping as creating a proper ZIP archive is complex and Test-IsMsix will fail on malformed ZIPs + $TempFile = New-TemporaryFile + $ZipHeader = [byte[]](0x50, 0x4B, 0x03, 0x04) + ([byte[]](0x00) * 100) + Set-Content -Path $TempFile.FullName -Value $ZipHeader -AsByteStream + $Result = Resolve-InstallerType -Path $TempFile.FullName + # Could be 'zip' or 'msix' depending on whether Test-IsMsix can successfully extract and check + $Result | Should -BeIn @('zip', 'msix', $null) + Remove-Item $TempFile.FullName -Force -ErrorAction SilentlyContinue + } + } + + Context 'Unknown files' { + It 'Should return null for unknown file types' { + $TempFile = New-TemporaryFile + Set-Content -Path $TempFile.FullName -Value 'This is an unknown file type' + $Result = Resolve-InstallerType -Path $TempFile.FullName + $Result | Should -BeNullOrEmpty + Remove-Item $TempFile.FullName -Force + } + + It 'Should return null for a random binary file' { + $TempFile = New-TemporaryFile + [byte[]](0xFF, 0xAA, 0xBB, 0xCC) * 25 | Set-Content -Path $TempFile.FullName -AsByteStream + $Result = Resolve-InstallerType -Path $TempFile.FullName + $Result | Should -BeNullOrEmpty + Remove-Item $TempFile.FullName -Force + } + } +} From 51f8ebf1b136a5c9fabc3e86a79b04fbafee2481 Mon Sep 17 00:00:00 2001 From: YusufKhalifadev Date: Sat, 11 Apr 2026 23:12:47 +0200 Subject: [PATCH 03/87] [New Version] REVENGE.StremioEnhanced version 1.1.3 (#358400) --- .../REVENGE.StremioEnhanced.installer.yaml | 19 +++++++++ .../REVENGE.StremioEnhanced.locale.en-US.yaml | 41 +++++++++++++++++++ .../1.1.3/REVENGE.StremioEnhanced.yaml | 8 ++++ 3 files changed, 68 insertions(+) create mode 100644 manifests/r/REVENGE/StremioEnhanced/1.1.3/REVENGE.StremioEnhanced.installer.yaml create mode 100644 manifests/r/REVENGE/StremioEnhanced/1.1.3/REVENGE.StremioEnhanced.locale.en-US.yaml create mode 100644 manifests/r/REVENGE/StremioEnhanced/1.1.3/REVENGE.StremioEnhanced.yaml diff --git a/manifests/r/REVENGE/StremioEnhanced/1.1.3/REVENGE.StremioEnhanced.installer.yaml b/manifests/r/REVENGE/StremioEnhanced/1.1.3/REVENGE.StremioEnhanced.installer.yaml new file mode 100644 index 0000000000000..21863860e9da1 --- /dev/null +++ b/manifests/r/REVENGE/StremioEnhanced/1.1.3/REVENGE.StremioEnhanced.installer.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: REVENGE.StremioEnhanced +PackageVersion: 1.1.3 +InstallerLocale: en-US +InstallerType: nullsoft +ProductCode: 4069370c-462a-53a0-8015-5cfc529c3919 +AppsAndFeaturesEntries: +- DisplayName: Stremio Enhanced + Publisher: REVENGE + ProductCode: 4069370c-462a-53a0-8015-5cfc529c3919 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/REVENGE977/stremio-enhanced/releases/download/v1.1.3/Stremio.Enhanced.Setup.1.1.3.exe + InstallerSha256: 7A9DF429A28CAC304511A239C88EAF5A73C7F32B8B8605E31097885CF3045D0C +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-04-10 diff --git a/manifests/r/REVENGE/StremioEnhanced/1.1.3/REVENGE.StremioEnhanced.locale.en-US.yaml b/manifests/r/REVENGE/StremioEnhanced/1.1.3/REVENGE.StremioEnhanced.locale.en-US.yaml new file mode 100644 index 0000000000000..3be3f53c84010 --- /dev/null +++ b/manifests/r/REVENGE/StremioEnhanced/1.1.3/REVENGE.StremioEnhanced.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: REVENGE.StremioEnhanced +PackageVersion: 1.1.3 +PackageLocale: en-US +Publisher: REVENGE977 +PublisherUrl: https://github.com/REVENGE977 +PublisherSupportUrl: https://github.com/REVENGE977/stremio-enhanced/issues +PackageName: Stremio Enhanced +PackageUrl: https://github.com/REVENGE977/stremio-enhanced +License: MIT +LicenseUrl: https://github.com/REVENGE977/stremio-enhanced/blob/HEAD/LICENSE.md +Copyright: Copyright © 2026 REVENGE +ShortDescription: Electron-based Stremio client with support for plugins and themes. This is a community project and is not affiliated with Stremio in any way. +Tags: +- customization +- discordrpc +- electron +- enhanced +- plugins +- stremio +- stremio-addon +- stremio-client +- stremio-enhanced +- stremio-local-addon-manager +- stremio-theme +- stremio-themes +- stremio-web +ReleaseNotes: |- + - Minor bug fix: Fixed community marketplace install/uninstall buttons not working. + - Minor bug fix: Fixed a bug where if the user uninstalls a theme from the community marketplace, the currently active theme would get disabled regardless of whether it's the theme they uninstalled or not. + - Minor bug fix: Fixed an issue where the app wouldn't fullscreen properly on Linux. + + +ReleaseNotesUrl: https://github.com/REVENGE977/stremio-enhanced/releases/tag/v1.1.3 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/REVENGE977/stremio-enhanced/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/REVENGE/StremioEnhanced/1.1.3/REVENGE.StremioEnhanced.yaml b/manifests/r/REVENGE/StremioEnhanced/1.1.3/REVENGE.StremioEnhanced.yaml new file mode 100644 index 0000000000000..68d79713c099b --- /dev/null +++ b/manifests/r/REVENGE/StremioEnhanced/1.1.3/REVENGE.StremioEnhanced.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: REVENGE.StremioEnhanced +PackageVersion: 1.1.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 88f8c80a805b220629f40302bbde1be1cad9b906 Mon Sep 17 00:00:00 2001 From: Imre Eilertsen Date: Sat, 11 Apr 2026 23:14:01 +0200 Subject: [PATCH 04/87] Added 2 tags: YouXiao.YXFile version 2.5.4.4 (#358414) --- .../y/YouXiao/YXFile/2.5.4.4/YouXiao.YXFile.locale.en-US.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/manifests/y/YouXiao/YXFile/2.5.4.4/YouXiao.YXFile.locale.en-US.yaml b/manifests/y/YouXiao/YXFile/2.5.4.4/YouXiao.YXFile.locale.en-US.yaml index 10b1047897b3c..99d14923c036b 100644 --- a/manifests/y/YouXiao/YXFile/2.5.4.4/YouXiao.YXFile.locale.en-US.yaml +++ b/manifests/y/YouXiao/YXFile/2.5.4.4/YouXiao.YXFile.locale.en-US.yaml @@ -14,7 +14,7 @@ PackageUrl: https://www.yxfile.com.cn/ License: Proprietary LicenseUrl: https://www.yxfile.com.cn/agreement.html Copyright: © YXFile. All Rights Reserved. -ShortDescription: Help you manage your files easily +ShortDescription: Helps you manage your files easily. Description: YXFile is a file tag management software with a powerful built-in local file search engine to help you manage your computer files easily. Tags: - application @@ -28,6 +28,8 @@ Tags: - search - software - tag +- prc +- china ReleaseNotesUrl: https://support.qq.com/products/382872/blog/775472 Documentations: - DocumentLabel: FAQ From 19ba35f8c09405937a00f7fed79a55ba4880b5e7 Mon Sep 17 00:00:00 2001 From: Gorniaky <30408913+Gorniaky@users.noreply.github.com> Date: Sat, 11 Apr 2026 18:43:32 -0300 Subject: [PATCH 05/87] New version: Discloud.CLI version 0.12.1 (#358407) --- .../CLI/0.12.1/Discloud.CLI.installer.yaml | 16 ++++++++++++ .../CLI/0.12.1/Discloud.CLI.locale.en-US.yaml | 25 +++++++++++++++++++ .../d/Discloud/CLI/0.12.1/Discloud.CLI.yaml | 8 ++++++ 3 files changed, 49 insertions(+) create mode 100644 manifests/d/Discloud/CLI/0.12.1/Discloud.CLI.installer.yaml create mode 100644 manifests/d/Discloud/CLI/0.12.1/Discloud.CLI.locale.en-US.yaml create mode 100644 manifests/d/Discloud/CLI/0.12.1/Discloud.CLI.yaml diff --git a/manifests/d/Discloud/CLI/0.12.1/Discloud.CLI.installer.yaml b/manifests/d/Discloud/CLI/0.12.1/Discloud.CLI.installer.yaml new file mode 100644 index 0000000000000..398c01a6feb57 --- /dev/null +++ b/manifests/d/Discloud/CLI/0.12.1/Discloud.CLI.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Discloud.CLI +PackageVersion: 0.12.1 +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/discloud/cli-dart/releases/download/0.12.1/discloud-cli-x64-setup.exe + InstallerSha256: D55511F1BCB5E082864FC332B84A87481C6DE382B068634CDDC6F15525B22D49 +- Architecture: arm64 + InstallerUrl: https://github.com/discloud/cli-dart/releases/download/0.12.1/discloud-cli-x64-setup.exe + InstallerSha256: D55511F1BCB5E082864FC332B84A87481C6DE382B068634CDDC6F15525B22D49 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-04-11 diff --git a/manifests/d/Discloud/CLI/0.12.1/Discloud.CLI.locale.en-US.yaml b/manifests/d/Discloud/CLI/0.12.1/Discloud.CLI.locale.en-US.yaml new file mode 100644 index 0000000000000..fe9b67344ab13 --- /dev/null +++ b/manifests/d/Discloud/CLI/0.12.1/Discloud.CLI.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Discloud.CLI +PackageVersion: 0.12.1 +PackageLocale: en-US +Publisher: Discloud +PublisherUrl: https://github.com/discloud +PublisherSupportUrl: https://docs.discloud.com/faq/where-to-get-help +PrivacyUrl: https://github.com/discloud/legal/blob/main/terms-en.md +Author: Discloud +PackageName: Discloud CLI +PackageUrl: https://github.com/discloud/cli-dart +License: Apache 2.0 +LicenseUrl: https://github.com/discloud/cli-dart/blob/main/LICENSE +Copyright: Copyright © 2026 Discloud +ShortDescription: Discloud CLI Setup +Description: A fast option to manage your apps on Discloud. +Moniker: discloudcli +Tags: +- discloudbot +- host +ReleaseNotesUrl: https://github.com/discloud/cli-dart/releases/tag/0.12.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discloud/CLI/0.12.1/Discloud.CLI.yaml b/manifests/d/Discloud/CLI/0.12.1/Discloud.CLI.yaml new file mode 100644 index 0000000000000..1d46523dad241 --- /dev/null +++ b/manifests/d/Discloud/CLI/0.12.1/Discloud.CLI.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: Discloud.CLI +PackageVersion: 0.12.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 158c2ab9e962f4c7f9b2966e9f7da40e88caa375 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= <31723128+kris6673@users.noreply.github.com> Date: Sat, 11 Apr 2026 23:44:43 +0200 Subject: [PATCH 06/87] New version: GAM-Team.gam version 7.40.01 (#358408) --- .../gam/7.40.01/GAM-Team.gam.installer.yaml | 21 ++++++++++ .../7.40.01/GAM-Team.gam.locale.en-US.yaml | 42 +++++++++++++++++++ .../g/GAM-Team/gam/7.40.01/GAM-Team.gam.yaml | 8 ++++ 3 files changed, 71 insertions(+) create mode 100644 manifests/g/GAM-Team/gam/7.40.01/GAM-Team.gam.installer.yaml create mode 100644 manifests/g/GAM-Team/gam/7.40.01/GAM-Team.gam.locale.en-US.yaml create mode 100644 manifests/g/GAM-Team/gam/7.40.01/GAM-Team.gam.yaml diff --git a/manifests/g/GAM-Team/gam/7.40.01/GAM-Team.gam.installer.yaml b/manifests/g/GAM-Team/gam/7.40.01/GAM-Team.gam.installer.yaml new file mode 100644 index 0000000000000..8f78836156bc7 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.40.01/GAM-Team.gam.installer.yaml @@ -0,0 +1,21 @@ +# 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: GAM-Team.gam +PackageVersion: 7.40.01 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +ProductCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}_is1' +ReleaseDate: 2026-04-11 +AppsAndFeaturesEntries: +- ProductCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%SystemDrive%\GAM7' +Installers: +- Architecture: arm64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.40.01/gam-7.40.01-windows-arm64.exe + InstallerSha256: FA892870DB484B70BBFB093E4B2B6C883D8EDDBB0A66C3CF7C22D227B9B15A83 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/GAM-Team/gam/7.40.01/GAM-Team.gam.locale.en-US.yaml b/manifests/g/GAM-Team/gam/7.40.01/GAM-Team.gam.locale.en-US.yaml new file mode 100644 index 0000000000000..5638ba806f5c2 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.40.01/GAM-Team.gam.locale.en-US.yaml @@ -0,0 +1,42 @@ +# 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: GAM-Team.gam +PackageVersion: 7.40.01 +PackageLocale: en-US +Publisher: GAM Team - google-apps-manager@googlegroups.com +PublisherUrl: https://github.com/GAM-team +PublisherSupportUrl: https://github.com/GAM-team/GAM/issues +PackageName: gam +PackageUrl: https://github.com/GAM-team/GAM +License: Apache-2.0 +LicenseUrl: https://github.com/GAM-team/GAM/blob/HEAD/LICENSE +ShortDescription: command line management for Google Workspace +Tags: +- gam +- google +- google-admin-sdk +- google-api +- google-apps +- google-calendar +- google-cloud +- google-drive +- google-workspace +- gsuite +- oauth2 +- oauth2-client +- python +ReleaseNotes: |- + - 7.40.01 + Updated gam print filelist|filecounts to handle the permissionDetails subfield + of the permissions field for My Drives; this useful when trying to display permission inheritance. + An additional API call per file is required to get the permissionDetails subfield. + gam user user@domain.com print filelist fields id,name,mimetype,basicpermissions,permissiondetails oneitemperrow + gam user user@domain.com print filelist fields id,name,mimetype,basicpermissions,permissiondetails pm inherited false em pmfilter oneitemperrow + - See Update History +ReleaseNotesUrl: https://github.com/GAM-team/GAM/releases/tag/v7.40.01 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/GAM-team/GAM/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GAM-Team/gam/7.40.01/GAM-Team.gam.yaml b/manifests/g/GAM-Team/gam/7.40.01/GAM-Team.gam.yaml new file mode 100644 index 0000000000000..a57f3e1b25f3f --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.40.01/GAM-Team.gam.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: GAM-Team.gam +PackageVersion: 7.40.01 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 3a139205e62314361c558b836332133b4908f195 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sun, 12 Apr 2026 05:45:59 +0800 Subject: [PATCH 07/87] New version: Google.Chrome.Canary version 149.0.7786.0 (#358410) --- .../Google.Chrome.Canary.installer.yaml | 14 +++++++------- .../Google.Chrome.Canary.locale.en-US.yaml | 2 +- .../Google.Chrome.Canary.locale.nb-NO.yaml | 2 +- .../Google.Chrome.Canary.locale.zh-CN.yaml | 2 +- .../Google.Chrome.Canary.yaml | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) rename manifests/g/Google/Chrome/Canary/{149.0.7785.0 => 149.0.7786.0}/Google.Chrome.Canary.installer.yaml (57%) rename manifests/g/Google/Chrome/Canary/{149.0.7785.0 => 149.0.7786.0}/Google.Chrome.Canary.locale.en-US.yaml (96%) rename manifests/g/Google/Chrome/Canary/{149.0.7785.0 => 149.0.7786.0}/Google.Chrome.Canary.locale.nb-NO.yaml (96%) rename manifests/g/Google/Chrome/Canary/{149.0.7785.0 => 149.0.7786.0}/Google.Chrome.Canary.locale.zh-CN.yaml (96%) rename manifests/g/Google/Chrome/Canary/{149.0.7785.0 => 149.0.7786.0}/Google.Chrome.Canary.yaml (89%) diff --git a/manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.installer.yaml similarity index 57% rename from manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.installer.yaml rename to manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.installer.yaml index 4d6db39e4212e..b79ddcd83497d 100644 --- a/manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.installer.yaml +++ b/manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Google.Chrome.Canary -PackageVersion: 149.0.7785.0 +PackageVersion: 149.0.7786.0 InstallerType: exe Scope: user InstallModes: @@ -37,13 +37,13 @@ FileExtensions: ProductCode: Google Chrome SxS Installers: - Architecture: x86 - InstallerUrl: https://dl.google.com/release2/chrome/ac6ijxhfbwgjjumzpygi2v5kbl5a_149.0.7785.0/149.0.7785.0_chrome_installer_uncompressed.exe - InstallerSha256: 447B14CE43F4F30879A5FAC423C1A45287A8863AFB51E23BD60496B3EE23A623 + InstallerUrl: https://dl.google.com/release2/chrome/agk4gh7rvx2jzaq2ztgpnjkbg4_149.0.7786.0/149.0.7786.0_chrome_installer_uncompressed.exe + InstallerSha256: 7C02BD2492D204905A886728957E8BA435AB3E4967BA525B9661D71A64F21ED9 - Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/acbmyjuvandrkhxjhvncnf4e3xta_149.0.7785.0/149.0.7785.0_chrome_installer_uncompressed.exe - InstallerSha256: ACF1971DDEF8B2380E848112E6AC74CB288C6B07CAEF2D020A6404304F8C5F1D + InstallerUrl: https://dl.google.com/release2/chrome/nf6mec7ozmkitllmnuebpwx2gy_149.0.7786.0/149.0.7786.0_chrome_installer_uncompressed.exe + InstallerSha256: 5BA58591E0F35A49A4638C9365B21BC46F017D0EC8C44618012305FD593E932C - Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/psbvqoqkpzd4ltoi4owhwe3uwa_149.0.7785.0/149.0.7785.0_chrome_installer_uncompressed.exe - InstallerSha256: B9FCF179D19F10EBC09D9ACFA545DBF3A03761007B3CB39736BD82D34854039D + InstallerUrl: https://dl.google.com/release2/chrome/acijg6jcygksgdg6nm66jld2pkaa_149.0.7786.0/149.0.7786.0_chrome_installer_uncompressed.exe + InstallerSha256: 802F6B7CC3881BA415807213703D5658ECB8BAD100EA76AAF5ED0D4C99442906 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.locale.en-US.yaml similarity index 96% rename from manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.locale.en-US.yaml rename to manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.locale.en-US.yaml index a0693c7f19df5..91f3136eae2b4 100644 --- a/manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.locale.en-US.yaml +++ b/manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Google.Chrome.Canary -PackageVersion: 149.0.7785.0 +PackageVersion: 149.0.7786.0 PackageLocale: en-US Publisher: Google LLC PublisherUrl: https://www.google.com/ diff --git a/manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.locale.nb-NO.yaml similarity index 96% rename from manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.locale.nb-NO.yaml rename to manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.locale.nb-NO.yaml index 89b613bf92412..2a8e93372e078 100644 --- a/manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.locale.nb-NO.yaml +++ b/manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.locale.nb-NO.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Google.Chrome.Canary -PackageVersion: 149.0.7785.0 +PackageVersion: 149.0.7786.0 PackageLocale: nb-NO Publisher: Google LLC PublisherUrl: https://www.google.com/ diff --git a/manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.locale.zh-CN.yaml similarity index 96% rename from manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.locale.zh-CN.yaml rename to manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.locale.zh-CN.yaml index caa8fd5c34cac..82bea66476b7e 100644 --- a/manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.locale.zh-CN.yaml +++ b/manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Google.Chrome.Canary -PackageVersion: 149.0.7785.0 +PackageVersion: 149.0.7786.0 PackageLocale: zh-CN Publisher: Google LLC PublisherUrl: https://www.google.com/ diff --git a/manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.yaml similarity index 89% rename from manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.yaml rename to manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.yaml index 135156567b035..3bf364cfa50cb 100644 --- a/manifests/g/Google/Chrome/Canary/149.0.7785.0/Google.Chrome.Canary.yaml +++ b/manifests/g/Google/Chrome/Canary/149.0.7786.0/Google.Chrome.Canary.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Google.Chrome.Canary -PackageVersion: 149.0.7785.0 +PackageVersion: 149.0.7786.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 From 01631258c94f5f6ce6d546c673de7c614cadc1d7 Mon Sep 17 00:00:00 2001 From: Imre Eilertsen Date: Sat, 11 Apr 2026 23:47:04 +0200 Subject: [PATCH 08/87] Added 2 tags: Yeastar.Linkus.Desktop version 1.21.2 (#358415) --- .../Desktop/1.21.2/Yeastar.Linkus.Desktop.locale.en-US.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/manifests/y/Yeastar/Linkus/Desktop/1.21.2/Yeastar.Linkus.Desktop.locale.en-US.yaml b/manifests/y/Yeastar/Linkus/Desktop/1.21.2/Yeastar.Linkus.Desktop.locale.en-US.yaml index 73500729e5869..8570c7cdc6a04 100644 --- a/manifests/y/Yeastar/Linkus/Desktop/1.21.2/Yeastar.Linkus.Desktop.locale.en-US.yaml +++ b/manifests/y/Yeastar/Linkus/Desktop/1.21.2/Yeastar.Linkus.Desktop.locale.en-US.yaml @@ -21,6 +21,8 @@ Tags: - softphone - telephone - telephony +- prc +- china ReleaseNotes: |- 1. Added compatibility with the following system-level configurations. - If system administrator has set Linkus Desktop Client Concurrent Registrations to a value greater than 1 for your extension, you can log in to multiple Linkus Desktop Clients simultaneously. From ecc1e695a6d8e859017218941ce91921ab208e69 Mon Sep 17 00:00:00 2001 From: Imre Eilertsen Date: Sat, 11 Apr 2026 23:48:29 +0200 Subject: [PATCH 09/87] Added 2 tags: Shilihu.Mubu version 5.5.0 (#358419) --- manifests/s/Shilihu/Mubu/5.5.0/Shilihu.Mubu.locale.en-US.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/manifests/s/Shilihu/Mubu/5.5.0/Shilihu.Mubu.locale.en-US.yaml b/manifests/s/Shilihu/Mubu/5.5.0/Shilihu.Mubu.locale.en-US.yaml index e0e77bcf83d0e..c194c34d53a7e 100644 --- a/manifests/s/Shilihu/Mubu/5.5.0/Shilihu.Mubu.locale.en-US.yaml +++ b/manifests/s/Shilihu/Mubu/5.5.0/Shilihu.Mubu.locale.en-US.yaml @@ -15,7 +15,7 @@ License: Proprietary LicenseUrl: https://mubu.com/agreement Copyright: ©2017-2026 Mubu CopyrightUrl: https://mubu.com/agreement -ShortDescription: Minimalist outline notes, generate mind maps with one click +ShortDescription: Minimalist outline notes, generate mind maps with one click. Description: Mubu is a knowledge management tool that combines outliner and mind map to help you take notes, manage tasks, make plans and even organize brainstorms in a more efficient way and with a clearer structure. Tags: - article @@ -30,6 +30,8 @@ Tags: - outline - outliner - writing +- prc +- china ReleaseNotesUrl: https://mubu.com/doc/d5501245199 PurchaseUrl: https://mubu.com/about-pro ManifestType: defaultLocale From 9475c2f18628f39bcecda0ab612f07b1502654ae Mon Sep 17 00:00:00 2001 From: Imre Eilertsen Date: Sat, 11 Apr 2026 23:49:51 +0200 Subject: [PATCH 10/87] Added 2 tags: ZhongshiHuiyun.Boom version 3.7.8 (#358423) --- .../Boom/3.7.8/ZhongshiHuiyun.Boom.locale.en-US.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/manifests/z/ZhongshiHuiyun/Boom/3.7.8/ZhongshiHuiyun.Boom.locale.en-US.yaml b/manifests/z/ZhongshiHuiyun/Boom/3.7.8/ZhongshiHuiyun.Boom.locale.en-US.yaml index 161758ca92d15..f089323130cd4 100644 --- a/manifests/z/ZhongshiHuiyun/Boom/3.7.8/ZhongshiHuiyun.Boom.locale.en-US.yaml +++ b/manifests/z/ZhongshiHuiyun/Boom/3.7.8/ZhongshiHuiyun.Boom.locale.en-US.yaml @@ -14,7 +14,7 @@ PackageUrl: https://www.boom.cn/download/center License: Proprietary LicenseUrl: https://i.boom.cn/p/#/serviceAgreement Copyright: © 2024 boom.cn Jinan Zhongshi Huiyun Technology Co., Ltd. All rights reserved. -ShortDescription: Make enterprise communication more efficient +ShortDescription: Make enterprise communication more efficient. Description: Boom is a Chinese video conferencing software based on 20 years of experience in audio and video research and development. With refreshing interface, simple operation, stability and reliability, Boom supports multi-user audio and video conferencing, screen sharing, meeting recording, drawing and other functions, allowing you to meet anytime, anywhere, no matter in the office, workplace, home or business trips, and improve work efficiency. Tags: - chat @@ -26,6 +26,8 @@ Tags: - video-conferencing - voice-conferencing - webinar +- prc +- china PurchaseUrl: https://www.boom.cn/system/price/plan-price ManifestType: defaultLocale ManifestVersion: 1.10.0 From 3df2e512857e7afa6fce5bfb979f4eb1de15bc85 Mon Sep 17 00:00:00 2001 From: Imre Eilertsen Date: Sat, 11 Apr 2026 23:51:04 +0200 Subject: [PATCH 11/87] Added 2 tags: Huya.Huya version 7.5.0.0 (#358424) --- manifests/h/Huya/Huya/7.5.0.0/Huya.Huya.locale.en-US.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/manifests/h/Huya/Huya/7.5.0.0/Huya.Huya.locale.en-US.yaml b/manifests/h/Huya/Huya/7.5.0.0/Huya.Huya.locale.en-US.yaml index 28a4cc3e576cf..e194a48f7784b 100644 --- a/manifests/h/Huya/Huya/7.5.0.0/Huya.Huya.locale.en-US.yaml +++ b/manifests/h/Huya/Huya/7.5.0.0/Huya.Huya.locale.en-US.yaml @@ -15,11 +15,13 @@ License: Proprietary LicenseUrl: https://hd.huya.com/huyaDIYzt/6811/pc/index.html#diySetTab=5 Copyright: Copyright © 2024 Guangzhou Huya Information Technology Co., Ltd. All rights reserved CopyrightUrl: https://hd.huya.com/huyaDIYzt/6811/pc/index.html#diySetTab=5 -ShortDescription: A Live Streaming Platform for Gaming and Interaction +ShortDescription: A Live Streaming Platform for Gaming and Interaction. Tags: - live - live-streaming - livestreaming - streaming +- prc +- china ManifestType: defaultLocale ManifestVersion: 1.9.0 From f7ad39615da4009460b48662e500c18a4a3d25c6 Mon Sep 17 00:00:00 2001 From: Imre Eilertsen Date: Sat, 11 Apr 2026 23:52:11 +0200 Subject: [PATCH 12/87] Added 2 tags: H3C.H3CShare version 1.1.1012 (#358426) --- .../h/H3C/H3CShare/1.1.1012/H3C.H3CShare.locale.en-US.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/manifests/h/H3C/H3CShare/1.1.1012/H3C.H3CShare.locale.en-US.yaml b/manifests/h/H3C/H3CShare/1.1.1012/H3C.H3CShare.locale.en-US.yaml index dfbe90b8a70c2..1bfce9991a066 100644 --- a/manifests/h/H3C/H3CShare/1.1.1012/H3C.H3CShare.locale.en-US.yaml +++ b/manifests/h/H3C/H3CShare/1.1.1012/H3C.H3CShare.locale.en-US.yaml @@ -15,7 +15,7 @@ License: Freeware # LicenseUrl: Copyright: Copyright © 2022-2024 H3C. All rights reserved. CopyrightUrl: https://www.h3c.com/en/Home/TermsOfUse/ -ShortDescription: Mirror your Windows PC screen to H3C MagicHub +ShortDescription: Mirror your Windows PC screen to H3C MagicHub. # Description: # Moniker: Tags: @@ -23,6 +23,8 @@ Tags: - magichub - mirror - projection +- prc +- china # ReleaseNotes: # ReleaseNotesUrl: # PurchaseUrl: From 86f0322753b4058d586376946870e298f15c5013 Mon Sep 17 00:00:00 2001 From: Imre Eilertsen Date: Sat, 11 Apr 2026 23:53:13 +0200 Subject: [PATCH 13/87] Added 2 tags: Billfish.Billfish version 3.1.5.12 (#358427) --- .../Billfish/3.1.5.12/Billfish.Billfish.locale.en-US.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/manifests/b/Billfish/Billfish/3.1.5.12/Billfish.Billfish.locale.en-US.yaml b/manifests/b/Billfish/Billfish/3.1.5.12/Billfish.Billfish.locale.en-US.yaml index ed9135c25d78a..05a8b7e7f8005 100644 --- a/manifests/b/Billfish/Billfish/3.1.5.12/Billfish.Billfish.locale.en-US.yaml +++ b/manifests/b/Billfish/Billfish/3.1.5.12/Billfish.Billfish.locale.en-US.yaml @@ -15,7 +15,7 @@ License: Freeware LicenseUrl: https://www.billfish.cn/user-agreement Copyright: Copyright 2024 © Billfish Co., Ltd. # CopyrightUrl: -ShortDescription: A reference image management tool for the future +ShortDescription: A reference image management tool for the future. Description: |- Billfish is a reference image management tool for designers to efficiently manage all kinds of reference images, supporting a variety of image formats including PNG, JPG, PSD, AI, GIF, SVG, EPS, CDR, etc. Billfish allows you to manage reference images quickly and easily so you can spend more time focusing on the design. @@ -35,6 +35,8 @@ Tags: - reference - resource - tag +- prc +- china # ReleaseNotes: ReleaseNotesUrl: https://www.billfish.cn/help/gengxinrizhi # PurchaseUrl: From 70c0b25772564b8e0bdd9ed6f3d7b9ae9e0e7af8 Mon Sep 17 00:00:00 2001 From: YusufKhalifadev Date: Sun, 12 Apr 2026 00:07:19 +0200 Subject: [PATCH 14/87] Update HIKARI-FIELD.HIKARI-FIELD-CLIENT installer URL (#358402) --- .../1.2.0/HIKARI-FIELD.HIKARI-FIELD-CLIENT.installer.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/h/HIKARI-FIELD/HIKARI-FIELD-CLIENT/1.2.0/HIKARI-FIELD.HIKARI-FIELD-CLIENT.installer.yaml b/manifests/h/HIKARI-FIELD/HIKARI-FIELD-CLIENT/1.2.0/HIKARI-FIELD.HIKARI-FIELD-CLIENT.installer.yaml index eb92074a26d81..e7b6a67f148eb 100644 --- a/manifests/h/HIKARI-FIELD/HIKARI-FIELD-CLIENT/1.2.0/HIKARI-FIELD.HIKARI-FIELD-CLIENT.installer.yaml +++ b/manifests/h/HIKARI-FIELD/HIKARI-FIELD-CLIENT/1.2.0/HIKARI-FIELD.HIKARI-FIELD-CLIENT.installer.yaml @@ -18,7 +18,7 @@ AppsAndFeaturesEntries: - Publisher: HIKARI FIELD Installers: - Architecture: x64 - InstallerUrl: https://client.hikarifield.co.jp/release/HIKARI-FIELD-CLIENT-Setup-1.2.0.zip + InstallerUrl: https://static.hikarifield.co.jp/client/HIKARI-FIELD-CLIENT-Setup-1.2.0.zip InstallerSha256: 2A11139A35B44E006ECE02107358AA675C05E98016665D5B103176BE5FFC191D ManifestType: installer ManifestVersion: 1.9.0 From 08573ee558d9eefd740a701bd7f8129c3836ff4d Mon Sep 17 00:00:00 2001 From: Dvd-Znf Date: Sun, 12 Apr 2026 00:07:27 +0200 Subject: [PATCH 15/87] New version: ScummVM.ScummVM version 2026.2.0 (#358404) --- .../2026.2.0/ScummVM.ScummVM.installer.yaml | 22 +++++++++++++++ .../ScummVM.ScummVM.locale.de-DE.yaml | 28 +++++++++++++++++++ .../ScummVM.ScummVM.locale.en-US.yaml | 28 +++++++++++++++++++ .../ScummVM/2026.2.0/ScummVM.ScummVM.yaml | 8 ++++++ 4 files changed, 86 insertions(+) create mode 100644 manifests/s/ScummVM/ScummVM/2026.2.0/ScummVM.ScummVM.installer.yaml create mode 100644 manifests/s/ScummVM/ScummVM/2026.2.0/ScummVM.ScummVM.locale.de-DE.yaml create mode 100644 manifests/s/ScummVM/ScummVM/2026.2.0/ScummVM.ScummVM.locale.en-US.yaml create mode 100644 manifests/s/ScummVM/ScummVM/2026.2.0/ScummVM.ScummVM.yaml diff --git a/manifests/s/ScummVM/ScummVM/2026.2.0/ScummVM.ScummVM.installer.yaml b/manifests/s/ScummVM/ScummVM/2026.2.0/ScummVM.ScummVM.installer.yaml new file mode 100644 index 0000000000000..87939a4c664f5 --- /dev/null +++ b/manifests/s/ScummVM/ScummVM/2026.2.0/ScummVM.ScummVM.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ScummVM.ScummVM +PackageVersion: 2026.2.0 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +ProductCode: ScummVM_is1 +ReleaseDate: 2026-03-28 +AppsAndFeaturesEntries: +- DisplayName: ScummVM 2026.2.0 + ProductCode: ScummVM_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\ScummVM' +Installers: +- Architecture: x86 + InstallerUrl: https://downloads.scummvm.org/frs/scummvm/2026.2.0/scummvm-2026.2.0-win32.exe + InstallerSha256: 1B2B1D7184D9C31A636B1801225F6A285DDE4399486A843667146F393A2BE93D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/ScummVM/ScummVM/2026.2.0/ScummVM.ScummVM.locale.de-DE.yaml b/manifests/s/ScummVM/ScummVM/2026.2.0/ScummVM.ScummVM.locale.de-DE.yaml new file mode 100644 index 0000000000000..9af30235e62bf --- /dev/null +++ b/manifests/s/ScummVM/ScummVM/2026.2.0/ScummVM.ScummVM.locale.de-DE.yaml @@ -0,0 +1,28 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: ScummVM.ScummVM +PackageVersion: 2026.2.0 +PackageLocale: de-DE +Publisher: The ScummVM Team +PublisherUrl: https://www.scummvm.org/ +PublisherSupportUrl: https://docs.scummvm.org/en/latest/ +PackageName: ScummVM +PackageUrl: https://www.scummvm.org/ +License: GPL-2.0 +LicenseUrl: https://github.com/scummvm/scummvm/blob/master/COPYING +ShortDescription: ScummVM ist ein Programm, dass das Spielen bestimmter klassischer Adventures und Rollenspiele erlaubt, wenn die Spieldateien vorhanden sind. +Description: ScummVM ist ein Programm, dass das Spielen bestimmter klassischer Adventures und Rollenspiele erlaubt, wenn die Spieldateien vorhanden sind. ScummVM unterstuetzt eine riesige Bibliothek von insgesamt über 325 Spielen, unter anderem viele Klassiker von legendaeren Studios wie LucasArts, Sierra On-Line, Revolution Software, Cyan, Inc. und Westwood Studios. Neben Ikonen wie der Monkey Island-Serie, Broken Sword, Myst, Blade Runner und unzaehligen anderen Spielen gibt es auch einige wirklich obskure Abenteuer und versteckte Juwelen, die es zu entdecken gilt. +Tags: +- adventure +- emulator +- game +- interpreter +- lucasarts +- lucasfilm +- old +- point-and-click +- scumm +- sierra +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/s/ScummVM/ScummVM/2026.2.0/ScummVM.ScummVM.locale.en-US.yaml b/manifests/s/ScummVM/ScummVM/2026.2.0/ScummVM.ScummVM.locale.en-US.yaml new file mode 100644 index 0000000000000..5fbd7d25bb771 --- /dev/null +++ b/manifests/s/ScummVM/ScummVM/2026.2.0/ScummVM.ScummVM.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ScummVM.ScummVM +PackageVersion: 2026.2.0 +PackageLocale: en-US +Publisher: The ScummVM Team +PublisherUrl: https://www.scummvm.org/ +PublisherSupportUrl: https://docs.scummvm.org/en/latest/ +PackageName: ScummVM +PackageUrl: https://www.scummvm.org/ +License: GPL-2.0 +LicenseUrl: https://github.com/scummvm/scummvm/blob/master/COPYING +ShortDescription: ScummVM is a program which allows you to run certain classic graphical adventure and role-playing games, provided you already have their data files. +Description: 'ScummVM is a program which allows you to run certain classic graphical adventure and role-playing games, provided you already have their data files. The clever part about this: ScummVM just replaces the executables shipped with the games, allowing you to play them on systems for which they were never designed! ScummVM is a complete rewrite of these games'' executables and is not an emulator. It supports a huge library of adventures with over 325 games in total. It supports many classics published by legendary studios like LucasArts, Sierra On-Line, Revolution Software, Cyan, Inc. and Westwood Studios. Next to ground-breaking titles like the Monkey Island series, Broken Sword, Myst, Blade Runner and countless other games you will find some really obscure adventures and truly hidden gems to explore.' +Moniker: scummvm +Tags: +- adventure +- emulator +- game +- lucasarts +- lucasfilm +- old +- point-and-click +- scumm +- sierra +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/ScummVM/ScummVM/2026.2.0/ScummVM.ScummVM.yaml b/manifests/s/ScummVM/ScummVM/2026.2.0/ScummVM.ScummVM.yaml new file mode 100644 index 0000000000000..e378f4907fc40 --- /dev/null +++ b/manifests/s/ScummVM/ScummVM/2026.2.0/ScummVM.ScummVM.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: ScummVM.ScummVM +PackageVersion: 2026.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From a29f1ef93e8d0f1d2a0fc722c8dcb70d74241b5a Mon Sep 17 00:00:00 2001 From: UnownPlain Date: Sat, 11 Apr 2026 18:14:57 -0400 Subject: [PATCH 16/87] Update version: Microsoft.SafetyScanner version 1.449.29.0 (#358409) --- .../Microsoft.SafetyScanner.installer.yaml | 18 ++++++------------ .../Microsoft.SafetyScanner.locale.en-US.yaml | 9 +++------ .../1.449.29.0/Microsoft.SafetyScanner.yaml | 2 +- 3 files changed, 10 insertions(+), 19 deletions(-) diff --git a/manifests/m/Microsoft/SafetyScanner/1.449.29.0/Microsoft.SafetyScanner.installer.yaml b/manifests/m/Microsoft/SafetyScanner/1.449.29.0/Microsoft.SafetyScanner.installer.yaml index 8a777c933b143..a6adb51acfa8b 100644 --- a/manifests/m/Microsoft/SafetyScanner/1.449.29.0/Microsoft.SafetyScanner.installer.yaml +++ b/manifests/m/Microsoft/SafetyScanner/1.449.29.0/Microsoft.SafetyScanner.installer.yaml @@ -1,24 +1,18 @@ -# Created with komac v2.16.0 +# Created by Anthelion using komac v2.16.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Microsoft.SafetyScanner PackageVersion: 1.449.29.0 InstallerType: portable -ReleaseDate: 2026-04-10 +Commands: +- safetyscanner +ReleaseDate: 2026-04-11 Installers: - Architecture: x86 - InstallerUrl: https://go.microsoft.com/fwlink/?LinkId=212733 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.449.29.0&arch=x86 InstallerSha256: 964B01AEA85079ADF8919EE455C8D4E8CF9515A652277A99C62F37009C723DB3 - Commands: - - safetyscanner86 - AppsAndFeaturesEntries: - - DisplayName: Microsoft Safety Scanner (x86) - Architecture: x64 - InstallerUrl: https://go.microsoft.com/fwlink/?LinkId=212732 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.449.29.0&arch=amd64 InstallerSha256: 8A0B164EEAA3B25FB7EA32A776248182D0299945CCD1DC5ADC904C305B77CF6F - Commands: - - safetyscanner - AppsAndFeaturesEntries: - - DisplayName: Microsoft Safety Scanner (x64) ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.449.29.0/Microsoft.SafetyScanner.locale.en-US.yaml b/manifests/m/Microsoft/SafetyScanner/1.449.29.0/Microsoft.SafetyScanner.locale.en-US.yaml index b8b83331f9c1d..d4a6d7e45e499 100644 --- a/manifests/m/Microsoft/SafetyScanner/1.449.29.0/Microsoft.SafetyScanner.locale.en-US.yaml +++ b/manifests/m/Microsoft/SafetyScanner/1.449.29.0/Microsoft.SafetyScanner.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with komac v2.16.0 +# Created by Anthelion using komac v2.16.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Microsoft.SafetyScanner @@ -7,20 +7,17 @@ PackageLocale: en-US Publisher: Microsoft Corporation PackageName: Microsoft Safety Scanner PackageUrl: https://learn.microsoft.com/en-us/defender-endpoint/safety-scanner-download -License: Proprietary (Freeware) +License: Proprietary Copyright: © Microsoft Corporation. All rights reserved. ShortDescription: A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. Description: |- A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. - + The tool uses the same security intelligence update definitions as (among others) Microsoft Defender Antivirus. Safety Scanner does however not have an internal definition update checker, but does get app updates every 3-4 hours. Thus, the Winget package may lag some days behind Windows Update + Microsoft Defender Antivirus. Tags: - microsoft-defender-antivirus - microsoft-safety-scanner -- microsoftdefenderantivirus -- microsoftsafetyscanner - msert - windows-security -- windowssecurity ManifestType: defaultLocale ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.449.29.0/Microsoft.SafetyScanner.yaml b/manifests/m/Microsoft/SafetyScanner/1.449.29.0/Microsoft.SafetyScanner.yaml index 2d901ffa10a4e..5a147e9123245 100644 --- a/manifests/m/Microsoft/SafetyScanner/1.449.29.0/Microsoft.SafetyScanner.yaml +++ b/manifests/m/Microsoft/SafetyScanner/1.449.29.0/Microsoft.SafetyScanner.yaml @@ -1,4 +1,4 @@ -# Created with komac v2.16.0 +# Created by Anthelion using komac v2.16.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Microsoft.SafetyScanner From 04378cfd168b3e74adf77c6d3f85a3a9ad3d552c Mon Sep 17 00:00:00 2001 From: The SZ Date: Sun, 12 Apr 2026 00:16:01 +0200 Subject: [PATCH 17/87] the-sz.Bennett version 1.31 (#358416) --- .../1.31/the-sz.Bennett.installer.yaml | 16 ++++++++++++++ .../1.31/the-sz.Bennett.locale.en-US.yaml | 21 +++++++++++++++++++ .../t/the-sz/Bennett/1.31/the-sz.Bennett.yaml | 8 +++++++ 3 files changed, 45 insertions(+) create mode 100644 manifests/t/the-sz/Bennett/1.31/the-sz.Bennett.installer.yaml create mode 100644 manifests/t/the-sz/Bennett/1.31/the-sz.Bennett.locale.en-US.yaml create mode 100644 manifests/t/the-sz/Bennett/1.31/the-sz.Bennett.yaml diff --git a/manifests/t/the-sz/Bennett/1.31/the-sz.Bennett.installer.yaml b/manifests/t/the-sz/Bennett/1.31/the-sz.Bennett.installer.yaml new file mode 100644 index 0000000000000..d0bcc57c1edbd --- /dev/null +++ b/manifests/t/the-sz/Bennett/1.31/the-sz.Bennett.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: the-sz.Bennett +PackageVersion: "1.31" +InstallerType: zip +Installers: +- Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Bennett.exe + PortableCommandAlias: Bennett.exe + InstallerUrl: https://the-sz.com/common/get.php?product=bennett&version=1.31 + InstallerSha256: 586ee781762c33a98d3583f82e62b6089ec5113c16b377f5c5f7dfff783d9460 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/t/the-sz/Bennett/1.31/the-sz.Bennett.locale.en-US.yaml b/manifests/t/the-sz/Bennett/1.31/the-sz.Bennett.locale.en-US.yaml new file mode 100644 index 0000000000000..e0955a165a95e --- /dev/null +++ b/manifests/t/the-sz/Bennett/1.31/the-sz.Bennett.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: the-sz.Bennett +PackageVersion: "1.31" +PackageLocale: en-US +Publisher: the sz development +PublisherUrl: https://the-sz.com/ +PrivacyUrl: https://the-sz.com/products/privacy.php +Author: the sz development +PackageName: Bennett +PackageUrl: https://the-sz.com/products/bennett/ +License: Proprietary +LicenseUrl: https://the-sz.com/products/license.php +Copyright: Copyright (c) the-sz.com +ShortDescription: Bluetooth device and signal strength monitor +Description: Monitor the signal strength of multiple Bluetooth devices. +Moniker: bennett +ReleaseNotesUrl: https://the-sz.com/common/history.php?product=bennett +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/t/the-sz/Bennett/1.31/the-sz.Bennett.yaml b/manifests/t/the-sz/Bennett/1.31/the-sz.Bennett.yaml new file mode 100644 index 0000000000000..87518d5c94a27 --- /dev/null +++ b/manifests/t/the-sz/Bennett/1.31/the-sz.Bennett.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: the-sz.Bennett +PackageVersion: "1.31" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From 6c656ff37f18e45a3847b3271691846b209176f0 Mon Sep 17 00:00:00 2001 From: The SZ Date: Sun, 12 Apr 2026 00:17:06 +0200 Subject: [PATCH 18/87] the-sz.Bedford version 1.22 (#358417) --- .../1.22/the-sz.Bedford.installer.yaml | 16 ++++++++++++++ .../1.22/the-sz.Bedford.locale.en-US.yaml | 21 +++++++++++++++++++ .../t/the-sz/Bedford/1.22/the-sz.Bedford.yaml | 8 +++++++ 3 files changed, 45 insertions(+) create mode 100644 manifests/t/the-sz/Bedford/1.22/the-sz.Bedford.installer.yaml create mode 100644 manifests/t/the-sz/Bedford/1.22/the-sz.Bedford.locale.en-US.yaml create mode 100644 manifests/t/the-sz/Bedford/1.22/the-sz.Bedford.yaml diff --git a/manifests/t/the-sz/Bedford/1.22/the-sz.Bedford.installer.yaml b/manifests/t/the-sz/Bedford/1.22/the-sz.Bedford.installer.yaml new file mode 100644 index 0000000000000..433872ca1250f --- /dev/null +++ b/manifests/t/the-sz/Bedford/1.22/the-sz.Bedford.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: the-sz.Bedford +PackageVersion: "1.22" +InstallerType: zip +Installers: +- Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Bedford.exe + PortableCommandAlias: Bedford.exe + InstallerUrl: https://the-sz.com/common/get.php?product=bedford&version=1.22 + InstallerSha256: f72c1624f29a68db89349e8c0b0de2944fd2b410c8fea10496a3cea35b0330ff +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/t/the-sz/Bedford/1.22/the-sz.Bedford.locale.en-US.yaml b/manifests/t/the-sz/Bedford/1.22/the-sz.Bedford.locale.en-US.yaml new file mode 100644 index 0000000000000..014266a4b16d6 --- /dev/null +++ b/manifests/t/the-sz/Bedford/1.22/the-sz.Bedford.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: the-sz.Bedford +PackageVersion: "1.22" +PackageLocale: en-US +Publisher: the sz development +PublisherUrl: https://the-sz.com/ +PrivacyUrl: https://the-sz.com/products/privacy.php +Author: the sz development +PackageName: Bedford +PackageUrl: https://the-sz.com/products/bedford/ +License: Proprietary +LicenseUrl: https://the-sz.com/products/license.php +Copyright: Copyright (c) the-sz.com +ShortDescription: Bluetooth Low Energy device information viewer +Description: See all Bluetooth Low Energy device properties. +Moniker: bedford +ReleaseNotesUrl: https://the-sz.com/common/history.php?product=bedford +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/t/the-sz/Bedford/1.22/the-sz.Bedford.yaml b/manifests/t/the-sz/Bedford/1.22/the-sz.Bedford.yaml new file mode 100644 index 0000000000000..db1af96d9803a --- /dev/null +++ b/manifests/t/the-sz/Bedford/1.22/the-sz.Bedford.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: the-sz.Bedford +PackageVersion: "1.22" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From d2c369effdfc244232fceb4b1b0b36bc8cebe8e7 Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Sat, 11 Apr 2026 15:28:43 -0700 Subject: [PATCH 19/87] Automatic Waiver Addition for PR 358414 (#358430) --- manifests/y/YouXiao/YXFile/.validation | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/y/YouXiao/YXFile/.validation b/manifests/y/YouXiao/YXFile/.validation index 9478cb3e768fb..95edd0aca52f3 100644 --- a/manifests/y/YouXiao/YXFile/.validation +++ b/manifests/y/YouXiao/YXFile/.validation @@ -1 +1 @@ -{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"0d9523bd-f64b-4c2f-ad73-49692f5ffcd3","TestPlan":"Validation-Domain","PackagePath":"manifests/y/YouXiao/YXFile/2.1.9.18"}]} \ No newline at end of file +{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"0d9523bd-f64b-4c2f-ad73-49692f5ffcd3","TestPlan":"Validation-Domain","PackagePath":"manifests/y/YouXiao/YXFile/2.1.9.18","CommitId":null},{"WaiverId":"ee68b247-9e38-4b6c-b134-caf8cb9ca3e2","TestPlan":"Validation-Domain","PackagePath":"manifests/y/YouXiao/YXFile/2.5.4.4","CommitId":"88f8c80a805b220629f40302bbde1be1cad9b906"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file From adeea0ca99b42a6bd1d1b7c56c2a0537ee4281cb Mon Sep 17 00:00:00 2001 From: blacktop Date: Sat, 11 Apr 2026 16:45:26 -0600 Subject: [PATCH 20/87] New version: blacktop.ipswd 3.1.670 (#358411) Co-authored-by: goreleaserbot --- .../3.1.670/blacktop.ipswd.installer.yaml | 26 +++++++++++++++++++ .../3.1.670/blacktop.ipswd.locale.en-US.yaml | 13 ++++++++++ .../ipswd/3.1.670/blacktop.ipswd.yaml | 7 +++++ 3 files changed, 46 insertions(+) create mode 100644 manifests/b/blacktop/ipswd/3.1.670/blacktop.ipswd.installer.yaml create mode 100644 manifests/b/blacktop/ipswd/3.1.670/blacktop.ipswd.locale.en-US.yaml create mode 100644 manifests/b/blacktop/ipswd/3.1.670/blacktop.ipswd.yaml diff --git a/manifests/b/blacktop/ipswd/3.1.670/blacktop.ipswd.installer.yaml b/manifests/b/blacktop/ipswd/3.1.670/blacktop.ipswd.installer.yaml new file mode 100644 index 0000000000000..5f234bacaa1d1 --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.670/blacktop.ipswd.installer.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: blacktop.ipswd +PackageVersion: 3.1.670 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-04-11" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipswd.exe + PortableCommandAlias: ipswd + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.670/ipswd_3.1.670_windows_arm64.zip + InstallerSha256: b762a2797f3add0eecf869f064e9356ace57d292651431fc6fb828eb6083fe52 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipswd.exe + PortableCommandAlias: ipswd + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.670/ipswd_3.1.670_windows_x86_64.zip + InstallerSha256: b9cd3060cc04029548fab12e90423a29cde416db21d554a20a8941fbe5512966 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/blacktop/ipswd/3.1.670/blacktop.ipswd.locale.en-US.yaml b/manifests/b/blacktop/ipswd/3.1.670/blacktop.ipswd.locale.en-US.yaml new file mode 100644 index 0000000000000..1299757657b2a --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.670/blacktop.ipswd.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: blacktop.ipswd +PackageVersion: 3.1.670 +PackageLocale: en-US +Publisher: blacktop +PackageName: ipswd +PackageUrl: https://github.com/blacktop/ipsw +License: MIT +ShortDescription: ipsw - Daemon +Moniker: ipswd +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/blacktop/ipswd/3.1.670/blacktop.ipswd.yaml b/manifests/b/blacktop/ipswd/3.1.670/blacktop.ipswd.yaml new file mode 100644 index 0000000000000..eaa578460007d --- /dev/null +++ b/manifests/b/blacktop/ipswd/3.1.670/blacktop.ipswd.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: blacktop.ipswd +PackageVersion: 3.1.670 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 992ae63c6088aeb54444c9080479213b75ae17e8 Mon Sep 17 00:00:00 2001 From: blacktop Date: Sat, 11 Apr 2026 16:46:46 -0600 Subject: [PATCH 21/87] New version: blacktop.ipsw 3.1.670 (#358412) Co-authored-by: goreleaserbot --- .../ipsw/3.1.670/blacktop.ipsw.installer.yaml | 26 +++++++++++++++++++ .../3.1.670/blacktop.ipsw.locale.en-US.yaml | 13 ++++++++++ .../blacktop/ipsw/3.1.670/blacktop.ipsw.yaml | 7 +++++ 3 files changed, 46 insertions(+) create mode 100644 manifests/b/blacktop/ipsw/3.1.670/blacktop.ipsw.installer.yaml create mode 100644 manifests/b/blacktop/ipsw/3.1.670/blacktop.ipsw.locale.en-US.yaml create mode 100644 manifests/b/blacktop/ipsw/3.1.670/blacktop.ipsw.yaml diff --git a/manifests/b/blacktop/ipsw/3.1.670/blacktop.ipsw.installer.yaml b/manifests/b/blacktop/ipsw/3.1.670/blacktop.ipsw.installer.yaml new file mode 100644 index 0000000000000..304de59987fb4 --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.670/blacktop.ipsw.installer.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.670 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-04-11" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipsw.exe + PortableCommandAlias: ipsw + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.670/ipsw_3.1.670_windows_arm64.zip + InstallerSha256: d105e562544538ab8b7b5e0c53b184fbf26d40dd698ad411f6aede8ed51cd4b4 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: ipsw.exe + PortableCommandAlias: ipsw + InstallerUrl: https://github.com/blacktop/ipsw/releases/download/v3.1.670/ipsw_3.1.670_windows_x86_64.zip + InstallerSha256: d32598842182d22174b34576aec633e461576625ca742011c4de323422f70fe9 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/blacktop/ipsw/3.1.670/blacktop.ipsw.locale.en-US.yaml b/manifests/b/blacktop/ipsw/3.1.670/blacktop.ipsw.locale.en-US.yaml new file mode 100644 index 0000000000000..6d64aa7f4063e --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.670/blacktop.ipsw.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.670 +PackageLocale: en-US +Publisher: blacktop +PackageName: ipsw +PackageUrl: https://github.com/blacktop/ipsw +License: MIT +ShortDescription: iOS/macOS Research Swiss Army Knife +Moniker: ipsw +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/blacktop/ipsw/3.1.670/blacktop.ipsw.yaml b/manifests/b/blacktop/ipsw/3.1.670/blacktop.ipsw.yaml new file mode 100644 index 0000000000000..6117071a6a669 --- /dev/null +++ b/manifests/b/blacktop/ipsw/3.1.670/blacktop.ipsw.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: blacktop.ipsw +PackageVersion: 3.1.670 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 3e08cc5e23befcd995653bad9f64dfe3428e188f Mon Sep 17 00:00:00 2001 From: DaMn good B0t <143536629+damn-good-b0t@users.noreply.github.com> Date: Sun, 12 Apr 2026 01:15:55 +0200 Subject: [PATCH 22/87] New version: xpipe-io.xpipe.portable version 22.8 (#358105) --- .../xpipe-io.xpipe.portable.installer.yaml | 17 ++++++++++ .../xpipe-io.xpipe.portable.locale.en-US.yaml | 31 +++++++++++++++++++ .../22.8/xpipe-io.xpipe.portable.yaml | 8 +++++ 3 files changed, 56 insertions(+) create mode 100644 manifests/x/xpipe-io/xpipe/portable/22.8/xpipe-io.xpipe.portable.installer.yaml create mode 100644 manifests/x/xpipe-io/xpipe/portable/22.8/xpipe-io.xpipe.portable.locale.en-US.yaml create mode 100644 manifests/x/xpipe-io/xpipe/portable/22.8/xpipe-io.xpipe.portable.yaml diff --git a/manifests/x/xpipe-io/xpipe/portable/22.8/xpipe-io.xpipe.portable.installer.yaml b/manifests/x/xpipe-io/xpipe/portable/22.8/xpipe-io.xpipe.portable.installer.yaml new file mode 100644 index 0000000000000..367556d08ce5a --- /dev/null +++ b/manifests/x/xpipe-io/xpipe/portable/22.8/xpipe-io.xpipe.portable.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: xpipe-io.xpipe.portable +PackageVersion: '22.8' +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: xpipe-22.8/xpiped.exe + PortableCommandAlias: xpipe +ReleaseDate: 2026-04-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/xpipe-io/xpipe/releases/download/22.8/xpipe-portable-windows-x86_64.zip + InstallerSha256: 898951D5269703DEBA23372BE13AD9D820506A8833B0029FFD09B085F5005BD5 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/x/xpipe-io/xpipe/portable/22.8/xpipe-io.xpipe.portable.locale.en-US.yaml b/manifests/x/xpipe-io/xpipe/portable/22.8/xpipe-io.xpipe.portable.locale.en-US.yaml new file mode 100644 index 0000000000000..a08350b380064 --- /dev/null +++ b/manifests/x/xpipe-io/xpipe/portable/22.8/xpipe-io.xpipe.portable.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: xpipe-io.xpipe.portable +PackageVersion: '22.8' +PackageLocale: en-US +Publisher: XPipe-io +PublisherUrl: https://github.com/xpipe-io +PublisherSupportUrl: https://github.com/xpipe-io/xpipe/issues +Author: crschnick +PackageName: XPipe Portable +PackageUrl: https://github.com/xpipe-io/xpipe +License: Apache-2.0 +LicenseUrl: https://github.com/xpipe-io/xpipe/blob/HEAD/LICENSE.md +ShortDescription: A brand-new shell connection hub and remote file manager +Description: XPipe is a new type of shell connection hub and remote file manager that allows you to access your entire sever infrastructure from your local machine. It works on top of your installed command-line programs that you normally use to connect and does not require any setup on your remote systems. +Moniker: xpipe-portable +Tags: +- remote +ReleaseNotes: |- + - Fix multi identities not correctly retaining non-synced identities when edited on another system + - Multi identities now show and preserve the order of inaccessible identities as well + - Fix powershell command failure detection being broken in some places, leading to various issues in powershell environments + - Fix NullPointer when executing automated browser actions + - Fix rare storage race condition + Downloads + You can find all downloadable artifacts below attached to this release. For installation instructions, see the installation guide. + All artifacts are signed by Christopher Schnick (2E21 05AB FDBA C0EB) +ReleaseNotesUrl: https://github.com/xpipe-io/xpipe/releases/tag/22.8 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/x/xpipe-io/xpipe/portable/22.8/xpipe-io.xpipe.portable.yaml b/manifests/x/xpipe-io/xpipe/portable/22.8/xpipe-io.xpipe.portable.yaml new file mode 100644 index 0000000000000..812dfb67dfeb6 --- /dev/null +++ b/manifests/x/xpipe-io/xpipe/portable/22.8/xpipe-io.xpipe.portable.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: xpipe-io.xpipe.portable +PackageVersion: '22.8' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From fe115752ec6c85cb0c2c8f39f35a50ffd7490200 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sun, 12 Apr 2026 07:45:58 +0800 Subject: [PATCH 23/87] New version: CrossPlusA.Balabolka version 2.15.0.914 (#358422) --- .../CrossPlusA.Balabolka.installer.yaml | 8 ++++---- .../CrossPlusA.Balabolka.locale.en-US.yaml | 9 +++++---- .../CrossPlusA.Balabolka.locale.zh-CN.yaml | 2 +- .../{2.15.0.913 => 2.15.0.914}/CrossPlusA.Balabolka.yaml | 2 +- 4 files changed, 11 insertions(+), 10 deletions(-) rename manifests/c/CrossPlusA/Balabolka/{2.15.0.913 => 2.15.0.914}/CrossPlusA.Balabolka.installer.yaml (80%) rename manifests/c/CrossPlusA/Balabolka/{2.15.0.913 => 2.15.0.914}/CrossPlusA.Balabolka.locale.en-US.yaml (85%) rename manifests/c/CrossPlusA/Balabolka/{2.15.0.913 => 2.15.0.914}/CrossPlusA.Balabolka.locale.zh-CN.yaml (98%) rename manifests/c/CrossPlusA/Balabolka/{2.15.0.913 => 2.15.0.914}/CrossPlusA.Balabolka.yaml (89%) diff --git a/manifests/c/CrossPlusA/Balabolka/2.15.0.913/CrossPlusA.Balabolka.installer.yaml b/manifests/c/CrossPlusA/Balabolka/2.15.0.914/CrossPlusA.Balabolka.installer.yaml similarity index 80% rename from manifests/c/CrossPlusA/Balabolka/2.15.0.913/CrossPlusA.Balabolka.installer.yaml rename to manifests/c/CrossPlusA/Balabolka/2.15.0.914/CrossPlusA.Balabolka.installer.yaml index 2b1576fcd7142..e348f396b44eb 100644 --- a/manifests/c/CrossPlusA/Balabolka/2.15.0.913/CrossPlusA.Balabolka.installer.yaml +++ b/manifests/c/CrossPlusA/Balabolka/2.15.0.914/CrossPlusA.Balabolka.installer.yaml @@ -2,19 +2,19 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: CrossPlusA.Balabolka -PackageVersion: 2.15.0.913 +PackageVersion: 2.15.0.914 InstallerType: zip FileExtensions: - bxt - bxz -ReleaseDate: 2026-02-21 +ReleaseDate: 2026-04-11 Installers: - Architecture: x86 NestedInstallerType: exe NestedInstallerFiles: - RelativeFilePath: setup.exe InstallerUrl: https://www.cross-plus-a.com/balabolka.zip - InstallerSha256: 90C0192BBB9EF6E0E15790C2834F692170E53DEAC785FD64AC72CCE6E8FA0DA9 + InstallerSha256: 00525A670F42425BD29AF16F84288E6C6B49DCCB45AD99AFD5D27C14DCF8A9F1 InstallModes: - interactive - silent @@ -29,7 +29,7 @@ Installers: NestedInstallerFiles: - RelativeFilePath: Balabolka\balabolka.exe InstallerUrl: https://www.cross-plus-a.com/balabolka_portable.zip - InstallerSha256: 63A81E40B37E83BCB905F768A622BEE4BD2449DA7ABB9750D3CA0E2424BFC6F2 + InstallerSha256: F35C44A23A35AA51E9115F78B96D4BB322BF837885696A32ACAC4E56ED67C36F UpgradeBehavior: uninstallPrevious ArchiveBinariesDependOnPath: true ManifestType: installer diff --git a/manifests/c/CrossPlusA/Balabolka/2.15.0.913/CrossPlusA.Balabolka.locale.en-US.yaml b/manifests/c/CrossPlusA/Balabolka/2.15.0.914/CrossPlusA.Balabolka.locale.en-US.yaml similarity index 85% rename from manifests/c/CrossPlusA/Balabolka/2.15.0.913/CrossPlusA.Balabolka.locale.en-US.yaml rename to manifests/c/CrossPlusA/Balabolka/2.15.0.914/CrossPlusA.Balabolka.locale.en-US.yaml index 92cddf6198847..8ccf6f2c8e8a0 100644 --- a/manifests/c/CrossPlusA/Balabolka/2.15.0.913/CrossPlusA.Balabolka.locale.en-US.yaml +++ b/manifests/c/CrossPlusA/Balabolka/2.15.0.914/CrossPlusA.Balabolka.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: CrossPlusA.Balabolka -PackageVersion: 2.15.0.913 +PackageVersion: 2.15.0.914 PackageLocale: en-US Publisher: Ilya Morozov PublisherUrl: https://www.cross-plus-a.com/ @@ -20,9 +20,10 @@ Tags: - text-to-speech - tts ReleaseNotes: |- - [-] Fixed the using of Amazon Polly. - [*] Updated the voice list for Microsoft Azure. - [*] Resources for Chinese (Simplified), Spanish and Vietnamese languages were updated (thanks to Anan, Fernando Gregoire and Nguyễn Ninh Hoàng). + [-] Fixed the bug that occurred when processing universal tags after pausing and resuming read aloud. + [-] Fixed the speech rate when switching between voices using tags. + [*] Updated the voice list for Yandex SpeechKit. + [*] Resources for French language were updated (thanks to Michel Such). ReleaseNotesUrl: https://www.cross-plus-a.com/changelog.txt Documentations: - DocumentLabel: FAQ diff --git a/manifests/c/CrossPlusA/Balabolka/2.15.0.913/CrossPlusA.Balabolka.locale.zh-CN.yaml b/manifests/c/CrossPlusA/Balabolka/2.15.0.914/CrossPlusA.Balabolka.locale.zh-CN.yaml similarity index 98% rename from manifests/c/CrossPlusA/Balabolka/2.15.0.913/CrossPlusA.Balabolka.locale.zh-CN.yaml rename to manifests/c/CrossPlusA/Balabolka/2.15.0.914/CrossPlusA.Balabolka.locale.zh-CN.yaml index 2eb22a542f4bd..f2a7fd7807417 100644 --- a/manifests/c/CrossPlusA/Balabolka/2.15.0.913/CrossPlusA.Balabolka.locale.zh-CN.yaml +++ b/manifests/c/CrossPlusA/Balabolka/2.15.0.914/CrossPlusA.Balabolka.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: CrossPlusA.Balabolka -PackageVersion: 2.15.0.913 +PackageVersion: 2.15.0.914 PackageLocale: zh-CN License: 免费软件 ShortDescription: 文本转语音(TTS)程序 diff --git a/manifests/c/CrossPlusA/Balabolka/2.15.0.913/CrossPlusA.Balabolka.yaml b/manifests/c/CrossPlusA/Balabolka/2.15.0.914/CrossPlusA.Balabolka.yaml similarity index 89% rename from manifests/c/CrossPlusA/Balabolka/2.15.0.913/CrossPlusA.Balabolka.yaml rename to manifests/c/CrossPlusA/Balabolka/2.15.0.914/CrossPlusA.Balabolka.yaml index 693d3423a48e8..f5de86432d596 100644 --- a/manifests/c/CrossPlusA/Balabolka/2.15.0.913/CrossPlusA.Balabolka.yaml +++ b/manifests/c/CrossPlusA/Balabolka/2.15.0.914/CrossPlusA.Balabolka.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: CrossPlusA.Balabolka -PackageVersion: 2.15.0.913 +PackageVersion: 2.15.0.914 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 From 8e40879142335629e53fcdd576bb2494dafd9007 Mon Sep 17 00:00:00 2001 From: Gorniaky <30408913+Gorniaky@users.noreply.github.com> Date: Sat, 11 Apr 2026 20:56:41 -0300 Subject: [PATCH 24/87] New version: Discloud.CLI version 0.12.2 (#358429) --- .../CLI/0.12.2/Discloud.CLI.installer.yaml | 16 ++++++++++++ .../CLI/0.12.2/Discloud.CLI.locale.en-US.yaml | 25 +++++++++++++++++++ .../d/Discloud/CLI/0.12.2/Discloud.CLI.yaml | 8 ++++++ 3 files changed, 49 insertions(+) create mode 100644 manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.installer.yaml create mode 100644 manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.locale.en-US.yaml create mode 100644 manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.yaml diff --git a/manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.installer.yaml b/manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.installer.yaml new file mode 100644 index 0000000000000..5ae80f7415842 --- /dev/null +++ b/manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Discloud.CLI +PackageVersion: 0.12.2 +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/discloud/cli-dart/releases/download/0.12.2/discloud-cli-x64-setup.exe + InstallerSha256: 30C7134FF133A0639A92F0883DF6CEA1A03EFFE8AEFE75BFEE936FE4FE3E4FB1 +- Architecture: arm64 + InstallerUrl: https://github.com/discloud/cli-dart/releases/download/0.12.2/discloud-cli-x64-setup.exe + InstallerSha256: 30C7134FF133A0639A92F0883DF6CEA1A03EFFE8AEFE75BFEE936FE4FE3E4FB1 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-04-11 diff --git a/manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.locale.en-US.yaml b/manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.locale.en-US.yaml new file mode 100644 index 0000000000000..67c9cf3232a69 --- /dev/null +++ b/manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Discloud.CLI +PackageVersion: 0.12.2 +PackageLocale: en-US +Publisher: Discloud +PublisherUrl: https://github.com/discloud +PublisherSupportUrl: https://docs.discloud.com/faq/where-to-get-help +PrivacyUrl: https://github.com/discloud/legal/blob/main/terms-en.md +Author: Discloud +PackageName: Discloud CLI +PackageUrl: https://github.com/discloud/cli-dart +License: Apache 2.0 +LicenseUrl: https://github.com/discloud/cli-dart/blob/main/LICENSE +Copyright: Copyright © 2026 Discloud +ShortDescription: Discloud CLI Setup +Description: A fast option to manage your apps on Discloud. +Moniker: discloudcli +Tags: +- discloudbot +- host +ReleaseNotesUrl: https://github.com/discloud/cli-dart/releases/tag/0.12.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.yaml b/manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.yaml new file mode 100644 index 0000000000000..ccf4e8ec0331f --- /dev/null +++ b/manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.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: Discloud.CLI +PackageVersion: 0.12.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 58de0eb3c68e2f6f80e300ace5bce79cb3d71f7a Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Sat, 11 Apr 2026 17:31:30 -0700 Subject: [PATCH 25/87] Automatic Waiver Addition for PR 358422 (#358441) --- manifests/c/CrossPlusA/Balabolka/.validation | 1 + 1 file changed, 1 insertion(+) create mode 100644 manifests/c/CrossPlusA/Balabolka/.validation diff --git a/manifests/c/CrossPlusA/Balabolka/.validation b/manifests/c/CrossPlusA/Balabolka/.validation new file mode 100644 index 0000000000000..42d44b77fec9b --- /dev/null +++ b/manifests/c/CrossPlusA/Balabolka/.validation @@ -0,0 +1 @@ +{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"28fad24e-ff83-4b18-aa1f-fcf6bc229650","TestPlan":"Validation-Domain","PackagePath":"manifests/c/CrossPlusA/Balabolka/2.15.0.914","CommitId":"fe115752ec6c85cb0c2c8f39f35a50ffd7490200"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file From c24f8eeea98fc53f8b12d8344e311b7b086d87c7 Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Sat, 11 Apr 2026 19:46:03 -0500 Subject: [PATCH 26/87] New version: Nushell.Nushell version 0.112.1 (#358431) --- .../0.112.1/Nushell.Nushell.installer.yaml | 64 +++++++++++++++++++ .../0.112.1/Nushell.Nushell.locale.en-US.yaml | 33 ++++++++++ .../Nushell/0.112.1/Nushell.Nushell.yaml | 8 +++ 3 files changed, 105 insertions(+) create mode 100644 manifests/n/Nushell/Nushell/0.112.1/Nushell.Nushell.installer.yaml create mode 100644 manifests/n/Nushell/Nushell/0.112.1/Nushell.Nushell.locale.en-US.yaml create mode 100644 manifests/n/Nushell/Nushell/0.112.1/Nushell.Nushell.yaml diff --git a/manifests/n/Nushell/Nushell/0.112.1/Nushell.Nushell.installer.yaml b/manifests/n/Nushell/Nushell/0.112.1/Nushell.Nushell.installer.yaml new file mode 100644 index 0000000000000..616c12de9a23b --- /dev/null +++ b/manifests/n/Nushell/Nushell/0.112.1/Nushell.Nushell.installer.yaml @@ -0,0 +1,64 @@ +# 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: Nushell.Nushell +PackageVersion: 0.112.1 +InstallerLocale: en-US +InstallerType: wix +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- nu +ReleaseDate: 2026-04-11 +InstallationMetadata: + DefaultInstallLocation: nu +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/nushell/nushell/releases/download/0.112.1/nu-0.112.1-x86_64-pc-windows-msvc.msi + InstallerSha256: 14CC175688C8D633ED5C04F85899858EB4CE143D5293A42943E38E86E8B90975 + InstallerSwitches: + Custom: ALLUSERS=2 MSIINSTALLPERUSER=1 + ProductCode: '{DA03D692-4AA6-475E-A16A-C86B69F722D5}' + AppsAndFeaturesEntries: + - DisplayName: Nushell + ProductCode: '{DA03D692-4AA6-475E-A16A-C86B69F722D5}' + UpgradeCode: '{82D756D2-19FA-4F09-B10F-64942E89F364}' +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/nushell/nushell/releases/download/0.112.1/nu-0.112.1-x86_64-pc-windows-msvc.msi + InstallerSha256: 14CC175688C8D633ED5C04F85899858EB4CE143D5293A42943E38E86E8B90975 + InstallerSwitches: + Custom: ALLUSERS=1 + ProductCode: '{DA03D692-4AA6-475E-A16A-C86B69F722D5}' + AppsAndFeaturesEntries: + - DisplayName: Nushell + ProductCode: '{DA03D692-4AA6-475E-A16A-C86B69F722D5}' + UpgradeCode: '{82D756D2-19FA-4F09-B10F-64942E89F364}' +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/nushell/nushell/releases/download/0.112.1/nu-0.112.1-aarch64-pc-windows-msvc.msi + InstallerSha256: B00FEC78DD3FA8C9513EE8A09FCB466C18AF688BBDB4C2D202DE7A1FA7BBA116 + InstallerSwitches: + Custom: ALLUSERS=2 MSIINSTALLPERUSER=1 + ProductCode: '{F19404E8-56CA-4F7B-90C4-75FCF812EFBA}' + AppsAndFeaturesEntries: + - DisplayName: Nushell + ProductCode: '{F19404E8-56CA-4F7B-90C4-75FCF812EFBA}' + UpgradeCode: '{82D756D2-19FA-4F09-B10F-64942E89F364}' +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/nushell/nushell/releases/download/0.112.1/nu-0.112.1-aarch64-pc-windows-msvc.msi + InstallerSha256: B00FEC78DD3FA8C9513EE8A09FCB466C18AF688BBDB4C2D202DE7A1FA7BBA116 + InstallerSwitches: + Custom: ALLUSERS=1 + ProductCode: '{F19404E8-56CA-4F7B-90C4-75FCF812EFBA}' + AppsAndFeaturesEntries: + - DisplayName: Nushell + ProductCode: '{F19404E8-56CA-4F7B-90C4-75FCF812EFBA}' + UpgradeCode: '{82D756D2-19FA-4F09-B10F-64942E89F364}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/Nushell/Nushell/0.112.1/Nushell.Nushell.locale.en-US.yaml b/manifests/n/Nushell/Nushell/0.112.1/Nushell.Nushell.locale.en-US.yaml new file mode 100644 index 0000000000000..0d86ea7e5f29b --- /dev/null +++ b/manifests/n/Nushell/Nushell/0.112.1/Nushell.Nushell.locale.en-US.yaml @@ -0,0 +1,33 @@ +# 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: Nushell.Nushell +PackageVersion: 0.112.1 +PackageLocale: en-US +Publisher: The Nushell Project Developers +PublisherUrl: https://www.nushell.sh/ +PublisherSupportUrl: https://github.com/nushell/nushell/issues +Author: The Nushell Project Developers +PackageName: nu +PackageUrl: https://github.com/nushell/integrations +License: MIT +LicenseUrl: https://github.com/nushell/nushell/blob/HEAD/LICENSE +Copyright: Copyright (c) 2019 - 2025 The Nushell Project Developers +CopyrightUrl: https://raw.githubusercontent.com/nushell/nushell/main/LICENSE +ShortDescription: A new type of shell +Description: |- + Hello, and welcome to the Nushell project. + The goal of this project is to take the Unix philosophy of shells, where pipes connect simple commands together, and bring it to the modern style of development. + Nu takes cues from a lot of familiar territory, traditional shells like bash, object based shells like PowerShell, functional programming, systems programming, and more. +Moniker: nushell +Tags: +- rust +- shell +ReleaseNotes: |- + This is the 0.112.1 release of Nushell. You can learn more about this release here: https://www.nushell.sh/blog/2026-04-11-nushell_v0_112_1.html + (We skipped release 0.112.0 due to issue when releasing to crates.io.) + For convenience, we are providing full builds for Windows, Linux, and macOS. Be sure you have the requirements to enable all capabilities: https://www.nushell.sh/book/installation.html#dependencies + This release was made possible by PR contributions from @0xRozier, @amaanq, @andrewgazelka, @app/, @app/dependabot, @ayax79, @Bahex, @Benjas333, @blackhat-hemsworth, @blindFS, @Bortlesboat, @ChrisDenton, @CloveSVG, @cmtm, @coravacav, @cosineblast, @cptpiepmatz, @Dexterity104, @dxrcy, @fdncred, @galuszkak, @guluo2016, @hustcer, @ian-h-chamberlain, @Juhan280, @kiannidev, @kx0101, @Moayad717, @musicinmybrain, @niklasmarderx, @pickx, @preiter93, @rayzeller, @rbran, @Rohan5commit, @seroperson, @sholderbach, @smartcoder0777, @stuartcarnie, @tauanbinato, @Tyarel8, @weirdan, @WindSoilder, @WookiesRpeople2, @xtqqczze, @ymcx, @ysthakur, @zhiburt +ReleaseNotesUrl: https://github.com/nushell/nushell/releases/tag/0.112.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/Nushell/Nushell/0.112.1/Nushell.Nushell.yaml b/manifests/n/Nushell/Nushell/0.112.1/Nushell.Nushell.yaml new file mode 100644 index 0000000000000..ddd4a521b285f --- /dev/null +++ b/manifests/n/Nushell/Nushell/0.112.1/Nushell.Nushell.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: Nushell.Nushell +PackageVersion: 0.112.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 65f7f919b1dd0e6529e211739a03a534ec035ef1 Mon Sep 17 00:00:00 2001 From: Jordan Coin Jackson Date: Sat, 11 Apr 2026 20:46:59 -0400 Subject: [PATCH 27/87] New version: JordanCoin.docmap 0.4.0 (#358432) Co-authored-by: goreleaserbot --- .../0.4.0/JordanCoin.docmap.installer.yaml | 18 +++++++++++++ .../0.4.0/JordanCoin.docmap.locale.en-US.yaml | 26 +++++++++++++++++++ .../docmap/0.4.0/JordanCoin.docmap.yaml | 7 +++++ 3 files changed, 51 insertions(+) create mode 100644 manifests/j/JordanCoin/docmap/0.4.0/JordanCoin.docmap.installer.yaml create mode 100644 manifests/j/JordanCoin/docmap/0.4.0/JordanCoin.docmap.locale.en-US.yaml create mode 100644 manifests/j/JordanCoin/docmap/0.4.0/JordanCoin.docmap.yaml diff --git a/manifests/j/JordanCoin/docmap/0.4.0/JordanCoin.docmap.installer.yaml b/manifests/j/JordanCoin/docmap/0.4.0/JordanCoin.docmap.installer.yaml new file mode 100644 index 0000000000000..b5a5ef0034db3 --- /dev/null +++ b/manifests/j/JordanCoin/docmap/0.4.0/JordanCoin.docmap.installer.yaml @@ -0,0 +1,18 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: JordanCoin.docmap +PackageVersion: 0.4.0 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-04-11" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: docmap.exe + PortableCommandAlias: docmap + InstallerUrl: https://github.com/JordanCoin/docmap/releases/download/v0.4.0/docmap_0.4.0_windows_amd64.zip + InstallerSha256: b9a63661c5819b59cec6063364f551b70bd410ec9f556dfd23abb6fb8a7718fa + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/JordanCoin/docmap/0.4.0/JordanCoin.docmap.locale.en-US.yaml b/manifests/j/JordanCoin/docmap/0.4.0/JordanCoin.docmap.locale.en-US.yaml new file mode 100644 index 0000000000000..dc65049ecad04 --- /dev/null +++ b/manifests/j/JordanCoin/docmap/0.4.0/JordanCoin.docmap.locale.en-US.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: JordanCoin.docmap +PackageVersion: 0.4.0 +PackageLocale: en-US +Publisher: JordanCoin +PublisherUrl: https://github.com/JordanCoin +PublisherSupportUrl: https://github.com/JordanCoin/docmap/issues +PackageName: docmap +PackageUrl: https://github.com/JordanCoin/docmap +License: MIT +LicenseUrl: https://github.com/JordanCoin/docmap/blob/main/LICENSE +ShortDescription: Instant documentation structure for LLMs and humans +Description: | + docmap generates a compact, structured map of your documentation + that LLMs can instantly understand. Navigate massive docs without + burning tokens. +Moniker: docmap +Tags: + - cli + - developer-tools + - ai + - llm + - documentation +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JordanCoin/docmap/0.4.0/JordanCoin.docmap.yaml b/manifests/j/JordanCoin/docmap/0.4.0/JordanCoin.docmap.yaml new file mode 100644 index 0000000000000..ffb7f9b39139c --- /dev/null +++ b/manifests/j/JordanCoin/docmap/0.4.0/JordanCoin.docmap.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: JordanCoin.docmap +PackageVersion: 0.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 03eb509fd20c7263cd07d07a77c4206661cd17bf Mon Sep 17 00:00:00 2001 From: Peter Rekdal Khan-Sunde Date: Sun, 12 Apr 2026 03:16:07 +0200 Subject: [PATCH 28/87] New version: Peters.Horizon version 0.2.5 (#358433) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .../0.2.5/Peters.Horizon.installer.yaml | 14 +++++++++++ .../0.2.5/Peters.Horizon.locale.en-US.yaml | 23 +++++++++++++++++++ .../Peters/Horizon/0.2.5/Peters.Horizon.yaml | 7 ++++++ 3 files changed, 44 insertions(+) create mode 100644 manifests/p/Peters/Horizon/0.2.5/Peters.Horizon.installer.yaml create mode 100644 manifests/p/Peters/Horizon/0.2.5/Peters.Horizon.locale.en-US.yaml create mode 100644 manifests/p/Peters/Horizon/0.2.5/Peters.Horizon.yaml diff --git a/manifests/p/Peters/Horizon/0.2.5/Peters.Horizon.installer.yaml b/manifests/p/Peters/Horizon/0.2.5/Peters.Horizon.installer.yaml new file mode 100644 index 0000000000000..2b7dfaf56d472 --- /dev/null +++ b/manifests/p/Peters/Horizon/0.2.5/Peters.Horizon.installer.yaml @@ -0,0 +1,14 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Peters.Horizon +PackageVersion: 0.2.5 +InstallerType: portable +Commands: +- horizon +ReleaseDate: 2026-04-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/peters/horizon/releases/download/v0.2.5/horizon-windows-x64.exe + InstallerSha256: AE89CD7C8CAD32F67C628E8EC7D69D2132707BE6932FCF83E53EB91E59D8A4CD +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Peters/Horizon/0.2.5/Peters.Horizon.locale.en-US.yaml b/manifests/p/Peters/Horizon/0.2.5/Peters.Horizon.locale.en-US.yaml new file mode 100644 index 0000000000000..721b363bea3bf --- /dev/null +++ b/manifests/p/Peters/Horizon/0.2.5/Peters.Horizon.locale.en-US.yaml @@ -0,0 +1,23 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Peters.Horizon +PackageVersion: 0.2.5 +PackageLocale: en-US +Publisher: Peter Rekdal Khan-Sunde +PublisherUrl: https://github.com/peters +PublisherSupportUrl: https://github.com/peters/horizon/issues +PackageName: Horizon +PackageUrl: https://github.com/peters/horizon +License: MIT +LicenseUrl: https://github.com/peters/horizon/blob/v0.2.5/LICENSE +ShortDescription: GPU-accelerated terminal board on an infinite canvas. +Description: |- + Horizon is a GPU-accelerated terminal board for managing multiple terminal sessions as freely positioned, resizable panels on an infinite canvas. + It combines workspaces, panel presets, remote hosts, session persistence, and agent-friendly terminal workflows in one desktop app. +Tags: +- terminal +- workspace +- developer-tools +ReleaseNotesUrl: https://github.com/peters/horizon/releases/tag/v0.2.5 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/Peters/Horizon/0.2.5/Peters.Horizon.yaml b/manifests/p/Peters/Horizon/0.2.5/Peters.Horizon.yaml new file mode 100644 index 0000000000000..5420fc49f6079 --- /dev/null +++ b/manifests/p/Peters/Horizon/0.2.5/Peters.Horizon.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Peters.Horizon +PackageVersion: 0.2.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 78380acf555402cccd81861b190c9427c97997d9 Mon Sep 17 00:00:00 2001 From: UnownPlain Date: Sat, 11 Apr 2026 21:17:15 -0400 Subject: [PATCH 29/87] Update version: Microsoft.SafetyScanner version 1.445.169.0 (#358434) --- .../Microsoft.SafetyScanner.installer.yaml | 21 +++++++------------ .../Microsoft.SafetyScanner.locale.en-US.yaml | 10 ++++----- .../1.445.169.0/Microsoft.SafetyScanner.yaml | 1 + 3 files changed, 13 insertions(+), 19 deletions(-) diff --git a/manifests/m/Microsoft/SafetyScanner/1.445.169.0/Microsoft.SafetyScanner.installer.yaml b/manifests/m/Microsoft/SafetyScanner/1.445.169.0/Microsoft.SafetyScanner.installer.yaml index 2e8ac4639aacb..a9ce48a18a1ad 100644 --- a/manifests/m/Microsoft/SafetyScanner/1.445.169.0/Microsoft.SafetyScanner.installer.yaml +++ b/manifests/m/Microsoft/SafetyScanner/1.445.169.0/Microsoft.SafetyScanner.installer.yaml @@ -1,23 +1,18 @@ +# Created by Anthelion using komac v2.15.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Microsoft.SafetyScanner PackageVersion: 1.445.169.0 -ReleaseDate: 2026-02-21 InstallerType: portable +Commands: +- safetyscanner +ReleaseDate: 2026-02-21 Installers: +- Architecture: x86 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.445.169.0&arch=x86 + InstallerSha256: 067F3DFA5822DB5FC97218274F16E6A3B2E5AE7CD4F9E169E6B6BE154A0E006A - Architecture: x64 InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.445.169.0&arch=amd64 InstallerSha256: 80AA0647E39507015AE4D0283251735B4F9690D30D010230FC7C9EB1127C8F72 - Commands: - - safetyscanner - AppsAndFeaturesEntries: - - DisplayName: Microsoft Safety Scanner (x64) -- Architecture: x86 - InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.445.169.0&arch=x86 - InstallerSha256: 067f3dfa5822db5fc97218274f16e6a3b2e5ae7cd4f9e169e6b6be154a0e006a - Commands: - - safetyscanner86 - AppsAndFeaturesEntries: - - DisplayName: Microsoft Safety Scanner (x86) ManifestType: installer -ManifestVersion: 1.12.0 \ No newline at end of file +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.445.169.0/Microsoft.SafetyScanner.locale.en-US.yaml b/manifests/m/Microsoft/SafetyScanner/1.445.169.0/Microsoft.SafetyScanner.locale.en-US.yaml index f70ecd88a86fe..1ec081261a818 100644 --- a/manifests/m/Microsoft/SafetyScanner/1.445.169.0/Microsoft.SafetyScanner.locale.en-US.yaml +++ b/manifests/m/Microsoft/SafetyScanner/1.445.169.0/Microsoft.SafetyScanner.locale.en-US.yaml @@ -1,3 +1,4 @@ +# Created by Anthelion using komac v2.15.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Microsoft.SafetyScanner @@ -6,7 +7,7 @@ PackageLocale: en-US Publisher: Microsoft Corporation PackageName: Microsoft Safety Scanner PackageUrl: https://learn.microsoft.com/en-us/defender-endpoint/safety-scanner-download -License: Proprietary (Freeware) +License: Proprietary Copyright: © Microsoft Corporation. All rights reserved. ShortDescription: A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. Description: |- @@ -14,12 +15,9 @@ Description: |- The tool uses the same security intelligence update definitions as (among others) Microsoft Defender Antivirus. Safety Scanner does however not have an internal definition update checker, but does get app updates every 3-4 hours. Thus, the Winget package may lag some days behind Windows Update + Microsoft Defender Antivirus. Tags: -- microsoft-safety-scanner -- microsoftsafetyscanner -- windows-security -- windowssecurity - microsoft-defender-antivirus -- microsoftdefenderantivirus +- microsoft-safety-scanner - msert +- windows-security ManifestType: defaultLocale ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.445.169.0/Microsoft.SafetyScanner.yaml b/manifests/m/Microsoft/SafetyScanner/1.445.169.0/Microsoft.SafetyScanner.yaml index 19d0bef57e97d..29795c98cdd2c 100644 --- a/manifests/m/Microsoft/SafetyScanner/1.445.169.0/Microsoft.SafetyScanner.yaml +++ b/manifests/m/Microsoft/SafetyScanner/1.445.169.0/Microsoft.SafetyScanner.yaml @@ -1,3 +1,4 @@ +# Created by Anthelion using komac v2.15.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Microsoft.SafetyScanner From da69999a8729b9a14e140439ef56daa51a60d7a8 Mon Sep 17 00:00:00 2001 From: UnownPlain Date: Sat, 11 Apr 2026 21:18:22 -0400 Subject: [PATCH 30/87] Update version: Microsoft.SafetyScanner version 1.449.26.0 (#358435) --- .../Microsoft.SafetyScanner.installer.yaml | 20 +++++++------------ .../Microsoft.SafetyScanner.locale.en-US.yaml | 7 ++----- .../1.449.26.0/Microsoft.SafetyScanner.yaml | 2 +- 3 files changed, 10 insertions(+), 19 deletions(-) diff --git a/manifests/m/Microsoft/SafetyScanner/1.449.26.0/Microsoft.SafetyScanner.installer.yaml b/manifests/m/Microsoft/SafetyScanner/1.449.26.0/Microsoft.SafetyScanner.installer.yaml index a448f6474d0be..5c1759ddd7f70 100644 --- a/manifests/m/Microsoft/SafetyScanner/1.449.26.0/Microsoft.SafetyScanner.installer.yaml +++ b/manifests/m/Microsoft/SafetyScanner/1.449.26.0/Microsoft.SafetyScanner.installer.yaml @@ -1,24 +1,18 @@ -# Created with komac v2.16.0 +# Created by Anthelion using komac v2.15.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Microsoft.SafetyScanner PackageVersion: 1.449.26.0 InstallerType: portable +Commands: +- safetyscanner ReleaseDate: 2026-04-10 Installers: - Architecture: x86 - InstallerUrl: https://go.microsoft.com/fwlink/?LinkId=212733 - InstallerSha256: 5FE2D9A6519B2A10ABE24B2D760DB57A6D944345F71BBF6CC42D667C6DFF47C3 - Commands: - - safetyscanner86 - AppsAndFeaturesEntries: - - DisplayName: Microsoft Safety Scanner (x86) + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.449.26.0&arch=x86 + InstallerSha256: 92C358B6E8C144534104B0ACB6A076DCF7A86D92DF3C3062B81DB704D0E8E1E5 - Architecture: x64 - InstallerUrl: https://go.microsoft.com/fwlink/?LinkId=212732 - InstallerSha256: B145EA2C3177DA2B4C07A32F3646C18C770622392BE7534A6A2117302FBF18A2 - Commands: - - safetyscanner - AppsAndFeaturesEntries: - - DisplayName: Microsoft Safety Scanner (x64) + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.449.26.0&arch=amd64 + InstallerSha256: 210447AC3E11456DE6EF2E0965BB9F7AAB7935EBD5C0075B09885EA54D03F8CB ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.449.26.0/Microsoft.SafetyScanner.locale.en-US.yaml b/manifests/m/Microsoft/SafetyScanner/1.449.26.0/Microsoft.SafetyScanner.locale.en-US.yaml index 4092f56541260..f7b5f05d561b4 100644 --- a/manifests/m/Microsoft/SafetyScanner/1.449.26.0/Microsoft.SafetyScanner.locale.en-US.yaml +++ b/manifests/m/Microsoft/SafetyScanner/1.449.26.0/Microsoft.SafetyScanner.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with komac v2.16.0 +# Created by Anthelion using komac v2.15.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Microsoft.SafetyScanner @@ -7,7 +7,7 @@ PackageLocale: en-US Publisher: Microsoft Corporation PackageName: Microsoft Safety Scanner PackageUrl: https://learn.microsoft.com/en-us/defender-endpoint/safety-scanner-download -License: Proprietary (Freeware) +License: Proprietary Copyright: © Microsoft Corporation. All rights reserved. ShortDescription: A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. Description: |- @@ -17,10 +17,7 @@ Description: |- Tags: - microsoft-defender-antivirus - microsoft-safety-scanner -- microsoftdefenderantivirus -- microsoftsafetyscanner - msert - windows-security -- windowssecurity ManifestType: defaultLocale ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.449.26.0/Microsoft.SafetyScanner.yaml b/manifests/m/Microsoft/SafetyScanner/1.449.26.0/Microsoft.SafetyScanner.yaml index efddef155bf23..66138484e8dd6 100644 --- a/manifests/m/Microsoft/SafetyScanner/1.449.26.0/Microsoft.SafetyScanner.yaml +++ b/manifests/m/Microsoft/SafetyScanner/1.449.26.0/Microsoft.SafetyScanner.yaml @@ -1,4 +1,4 @@ -# Created with komac v2.16.0 +# Created by Anthelion using komac v2.15.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Microsoft.SafetyScanner From cbdbf002608a33f5f1bc34deb2d14c957fb77f7d Mon Sep 17 00:00:00 2001 From: Imre Eilertsen Date: Sun, 12 Apr 2026 03:46:28 +0200 Subject: [PATCH 31/87] Added 2 tags: Lebo.Lebo version 6.3.60 (#358344) --- manifests/l/Lebo/Lebo/6.3.60/Lebo.Lebo.locale.en-US.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manifests/l/Lebo/Lebo/6.3.60/Lebo.Lebo.locale.en-US.yaml b/manifests/l/Lebo/Lebo/6.3.60/Lebo.Lebo.locale.en-US.yaml index 2273ee4756ff3..66f32c734f164 100644 --- a/manifests/l/Lebo/Lebo/6.3.60/Lebo.Lebo.locale.en-US.yaml +++ b/manifests/l/Lebo/Lebo/6.3.60/Lebo.Lebo.locale.en-US.yaml @@ -1,4 +1,3 @@ -# Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Lebo.Lebo @@ -21,6 +20,8 @@ Tags: - record - screen - screen-mirroring +- prc +- china Documentations: - DocumentLabel: FAQ DocumentUrl: https://www.lebo.cn/UseHelp.jsp From 46ec40f21a9830a80d41af92482c3ecedd76d3cd Mon Sep 17 00:00:00 2001 From: UnownPlain Date: Sat, 11 Apr 2026 21:47:32 -0400 Subject: [PATCH 32/87] New version: Microsoft.SafetyScanner version 1.449.54.0 (#358437) --- .../Microsoft.SafetyScanner.installer.yaml | 18 +++++++++++++++ .../Microsoft.SafetyScanner.locale.en-US.yaml | 23 +++++++++++++++++++ .../1.449.54.0/Microsoft.SafetyScanner.yaml | 8 +++++++ 3 files changed, 49 insertions(+) create mode 100644 manifests/m/Microsoft/SafetyScanner/1.449.54.0/Microsoft.SafetyScanner.installer.yaml create mode 100644 manifests/m/Microsoft/SafetyScanner/1.449.54.0/Microsoft.SafetyScanner.locale.en-US.yaml create mode 100644 manifests/m/Microsoft/SafetyScanner/1.449.54.0/Microsoft.SafetyScanner.yaml diff --git a/manifests/m/Microsoft/SafetyScanner/1.449.54.0/Microsoft.SafetyScanner.installer.yaml b/manifests/m/Microsoft/SafetyScanner/1.449.54.0/Microsoft.SafetyScanner.installer.yaml new file mode 100644 index 0000000000000..5212c4e2dd6ef --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.449.54.0/Microsoft.SafetyScanner.installer.yaml @@ -0,0 +1,18 @@ +# Created by Anthelion using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.449.54.0 +InstallerType: portable +Commands: +- safetyscanner +ReleaseDate: 2026-04-11 +Installers: +- Architecture: x86 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.449.54.0&arch=x86 + InstallerSha256: 8A87F115BACE37E781BCFD097292AC28A3B94F15B591C1A9C77E153504DB5A37 +- Architecture: x64 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.449.54.0&arch=amd64 + InstallerSha256: 17361B082E651022C140B2B0103D5DCC68743BFBC6C5B6DDFDCADEC1B3F72DBF +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.449.54.0/Microsoft.SafetyScanner.locale.en-US.yaml b/manifests/m/Microsoft/SafetyScanner/1.449.54.0/Microsoft.SafetyScanner.locale.en-US.yaml new file mode 100644 index 0000000000000..29ca24c26d79d --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.449.54.0/Microsoft.SafetyScanner.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created by Anthelion using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.449.54.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft Safety Scanner +PackageUrl: https://learn.microsoft.com/en-us/defender-endpoint/safety-scanner-download +License: Proprietary +Copyright: © Microsoft Corporation. All rights reserved. +ShortDescription: A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. +Description: |- + A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. + + The tool uses the same security intelligence update definitions as (among others) Microsoft Defender Antivirus. Safety Scanner does however not have an internal definition update checker, but does get app updates every 3-4 hours. Thus, the Winget package may lag some days behind Windows Update + Microsoft Defender Antivirus. +Tags: +- microsoft-defender-antivirus +- microsoft-safety-scanner +- msert +- windows-security +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.449.54.0/Microsoft.SafetyScanner.yaml b/manifests/m/Microsoft/SafetyScanner/1.449.54.0/Microsoft.SafetyScanner.yaml new file mode 100644 index 0000000000000..3ff8735baee79 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.449.54.0/Microsoft.SafetyScanner.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.449.54.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From d357075f1fb20821bc60d9b5a66af91280d5a722 Mon Sep 17 00:00:00 2001 From: UnownBot Date: Sat, 11 Apr 2026 22:16:32 -0400 Subject: [PATCH 33/87] Update version: Zen-Team.Zen-Browser.Twilight version 1.20t (#358439) --- .../Twilight/1.20t/Zen-Team.Zen-Browser.Twilight.installer.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/z/Zen-Team/Zen-Browser/Twilight/1.20t/Zen-Team.Zen-Browser.Twilight.installer.yaml b/manifests/z/Zen-Team/Zen-Browser/Twilight/1.20t/Zen-Team.Zen-Browser.Twilight.installer.yaml index c6e4494b98d0e..9ac42265765c2 100644 --- a/manifests/z/Zen-Team/Zen-Browser/Twilight/1.20t/Zen-Team.Zen-Browser.Twilight.installer.yaml +++ b/manifests/z/Zen-Team/Zen-Browser/Twilight/1.20t/Zen-Team.Zen-Browser.Twilight.installer.yaml @@ -29,7 +29,7 @@ FileExtensions: - xht - xhtml ProductCode: Zen Twilight -ReleaseDate: 2026-04-08 +ReleaseDate: 2026-04-12 Installers: - Architecture: x64 InstallerUrl: https://github.com/zen-browser/desktop/releases/download/twilight-1/zen.installer.exe From ca335c2dbee2ed78ea236247a685fb942184bbdc Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sun, 12 Apr 2026 10:17:31 +0800 Subject: [PATCH 34/87] Update: Servo.Servo.Nightly version 1.0 (2026-04-11) (#358440) --- .../Servo/Nightly/1.0/Servo.Servo.Nightly.installer.yaml | 8 ++++---- .../Nightly/1.0/Servo.Servo.Nightly.locale.en-US.yaml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.installer.yaml b/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.installer.yaml index 30df4a0d060e4..9fbb15e1fa3b0 100644 --- a/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.installer.yaml +++ b/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.installer.yaml @@ -8,13 +8,13 @@ Scope: machine Protocols: - http - https -ProductCode: '{f5686fb8-e9b6-47cf-b353-919714b29cad}' -ReleaseDate: 2026-04-10 +ProductCode: '{f0aa3513-d1df-4037-a179-ecb1d0d35b9e}' +ReleaseDate: 2026-04-11 AppsAndFeaturesEntries: - DisplayName: ServoShell Installers: - Architecture: x64 - InstallerUrl: https://github.com/servo/servo-nightly-builds/releases/download/2026-04-10/servo-x86_64-windows-msvc.exe - InstallerSha256: BD500F6ADB030D6E30CF9E94149903057A39F3733C952EE24804F7B63B6273EF + InstallerUrl: https://github.com/servo/servo-nightly-builds/releases/download/2026-04-11/servo-x86_64-windows-msvc.exe + InstallerSha256: AED0A303871AC4F4D9B87E23498D0F851176CEE7421E54B6112E5427C01CB0EC ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.locale.en-US.yaml b/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.locale.en-US.yaml index ec0fa2e3ea2e1..38633a25bdff2 100644 --- a/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.locale.en-US.yaml +++ b/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.locale.en-US.yaml @@ -19,8 +19,8 @@ Tags: - web - web-browser - webpage -ReleaseNotes: Nightly build based on servo/servo@74de42f4f70f5961ce93c4dcdd662368e399514d -ReleaseNotesUrl: https://github.com/servo/servo-nightly-builds/releases/tag/2026-04-10 +ReleaseNotes: Nightly build based on servo/servo@64f4f080dd19255a3970ed7342c3a0825f83b5e4 +ReleaseNotesUrl: https://github.com/servo/servo-nightly-builds/releases/tag/2026-04-11 Documentations: - DocumentLabel: Wiki DocumentUrl: https://github.com/servo/servo/wiki From 53637d8a50d17f64215c4cfbbf009ef9fba1846b Mon Sep 17 00:00:00 2001 From: Gorniaky <30408913+Gorniaky@users.noreply.github.com> Date: Sat, 11 Apr 2026 23:18:35 -0300 Subject: [PATCH 35/87] Revert "New version: Discloud.CLI version 0.12.2" (#358444) --- .../CLI/0.12.2/Discloud.CLI.installer.yaml | 16 ------------ .../CLI/0.12.2/Discloud.CLI.locale.en-US.yaml | 25 ------------------- .../d/Discloud/CLI/0.12.2/Discloud.CLI.yaml | 8 ------ 3 files changed, 49 deletions(-) delete mode 100644 manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.installer.yaml delete mode 100644 manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.locale.en-US.yaml delete mode 100644 manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.yaml diff --git a/manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.installer.yaml b/manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.installer.yaml deleted file mode 100644 index 5ae80f7415842..0000000000000 --- a/manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created using wingetcreate 1.12.8.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Discloud.CLI -PackageVersion: 0.12.2 -InstallerType: inno -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/discloud/cli-dart/releases/download/0.12.2/discloud-cli-x64-setup.exe - InstallerSha256: 30C7134FF133A0639A92F0883DF6CEA1A03EFFE8AEFE75BFEE936FE4FE3E4FB1 -- Architecture: arm64 - InstallerUrl: https://github.com/discloud/cli-dart/releases/download/0.12.2/discloud-cli-x64-setup.exe - InstallerSha256: 30C7134FF133A0639A92F0883DF6CEA1A03EFFE8AEFE75BFEE936FE4FE3E4FB1 -ManifestType: installer -ManifestVersion: 1.12.0 -ReleaseDate: 2026-04-11 diff --git a/manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.locale.en-US.yaml b/manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.locale.en-US.yaml deleted file mode 100644 index 67c9cf3232a69..0000000000000 --- a/manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.locale.en-US.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created using wingetcreate 1.12.8.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Discloud.CLI -PackageVersion: 0.12.2 -PackageLocale: en-US -Publisher: Discloud -PublisherUrl: https://github.com/discloud -PublisherSupportUrl: https://docs.discloud.com/faq/where-to-get-help -PrivacyUrl: https://github.com/discloud/legal/blob/main/terms-en.md -Author: Discloud -PackageName: Discloud CLI -PackageUrl: https://github.com/discloud/cli-dart -License: Apache 2.0 -LicenseUrl: https://github.com/discloud/cli-dart/blob/main/LICENSE -Copyright: Copyright © 2026 Discloud -ShortDescription: Discloud CLI Setup -Description: A fast option to manage your apps on Discloud. -Moniker: discloudcli -Tags: -- discloudbot -- host -ReleaseNotesUrl: https://github.com/discloud/cli-dart/releases/tag/0.12.2 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.yaml b/manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.yaml deleted file mode 100644 index ccf4e8ec0331f..0000000000000 --- a/manifests/d/Discloud/CLI/0.12.2/Discloud.CLI.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.12.8.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: Discloud.CLI -PackageVersion: 0.12.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 From 04f5327a0c8e0a4e3d50aaa2c5410f2dcd0b8baf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= <31723128+kris6673@users.noreply.github.com> Date: Sun, 12 Apr 2026 04:46:50 +0200 Subject: [PATCH 36/87] New version: pbek.QOwnNotes version 26.4.11 (#358442) --- .../26.4.11/pbek.QOwnNotes.installer.yaml | 17 ++++++ .../26.4.11/pbek.QOwnNotes.locale.en-US.yaml | 57 +++++++++++++++++++ .../QOwnNotes/26.4.11/pbek.QOwnNotes.yaml | 8 +++ 3 files changed, 82 insertions(+) create mode 100644 manifests/p/pbek/QOwnNotes/26.4.11/pbek.QOwnNotes.installer.yaml create mode 100644 manifests/p/pbek/QOwnNotes/26.4.11/pbek.QOwnNotes.locale.en-US.yaml create mode 100644 manifests/p/pbek/QOwnNotes/26.4.11/pbek.QOwnNotes.yaml diff --git a/manifests/p/pbek/QOwnNotes/26.4.11/pbek.QOwnNotes.installer.yaml b/manifests/p/pbek/QOwnNotes/26.4.11/pbek.QOwnNotes.installer.yaml new file mode 100644 index 0000000000000..d028097188c88 --- /dev/null +++ b/manifests/p/pbek/QOwnNotes/26.4.11/pbek.QOwnNotes.installer.yaml @@ -0,0 +1,17 @@ +# 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: pbek.QOwnNotes +PackageVersion: 26.4.11 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: QOwnNotes.exe + PortableCommandAlias: qownnotes.exe +ReleaseDate: 2026-04-11 +Installers: +- Architecture: neutral + InstallerUrl: https://github.com/pbek/QOwnNotes/releases/download/v26.4.11/QOwnNotes.zip + InstallerSha256: 8F703365CE8A202533509C7CA75876B5F1F05454B1B5BF8F5FC36DCFBEE39EDB +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/pbek/QOwnNotes/26.4.11/pbek.QOwnNotes.locale.en-US.yaml b/manifests/p/pbek/QOwnNotes/26.4.11/pbek.QOwnNotes.locale.en-US.yaml new file mode 100644 index 0000000000000..8fdc3aa8b491b --- /dev/null +++ b/manifests/p/pbek/QOwnNotes/26.4.11/pbek.QOwnNotes.locale.en-US.yaml @@ -0,0 +1,57 @@ +# 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: pbek.QOwnNotes +PackageVersion: 26.4.11 +PackageLocale: en-US +Publisher: pbek +PublisherUrl: https://github.com/pbek/QOwnNotes +PublisherSupportUrl: https://github.com/pbek/QOwnNotes/issues +Author: https://github.com/pbek +PackageName: QOwnNotes +PackageUrl: https://github.com/pbek/QOwnNotes +License: GPL-2.0 +LicenseUrl: https://github.com/pbek/QOwnNotes/blob/HEAD/LICENSE +ShortDescription: QOwnNotes is the open source notepad with markdown support and todo list manager +Tags: +- markdown +- notes +- notetaking +- qownnotes +- todo +ReleaseNotes: |- + 26.4.11 + - The Leave distraction free mode and Leave full-screen mode status bar + buttons now use descriptive labels instead of a generic "leave" label, making + it clear which mode each button exits (for #3553) + - Added a Hide status bar in distraction free mode checkbox to the + Interface settings under the Status bar section, allowing the status + bar to be hidden when entering distraction free mode and automatically + restored when leaving it (for #3553) + - Changed the Find in current note search bar and the search bars in both the + QLiteHtml and legacy preview to wait until at least two characters are + entered before searching, while still searching immediately for a single emoji + so emoji-only note content remains easy to find; the search bars no longer jump to + the top of the document when the search term is deleted; the QLiteHtml and + legacy preview search bars now have a 300ms debounce delay, and the note + editor search debounce delay applies to notes longer than 20,000 characters + (for #3550) + - Added a new Automatically show note filename selection when [[ is typed + checkbox to the Editor settings, which is only available when + wiki-style link support is enabled and is turned off by default + (for #3552) + Released files + - QOwnNotes-x86_64.AppImage: Portable Linux AppImage build with Qt 6 + - QOwnNotes-x86_64.AppImage.sha256sum: SHA-256 checksum for the AppImage + - QOwnNotes-amd64.snap: Linux Snap build with Qt 6 + - QOwnNotes-amd64.snap.sha256sum: SHA-256 checksum for the Qt 6 Snap package + - QOwnNotes-Qt5-amd64.snap: Linux Snap build with Qt 5 for older environments + - QOwnNotes-Qt5-amd64.snap.sha256sum: SHA-256 checksum for the Qt 5 Snap package + - QOwnNotes.zip: Windows ZIP package built with Qt 6 + - QOwnNotes.zip.sha256: SHA-256 checksum for the Qt 6 Windows ZIP package + - QOwnNotes.zip.sha256sum: Alternative SHA-256 checksum file for the Qt 6 Windows ZIP package + - QOwnNotes.dmg: macOS disk image built with Qt 6 + - QOwnNotesQt5.dmg: macOS disk image built with Qt 5 for older systems +ReleaseNotesUrl: https://github.com/pbek/QOwnNotes/releases/tag/v26.4.11 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/pbek/QOwnNotes/26.4.11/pbek.QOwnNotes.yaml b/manifests/p/pbek/QOwnNotes/26.4.11/pbek.QOwnNotes.yaml new file mode 100644 index 0000000000000..8671e736489d0 --- /dev/null +++ b/manifests/p/pbek/QOwnNotes/26.4.11/pbek.QOwnNotes.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: pbek.QOwnNotes +PackageVersion: 26.4.11 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From e112e7a53c631cb0ca241f17fe54510ee42d7abf Mon Sep 17 00:00:00 2001 From: Gorniaky <30408913+Gorniaky@users.noreply.github.com> Date: Sun, 12 Apr 2026 00:17:10 -0300 Subject: [PATCH 37/87] New version: Discloud.CLI version 0.12.3 (#358445) --- .../CLI/0.12.3/Discloud.CLI.installer.yaml | 16 ++++++++++++ .../CLI/0.12.3/Discloud.CLI.locale.en-US.yaml | 25 +++++++++++++++++++ .../d/Discloud/CLI/0.12.3/Discloud.CLI.yaml | 8 ++++++ 3 files changed, 49 insertions(+) create mode 100644 manifests/d/Discloud/CLI/0.12.3/Discloud.CLI.installer.yaml create mode 100644 manifests/d/Discloud/CLI/0.12.3/Discloud.CLI.locale.en-US.yaml create mode 100644 manifests/d/Discloud/CLI/0.12.3/Discloud.CLI.yaml diff --git a/manifests/d/Discloud/CLI/0.12.3/Discloud.CLI.installer.yaml b/manifests/d/Discloud/CLI/0.12.3/Discloud.CLI.installer.yaml new file mode 100644 index 0000000000000..2b68ebffd4d06 --- /dev/null +++ b/manifests/d/Discloud/CLI/0.12.3/Discloud.CLI.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Discloud.CLI +PackageVersion: 0.12.3 +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/discloud/cli-dart/releases/download/0.12.3/discloud-cli-x64-setup.exe + InstallerSha256: 3D78822AFE3CD8201D7EC9D196007A4A870F4F727DC1B032A706BAA75AC92F18 +- Architecture: arm64 + InstallerUrl: https://github.com/discloud/cli-dart/releases/download/0.12.3/discloud-cli-x64-setup.exe + InstallerSha256: 3D78822AFE3CD8201D7EC9D196007A4A870F4F727DC1B032A706BAA75AC92F18 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-04-12 diff --git a/manifests/d/Discloud/CLI/0.12.3/Discloud.CLI.locale.en-US.yaml b/manifests/d/Discloud/CLI/0.12.3/Discloud.CLI.locale.en-US.yaml new file mode 100644 index 0000000000000..e28a805bdf0a5 --- /dev/null +++ b/manifests/d/Discloud/CLI/0.12.3/Discloud.CLI.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Discloud.CLI +PackageVersion: 0.12.3 +PackageLocale: en-US +Publisher: Discloud +PublisherUrl: https://github.com/discloud +PublisherSupportUrl: https://docs.discloud.com/faq/where-to-get-help +PrivacyUrl: https://github.com/discloud/legal/blob/main/terms-en.md +Author: Discloud +PackageName: Discloud CLI +PackageUrl: https://github.com/discloud/cli-dart +License: Apache 2.0 +LicenseUrl: https://github.com/discloud/cli-dart/blob/main/LICENSE +Copyright: Copyright © 2026 Discloud +ShortDescription: Discloud CLI Setup +Description: A fast option to manage your apps on Discloud. +Moniker: discloudcli +Tags: +- discloudbot +- host +ReleaseNotesUrl: https://github.com/discloud/cli-dart/releases/tag/0.12.3 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discloud/CLI/0.12.3/Discloud.CLI.yaml b/manifests/d/Discloud/CLI/0.12.3/Discloud.CLI.yaml new file mode 100644 index 0000000000000..f97c987bf729f --- /dev/null +++ b/manifests/d/Discloud/CLI/0.12.3/Discloud.CLI.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: Discloud.CLI +PackageVersion: 0.12.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From b62330fe59a5ff10b0d2e42ab7d0e8c4df5e2cd2 Mon Sep 17 00:00:00 2001 From: Remco Date: Sun, 12 Apr 2026 05:47:23 +0200 Subject: [PATCH 38/87] New version: RemcoStoeten.Dora version 0.0.103 (#358448) --- .../0.0.103/RemcoStoeten.Dora.installer.yaml | 16 ++++++++++++++ .../RemcoStoeten.Dora.locale.en-US.yaml | 22 +++++++++++++++++++ .../Dora/0.0.103/RemcoStoeten.Dora.yaml | 8 +++++++ 3 files changed, 46 insertions(+) create mode 100644 manifests/r/RemcoStoeten/Dora/0.0.103/RemcoStoeten.Dora.installer.yaml create mode 100644 manifests/r/RemcoStoeten/Dora/0.0.103/RemcoStoeten.Dora.locale.en-US.yaml create mode 100644 manifests/r/RemcoStoeten/Dora/0.0.103/RemcoStoeten.Dora.yaml diff --git a/manifests/r/RemcoStoeten/Dora/0.0.103/RemcoStoeten.Dora.installer.yaml b/manifests/r/RemcoStoeten/Dora/0.0.103/RemcoStoeten.Dora.installer.yaml new file mode 100644 index 0000000000000..00b7a381fac6a --- /dev/null +++ b/manifests/r/RemcoStoeten/Dora/0.0.103/RemcoStoeten.Dora.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: RemcoStoeten.Dora +PackageVersion: 0.0.103 +InstallerType: msi +Scope: user +UpgradeBehavior: install +ProductCode: '{044760ED-2E06-4101-89EE-8CDF1A919BBD}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/remcostoeten/dora/releases/download/v0.0.103/Dora_0.0.103_x64_en-US.msi + InstallerSha256: 7525957227079731CAC1B1E12F349264BBA97BF9EDE0CE7937124620DBCA5CA2 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-04-12 diff --git a/manifests/r/RemcoStoeten/Dora/0.0.103/RemcoStoeten.Dora.locale.en-US.yaml b/manifests/r/RemcoStoeten/Dora/0.0.103/RemcoStoeten.Dora.locale.en-US.yaml new file mode 100644 index 0000000000000..2a92fc430640a --- /dev/null +++ b/manifests/r/RemcoStoeten/Dora/0.0.103/RemcoStoeten.Dora.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: RemcoStoeten.Dora +PackageVersion: 0.0.103 +PackageLocale: en-US +Publisher: Remco Stoeten +PublisherUrl: https://github.com/remcostoeten/dora +PublisherSupportUrl: https://github.com/remcostoeten/dora/issues +PackageName: Dora +PackageUrl: https://github.com/remcostoeten/dora +License: GPL-3.0-only +LicenseUrl: https://github.com/remcostoeten/dora/blob/master/LICENSE +ShortDescription: Dora is a desktop database studio for PostgreSQL, SQLite, and LibSQL. +Tags: +- database +- postgres +- sqlite +- tauri +ReleaseNotesUrl: https://github.com/remcostoeten/dora/releases/tag/v0.0.103 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RemcoStoeten/Dora/0.0.103/RemcoStoeten.Dora.yaml b/manifests/r/RemcoStoeten/Dora/0.0.103/RemcoStoeten.Dora.yaml new file mode 100644 index 0000000000000..6fe25c6f351ef --- /dev/null +++ b/manifests/r/RemcoStoeten/Dora/0.0.103/RemcoStoeten.Dora.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: RemcoStoeten.Dora +PackageVersion: 0.0.103 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 479133a4301aa2f741ff9d17d604a1663b2b28e1 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 11:48:33 +0800 Subject: [PATCH 39/87] Remove NicolasBonamy.Witsy 2.10.0 to KochavaStudios.Witsy 2.10.0 (#358452) --- .../2.10.0/NicolasBonamy.Witsy.installer.yaml | 21 ------ .../NicolasBonamy.Witsy.locale.en-US.yaml | 66 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 55 ---------------- .../Witsy/2.10.0/NicolasBonamy.Witsy.yaml | 8 --- 4 files changed, 150 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.10.0/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.10.0/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.10.0/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.10.0/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/2.10.0/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/2.10.0/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index e021c7cb150a5..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.10.0/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.10.0 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-07-03 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v2.10.0/Witsy-2.10.0-win32-x64.Setup.exe - InstallerSha256: F10D6348E2E5BA8884EAB710B72697B6350A5793123C65371041AB8F1C5ED425 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.10.0/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/2.10.0/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 01954a85663cc..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.10.0/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,66 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.10.0 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://witsyai.com/ -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: CHANGELOG.md -ReleaseNotesUrl: https://github.com/nbonamy/witsy/releases/tag/v2.10.0 -Documentations: -- DocumentLabel: Help - DocumentUrl: https://witsyai.com/help -- DocumentLabel: FAQ - DocumentUrl: https://witsyai.com/#faq -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.10.0/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/2.10.0/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index f781018ff2f5d..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.10.0/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,55 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.10.0 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -Documentations: -- DocumentLabel: 帮助 - DocumentUrl: https://witsyai.com/help -- DocumentLabel: 常见问题 - DocumentUrl: https://witsyai.com/#faq -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.10.0/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/2.10.0/NicolasBonamy.Witsy.yaml deleted file mode 100644 index 958ceb8e4128b..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.10.0/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.10.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From 067c738615c543856e4542380d17ad861fdd93cf Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 11:49:44 +0800 Subject: [PATCH 40/87] Remove NicolasBonamy.Witsy 2.11.0 to KochavaStudios.Witsy 2.11.0 (#358454) --- .../2.11.0/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 77 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 55 ------------- .../Witsy/2.11.0/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 161 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.11.0/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.11.0/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.11.0/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.11.0/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/2.11.0/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/2.11.0/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 1cbfe563bf549..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.11.0/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.11.0 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-07-07 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v2.11.0/Witsy-2.11.0-win32-x64.Setup.exe - InstallerSha256: 93749692E0BE65F67079CC45F5C8D17DBD97109C804F50AFE69C54B92424744B -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.11.0/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/2.11.0/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 435fd34a7a941..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.11.0/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,77 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.11.0 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://witsyai.com/ -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - Custom HTTP Headers for MCP Streamable - - File upload for transcriptions (with dropzone) - - Summarize/Translate/Run AI command for transcription - - Drag and drop to attach files - Changed - - N/A - Fixed - - N/A - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#2110---2025-07-07 -Documentations: -- DocumentLabel: Help - DocumentUrl: https://witsyai.com/help -- DocumentLabel: FAQ - DocumentUrl: https://witsyai.com/#faq -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.11.0/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/2.11.0/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index 527e2ea747dac..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.11.0/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,55 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.11.0 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -Documentations: -- DocumentLabel: 帮助 - DocumentUrl: https://witsyai.com/help -- DocumentLabel: 常见问题 - DocumentUrl: https://witsyai.com/#faq -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.11.0/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/2.11.0/NicolasBonamy.Witsy.yaml deleted file mode 100644 index 3a3c326396e19..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.11.0/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.11.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From 498c8679e2d4f3847eb72b446b1b94b6fd655bfa Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 11:50:50 +0800 Subject: [PATCH 41/87] Remove NicolasBonamy.Witsy 2.11.1 to KochavaStudios.Witsy 2.11.1 (#358456) --- .../2.11.1/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 76 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 56 -------------- .../Witsy/2.11.1/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 161 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.11.1/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.11.1/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.11.1/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.11.1/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/2.11.1/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/2.11.1/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 0c1e530ad4a69..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.11.1/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.11.1 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-07-14 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v2.11.1/Witsy-2.11.1-win32-x64.Setup.exe - InstallerSha256: C0A06D15162C13515422587935EFA9B185944142BC6058C00639C27B680DABB7 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.11.1/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/2.11.1/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 64d9a5ca64ef2..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.11.1/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,76 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.11.1 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://witsyai.com/ -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - Support for Elevenlabs custom voices (https://github.com/nbonamy/witsy/issues/313) - - MCP Server label (https://github.com/nbonamy/witsy/pull/303) - - Exa native search engine (https://github.com/nbonamy/witsy/issues/310) - Changed - - N/A - Fixed - - MCP Server start when using Nushell (https://github.com/nbonamy/witsy/issues/315) - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#2111---2025-07-14 -Documentations: -- DocumentLabel: Help - DocumentUrl: https://witsyai.com/help -- DocumentLabel: FAQ - DocumentUrl: https://witsyai.com/#faq -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.11.1/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/2.11.1/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index 48287bbfc4cf6..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.11.1/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,56 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.11.1 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -Documentations: -- DocumentLabel: 帮助 - DocumentUrl: https://witsyai.com/help -- DocumentLabel: 常见问题 - DocumentUrl: https://witsyai.com/#faq -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.11.1/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/2.11.1/NicolasBonamy.Witsy.yaml deleted file mode 100644 index f73cf8e4a6856..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.11.1/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.11.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From 64e12fa5348e421ea4db742c728515fef6eeb6e6 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 11:51:57 +0800 Subject: [PATCH 42/87] Remove NicolasBonamy.Witsy 2.11.2 to KochavaStudios.Witsy 2.11.2 (#358458) --- .../2.11.2/NicolasBonamy.Witsy.installer.yaml | 21 ------ .../NicolasBonamy.Witsy.locale.en-US.yaml | 75 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 56 -------------- .../Witsy/2.11.2/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 160 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.11.2/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.11.2/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.11.2/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.11.2/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/2.11.2/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/2.11.2/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 0eec706aa79dc..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.11.2/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.11.2 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-07-14 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v2.11.2/Witsy-2.11.2-win32-x64.Setup.exe - InstallerSha256: 55373806BE9712BA91607C899F27F8D153E8AA6496F2CE2AAE2A74FEDE208234 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.11.2/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/2.11.2/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 082213ea3427d..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.11.2/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,75 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.11.2 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://witsyai.com/ -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - N/A - Changed - - N/A - Fixed - - xAI function calling (https://github.com/nbonamy/witsy/issues/317) - - Settings Commands and Experts display issue - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#2112---wip -Documentations: -- DocumentLabel: Help - DocumentUrl: https://witsyai.com/help -- DocumentLabel: FAQ - DocumentUrl: https://witsyai.com/#faq -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.11.2/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/2.11.2/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index a0c1f68f34bb2..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.11.2/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,56 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.11.2 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -Documentations: -- DocumentLabel: 帮助 - DocumentUrl: https://witsyai.com/help -- DocumentLabel: 常见问题 - DocumentUrl: https://witsyai.com/#faq -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.11.2/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/2.11.2/NicolasBonamy.Witsy.yaml deleted file mode 100644 index d6c0a7163cbb8..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.11.2/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.11.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From ea9c400fe5897ca3296b297d0e843c70d5fb6ea0 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 11:52:58 +0800 Subject: [PATCH 43/87] Remove NicolasBonamy.Witsy 2.12.0 to KochavaStudios.Witsy 2.12.0 (#358460) --- .../2.12.0/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 85 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 56 ------------ .../Witsy/2.12.0/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 170 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.0/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.0/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.0/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.0/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.0/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.0/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 56f257cf2500e..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.0/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.0 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-07-21 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v2.12.0/Witsy-2.12.0-win32-x64.Setup.exe - InstallerSha256: F1BE2786E89562D889ECFC26674073BBA588DB2C8BBD8E895C624CA0BB18A3CB -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.0/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.0/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 35791ba91d56e..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.0/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,85 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.0 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://witsyai.com/ -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - Add, Edit & Delete System Prompts (https://github.com/nbonamy/witsy/issues/308) - - Backup/Restore of data and settings - - Onboarding experience - - Japanese localization (https://github.com/nbonamy/witsy/pull/326) - - Design Studio image drop and image paste - - Design Studio prompt library - Changed - - Document Repository UI update - Fixed - - Design Studio History label overflow fix - - Duplicated models (https://github.com/nbonamy/witsy/issues/331) - - Ctrl+Shift+C does not copy transcript and close transcript window (https://github.com/nbonamy/witsy/issues/336) - - Error when using Eleven Labs for Transcription (https://github.com/nbonamy/witsy/issues/335) - - Wrong position of delete shortcut buttons at shortcut settings (https://github.com/nbonamy/witsy/issues/334) - - Mermaid chart fixes and improvements (https://github.com/nbonamy/witsy/issues/333) - - Google image generation - Removed - - Google image edit (not supported by Google API) -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#2120---2025-07-20 -Documentations: -- DocumentLabel: Help - DocumentUrl: https://witsyai.com/help -- DocumentLabel: FAQ - DocumentUrl: https://witsyai.com/#faq -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.0/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.0/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index d905db07483c9..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.0/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,56 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.0 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -Documentations: -- DocumentLabel: 帮助 - DocumentUrl: https://witsyai.com/help -- DocumentLabel: 常见问题 - DocumentUrl: https://witsyai.com/#faq -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.0/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.0/NicolasBonamy.Witsy.yaml deleted file mode 100644 index e8b50c4b38fce..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.0/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From c6b7625d7939f7ecb758a7013641c990601fd929 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 11:54:16 +0800 Subject: [PATCH 44/87] Remove NicolasBonamy.Witsy 2.12.1 to KochavaStudios.Witsy 2.12.1 (#358462) --- .../2.12.1/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 78 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 56 ------------- .../Witsy/2.12.1/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 163 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.1/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.1/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.1/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.1/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.1/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.1/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 83b84ab1bd2e5..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.1/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.1 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-07-24 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v2.12.1/Witsy-2.12.1-win32-x64.Setup.exe - InstallerSha256: 4D293A7F764818883A6D0450BD2F56AE75FCE76F04727044CB6DF38AC544D812 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.1/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.1/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 28a5d0798ef31..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.1/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,78 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.1 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://witsyai.com/ -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - Google video creation - - Mistral Voxtral STT models support (@ljbred08) - - Support for New Gemini Embedding model (https://github.com/nbonamy/witsy/issues/322) - Changed - - N/A - Fixed - - xAI image generation - - STT/Whisper: "language" parameter should not be sent (https://github.com/nbonamy/witsy/issues/340) - - Gladia STT: Maximum Call stack size exceeded (https://github.com/nbonamy/witsy/issues/341) - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#2121---2025-07-23 -Documentations: -- DocumentLabel: Help - DocumentUrl: https://witsyai.com/help -- DocumentLabel: FAQ - DocumentUrl: https://witsyai.com/#faq -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.1/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.1/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index c3c43b3d1a177..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.1/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,56 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.1 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -Documentations: -- DocumentLabel: 帮助 - DocumentUrl: https://witsyai.com/help -- DocumentLabel: 常见问题 - DocumentUrl: https://witsyai.com/#faq -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.1/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.1/NicolasBonamy.Witsy.yaml deleted file mode 100644 index cb7b25c07148f..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.1/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From 121061de0a9b10fbe093bf9ecc85c565121b4b81 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 11:55:41 +0800 Subject: [PATCH 45/87] Remove NicolasBonamy.Witsy 2.12.2 to KochavaStudios.Witsy 2.12.2 (#358464) --- .../2.12.2/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 78 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 56 ------------- .../Witsy/2.12.2/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 163 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.2/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.2/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.2/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.2/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.2/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.2/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 61e39aa929d95..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.2/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.2 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-07-28 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v2.12.2/Witsy-2.12.2-win32-x64.Setup.exe - InstallerSha256: 74EBAAF0913BF5D4F185E349CB69A0F0A0C158171F5CC83E22AFFD8B25014A01 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.2/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.2/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 76bb01209d954..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.2/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,78 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.2 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://witsyai.com/ -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - Tooltips (https://github.com/nbonamy/witsy/discussions/344) - - OpenAI responses API integration (https://github.com/nbonamy/witsy/issues/338) - - Allow specifying allowed providers for OpenRouter (https://github.com/nbonamy/witsy/issues/350) - - Soniox STT (https://github.com/nbonamy/witsy/pull/353) - Changed - - Specific models to create chat title - - Allow empty prompts with attachments (https://github.com/nbonamy/witsy/pull/351) - Fixed - - Create / edit commands : cannot create new line (https://github.com/nbonamy/witsy/issues/348) - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#2122---2025-07-27 -Documentations: -- DocumentLabel: Help - DocumentUrl: https://witsyai.com/help -- DocumentLabel: FAQ - DocumentUrl: https://witsyai.com/#faq -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.2/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.2/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index 6489b9941ea43..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.2/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,56 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.2 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -Documentations: -- DocumentLabel: 帮助 - DocumentUrl: https://witsyai.com/help -- DocumentLabel: 常见问题 - DocumentUrl: https://witsyai.com/#faq -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.2/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.2/NicolasBonamy.Witsy.yaml deleted file mode 100644 index f742f38f65991..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.2/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From 8b74e62810290ae0046ae3cd6b7b0d693725e94e Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 11:56:50 +0800 Subject: [PATCH 46/87] Remove NicolasBonamy.Witsy 2.12.3 to KochavaStudios.Witsy 2.12.3 (#358466) --- .../2.12.3/NicolasBonamy.Witsy.installer.yaml | 21 ------ .../NicolasBonamy.Witsy.locale.en-US.yaml | 74 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 56 -------------- .../Witsy/2.12.3/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 159 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.3/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.3/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.3/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.3/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.3/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.3/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index b6295fc9fe13d..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.3/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.3 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-07-28 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v2.12.3/Witsy-2.12.3-win32-x64.Setup.exe - InstallerSha256: 1ADC51FED3C5EF36A08420CD9BC3B9C6346C70780E915CCF7BB098F1D3DD062A -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.3/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.3/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 18c8d8980723c..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.3/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,74 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.3 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://witsyai.com/ -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - N/A - Changed - - N/A - Fixed - - N/A - Removed - - Soniox STT support (https://github.com/nbonamy/witsy/issues/355) -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#2123---2025-07-28 -Documentations: -- DocumentLabel: Help - DocumentUrl: https://witsyai.com/help -- DocumentLabel: FAQ - DocumentUrl: https://witsyai.com/#faq -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.3/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.3/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index 2a203fbeb5a0b..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.3/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,56 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.3 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -Documentations: -- DocumentLabel: 帮助 - DocumentUrl: https://witsyai.com/help -- DocumentLabel: 常见问题 - DocumentUrl: https://witsyai.com/#faq -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.3/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.3/NicolasBonamy.Witsy.yaml deleted file mode 100644 index e4530a0944609..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.3/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From b9df79e3a67b812a273ee9bc484b8426930ca71b Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 11:57:54 +0800 Subject: [PATCH 47/87] Remove NicolasBonamy.Witsy 2.12.4 to KochavaStudios.Witsy 2.12.4 (#358468) --- .../2.12.4/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 76 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 56 -------------- .../Witsy/2.12.4/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 161 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.4/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.4/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.4/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.4/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.4/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.4/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index b019c470a9548..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.4/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.4 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-08-01 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v2.12.4/Witsy-2.12.4-win32-x64.Setup.exe - InstallerSha256: 2CCB259E1A75039DDFADDC945EB929C0BEA53BD689EC5AC0906409A5B4330C03 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.4/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.4/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 6ac78dbf34607..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.4/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,76 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.4 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://witsyai.com/ -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - On macOS, Cmd-N should start a new chat (https://github.com/nbonamy/witsy/issues/363) - Changed - - N/A - Fixed - - Dialogs in settings can be cut-off (https://github.com/nbonamy/witsy/issues/359) - - Checkboxes always look checked in dark mode (https://github.com/nbonamy/witsy/issues/361) - - Plugins that are disabled in app settings, are still available and enabled in chat settings (https://github.com/nbonamy/witsy/issues/362) - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#2124---2025-07-31 -Documentations: -- DocumentLabel: Help - DocumentUrl: https://witsyai.com/help -- DocumentLabel: FAQ - DocumentUrl: https://witsyai.com/#faq -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.4/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.4/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index e9ff93a014216..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.4/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,56 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.4 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -Documentations: -- DocumentLabel: 帮助 - DocumentUrl: https://witsyai.com/help -- DocumentLabel: 常见问题 - DocumentUrl: https://witsyai.com/#faq -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.4/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.4/NicolasBonamy.Witsy.yaml deleted file mode 100644 index aecf4c109bd36..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.4/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.4 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From d42fe5a065e1d28986cba742d871a51773217f6e Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 11:59:05 +0800 Subject: [PATCH 48/87] Remove NicolasBonamy.Witsy 2.12.5 to KochavaStudios.Witsy 2.12.5 (#358470) --- .../2.12.5/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 79 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 56 ------------- .../Witsy/2.12.5/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 164 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.5/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.5/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.5/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.5/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.5/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.5/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 8591cf0ecbf25..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.5/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.5 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-08-06 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v2.12.5/Witsy-2.12.5-win32-x64.Setup.exe - InstallerSha256: 10A563A0FBC4C98861B530B9624E28F1F2DF43E4A992F268D441734D641A84A4 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.5/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.5/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 711450be9666c..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.5/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,79 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.5 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://witsyai.com/ -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - ChatGPT History Import (https://github.com/nbonamy/witsy/issues/378) - Changed - - N/A - Fixed - - API key field for a new provider should start out empty (https://github.com/nbonamy/witsy/issues/368) - - OpenAI responses API integration (https://github.com/nbonamy/witsy/issues/338) - - Deleted experts are still used when called from specific applications (https://github.com/nbonamy/witsy/issues/375) - - Refresh of Gemini embedding model in Embedding selector (https://github.com/nbonamy/witsy/issues/374) - - Using “provider order” breaks OpenRouter (https://github.com/nbonamy/witsy/issues/372) - - Deep Research mode tries to download a PDF instead of reading it (https://github.com/nbonamy/witsy/issues/371) - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#2125-2126---2025-08-06 -Documentations: -- DocumentLabel: Help - DocumentUrl: https://witsyai.com/help -- DocumentLabel: FAQ - DocumentUrl: https://witsyai.com/#faq -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.5/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.5/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index cd9f9616b7793..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.5/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,56 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.5 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -Documentations: -- DocumentLabel: 帮助 - DocumentUrl: https://witsyai.com/help -- DocumentLabel: 常见问题 - DocumentUrl: https://witsyai.com/#faq -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.5/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.5/NicolasBonamy.Witsy.yaml deleted file mode 100644 index c1bf7229c4c63..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.5/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.5 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From 359da9deb8574737fb29b3e530aa3b2189f7027e Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:00:19 +0800 Subject: [PATCH 49/87] Remove NicolasBonamy.Witsy 2.12.6 to KochavaStudios.Witsy 2.12.6 (#358472) --- .../2.12.6/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 79 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 56 ------------- .../Witsy/2.12.6/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 164 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.6/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.6/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.6/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.12.6/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.6/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.6/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 1da6dd52cf519..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.6/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.6 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-08-06 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v2.12.6/Witsy-2.12.6-win32-x64.Setup.exe - InstallerSha256: 17ECD94933C130C5C9451DD3FF3FDA97689405D878644B0FDC07FCFA0880843D -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.6/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.6/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 5302f4c64dc4e..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.6/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,79 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.6 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://witsyai.com/ -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - ChatGPT History Import (https://github.com/nbonamy/witsy/issues/378) - Changed - - N/A - Fixed - - API key field for a new provider should start out empty (https://github.com/nbonamy/witsy/issues/368) - - OpenAI responses API integration (https://github.com/nbonamy/witsy/issues/338) - - Deleted experts are still used when called from specific applications (https://github.com/nbonamy/witsy/issues/375) - - Refresh of Gemini embedding model in Embedding selector (https://github.com/nbonamy/witsy/issues/374) - - Using “provider order” breaks OpenRouter (https://github.com/nbonamy/witsy/issues/372) - - Deep Research mode tries to download a PDF instead of reading it (https://github.com/nbonamy/witsy/issues/371) - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#2125-2126---2025-08-06 -Documentations: -- DocumentLabel: Help - DocumentUrl: https://witsyai.com/help -- DocumentLabel: FAQ - DocumentUrl: https://witsyai.com/#faq -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.6/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.6/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index cc5236be73109..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.6/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,56 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.6 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -Documentations: -- DocumentLabel: 帮助 - DocumentUrl: https://witsyai.com/help -- DocumentLabel: 常见问题 - DocumentUrl: https://witsyai.com/#faq -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.12.6/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/2.12.6/NicolasBonamy.Witsy.yaml deleted file mode 100644 index 55742cea21fa4..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.12.6/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.12.6 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From 708f56779540bc59a4c0319828ddbff51e5dd3cb Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:01:28 +0800 Subject: [PATCH 50/87] Remove NicolasBonamy.Witsy 2.13.0 to KochavaStudios.Witsy 2.13.0 (#358474) --- .../2.13.0/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 77 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 56 -------------- .../Witsy/2.13.0/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 162 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.13.0/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.13.0/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.13.0/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.13.0/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/2.13.0/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/2.13.0/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 7823c59901f9b..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.13.0/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.13.0 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-08-09 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v2.13.0/Witsy-2.13.0-win32-x64.Setup.exe - InstallerSha256: 66DD980EF00F725FD2ED3E0A981FEF9146AD11D734CDB10BCE867CD2E0042ED2 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.13.0/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/2.13.0/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 0064cca0a5691..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.13.0/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,77 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.13.0 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://witsyai.com/ -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - This release introduces agents in Witsy! When Deep Research was relesed, it was built on top of an agent creation and execution framework that was not exposed through Witsy UI. This is now fixed. Head-over to the Create you own agents tutorial to learn how to create multi-step workflow agents and have agents delegate tasks to other agents! - Added - - Create you own agents - - Document Repository file change monitoring (https://github.com/nbonamy/witsy/discussions/304) - - OpenAI GPT-5 model support (vision flag, verbosity) (https://github.com/nbonamy/witsy/issues/379) - Changed - - N/A - Fixed - - N/A - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#2130---2025-08-08 -Documentations: -- DocumentLabel: Help - DocumentUrl: https://witsyai.com/help -- DocumentLabel: FAQ - DocumentUrl: https://witsyai.com/#faq -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.13.0/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/2.13.0/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index 267f24170e670..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.13.0/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,56 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.13.0 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -Documentations: -- DocumentLabel: 帮助 - DocumentUrl: https://witsyai.com/help -- DocumentLabel: 常见问题 - DocumentUrl: https://witsyai.com/#faq -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.13.0/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/2.13.0/NicolasBonamy.Witsy.yaml deleted file mode 100644 index d8785847aa6f1..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.13.0/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.13.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From 7f612c2e82e56c38c1e1248731de14285f03d927 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:02:46 +0800 Subject: [PATCH 51/87] Remove NicolasBonamy.Witsy 2.13.1 to KochavaStudios.Witsy 2.13.1 (#358476) --- .../2.13.1/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 79 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 56 ------------- .../Witsy/2.13.1/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 164 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.13.1/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.13.1/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.13.1/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.13.1/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/2.13.1/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/2.13.1/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 28f46cb1352f2..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.13.1/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.13.1 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-08-13 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v2.13.1/Witsy-2.13.1-win32-x64.Setup.exe - InstallerSha256: 448095E0B7084DB3176403DD96DDB9BB1FE3B7149FC743686428194772993B47 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.13.1/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/2.13.1/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 83a4dd55ac7ee..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.13.1/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,79 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.13.1 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://witsyai.com/ -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - Artifacts instructions option with specific display mode - - Show the model that was used for each response (https://github.com/nbonamy/witsy/issues/387) - - Add Support for Advanced Model Parameters like 'Thinking Mode' and 'Thinking Budget' for Gemini (https://github.com/nbonamy/witsy/issues/385) - Changed - - Soniox Real Time and Async Pull Request (https://github.com/nbonamy/witsy/pull/384) - Fixed - - Mistral vision does not work (https://github.com/nbonamy/witsy/issues/382) - - PDF webpage content not extracted )https://github.com/nbonamy/witsy/issues/383) - - Add a copy button for the user part of the conversation too (https://github.com/nbonamy/witsy/issues/388) - - Hover selection highlight is smooshed, not centered (https://github.com/nbonamy/witsy/issues/390) - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#2131---wip -Documentations: -- DocumentLabel: Help - DocumentUrl: https://witsyai.com/help -- DocumentLabel: FAQ - DocumentUrl: https://witsyai.com/#faq -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.13.1/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/2.13.1/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index bdacbd02d9cab..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.13.1/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,56 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.13.1 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -Documentations: -- DocumentLabel: 帮助 - DocumentUrl: https://witsyai.com/help -- DocumentLabel: 常见问题 - DocumentUrl: https://witsyai.com/#faq -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.13.1/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/2.13.1/NicolasBonamy.Witsy.yaml deleted file mode 100644 index c6cee297780a4..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.13.1/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.13.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From 8611951704e81c000a49c3ce8438e42572579ead Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:03:54 +0800 Subject: [PATCH 52/87] Remove NicolasBonamy.Witsy 2.13.2 to KochavaStudios.Witsy 2.13.2 (#358479) --- .../2.13.2/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 79 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 56 ------------- .../Witsy/2.13.2/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 164 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.13.2/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.13.2/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.13.2/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.13.2/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/2.13.2/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/2.13.2/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 5d4859d18a96b..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.13.2/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.13.2 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-08-23 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v2.13.2/Witsy-2.13.2-win32-x64.Setup.exe - InstallerSha256: 29D153420003E424B3FE9DB7710B2CAF19E8B58C2DB4A7EC35BC7EED68A3A3DA -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.13.2/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/2.13.2/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 8e8cc6cbde72e..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.13.2/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,79 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.13.2 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://witsyai.com/ -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - Add Support for Anthropic's 'thinking.budget_tokens' Parameter (https://github.com/nbonamy/witsy/issues/392) - - MCP OAuth support (https://github.com/nbonamy/witsy/issues/398) - - Preserve markdown when using copy (https://github.com/nbonamy/witsy/issues/400) - - Improve the date/time value that is passed in system instructions (https://github.com/nbonamy/witsy/issues/401) - - Add timestamps to the debug console (https://github.com/nbonamy/witsy/issues/402) - Changed - - Agentic handling of MCP errors (https://github.com/nbonamy/witsy/issues/366) - Fixed - - Expert name display in chat - - Multiple artifacts display fix, partial artifacts display fix - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#2132---2025-08-22 -Documentations: -- DocumentLabel: Help - DocumentUrl: https://witsyai.com/help -- DocumentLabel: FAQ - DocumentUrl: https://witsyai.com/#faq -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.13.2/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/2.13.2/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index 7c4183715de34..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.13.2/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,56 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.13.2 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -Documentations: -- DocumentLabel: 帮助 - DocumentUrl: https://witsyai.com/help -- DocumentLabel: 常见问题 - DocumentUrl: https://witsyai.com/#faq -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.13.2/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/2.13.2/NicolasBonamy.Witsy.yaml deleted file mode 100644 index a490eefc5de07..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.13.2/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.13.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From cb005d73f885b6288bf717509ed33c58c61b2960 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:05:11 +0800 Subject: [PATCH 53/87] Remove NicolasBonamy.Witsy 2.14.0 to KochavaStudios.Witsy 2.14.0 (#358481) --- .../2.14.0/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 77 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 51 ------------ .../Witsy/2.14.0/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 157 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.14.0/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.14.0/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.14.0/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.14.0/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/2.14.0/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/2.14.0/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index f49e0ec10d473..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.14.0/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.14.0 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-09-01 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v2.14.0/Witsy-2.14.0-win32-x64.Setup.exe - InstallerSha256: E4DBD8486D5E31A8DFE4A0A71DD80CE0B1615DCAEBAB566A3743CC735939B3E0 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.14.0/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/2.14.0/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 4449dac98c185..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.14.0/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,77 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.14.0 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://github.com/nbonamy/witsy -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - HTML Artifacts preview - - Artifacts download formats (text, markdown, html, pdf) - - Add Deep Research title generation feature - - Nano Banana Support - Changed - - Support for secure api storage (https://github.com/nbonamy/witsy/issues/407) - Fixed - - Design Studio: regional parameter error (personGeneration.allow_all) (https://github.com/nbonamy/witsy/issues/404) - - Google Models deduplication (trying to work around https://github.com/googleapis/js-genai/issues/803) - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#2140---2025-08-31 -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://github.com/nbonamy/witsy/wiki -ManifestType: defaultLocale -ManifestVersion: 1.10.0 - diff --git a/manifests/n/NicolasBonamy/Witsy/2.14.0/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/2.14.0/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index d3177c00a22ab..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.14.0/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,51 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.14.0 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ManifestType: locale -ManifestVersion: 1.10.0 - diff --git a/manifests/n/NicolasBonamy/Witsy/2.14.0/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/2.14.0/NicolasBonamy.Witsy.yaml deleted file mode 100644 index c7ac1bf9e4eba..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.14.0/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.14.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From a9674045c27fdc5ff000c594673bc94cb6a0bf03 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:06:18 +0800 Subject: [PATCH 54/87] Remove NicolasBonamy.Witsy 2.8.2 to KochavaStudios.Witsy 2.8.2 (#358483) --- .../2.8.2/NicolasBonamy.Witsy.installer.yaml | 21 ------ .../NicolasBonamy.Witsy.locale.en-US.yaml | 71 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 71 ------------------- .../Witsy/2.8.2/NicolasBonamy.Witsy.yaml | 8 --- 4 files changed, 171 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.8.2/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.8.2/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.8.2/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.8.2/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/2.8.2/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/2.8.2/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 7b5760e5fd2d1..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.8.2/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.8.2 -InstallerType: exe # Squirrel -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-06-14 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v2.8.2/Witsy-2.8.2-win32-x64.Setup.exe - InstallerSha256: 135962EDC9E261CDCF261FD7B7354ED658F8D579DEB63D3862D6159696D115B1 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.8.2/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/2.8.2/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 7b7869eabc6a2..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.8.2/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,71 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.8.2 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -# PrivacyUrl: -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://witsyai.com/ -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -# CopyrightUrl: -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -# Moniker: -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: 'Full Changelog: https://github.com/nbonamy/witsy/compare/v2.8.1...v2.8.2' -ReleaseNotesUrl: https://github.com/nbonamy/witsy/releases/tag/v2.8.2 -# PurchaseUrl: -# InstallationNotes: -Documentations: -- DocumentLabel: Help - DocumentUrl: https://witsyai.com/help -- DocumentLabel: FAQ - DocumentUrl: https://witsyai.com/#faq -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.8.2/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/2.8.2/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index 34f6da82e5e60..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.8.2/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,71 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.8.2 -PackageLocale: zh-CN -# Publisher: -# PublisherUrl: -# PublisherSupportUrl: -# PrivacyUrl: -# Author: -# PackageName: -# PackageUrl: -# License: -# LicenseUrl: -# Copyright: -# CopyrightUrl: -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -# Moniker: -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -Documentations: -- DocumentLabel: 帮助 - DocumentUrl: https://witsyai.com/help -- DocumentLabel: 常见问题 - DocumentUrl: https://witsyai.com/#faq -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.8.2/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/2.8.2/NicolasBonamy.Witsy.yaml deleted file mode 100644 index 48b50627d2ecb..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.8.2/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-1.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.8.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From 65b64f4b787e9ed36aa8aee99d9238bcdbc982a0 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:07:37 +0800 Subject: [PATCH 55/87] Remove NicolasBonamy.Witsy 2.9.0 to KochavaStudios.Witsy 2.9.0 (#358485) --- .../2.9.0/NicolasBonamy.Witsy.installer.yaml | 21 ------ .../NicolasBonamy.Witsy.locale.en-US.yaml | 66 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 55 ---------------- .../Witsy/2.9.0/NicolasBonamy.Witsy.yaml | 8 --- 4 files changed, 150 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.9.0/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.9.0/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.9.0/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.9.0/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/2.9.0/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/2.9.0/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 5b9053c1a9086..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.9.0/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.9.0 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-06-23 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v2.9.0/Witsy-2.9.0-win32-x64.Setup.exe - InstallerSha256: 32321DB9A3D1CFB35796791B3DE72A76B838635BE5B2F1ADEEA8DF0C8699AF80 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.9.0/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/2.9.0/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 3fbce7edf5893..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.9.0/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,66 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.9.0 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://witsyai.com/ -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: 'Full Changelog: https://github.com/nbonamy/witsy/compare/v2.8.2...v2.9.0' -ReleaseNotesUrl: https://github.com/nbonamy/witsy/releases/tag/v2.9.0 -Documentations: -- DocumentLabel: Help - DocumentUrl: https://witsyai.com/help -- DocumentLabel: FAQ - DocumentUrl: https://witsyai.com/#faq -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.9.0/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/2.9.0/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index bfe06e244d296..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.9.0/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,55 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.9.0 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -Documentations: -- DocumentLabel: 帮助 - DocumentUrl: https://witsyai.com/help -- DocumentLabel: 常见问题 - DocumentUrl: https://witsyai.com/#faq -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.9.0/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/2.9.0/NicolasBonamy.Witsy.yaml deleted file mode 100644 index e845ff5a2ae80..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.9.0/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.9.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From f865c29dbe5df7e22100cc5893c8488f4a0f7e9b Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:08:46 +0800 Subject: [PATCH 56/87] Remove NicolasBonamy.Witsy 2.9.1 to KochavaStudios.Witsy 2.9.1 (#358487) --- .../2.9.1/NicolasBonamy.Witsy.installer.yaml | 21 ------ .../NicolasBonamy.Witsy.locale.en-US.yaml | 66 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 55 ---------------- .../Witsy/2.9.1/NicolasBonamy.Witsy.yaml | 8 --- 4 files changed, 150 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.9.1/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.9.1/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.9.1/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/2.9.1/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/2.9.1/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/2.9.1/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 4c5cedcdd9776..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.9.1/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.9.1 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-06-28 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v2.9.1/Witsy-2.9.1-win32-x64.Setup.exe - InstallerSha256: D53B4F38276323DF1B5BCD184D106CE946D8C4CE47D381BCC18EC7273FA9776E -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.9.1/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/2.9.1/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index e12bb4f571bc5..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.9.1/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,66 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.9.1 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://witsyai.com/ -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: 'Full Changelog: https://github.com/nbonamy/witsy/compare/v2.9.0...v2.9.1' -ReleaseNotesUrl: https://github.com/nbonamy/witsy/releases/tag/v2.9.1 -Documentations: -- DocumentLabel: Help - DocumentUrl: https://witsyai.com/help -- DocumentLabel: FAQ - DocumentUrl: https://witsyai.com/#faq -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.9.1/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/2.9.1/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index 24782e3b38e23..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.9.1/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,55 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.9.1 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -Documentations: -- DocumentLabel: 帮助 - DocumentUrl: https://witsyai.com/help -- DocumentLabel: 常见问题 - DocumentUrl: https://witsyai.com/#faq -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/2.9.1/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/2.9.1/NicolasBonamy.Witsy.yaml deleted file mode 100644 index fde9689e40bd2..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/2.9.1/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 2.9.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From abeb68c0ac0d73c98c15eaf328ad32bb5d76a682 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:09:51 +0800 Subject: [PATCH 57/87] Remove NicolasBonamy.Witsy 3.0.2 to KochavaStudios.Witsy 3.0.2 (#358489) --- .../3.0.2/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 76 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 51 ------------- .../Witsy/3.0.2/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 156 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.0.2/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.0.2/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.0.2/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.0.2/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/3.0.2/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/3.0.2/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 623573d262f2a..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.0.2/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.0.2 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-10-14 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v3.0.2/Witsy-3.0.2-win32-x64.Setup.exe - InstallerSha256: F570AD93349C4E1B2D02A20E34D91A5FB5205DA39249121CC6A74EDDBA107763 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.0.2/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/3.0.2/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index abac7f91a64b7..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.0.2/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,76 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.0.2 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://github.com/nbonamy/witsy -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - Improved chat and agent abort capability - - Helpful message when search fails - - Groq and Cerebras reasoning - Changed - - Major refactoring of agent system (executor, runner, a2a communication) - - New DeepResearch execution model - - Context Menu position calculation - Fixed - - N/A - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#302---wip -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://github.com/nbonamy/witsy/wiki -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.0.2/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/3.0.2/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index f908a23cb1877..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.0.2/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,51 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.0.2 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.0.2/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/3.0.2/NicolasBonamy.Witsy.yaml deleted file mode 100644 index 766cbebd3a22c..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.0.2/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.0.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From b1371b123a9650564a4f7673ff0d14340791ff09 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:10:59 +0800 Subject: [PATCH 58/87] Remove NicolasBonamy.Witsy 3.0.3 to KochavaStudios.Witsy 3.0.3 (#358491) --- .../3.0.3/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 76 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 51 ------------- .../Witsy/3.0.3/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 156 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.0.3/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.0.3/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.0.3/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.0.3/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/3.0.3/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/3.0.3/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 9b36c2aabeda4..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.0.3/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.0.3 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-10-18 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v3.0.3/Witsy-3.0.3-win32-x64.Setup.exe - InstallerSha256: A61A83412C705F2C89935B391868D3508871403F8D5475501D6CDCEAF576C3A0 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.0.3/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/3.0.3/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 9fb42d387dcfb..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.0.3/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,76 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.0.3 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://github.com/nbonamy/witsy -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - Auth for MCP SSE servers (https://github.com/nbonamy/witsy/issues/442) - - Custom OpenAI-compatible TTS Endpoints (https://github.com/nbonamy/witsy/issues/449) - Changed - - Agent run view redesign - - Update to new Fireworks Realtime (https://github.com/nbonamy/witsy/issues/446) - Fixed - - MCP List Doesn't Scroll when number of servers exceeds page length (https://github.com/nbonamy/witsy/issues/448) - - Agent Forge not working (https://github.com/nbonamy/witsy/issues/452) - - Whisper STT error message - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#303---2025-10-18 -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://github.com/nbonamy/witsy/wiki -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.0.3/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/3.0.3/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index 70d5fb7c71f5b..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.0.3/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,51 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.0.3 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.0.3/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/3.0.3/NicolasBonamy.Witsy.yaml deleted file mode 100644 index c11b059a9be63..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.0.3/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.0.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From 7ea51cc7e4b365928fdd5985c9c5dfc4709857db Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:12:06 +0800 Subject: [PATCH 59/87] Remove NicolasBonamy.Witsy 3.0.4 to KochavaStudios.Witsy 3.0.4 (#358493) --- .../3.0.4/NicolasBonamy.Witsy.installer.yaml | 21 ------ .../NicolasBonamy.Witsy.locale.en-US.yaml | 73 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 51 ------------- .../Witsy/3.0.4/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 153 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.0.4/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.0.4/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.0.4/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.0.4/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/3.0.4/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/3.0.4/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 9be2de4fa7608..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.0.4/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.0.4 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-10-24 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v3.0.4/Witsy-3.0.4-win32-x64.Setup.exe - InstallerSha256: D5B890F66B4E03EB714DFDA804E7E413272051EBD6CAF4C768EB131C5A396F10 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.0.4/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/3.0.4/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 994f0ceb79c4d..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.0.4/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,73 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.0.4 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://github.com/nbonamy/witsy -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - Knowledge plugin to automatically connect knowledge base connections (https://github.com/nbonamy/witsy/issues/450) - - Set folder default settings dialog (https://github.com/nbonamy/witsy/issues/454) - Changed - - N/A - Fixed - - Prompt menu not showing in some languages (https://github.com/nbonamy/witsy/issues/455) - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#304---wip -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://github.com/nbonamy/witsy/wiki -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.0.4/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/3.0.4/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index 158e784792afb..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.0.4/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,51 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.0.4 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.0.4/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/3.0.4/NicolasBonamy.Witsy.yaml deleted file mode 100644 index 5d010c7101425..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.0.4/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.0.4 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From ce2ce5d3ab0b7951e9284dbe574e660091bb8303 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:13:15 +0800 Subject: [PATCH 60/87] Remove NicolasBonamy.Witsy 3.1.0 to KochavaStudios.Witsy 3.1.0 (#358495) --- .../3.1.0/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 86 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 51 ----------- .../Witsy/3.1.0/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 166 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.1.0/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.1.0/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.1.0/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.1.0/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/3.1.0/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/3.1.0/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index fd7dfebd53d3f..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.1.0/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.1.0 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-11-02 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v3.1.0/Witsy-3.1.0-win32-x64.Setup.exe - InstallerSha256: D88F470BDB79445647B0D087FB6379F291141D5E253F426D5C7512057E559AF6 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.1.0/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/3.1.0/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index c1bbd2d16daad..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.1.0/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,86 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.1.0 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://github.com/nbonamy/witsy -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - Experts categories - - Sandboxed python runtime - - Duplicate agent - - Experts attached to agent step - - Import Markdown back into conversations (https://github.com/nbonamy/witsy/issues/469) - - MiniMax Text-to-Speech API (https://github.com/nbonamy/witsy/issues/461) - Changed - - Wider engine/model menu (https://github.com/nbonamy/witsy/issues/463) - - Download button for text mangles python export (https://github.com/nbonamy/witsy/issues/468) - - Update to Soniox v3 endpoint (https://github.com/nbonamy/witsy/pull/457) - - Filesystem plugin rewrite - - More LLM provider error reporting - - Menu refactor - Fixed - - Chat color with dark mode (https://github.com/nbonamy/witsy/issues/464) - - Ollama Chain of Thought / Reasoning in Prompt (https://github.com/nbonamy/witsy/issues/467) - - Knowledge Base is not shown / can´t be chosen in some languages (https://github.com/nbonamy/witsy/issues/474) - - Tool calls not showing on main chat when not streaming (https://github.com/nbonamy/witsy/issues/451) - - Trailing underscore sometimes appearing on messages - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#310---wip -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://github.com/nbonamy/witsy/wiki -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.1.0/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/3.1.0/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index dc85286d7a117..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.1.0/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,51 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.1.0 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.1.0/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/3.1.0/NicolasBonamy.Witsy.yaml deleted file mode 100644 index cdd77564a9d84..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.1.0/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.1.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From 82e7f09abe338d9ef13a4d72ec75760e3c67be19 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:14:35 +0800 Subject: [PATCH 61/87] Remove NicolasBonamy.Witsy 3.1.1 to KochavaStudios.Witsy 3.1.1 (#358497) --- .../3.1.1/NicolasBonamy.Witsy.installer.yaml | 21 ------ .../NicolasBonamy.Witsy.locale.en-US.yaml | 73 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 51 ------------- .../Witsy/3.1.1/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 153 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.1.1/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.1.1/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.1.1/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.1.1/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/3.1.1/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/3.1.1/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 3ffaefed9e75c..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.1.1/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.1.1 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-11-06 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v3.1.1/Witsy-3.1.1-win32-x64.Setup.exe - InstallerSha256: 548EC1AEDE6F8B7DFDDFE9958A4AAA26A5F496D7B1F20D73B088F8D01051A1EC -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.1.1/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/3.1.1/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 86f1c3d312084..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.1.1/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,73 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.1.1 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://github.com/nbonamy/witsy -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - Easy QoL: right-click context menu to copy/paste in messages chat field (https://github.com/nbonamy/witsy/issues/480) - Changed - - N/A - Fixed - - Cannot Add New Experts (https://github.com/nbonamy/witsy/issues/477) - - Minimax implementation fix (https://github.com/nbonamy/witsy/issues/478) - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#311---wip -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://github.com/nbonamy/witsy/wiki -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.1.1/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/3.1.1/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index 6770fd06cea80..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.1.1/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,51 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.1.1 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.1.1/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/3.1.1/NicolasBonamy.Witsy.yaml deleted file mode 100644 index 88484b6c7f016..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.1.1/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.1.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From c52d11cf399eab905e7326c8d05af7006a63a431 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:15:42 +0800 Subject: [PATCH 62/87] Remove NicolasBonamy.Witsy 3.2.0 to KochavaStudios.Witsy 3.2.0 (#358499) --- .../3.2.0/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 80 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 51 ------------ .../Witsy/3.2.0/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 160 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.2.0/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.2.0/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.2.0/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.2.0/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/3.2.0/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/3.2.0/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 730010f954694..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.2.0/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.2.0 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-11-13 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v3.2.0/Witsy-3.2.0-win32-x64.Setup.exe - InstallerSha256: 12E314DB4CDD40D5474C884551D571A8607CE1828A8D10C1F062D594B68E9106 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.2.0/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/3.2.0/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index cafdb706904ee..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.2.0/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,80 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.2.0 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://github.com/nbonamy/witsy -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - Edit messages, quote user message (https://github.com/nbonamy/witsy/issues/479) - - LocalAI image models not listed in Design Studio (https://github.com/nbonamy/witsy/issues/482) - - Conversation usage reporting - - Show RAG search results - - MCP Tool tester - Changed - - Agent: can use user variables at all steps - - Local search: optimizations and captcha handling - Fixed - - Webapp persistance storage fix - - Import Markdown failing in Release - - Message refresh bug when streaming - - Commands menu disappeared (https://github.com/nbonamy/witsy/issues/486) - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#320---2025-11-12 -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://github.com/nbonamy/witsy/wiki -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.2.0/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/3.2.0/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index ceb40b592a648..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.2.0/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,51 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.2.0 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.2.0/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/3.2.0/NicolasBonamy.Witsy.yaml deleted file mode 100644 index 230c5c1dea6eb..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.2.0/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.2.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From dfba2c5b8bb84f3564453387a23d04a6fc8c8634 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:17:02 +0800 Subject: [PATCH 63/87] Remove NicolasBonamy.Witsy 3.2.1 to KochavaStudios.Witsy 3.2.1 (#358501) --- .../3.2.1/NicolasBonamy.Witsy.installer.yaml | 21 ------ .../NicolasBonamy.Witsy.locale.en-US.yaml | 75 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 51 ------------- .../Witsy/3.2.1/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 155 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.2.1/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.2.1/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.2.1/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.2.1/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/3.2.1/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/3.2.1/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index bb71ba242ade1..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.2.1/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.2.1 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-11-25 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v3.2.1/Witsy-3.2.1-win32-x64.Setup.exe - InstallerSha256: 84DB194FA52D3D7E15DDE192168F07AAFD8F48D5FAA715DB655F098BB2D89A9F -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.2.1/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/3.2.1/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 25ddaadf9bd0d..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.2.1/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,75 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.2.1 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://github.com/nbonamy/witsy -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - Scratchpad action on assistant messages - Changed - - Agent import tries MCP tool remapping - - HTTP server listens on localhost only - Fixed - - Agent refresh issues - - Design Studio Drawing Canvas icons - - Large documents embedding fixes - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#321---2025-11-24 -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://github.com/nbonamy/witsy/wiki -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.2.1/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/3.2.1/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index a75d88f2b97ef..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.2.1/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,51 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.2.1 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.2.1/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/3.2.1/NicolasBonamy.Witsy.yaml deleted file mode 100644 index 77d00fe20751f..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.2.1/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.2.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From 15e556b08a4011f021b0b2e1be3198e8b3a357b8 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:18:02 +0800 Subject: [PATCH 64/87] Remove NicolasBonamy.Witsy 3.2.2 to KochavaStudios.Witsy 3.2.2 (#358503) --- .../3.2.2/NicolasBonamy.Witsy.installer.yaml | 21 ------- .../NicolasBonamy.Witsy.locale.en-US.yaml | 63 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 51 --------------- .../Witsy/3.2.2/NicolasBonamy.Witsy.yaml | 8 --- 4 files changed, 143 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.2.2/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.2.2/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.2.2/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.2.2/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/3.2.2/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/3.2.2/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index eec62a3e63ea7..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.2.2/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.2.2 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-11-27 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v3.2.2/Witsy-3.2.2-win32-x64.Setup.exe - InstallerSha256: 5C2AFD5C3652CF7A4542DA35ACB7FA185025CC8705154376D9744363D2274F47 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.2.2/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/3.2.2/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index d3ee617d9bad4..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.2.2/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,63 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.2.2 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://github.com/nbonamy/witsy -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://github.com/nbonamy/witsy/wiki -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.2.2/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/3.2.2/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index d6da39a1729f7..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.2.2/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,51 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.2.2 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.2.2/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/3.2.2/NicolasBonamy.Witsy.yaml deleted file mode 100644 index 614eff872b3ae..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.2.2/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.2.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From 0aee57d1282bc81c6e6b443387c36cbd98ca89a8 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:19:01 +0800 Subject: [PATCH 65/87] Remove NicolasBonamy.Witsy 3.2.3 to KochavaStudios.Witsy 3.2.3 (#358505) --- .../3.2.3/NicolasBonamy.Witsy.installer.yaml | 21 ------ .../NicolasBonamy.Witsy.locale.en-US.yaml | 73 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 51 ------------- .../Witsy/3.2.3/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 153 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.2.3/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.2.3/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.2.3/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.2.3/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/3.2.3/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/3.2.3/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index c2fd8303a25c1..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.2.3/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.2.3 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-12-08 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v3.2.3/Witsy-3.2.3-win32-x64.Setup.exe - InstallerSha256: 616BD7FB76FDEB3F5B6B7B30CC65882ED4722CF0A4136FE1F91117BE6140B8F0 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.2.3/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/3.2.3/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 27f64a2d84bd7..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.2.3/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,73 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.2.3 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://github.com/nbonamy/witsy -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - Add Support for Advanced Model Parameters like 'Thinking Mode' for Ollama model (https://github.com/nbonamy/witsy/issues/491) - Changed - - Allow uploading raw text files (https://github.com/nbonamy/witsy/issues/494) - - New Excel data extractor - Fixed - - N/A - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#323---2015-12-03 -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://github.com/nbonamy/witsy/wiki -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.2.3/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/3.2.3/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index 7b82d0fab1d65..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.2.3/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,51 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.2.3 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.2.3/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/3.2.3/NicolasBonamy.Witsy.yaml deleted file mode 100644 index 010d4f911dbd7..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.2.3/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.2.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From fc5992f096777500279cedf974e7c86f9ed6230f Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:20:07 +0800 Subject: [PATCH 66/87] Remove NicolasBonamy.Witsy 3.3.0 to KochavaStudios.Witsy 3.3.0 (#358507) --- .../3.3.0/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 80 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 51 ------------ .../Witsy/3.3.0/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 160 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.3.0/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.3.0/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.3.0/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.3.0/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/3.3.0/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/3.3.0/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index d2058e9edd116..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.3.0/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.3.0 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-12-12 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v3.3.0/Witsy-3.3.0-win32-x64.Setup.exe - InstallerSha256: 76B40D4E8BE6D8F578CEF451B9B3D62C1644970B86022747775D277F6E5C487E -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.3.0/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/3.3.0/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index df418a41d5f1f..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.3.0/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,80 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.3.0 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://github.com/nbonamy/witsy -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - [Google] Support for Gemini 3 Preview (thoughtSignature) - - [Openrouter] Support for reasoning models - - [Google] Support for Nano Banana Pro - - Favorites management (https://github.com/nbonamy/witsy/issues/499) - - Facet navigation toolbar - Changed - - N/A - Fixed - - [Google] Multi tool calling - - [Anthropic] Multi tool calling - - [Deepseek] Function calling with Deepseek-Reasoner - - [Mistral] Reasoning tokens - - Favorites should be available anywhere a model can be selected (https://github.com/nbonamy/witsy/issues/498) - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#330---2025-12-11 -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://github.com/nbonamy/witsy/wiki -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.3.0/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/3.3.0/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index 1a821590c1f2d..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.3.0/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,51 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.3.0 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.3.0/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/3.3.0/NicolasBonamy.Witsy.yaml deleted file mode 100644 index df3e0366e05e2..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.3.0/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.3.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From df7a18927f58874e69d4401b2b60f3eac4b77eb9 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:21:22 +0800 Subject: [PATCH 67/87] Remove NicolasBonamy.Witsy 3.3.1 to KochavaStudios.Witsy 3.3.1 (#358509) --- .../3.3.1/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 79 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 51 ------------ .../Witsy/3.3.1/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 159 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 1040ab699ca53..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.3.1 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2025-12-27 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v3.3.1/Witsy-3.3.1-win32-x64.Setup.exe - InstallerSha256: 31A1DAA4F39A20AA504A8B1E998142B584657294183C813F37D64221800DFB05 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 9785469ca277e..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,79 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.3.1 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://github.com/nbonamy/witsy -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2025, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - Add priority selection option for OpenAI (https://github.com/nbonamy/witsy/issues/508) - - Multi-line input support - allow typing Enter when writing a prompt (https://github.com/nbonamy/witsy/issues/510) - - Cloudflare AI Gateway observability (https://github.com/nbonamy/witsy/issues/511) - - Status of Knowledge Base Updates (https://github.com/nbonamy/witsy/issues/512) - Changed - - Ability to Submit Large Files Manually (https://github.com/nbonamy/witsy/issues/497) - Fixed - - Gemini Models don't receive any images (https://github.com/nbonamy/witsy/issues/503) - - Automator.pasteText restores clipboard before paste completes (https://github.com/nbonamy/witsy/issues/505) - - Path traversal in filesystem plugin bypasses allowedPaths(https://github.com/nbonamy/witsy/issues/506) - - Fix Soniox streaming buffer (https://github.com/nbonamy/witsy/pull/507) - - Search text highlighting adds equal signs to text formatted as code (https://github.com/nbonamy/witsy/issues/509) - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#331---2025-12-27 -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://github.com/nbonamy/witsy/wiki -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index 762230875805f..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,51 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.3.1 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.yaml deleted file mode 100644 index 4486896b8d27b..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.3.1/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.3.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From 8fa55e4730e44ad35d4873cbc379cb92d9f2302b Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:22:38 +0800 Subject: [PATCH 68/87] Remove NicolasBonamy.Witsy 3.3.2 to KochavaStudios.Witsy 3.3.2 (#358511) --- .../3.3.2/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 76 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 51 ------------- .../Witsy/3.3.2/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 156 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.3.2/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.3.2/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.3.2/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.3.2/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/3.3.2/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/3.3.2/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 44809ae12bb58..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.3.2/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.3.2 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2026-01-09 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v3.3.2/Witsy-3.3.2-win32-x64.Setup.exe - InstallerSha256: BBE2EBA01256D4235DF5C775D5A83EFE06F3DB0D169F2796EA42CA7D8C146EF5 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.3.2/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/3.3.2/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index fbde732f7724d..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.3.2/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,76 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.3.2 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://github.com/nbonamy/witsy -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2026, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - CLI filesystem access and tool display fixes - - Parakeet STT local model support (https://github.com/nbonamy/witsy/issues/471) - - SearXNG support - Changed - - Agent runs now capture agent info (name, step descriptions) for standalone display - - Ability to search multiple knowledge bases - - Knowledge base access from expert - Fixed - - Fileystem access for scheduled agents - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#332---wip -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://github.com/nbonamy/witsy/wiki -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.3.2/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/3.3.2/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index 3b09345ee853f..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.3.2/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,51 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.3.2 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.3.2/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/3.3.2/NicolasBonamy.Witsy.yaml deleted file mode 100644 index 50772bda40eee..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.3.2/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.3.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 From 885b8a40ea9de435714ee69a5c545f44358148ec Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:23:54 +0800 Subject: [PATCH 69/87] Remove NicolasBonamy.Witsy 3.4.0 to KochavaStudios.Witsy 3.4.0 (#358513) --- .../3.4.0/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 78 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 51 ------------ .../Witsy/3.4.0/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 158 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.4.0/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.4.0/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.4.0/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.4.0/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/3.4.0/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/3.4.0/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 397fbe7e3beb1..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.4.0/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.4.0 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2026-01-12 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v3.4.0/Witsy-3.4.0-win32-x64.Setup.exe - InstallerSha256: F38D1340486454CB6ABA1F7C83C6635D5E53B3E96B5EBE3AC687514254DE598F -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.4.0/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/3.4.0/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index cfa2f87d9e461..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.4.0/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,78 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.4.0 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://github.com/nbonamy/witsy -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2026, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - Parakeet WebGPU support - - Apple SpeechAnalyzer support (macOS 26+ required) - - New quick dictation window (Speech-to-text renamed to Audio Booth) - - Re-authenticate link in MCP server editor - - Favicon display for HTTP/SSE MCP servers - - Google Gemini Live support in Voice Chat - Changed - - Voice Settings panels overhaul - - Voice Chat tool access and transcript - Fixed - - N/A - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#340---2026-01-11 -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://github.com/nbonamy/witsy/wiki -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.4.0/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/3.4.0/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index 37aab82cf5381..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.4.0/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,51 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.4.0 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.4.0/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/3.4.0/NicolasBonamy.Witsy.yaml deleted file mode 100644 index 64708c0bd17b2..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.4.0/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.4.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 From ad4e63c94592c9f7ce02c31eb5600f475a60a12e Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:25:13 +0800 Subject: [PATCH 70/87] Remove NicolasBonamy.Witsy 3.4.2 to KochavaStudios.Witsy 3.4.2 (#358515) --- .../3.4.2/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 77 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 51 ------------ .../Witsy/3.4.2/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 157 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.4.2/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.4.2/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.4.2/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.4.2/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/3.4.2/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/3.4.2/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 09bf49f186fe7..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.4.2/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.4.2 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2026-01-23 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v3.4.2/Witsy-3.4.2-win32-x64.Setup.exe - InstallerSha256: EBD1615F6D478D270AEC172601684DA25F3F357CD6122F3AC7B6605D2E99B784 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.4.2/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/3.4.2/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index 5e4b1f84eafb9..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.4.2/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,77 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.4.2 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://github.com/nbonamy/witsy -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2026, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - More Quick dictation options and keyboard shortcuts - - CLI port persistence (saves port when using -p or /port command) - - macOS permission options in Settings Advanced - - Request cooldown time per provider (https://github.com/nbonamy/witsy/issues/514) - - Parallel chats support - - Agent Forge card view with table/card toggle - Changed - - N/A - Fixed - - Quick dictation CPU usage - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#342---wip -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://github.com/nbonamy/witsy/wiki -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.4.2/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/3.4.2/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index 9fcc6a92327fa..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.4.2/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,51 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.4.2 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.4.2/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/3.4.2/NicolasBonamy.Witsy.yaml deleted file mode 100644 index a3eb96f4b280f..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.4.2/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.4.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 From 2c4c785a634eba884fe8800b6b1974b7fd4ce0c6 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:26:32 +0800 Subject: [PATCH 71/87] Remove NicolasBonamy.Witsy 3.5.0 to KochavaStudios.Witsy 3.5.0 (#358517) --- .../3.5.0/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 77 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 51 ------------ .../Witsy/3.5.0/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 157 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.5.0/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.5.0/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.5.0/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.5.0/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/3.5.0/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/3.5.0/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 43cce83ba24d7..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.5.0/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.5.0 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2026-01-30 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v3.5.0/Witsy-3.5.0-win32-x64.Setup.exe - InstallerSha256: FFF207EF44F67CC5031B0DDD42F96197FD6E94C24592BE228EACE0891EDF86C1 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.5.0/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/3.5.0/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index f5901bffdc463..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.5.0/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,77 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.5.0 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://github.com/nbonamy/witsy -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2026, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - Ability to Exclude Folders from RAG (https://github.com/nbonamy/witsy/issues/515) - - Ollama image generation support (https://github.com/nbonamy/witsy/issues/521) - - Stop agent execution buttons - Changed - - New agent view with step-by-step execution - - Improved arrow key history navigation in prompt (only triggers at start/end of text) - Fixed - - Various memory leaks fixes - - Context preservation on tool calls - - YouTube plugin fix (https://github.com/nbonamy/witsy/issues/516) - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#350---wip -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://github.com/nbonamy/witsy/wiki -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.5.0/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/3.5.0/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index 86d2337c88cb2..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.5.0/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,51 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.5.0 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.5.0/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/3.5.0/NicolasBonamy.Witsy.yaml deleted file mode 100644 index a4a334e87c2c9..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.5.0/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.5.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 From 285cea08519ac90c59cef5d95679e39771d64c08 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:27:42 +0800 Subject: [PATCH 72/87] Remove NicolasBonamy.Witsy 3.5.1 to KochavaStudios.Witsy 3.5.1 (#358519) --- .../3.5.1/NicolasBonamy.Witsy.installer.yaml | 21 ----- .../NicolasBonamy.Witsy.locale.en-US.yaml | 81 ------------------- .../NicolasBonamy.Witsy.locale.zh-CN.yaml | 51 ------------ .../Witsy/3.5.1/NicolasBonamy.Witsy.yaml | 8 -- 4 files changed, 161 deletions(-) delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.5.1/NicolasBonamy.Witsy.installer.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.5.1/NicolasBonamy.Witsy.locale.en-US.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.5.1/NicolasBonamy.Witsy.locale.zh-CN.yaml delete mode 100644 manifests/n/NicolasBonamy/Witsy/3.5.1/NicolasBonamy.Witsy.yaml diff --git a/manifests/n/NicolasBonamy/Witsy/3.5.1/NicolasBonamy.Witsy.installer.yaml b/manifests/n/NicolasBonamy/Witsy/3.5.1/NicolasBonamy.Witsy.installer.yaml deleted file mode 100644 index 4d14a10d6d162..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.5.1/NicolasBonamy.Witsy.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.5.1 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -ProductCode: witsy -ReleaseDate: 2026-02-21 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/nbonamy/witsy/releases/download/v3.5.1/Witsy-3.5.1-win32-x64.Setup.exe - InstallerSha256: 5FB6EF2784212D4889D24B3D665A4905DE7A2FF040E49C5DDF3B538E6D05D9AB -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.5.1/NicolasBonamy.Witsy.locale.en-US.yaml b/manifests/n/NicolasBonamy/Witsy/3.5.1/NicolasBonamy.Witsy.locale.en-US.yaml deleted file mode 100644 index a5f066f581030..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.5.1/NicolasBonamy.Witsy.locale.en-US.yaml +++ /dev/null @@ -1,81 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.5.1 -PackageLocale: en-US -Publisher: Nicolas Bonamy -PublisherUrl: https://www.bonamy.fr/ -PublisherSupportUrl: https://github.com/nbonamy/witsy/issues -Author: Nicolas Bonamy -PackageName: Witsy -PackageUrl: https://github.com/nbonamy/witsy -License: Apache-2.0 -LicenseUrl: https://github.com/nbonamy/witsy/blob/HEAD/LICENSE -Copyright: Copyright 2026, Nicolas Bonamy -ShortDescription: Desktop AI Assistant / Universal MCP Client -Description: |- - Witsy is a BYOK (Bring Your Own Keys) AI application: it means you need to have API keys for the LLM providers you want to use. Alternatively, you can use Ollama to run models locally on your machine for free and use them in Witsy. - It is the first of very few (only?) universal MCP clients: - Witsy allows you to run MCP servers with virtually any LLM! - Non-exhaustive feature list: - - OpenAI, Ollama, Anthropic, MistralAI, Google, xAI, Azure, OpenRouter, DeepSeek, Groq and Cerebras models supported - - Connect other providers (together, siliconflow, fireworks...) through OpenAI compatibility layer - - Chat completion with vision models support (describe an image) - - Text-to-image and text-to video with OpenAI, Google, xAI, Replicate, fal.ai and HuggingFace - - Image-to-image (image editing) and image-to-video with Google, Replicate and fal.ai - - LLM plugins to augment LLM: execute python code, search the Internet... - - Anthropic MCP server support - - Scratchpad to interactively create the best content with any model! - - Prompt anywhere allows to generate content directly in any application - - AI commands runnable on highlighted text in almost any application - - Experts prompts to specialize your bot on a specific topic - - Long-term memory plugin to increase relevance of LLM answers - - Read aloud of assistant messages (requires OpenAI or ElevenLabs API key) - - Read aloud of any text in other applications (requires OpenAI or ElevenLabs API key) - - Chat with your local files and documents (RAG) - - Transcription/Dictation (Speech-to-Text) - - Realtime Chat aka Voice Mode - - Anthropic Computer Use support - - Local history of conversations (with automatic titles) - - Formatting and copy to clipboard of generated code - - Conversation PDF export - - Image copy and download -Tags: -- ai -- chatbot -- chatgpt -- claude -- deepseek -- gemini -- large-language-model -- llama -- llm -- mcp -- mistral -- ollama -- qwen -ReleaseNotes: |- - Added - - Google Base URL - - Support LM Studio authentication (https://github.com/nbonamy/witsy/issues/525) - - Show conversations date time creation (https://github.com/nbonamy/witsy/issues/522) - - "Scan for Changes" button for Knowledge Base (https://github.com/nbonamy/witsy/issues/524) - - Per-server default MCP timeout overrides (https://github.com/nbonamy/witsy/issues/523) - Changed - - Performance optimization for message rendering during streaming - - MCP collision rework (optimistic strategy vs previous pessimistic strategy) - Fixed - - Bug fixes for markdown tag closing in streamed messages - - User messages with fenced code blocks render incorrectly in chat history (https://github.com/nbonamy/witsy/issues/526) - - Design Studio Ollama model not showing (https://github.com/nbonamy/witsy/issues/527) - - Model change in the right sidebar clears system prompt (https://github.com/nbonamy/witsy/issues/528) - - Personal Data Saving/Memories Seems Broken (https://github.com/nbonamy/witsy/issues/517) - Removed - - N/A -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md#351---2026-02-21 -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://github.com/nbonamy/witsy/wiki -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.5.1/NicolasBonamy.Witsy.locale.zh-CN.yaml b/manifests/n/NicolasBonamy/Witsy/3.5.1/NicolasBonamy.Witsy.locale.zh-CN.yaml deleted file mode 100644 index 2c57ed097270a..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.5.1/NicolasBonamy.Witsy.locale.zh-CN.yaml +++ /dev/null @@ -1,51 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.5.1 -PackageLocale: zh-CN -ShortDescription: 桌面 AI 助手 / 通用 MCP 客户端 -Description: |- - Witsy 是一款 BYOK(自带密钥)AI 应用:这意味着您需要自行准备所选用 LLM 服务商的 API 密钥。您也可以选择通过 Ollama 在本地免费运行模型,并在 Witsy 中使用。 - 作为极少数(唯一?)的通用 MCP 客户端: - Witsy 能让您用几乎任何 LLM 运行 MCP 服务器! - 非完整功能清单: - - 支持 OpenAI、Ollama、Anthropic、MistralAI、Google、xAI、Azure、OpenRouter、DeepSeek、Groq 和 Cerebras 模型 - - 通过 OpenAI 兼容层连接其他供应商(together、siliconflow、fireworks...) - - 支持视觉模型的聊天补全(图像描述) - - 文生图/文生视频(OpenAI、Google、xAI、Replicate、fal.ai、HuggingFace) - - 图生图(图像编辑)/图生视频(Google、Replicate、fal.ai) - - LLM 增强插件:执行 Python 代码、联网搜索... - - 支持 Anthropic MCP 服务器 - - 交互式创作草稿板,适配所有模型! - - “随处提示”功能可在任意应用中直接生成内容 - - 在几乎所有应用中通过高亮文本执行 AI 命令 - - 专家级提示词让机器人专注特定领域 - - 长期记忆插件提升 LLM 回答相关性 - - 语音播报助手消息(需 OpenAI 或 ElevenLabs API 密钥) - - 任意应用的文本朗读(需 OpenAI 或 ElevenLabs API 密钥) - - 与本地文件/文档对话(RAG) - - 语音转录/听写(语音转文字) - - 实时聊天(语音模式) - - 支持 Anthropic Computer Use - - 带自动标题的本地对话历史 - - 生成代码的格式化与剪贴板复制 - - 对话记录 PDF 导出 - - 图像复制与下载 -Tags: -- chatgpt -- claude -- gemini -- llama -- llm -- mcp -- mistral -- ollama -- 人工智能 -- 大语言模型 -- 深度求索 -- 聊天机器人 -- 通义千问 -ReleaseNotesUrl: https://github.com/nbonamy/witsy/blob/HEAD/CHANGELOG.md -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/n/NicolasBonamy/Witsy/3.5.1/NicolasBonamy.Witsy.yaml b/manifests/n/NicolasBonamy/Witsy/3.5.1/NicolasBonamy.Witsy.yaml deleted file mode 100644 index 010264ce0d1e7..0000000000000 --- a/manifests/n/NicolasBonamy/Witsy/3.5.1/NicolasBonamy.Witsy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: NicolasBonamy.Witsy -PackageVersion: 3.5.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 From bcf660853b722ebf126f7a3ae46033aecaa8c305 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sun, 12 Apr 2026 12:54:38 +0800 Subject: [PATCH 73/87] New version: Tencent.TencentVideo version 11.162.7621.0 (#358450) --- .../Tencent.TencentVideo.installer.yaml | 70 +++++++++++++++++++ .../Tencent.TencentVideo.locale.en-US.yaml | 41 +++++++++++ .../Tencent.TencentVideo.locale.zh-CN.yaml | 41 +++++++++++ .../11.162.7621.0/Tencent.TencentVideo.yaml | 8 +++ 4 files changed, 160 insertions(+) create mode 100644 manifests/t/Tencent/TencentVideo/11.162.7621.0/Tencent.TencentVideo.installer.yaml create mode 100644 manifests/t/Tencent/TencentVideo/11.162.7621.0/Tencent.TencentVideo.locale.en-US.yaml create mode 100644 manifests/t/Tencent/TencentVideo/11.162.7621.0/Tencent.TencentVideo.locale.zh-CN.yaml create mode 100644 manifests/t/Tencent/TencentVideo/11.162.7621.0/Tencent.TencentVideo.yaml diff --git a/manifests/t/Tencent/TencentVideo/11.162.7621.0/Tencent.TencentVideo.installer.yaml b/manifests/t/Tencent/TencentVideo/11.162.7621.0/Tencent.TencentVideo.installer.yaml new file mode 100644 index 0000000000000..f4fcca0cb2b39 --- /dev/null +++ b/manifests/t/Tencent/TencentVideo/11.162.7621.0/Tencent.TencentVideo.installer.yaml @@ -0,0 +1,70 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Tencent.TencentVideo +PackageVersion: 11.162.7621.0 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Custom: /RQ=0 +UpgradeBehavior: install +Protocols: +- qqlive +- qqtv +FileExtensions: +- 3g2 +- 3gp +- aac +- ac3 +- amr +- ape +- asf +- avi +- cpk +- dat +- dirac +- div +- divx +- dv +- f4v +- flc +- fli +- flv +- lac +- lavf +- m2t +- m4a +- m4r +- m4v +- mkv +- mmf +- mod +- mov +- mp2 +- mp3 +- mp4 +- mpe +- mpeg +- mpg +- ogg +- qlv +- qt +- ram +- rm +- rmvb +- swf +- ts +- vob +- wav +- webm +- wma +- wmv +- wv +ProductCode: qqlive +ReleaseDate: 2026-04-11 +Installers: +- Architecture: x86 + InstallerUrl: https://dldir1v6.qq.com/qqtv/TencentVideo11.162.7621.0.exe?support_redirect=1 + InstallerSha256: 3B2BC581785778A648C94D6582DE16AF4B2E8F9E925D879470B399A43FA841E6 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tencent/TencentVideo/11.162.7621.0/Tencent.TencentVideo.locale.en-US.yaml b/manifests/t/Tencent/TencentVideo/11.162.7621.0/Tencent.TencentVideo.locale.en-US.yaml new file mode 100644 index 0000000000000..e175ed793bb98 --- /dev/null +++ b/manifests/t/Tencent/TencentVideo/11.162.7621.0/Tencent.TencentVideo.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.12.0.schema.json + +PackageIdentifier: Tencent.TencentVideo +PackageVersion: 11.162.7621.0 +PackageLocale: en-US +Publisher: 腾讯科技(深圳)有限公司 +PublisherUrl: https://v.qq.com/ +PublisherSupportUrl: https://support.qq.com/products/4216/ +PrivacyUrl: https://privacy.qq.com/document/preview/3fab9c7fc1424ebda42c3ce488322c8a +Author: Shenzhen Tencent Computer Systems Company Limited +PackageName: 腾讯视频 +PackageUrl: https://v.qq.com/biu/download +License: Proprietary +LicenseUrl: https://m.v.qq.com/about/privacy.html +Copyright: Copyright © 2005 - 2026 Tencent. All Rights Reserved +CopyrightUrl: https://www.tencent.com/en-us/statement.html +ShortDescription: China's leading online streaming platform that offers unlimited HD videos for watching online +Description: Tencent Video is committed to building China's leading online streaming platform that primarily meets users' needs for watching video online through product features including rich content library, ultimate watching experience, convenient login method, seamless all-day multi-platform experience and quick sharing. +Moniker: tencent-video +Tags: +- animation +- anime +- cartoon +- documentary +- donghua +- film +- media +- movie +- multimedia +- player +- serial +- series +- show +- video +PurchaseUrl: https://film.qq.com/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://support.qq.com/products/4216/faqs-more/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tencent/TencentVideo/11.162.7621.0/Tencent.TencentVideo.locale.zh-CN.yaml b/manifests/t/Tencent/TencentVideo/11.162.7621.0/Tencent.TencentVideo.locale.zh-CN.yaml new file mode 100644 index 0000000000000..26d9b975a4f5d --- /dev/null +++ b/manifests/t/Tencent/TencentVideo/11.162.7621.0/Tencent.TencentVideo.locale.zh-CN.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Tencent.TencentVideo +PackageVersion: 11.162.7621.0 +PackageLocale: zh-CN +Publisher: 腾讯科技(深圳)有限公司 +PublisherUrl: https://v.qq.com/ +PublisherSupportUrl: https://support.qq.com/products/4216/ +PrivacyUrl: https://privacy.qq.com/document/preview/3fab9c7fc1424ebda42c3ce488322c8a +Author: 深圳市腾讯计算机系统有限公司 +PackageName: 腾讯视频 +PackageUrl: https://v.qq.com/biu/download +License: 专有软件 +LicenseUrl: https://m.v.qq.com/about/privacy.html +Copyright: Copyright © 2005 - 2026 Tencent. All Rights Reserved 腾讯公司 版权所有 +CopyrightUrl: https://www.tencent.com/zh-cn/statement.html +ShortDescription: 中国领先的在线视频媒体平台,海量高清视频在线观看 +Description: 腾讯视频致力于打造中国领先的在线视频媒体平台,以丰富的内容、极致的观看体验、便捷的登录方式、24 小时多平台无缝应用体验以及快捷分享的产品特性,主要满足用户在线观看视频的需求。 +Tags: +- 动漫 +- 动画 +- 卡通 +- 多媒体 +- 媒体 +- 少儿 +- 影音 +- 播放器 +- 电影 +- 电视剧 +- 视频 +- 纪录片 +- 综艺 +- 连续剧 +ReleaseNotes: 全新播放器,沉浸享受高品质影音;桌面迷你模式,让追剧触手可及;新版导航样式,频道切换更方便;频道页面全新改版,沉浸式找片更高效;近期热播好剧,升级观看体验更佳。 +PurchaseUrl: https://film.qq.com/ +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://support.qq.com/products/4216/faqs-more/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tencent/TencentVideo/11.162.7621.0/Tencent.TencentVideo.yaml b/manifests/t/Tencent/TencentVideo/11.162.7621.0/Tencent.TencentVideo.yaml new file mode 100644 index 0000000000000..c34e3eb6cc35a --- /dev/null +++ b/manifests/t/Tencent/TencentVideo/11.162.7621.0/Tencent.TencentVideo.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: Tencent.TencentVideo +PackageVersion: 11.162.7621.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 93f2418974ea18d61d862df2ece39e17bf110d0b Mon Sep 17 00:00:00 2001 From: 2dust <31833384+2dust@users.noreply.github.com> Date: Sun, 12 Apr 2026 13:24:53 +0800 Subject: [PATCH 74/87] New version: 2dust.v2rayN version 7.20.2 (#358447) --- .../v2rayN/7.20.2/2dust.v2rayN.installer.yaml | 21 ++++++++++++ .../7.20.2/2dust.v2rayN.locale.zh-CN.yaml | 34 +++++++++++++++++++ .../2/2dust/v2rayN/7.20.2/2dust.v2rayN.yaml | 8 +++++ 3 files changed, 63 insertions(+) create mode 100644 manifests/2/2dust/v2rayN/7.20.2/2dust.v2rayN.installer.yaml create mode 100644 manifests/2/2dust/v2rayN/7.20.2/2dust.v2rayN.locale.zh-CN.yaml create mode 100644 manifests/2/2dust/v2rayN/7.20.2/2dust.v2rayN.yaml diff --git a/manifests/2/2dust/v2rayN/7.20.2/2dust.v2rayN.installer.yaml b/manifests/2/2dust/v2rayN/7.20.2/2dust.v2rayN.installer.yaml new file mode 100644 index 0000000000000..6e181b9652b63 --- /dev/null +++ b/manifests/2/2dust/v2rayN/7.20.2/2dust.v2rayN.installer.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: 2dust.v2rayN +PackageVersion: 7.20.2 +InstallerType: zip +NestedInstallerType: portable +Installers: +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: v2rayN-windows-arm64\v2rayN.exe + InstallerUrl: https://github.com/2dust/v2rayN/releases/download/7.20.2/v2rayN-windows-arm64.zip + InstallerSha256: 75C45A8481919BE6B0100A199F53C45C1B27B29D82F9185A872E68FEFB33C01A +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: v2rayN-windows-64\v2rayN.exe + InstallerUrl: https://github.com/2dust/v2rayN/releases/download/7.20.2/v2rayN-windows-64.zip + InstallerSha256: 11C2F56B726777A58BC099D24934430409457349CD34EB01ADB890AFD15B97EA +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-04-04 diff --git a/manifests/2/2dust/v2rayN/7.20.2/2dust.v2rayN.locale.zh-CN.yaml b/manifests/2/2dust/v2rayN/7.20.2/2dust.v2rayN.locale.zh-CN.yaml new file mode 100644 index 0000000000000..0a08e2dd2996c --- /dev/null +++ b/manifests/2/2dust/v2rayN/7.20.2/2dust.v2rayN.locale.zh-CN.yaml @@ -0,0 +1,34 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: 2dust.v2rayN +PackageVersion: 7.20.2 +PackageLocale: zh-CN +Publisher: 2dust +PublisherUrl: https://github.com/2dust +PublisherSupportUrl: https://github.com/2dust/v2rayN/issues +Author: 2dust +PackageName: v2rayN +PackageUrl: https://github.com/2dust/v2rayN +License: GPL-3.0 +LicenseUrl: https://github.com/2dust/v2rayN/blob/HEAD/LICENSE +ShortDescription: 支持 Xray、v2fly 等 core 的 GUI 客户端 +Moniker: v2rayn +Tags: +- proxy +- shadowsocks +- socks5 +- trojan +- v2fly +- v2ray +- vless +- vmess +- windows +- xray +- xtls +ReleaseNotesUrl: https://github.com/2dust/v2rayN/releases/tag/7.20.2 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/2dust/v2rayN/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/2/2dust/v2rayN/7.20.2/2dust.v2rayN.yaml b/manifests/2/2dust/v2rayN/7.20.2/2dust.v2rayN.yaml new file mode 100644 index 0000000000000..a462bc79cf6a5 --- /dev/null +++ b/manifests/2/2dust/v2rayN/7.20.2/2dust.v2rayN.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: 2dust.v2rayN +PackageVersion: 7.20.2 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 From a6fd00109a1f38cc672c931c5107d96496f98f77 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sun, 12 Apr 2026 13:55:17 +0800 Subject: [PATCH 75/87] New version: Graphviz.Graphviz version 14.1.5 (#358525) --- .../14.1.5/Graphviz.Graphviz.installer.yaml | 19 ++++++++ .../Graphviz.Graphviz.locale.en-US.yaml | 43 +++++++++++++++++++ .../Graphviz.Graphviz.locale.zh-CN.yaml | 23 ++++++++++ .../Graphviz/14.1.5/Graphviz.Graphviz.yaml | 8 ++++ 4 files changed, 93 insertions(+) create mode 100644 manifests/g/Graphviz/Graphviz/14.1.5/Graphviz.Graphviz.installer.yaml create mode 100644 manifests/g/Graphviz/Graphviz/14.1.5/Graphviz.Graphviz.locale.en-US.yaml create mode 100644 manifests/g/Graphviz/Graphviz/14.1.5/Graphviz.Graphviz.locale.zh-CN.yaml create mode 100644 manifests/g/Graphviz/Graphviz/14.1.5/Graphviz.Graphviz.yaml diff --git a/manifests/g/Graphviz/Graphviz/14.1.5/Graphviz.Graphviz.installer.yaml b/manifests/g/Graphviz/Graphviz/14.1.5/Graphviz.Graphviz.installer.yaml new file mode 100644 index 0000000000000..0835f5b7c83de --- /dev/null +++ b/manifests/g/Graphviz/Graphviz/14.1.5/Graphviz.Graphviz.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Graphviz.Graphviz +PackageVersion: 14.1.5 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +ProductCode: Graphviz +ReleaseDate: 2026-04-12 +Installers: +- Architecture: x86 + InstallerUrl: https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/14.1.5/windows_10_cmake_Release_graphviz-install-14.1.5-win32.exe + InstallerSha256: 35F9C8E5D7D916D220B013CA7517E135A1FBCEF715C7B13AC4344113C5FED0CD +- Architecture: x64 + InstallerUrl: https://gitlab.com/api/v4/projects/4207231/packages/generic/graphviz-releases/14.1.5/windows_10_cmake_Release_graphviz-install-14.1.5-win64.exe + InstallerSha256: 3CC0441C3C97C495E0A8FBF3DD5425CD13D749ACA7514575F2A24BC0BED72CF6 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/Graphviz/Graphviz/14.1.5/Graphviz.Graphviz.locale.en-US.yaml b/manifests/g/Graphviz/Graphviz/14.1.5/Graphviz.Graphviz.locale.en-US.yaml new file mode 100644 index 0000000000000..032c3bc61a306 --- /dev/null +++ b/manifests/g/Graphviz/Graphviz/14.1.5/Graphviz.Graphviz.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.12.0.schema.json + +PackageIdentifier: Graphviz.Graphviz +PackageVersion: 14.1.5 +PackageLocale: en-US +Publisher: Graphviz +PublisherUrl: https://graphviz.org/ +PublisherSupportUrl: https://forum.graphviz.org/ +PackageName: Graphviz +PackageUrl: https://graphviz.org/download +License: CPL-1.0 +LicenseUrl: https://graphviz.org/license +Copyright: (c) 2026 The Graphviz Authors +ShortDescription: Open source graph visualization software +Description: |- + Graphviz is open source graph visualization software. Graph visualization is a way of representing structural information as diagrams of abstract graphs and networks. It has important applications in networking, bioinformatics, software engineering, database and web design, machine learning, and in visual interfaces for other technical domains. + The Graphviz layout programs take descriptions of graphs in a simple text language, and make diagrams in useful formats, such as images and SVG for web pages; PDF or Postscript for inclusion in other documents; or display in an interactive graph browser. Graphviz has many useful features for concrete diagrams, such as options for colors, fonts, tabular node layouts, line styles, hyperlinks, and custom shapes. +Moniker: graphviz +Tags: +- diagram +- graph +- graphics +- plot +- visualization +ReleaseNotes: |- + Fixed + - The JSON renderer of the core plugin now understands a cluster to be indicated by the common rules, including the “cluster” prefix being case insensitive and the cluster=true attribute as an alternative. #2187 + - The description of what defines a cluster subgraph in the gc man page has been updated. #2187 + - When rendering multiple files at once (e.g. dot -Tsvg -O file1.dot file2.dot), page numbering state from previous jobs no longer leaks into the current job. This was a regression in Graphviz 2.40.0. #2827 + - Logic to determine whether a rendered page is non-first has been corrected. + - gvpr modulo expressions with an out-of-range modulo operand are now detected and result in an error message. + - When gvpr dumps switch statements as text, they are now printed as switch statements instead of an if-else ladder. This avoids incorrect interpretation of break statements in error messages. #2822 + - An out-of-bounds read access during gvpr type checking has been fixed. + - A null pointer dereference when freeing xdot objects has been fixed. +ReleaseNotesUrl: https://gitlab.com/graphviz/graphviz/-/releases/14.1.2 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://graphviz.org/documentation/ +- DocumentLabel: FAQ + DocumentUrl: https://graphviz.org/faq/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/Graphviz/Graphviz/14.1.5/Graphviz.Graphviz.locale.zh-CN.yaml b/manifests/g/Graphviz/Graphviz/14.1.5/Graphviz.Graphviz.locale.zh-CN.yaml new file mode 100644 index 0000000000000..addd17bbecfc6 --- /dev/null +++ b/manifests/g/Graphviz/Graphviz/14.1.5/Graphviz.Graphviz.locale.zh-CN.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Graphviz.Graphviz +PackageVersion: 14.1.5 +PackageLocale: zh-CN +ShortDescription: 开源图形可视化软件 +Description: |- + Graphviz 是开源的图形可视化软件。图形可视化是一种将结构信息表示为抽象图形和网络图的方法。它在网络、生物信息学、软件工程、数据库和网页设计、机器学习,以及其他技术领域的可视化界面中具有重要应用。 + Graphviz 的布局程序接受用简单文本语言描述的图形,并生成多种实用格式的图表,例如用于网页的图像和 SVG 格式;用于插入其他文档的 PDF 或 PostScript 格式;或在交互式图形浏览器中显示。Graphviz 具有多种适用于具体图表的实用功能,例如颜色、字体、表格节点布局、线条样式、超链接以及自定义形状等选项。 +Tags: +- 可视化 +- 图形 +- 图示 +- 图表 +- 绘图 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://graphviz.org/documentation/ +- DocumentLabel: 常见问题 + DocumentUrl: https://graphviz.org/faq/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/g/Graphviz/Graphviz/14.1.5/Graphviz.Graphviz.yaml b/manifests/g/Graphviz/Graphviz/14.1.5/Graphviz.Graphviz.yaml new file mode 100644 index 0000000000000..4849f229f31b9 --- /dev/null +++ b/manifests/g/Graphviz/Graphviz/14.1.5/Graphviz.Graphviz.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: Graphviz.Graphviz +PackageVersion: 14.1.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 152dc4b8ef569069d75b9c4496005e9abb7d4cca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=B8=AD=E9=B8=AD=E3=80=8C=E3=82=AB=E3=83=A2=E3=80=8D?= <89643991+DuckDuckStudio@users.noreply.github.com> Date: Sun, 12 Apr 2026 13:56:29 +0800 Subject: [PATCH 76/87] Remove version: AppByTroye.KoodoReader version 2.2.9 (#358530) --- .../AppByTroye.KoodoReader.installer.yaml | 48 ------------ .../AppByTroye.KoodoReader.locale.en-US.yaml | 74 ------------------- .../AppByTroye.KoodoReader.locale.zh-CN.yaml | 68 ----------------- .../2.2.9/AppByTroye.KoodoReader.yaml | 8 -- 4 files changed, 198 deletions(-) delete mode 100644 manifests/a/AppByTroye/KoodoReader/2.2.9/AppByTroye.KoodoReader.installer.yaml delete mode 100644 manifests/a/AppByTroye/KoodoReader/2.2.9/AppByTroye.KoodoReader.locale.en-US.yaml delete mode 100644 manifests/a/AppByTroye/KoodoReader/2.2.9/AppByTroye.KoodoReader.locale.zh-CN.yaml delete mode 100644 manifests/a/AppByTroye/KoodoReader/2.2.9/AppByTroye.KoodoReader.yaml diff --git a/manifests/a/AppByTroye/KoodoReader/2.2.9/AppByTroye.KoodoReader.installer.yaml b/manifests/a/AppByTroye/KoodoReader/2.2.9/AppByTroye.KoodoReader.installer.yaml deleted file mode 100644 index 90e48169d2c2b..0000000000000 --- a/manifests/a/AppByTroye/KoodoReader/2.2.9/AppByTroye.KoodoReader.installer.yaml +++ /dev/null @@ -1,48 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: AppByTroye.KoodoReader -PackageVersion: 2.2.9 -InstallerType: nullsoft -InstallerSwitches: - Upgrade: --updated -FileExtensions: -- azw -- azw3 -- cb7 -- cbr -- cbt -- cbz -- epub -- fb2 -- mobi -- pdf -ProductCode: 233610fa-2bda-5a09-a37b-75e0bafa7920 -ReleaseDate: 2026-02-21 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://dl.koodoreader.com/v2.2.9/Koodo-Reader-2.2.9-x64.exe - InstallerSha256: D0498C847C4DDB64DCE055A2B8C0D72E62B35F36B03D82D309A16C2EC94A1938 - InstallerSwitches: - Custom: /currentuser -- Architecture: x64 - Scope: machine - InstallerUrl: https://dl.koodoreader.com/v2.2.9/Koodo-Reader-2.2.9-x64.exe - InstallerSha256: D0498C847C4DDB64DCE055A2B8C0D72E62B35F36B03D82D309A16C2EC94A1938 - InstallerSwitches: - Custom: /allusers -- Architecture: arm64 - Scope: user - InstallerUrl: https://dl.koodoreader.com/v2.2.9/Koodo-Reader-2.2.9-arm64.exe - InstallerSha256: 94293FE6C63C5850A3DD329AD28FE09E8C68F5BDC424225DA8A627894C27CFFF - InstallerSwitches: - Custom: /currentuser -- Architecture: arm64 - Scope: machine - InstallerUrl: https://dl.koodoreader.com/v2.2.9/Koodo-Reader-2.2.9-arm64.exe - InstallerSha256: 94293FE6C63C5850A3DD329AD28FE09E8C68F5BDC424225DA8A627894C27CFFF - InstallerSwitches: - Custom: /allusers -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/a/AppByTroye/KoodoReader/2.2.9/AppByTroye.KoodoReader.locale.en-US.yaml b/manifests/a/AppByTroye/KoodoReader/2.2.9/AppByTroye.KoodoReader.locale.en-US.yaml deleted file mode 100644 index 0ea095940b416..0000000000000 --- a/manifests/a/AppByTroye/KoodoReader/2.2.9/AppByTroye.KoodoReader.locale.en-US.yaml +++ /dev/null @@ -1,74 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: AppByTroye.KoodoReader -PackageVersion: 2.2.9 -PackageLocale: en-US -Publisher: App by Troye -PublisherUrl: https://www.koodoreader.com/ -PublisherSupportUrl: https://www.koodoreader.com/en/support -PrivacyUrl: https://www.koodoreader.com/en/privacy -Author: Troye -PackageName: Koodo Reader -PackageUrl: https://www.koodoreader.com/ -License: AGPL-3.0 -LicenseUrl: https://github.com/koodo-reader/koodo-reader/blob/HEAD/LICENSE -Copyright: © 2026 App by Troye. All rights reserved. -CopyrightUrl: https://www.koodoreader.com/en/term -ShortDescription: All-in-one ebook reader -Description: Koodo Reader is an all-in-one eBook reader for Windows, macOS, Linux, and the web, supporting over 15 formats. -Moniker: koodoreader -Tags: -- ebook -- ebook-reader -- epub -- pdf -- reader -ReleaseNotes: |- - New Features - - Urgent fix for pCloud and OneDrive (full access) - - Now supports syncing and backing up your library via iCloud. Only iOS and macOS versions are supported for now. - - Added sorting by reading progress for highlights and notes. - - Official AI OCR is now available for converting scanned PDFs to plain text, powered by the Qwen models. - - Offline OCR engine now includes Paddle OCR, offering significantly improved text recognition compared to Tesseract - - Translation plugin now includes Bing Translator - - (Mobile) Support for adjusting app font size - - (Mobile) Added 9 new languages: Traditional Chinese, Portuguese, Japanese, Korean, German, Spanish, etc. Go to Settings > General Options > Language - - (Mobile) Supports PDF-to-text conversion. Text-based PDFs will be extracted directly from the book, while scanned PDFs will use official AI OCR for recognition. Enable this feature by tapping the three dots in the top-right corner of the book page. - - (Mobile) Book search now supports live search as you type. - Fixes - - Fixed abnormal scaling on some PDF pages - - Fixed synchronization issues with certain cloud storage services - - Fixed highlights display issues after adjusting paragraph spacing - - Fixed export failure when exporting all books in large libraries; books now export directly to local folders without compression - - Fixed footnotes requiring navigation to other chapters for display - - Fixed incomplete display of some TXT chapters - - Fixed footnotes not displaying in some books - - (Mobile) Fixed abnormal PDF page scaling - - (Mobile) Fixed cloud storage sync issues - - (Mobile) Fixed highlights display issues after setting paragraph spacing - - (Mobile) Fixed AI voice repeating sentences - - (Mobile) Fixed inability to automatically open last-read book - - (Mobile) Fixed inability to import and open PDF files on certain older iOS versions - - (Mobile) Fixed inability to use AI Chat after setting E-ink theme - - (Mobile) Fixed inability to lock screen orientation on iPad - - (Mobile) Fixed app crash after switching apps on iPad - - (Mobile) Fixed abnormal book navigation issue when App is not displayed in fullscreen - - (Mobile) Fixed issue where book covers were also cleared after clear local books - - (Mobile) Fixed issue where some TXT chapters displayed incompletely - - (Mobile) Fixed issue where bookmarks couldn't be deleted in PDFs - - (Mobile) Fixed issue where App text was partially obscured at the bottom on some devices - - (Mobile) Fixed issue where top margins were excessively large in PDFs during double-page mode - - (Mobile) Fixed searching for books returning archived books - - (Mobile) Fixed some footnotes not displaying - - (Mobile) Fixed large PDF imports lacking covers - [!NOTE] - This version has been selected as the stable release candidate. It should work fine in most cases. If you have any concerns, please download the previous stable version - [!TIP] - You can also download the installation package for this version from the our self-hosted mirror. -ReleaseNotesUrl: https://github.com/koodo-reader/koodo-reader/releases/tag/v2.2.9 -Documentations: -- DocumentLabel: Document - DocumentUrl: https://www.koodoreader.com/en/document -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/a/AppByTroye/KoodoReader/2.2.9/AppByTroye.KoodoReader.locale.zh-CN.yaml b/manifests/a/AppByTroye/KoodoReader/2.2.9/AppByTroye.KoodoReader.locale.zh-CN.yaml deleted file mode 100644 index 94f07baa3df79..0000000000000 --- a/manifests/a/AppByTroye/KoodoReader/2.2.9/AppByTroye.KoodoReader.locale.zh-CN.yaml +++ /dev/null @@ -1,68 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: AppByTroye.KoodoReader -PackageVersion: 2.2.9 -PackageLocale: zh-CN -PublisherUrl: https://www.koodoreader.com/zh -PublisherSupportUrl: https://www.koodoreader.com/zh/support -PrivacyUrl: https://www.koodoreader.com/zh/privacy -PackageUrl: https://www.koodoreader.com/zh -CopyrightUrl: https://www.koodoreader.com/zh/term -ShortDescription: 开源电子阅读解决方案 -Description: Koodo Reader 是一个开源的电子书阅读器,支持多达 15 种主流电子书格式,内置笔记、高亮、翻译功能,助力高效书籍阅读和学习。 -Tags: -- epub -- pdf -- 电子书 -- 电子书阅读器 -- 阅读器 -ReleaseNotes: |- - 新增 - - 紧急修复 pCloud 和 OneDrive (完全访问) 无法使用的问题 - - 现在支持使用 iCloud 同步和备份您的图书库,目前仅支持在 iOS 和 macOS 设备上使用 - - 笔记高亮新增按阅读进度排序 - - 官方 AI 文字识别正式上线,用于将扫描版 PDF 转为纯文本,由千问系列模型提供服务 - - 离线 OCR 引擎新增 Paddle OCR,相比 Tesseract 文字识别能力大幅提升 - - 翻译插件新增必应翻译 - -(移动版)现在支持使用 iCloud 同步和备份您的图书库,目前仅支持在 iOS 和 macOS 设备上使用 - -(移动版)支持修改应用字体大小 - -(移动版)App 语言新增繁体中文、葡萄牙语、日语、韩语、德语、西班牙语等 9 门语言,请前往设置-通用选项 - -(移动版)支持 PDF 转文本,文字版 PDF 将直接从书中提取,扫描版 PDF 将使用官方 AI OCR 进行识别,请点击图书页面右上角的三个点开启 - -(移动版)搜索图书支持边输入边搜索 - 修复 - - 修复部分 PDF 页面缩放异常 - - 修复部分网盘同步异常 - - 修复设置段落间距之后,高亮展示异常的问题 - - 修复当图书数量较大时,导出全部图书失败的问题,现在图书将直接导出到本地文件夹,不再压缩 - - 修复部分脚注需要跳转到其他章节再展示的问题 - - 修复部分 TXT 章节显示不全的问题 - - 修复部分脚注不展示的问题 - -(移动版)修复部分 PDF 页面缩放异常 - -(移动版)修复部分网盘同步异常 - -(移动版)修复设置段落间距之后,高亮展示异常的问题 - -(移动版)修复 AI 语音会重复朗读部分句子的问题 - -(移动版)修复无法自动打开上次阅读的图书的问题 - -(移动版)修复在部分低版本 iOS 系统上无法导入和打开 PDF 文件的问题 - -(移动版)修复设置墨水屏主题之后,无法使用 AI 问书的问题 - -(移动版)修复 iPad 上无法锁定屏幕方向的问题 - -(移动版)修复 iPad 上切换应用之后,App 闪退的问题 - -(移动版)修复 App 小窗展示时,图书导航出现异常的问题 - -(移动版)修复清理本地图书之后,封面也被清理的问题 - -(移动版)修复部分 TXT 章节显示不全的问题 - -(移动版)修复 PDF 无法删除书签的问题 - -(移动版)修复部分设备上,App 文字底部被遮挡的问题 - -(移动版)修复 PDF 在双页模式下顶部页边距太大的问题 - -(移动版)修复搜索图书会搜到已归档的图书的问题 - -(移动版)修复部分脚注不展示的问题 - -(移动版)修复导入大体积 PDF 没有封面的问题 - [!NOTE] - 此版本由于功能已经稳定,bug 也基本修复,被选为下个稳定版候选。如果您对此有任何顾虑,可以下载上一个稳定版. - [!TIP] - 我们还提供了高速下载镜像,您也可以从 自托管镜像 下载此版本的安装包 -ReleaseNotesUrl: https://github.com/koodo-reader/koodo-reader/releases/tag/v2.2.9 -Documentations: -- DocumentLabel: 帮助文档 - DocumentUrl: https://www.koodoreader.com/zh/document -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/a/AppByTroye/KoodoReader/2.2.9/AppByTroye.KoodoReader.yaml b/manifests/a/AppByTroye/KoodoReader/2.2.9/AppByTroye.KoodoReader.yaml deleted file mode 100644 index 94d54b008c230..0000000000000 --- a/manifests/a/AppByTroye/KoodoReader/2.2.9/AppByTroye.KoodoReader.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: AppByTroye.KoodoReader -PackageVersion: 2.2.9 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 From 62a005ccaafb9ef199c91f994c40ec18b5039484 Mon Sep 17 00:00:00 2001 From: DaMn good B0t <143536629+damn-good-b0t@users.noreply.github.com> Date: Sun, 12 Apr 2026 08:25:46 +0200 Subject: [PATCH 77/87] New version: jdx.mise version 2026.4.9 (#358522) --- .../jdx/mise/2026.4.9/jdx.mise.installer.yaml | 24 ++++++++++ .../mise/2026.4.9/jdx.mise.locale.en-US.yaml | 45 +++++++++++++++++++ manifests/j/jdx/mise/2026.4.9/jdx.mise.yaml | 8 ++++ 3 files changed, 77 insertions(+) create mode 100644 manifests/j/jdx/mise/2026.4.9/jdx.mise.installer.yaml create mode 100644 manifests/j/jdx/mise/2026.4.9/jdx.mise.locale.en-US.yaml create mode 100644 manifests/j/jdx/mise/2026.4.9/jdx.mise.yaml diff --git a/manifests/j/jdx/mise/2026.4.9/jdx.mise.installer.yaml b/manifests/j/jdx/mise/2026.4.9/jdx.mise.installer.yaml new file mode 100644 index 0000000000000..e44992d653211 --- /dev/null +++ b/manifests/j/jdx/mise/2026.4.9/jdx.mise.installer.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: jdx.mise +PackageVersion: 2026.4.9 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: mise/bin/mise-shim.exe +- RelativeFilePath: mise/bin/mise.exe +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2026-04-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/jdx/mise/releases/download/v2026.4.9/mise-v2026.4.9-windows-x64.zip + InstallerSha256: F309F77F3C9456AAFF9A6795FB435EBAB4BC3CA88948EFE6F7F82AD3CEC7B922 +- Architecture: arm64 + InstallerUrl: https://github.com/jdx/mise/releases/download/v2026.4.9/mise-v2026.4.9-windows-arm64.zip + InstallerSha256: CE5F87B91F25AD378A3F945B3A820003FEA506220F26237AA5C9A1B4621A3186 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/jdx/mise/2026.4.9/jdx.mise.locale.en-US.yaml b/manifests/j/jdx/mise/2026.4.9/jdx.mise.locale.en-US.yaml new file mode 100644 index 0000000000000..579cb0887dfae --- /dev/null +++ b/manifests/j/jdx/mise/2026.4.9/jdx.mise.locale.en-US.yaml @@ -0,0 +1,45 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: jdx.mise +PackageVersion: 2026.4.9 +PackageLocale: en-US +Publisher: jdx +PublisherUrl: https://jdx.dev/ +PublisherSupportUrl: https://github.com/jdx/mise +Author: jdx +PackageName: mise-en-place +PackageUrl: https://mise.jdx.dev/ +License: MIT +LicenseUrl: https://github.com/jdx/mise/blob/HEAD/LICENSE +ShortDescription: Dev tools, env vars, tasks +Moniker: mise +ReleaseNotes: |- + This release fixes cross-device tool installation failures, makes lockfile provenance resolution deterministic across platforms, and adds sandbox field support to task templates. Several smaller fixes address env precedence in multi-environment setups and spurious warnings from tools=true module hooks. + Highlights + - Cross-device tool installation -- Installing bun, deno, erlang, java, or ruby no longer fails when the downloads directory and installs directory are on different filesystems (e.g., Docker cache mounts). mise now falls back to copy+remove when rename() returns a cross-device error. + - Deterministic lockfile provenance -- mise lock now resolves SLSA provenance URLs for all target platforms, not just the current host. This eliminates non-deterministic lockfile diffs when running mise lock on different machines. + - Sandbox fields in task templates -- Task templates now support all sandbox fields (deny_all, deny_read, deny_write, deny_net, deny_env, allow_read, allow_write, allow_net, allow_env), with deny fields composing restrictively and allow lists combining template and task-local values. + Fixed + - Cross-device tool installation -- When the downloads folder is on a different mount than the installs folder (common with Docker cache mounts or devcontainers), rename() fails with EXDEV. mise now uses a move_file helper that falls back to copy+remove, fixing installation of bun, deno, erlang, java, and ruby in these setups. #9032 by @bgeron + - Deterministic SLSA provenance in lockfiles -- mise lock previously only resolved full SLSA provenance URLs for the current host platform, writing provenance = "slsa" (short form) for cross-platform entries. Now both the GitHub and Aqua backends resolve provenance URLs for all target platforms, producing byte-for-byte identical lockfiles regardless of which machine generates them. #8982 by @cameronbrill + - Sandbox fields in task templates -- Task templates now accept sandbox configuration fields. Deny fields compose restrictively (OR with task-local settings), and allow lists combine template values with task-local values. #9046 by @risu729 + [task_templates.restricted] + deny_net = true + allow_env = ["CI"] + [tasks.build] + extends = "restricted" + allow_env = ["NODE_ENV"] # combined: ["CI", "NODE_ENV"] + - Env precedence for task config -- With multiple MISE_ENV values (e.g., MISE_ENV=prod,ci), task_config.includes and task_config.dir now correctly respect the documented last-env-wins precedence. Previously the order was reversed, causing the wrong profile's task config to take effect. #9039 by @risu729 + - Spurious warnings from tools=true module hooks -- When a vfox backend tool triggered dependency_env(), it previously resolved all tools=true env modules with an incomplete PATH, causing "command not found" warnings. The dependency env now skips tools=true module resolution entirely. #9011 by @jdx + - Implicit self_update with rustls features -- Building mise with --features rustls or --features rustls-native-roots no longer implicitly enables the self_update feature. The self_update/rustls entries in these feature lists were redundant and caused the optional self_update dependency to be silently pulled in. #9040 by @salim-b + - JSON schema completeness -- Added missing fields to the mise JSON schema: sandbox fields on tasks, legacy top-level env_file/dotenv/env_path shortcuts (marked deprecated), and age encryption directive options with proper nesting. #9044 by @risu729 + - Windows .exe in release checksums -- Release builds now publish the extracted mise.exe alongside the Windows .zip archives and include it in SHASUMS256.txt, enabling SHA256 verification of the standalone binary (e.g., by mise-action). #8997 by @zeitlinger + - granted registry entry -- Updated the granted tool to point to the new fwdcloudsec/granted repository after the project moved from common-fate/granted. #9033 by @risu729 + New Contributors + - @bgeron made their first contribution in #9032 + - @salim-b made their first contribution in #9040 + Full Changelog: v2026.4.8...v2026.4.9 +ReleaseNotesUrl: https://github.com/jdx/mise/releases/tag/v2026.4.9 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/jdx/mise/2026.4.9/jdx.mise.yaml b/manifests/j/jdx/mise/2026.4.9/jdx.mise.yaml new file mode 100644 index 0000000000000..3e51d66515825 --- /dev/null +++ b/manifests/j/jdx/mise/2026.4.9/jdx.mise.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: jdx.mise +PackageVersion: 2026.4.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 4259d9f16adff650f4e51e30d6b6562031e04477 Mon Sep 17 00:00:00 2001 From: Gorniaky <30408913+Gorniaky@users.noreply.github.com> Date: Sun, 12 Apr 2026 03:27:02 -0300 Subject: [PATCH 78/87] New version: Discloud.CLI version 0.12.4 (#358526) --- .../CLI/0.12.4/Discloud.CLI.installer.yaml | 16 ++++++++++++ .../CLI/0.12.4/Discloud.CLI.locale.en-US.yaml | 25 +++++++++++++++++++ .../d/Discloud/CLI/0.12.4/Discloud.CLI.yaml | 8 ++++++ 3 files changed, 49 insertions(+) create mode 100644 manifests/d/Discloud/CLI/0.12.4/Discloud.CLI.installer.yaml create mode 100644 manifests/d/Discloud/CLI/0.12.4/Discloud.CLI.locale.en-US.yaml create mode 100644 manifests/d/Discloud/CLI/0.12.4/Discloud.CLI.yaml diff --git a/manifests/d/Discloud/CLI/0.12.4/Discloud.CLI.installer.yaml b/manifests/d/Discloud/CLI/0.12.4/Discloud.CLI.installer.yaml new file mode 100644 index 0000000000000..fa34a490ccd15 --- /dev/null +++ b/manifests/d/Discloud/CLI/0.12.4/Discloud.CLI.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Discloud.CLI +PackageVersion: 0.12.4 +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/discloud/cli-dart/releases/download/0.12.4/discloud-cli-x64-setup.exe + InstallerSha256: C004F976375037C6ADB592667F9B692DDCF7665534B7FE3F8075A51C8DC4E54D +- Architecture: arm64 + InstallerUrl: https://github.com/discloud/cli-dart/releases/download/0.12.4/discloud-cli-x64-setup.exe + InstallerSha256: C004F976375037C6ADB592667F9B692DDCF7665534B7FE3F8075A51C8DC4E54D +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-04-12 diff --git a/manifests/d/Discloud/CLI/0.12.4/Discloud.CLI.locale.en-US.yaml b/manifests/d/Discloud/CLI/0.12.4/Discloud.CLI.locale.en-US.yaml new file mode 100644 index 0000000000000..c4c1bfcabc260 --- /dev/null +++ b/manifests/d/Discloud/CLI/0.12.4/Discloud.CLI.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Discloud.CLI +PackageVersion: 0.12.4 +PackageLocale: en-US +Publisher: Discloud +PublisherUrl: https://github.com/discloud +PublisherSupportUrl: https://docs.discloud.com/faq/where-to-get-help +PrivacyUrl: https://github.com/discloud/legal/blob/main/terms-en.md +Author: Discloud +PackageName: Discloud CLI +PackageUrl: https://github.com/discloud/cli-dart +License: Apache 2.0 +LicenseUrl: https://github.com/discloud/cli-dart/blob/main/LICENSE +Copyright: Copyright © 2026 Discloud +ShortDescription: Discloud CLI Setup +Description: A fast option to manage your apps on Discloud. +Moniker: discloudcli +Tags: +- discloudbot +- host +ReleaseNotesUrl: https://github.com/discloud/cli-dart/releases/tag/0.12.4 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discloud/CLI/0.12.4/Discloud.CLI.yaml b/manifests/d/Discloud/CLI/0.12.4/Discloud.CLI.yaml new file mode 100644 index 0000000000000..58c118f088120 --- /dev/null +++ b/manifests/d/Discloud/CLI/0.12.4/Discloud.CLI.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: Discloud.CLI +PackageVersion: 0.12.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 6ef51d96e951e57c3b21ab95bd5f169c01c1a9b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= <31723128+kris6673@users.noreply.github.com> Date: Sun, 12 Apr 2026 08:28:17 +0200 Subject: [PATCH 79/87] New version: GAM-Team.gam version 7.40.02 (#358527) --- .../gam/7.40.02/GAM-Team.gam.installer.yaml | 21 ++++++++++ .../7.40.02/GAM-Team.gam.locale.en-US.yaml | 39 +++++++++++++++++++ .../g/GAM-Team/gam/7.40.02/GAM-Team.gam.yaml | 8 ++++ 3 files changed, 68 insertions(+) create mode 100644 manifests/g/GAM-Team/gam/7.40.02/GAM-Team.gam.installer.yaml create mode 100644 manifests/g/GAM-Team/gam/7.40.02/GAM-Team.gam.locale.en-US.yaml create mode 100644 manifests/g/GAM-Team/gam/7.40.02/GAM-Team.gam.yaml diff --git a/manifests/g/GAM-Team/gam/7.40.02/GAM-Team.gam.installer.yaml b/manifests/g/GAM-Team/gam/7.40.02/GAM-Team.gam.installer.yaml new file mode 100644 index 0000000000000..c29cbd4fabf9c --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.40.02/GAM-Team.gam.installer.yaml @@ -0,0 +1,21 @@ +# 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: GAM-Team.gam +PackageVersion: 7.40.02 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +ProductCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}_is1' +ReleaseDate: 2026-04-12 +AppsAndFeaturesEntries: +- ProductCode: '{D86B52B2-EFE9-4F9D-8BA3-9D84B9B2D319}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%SystemDrive%\GAM7' +Installers: +- Architecture: arm64 + InstallerUrl: https://github.com/GAM-team/GAM/releases/download/v7.40.02/gam-7.40.02-windows-arm64.exe + InstallerSha256: 50D326791BF1E80743581167084C2FB835CC4AEDB245B98B987964C56F0565EC +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/GAM-Team/gam/7.40.02/GAM-Team.gam.locale.en-US.yaml b/manifests/g/GAM-Team/gam/7.40.02/GAM-Team.gam.locale.en-US.yaml new file mode 100644 index 0000000000000..df4a1c5926015 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.40.02/GAM-Team.gam.locale.en-US.yaml @@ -0,0 +1,39 @@ +# 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: GAM-Team.gam +PackageVersion: 7.40.02 +PackageLocale: en-US +Publisher: GAM Team - google-apps-manager@googlegroups.com +PublisherUrl: https://github.com/GAM-team +PublisherSupportUrl: https://github.com/GAM-team/GAM/issues +PackageName: gam +PackageUrl: https://github.com/GAM-team/GAM +License: Apache-2.0 +LicenseUrl: https://github.com/GAM-team/GAM/blob/HEAD/LICENSE +ShortDescription: command line management for Google Workspace +Tags: +- gam +- google +- google-admin-sdk +- google-api +- google-apps +- google-calendar +- google-cloud +- google-drive +- google-workspace +- gsuite +- oauth2 +- oauth2-client +- python +ReleaseNotes: |- + - 7.40.02 + Updated gam info|print cigroups and gam print|show cigroup-members to handle trap caused + by API returning invalid member data; preferredMemberKey with no id. + - See Update History +ReleaseNotesUrl: https://github.com/GAM-team/GAM/releases/tag/v7.40.02 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/GAM-team/GAM/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GAM-Team/gam/7.40.02/GAM-Team.gam.yaml b/manifests/g/GAM-Team/gam/7.40.02/GAM-Team.gam.yaml new file mode 100644 index 0000000000000..9eb9b5fe1dc32 --- /dev/null +++ b/manifests/g/GAM-Team/gam/7.40.02/GAM-Team.gam.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: GAM-Team.gam +PackageVersion: 7.40.02 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From f95abc7670704b426af1072f68ac980ac12a897f Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sun, 12 Apr 2026 14:52:58 +0800 Subject: [PATCH 80/87] New version: Anthropic.ClaudeCode version 2.1.104 (#358523) --- .../Anthropic.ClaudeCode.installer.yaml | 18 +++++++++ .../Anthropic.ClaudeCode.locale.en-US.yaml | 38 +++++++++++++++++++ .../Anthropic.ClaudeCode.locale.zh-CN.yaml | 31 +++++++++++++++ .../2.1.104/Anthropic.ClaudeCode.yaml | 8 ++++ 4 files changed, 95 insertions(+) create mode 100644 manifests/a/Anthropic/ClaudeCode/2.1.104/Anthropic.ClaudeCode.installer.yaml create mode 100644 manifests/a/Anthropic/ClaudeCode/2.1.104/Anthropic.ClaudeCode.locale.en-US.yaml create mode 100644 manifests/a/Anthropic/ClaudeCode/2.1.104/Anthropic.ClaudeCode.locale.zh-CN.yaml create mode 100644 manifests/a/Anthropic/ClaudeCode/2.1.104/Anthropic.ClaudeCode.yaml diff --git a/manifests/a/Anthropic/ClaudeCode/2.1.104/Anthropic.ClaudeCode.installer.yaml b/manifests/a/Anthropic/ClaudeCode/2.1.104/Anthropic.ClaudeCode.installer.yaml new file mode 100644 index 0000000000000..9c99b99185634 --- /dev/null +++ b/manifests/a/Anthropic/ClaudeCode/2.1.104/Anthropic.ClaudeCode.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Anthropic.ClaudeCode +PackageVersion: 2.1.104 +InstallerType: portable +Commands: +- claude +ReleaseDate: 2026-04-12 +Installers: +- Architecture: x64 + InstallerUrl: https://storage.googleapis.com/claude-code-dist-86c565f3-f756-42ad-8dfa-d59b1c096819/claude-code-releases/2.1.104/win32-x64/claude.exe + InstallerSha256: DD575768C8815D26A7771E4648DDC1100CB9F284D761E3C081D9E4B69B3A96A7 +- Architecture: arm64 + InstallerUrl: https://storage.googleapis.com/claude-code-dist-86c565f3-f756-42ad-8dfa-d59b1c096819/claude-code-releases/2.1.104/win32-arm64/claude.exe + InstallerSha256: 395469D75B80A3B1C3DADBB7CA5C93ADAF8732C5FC96F1F1CA0B6A3548909141 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/Anthropic/ClaudeCode/2.1.104/Anthropic.ClaudeCode.locale.en-US.yaml b/manifests/a/Anthropic/ClaudeCode/2.1.104/Anthropic.ClaudeCode.locale.en-US.yaml new file mode 100644 index 0000000000000..2dd660ee84324 --- /dev/null +++ b/manifests/a/Anthropic/ClaudeCode/2.1.104/Anthropic.ClaudeCode.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.12.0.schema.json + +PackageIdentifier: Anthropic.ClaudeCode +PackageVersion: 2.1.104 +PackageLocale: en-US +Publisher: Anthropic PBC +Author: Anthropic PBC +PackageName: Claude Code +License: Proprietary +Copyright: © 2026 Anthropic PBC +ShortDescription: Unleash Claude’s raw power directly in your terminal. Search million-line codebases instantly. Turn hours-long workflows into a single command. Your tools. Your workflow. Your codebase, evolving at thought speed. +Description: |- + Claude Code is Anthropic’s agentic coding tool that lives in your terminal and helps you turn ideas into code faster than ever before. + What Claude Code does for you + - Build features from descriptions: Tell Claude what you want to build in plain English. It will make a plan, write the code, and ensure it works. + - Debug and fix issues: Describe a bug or paste an error message. Claude Code will analyze your codebase, identify the problem, and implement a fix. + - Navigate any codebase: Ask anything about your team’s codebase, and get a thoughtful answer back. Claude Code maintains awareness of your entire project structure, can find up-to-date information from the web, and with MCP can pull from external datasources like Google Drive, Figma, and Slack. + - Automate tedious tasks: Fix fiddly lint issues, resolve merge conflicts, and write release notes. Do all this in a single command from your developer machines, or automatically in CI. + Why developers love Claude Code + - Works in your terminal: Not another chat window. Not another IDE. Claude Code meets you where you already work, with the tools you already love. + - Takes action: Claude Code can directly edit files, run commands, and create commits. Need more? MCP lets Claude read your design docs in Google Drive, update your tickets in Jira, or use your custom developer tooling. + - Unix philosophy: Claude Code is composable and scriptable. tail -f app.log | claude -p "Slack me if you see any anomalies appear in this log stream" works. Your CI can run claude -p "If there are new text strings, translate them into French and raise a PR for @lang-fr-team to review". + - Enterprise-ready: Use Anthropic’s API, or host on AWS or GCP. Enterprise-grade security, privacy, and compliance is built-in. +Tags: +- agent +- agentic +- ai +- chatbot +- claude +- code +- coding +- large-language-model +- llm +- programming +ReleaseNotesUrl: https://github.com/anthropics/claude-code/blob/HEAD/CHANGELOG.md +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Anthropic/ClaudeCode/2.1.104/Anthropic.ClaudeCode.locale.zh-CN.yaml b/manifests/a/Anthropic/ClaudeCode/2.1.104/Anthropic.ClaudeCode.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f831ca09a3ac4 --- /dev/null +++ b/manifests/a/Anthropic/ClaudeCode/2.1.104/Anthropic.ClaudeCode.locale.zh-CN.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Anthropic.ClaudeCode +PackageVersion: 2.1.104 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 在终端中直接释放 Claude 的强大功能。即时搜索数百万行代码库,将耗时数小时的工作流程浓缩为单个命令,让你的工具、你的工作流、你的代码库以思维速度演化。 +Description: |- + Claude Code 是 Anthropic 推出的一款自主智能编程工具,在你的终端中运行,并以前所未有的速度帮助你将想法转化为代码。 + Claude Code 能为你做什么 + - 根据描述构建功能:用简单的英文告诉 Claude 你想要实现什么功能。它会制定计划、编写代码,并确保其正常运行。 + - 调试并修复问题:描述一个 Bug 或粘贴错误信息,Claude Code 会分析你的代码库,定位问题并自动实施修复。 + - 快速浏览任意代码库:针对团队的代码库提出任何问题,都能获得深入准确的回答。Claude Code 能理解整个项目的结构,可从网络获取最新信息,并通过 MCP 从 Google Drive、Figma、Slack 等外部数据源获取内容。 + - 自动化繁琐任务:修复棘手的代码格式问题、解决合并冲突、撰写发布说明。这些都可以通过开发者机器上的单条命令完成,也可以在 CI 中自动执行。 + 开发者为何喜爱 Claude Code + - 在终端中运行:无需打开新的聊天窗口,也不用切换 IDE。Claude Code 就在你熟悉的工作环境,配合你钟爱的工具使用。 + - 主动执行操作:Claude Code 可直接编辑文件、运行命令、创建提交。需要更多功能?MCP 让 Claude 能读取 Google Drive 中的设计文档、更新 Jira 工单,或集成你自定义的开发工具。 + - 遵循 Unix 哲学:Claude Code 可组合、可脚本化。例如,执行 tail -f app.log | claude -p "如果日志流中出现异常,通过 Slack 通知我" 即可生效。你的 CI 系统也可以运行 claude -p "如有新的文本字符串,将其翻译成法语并为 @lang-fr-team 创建 PR 审阅"。 + - 企业级就绪:支持使用 Anthropic 的 API,或部署在 AWS 与 GCP 上。内置企业级的安全性、隐私保护和合规能力。 +Tags: +- claude +- 人工智能 +- 代码 +- 大语言模型 +- 智能体 +- 编程 +- 聊天机器人 +- 自主智能 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Anthropic/ClaudeCode/2.1.104/Anthropic.ClaudeCode.yaml b/manifests/a/Anthropic/ClaudeCode/2.1.104/Anthropic.ClaudeCode.yaml new file mode 100644 index 0000000000000..86c3f731c76f1 --- /dev/null +++ b/manifests/a/Anthropic/ClaudeCode/2.1.104/Anthropic.ClaudeCode.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: Anthropic.ClaudeCode +PackageVersion: 2.1.104 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From be284387a6b1401b55e644c2aa616b5eaf175154 Mon Sep 17 00:00:00 2001 From: relmer Date: Sat, 11 Apr 2026 23:56:58 -0700 Subject: [PATCH 81/87] New version: relmer.RCDir version 5.3.1403 (#358528) --- .../5.3.1403/relmer.RCDir.installer.yaml | 18 +++++++++++ .../5.3.1403/relmer.RCDir.locale.en-US.yaml | 32 +++++++++++++++++++ .../r/relmer/RCDir/5.3.1403/relmer.RCDir.yaml | 8 +++++ 3 files changed, 58 insertions(+) create mode 100644 manifests/r/relmer/RCDir/5.3.1403/relmer.RCDir.installer.yaml create mode 100644 manifests/r/relmer/RCDir/5.3.1403/relmer.RCDir.locale.en-US.yaml create mode 100644 manifests/r/relmer/RCDir/5.3.1403/relmer.RCDir.yaml diff --git a/manifests/r/relmer/RCDir/5.3.1403/relmer.RCDir.installer.yaml b/manifests/r/relmer/RCDir/5.3.1403/relmer.RCDir.installer.yaml new file mode 100644 index 0000000000000..2540fc704d8d4 --- /dev/null +++ b/manifests/r/relmer/RCDir/5.3.1403/relmer.RCDir.installer.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: relmer.RCDir +PackageVersion: 5.3.1403 +InstallerType: portable +Commands: +- rcdir +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/relmer/RCDir/releases/download/v5.3.1403/rcdir.exe + InstallerSha256: BE3918205B25E1B356C3833B942B3071B87E80609F47DF8A1CD4592AA0CD8060 +- Architecture: arm64 + InstallerUrl: https://github.com/relmer/RCDir/releases/download/v5.3.1403/rcdir-ARM64.exe + InstallerSha256: 61ED2ABFBADFEE4036BB1EE108012BC22BC5C301E7C4B9E2579428904F351713 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-04-12 diff --git a/manifests/r/relmer/RCDir/5.3.1403/relmer.RCDir.locale.en-US.yaml b/manifests/r/relmer/RCDir/5.3.1403/relmer.RCDir.locale.en-US.yaml new file mode 100644 index 0000000000000..f33491c474b8d --- /dev/null +++ b/manifests/r/relmer/RCDir/5.3.1403/relmer.RCDir.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: relmer.RCDir +PackageVersion: 5.3.1403 +PackageLocale: en-US +Publisher: relmer +PublisherUrl: https://github.com/relmer +PublisherSupportUrl: https://github.com/relmer/RCDir/issues +PackageName: RCDir +PackageUrl: https://github.com/relmer/RCDir +License: MIT +LicenseUrl: https://github.com/relmer/RCDir/blob/master/LICENSE +ShortDescription: Fast, colorized directory listing tool for Windows — written in Rust +Description: |- + RCDir ("Rusticolor Directory") is a fast, colorized directory listing tool for Windows consoles, + written in Rust. Features include color by extension and attributes, Nerd Font file and folder + icons, cloud sync status (OneDrive, iCloud), file owner display, NTFS alternate data streams, + sorting, recursion, wide output, and multi-threaded enumeration with native ARM64 support. + RCDir is a parallel Rust implementation of TCDir with feature parity. +Moniker: rcdir +Tags: +- cli +- command-line +- directory +- file-listing +- rust +- terminal +- windows +ReleaseNotesUrl: https://github.com/relmer/RCDir/releases/tag/v5.3.1403 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/relmer/RCDir/5.3.1403/relmer.RCDir.yaml b/manifests/r/relmer/RCDir/5.3.1403/relmer.RCDir.yaml new file mode 100644 index 0000000000000..e034623c3b4e9 --- /dev/null +++ b/manifests/r/relmer/RCDir/5.3.1403/relmer.RCDir.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: relmer.RCDir +PackageVersion: 5.3.1403 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 18cec0e5d6b56beb71b4043841f0bcae71ebc2c9 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sun, 12 Apr 2026 14:58:11 +0800 Subject: [PATCH 82/87] New version: Kindness-Kismet.Stelliberty version 1.2.277 (#358532) --- ...Kindness-Kismet.Stelliberty.installer.yaml | 18 ++++ ...dness-Kismet.Stelliberty.locale.en-US.yaml | 34 ++++++++ ...dness-Kismet.Stelliberty.locale.zh-CN.yaml | 82 +++++++++++++++++++ .../1.2.277/Kindness-Kismet.Stelliberty.yaml | 8 ++ 4 files changed, 142 insertions(+) create mode 100644 manifests/k/Kindness-Kismet/Stelliberty/1.2.277/Kindness-Kismet.Stelliberty.installer.yaml create mode 100644 manifests/k/Kindness-Kismet/Stelliberty/1.2.277/Kindness-Kismet.Stelliberty.locale.en-US.yaml create mode 100644 manifests/k/Kindness-Kismet/Stelliberty/1.2.277/Kindness-Kismet.Stelliberty.locale.zh-CN.yaml create mode 100644 manifests/k/Kindness-Kismet/Stelliberty/1.2.277/Kindness-Kismet.Stelliberty.yaml diff --git a/manifests/k/Kindness-Kismet/Stelliberty/1.2.277/Kindness-Kismet.Stelliberty.installer.yaml b/manifests/k/Kindness-Kismet/Stelliberty/1.2.277/Kindness-Kismet.Stelliberty.installer.yaml new file mode 100644 index 0000000000000..a2da92c143f74 --- /dev/null +++ b/manifests/k/Kindness-Kismet/Stelliberty/1.2.277/Kindness-Kismet.Stelliberty.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Kindness-Kismet.Stelliberty +PackageVersion: 1.2.277 +InstallerType: inno +Scope: machine +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: '{A1B2C3D4-E5F6-7890-0884D489-123456789ABC}}_is1' +ReleaseDate: 2026-04-12 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Kindness-Kismet/Stelliberty/releases/download/v1.2.277/Stelliberty-v1.2.277-windows-x64-setup.exe + InstallerSha256: C1DCF7A2D777306ED795122625EA8731A8814194287538EE6492204856A5F69B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kindness-Kismet/Stelliberty/1.2.277/Kindness-Kismet.Stelliberty.locale.en-US.yaml b/manifests/k/Kindness-Kismet/Stelliberty/1.2.277/Kindness-Kismet.Stelliberty.locale.en-US.yaml new file mode 100644 index 0000000000000..e90ca038dfe3d --- /dev/null +++ b/manifests/k/Kindness-Kismet/Stelliberty/1.2.277/Kindness-Kismet.Stelliberty.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Kindness-Kismet.Stelliberty +PackageVersion: 1.2.277 +PackageLocale: en-US +License: Freeware +ShortDescription: A modern cross-platform Clash client built with Flutter and Rust Featuring the unique MD3M (Material Design 3 Modern) visual style +Description: |- + A modern cross-platform Clash client built with Flutter and Rust Featuring the unique MD3M (Material Design 3 Modern) visual style + ✨ Features + - 🎨 MD3M Design System: Unique Material Design 3 Modern style combining MD3 color management with acrylic glass effects + - 🦀 Rust Backend: High-performance core powered by Rust with Flutter UI + - 🌐 Multi-language Support: Built-in i18n support using slang + - 🔧 Subscription Management: Full subscription and override configuration support + - 📊 Real-time Monitoring: Connection tracking and traffic statistics + - 🪟 Native Desktop Integration: Windows service, system tray, and auto-start support + - 🔄 Built-in UWP Loopback Manager: Manage Windows UWP app loopback exemptions (Windows only) + 🏆 Implementation Highlights + This might be one of the most detail-oriented Flutter desktop applications: + - ✨ System Tray Dark Mode: Adaptive tray icons for Windows dark/light themes + - 🚀 Flicker-Free Launch: Maximized window startup without visual artifacts + - 👻 Smooth Window Transitions: Show/hide animations without flickering + - 🎯 Pixel-Perfect UI: Carefully crafted MD3M design system +Tags: +- clash +- clash-meta +- clash-verge +- mihomo +- network +- proxy +- vpn +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kindness-Kismet/Stelliberty/1.2.277/Kindness-Kismet.Stelliberty.locale.zh-CN.yaml b/manifests/k/Kindness-Kismet/Stelliberty/1.2.277/Kindness-Kismet.Stelliberty.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a5c595beafecf --- /dev/null +++ b/manifests/k/Kindness-Kismet/Stelliberty/1.2.277/Kindness-Kismet.Stelliberty.locale.zh-CN.yaml @@ -0,0 +1,82 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Kindness-Kismet.Stelliberty +PackageVersion: 1.2.277 +PackageLocale: zh-CN +Publisher: Stelliberty +PublisherUrl: https://github.com/Kindness-Kismet +PublisherSupportUrl: https://github.com/Kindness-Kismet/Stelliberty/issues +PackageName: Stelliberty +PackageUrl: https://github.com/Kindness-Kismet/Stelliberty +License: 免费软件 +LicenseUrl: https://github.com/Kindness-Kismet/Stelliberty/blob/HEAD/LICENSE +Copyright: Copyright © 2026 Stelliberty. All rights reserved. +ShortDescription: 一款使用 Flutter 和 Rust 构建的现代跨平台 Clash 客户端,采用独特的 MD3M(Material Design 3 Modern)视觉风格 +Description: |- + 一款使用 Flutter 和 Rust 构建的现代跨平台 Clash 客户端,采用独特的 MD3M(Material Design 3 Modern)视觉风格 + ✨ 特性 + - 🎨 MD3M 设计系统:结合 MD3 色彩管理与亚克力玻璃效果的独特 Material Design 3 Modern 风格 + - 🦀 Rust 后端:由 Rust 提供高性能核心,搭配 Flutter 用户界面 + - 🌐 多语言支持:使用 slang 实现内置 i18n 支持 + - 🔧 订阅管理:完整支持订阅与覆盖配置 + - 📊 实时监控:连接追踪与流量统计 + - 🪟 原生桌面集成:支持 Windows 服务、系统托盘及自动启动 + - 🔄 内置 UWP 回环管理器:管理 Windows UWP 应用回环豁免(仅 Windows) + 🏆 实现亮点 + 这可能是最注重细节的 Flutter 桌面应用之一: + - ✨ 系统托盘暗黑模式:针对 Windows 明暗主题自适应的托盘图标 + - 🚀 无闪烁启动:最大化窗口启动无视觉瑕疵 + - 👻 平滑窗口过渡:显示/隐藏动画无闪烁 + - 🎯 像素级精准 UI:精心打造的 MD3M 设计系统 +Tags: +- clash +- clash-meta +- clash-verge +- mihomo +- vpn +- 代理 +- 网络 +ReleaseNotes: |- + 📦 构建信息 + 项目 内容 + 包名 stelliberty + 版本号 1.2.277 + Mihomo 核心 1.19.23 + - 修复延迟测试结果在一段时间后自动消失的问题 + English Version + - Fix delay test results disappearing after a period of time + + ❓ 故障排查 + Linux 启动问题 + 如果无法启动应用,请确保已为应用文件夹赋予权限: + # 进入应用目录 + cd /path/to/stelliberty + + # 赋予权限 + chmod 777 -R ./stelliberty + 端口被占用(Windows) + 如果遇到端口冲突: + # 1. 查找占用端口的进程 + netstat -ano | findstr :端口号 + + # 2. 结束进程(以管理员身份运行) + taskkill /F /PID XXX + ⚠️ 重要:必须以管理员身份运行命令提示符。服务模式启动的核心进程需要提升权限才能终止。 + 软件工作不正常 + 路径要求(ZIP 和 EXE 均适用): + - 路径中不应包含特殊字符(空格除外) + - 路径中不应包含非 ASCII 字符(如中文字符) + - 支持空格:D:\Program Files\Stelliberty ✅ + EXE 安装程序的位置限制: + 如果使用 EXE 安装程序,还有额外的安装位置限制: + - 系统盘(C:):仅允许 %LOCALAPPDATA%\Programs\*(如 C:\Users\用户名\AppData\Local\Programs\Stelliberty) + - 其他盘(D:、E: 等):无限制 + 💡 如需安装到 EXE 不允许的位置,请使用便携版 ZIP(无位置限制,但仍可能受系统目录权限影响)。 + 缺少运行库(Windows) + 如果应用程序在 Windows 上无法启动或立即崩溃,可能是缺少必需的 Visual C++ 运行库。 + 解决方案: + 安装 Visual C++ 运行库:vcredist - Visual C++ 运行库合集 +ReleaseNotesUrl: https://github.com/Kindness-Kismet/Stelliberty/releases/tag/v1.2.277 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kindness-Kismet/Stelliberty/1.2.277/Kindness-Kismet.Stelliberty.yaml b/manifests/k/Kindness-Kismet/Stelliberty/1.2.277/Kindness-Kismet.Stelliberty.yaml new file mode 100644 index 0000000000000..8074d2ef897bf --- /dev/null +++ b/manifests/k/Kindness-Kismet/Stelliberty/1.2.277/Kindness-Kismet.Stelliberty.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: Kindness-Kismet.Stelliberty +PackageVersion: 1.2.277 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 From eaa7b6262dbe42c86fc6a978d37b83116bf81d59 Mon Sep 17 00:00:00 2001 From: ilike2burnthing <59480337+ilike2burnthing@users.noreply.github.com> Date: Sun, 12 Apr 2026 07:59:38 +0100 Subject: [PATCH 83/87] New version: Jackett.Jackett version 0.24.1567 (#358533) --- .../0.24.1567/Jackett.Jackett.installer.yaml | 26 ++++++++++++ .../Jackett.Jackett.locale.en-US.yaml | 41 +++++++++++++++++++ .../Jackett/0.24.1567/Jackett.Jackett.yaml | 8 ++++ 3 files changed, 75 insertions(+) create mode 100644 manifests/j/Jackett/Jackett/0.24.1567/Jackett.Jackett.installer.yaml create mode 100644 manifests/j/Jackett/Jackett/0.24.1567/Jackett.Jackett.locale.en-US.yaml create mode 100644 manifests/j/Jackett/Jackett/0.24.1567/Jackett.Jackett.yaml diff --git a/manifests/j/Jackett/Jackett/0.24.1567/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.24.1567/Jackett.Jackett.installer.yaml new file mode 100644 index 0000000000000..b498516102bbc --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.24.1567/Jackett.Jackett.installer.yaml @@ -0,0 +1,26 @@ +# 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: Jackett.Jackett +PackageVersion: 0.24.1567 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ReleaseDate: 2026-04-11 +AppsAndFeaturesEntries: +- ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramData%\Jackett' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.24.1567/Jackett.Installer.Windows.exe + InstallerSha256: 094DFA24D58A4860500630FC48A68BC04ECBC229BC1899F3A596C6BCEEFB09B3 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/Jackett/Jackett/0.24.1567/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.24.1567/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 0000000000000..53a850a0a59f5 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.24.1567/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,41 @@ +# 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: Jackett.Jackett +PackageVersion: 0.24.1567 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/HEAD/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - 085e7af seedfile: new selectors resolves #5551 + - 98e50fa theoldschool: -> 9.1.1 resolves #13691 + - a7aafcc u2p: use only t=search and drop cat search. resolves #16642 + This list of changes was auto generated. +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.24.1567 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/Jackett/Jackett/0.24.1567/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.24.1567/Jackett.Jackett.yaml new file mode 100644 index 0000000000000..85131036d0cd1 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.24.1567/Jackett.Jackett.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: Jackett.Jackett +PackageVersion: 0.24.1567 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From dc477607ab3c9b940a2f8d2548becb1ef383a257 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=B8=AD=E9=B8=AD=E3=80=8C=E3=82=AB=E3=83=A2=E3=80=8D?= <89643991+DuckDuckStudio@users.noreply.github.com> Date: Sun, 12 Apr 2026 15:28:05 +0800 Subject: [PATCH 84/87] Modify: FrancescoSorge.WinPower version 0.1 (#358529) --- .../WinPower/0.1/FrancescoSorge.WinPower.installer.yaml | 8 ++++---- .../0.1/FrancescoSorge.WinPower.locale.en-US.yaml | 4 ++-- .../WinPower/0.1/FrancescoSorge.WinPower.yaml | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/manifests/f/FrancescoSorge/WinPower/0.1/FrancescoSorge.WinPower.installer.yaml b/manifests/f/FrancescoSorge/WinPower/0.1/FrancescoSorge.WinPower.installer.yaml index 03b68eb54ca69..328de76096a09 100644 --- a/manifests/f/FrancescoSorge/WinPower/0.1/FrancescoSorge.WinPower.installer.yaml +++ b/manifests/f/FrancescoSorge/WinPower/0.1/FrancescoSorge.WinPower.installer.yaml @@ -1,5 +1,5 @@ # Created with YamlCreate.ps1 v2.2.9 $debug=AUSU.CRLF.5-1-19041-3031.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: FrancescoSorge.WinPower PackageVersion: "0.1" @@ -14,15 +14,15 @@ UpgradeBehavior: install Installers: - Architecture: x86 Scope: machine - InstallerUrl: https://static.francescosorge.com/file/francesco-sorge/2020-02/software/winpower/download/winpower-setup.exe + InstallerUrl: https://github.com/sorge13248/winpower/releases/download/v0.1/winpower-setup.exe InstallerSha256: 368403C7A7E316750010817DD9BD22B6A62F479F5EC8C075543E92E2EE113A69 InstallerSwitches: Custom: /ALLUSERS - Architecture: x86 Scope: user - InstallerUrl: https://static.francescosorge.com/file/francesco-sorge/2020-02/software/winpower/download/winpower-setup.exe + InstallerUrl: https://github.com/sorge13248/winpower/releases/download/v0.1/winpower-setup.exe InstallerSha256: 368403C7A7E316750010817DD9BD22B6A62F479F5EC8C075543E92E2EE113A69 InstallerSwitches: Custom: /CURRENTUSER ManifestType: installer -ManifestVersion: 1.4.0 +ManifestVersion: 1.12.0 diff --git a/manifests/f/FrancescoSorge/WinPower/0.1/FrancescoSorge.WinPower.locale.en-US.yaml b/manifests/f/FrancescoSorge/WinPower/0.1/FrancescoSorge.WinPower.locale.en-US.yaml index d295b8e6b9b20..c2f0df4e779fc 100644 --- a/manifests/f/FrancescoSorge/WinPower/0.1/FrancescoSorge.WinPower.locale.en-US.yaml +++ b/manifests/f/FrancescoSorge/WinPower/0.1/FrancescoSorge.WinPower.locale.en-US.yaml @@ -1,5 +1,5 @@ # Created with YamlCreate.ps1 v2.2.9 $debug=AUSU.CRLF.5-1-19041-3031.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: FrancescoSorge.WinPower PackageVersion: "0.1" @@ -30,4 +30,4 @@ Tags: # InstallationNotes: # Documentations: ManifestType: defaultLocale -ManifestVersion: 1.4.0 +ManifestVersion: 1.12.0 diff --git a/manifests/f/FrancescoSorge/WinPower/0.1/FrancescoSorge.WinPower.yaml b/manifests/f/FrancescoSorge/WinPower/0.1/FrancescoSorge.WinPower.yaml index 0a23b2c17d18c..45563a87935fb 100644 --- a/manifests/f/FrancescoSorge/WinPower/0.1/FrancescoSorge.WinPower.yaml +++ b/manifests/f/FrancescoSorge/WinPower/0.1/FrancescoSorge.WinPower.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 v2.2.9 $debug=AUSU.CRLF.5-1-19041-3031.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: FrancescoSorge.WinPower PackageVersion: "0.1" DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.4.0 +ManifestVersion: 1.12.0 From a5ffbad08fce29fd67889162621fb9bb93b6a0e4 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sun, 12 Apr 2026 15:29:20 +0800 Subject: [PATCH 85/87] Update: Waytech.CloudDrive2 version 1.0 (1.0.5) (#358534) --- .../1.0/Waytech.CloudDrive2.installer.yaml | 10 +++++----- .../1.0/Waytech.CloudDrive2.locale.en-US.yaml | 2 +- .../1.0/Waytech.CloudDrive2.locale.zh-CN.yaml | 17 ++++++++--------- 3 files changed, 14 insertions(+), 15 deletions(-) diff --git a/manifests/w/Waytech/CloudDrive2/1.0/Waytech.CloudDrive2.installer.yaml b/manifests/w/Waytech/CloudDrive2/1.0/Waytech.CloudDrive2.installer.yaml index fc22b2743a071..75fb68b157745 100644 --- a/manifests/w/Waytech/CloudDrive2/1.0/Waytech.CloudDrive2.installer.yaml +++ b/manifests/w/Waytech/CloudDrive2/1.0/Waytech.CloudDrive2.installer.yaml @@ -7,13 +7,13 @@ InstallerType: inno Scope: machine UpgradeBehavior: install ProductCode: '{6A67D75D-B097-4828-B0DA-9257E00ECEF4}_is1' -ReleaseDate: 2026-04-02 +ReleaseDate: 2026-04-12 Installers: - Architecture: x64 - InstallerUrl: https://github.com/cloud-fs/cloud-fs.github.io/releases/download/v1.0.4/CloudDrive2Setup-X64-1.0.4.exe - InstallerSha256: 76C2F7E0DC7FDC76E7DA22CA636A3795A177F0AB5FF69D232142B0609CC956DB + InstallerUrl: https://github.com/cloud-fs/cloud-fs.github.io/releases/download/v1.0.5/CloudDrive2Setup-X64-1.0.5.exe + InstallerSha256: 30AB17753C16371343BF13D339EFC6E2B64AE6E466607A0FFDB914D323346806 - Architecture: arm64 - InstallerUrl: https://github.com/cloud-fs/cloud-fs.github.io/releases/download/v1.0.4/CloudDrive2Setup-Arm64-1.0.4.exe - InstallerSha256: 6CA53C178ED64F84C8D2A6F7AF66EDF2290F097F25FCC2018909CCA8DB333FDC + InstallerUrl: https://github.com/cloud-fs/cloud-fs.github.io/releases/download/v1.0.5/CloudDrive2Setup-Arm64-1.0.5.exe + InstallerSha256: 8DB35C7D4A9120F3BD17BE582CF6D90948730DCA91181355BEF6E3C3AF8811A8 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/w/Waytech/CloudDrive2/1.0/Waytech.CloudDrive2.locale.en-US.yaml b/manifests/w/Waytech/CloudDrive2/1.0/Waytech.CloudDrive2.locale.en-US.yaml index c9c228322e46d..39df77564e8ea 100644 --- a/manifests/w/Waytech/CloudDrive2/1.0/Waytech.CloudDrive2.locale.en-US.yaml +++ b/manifests/w/Waytech/CloudDrive2/1.0/Waytech.CloudDrive2.locale.en-US.yaml @@ -26,7 +26,7 @@ Tags: - server - share - storage -ReleaseNotesUrl: https://github.com/cloud-fs/cloud-fs.github.io/releases/tag/v1.0.4 +ReleaseNotesUrl: https://github.com/cloud-fs/cloud-fs.github.io/releases/tag/v1.0.5 PurchaseUrl: https://www.clouddrive2.com/pricing.html ManifestType: defaultLocale ManifestVersion: 1.12.0 diff --git a/manifests/w/Waytech/CloudDrive2/1.0/Waytech.CloudDrive2.locale.zh-CN.yaml b/manifests/w/Waytech/CloudDrive2/1.0/Waytech.CloudDrive2.locale.zh-CN.yaml index fc133be28771c..68dca790a0186 100644 --- a/manifests/w/Waytech/CloudDrive2/1.0/Waytech.CloudDrive2.locale.zh-CN.yaml +++ b/manifests/w/Waytech/CloudDrive2/1.0/Waytech.CloudDrive2.locale.zh-CN.yaml @@ -28,15 +28,14 @@ Tags: - 文件 - 服务器 ReleaseNotes: |- - 1. 修复以点开头的文件(如 .DS_Store)无法匹配上传和备份忽略扩展名规则的问题 - 2. 修复云存储代理服务器不可用时 FUSE statfs 长时间阻塞的问题,新增 15 秒超时,超时的云盘暂不计入磁盘空间统计,待恢复后会自动更新 - 3. 移动复制时冲突解决对话框中显示冲突文件列表 - 4. 修复备份文件过滤规则页面"添加规则"下拉菜单被裁剪的问题 - 5. 修复面包屑编辑器在有自动补全候选项时按回车无法导航的问题 - 6. 修复日志页面下载链接失效的问题 - 7. 修复 Shift 点击范围选择未考虑当前文件过滤器的问题 - 8. 其它 bug 修复和性能改进 -ReleaseNotesUrl: https://github.com/cloud-fs/cloud-fs.github.io/releases/tag/v1.0.4 + 1. macOS 全新异步挂载引擎:直接与 macfuse 内核扩展通信, 支持完全异步并发,文件读取不再阻塞目录浏览,多个文件可同时读写,多线程同时从 FUSE 设备接收内核请求,避免单线程瓶颈导致的请求挤压,大幅改善 Finder 在大量文件操作时的流畅度;运行时动态检测 macfuse,未安装 macfuse 时给出错误提示而不是程序无法启动 + 2. 上传任务数据库从 PickleDB 迁移至 SQLite,重启后保持上传任务顺序 + 3. 修复在某些情况下,重启机器后多个备份任务状态被禁用,只能重启服务才能重新允许的问题 + 4. 离线下载支持.torrent 文件,可直接拖拽或者上传.torrent 文件,.torrent 文件会被解析成磁力链接后添加 + 5. 右键菜单新增云盘配置和文件夹磁盘缓存快捷入口,不再需要先打开属性面板才能设置云盘配置和磁盘缓存 + 6. 本地文件夹不再显示云盘配置和磁盘缓存配置 + 7. 其它性能改进、bug 修复和界面优化 +ReleaseNotesUrl: https://github.com/cloud-fs/cloud-fs.github.io/releases/tag/v1.0.5 PurchaseUrl: https://www.clouddrive2.com/pricing.html ManifestType: locale ManifestVersion: 1.12.0 From ddb059fe165364f9c0d3700d615ddde4763dcaed Mon Sep 17 00:00:00 2001 From: DaMn good B0t <143536629+damn-good-b0t@users.noreply.github.com> Date: Sun, 12 Apr 2026 09:30:28 +0200 Subject: [PATCH 86/87] New version: bcssov.IronyModManager version 1.27.167 (#358535) --- .../bcssov.IronyModManager.installer.yaml | 35 +++++++++ .../bcssov.IronyModManager.locale.en-US.yaml | 77 +++++++++++++++++++ .../1.27.167/bcssov.IronyModManager.yaml | 8 ++ 3 files changed, 120 insertions(+) create mode 100644 manifests/b/bcssov/IronyModManager/1.27.167/bcssov.IronyModManager.installer.yaml create mode 100644 manifests/b/bcssov/IronyModManager/1.27.167/bcssov.IronyModManager.locale.en-US.yaml create mode 100644 manifests/b/bcssov/IronyModManager/1.27.167/bcssov.IronyModManager.yaml diff --git a/manifests/b/bcssov/IronyModManager/1.27.167/bcssov.IronyModManager.installer.yaml b/manifests/b/bcssov/IronyModManager/1.27.167/bcssov.IronyModManager.installer.yaml new file mode 100644 index 0000000000000..5c972c903db88 --- /dev/null +++ b/manifests/b/bcssov/IronyModManager/1.27.167/bcssov.IronyModManager.installer.yaml @@ -0,0 +1,35 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: bcssov.IronyModManager +PackageVersion: 1.27.167 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: inno +NestedInstallerFiles: +- RelativeFilePath: win-x64-setup.exe +ProductCode: '{8AAA7D9F-2192-4A6B-AAEE-EBB2A355EF75}_is1' +ReleaseDate: 2026-04-12 +AppsAndFeaturesEntries: +- DisplayName: Irony Mod Manager v{code:getSetupVersion|1.27.167+36afce11c9} + Publisher: Mario + DisplayVersion: 1.27.167+36afce11c9 + ProductCode: '{8AAA7D9F-2192-4A6B-AAEE-EBB2A355EF75}_is1' +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/bcssov/IronyModManager/releases/download/v1.27.167/win-x64-setup.zip + InstallerSha256: 55518556987C6546806A854BC5006437E856D207CC9BD53AC767761F82B412C6 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/bcssov/IronyModManager/releases/download/v1.27.167/win-x64-setup.zip + InstallerSha256: 55518556987C6546806A854BC5006437E856D207CC9BD53AC767761F82B412C6 + InstallerSwitches: + Custom: /ALLUSERS + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Irony Mod Manager' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/bcssov/IronyModManager/1.27.167/bcssov.IronyModManager.locale.en-US.yaml b/manifests/b/bcssov/IronyModManager/1.27.167/bcssov.IronyModManager.locale.en-US.yaml new file mode 100644 index 0000000000000..34b6d217b66b2 --- /dev/null +++ b/manifests/b/bcssov/IronyModManager/1.27.167/bcssov.IronyModManager.locale.en-US.yaml @@ -0,0 +1,77 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: bcssov.IronyModManager +PackageVersion: 1.27.167 +PackageLocale: en-US +Publisher: bcssov +PublisherUrl: https://github.com/bcssov +PublisherSupportUrl: https://github.com/bcssov/IronyModManager/issues +PackageName: Irony Mod Manager +PackageUrl: https://github.com/bcssov/IronyModManager +License: MIT +LicenseUrl: https://github.com/bcssov/IronyModManager/blob/HEAD/LICENSE +ShortDescription: Mod Manager for Paradox Games. +Tags: +- ck3 +- crusader-kings-3 +- crusader-kings-iii +- eu4 +- europa-universalis-4 +- europa-universalis-iv +- hearts-of-iron-4 +- hearts-of-iron-iv +- hoi4 +- imperatorrome +- mod-manager +- paradox +- paradox-interactive +- stellaris +- victoria +- victoria3 +ReleaseNotes: |- + Current Release Notes + - Fix duplicate steam entries + Release Notes 1.27 + - Update dependencies + - HOI4 1.17 CS support + - Stellaris 4.2 CS support + - EU5 mod management support + - Proton game launching on Linux + - Optional GenerateSteamAppId flag to create steam_appid.txt when missing (used for enabling Steam activity tracking when launching games directly; off by default) + - Added StoragePath setting to customize where Irony stores and reads its data + - Irony is now Flatpak-aware (detects and supports Steam Flatpak installations) + Which file should I download? + Windows + - Portable version: win-x64.zip + - Installer version: win-x64-setup.zip + MacOS + - Portable version: osx-x64.zip + Linux + - Portable version: linux-x64.zip + How to run Irony + Windows + Portable build + 1. Download win-x64.zip + 2. Extract it anywhere + 3. Run IronyModManager.exe + Installer build + 1. Download win-x64-setup.zip + 2. Extract it + 3. Run win-x64-setup.exe + 4. Follow on-screen instructions + MacOS + 1. Download and extract osx-x64.zip + 2. Open Terminal + 3. Navigate to the folder: cd /path/to/Irony + 4. Make the file executable: chmod +x IronyModManager + 5. Run Irony: ./IronyModManager + (Important: ./ must be included.) + Linux + 1. Download and extract linux-x64.zip + 2. Open a terminal in the extracted directory + 3. Make Irony executable: chmod +x IronyModManager + 4. Run Irony: ./IronyModManager +ReleaseNotesUrl: https://github.com/bcssov/IronyModManager/releases/tag/v1.27.167 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/bcssov/IronyModManager/1.27.167/bcssov.IronyModManager.yaml b/manifests/b/bcssov/IronyModManager/1.27.167/bcssov.IronyModManager.yaml new file mode 100644 index 0000000000000..1e6a8c1e4fa9f --- /dev/null +++ b/manifests/b/bcssov/IronyModManager/1.27.167/bcssov.IronyModManager.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: bcssov.IronyModManager +PackageVersion: 1.27.167 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From f73e7c5999055a906344f861b99ab4871c3e5d57 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sun, 12 Apr 2026 15:59:32 +0800 Subject: [PATCH 87/87] Add version: Apache.Groovy.4 version 4.0.31 (#358531) --- .../4/4.0.31/Apache.Groovy.4.installer.yaml | 38 +++++++++++++++++++ .../4.0.31/Apache.Groovy.4.locale.en-US.yaml | 37 ++++++++++++++++++ .../4.0.31/Apache.Groovy.4.locale.zh-CN.yaml | 36 ++++++++++++++++++ .../Groovy/4/4.0.31/Apache.Groovy.4.yaml | 8 ++++ 4 files changed, 119 insertions(+) create mode 100644 manifests/a/Apache/Groovy/4/4.0.31/Apache.Groovy.4.installer.yaml create mode 100644 manifests/a/Apache/Groovy/4/4.0.31/Apache.Groovy.4.locale.en-US.yaml create mode 100644 manifests/a/Apache/Groovy/4/4.0.31/Apache.Groovy.4.locale.zh-CN.yaml create mode 100644 manifests/a/Apache/Groovy/4/4.0.31/Apache.Groovy.4.yaml diff --git a/manifests/a/Apache/Groovy/4/4.0.31/Apache.Groovy.4.installer.yaml b/manifests/a/Apache/Groovy/4/4.0.31/Apache.Groovy.4.installer.yaml new file mode 100644 index 0000000000000..86eb03faa41ce --- /dev/null +++ b/manifests/a/Apache/Groovy/4/4.0.31/Apache.Groovy.4.installer.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Apache.Groovy.4 +PackageVersion: 4.0.31 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: APPLICATIONFOLDER="" +UpgradeBehavior: install +Commands: +- grape +- groovy +- groovyc +- groovyConsole +- groovydoc +- groovysh +- java2groovy +- startGroovy +FileExtensions: +- groovy +- gsh +- gvy +- gy +ProductCode: '{C0845C5B-4CC3-49D3-B0CB-E6E2AEB253DB}' +AppsAndFeaturesEntries: +- DisplayName: Groovy + ProductCode: '{C0845C5B-4CC3-49D3-B0CB-E6E2AEB253DB}' + UpgradeCode: '{786BFBD0-0462-4AAD-B54E-70F1F3F58A9A}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\Groovy' +Installers: +- Architecture: x86 + InstallerUrl: https://groovy.jfrog.io/artifactory/dist-release-local/groovy-windows-installer/groovy-4.0.31/groovy-4.0.31.msi + InstallerSha256: 99D37E9B5687453EA4F64C37D2D3269A9F8F68E4ED53A40B1BEA3E2612D59AA5 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/Apache/Groovy/4/4.0.31/Apache.Groovy.4.locale.en-US.yaml b/manifests/a/Apache/Groovy/4/4.0.31/Apache.Groovy.4.locale.en-US.yaml new file mode 100644 index 0000000000000..632af584f3327 --- /dev/null +++ b/manifests/a/Apache/Groovy/4/4.0.31/Apache.Groovy.4.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.12.0.schema.json + +PackageIdentifier: Apache.Groovy.4 +PackageVersion: 4.0.31 +PackageLocale: en-US +Publisher: The Groovy Team +PublisherUrl: https://apache.org/ +PublisherSupportUrl: https://www.groovy-lang.org/support.html +PrivacyUrl: https://privacy.apache.org/policies/privacy-policy-public.html +Author: The Groovy Team +PackageName: Groovy 4 +PackageUrl: https://www.groovy-lang.org/ +License: Apache-2.0 +LicenseUrl: https://github.com/apache/groovy/blob/HEAD/LICENSE +Copyright: © 2003-2026 the Apache Groovy project +ShortDescription: A multi-faceted language for the Java platform +Description: Apache Groovy is a powerful, optionally typed and dynamic language, with static-typing and static compilation capabilities, for the Java platform aimed at improving developer productivity thanks to a concise, familiar and easy to learn syntax. It integrates smoothly with any Java program, and immediately delivers to your application powerful features, including scripting capabilities, Domain-Specific Language authoring, runtime and compile-time meta-programming and functional programming. +Moniker: groovy-4 +Tags: +- dynamic-typing +- functional-programming +- jvm-languages +- language +- metaprogramming +- programming +- programming-language +- static-typing +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://www.groovy-lang.org/documentation.html +- DocumentLabel: FAQ + DocumentUrl: https://www.groovy-lang.org/faq.html +- DocumentLabel: Learn + DocumentUrl: https://www.groovy-lang.org/learn.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Apache/Groovy/4/4.0.31/Apache.Groovy.4.locale.zh-CN.yaml b/manifests/a/Apache/Groovy/4/4.0.31/Apache.Groovy.4.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ebe61594f84b4 --- /dev/null +++ b/manifests/a/Apache/Groovy/4/4.0.31/Apache.Groovy.4.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Apache.Groovy.4 +PackageVersion: 4.0.31 +PackageLocale: zh-CN +Publisher: The Groovy Team +PublisherUrl: https://apache.org/ +PublisherSupportUrl: https://www.groovy-lang.org/support.html +PrivacyUrl: https://privacy.apache.org/policies/privacy-policy-public.html +Author: The Groovy Team +PackageName: Groovy 4 +PackageUrl: https://www.groovy-lang.org/ +License: Apache-2.0 +LicenseUrl: https://github.com/apache/groovy/blob/HEAD/LICENSE +Copyright: © 2003-2026 the Apache Groovy project +ShortDescription: 适用于 Java 平台的多功能语言 +Description: Apache Groovy 是一种功能强大、可选择类型的动态语言,具有静态类型和静态编译功能,适用于 Java 平台,旨在通过简洁、熟悉和易学的语法提高开发人员的工作效率。它能与任何 Java 程序顺利集成,并能立即为您的应用程序提供强大的功能,包括脚本能力、特定域语言编写、运行时和编译时元编程以及函数式编程。 +Tags: +- jvm语言 +- 元编程 +- 函数式编程 +- 动态类型 +- 编程 +- 编程语言 +- 语言 +- 静态类型 +Documentations: +- DocumentLabel: 学习 + DocumentUrl: https://www.groovy-lang.org/learn.html +- DocumentLabel: 常见问题 + DocumentUrl: https://www.groovy-lang.org/faq.html +- DocumentLabel: 文档 + DocumentUrl: https://www.groovy-lang.org/documentation.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Apache/Groovy/4/4.0.31/Apache.Groovy.4.yaml b/manifests/a/Apache/Groovy/4/4.0.31/Apache.Groovy.4.yaml new file mode 100644 index 0000000000000..f476a18814ddf --- /dev/null +++ b/manifests/a/Apache/Groovy/4/4.0.31/Apache.Groovy.4.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: Apache.Groovy.4 +PackageVersion: 4.0.31 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0