From e51a29e18206d9828c41150971bf9109b9d63206 Mon Sep 17 00:00:00 2001 From: Kaleb Luedtke Date: Fri, 29 May 2026 09:12:40 -0500 Subject: [PATCH 01/82] Remove broken script (#378782) --- Tools/SetPackageMoniker.ps1 | 122 ------------------------------------ 1 file changed, 122 deletions(-) delete mode 100644 Tools/SetPackageMoniker.ps1 diff --git a/Tools/SetPackageMoniker.ps1 b/Tools/SetPackageMoniker.ps1 deleted file mode 100644 index 5ffb9ef442f0..000000000000 --- a/Tools/SetPackageMoniker.ps1 +++ /dev/null @@ -1,122 +0,0 @@ -<# -.SYNOPSIS - Sets the moniker for a single package -.DESCRIPTION - This script will update the moniker for all versions of a package identifier -.EXAMPLE - PS C:\Projects\winget-pkgs> Get-Help .\Tools\SetPackageMoniker.ps1 -Full - Show this script's help -.EXAMPLE - PS C:\Projects\winget-pkgs> .\Tools\SetPackageMoniker.ps1 Google.Chrome chrome - Set the identifier of Google.Chrome to 'chrome' -.NOTES - Please file an issue if you run into errors with this script: - https://github.com/microsoft/winget-pkgs/issues -.LINK - https://github.com/microsoft/winget-pkgs/blob/master/Tools/SetPackageMoniker.ps1 -#> -#Requires -Version 5 - -[CmdletBinding()] -param ( - [Parameter(Mandatory = $true)] - [string] $PackageIdentifier, - [Parameter(Mandatory = $true)] - [string] $Moniker -) - -$ProgressPreference = 'SilentlyContinue' -$PSDefaultParameterValues = @{ '*:Encoding' = 'UTF8' } -$Utf8NoBomEncoding = New-Object System.Text.UTF8Encoding $False -$ManifestVersion = '1.6.0' -$Schema = "https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v$ManifestVersion/manifest.defaultLocale.$ManifestVersion.json" - -Function Restore-YamlKeyOrder { - [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSReviewUnusedParameter', 'InputObject', Justification = 'The variable is used inside a conditional but ScriptAnalyser does not recognize the scope')] - [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSReviewUnusedParameter', 'NoComments', Justification = 'The variable is used inside a conditional but ScriptAnalyser does not recognize the scope')] - Param - ( - [Parameter(Mandatory = $true, Position = 0)] - [PSCustomObject] $InputObject, - [Parameter(Mandatory = $true, Position = 1)] - [PSCustomObject] $SortOrder - ) - - - $_Temp = [ordered] @{} - $SortOrder.GetEnumerator() | ForEach-Object { - if ($InputObject.Contains($_)) { - $_Temp.Add($_, $InputObject[$_]) - } - } - return $_Temp -} - - -# Installs `powershell-yaml` as a dependency for parsing yaml content -if (-not(Get-Module -ListAvailable -Name powershell-yaml)) { - try { - Write-Verbose "PowerShell module 'powershell-yaml' was not found. Attempting to install it. . ." - Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force -Scope CurrentUser - Install-Module -Name powershell-yaml -Force -Repository PSGallery -Scope CurrentUser - } catch { - # If there was an exception while installing, pass it as an InternalException for further debugging - throw [UnmetDependencyException]::new("'powershell-yaml' unable to be installed successfully", $_.Exception) - } finally { - # Double check that it was installed properly - if (-not(Get-Module -ListAvailable -Name powershell-yaml)) { - throw [UnmetDependencyException]::new("'powershell-yaml' is not found") - } - Write-Verbose "PowerShell module 'powershell-yaml' was installed successfully" - } -} - -# Fetch Schema data from github for entry validation, key ordering, and automatic commenting -try { - $LocaleSchema = @(Invoke-WebRequest $Schema -UseBasicParsing | ConvertFrom-Json) - $LocaleProperties = (ConvertTo-Yaml $LocaleSchema.properties | ConvertFrom-Yaml -Ordered).Keys -} catch { - # Here we want to pass the exception as an inner exception for debugging if necessary - throw [System.Net.WebException]::new('Manifest schemas could not be downloaded. Try running the script again', $_.Exception) -} - -# Set the root folder where manifests should be loaded from -if (Test-Path -Path "$PSScriptRoot\..\manifests") { - $ManifestsFolder = (Resolve-Path "$PSScriptRoot\..\manifests").Path -} else { - $ManifestsFolder = (Resolve-Path '.\').Path -} - -$ManifestsFolder = Join-Path -Path $ManifestsFolder -ChildPath $PackageIdentifier.ToLower()[0] -AdditionalChildPath $PackageIdentifier.Split('.') - -Write-Verbose "Fetching list of manifests from $ManifestsFolder . . ." -$localeManifests = Get-ChildItem $ManifestsFolder -Recurse -Filter "$PackageIdentifier.locale.*.yaml" -Write-Verbose "Found $($localeManifests.Count) locale manifests" - -Write-Verbose 'Filtering manifests for Default Locale. . .' -$defaultLocaleManifests = $localeManifests.Where({ $_ | Get-Content -Raw | Select-String 'defaultLocale' }) -Write-Verbose "$($defaultLocaleManifests.Count) manifests are defaultLocale" - -Write-Information 'Updating monikers. . .' - -$defaultLocaleManifests | ForEach-Object { - $YamlContent = $_ | Get-Content | ConvertFrom-Yaml - if (-not ($YamlContent['Moniker'] -ceq $Moniker)) { - $YamlContent['Moniker'] = $Moniker - $YamlContent = Restore-YamlKeyOrder $YamlContent $LocaleProperties - [System.IO.File]::WriteAllLines($_.FullName, @( - # This regex looks for lines with the special character ⍰ and comments them out - $(ConvertTo-Yaml $YamlContent).TrimEnd() -replace "(.*)\s+$([char]0x2370)", "# `$1" - ), $Utf8NoBomEncoding) - - Write-Verbose "Updated $($_.FullName)" - } else { - Write-Verbose "Skipped $($_.FullName)" - } -} - - -class UnmetDependencyException : Exception { - UnmetDependencyException([string] $message) : base($message) {} - UnmetDependencyException([string] $message, [Exception] $exception) : base($message, $exception) {} -} From 4c3748e0487c22825202ab2fe6a216331e24a6e3 Mon Sep 17 00:00:00 2001 From: Kaleb Luedtke Date: Fri, 29 May 2026 09:15:45 -0500 Subject: [PATCH 02/82] Standardize Moniker for GrafanaLabs.Grafana.Enterprise 8.0.1.0 (#378423) --- .../8.0.1.0/GrafanaLabs.Grafana.Enterprise.locale.en-US.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/g/GrafanaLabs/Grafana/Enterprise/8.0.1.0/GrafanaLabs.Grafana.Enterprise.locale.en-US.yaml b/manifests/g/GrafanaLabs/Grafana/Enterprise/8.0.1.0/GrafanaLabs.Grafana.Enterprise.locale.en-US.yaml index df0fa9550d5c..a12e67fb1b30 100644 --- a/manifests/g/GrafanaLabs/Grafana/Enterprise/8.0.1.0/GrafanaLabs.Grafana.Enterprise.locale.en-US.yaml +++ b/manifests/g/GrafanaLabs/Grafana/Enterprise/8.0.1.0/GrafanaLabs.Grafana.Enterprise.locale.en-US.yaml @@ -17,7 +17,7 @@ LicenseUrl: https://grafana.com/legal/grafana-labs-license/ # CopyrightUrl: ShortDescription: Grafana allows you to query, visualize, alert on and understand your metrics no matter where they are stored. Create, explore, and share dashboards with your team and foster a data driven culture. Description: Grafana allows you to query, visualize, alert on and understand your metrics no matter where they are stored. Create, explore, and share dashboards with your team and foster a data driven culture. The Enterprise Edition has the same features as the Open Source Edition and can be used free of charge. It also has the benefit of allowing an upgrade to the full Enterprise feature set, including support for Enterprise plugins. -Moniker: grafana-e +Moniker: grafana-enterprise Tags: - dashboard - data From a5ab4a2b70f890f11847cd283c56c58417bc3183 Mon Sep 17 00:00:00 2001 From: HPX Group IT Team Date: Sat, 30 May 2026 02:16:12 +1200 Subject: [PATCH 03/82] New version: Microsoft.Edge version 148.0.3967.96 (#380973) --- .../Microsoft.Edge.installer.yaml | 51 +++++++++++++++++++ .../Microsoft.Edge.locale.en-US.yaml | 28 ++++++++++ .../Microsoft.Edge.locale.nb-NO.yaml | 21 ++++++++ .../Edge/148.0.3967.96/Microsoft.Edge.yaml | 8 +++ 4 files changed, 108 insertions(+) create mode 100644 manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.installer.yaml create mode 100644 manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.locale.en-US.yaml create mode 100644 manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.locale.nb-NO.yaml create mode 100644 manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.yaml diff --git a/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.installer.yaml b/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.installer.yaml new file mode 100644 index 000000000000..7230e2558532 --- /dev/null +++ b/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.installer.yaml @@ -0,0 +1,51 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.Edge +PackageVersion: 148.0.3967.96 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- msedge +Protocols: +- http +- https +FileExtensions: +- crx +- htm +- html +- pdf +- url +ReleaseDate: 2026-05-28 +Installers: +- Architecture: x86 + InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/e50790e3-cf2e-4023-a596-00ac90788516/MicrosoftEdgeEnterpriseX86.msi + InstallerSha256: 24566ECB7BC9128193C3D93B82E50BCD0C5BA9241960B683B81FE48262A646A7 + ProductCode: '{A48E77DA-A55A-3321-99ED-81D024AFC102}' + AppsAndFeaturesEntries: + - ProductCode: '{A48E77DA-A55A-3321-99ED-81D024AFC102}' + UpgradeCode: '{883C2625-37F7-357F-A0F4-DFAF391B2B9C}' +- Architecture: x64 + InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/1e31b6ea-8368-4a80-b494-2ffa12a70507/MicrosoftEdgeEnterpriseX64.msi + InstallerSha256: 022D78C7B2DFBE62DC97A1E5B6F7E373B2C90D91A484A98548928575C0AA2AC4 + ProductCode: '{B88B1266-51A5-378D-8E29-F8E4836E7B19}' + AppsAndFeaturesEntries: + - ProductCode: '{B88B1266-51A5-378D-8E29-F8E4836E7B19}' + UpgradeCode: '{883C2625-37F7-357F-A0F4-DFAF391B2B9C}' +- Architecture: arm64 + InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/cd1dfbac-a5ec-4fcb-9255-943b746d4adb/MicrosoftEdgeEnterpriseARM64.msi + InstallerSha256: a192c2408a8a6754d8ab797515691e7c56c3c51279ca76dee6641e98f0d52e18 + ProductCode: '{9E9C7C95-CF47-3F30-9A82-A8D454F31398}' + AppsAndFeaturesEntries: + - ProductCode: '{9E9C7C95-CF47-3F30-9A82-A8D454F31398}' + UpgradeCode: '{883C2625-37F7-357F-A0F4-DFAF391B2B9C}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.locale.en-US.yaml b/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.locale.en-US.yaml new file mode 100644 index 000000000000..a43d09a9976c --- /dev/null +++ b/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.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: Microsoft.Edge +PackageVersion: 148.0.3967.96 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/en-US +PublisherSupportUrl: https://support.microsoft.com/en-us/microsoft-edge +PrivacyUrl: https://privacy.microsoft.com/en-US/privacystatement +Author: Microsoft Corporation +PackageName: Microsoft Edge +PackageUrl: https://www.microsoft.com/en-us/edge +License: Microsoft Software License +LicenseUrl: https://www.microsoft.com/en-us/servicesagreement +Copyright: Copyright (C) Microsoft Corporation +CopyrightUrl: https://www.microsoft.com/en-us/servicesagreement +ShortDescription: World-class performance with more privacy, more productivity, and more value while you browse. +Moniker: microsoft-edge +Tags: +- blink +- browser +- chromium +- edge +- web +- web-browser +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.locale.nb-NO.yaml b/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.locale.nb-NO.yaml new file mode 100644 index 000000000000..b60552e4d858 --- /dev/null +++ b/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.locale.nb-NO.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.Edge +PackageVersion: 148.0.3967.96 +PackageLocale: nb-NO +Publisher: Microsoft Corporation +PublisherSupportUrl: https://support.microsoft.com/nb-NO/microsoft-edge +PrivacyUrl: https://privacy.microsoft.com/en-us/privacystatement +Author: Microsoft Corporation +PackageName: Microsoft Edge +PackageUrl: https://www.microsoft.com/nb-no/edge +License: Microsoft Software License +LicenseUrl: https://www.microsoft.com/nb-NO/servicesagreement +Copyright: Copyright (C) Microsoft Corporation +CopyrightUrl: https://www.microsoft.com/nb-NO/servicesagreement +ShortDescription: Ytelse i verdensklasse med mer privatliv, mer produktivitet og mer verdi mens du surfer. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.yaml b/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.yaml new file mode 100644 index 000000000000..5ca2395e2253 --- /dev/null +++ b/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.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: Microsoft.Edge +PackageVersion: 148.0.3967.96 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 7a085eb76429686ed78d81eb8128acfba7567475 Mon Sep 17 00:00:00 2001 From: Azure SDK Bot <53356347+azure-sdk@users.noreply.github.com> Date: Fri, 29 May 2026 07:16:32 -0700 Subject: [PATCH 04/82] New version: Microsoft.Azd version 1.25.400 (#381020) --- .../Azd/1.25.400/Microsoft.Azd.installer.yaml | 17 +++++++++++ .../1.25.400/Microsoft.Azd.locale.en-US.yaml | 28 +++++++++++++++++++ .../Microsoft/Azd/1.25.400/Microsoft.Azd.yaml | 8 ++++++ 3 files changed, 53 insertions(+) create mode 100644 manifests/m/Microsoft/Azd/1.25.400/Microsoft.Azd.installer.yaml create mode 100644 manifests/m/Microsoft/Azd/1.25.400/Microsoft.Azd.locale.en-US.yaml create mode 100644 manifests/m/Microsoft/Azd/1.25.400/Microsoft.Azd.yaml diff --git a/manifests/m/Microsoft/Azd/1.25.400/Microsoft.Azd.installer.yaml b/manifests/m/Microsoft/Azd/1.25.400/Microsoft.Azd.installer.yaml new file mode 100644 index 000000000000..4a2f0f0a310c --- /dev/null +++ b/manifests/m/Microsoft/Azd/1.25.400/Microsoft.Azd.installer.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.Azd +PackageVersion: 1.25.400 +InstallerLocale: en-US +InstallerType: wix +InstallerSwitches: + Custom: INSTALLEDBY="winget" +ProductCode: '{423FB38B-837E-410E-B5DB-53EA05C532F8}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Azure/azure-dev/releases/download/azure-dev-cli_1.25.3/azd-windows-amd64.msi + InstallerSha256: 84A327DEC509533D30B4E66F7BB3980350F3ACC74ABFCCF3E01C4C3C4713E816 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-05-29 diff --git a/manifests/m/Microsoft/Azd/1.25.400/Microsoft.Azd.locale.en-US.yaml b/manifests/m/Microsoft/Azd/1.25.400/Microsoft.Azd.locale.en-US.yaml new file mode 100644 index 000000000000..2ae772bec686 --- /dev/null +++ b/manifests/m/Microsoft/Azd/1.25.400/Microsoft.Azd.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.Azd +PackageVersion: 1.25.400 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://github.com/Azure/azure-dev/ +PublisherSupportUrl: https://github.com/Azure/azure-dev/issues +PrivacyUrl: https://go.microsoft.com/fwlink/?LinkId=521839 +PackageName: Azure Developer CLI +PackageUrl: https://github.com/Azure/azure-dev/releases/tag/azure-dev-cli_0.6.0-beta.2 +License: MIT License +LicenseUrl: https://github.com/Azure/azure-dev/blob/main/LICENSE +Copyright: Copyright 2022 (c) Microsoft Corporation. +ShortDescription: A developer CLI that accelerates the time it takes for you to get started on Azure. +Description: A developer CLI that accelerates the time it takes for you to get started on Azure. The Azure Developer CLI (azd) provides a set of developer-friendly commands that map to key stages in your workflow - code, build, deploy, monitor, repeat. +Moniker: azd +Tags: +- azure +- hacktoberfest +- microsoft +ReleaseNotesUrl: https://github.com/Azure/azure-dev/releases/tag/azure-dev-cli_1.25.3 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/Azure/azure-dev/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/Azd/1.25.400/Microsoft.Azd.yaml b/manifests/m/Microsoft/Azd/1.25.400/Microsoft.Azd.yaml new file mode 100644 index 000000000000..a8440e48a3a6 --- /dev/null +++ b/manifests/m/Microsoft/Azd/1.25.400/Microsoft.Azd.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: Microsoft.Azd +PackageVersion: 1.25.400 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 1bfdefea5aca73465ae0722d57c3a4ba6da2b388 Mon Sep 17 00:00:00 2001 From: nukeop <12746779+nukeop@users.noreply.github.com> Date: Fri, 29 May 2026 16:17:02 +0200 Subject: [PATCH 05/82] New version: nukeop.nuclear version 1.38.0 (#381045) --- .../1.38.0/nukeop.nuclear.installer.yaml | 27 ++++++++++ .../1.38.0/nukeop.nuclear.locale.en-US.yaml | 54 +++++++++++++++++++ .../nukeop/nuclear/1.38.0/nukeop.nuclear.yaml | 8 +++ 3 files changed, 89 insertions(+) create mode 100644 manifests/n/nukeop/nuclear/1.38.0/nukeop.nuclear.installer.yaml create mode 100644 manifests/n/nukeop/nuclear/1.38.0/nukeop.nuclear.locale.en-US.yaml create mode 100644 manifests/n/nukeop/nuclear/1.38.0/nukeop.nuclear.yaml diff --git a/manifests/n/nukeop/nuclear/1.38.0/nukeop.nuclear.installer.yaml b/manifests/n/nukeop/nuclear/1.38.0/nukeop.nuclear.installer.yaml new file mode 100644 index 000000000000..eff3dc23a977 --- /dev/null +++ b/manifests/n/nukeop/nuclear/1.38.0/nukeop.nuclear.installer.yaml @@ -0,0 +1,27 @@ +# 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: nukeop.nuclear +PackageVersion: 1.38.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: user +InstallModes: +- silent +UpgradeBehavior: install +ProductCode: Nuclear +ReleaseDate: 2026-05-29 +AppsAndFeaturesEntries: +- DisplayName: Nuclear + Publisher: nuclearplayer + ProductCode: Nuclear +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\Nuclear' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/nukeop/nuclear/releases/download/player@1.38.0/Nuclear_1.38.0_x64-setup.exe + InstallerSha256: 7C260843255AAD3B2F8809A8C94F9E1E467B56DE0C7137E62904A851A74BF726 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/nukeop/nuclear/1.38.0/nukeop.nuclear.locale.en-US.yaml b/manifests/n/nukeop/nuclear/1.38.0/nukeop.nuclear.locale.en-US.yaml new file mode 100644 index 000000000000..2113fc52403e --- /dev/null +++ b/manifests/n/nukeop/nuclear/1.38.0/nukeop.nuclear.locale.en-US.yaml @@ -0,0 +1,54 @@ +# 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: nukeop.nuclear +PackageVersion: 1.38.0 +PackageLocale: en-US +Publisher: nukeop +PublisherUrl: https://github.com/nukeop +PublisherSupportUrl: https://github.com/nukeop/nuclear/issues +Author: nukeop +PackageName: nuclear +PackageUrl: https://github.com/nukeop/nuclear +License: AGPL-3.0 +LicenseUrl: https://github.com/nukeop/nuclear/blob/HEAD/LICENSE +Copyright: Copyright (c) nukeop 2021 +CopyrightUrl: https://raw.githubusercontent.com/nukeop/nuclear/master/LICENSE +ShortDescription: Streaming music player that finds free music for you. +Description: |- + nuclear is a free music streaming program that pulls content from free sources all over the internet. + Features + • Searching for and playing music from YouTube (including integration with playlists and SponsorBlock), Jamendo, Audius and SoundCloud + • Searching for albums (powered by Last.fm and Discogs), album view, automatic song lookup based on artist and track name (in progress, can be dodgy sometimes) + • Song queue, which can be exported as a playlist + • Loading saved playlists (stored in json files) + • Scrobbling to last.fm (along with updating the 'now playing' status) + • Newest releases with reviews - tracks and albums + • Browsing by genre + • Radio mode (automatically queue similar tracks) + • Unlimited downloads (powered by youtube) + • Realtime lyrics + • Browsing by popularity + • List of favorite tracks + • Listening from local library + • No accounts + • No ads + • No CoC + • No CLA +Moniker: nuclear-music +Tags: +- cross-platform +- electron +- foss +- music +- music-player +- stream +- streaming +- youtube +ReleaseNotes: |- + What's New in v1.38.0 + - Feature: Nuclear Jam lets you control playback from any device on your local network. Enable it in Settings -> Integrations, then scan the QR code with your phone. Integrations - @nukeop + > macOS: If the app won't open, run sudo xattr -r -d com.apple.quarantine /Applications/Nuclear.app in Terminal. +ReleaseNotesUrl: https://github.com/nukeop/nuclear/releases/tag/player@1.38.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/nukeop/nuclear/1.38.0/nukeop.nuclear.yaml b/manifests/n/nukeop/nuclear/1.38.0/nukeop.nuclear.yaml new file mode 100644 index 000000000000..5d3948718a34 --- /dev/null +++ b/manifests/n/nukeop/nuclear/1.38.0/nukeop.nuclear.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: nukeop.nuclear +PackageVersion: 1.38.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From ea0d02dd1a0f73f62712c0fecfb52d6280af87b1 Mon Sep 17 00:00:00 2001 From: KarbitsCode <107671693+KarbitsCode@users.noreply.github.com> Date: Fri, 29 May 2026 22:17:05 +0800 Subject: [PATCH 06/82] Update version: Wakatime.DesktopWakatime version 3.0.0.1 (#381059) --- .../3.0.0.1/Wakatime.DesktopWakatime.installer.yaml | 10 ++++++++-- .../3.0.0.1/Wakatime.DesktopWakatime.locale.en-US.yaml | 7 +++++-- .../3.0.0.1/Wakatime.DesktopWakatime.yaml | 2 +- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.installer.yaml b/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.installer.yaml index 39eb432949a8..2133166c818d 100644 --- a/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.installer.yaml +++ b/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.installer.yaml @@ -1,10 +1,17 @@ -# Created using wingetcreate 1.12.8.0 +# Created with komac v2.16.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Wakatime.DesktopWakatime PackageVersion: 3.0.0.1 InstallerLocale: en-US InstallerType: nullsoft +ProductCode: 085ff2ea-3820-5577-8454-91bfd2003971 +ReleaseDate: 2026-05-21 +AppsAndFeaturesEntries: +- DisplayName: WakaTime 3.0.0 + Publisher: Wakatime + DisplayVersion: 3.0.0 + ProductCode: 085ff2ea-3820-5577-8454-91bfd2003971 Installers: - Architecture: x86 InstallerUrl: https://github.com/wakatime/desktop-wakatime/releases/download/v3.0.0+1/wakatime-win32-ia32.exe @@ -26,4 +33,3 @@ Installers: - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 ManifestType: installer ManifestVersion: 1.12.0 -ReleaseDate: 2026-05-21 diff --git a/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.locale.en-US.yaml b/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.locale.en-US.yaml index f3e2a1128b0c..dda243273989 100644 --- a/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.locale.en-US.yaml +++ b/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created using wingetcreate 1.12.8.0 +# Created with komac v2.16.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Wakatime.DesktopWakatime @@ -21,7 +21,10 @@ Tags: - time-tracker - time-tracking-app - typescript -ReleaseNotesUrl: https://github.com/wakatime/desktop-wakatime/releases/tag/v3.0.0%2B1 +ReleaseNotes: |- + Changelog + 5e9143b Pin actions dependencies to prevent supply chain attacks +ReleaseNotesUrl: https://github.com/wakatime/desktop-wakatime/releases/tag/v3.0.0+1 Documentations: - DocumentLabel: Wiki DocumentUrl: https://github.com/wakatime/desktop-wakatime/wiki diff --git a/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.yaml b/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.yaml index a6619284334e..f23788e5eca7 100644 --- a/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.yaml +++ b/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.yaml @@ -1,4 +1,4 @@ -# Created using wingetcreate 1.12.8.0 +# Created with komac v2.16.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Wakatime.DesktopWakatime From fc23eb58cccd3168739ccb0ea8a0c2f2869d7117 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=99=BA=E9=9A=9C=E6=B4=BE=E6=A3=AE?= <130831920+coolplaylinbot@users.noreply.github.com> Date: Fri, 29 May 2026 22:17:37 +0800 Subject: [PATCH 07/82] New version: GodotEngine.GodotEngine.Mono version 4.6.3 (#381071) --- ...odotEngine.GodotEngine.Mono.installer.yaml | 35 +++++++++++++ ...tEngine.GodotEngine.Mono.locale.en-US.yaml | 50 +++++++++++++++++++ .../4.6.3/GodotEngine.GodotEngine.Mono.yaml | 8 +++ 3 files changed, 93 insertions(+) create mode 100644 manifests/g/GodotEngine/GodotEngine/Mono/4.6.3/GodotEngine.GodotEngine.Mono.installer.yaml create mode 100644 manifests/g/GodotEngine/GodotEngine/Mono/4.6.3/GodotEngine.GodotEngine.Mono.locale.en-US.yaml create mode 100644 manifests/g/GodotEngine/GodotEngine/Mono/4.6.3/GodotEngine.GodotEngine.Mono.yaml diff --git a/manifests/g/GodotEngine/GodotEngine/Mono/4.6.3/GodotEngine.GodotEngine.Mono.installer.yaml b/manifests/g/GodotEngine/GodotEngine/Mono/4.6.3/GodotEngine.GodotEngine.Mono.installer.yaml new file mode 100644 index 000000000000..73b449870905 --- /dev/null +++ b/manifests/g/GodotEngine/GodotEngine/Mono/4.6.3/GodotEngine.GodotEngine.Mono.installer.yaml @@ -0,0 +1,35 @@ +# Created with AutoPublish using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GodotEngine.GodotEngine.Mono +PackageVersion: 4.6.3 +InstallerType: zip +NestedInstallerType: portable +ReleaseDate: 2026-05-20 +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: Godot_v4.6.3-stable_mono_win32/Godot_v4.6.3-stable_mono_win32.exe + PortableCommandAlias: godot + - RelativeFilePath: Godot_v4.6.3-stable_mono_win32/Godot_v4.6.3-stable_mono_win32_console.exe + PortableCommandAlias: godot_console + InstallerUrl: https://github.com/godotengine/godot/releases/download/4.6.3-stable/Godot_v4.6.3-stable_mono_win32.zip + InstallerSha256: 6B7D84EE6C3017253A605F00A0F8CB669B05E958C345FD14896B5F4067B246A7 +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: Godot_v4.6.3-stable_mono_win64/Godot_v4.6.3-stable_mono_win64.exe + PortableCommandAlias: godot + - RelativeFilePath: Godot_v4.6.3-stable_mono_win64/Godot_v4.6.3-stable_mono_win64_console.exe + PortableCommandAlias: godot_console + InstallerUrl: https://github.com/godotengine/godot/releases/download/4.6.3-stable/Godot_v4.6.3-stable_mono_win64.zip + InstallerSha256: 0015A6F2FAB16E255919380864E8B5320017B1258C01121D5521B133DBE705F6 +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: Godot_v4.6.3-stable_mono_windows_arm64/Godot_v4.6.3-stable_mono_windows_arm64.exe + PortableCommandAlias: godot + - RelativeFilePath: Godot_v4.6.3-stable_mono_windows_arm64/Godot_v4.6.3-stable_mono_windows_arm64_console.exe + PortableCommandAlias: godot_console + InstallerUrl: https://github.com/godotengine/godot/releases/download/4.6.3-stable/Godot_v4.6.3-stable_mono_windows_arm64.zip + InstallerSha256: 3DA5650A6B7F56211233FBE4B334A40BEB538B9990FE44BB0106913BF0068472 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/GodotEngine/GodotEngine/Mono/4.6.3/GodotEngine.GodotEngine.Mono.locale.en-US.yaml b/manifests/g/GodotEngine/GodotEngine/Mono/4.6.3/GodotEngine.GodotEngine.Mono.locale.en-US.yaml new file mode 100644 index 000000000000..d9e7e6d57ae8 --- /dev/null +++ b/manifests/g/GodotEngine/GodotEngine/Mono/4.6.3/GodotEngine.GodotEngine.Mono.locale.en-US.yaml @@ -0,0 +1,50 @@ +# Created with AutoPublish using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GodotEngine.GodotEngine.Mono +PackageVersion: 4.6.3 +PackageLocale: en-US +Publisher: Godot Engine +PublisherUrl: https://godotengine.org/ +PublisherSupportUrl: https://github.com/godotengine/godot/issues +PrivacyUrl: https://godotengine.org/privacy-policy +Author: Godot Engine +PackageName: Godot Engine (Mono) +PackageUrl: https://github.com/godotengine/godot +License: MIT +LicenseUrl: https://github.com/godotengine/godot/blob/HEAD/LICENSE.txt +Copyright: |- + Copyright (c) 2014-present Godot Engine contributors. + Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. +CopyrightUrl: https://godotengine.org/license +ShortDescription: The Mono version of the Godot Engine +Moniker: godot-mono +Tags: +- game-development +- game-engine +- gamedev +- godot +- godotengine +- hacktoberfest +- multi-platform +- open-source +ReleaseNotes: |- + Godot 4.6.3 is a maintenance release addressing stability and usability issues, and fixing all sorts of bugs. Maintenance releases are compatible with previous releases and are recommended for adoption. + Report bugs on GitHub after checking that they haven't been reported: + - https://github.com/godotengine/godot/issues + - Release notes + - Complete changelog + - Curated changelog + - Download (GitHub): Expand Assets below +ReleaseNotesUrl: https://github.com/godotengine/godot/releases/tag/4.6.3-stable +InstallationNotes: |- + Note when running WinGet to Install This Package *Without Admin Privileges*: + WinGet *Can Not* Create Command Line Alias(es) unless Admin Privileges are provided, as without Admin Privileges Winget *Can Not* Create Symbolic Links for those Command Lines Aliases. + More Details: + https://github.com/microsoft/winget-cli/issues/549 + https://github.com/microsoft/winget-cli/issues/361 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.godotengine.org/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GodotEngine/GodotEngine/Mono/4.6.3/GodotEngine.GodotEngine.Mono.yaml b/manifests/g/GodotEngine/GodotEngine/Mono/4.6.3/GodotEngine.GodotEngine.Mono.yaml new file mode 100644 index 000000000000..c9dfcac9fa98 --- /dev/null +++ b/manifests/g/GodotEngine/GodotEngine/Mono/4.6.3/GodotEngine.GodotEngine.Mono.yaml @@ -0,0 +1,8 @@ +# Created with AutoPublish using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: GodotEngine.GodotEngine.Mono +PackageVersion: 4.6.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 4cc2307ee9874106617ea23149c6554d02684615 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= <31723128+kris6673@users.noreply.github.com> Date: Fri, 29 May 2026 16:17:57 +0200 Subject: [PATCH 08/82] New version: LinuxContainers.Incus version 7.1.0 (#381084) --- .../LinuxContainers.Incus.installer.yaml | 18 +++ .../LinuxContainers.Incus.locale.en-US.yaml | 104 ++++++++++++++++++ .../Incus/7.1.0/LinuxContainers.Incus.yaml | 8 ++ 3 files changed, 130 insertions(+) create mode 100644 manifests/l/LinuxContainers/Incus/7.1.0/LinuxContainers.Incus.installer.yaml create mode 100644 manifests/l/LinuxContainers/Incus/7.1.0/LinuxContainers.Incus.locale.en-US.yaml create mode 100644 manifests/l/LinuxContainers/Incus/7.1.0/LinuxContainers.Incus.yaml diff --git a/manifests/l/LinuxContainers/Incus/7.1.0/LinuxContainers.Incus.installer.yaml b/manifests/l/LinuxContainers/Incus/7.1.0/LinuxContainers.Incus.installer.yaml new file mode 100644 index 000000000000..e1ae86c4dd10 --- /dev/null +++ b/manifests/l/LinuxContainers/Incus/7.1.0/LinuxContainers.Incus.installer.yaml @@ -0,0 +1,18 @@ +# 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: LinuxContainers.Incus +PackageVersion: 7.1.0 +InstallerType: portable +Commands: +- incus +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/lxc/incus/releases/download/v7.1.0/bin.windows.incus.x86_64.exe + InstallerSha256: 0FD7F6B82DD0D80F6967B601C063937EFDCD2570A0A496347A7CFDD7BFD4F960 +- Architecture: arm64 + InstallerUrl: https://github.com/lxc/incus/releases/download/v7.1.0/bin.windows.incus.aarch64.exe + InstallerSha256: B5BEAD3343D2A41AB27CA79C38518ACA06847C5E7E14B0C82F3B9AC45B6D0B6C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/LinuxContainers/Incus/7.1.0/LinuxContainers.Incus.locale.en-US.yaml b/manifests/l/LinuxContainers/Incus/7.1.0/LinuxContainers.Incus.locale.en-US.yaml new file mode 100644 index 000000000000..4357c3ce6fcc --- /dev/null +++ b/manifests/l/LinuxContainers/Incus/7.1.0/LinuxContainers.Incus.locale.en-US.yaml @@ -0,0 +1,104 @@ +# 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: LinuxContainers.Incus +PackageVersion: 7.1.0 +PackageLocale: en-US +Publisher: LinuxContainers +PublisherUrl: https://github.com/lxc +PublisherSupportUrl: https://github.com/lxc/incus/issues +PackageName: Incus +PackageUrl: https://github.com/lxc/incus +License: Apache-2.0 +ShortDescription: Incus is a modern, secure and powerful system container and virtual machine manager. +Tags: +- cloud +- containers +- hacktoberfest +- virtual-machines +ReleaseNotes: |- + What's Changed + - Translations update from Hosted Weblate by @weblate in #3296 + - Translations update from Hosted Weblate by @weblate in #3298 + - doc/devices/disk: Fix broken link by @stgraber in #3297 + - Translations update from Hosted Weblate by @weblate in #3309 + - Fix some initial 7.0 issues by @stgraber in #3311 + - Fix some network issues by @stgraber in #3312 + - doc/authorization: Fix reference to old "manager" relation by @stgraber in #3313 + - incusd/projects: Fix targeting on project delete by @stgraber in #3315 + - incusd/network/acl: Fix issue with instances in different project tha… by @stgraber in #3314 + - incusd/instance/qemu: Remove deprecated QEMU flag by @stgraber in #3318 + - Fix NBD swagger by @stgraber in #3317 + - incusd/cluster: Skip operation creation on shutdown evacuate by @stgraber in #3320 + - Fix some simple bugs by @stgraber in #3325 + - Implement bridge.multicast_snooping by @stgraber in #3327 + - Add lock handling for NBD operations by @presztak in #3331 + - devcontainer: fix golangci-lint install source by @breml in #3336 + - build(deps): bump actions/dependency-review-action from 4 to 5 by @dependabot[bot] in #3338 + - Restore config volume as part of VM block restoration (LVM storage) by @presztak in #3343 + - Update Ansible section with incus-client details by @chrisjsimpson in #3345 + - Update list of Ubuntu LTS releases that get pre-built Incus packages by @meeque in #3346 + - Use correct host:port format for ClusterAddress by @stephendotcarter in #3349 + - Various bugfixes by @stgraber in #3352 + - doc/storage_volume: Fix outdated information by @bensmrs in #3360 + - test: Disable volume shrinking with LINSTOR by @bensmrs in #3354 + - incusd/storage/s3: Implement S3 CopyObject by @stgraber in #3365 + - Allow volume creation on attach by @stgraber in #3363 + - Add workaround for lvmcluster pool removal by @presztak in #3369 + - Translations update from Hosted Weblate by @weblate in #3370 + - Various bugfixes by @stgraber in #3362 + - Performance improvements by @stgraber in #3372 + - Fix forward duplicate ip check by @DarkressX in #3373 + - doc: Extend description for OCI-compliant remotes by @UweKrause in #3374 + - incus/operation: Fix default column layout in help text by @urbalazs in #3347 + - Fix another set of explanation typos. by @kazan417 in #3299 + - incusd/instance/qemu: add virtio vga feature gating by @damex in #3305 + - Translations update from Hosted Weblate by @weblate in #3376 + - Add support for block.create_options by @stgraber in #3377 + - incus/utils: Tweak environment file handling to strip matching outer … by @stgraber in #3378 + - shared/archive: Improved ENOSPC detection by @stgraber in #3379 + - Allow setting up a TPM certificate authority by @stgraber in #3380 + - incusd/devices: Set volatileGet on Refresh by @stgraber in #3381 + - Translations update from Hosted Weblate by @weblate in #3384 + - Update cluster.go by @kazan417 in #3383 + - Update network_forward.go by @kazan417 in #3387 + - incus/config: Fix YAML file name in help text by @urbalazs in #3390 + - Translations update from Hosted Weblate by @weblate in #3393 + - Fix incus-simplestreams issues by @stgraber in #3391 + - Fix forkdhcp issues by @stgraber in #3392 + - Allow editing raw LINSTOR properties by @bensmrs in #3396 + - Implement ranges in network address sets by @stgraber in #3394 + - incusd/network/ovn: Use dnat_and_snat for fully mapped external addre… by @stgraber in #3397 + - Enable TPM live migration by @presztak in #3398 + - Translations update from Hosted Weblate by @weblate in #3399 + - Translations update from Hosted Weblate by @weblate in #3400 + - Fix push behavior with UID/GID/mode overrides by @bensmrs in #3401 + - More bugfixes by @stgraber in #3395 + - Fix remaining golangci-lint issues by @stgraber in #3405 + - Always return the total disk size on instances by @stgraber in #3402 + - More codebase cleanup by @stgraber in #3407 + - VLAN filtering fixes by @stgraber in #3408 + - incusd/instance/lxc: Use os.Root for templating by @stgraber in #3403 + - Implement storage volume rebuild by @stgraber in #3404 + - Add support for static round-robin remotes by @bensmrs in #3409 + - Implement S3 pre-signed URLs by @stgraber in #3411 + - client: handle absolute paths for simplestream files by @breml in #3414 + - Translations update from Hosted Weblate by @weblate in #3413 + - Translations update from Hosted Weblate by @weblate in #3419 + - Fix daemon volume accounting by @bensmrs in #3412 + - CLI wording fixes by @kazan417 in #3416 + - Allow for specific VM vCPU configuration by @stgraber in #3420 + - Push operation follow-up by @bensmrs in #3418 + - incusd/devices: Cleanup leftover forkproxy on startup by @stgraber in #3421 + - Fix security issues for Incus 7.1 by @stgraber in #3425 + - Adjust instance-agent events by @stgraber in #3426 + - Fix a couple of issues with instance memory changes by @stgraber in #3427 + - Add additional validation to device names by @stgraber in #3423 + New Contributors + - @chrisjsimpson made their first contribution in #3345 + - @meeque made their first contribution in #3346 + - @stephendotcarter made their first contribution in #3349 + Full Changelog: v7.0.0...v7.1.0 +ReleaseNotesUrl: https://github.com/lxc/incus/releases/tag/v7.1.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LinuxContainers/Incus/7.1.0/LinuxContainers.Incus.yaml b/manifests/l/LinuxContainers/Incus/7.1.0/LinuxContainers.Incus.yaml new file mode 100644 index 000000000000..46a335ef6728 --- /dev/null +++ b/manifests/l/LinuxContainers/Incus/7.1.0/LinuxContainers.Incus.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: LinuxContainers.Incus +PackageVersion: 7.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 2d05a87bac93a55f3cb71a26c16ef74cb91ab373 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 22:18:26 +0800 Subject: [PATCH 09/82] New version: Sourcegraph.Amp version 0.0.1780032159-g3925ab (#381088) --- .../Sourcegraph.Amp.installer.yaml | 17 +++++++++ .../Sourcegraph.Amp.locale.en-US.yaml | 36 +++++++++++++++++++ .../Sourcegraph.Amp.locale.zh-CN.yaml | 25 +++++++++++++ .../Sourcegraph.Amp.yaml | 8 +++++ 4 files changed, 86 insertions(+) create mode 100644 manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.installer.yaml create mode 100644 manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.locale.en-US.yaml create mode 100644 manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.locale.zh-CN.yaml create mode 100644 manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.yaml diff --git a/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.installer.yaml b/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.installer.yaml new file mode 100644 index 000000000000..43a74817394b --- /dev/null +++ b/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.installer.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Sourcegraph.Amp +PackageVersion: 0.0.1780032159-g3925ab +InstallerType: portable +Commands: +- amp +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +Installers: +- Architecture: x64 + InstallerUrl: https://static.ampcode.com/cli/0.0.1780032159-g3925ab/amp-windows-x64-baseline.exe + InstallerSha256: 11CEE8B20C4F5ADC1C1D58DEDF346DDE1D911D4D4C6948A50D9EF69FC75117D2 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.locale.en-US.yaml b/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.locale.en-US.yaml new file mode 100644 index 000000000000..69e203e9e4d0 --- /dev/null +++ b/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Sourcegraph.Amp +PackageVersion: 0.0.1780032159-g3925ab +PackageLocale: en-US +Publisher: Sourcegraph, Inc. +PublisherUrl: https://ampcode.com/ +PrivacyUrl: https://ampcode.com/privacy-policy +Author: Sourcegraph, Inc. +PackageName: Amp CLI +PackageUrl: https://ampcode.com/ +License: Proprietary +LicenseUrl: https://ampcode.com/terms +CopyrightUrl: https://ampcode.com/terms +ShortDescription: The frontier coding agent for your terminal and editor. +Description: |- + Amp is the frontier coding agent for your terminal and editor. + - Multi-Model: Opus 4.7, GPT-5.4, fast models—Amp uses them all, for what each model is best at. + - Opinionated: You’re always using the good parts of Amp. If we don’t use and love a feature, we kill it. + - On the Frontier: Amp goes where the models take it. No backcompat, no legacy features. + - Threads: You can save and share your interactions with Amp. You wouldn’t code without version control, would you? + Amp has 3 modes: smart (unconstrained state-of-the-art model use), rush (faster, cheaper, suited for small, well-defined tasks), and deep (deep reasoning with extended thinking for complex problems). +Tags: +- agent +- agentic +- ai +- chatbot +- code +- coding +- large-language-model +- llm +- programming +PurchaseUrl: https://ampcode.com/manual#pricing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.locale.zh-CN.yaml b/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.locale.zh-CN.yaml new file mode 100644 index 000000000000..7c9c6e4a2563 --- /dev/null +++ b/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Sourcegraph.Amp +PackageVersion: 0.0.1780032159-g3925ab +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 适用于终端与编辑器的前沿编码智能体。 +Description: |- + Amp 是适用于终端与编辑器的前沿编码智能体。 + - 多模型支持:Opus 4.7、GPT-5.4、速型模型——Amp 会调用所有模型,各展所长。 + - 去芜存菁:你始终能用到 Amp 的核心优质功能。如果我们自己不用、也不喜欢某个功能,就会直接砍掉它。 + - 前沿迭代:Amp 跟随大模型的发展持续更新。不保留向后兼容,不遗留老旧功能。 + - 会话管理:你可以保存并分享你和 Amp 的交互记录。写代码总离不开版本控制,不是吗? + Amp 共有三种工作模式:智能模式(调用无限制的最先进模型)、快速模式(速度更快、成本更低,适合定义清晰的小型任务),以及深度模式(针对复杂问题提供带扩展思考的深度推理)。 +Tags: +- 人工智能 +- 代码 +- 大语言模型 +- 智能体 +- 编程 +- 聊天机器人 +- 自主智能 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.yaml b/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.yaml new file mode 100644 index 000000000000..8283928461ec --- /dev/null +++ b/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.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: Sourcegraph.Amp +PackageVersion: 0.0.1780032159-g3925ab +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 0da351efbc1e2dd79c6002bfe28b76d45e7cbf76 Mon Sep 17 00:00:00 2001 From: ilike2burnthing <59480337+ilike2burnthing@users.noreply.github.com> Date: Fri, 29 May 2026 15:18:31 +0100 Subject: [PATCH 10/82] New version: Jackett.Jackett version 0.24.1970 (#381094) --- .../0.24.1970/Jackett.Jackett.installer.yaml | 26 ++++++++++++ .../Jackett.Jackett.locale.en-US.yaml | 40 +++++++++++++++++++ .../Jackett/0.24.1970/Jackett.Jackett.yaml | 8 ++++ 3 files changed, 74 insertions(+) create mode 100644 manifests/j/Jackett/Jackett/0.24.1970/Jackett.Jackett.installer.yaml create mode 100644 manifests/j/Jackett/Jackett/0.24.1970/Jackett.Jackett.locale.en-US.yaml create mode 100644 manifests/j/Jackett/Jackett/0.24.1970/Jackett.Jackett.yaml diff --git a/manifests/j/Jackett/Jackett/0.24.1970/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.24.1970/Jackett.Jackett.installer.yaml new file mode 100644 index 000000000000..e61e5588b6bb --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.24.1970/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.1970 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ReleaseDate: 2026-05-28 +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.1970/Jackett.Installer.Windows.exe + InstallerSha256: 1CB5FFF5C75FC7E5624EA17CEC3A71608768C0E3B8F7FC4CA25826276B235F75 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/Jackett/Jackett/0.24.1970/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.24.1970/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 000000000000..a13a983915f9 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.24.1970/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,40 @@ +# 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.1970 +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: + - 7c2b5a8 ebooks-shares: new cat + - 2113977 zenith: comment out MR as global-only + This list of changes was auto generated. +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.24.1970 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/Jackett/Jackett/0.24.1970/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.24.1970/Jackett.Jackett.yaml new file mode 100644 index 000000000000..57c10bbf34cc --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.24.1970/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.1970 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 527059257fce5ef70e90d1ad5614a5bc10913a0f Mon Sep 17 00:00:00 2001 From: UnownBot Date: Fri, 29 May 2026 10:18:48 -0400 Subject: [PATCH 11/82] New version: Microsoft.SafetyScanner version 1.451.156.0 (#381101) --- .../Microsoft.SafetyScanner.installer.yaml | 18 +++++++++++++++ .../Microsoft.SafetyScanner.locale.en-US.yaml | 23 +++++++++++++++++++ .../1.451.156.0/Microsoft.SafetyScanner.yaml | 8 +++++++ 3 files changed, 49 insertions(+) create mode 100644 manifests/m/Microsoft/SafetyScanner/1.451.156.0/Microsoft.SafetyScanner.installer.yaml create mode 100644 manifests/m/Microsoft/SafetyScanner/1.451.156.0/Microsoft.SafetyScanner.locale.en-US.yaml create mode 100644 manifests/m/Microsoft/SafetyScanner/1.451.156.0/Microsoft.SafetyScanner.yaml diff --git a/manifests/m/Microsoft/SafetyScanner/1.451.156.0/Microsoft.SafetyScanner.installer.yaml b/manifests/m/Microsoft/SafetyScanner/1.451.156.0/Microsoft.SafetyScanner.installer.yaml new file mode 100644 index 000000000000..c36e2b2f2b25 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.451.156.0/Microsoft.SafetyScanner.installer.yaml @@ -0,0 +1,18 @@ +# 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.451.156.0 +InstallerType: portable +Commands: +- safetyscanner +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x86 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.451.156.0&arch=x86 + InstallerSha256: D93031830F3CAD3D88BFFE9CE819FAD750AF93F98A7D3A123971D0754E93718C +- Architecture: x64 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.451.156.0&arch=amd64 + InstallerSha256: 49246A38D8F765C974079454EECF7530D1511AEC449D12ECD0320FF23BC6BBF2 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.451.156.0/Microsoft.SafetyScanner.locale.en-US.yaml b/manifests/m/Microsoft/SafetyScanner/1.451.156.0/Microsoft.SafetyScanner.locale.en-US.yaml new file mode 100644 index 000000000000..1856a76149a8 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.451.156.0/Microsoft.SafetyScanner.locale.en-US.yaml @@ -0,0 +1,23 @@ +# 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 +PackageVersion: 1.451.156.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.451.156.0/Microsoft.SafetyScanner.yaml b/manifests/m/Microsoft/SafetyScanner/1.451.156.0/Microsoft.SafetyScanner.yaml new file mode 100644 index 000000000000..ec4297773ad3 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.451.156.0/Microsoft.SafetyScanner.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.451.156.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From a25a05b3e50eb9637c3d3c380ae304fb9c5d77a4 Mon Sep 17 00:00:00 2001 From: Dimitar Radenkov Date: Fri, 29 May 2026 17:19:05 +0300 Subject: [PATCH 12/82] New version: DimitarRadenkov.Pointframe version 6.2.2 (#381103) --- .../DimitarRadenkov.Pointframe.installer.yaml | 27 +++++++++++++++ ...mitarRadenkov.Pointframe.locale.en-US.yaml | 34 +++++++++++++++++++ .../6.2.2/DimitarRadenkov.Pointframe.yaml | 8 +++++ 3 files changed, 69 insertions(+) create mode 100644 manifests/d/DimitarRadenkov/Pointframe/6.2.2/DimitarRadenkov.Pointframe.installer.yaml create mode 100644 manifests/d/DimitarRadenkov/Pointframe/6.2.2/DimitarRadenkov.Pointframe.locale.en-US.yaml create mode 100644 manifests/d/DimitarRadenkov/Pointframe/6.2.2/DimitarRadenkov.Pointframe.yaml diff --git a/manifests/d/DimitarRadenkov/Pointframe/6.2.2/DimitarRadenkov.Pointframe.installer.yaml b/manifests/d/DimitarRadenkov/Pointframe/6.2.2/DimitarRadenkov.Pointframe.installer.yaml new file mode 100644 index 000000000000..8f3af53285e0 --- /dev/null +++ b/manifests/d/DimitarRadenkov/Pointframe/6.2.2/DimitarRadenkov.Pointframe.installer.yaml @@ -0,0 +1,27 @@ +# 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: DimitarRadenkov.Pointframe +PackageVersion: 6.2.2 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- + SilentWithProgress: /SILENT /SUPPRESSMSGBOXES /NORESTART /SP- +ProductCode: '{67DE561D-F02A-4E9F-AF4A-44D98A092D54}_is1' +ReleaseDate: 2026-05-29 +AppsAndFeaturesEntries: +- ProductCode: '{67DE561D-F02A-4E9F-AF4A-44D98A092D54}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Pointframe' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/dimitar-radenkov/Pointframe/releases/download/v6.2.2/Pointframe-6.2.2-x64-Setup.exe + InstallerSha256: DD6821E1DF84BC135B71E12A210D17E222A3824F35AFAACB1F67B454E3DC6A48 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DimitarRadenkov/Pointframe/6.2.2/DimitarRadenkov.Pointframe.locale.en-US.yaml b/manifests/d/DimitarRadenkov/Pointframe/6.2.2/DimitarRadenkov.Pointframe.locale.en-US.yaml new file mode 100644 index 000000000000..287243320755 --- /dev/null +++ b/manifests/d/DimitarRadenkov/Pointframe/6.2.2/DimitarRadenkov.Pointframe.locale.en-US.yaml @@ -0,0 +1,34 @@ +# 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: DimitarRadenkov.Pointframe +PackageVersion: 6.2.2 +PackageLocale: en-US +Publisher: Dimitar Radenkov +PublisherUrl: https://github.com/dimitar-radenkov +PublisherSupportUrl: https://github.com/dimitar-radenkov/Pointframe/issues +PackageName: Pointframe +PackageUrl: https://github.com/dimitar-radenkov/Pointframe +License: MIT +LicenseUrl: https://github.com/dimitar-radenkov/Pointframe/blob/HEAD/LICENSE +Copyright: Copyright (c) Dimitar Radenkov +ShortDescription: Open-source Windows screen capture and recording tool with OCR and annotation +Description: |- + Pointframe is a lightweight Windows screen capture and annotation tool. + Press Print Screen to draw a region, annotate with arrows, shapes, text, blur, + and numbered steps, then copy to clipboard, pin as a floating always-on-top window, + or record your screen to MP4 with optional microphone audio. Includes built-in OCR + to extract text from any screenshot. No subscription, no telemetry. +Moniker: pointframe +Tags: +- annotation +- ocr +- screen-capture +- screen-recorder +- screenshot +- windows +- wpf +ReleaseNotes: 'What''s Changed - Update .gitignore, changelog, and installer publisher @dimitar-radenkov (#107) Full Changelog: v6.2.1...v6.2.2' +ReleaseNotesUrl: https://github.com/dimitar-radenkov/Pointframe/releases/tag/v6.2.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DimitarRadenkov/Pointframe/6.2.2/DimitarRadenkov.Pointframe.yaml b/manifests/d/DimitarRadenkov/Pointframe/6.2.2/DimitarRadenkov.Pointframe.yaml new file mode 100644 index 000000000000..c6fdb41ba374 --- /dev/null +++ b/manifests/d/DimitarRadenkov/Pointframe/6.2.2/DimitarRadenkov.Pointframe.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: DimitarRadenkov.Pointframe +PackageVersion: 6.2.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 01d0224a8fdab3511fa93599b899c5d5940b44c3 Mon Sep 17 00:00:00 2001 From: ggml-bot-2 Date: Fri, 29 May 2026 17:19:22 +0300 Subject: [PATCH 13/82] New version: ggml.llamacpp version b9401 (#381105) --- .../b9401/ggml.llamacpp.installer.yaml | 30 ++++++++++ .../b9401/ggml.llamacpp.locale.en-US.yaml | 60 +++++++++++++++++++ .../g/ggml/llamacpp/b9401/ggml.llamacpp.yaml | 8 +++ 3 files changed, 98 insertions(+) create mode 100644 manifests/g/ggml/llamacpp/b9401/ggml.llamacpp.installer.yaml create mode 100644 manifests/g/ggml/llamacpp/b9401/ggml.llamacpp.locale.en-US.yaml create mode 100644 manifests/g/ggml/llamacpp/b9401/ggml.llamacpp.yaml diff --git a/manifests/g/ggml/llamacpp/b9401/ggml.llamacpp.installer.yaml b/manifests/g/ggml/llamacpp/b9401/ggml.llamacpp.installer.yaml new file mode 100644 index 000000000000..27b029bc3df6 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b9401/ggml.llamacpp.installer.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b9401 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: llama-batched-bench.exe +- RelativeFilePath: llama-bench.exe +- RelativeFilePath: llama-cli.exe +- RelativeFilePath: llama-gguf-split.exe +- RelativeFilePath: llama-imatrix.exe +- RelativeFilePath: llama-mtmd-cli.exe +- RelativeFilePath: llama-perplexity.exe +- RelativeFilePath: llama-quantize.exe +- RelativeFilePath: llama-server.exe +- RelativeFilePath: llama-tokenize.exe +- RelativeFilePath: llama-tts.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2026-05-29 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ggml-org/llama.cpp/releases/download/b9401/llama-b9401-bin-win-vulkan-x64.zip + InstallerSha256: 0E7766391C44C6E27C9FBA58756E4E1255525A376B6011BD8736026C61B333A8 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/ggml/llamacpp/b9401/ggml.llamacpp.locale.en-US.yaml b/manifests/g/ggml/llamacpp/b9401/ggml.llamacpp.locale.en-US.yaml new file mode 100644 index 000000000000..efbd68c3e218 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b9401/ggml.llamacpp.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b9401 +PackageLocale: en-US +Publisher: ggml +PublisherUrl: https://github.com/ggml-org +PublisherSupportUrl: https://github.com/ggml-org/llama.cpp/issues +PackageName: llama.cpp +PackageUrl: https://github.com/ggml-org/llama.cpp +License: MIT +LicenseUrl: https://github.com/ggml-org/llama.cpp/blob/HEAD/LICENSE +ShortDescription: LLM inference in C/C++ +Tags: +- ggml +- llama +ReleaseNotes: |- + mtmd-debug: add color and rainbow mode (#23829) + - mtmd-debug: add color and rainbow mode + - fix M_PI + - max_dist + macOS/iOS: + - macOS Apple Silicon (arm64) + - macOS Apple Silicon (arm64, KleidiAI enabled) DISABLED + - macOS Intel (x64) + - iOS XCFramework + Linux: + - Ubuntu x64 (CPU) + - Ubuntu arm64 (CPU) + - Ubuntu s390x (CPU) + - Ubuntu x64 (Vulkan) + - Ubuntu arm64 (Vulkan) + - Ubuntu x64 (ROCm 7.2) + - Ubuntu x64 (OpenVINO) + - Ubuntu x64 (SYCL FP32) DISABLED + Android: + - Android arm64 (CPU) + Windows: + - Windows x64 (CPU) + - Windows arm64 (CPU) + - Windows x64 (CUDA 12) - CUDA 12.4 DLLs + - Windows x64 (CUDA 13) - CUDA 13.3 DLLs + - Windows x64 (Vulkan) + - Windows x64 (SYCL) DISABLED + - Windows x64 (HIP) + openEuler: + - DISABLED + - openEuler x86 (310p) + - openEuler x86 (910b, ACL Graph) + - openEuler aarch64 (310p) + - openEuler aarch64 (910b, ACL Graph) + UI: + - UI +ReleaseNotesUrl: https://github.com/ggml-org/llama.cpp/releases/tag/b9401 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/ggml-org/llama.cpp/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/ggml/llamacpp/b9401/ggml.llamacpp.yaml b/manifests/g/ggml/llamacpp/b9401/ggml.llamacpp.yaml new file mode 100644 index 000000000000..95f5d497ec69 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b9401/ggml.llamacpp.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b9401 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From cf0a0db0dce8d887325fc9c83110e40971f9c1df Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 22:19:39 +0800 Subject: [PATCH 14/82] New version: Baidu.BaiduNetdisk version 8.4.8 (8.4.8.102) (#381106) --- .../8.4.8/Baidu.BaiduNetdisk.installer.yaml | 20 ++++++++++ .../Baidu.BaiduNetdisk.locale.en-US.yaml | 25 ++++++++++++ .../Baidu.BaiduNetdisk.locale.zh-CN.yaml | 38 +++++++++++++++++++ .../8.4.8/Baidu.BaiduNetdisk.yaml | 8 ++++ 4 files changed, 91 insertions(+) create mode 100644 manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.installer.yaml create mode 100644 manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.locale.en-US.yaml create mode 100644 manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.locale.zh-CN.yaml create mode 100644 manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.yaml diff --git a/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.installer.yaml b/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.installer.yaml new file mode 100644 index 000000000000..d2e541a3f6f6 --- /dev/null +++ b/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Baidu.BaiduNetdisk +PackageVersion: 8.4.8 +InstallerType: nullsoft +Scope: machine +InstallerSuccessCodes: +- 2 +UpgradeBehavior: install +Protocols: +- baiduyunguanjia +ProductCode: 百度云管家 +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x86 + InstallerUrl: https://issuepcdn.baidupcs.com/issue/netdisk/yunguanjia/BaiduNetdisk_8.4.8.102.exe + InstallerSha256: 766C61C6FBFDC8BB84DB44A9C90FE2D74D1E0797BDFAAF749AF57D0EBC9F2B54 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.locale.en-US.yaml b/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.locale.en-US.yaml new file mode 100644 index 000000000000..2c945727b6f2 --- /dev/null +++ b/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Baidu.BaiduNetdisk +PackageVersion: 8.4.8 +PackageLocale: en-US +Author: Beijing Duyou Technology Co., Ltd. +License: Proprietary +ShortDescription: Personal cloud service product by Baidu. +Description: Baidu Netdisk is a convenient and easy-to-use cloud storage product that is serving more than 700 million users, which has mass storage and several self-hosted data centers, supports backup, sharing, viewing and processing multiple types of files, and protects users' data security under two top international security certifications ISO27001 and ISO27018. It would be your best choice if you want to back up your data, free up your phone's space, share files with others or operate files online. +Tags: +- backup +- china +- cloud +- cloud-drive +- download +- drive +- file +- netdisk +- prc +- share +- sync +- upload +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.locale.zh-CN.yaml b/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.locale.zh-CN.yaml new file mode 100644 index 000000000000..f458757a98a6 --- /dev/null +++ b/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.locale.zh-CN.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: Baidu.BaiduNetdisk +PackageVersion: 8.4.8 +PackageLocale: zh-CN +Publisher: 北京度友科技有限公司 +PublisherUrl: https://www.baidu.com/ +PublisherSupportUrl: https://pan.baidu.com/disk/help +PrivacyUrl: https://privacy.baidu.com/policy +Author: 北京度友科技有限公司 +PackageName: 百度网盘 +PackageUrl: https://pan.baidu.com/ +License: 专有软件 +LicenseUrl: https://pan.baidu.com/disk/main#/protocol/duty_mobi +Copyright: Copyright © 2026 Baidu, Inc. All rights reserved. +CopyrightUrl: https://www.baidu.com/duty/copyright.html +ShortDescription: 百度公司出品的个人云服务产品 +Description: 百度网盘是一款省心、好用的超级云存储产品,已为超过 7 亿用户提供云服务,空间超大,支持多类型文件的备份、分享、查看和处理,自建多个数据存储中心,更有两项国际顶尖安全认证 ISO27001&ISO27018 为用户数据安全提供护航。如果你想备份文件数据,释放手机空间,给别人分享文件或是对文件进行在线操作,选百度网盘就对了! +Tags: +- 上传 +- 下载 +- 云 +- 云盘 +- 共享 +- 分享 +- 同步 +- 备份 +- 文件 +- 百度云 +- 百度云管家 +- 网盘 +ReleaseNotes: |- + 1. 百度网盘新版升级 + 2. 体验升级:支持查看外链转存和访问记录。 +PurchaseUrl: https://pan.baidu.com/buy/center +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.yaml b/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.yaml new file mode 100644 index 000000000000..515a58b9fb72 --- /dev/null +++ b/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.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: Baidu.BaiduNetdisk +PackageVersion: 8.4.8 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 From 9826a1786672d79e6023893edd7cf5469878bcf2 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 22:20:09 +0800 Subject: [PATCH 15/82] New version: hellodigua.ChatLab version 0.22.1 (#381108) --- .../0.22.1/hellodigua.ChatLab.installer.yaml | 26 ++++++++++++++ .../hellodigua.ChatLab.locale.en-US.yaml | 35 +++++++++++++++++++ .../hellodigua.ChatLab.locale.zh-CN.yaml | 31 ++++++++++++++++ .../ChatLab/0.22.1/hellodigua.ChatLab.yaml | 8 +++++ 4 files changed, 100 insertions(+) create mode 100644 manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.installer.yaml create mode 100644 manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.locale.en-US.yaml create mode 100644 manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.locale.zh-CN.yaml create mode 100644 manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.yaml diff --git a/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.installer.yaml b/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.installer.yaml new file mode 100644 index 000000000000..8caa991178f1 --- /dev/null +++ b/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: hellodigua.ChatLab +PackageVersion: 0.22.1 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 5c93c6d5-cfd9-53ea-a37a-26c1e3d35c8d +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/ChatLab/ChatLab/releases/download/v0.22.1/ChatLab-0.22.1-setup.exe + InstallerSha256: 7A5EDF9685FC76F38363966C0BA841E425BF39C9440B03E21059F4E1F3B4F802 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/ChatLab/ChatLab/releases/download/v0.22.1/ChatLab-0.22.1-setup.exe + InstallerSha256: 7A5EDF9685FC76F38363966C0BA841E425BF39C9440B03E21059F4E1F3B4F802 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.locale.en-US.yaml b/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.locale.en-US.yaml new file mode 100644 index 000000000000..5d65549b555c --- /dev/null +++ b/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: hellodigua.ChatLab +PackageVersion: 0.22.1 +PackageLocale: en-US +Publisher: digua +PublisherUrl: https://digua.moe/ +PublisherSupportUrl: https://github.com/hellodigua/ChatLab/issues +PackageName: ChatLab +PackageUrl: https://chatlab.fun/ +License: AGPL-3.0 +LicenseUrl: https://github.com/hellodigua/ChatLab/blob/HEAD/LICENSE +Copyright: Copyright © 2026 ChatLab +ShortDescription: 'A Local-first chat analysis tool: Relive your social memories powered by SQL and AI Agents.' +Description: |- + ChatLab is a free, open-source, and local-first application dedicated to analyzing chat records. Through an AI Agent and a flexible SQL engine, you can freely dissect, query, and even reconstruct your social data. + We refuse to upload your privacy to the cloud; instead, we bring powerful analytics directly to your computer. + Currently supported: Chat record analysis for LINE, WeChat, QQ, WhatsApp, Instagram and Discord. Upcoming support: Messenger, iMessage. + The project is still in early iteration, so there are many bugs and unfinished features. If you encounter any issues, feel free to provide feedback. + Core Features + - 🚀 Ultimate Performance: Utilizing stream computing and multi-threaded parallel architecture, it maintains fluid interaction and response even with millions of chat records. + - 🔒 Privacy Protection: Chat records and configurations are stored in your local database, and all analysis is performed locally (with the exception of AI features). + - 🤖 Intelligent AI Agent: Integrated with 10+ Function Calling tools and supporting dynamic scheduling to deeply excavate interesting insights from chat records. + - 📊 Multi-dimensional Data Visualization: Provides intuitive analysis charts for activity trends, time distribution patterns, member rankings, and more. + - 🧩 Format Standardization: Through a powerful data abstraction layer, it bridges the format differences between various chat applications, allowing any chat records to be analyzed. +Tags: +- chat +- chat-records +ReleaseNotesUrl: https://github.com/ChatLab/ChatLab/releases/tag/v0.22.1 +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://chatlab.fun/usage/how-to-export.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.locale.zh-CN.yaml b/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.locale.zh-CN.yaml new file mode 100644 index 000000000000..522a1a84a302 --- /dev/null +++ b/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.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: hellodigua.ChatLab +PackageVersion: 0.22.1 +PackageLocale: zh-CN +PackageUrl: https://chatlab.fun/cn/ +ShortDescription: 本地化的聊天记录分析工具,通过 SQL 和 AI Agent 回顾你的社交记忆。 +Description: |- + ChatLab 是一个免费、开源、本地化的,专注于分析聊天记录的应用。通过 AI Agent 和灵活的 SQL 引擎,你可以自由地拆解、查询甚至重构你的社交数据。 + 目前已支持: WhatsApp、LINE、微信、QQ、Discord、Instagram 的聊天记录分析,即将支持: iMessage、Messenger、Kakao Talk。 + 核心特性 + - 🚀 极致性能:使用流式计算与多线程并行架构,就算是百万条级别的聊天记录,依然拥有丝滑交互和响应。 + - 🔒 保护隐私:聊天记录和配置都存在你的本地数据库,所有分析都在本地进行(AI 功能例外)。 + - 🤖 智能 AI Agent:集成 10+ Function Calling 工具,支持动态调度,深度挖掘聊天记录中的更多有趣。 + - 📊 多维数据可视化:提供活跃度趋势、时间规律分布、成员排行等多个维度的直观分析图表。 + - 🧩 格式标准化:通过强大的数据抽象层,抹平不同聊天软件的格式差异,任何聊天记录都能分析。 +Tags: +- 聊天 +- 聊天记录 +ReleaseNotes: |- + What's New + Adds session summary detail level settings, and fixes CLI Web batch summary freeze, AI config edit misidentification, and several API credential detection issues. + 更新内容 + 新增会话摘要详细程度配置,修复服务版批量摘要卡死、AI 配置编辑误判及多处 AI 凭据检测问题。 +ReleaseNotesUrl: https://github.com/hellodigua/ChatLab/releases/tag/v0.9.3 +Documentations: +- DocumentLabel: 用户手册 + DocumentUrl: https://chatlab.fun/cn/usage/how-to-export.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.yaml b/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.yaml new file mode 100644 index 000000000000..27186329ea4f --- /dev/null +++ b/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.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: hellodigua.ChatLab +PackageVersion: 0.22.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From d2d76cc62a3b37cafb5553cbba2f95ab0c1e7003 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 22:20:12 +0800 Subject: [PATCH 16/82] New version: paopaoandlingyia.PrismCat version 1.9.0 (#381110) --- .../paopaoandlingyia.PrismCat.installer.yaml | 15 ++++++ ...aopaoandlingyia.PrismCat.locale.en-US.yaml | 53 +++++++++++++++++++ ...aopaoandlingyia.PrismCat.locale.zh-CN.yaml | 16 ++++++ .../1.9.0/paopaoandlingyia.PrismCat.yaml | 8 +++ 4 files changed, 92 insertions(+) create mode 100644 manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.installer.yaml create mode 100644 manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.locale.en-US.yaml create mode 100644 manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.locale.zh-CN.yaml create mode 100644 manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.yaml diff --git a/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.installer.yaml b/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.installer.yaml new file mode 100644 index 000000000000..624844ac934e --- /dev/null +++ b/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.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: paopaoandlingyia.PrismCat +PackageVersion: 1.9.0 +InstallerType: portable +Commands: +- prismcat +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/paopaoandlingyia/PrismCat/releases/download/v1.9.0/prismcat-v1.9.0-windows-amd64.exe + InstallerSha256: CF54D6C338B2171A4AAE05EFB0BDE2E5887B5315B3140DF87E650648688ECA70 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.locale.en-US.yaml b/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.locale.en-US.yaml new file mode 100644 index 000000000000..d53a627c6120 --- /dev/null +++ b/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.locale.en-US.yaml @@ -0,0 +1,53 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: paopaoandlingyia.PrismCat +PackageVersion: 1.9.0 +PackageLocale: en-US +Publisher: Etgpao +PublisherUrl: https://github.com/paopaoandlingyia +PublisherSupportUrl: https://github.com/paopaoandlingyia/PrismCat/issues +PackageName: PrismCat +PackageUrl: https://github.com/paopaoandlingyia/PrismCat +License: MIT +LicenseUrl: https://github.com/paopaoandlingyia/PrismCat/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 paopaoandlingyia +ShortDescription: A self-hosted, transparent proxy and debugging console for LLM APIs. +Description: PrismCat is a self-hosted, transparent proxy and debugging console for LLM APIs. Change one line — your base_url — and instantly see every request and response between your app and OpenAI / Claude / Gemini / Ollama / any LLM API, including streaming (SSE). +Tags: +- ai +- chatbot +- large-language-model +- llm +- proxy +ReleaseNotes: |- + 中文 + v1.9.0 引入了基于存储空间上限的自动清理机制、日志快捷导航,以及 Web 界面 JSON 浏览器的多项显示和渲染优化。 + - 新增日志存储空间上限限制:支持通过 max_storage_bytes 配置或环境变量 PRISMCAT_MAX_STORAGE_BYTES 限制最大存储。超出时将按时间限制顺序删除未保存的历史日志,并自动触发 WAL checkpoint 和 VACUUM 整理数据库物理空间。可在设置页面直观配置。 + - 新增日志快捷导航:在日志详情视图(Dashboard 和 Trace 详情)中增加“上一条 / 下一条”切换按钮,方便了连续排查日志的操作。 + - 优化 JSON 浏览器显示与渲染: + - 将 JSON 视图字体大小调整为 13px,修复 Windows ClearType 下 11px 中文字体模糊的视觉问题。 + - 去除强行指定的 -webkit-font-smoothing,使 Windows 系统能够保留边缘清晰的 ClearType 渲染。 + - 在字体栈中显式增加了 PingFang SC 和 Microsoft YaHei 中文字体。 + - 本地化托管 Inter 和 Fira Code 字体,摆脱 Google CDN 字体加载依赖。 + - 为 JSON 缩进层级添加垂直辅助线,提升复杂结构下的可读性。 + - 修复 SQLite 日志清理锁表问题:日志保留期(Retention)清理逻辑调整为每批次限制删除 2000 条,并在清理后自动进行 WAL checkpoint,避免单次删除海量日志导致 SQLite 长时间锁表。 + - 修复流式日志 (SSE) 的 Token 提取解析:处理流式事件时,Token 提取器由原先的“仅保留最后一次匹配”改为“增量合并”方式,避免旧事件的数据被完全覆盖。 + - 修复默认超时初始化:统一规范在配置及 UI 修改中的 Upstream 缺省超时时间为 120 秒。 + English + v1.9.0 introduces size-based log storage limit cleanup, quick log navigation, and multiple display and font rendering enhancements to the JSON viewer in the Web UI. + - Added log storage size limit: Allows setting a storage limit via max_storage_bytes config or PRISMCAT_MAX_STORAGE_BYTES env var. When exceeded, oldest unsaved logs are deleted, followed by WAL checkpoint and database VACUUM to reclaim physical disk space. Can be easily configured on the settings page. + - Added log navigation: Prev/Next buttons added in log details panel on both Dashboard and Trace Detail pages for seamless traversal of consecutive log records. + - Improved JSON viewer display & rendering: + - Bumped JSON viewer font size to 13px to fix blurry CJK text rendering at 11px under Windows. + - Dropped forced -webkit-font-smoothing so Windows keeps crisp ClearType rendering. + - Added explicit CJK fonts (PingFang SC / Microsoft YaHei) to font stacks. + - Self-hosted Inter & Fira Code fonts via @fontsource, removing Google CDN dependency. + - Added bordered vertical lines for JSON indentation guidelines to enhance readability. + - Fixed SQLite retention cleanup locking: The log retention background worker now deletes logs in batches of 2000 and triggers WAL checkpoint, preventing long-running write transactions from locking the database. + - Fixed SSE token usage parsing: SSE parser now correctly merges input/output token counts from sequential events rather than overwriting them. + - Standardized default upstream timeout: Unified upstream proxy default timeout to 120s across config loader and UI creation. + Full Changelog: https://github.com/paopaoandlingyia/PrismCat/compare/v1.8.0...v1.9.0 +ReleaseNotesUrl: https://github.com/paopaoandlingyia/PrismCat/releases/tag/v1.2.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.locale.zh-CN.yaml b/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.locale.zh-CN.yaml new file mode 100644 index 000000000000..a7498c93b9e4 --- /dev/null +++ b/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.locale.zh-CN.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: paopaoandlingyia.PrismCat +PackageVersion: 1.9.0 +PackageLocale: zh-CN +ShortDescription: 一款面向大语言模型 API 的自托管透明代理与调试控制台。 +Description: PrismCat 是一款可自行部署的、面向大语言模型 API 的透明代理与调试控制台。只需修改一行代码——你的 base_url(基础请求地址),即可即时查看你的应用与 OpenAI/Claude/Gemini/Ollama 等任意大语言模型 API 之间的所有请求和响应,包括流式传输(SSE)内容。 +Tags: +- 人工智能 +- 代理 +- 大语言模型 +- 聊天机器人 +ReleaseNotesUrl: https://github.com/paopaoandlingyia/PrismCat/releases/tag/v1.9.0 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.yaml b/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.yaml new file mode 100644 index 000000000000..e3ddd96dca9b --- /dev/null +++ b/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.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: paopaoandlingyia.PrismCat +PackageVersion: 1.9.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 402739a2ab1244f59b25c6ec0ff02dd05fbd21b8 Mon Sep 17 00:00:00 2001 From: Janos Miko Date: Fri, 29 May 2026 16:20:40 +0200 Subject: [PATCH 17/82] New version: janosmiko.lfk 0.12.9 (#381112) Co-authored-by: goreleaserbot --- .../lfk/0.12.9/janosmiko.lfk.installer.yaml | 26 +++++++++++++++++ .../0.12.9/janosmiko.lfk.locale.en-US.yaml | 28 +++++++++++++++++++ .../j/janosmiko/lfk/0.12.9/janosmiko.lfk.yaml | 7 +++++ 3 files changed, 61 insertions(+) create mode 100644 manifests/j/janosmiko/lfk/0.12.9/janosmiko.lfk.installer.yaml create mode 100644 manifests/j/janosmiko/lfk/0.12.9/janosmiko.lfk.locale.en-US.yaml create mode 100644 manifests/j/janosmiko/lfk/0.12.9/janosmiko.lfk.yaml diff --git a/manifests/j/janosmiko/lfk/0.12.9/janosmiko.lfk.installer.yaml b/manifests/j/janosmiko/lfk/0.12.9/janosmiko.lfk.installer.yaml new file mode 100644 index 000000000000..f17b7246a121 --- /dev/null +++ b/manifests/j/janosmiko/lfk/0.12.9/janosmiko.lfk.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: janosmiko.lfk +PackageVersion: 0.12.9 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-05-29" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: lfk.exe + PortableCommandAlias: lfk + InstallerUrl: https://github.com/janosmiko/lfk/releases/download/v0.12.9/lfk_0.12.9_windows_amd64.zip + InstallerSha256: 7b7b8029efb3f578b33f6a76ae30efb08fe5f49bfef71b57994595fb2f71429e + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: lfk.exe + PortableCommandAlias: lfk + InstallerUrl: https://github.com/janosmiko/lfk/releases/download/v0.12.9/lfk_0.12.9_windows_arm64.zip + InstallerSha256: 4e29452f08a2ac456bc1be98be3598b54c843ad93fa5760096ebdfa87702c2b0 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/janosmiko/lfk/0.12.9/janosmiko.lfk.locale.en-US.yaml b/manifests/j/janosmiko/lfk/0.12.9/janosmiko.lfk.locale.en-US.yaml new file mode 100644 index 000000000000..dc98b009940e --- /dev/null +++ b/manifests/j/janosmiko/lfk/0.12.9/janosmiko.lfk.locale.en-US.yaml @@ -0,0 +1,28 @@ +# 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: janosmiko.lfk +PackageVersion: 0.12.9 +PackageLocale: en-US +Publisher: janosmiko +PublisherUrl: https://github.com/janosmiko +PublisherSupportUrl: https://github.com/janosmiko/lfk/issues +PackageName: lfk +PackageUrl: https://github.com/janosmiko/lfk +License: Apache-2.0 +LicenseUrl: https://github.com/janosmiko/lfk/blob/main/LICENSE +ShortDescription: Lightning Fast Kubernetes navigator +Description: | + LFK is a lightning-fast, keyboard-focused, yazi-inspired terminal user + interface for navigating and managing Kubernetes clusters. Built for + speed and efficiency, it brings a three-column Miller columns layout + with an owner-based resource hierarchy to your terminal. +Moniker: lfk +Tags: + - kubernetes + - tui + - devops + - k8s + - cli +ReleaseNotesUrl: https://github.com/janosmiko/lfk/releases/tag/v0.12.9 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/janosmiko/lfk/0.12.9/janosmiko.lfk.yaml b/manifests/j/janosmiko/lfk/0.12.9/janosmiko.lfk.yaml new file mode 100644 index 000000000000..5c6025c1a22c --- /dev/null +++ b/manifests/j/janosmiko/lfk/0.12.9/janosmiko.lfk.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: janosmiko.lfk +PackageVersion: 0.12.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 9d280881abf4b7d48c59ebf40307ba9178bca505 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: Fri, 29 May 2026 22:20:44 +0800 Subject: [PATCH 18/82] Remove version: DefangLabs.Defang version 3.0.1 (#381114) --- .../3.0.1/DefangLabs.Defang.installer.yaml | 26 ------------------- .../3.0.1/DefangLabs.Defang.locale.en-US.yaml | 17 ------------ .../Defang/3.0.1/DefangLabs.Defang.yaml | 7 ----- 3 files changed, 50 deletions(-) delete mode 100644 manifests/d/DefangLabs/Defang/3.0.1/DefangLabs.Defang.installer.yaml delete mode 100644 manifests/d/DefangLabs/Defang/3.0.1/DefangLabs.Defang.locale.en-US.yaml delete mode 100644 manifests/d/DefangLabs/Defang/3.0.1/DefangLabs.Defang.yaml diff --git a/manifests/d/DefangLabs/Defang/3.0.1/DefangLabs.Defang.installer.yaml b/manifests/d/DefangLabs/Defang/3.0.1/DefangLabs.Defang.installer.yaml deleted file mode 100644 index c5321bbe96bb..000000000000 --- a/manifests/d/DefangLabs/Defang/3.0.1/DefangLabs.Defang.installer.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# This file was generated by GoReleaser. DO NOT EDIT. -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json -PackageIdentifier: DefangLabs.Defang -PackageVersion: 3.0.1 -InstallerLocale: en-US -InstallerType: zip -ReleaseDate: "2026-01-24" -Installers: - - Architecture: arm64 - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: defang.exe - PortableCommandAlias: defang - InstallerUrl: https://s.defang.io/defang_3.0.1_windows_arm64.zip?x-defang-source=winget - InstallerSha256: da2450848646efb7299394f2c41c48e28395a1e432ac2575a50e1035549d520d - UpgradeBehavior: uninstallPrevious - - Architecture: x64 - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: defang.exe - PortableCommandAlias: defang - InstallerUrl: https://s.defang.io/defang_3.0.1_windows_amd64.zip?x-defang-source=winget - InstallerSha256: c9d7e96ae29fa67c53425d7dccd37747e7b28ccecce65764f3b4e23afd24574b - UpgradeBehavior: uninstallPrevious -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/d/DefangLabs/Defang/3.0.1/DefangLabs.Defang.locale.en-US.yaml b/manifests/d/DefangLabs/Defang/3.0.1/DefangLabs.Defang.locale.en-US.yaml deleted file mode 100644 index 5da452438556..000000000000 --- a/manifests/d/DefangLabs/Defang/3.0.1/DefangLabs.Defang.locale.en-US.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# This file was generated by GoReleaser. DO NOT EDIT. -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json -PackageIdentifier: DefangLabs.Defang -PackageVersion: 3.0.1 -PackageLocale: en-US -Publisher: DefangLabs -PublisherUrl: https://defang.io/ -PublisherSupportUrl: https://github.com/DefangLabs/defang/issues/ -PackageName: Defang -PackageUrl: https://github.com/DefangLabs/defang/ -License: MIT -Copyright: Defang Software Labs Inc. -ShortDescription: The Defang command-line interface (CLI) -Description: Develop Anything, Deploy Anywhere. -Moniker: Defang -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/d/DefangLabs/Defang/3.0.1/DefangLabs.Defang.yaml b/manifests/d/DefangLabs/Defang/3.0.1/DefangLabs.Defang.yaml deleted file mode 100644 index 17025e1547fa..000000000000 --- a/manifests/d/DefangLabs/Defang/3.0.1/DefangLabs.Defang.yaml +++ /dev/null @@ -1,7 +0,0 @@ -# This file was generated by GoReleaser. DO NOT EDIT. -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json -PackageIdentifier: DefangLabs.Defang -PackageVersion: 3.0.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From 0d56cfb1cf7a2c0ee720c107a3da4508838a6141 Mon Sep 17 00:00:00 2001 From: UnownBot Date: Fri, 29 May 2026 10:21:01 -0400 Subject: [PATCH 19/82] New version: LedgerHQ.LedgerLive version 4.6.0 (#381115) --- .../4.6.0/LedgerHQ.LedgerLive.installer.yaml | 23 ++++++++++++++++ .../LedgerHQ.LedgerLive.locale.en-US.yaml | 27 +++++++++++++++++++ .../LedgerHQ.LedgerLive.locale.zh-CN.yaml | 21 +++++++++++++++ .../LedgerLive/4.6.0/LedgerHQ.LedgerLive.yaml | 8 ++++++ 4 files changed, 79 insertions(+) create mode 100644 manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.installer.yaml create mode 100644 manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.locale.en-US.yaml create mode 100644 manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.locale.zh-CN.yaml create mode 100644 manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.yaml diff --git a/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.installer.yaml b/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.installer.yaml new file mode 100644 index 000000000000..5fa168e91f4a --- /dev/null +++ b/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.installer.yaml @@ -0,0 +1,23 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: LedgerHQ.LedgerLive +PackageVersion: 4.6.0 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +Protocols: +- ledgerlive +ProductCode: c62032b2-0bca-5abc-b458-fd67cfc9e49b +ReleaseDate: 2025-07-24 +AppsAndFeaturesEntries: +- DisplayName: Ledger Wallet 4.6.00 + Publisher: Ledger Wallet Team + ProductCode: c62032b2-0bca-5abc-b458-fd67cfc9e49b +Installers: +- Architecture: x64 + InstallerUrl: https://download.live.ledger.com/ledger-live-desktop-4.6.0-win-x64.exe + InstallerSha256: 6B9AC8ED75614B882AE790B9B05C59C810C0B28DAC4F2E013E9FD3D0BE5B0397 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.locale.en-US.yaml b/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.locale.en-US.yaml new file mode 100644 index 000000000000..310696794c51 --- /dev/null +++ b/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: LedgerHQ.LedgerLive +PackageVersion: 4.6.0 +PackageLocale: en-US +Publisher: Ledger Live Team +PublisherUrl: https://www.ledger.com/ +PublisherSupportUrl: https://support.ledger.com/ +PrivacyUrl: https://www.ledger.com/privacy-policy +Author: Ledger SAS +PackageName: Ledger Live +PackageUrl: https://www.ledger.com/ledger-live +License: Proprietary +LicenseUrl: https://shop.ledger.com/pages/ledger-live-terms-of-use +Copyright: Copyright © Ledger SAS. All rights reserved. +CopyrightUrl: https://shop.ledger.com/pages/ledger-live-terms-of-use +ShortDescription: A crypto wallet app and Web3 gateway +Description: |- + The Ledger Live app is a safe and easy interface for managing your cryptocurrencies using your Ledger device. + Unlike most apps, the Ledger Live crypto wallet app keeps your data directly on your phone or computer, so there’s no need to sign in using an email and password. All that’s required is your Ledger device and of course, you. +Tags: +- blockchain +- crypto +- nft +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.locale.zh-CN.yaml b/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.locale.zh-CN.yaml new file mode 100644 index 000000000000..82ac2107d781 --- /dev/null +++ b/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.locale.zh-CN.yaml @@ -0,0 +1,21 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: LedgerHQ.LedgerLive +PackageVersion: 4.6.0 +PackageLocale: zh-CN +PublisherUrl: https://www.ledger.com/zh-hans +PublisherSupportUrl: https://support.ledger.com/zh-CN/ +PrivacyUrl: https://www.ledger.com/zh-hans/privacy-policy +PackageUrl: https://www.ledger.com/zh-hans/ledger-live +License: 专有软件 +ShortDescription: 加密钱包应用程序和 Web3 门户 +Description: |- + Ledger Live 应用程序提供一个安全且简单的界面,与 Ledger 设备结合使用,轻松管理您的加密货币。 + 与大多数应用程序不同,Ledger Live 加密钱包应用程序将您的数据直接保存在您的手机或计算机上,因此无需使用电子邮件和密码登录。 所需的全部只是您的 Ledger 设备,当然还需要:您本人。 +Tags: +- nft +- 加密货币 +- 区块链 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.yaml b/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.yaml new file mode 100644 index 000000000000..6581c9029f3f --- /dev/null +++ b/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: LedgerHQ.LedgerLive +PackageVersion: 4.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From c7e8ba9601b634dee79d61caf879647dbe099ab7 Mon Sep 17 00:00:00 2001 From: Valentin Kiselev Date: Fri, 29 May 2026 17:21:18 +0300 Subject: [PATCH 20/82] New version: evilmartians.lefthook version 2.1.9 (#381116) --- .../evilmartians.lefthook.installer.yaml | 22 ++++++++++++++ .../evilmartians.lefthook.locale.en-US.yaml | 30 +++++++++++++++++++ .../lefthook/2.1.9/evilmartians.lefthook.yaml | 8 +++++ 3 files changed, 60 insertions(+) create mode 100644 manifests/e/evilmartians/lefthook/2.1.9/evilmartians.lefthook.installer.yaml create mode 100644 manifests/e/evilmartians/lefthook/2.1.9/evilmartians.lefthook.locale.en-US.yaml create mode 100644 manifests/e/evilmartians/lefthook/2.1.9/evilmartians.lefthook.yaml diff --git a/manifests/e/evilmartians/lefthook/2.1.9/evilmartians.lefthook.installer.yaml b/manifests/e/evilmartians/lefthook/2.1.9/evilmartians.lefthook.installer.yaml new file mode 100644 index 000000000000..5678d3a6dc0b --- /dev/null +++ b/manifests/e/evilmartians/lefthook/2.1.9/evilmartians.lefthook.installer.yaml @@ -0,0 +1,22 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: evilmartians.lefthook +PackageVersion: 2.1.9 +InstallerType: portable +UpgradeBehavior: install +Commands: +- lefthook +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/evilmartians/lefthook/releases/download/v2.1.9/lefthook_2.1.9_Windows_i386.exe + InstallerSha256: 65D9AB3A911616299E7BC2AB3D5536CABDD14B345BA7907C047BE2F74558847F +- Architecture: x64 + InstallerUrl: https://github.com/evilmartians/lefthook/releases/download/v2.1.9/lefthook_2.1.9_Windows_x86_64.exe + InstallerSha256: BCB94C2524153E8E003A4FE3AE77F86E84729C9F089EFC1C6B20C00E832DE046 +- Architecture: arm64 + InstallerUrl: https://github.com/evilmartians/lefthook/releases/download/v2.1.9/lefthook_2.1.9_Windows_arm64.exe + InstallerSha256: 5EF7B4446D14F23F2A4CC935FB8F68A93A9DAF6BC98752726137657A14DB1C40 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/e/evilmartians/lefthook/2.1.9/evilmartians.lefthook.locale.en-US.yaml b/manifests/e/evilmartians/lefthook/2.1.9/evilmartians.lefthook.locale.en-US.yaml new file mode 100644 index 000000000000..f2a1b46a5f4e --- /dev/null +++ b/manifests/e/evilmartians/lefthook/2.1.9/evilmartians.lefthook.locale.en-US.yaml @@ -0,0 +1,30 @@ +# 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: evilmartians.lefthook +PackageVersion: 2.1.9 +PackageLocale: en-US +Publisher: Evil Martians +PublisherUrl: https://evilmartians.com/ +PublisherSupportUrl: https://github.com/evilmartians/lefthook/issues +PackageName: Lefthook +PackageUrl: https://github.com/evilmartians/lefthook +License: MIT +LicenseUrl: https://github.com/evilmartians/lefthook/blob/HEAD/LICENSE +ShortDescription: Fast and powerful Git hooks manager for any type of projects. +Tags: +- git +- go +- golang +- hacktoberfest +- hooks +- lefthook +- manager +ReleaseNotes: |- + Changelog + - 1d35cba chore: add pretty gradient (#1432) + - 22be6c5 deps: May 2026 (#1415) + - 1bae568 fix: update hooks path after resetting (#1431) +ReleaseNotesUrl: https://github.com/evilmartians/lefthook/releases/tag/v2.1.9 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/e/evilmartians/lefthook/2.1.9/evilmartians.lefthook.yaml b/manifests/e/evilmartians/lefthook/2.1.9/evilmartians.lefthook.yaml new file mode 100644 index 000000000000..937fb3278bff --- /dev/null +++ b/manifests/e/evilmartians/lefthook/2.1.9/evilmartians.lefthook.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: evilmartians.lefthook +PackageVersion: 2.1.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 280a5581a2ae3300c4b9a67d0de1ba95b28168d9 Mon Sep 17 00:00:00 2001 From: Fei_xiangShi <595834560@qq.com> Date: Fri, 29 May 2026 22:21:48 +0800 Subject: [PATCH 21/82] New version: FeiXiangShi.Rustle version 0.4.4 (#381119) --- .../0.4.4/FeiXiangShi.Rustle.installer.yaml | 26 ++++++++++++++++ .../FeiXiangShi.Rustle.locale.zh-CN.yaml | 31 +++++++++++++++++++ .../Rustle/0.4.4/FeiXiangShi.Rustle.yaml | 8 +++++ 3 files changed, 65 insertions(+) create mode 100644 manifests/f/FeiXiangShi/Rustle/0.4.4/FeiXiangShi.Rustle.installer.yaml create mode 100644 manifests/f/FeiXiangShi/Rustle/0.4.4/FeiXiangShi.Rustle.locale.zh-CN.yaml create mode 100644 manifests/f/FeiXiangShi/Rustle/0.4.4/FeiXiangShi.Rustle.yaml diff --git a/manifests/f/FeiXiangShi/Rustle/0.4.4/FeiXiangShi.Rustle.installer.yaml b/manifests/f/FeiXiangShi/Rustle/0.4.4/FeiXiangShi.Rustle.installer.yaml new file mode 100644 index 000000000000..cda671129f84 --- /dev/null +++ b/manifests/f/FeiXiangShi/Rustle/0.4.4/FeiXiangShi.Rustle.installer.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: FeiXiangShi.Rustle +PackageVersion: 0.4.4 +InstallerType: portable +InstallModes: +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- rustle +FileExtensions: +- flac +- m4a +- mp3 +- ogg +- opus +- wav +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Fei-xiangShi/Rustle/releases/download/v0.4.4/rustle-windows-x86_64.exe + InstallerSha256: 943DFE48A257A46626472A768FB8056105932F65CCF24008273A50C3C73BBF81 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-05-29 diff --git a/manifests/f/FeiXiangShi/Rustle/0.4.4/FeiXiangShi.Rustle.locale.zh-CN.yaml b/manifests/f/FeiXiangShi/Rustle/0.4.4/FeiXiangShi.Rustle.locale.zh-CN.yaml new file mode 100644 index 000000000000..69cb9b1bf02b --- /dev/null +++ b/manifests/f/FeiXiangShi/Rustle/0.4.4/FeiXiangShi.Rustle.locale.zh-CN.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: FeiXiangShi.Rustle +PackageVersion: 0.4.4 +PackageLocale: zh-CN +Publisher: Fei_xiangShi +PublisherUrl: https://github.com/Fei-xiangShi +PublisherSupportUrl: https://github.com/Fei-xiangShi/Rustle/issues +Author: Fei_xiangShi +PackageName: rustle +PackageUrl: https://github.com/Fei-xiangShi/Rustle +License: AGPL-3.0-or-later +LicenseUrl: https://github.com/Fei-xiangShi/Rustle/blob/HEAD/LICENSE +ShortDescription: 一款带有 Apple Music 风格歌词、支持 GPU 加速渲染、使用 Rust 编写的跨平台音乐播放器。 +Description: Rustle 是一款使用 Rust 和 iced 构建的现代音乐播放器,支持网易云音乐在线播放、GPU 加速歌词渲染以及多种音频格式。 +Moniker: rustle +Tags: +- iced +- music +- netease +- netease-cloud-music +- netease-music +- rust +- wayland +ReleaseNotesUrl: https://github.com/Fei-xiangShi/Rustle/releases/tag/v0.4.4 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/Fei-xiangShi/Rustle/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/FeiXiangShi/Rustle/0.4.4/FeiXiangShi.Rustle.yaml b/manifests/f/FeiXiangShi/Rustle/0.4.4/FeiXiangShi.Rustle.yaml new file mode 100644 index 000000000000..39c0cab08825 --- /dev/null +++ b/manifests/f/FeiXiangShi/Rustle/0.4.4/FeiXiangShi.Rustle.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: FeiXiangShi.Rustle +PackageVersion: 0.4.4 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 From f25a03d3f994781b0bc2eec9002b230bc3e59097 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 22:21:51 +0800 Subject: [PATCH 22/82] New version: Astronet.Scholaread version 1.1.70 (#381122) --- .../1.1.70/Astronet.Scholaread.installer.yaml | 27 +++++++++++ .../Astronet.Scholaread.locale.en-US.yaml | 48 +++++++++++++++++++ .../Astronet.Scholaread.locale.zh-CN.yaml | 48 +++++++++++++++++++ .../1.1.70/Astronet.Scholaread.yaml | 8 ++++ 4 files changed, 131 insertions(+) create mode 100644 manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.installer.yaml create mode 100644 manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.locale.en-US.yaml create mode 100644 manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.locale.zh-CN.yaml create mode 100644 manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.yaml diff --git a/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.installer.yaml b/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.installer.yaml new file mode 100644 index 000000000000..8084a131b9b2 --- /dev/null +++ b/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.installer.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Astronet.Scholaread +PackageVersion: 1.1.70 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- scholaread +FileExtensions: +- caj +- pdf +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.scholaread.com/assets/pc-releases/1.1.70/com/Scholaread-win-x64-1.1.70.exe + InstallerSha256: 4C1BB3DC1A7C5E0E2DDD82822809AE65BC25F2E2D1FD4693B7771EFB5A8628F1 + ProductCode: c9fcbc5f-d2c1-524e-9455-a0098593a16f +- InstallerLocale: zh-CN + Architecture: x64 + InstallerUrl: https://cdn.scholaread.cn/assets/pc-releases/1.1.70/cn/Scholaread-win-x64-1.1.70.exe + InstallerSha256: 4409F7D00D1DAA3EA2A1A17D8277DC87E342E4B453498C910A11A978B5894AC6 + ProductCode: b171b469-051b-5b40-8791-79ac366d1e4b +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.locale.en-US.yaml b/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.locale.en-US.yaml new file mode 100644 index 000000000000..364b36d42208 --- /dev/null +++ b/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.locale.en-US.yaml @@ -0,0 +1,48 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Astronet.Scholaread +PackageVersion: 1.1.70 +PackageLocale: en-US +Publisher: Astronet Technology PTE LTD +PublisherUrl: https://www.scholaread.com/ +PublisherSupportUrl: https://workspace.jianguoyun.com/inbox/collect/c2bf8ec4adc34609a1420825dfab9866/submitv2 +PrivacyUrl: https://www.scholaread.com/help/privacy +Author: Astronet Technology PTE LTD. +PackageName: Scholaread +PackageUrl: https://www.scholaread.com/download +License: Proprietary +LicenseUrl: https://www.scholaread.com/help/terms +Copyright: Copyright © Astronet Technology PTE LTD 2026. All rights reserved. +CopyrightUrl: https://www.scholaread.com/help/terms +ShortDescription: AI-powered Research, Insights at Your Fingertips +Description: |- + Scholaread is committed to creating a premier academic reading experience, helping every scholar enhance the value of their time. + Amidst the sea of knowledge, countless papers and scholarly works serve as lighthouses guiding our intellectual journey. We aim to reshape academic reading, enabling scholars to navigate more smoothly and sail towards a broader and more distant future. + By utilizing advanced PDF layout parsing algorithms, we convert complexly formatted literature into clean, screen-friendly formats, allowing reading to transcend device limitations, and ensuring text, graphics, formulas, and tables are displayed with clarity. Our paragraph-by-paragraph full-text translations not only make reading more fluid but also allow the transfer of knowledge to transcend language barriers. We firmly believe that every paper has its value, and every piece of research deserves recognition. We hope that scholars around the globe can overcome linguistic obstacles and collectively contribute to the advancement of the world. + In the future, Scholaread will also provide a more comprehensive literature management solution, ensuring an efficient linkage between reading and writing so that every ounce of effort in scientific research is preserved and reflected. + The path to scientific discovery, though rugged and lengthy, can be made broader and brighter with technological innovation. Scholaread aspires to be an indispensable tool for scholars worldwide, ensuring that every precious minute is spent productively. + We sincerely welcome you and your colleagues, peers, study groups, and anyone interested to share in the Scholaread experience! +Tags: +- academics +- article +- book +- citation +- cite +- journal +- literature +- paper +- pdf +- reader +- reading +- research +- thesis +- viewer +ReleaseNotes: |- + - New “Research” is now in beta: manage AI Agent chats and generated content by research project. + - In a project, AI Agentuses your Library, project files, and web search to generate results. + - Save Agent outputs as project files to continue outlines, reviews, and drafts. + - Fixed known issues and improved the experience. +PurchaseUrl: https://www.scholaread.com/pricing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.locale.zh-CN.yaml b/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.locale.zh-CN.yaml new file mode 100644 index 000000000000..7e5695a8baa2 --- /dev/null +++ b/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.locale.zh-CN.yaml @@ -0,0 +1,48 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Astronet.Scholaread +PackageVersion: 1.1.70 +PackageLocale: zh-CN +Publisher: 上海亦答网络科技有限公司 +PublisherUrl: https://www.scholaread.cn/ +PublisherSupportUrl: https://workspace.jianguoyun.com/inbox/collect/308c02d2d43944d5a787b9c01735698f/submitv2 +PrivacyUrl: https://www.scholaread.cn/help/privacy +Author: 上海亦答网络科技有限公司 +PackageName: Scholaread +PackageUrl: https://www.scholaread.cn/download +License: 专有软件 +LicenseUrl: https://www.scholaread.cn/help/terms +Copyright: Copyright © 上海亦答网络科技有限公司 2026. All Rights Reserved. +CopyrightUrl: https://www.scholaread.cn/help/terms +ShortDescription: AI 助力,让科研变轻松 +Description: |- + 靠岸学术(Scholaread)致力于创造一流的学术阅读体验,帮助每一位学者提升时间价值。 + 在知识之海上,无数论文著作就像指引航途的灯塔。我们希望能重塑学术阅读,让学者们更顺利地探索航行,驶向更远更广阔的未来。 + 因此,通过先进的 PDF 排版解析算法,我们将复杂排版的文献转换成适合屏幕的简洁版式,让阅读不再受限于设备,图文、公式、数表都能清晰展现。而逐段对照全文翻译不仅能让阅读变得流畅,更让知识的传播不再受语言的限制。我们坚信,每一篇论文都有其价值,每一项研究都应被看见。我们希望全球的学者都能够跨越语言的障碍,共同促进世界的进步。 + 未来,靠岸学术(Scholaread)还将提供更完善的文献管理解决方案,实现阅读写作的高效衔接,让科研工作的每一分努力都能得到保存与体现。 + 科研的道路虽崎岖漫长,但技术创新能让这条道路变得更为宽广与明亮。靠岸学术(Scholaread)希望成为全球学者的必备工具,让宝贵的每一分钟都能用在刀刃上。 + 我们真诚欢迎您与您的同事、同行、学习小组以及任何对此感兴趣的人分享靠岸学术(Scholaread)! +Tags: +- pdf +- 书籍 +- 学术 +- 引文 +- 引用 +- 引用文献 +- 文献 +- 期刊 +- 查看器 +- 研究 +- 论文 +- 阅读 +- 阅读器 +- 靠岸学术 +ReleaseNotes: |- + - 「研究」功能上线内测,可按研究项目管理 AI Agent 会话和生成内容。 + - 在项目中提问,AI Agent 会结合文献库、项目文件和全网搜索生成结果。 + - Agent 生成内容可保存为项目文件,方便继续整理大纲、综述和论文草稿。 + - 修复已知问题,优化使用体验。 +PurchaseUrl: https://www.scholaread.cn/pricing +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.yaml b/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.yaml new file mode 100644 index 000000000000..f1384e6a2044 --- /dev/null +++ b/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.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: Astronet.Scholaread +PackageVersion: 1.1.70 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 3af96ea549456cb0b4ee5d9cc71a5c9134241bbf Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 22:22:08 +0800 Subject: [PATCH 23/82] New version: ByteDance.Douyin version 7.9.0 (#381123) --- .../7.9.0/ByteDance.Douyin.installer.yaml | 18 ++++++++++++++ .../7.9.0/ByteDance.Douyin.locale.en-US.yaml | 24 +++++++++++++++++++ .../7.9.0/ByteDance.Douyin.locale.zh-CN.yaml | 23 ++++++++++++++++++ .../Douyin/7.9.0/ByteDance.Douyin.yaml | 8 +++++++ 4 files changed, 73 insertions(+) create mode 100644 manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.installer.yaml create mode 100644 manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.locale.en-US.yaml create mode 100644 manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.locale.zh-CN.yaml create mode 100644 manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.yaml diff --git a/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.installer.yaml b/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.installer.yaml new file mode 100644 index 000000000000..3ae4767e570e --- /dev/null +++ b/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.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: ByteDance.Douyin +PackageVersion: 7.9.0 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: douyin +ReleaseDate: 2026-05-27 +Installers: +- Architecture: x86 + InstallerUrl: https://lf-douyin-pc-web.douyinstatic.com/obj/douyin-pc-web/douyin-pc-client/7044145585217083655/releases/383001056/7.9.0/win32-ia32/douyin-v7.9.0-win32-ia32-default.exe + InstallerSha256: 7AAEBC190E94CF7F3F78B0E91D79B059402860D17056155C25A43D9343678680 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.locale.en-US.yaml b/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.locale.en-US.yaml new file mode 100644 index 000000000000..ba2b3d4f3cc4 --- /dev/null +++ b/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ByteDance.Douyin +PackageVersion: 7.9.0 +PackageLocale: en-US +Publisher: Beijing Microlive Vision Technology Co., Ltd. +PublisherUrl: https://www.douyin.com/ +PublisherSupportUrl: https://www.douyin.com/aboutus/#contact +PrivacyUrl: https://www.douyin.com/draft/douyin_agreement/douyin_agreement_privacy.html +Author: Beijing Microlive Vision Technology Co., Ltd. +PackageName: 抖音 +PackageUrl: https://www.douyin.com/downloadpage/pc +License: Freeware +LicenseUrl: https://www.douyin.com/draft/douyin_agreement/douyin_agreement_user.html +Copyright: 2026© Douyin +ShortDescription: Discover good content and watch freely. +Tags: +- china +- douyin +- prc +- short-video +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.locale.zh-CN.yaml b/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.locale.zh-CN.yaml new file mode 100644 index 000000000000..cc5f5f72735e --- /dev/null +++ b/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.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: ByteDance.Douyin +PackageVersion: 7.9.0 +PackageLocale: zh-CN +Publisher: Beijing Microlive Vision Technology Co., Ltd. +PublisherUrl: https://www.douyin.com/ +PublisherSupportUrl: https://www.douyin.com/aboutus/#contact +PrivacyUrl: https://www.douyin.com/draft/douyin_agreement/douyin_agreement_privacy.html +Author: 北京微播视界科技有限公司 +PackageName: 抖音 +PackageUrl: https://www.douyin.com/downloadpage/pc +License: 免费软件 +LicenseUrl: https://www.douyin.com/draft/douyin_agreement/douyin_agreement_user.html +Copyright: 2026© 抖音 +ShortDescription: 发现好内容畅快看 +Tags: +- 抖音 +- 短视频 +ReleaseNotes: 新版本修复了一些已知问题,并针对性能进行优化 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.yaml b/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.yaml new file mode 100644 index 000000000000..cf6558812f3c --- /dev/null +++ b/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.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: ByteDance.Douyin +PackageVersion: 7.9.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From bae40ceb6d68064f1db711c5339c83d45ca58153 Mon Sep 17 00:00:00 2001 From: Yoshihiro Ito Date: Fri, 29 May 2026 23:22:37 +0900 Subject: [PATCH 24/82] New version: Filedini.Filedini version 0.6.1309.1327 (#381124) --- .../0.6.1309.1327/Filedini.Filedini.installer.yaml | 12 ++++++++++++ .../Filedini.Filedini.locale.en-US.yaml | 12 ++++++++++++ .../Filedini/0.6.1309.1327/Filedini.Filedini.yaml | 8 ++++++++ 3 files changed, 32 insertions(+) create mode 100644 manifests/f/Filedini/Filedini/0.6.1309.1327/Filedini.Filedini.installer.yaml create mode 100644 manifests/f/Filedini/Filedini/0.6.1309.1327/Filedini.Filedini.locale.en-US.yaml create mode 100644 manifests/f/Filedini/Filedini/0.6.1309.1327/Filedini.Filedini.yaml diff --git a/manifests/f/Filedini/Filedini/0.6.1309.1327/Filedini.Filedini.installer.yaml b/manifests/f/Filedini/Filedini/0.6.1309.1327/Filedini.Filedini.installer.yaml new file mode 100644 index 000000000000..47f60ca8b5ec --- /dev/null +++ b/manifests/f/Filedini/Filedini/0.6.1309.1327/Filedini.Filedini.installer.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Filedini.Filedini +PackageVersion: 0.6.1309.1327 +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://installer.filedini.app/Filedini-0.6.1309.1327-Installer.exe + InstallerSha256: 215340C2F56DCD05E698B4434DDBA49743AF122ACA130EBFD49F9236F0623976 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/f/Filedini/Filedini/0.6.1309.1327/Filedini.Filedini.locale.en-US.yaml b/manifests/f/Filedini/Filedini/0.6.1309.1327/Filedini.Filedini.locale.en-US.yaml new file mode 100644 index 000000000000..5bd9bb0db98f --- /dev/null +++ b/manifests/f/Filedini/Filedini/0.6.1309.1327/Filedini.Filedini.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Filedini.Filedini +PackageVersion: 0.6.1309.1327 +PackageLocale: en-US +Publisher: Filedini +PackageName: Filedini +License: Proprietary +ShortDescription: A fast, keyboard-first file manager for Windows. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/Filedini/Filedini/0.6.1309.1327/Filedini.Filedini.yaml b/manifests/f/Filedini/Filedini/0.6.1309.1327/Filedini.Filedini.yaml new file mode 100644 index 000000000000..ac8a46fa49e1 --- /dev/null +++ b/manifests/f/Filedini/Filedini/0.6.1309.1327/Filedini.Filedini.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: Filedini.Filedini +PackageVersion: 0.6.1309.1327 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 94645f1cc9926ac7abe2a67939d3a208980c9515 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 22:22:41 +0800 Subject: [PATCH 25/82] New version: JetBrains.TeamCity version 2026.1.1 (#381125) --- .../JetBrains.TeamCity.installer.yaml | 18 +++++++++++ .../JetBrains.TeamCity.locale.en-US.yaml | 32 +++++++++++++++++++ .../JetBrains.TeamCity.locale.zh-CN.yaml | 31 ++++++++++++++++++ .../TeamCity/2026.1.1/JetBrains.TeamCity.yaml | 8 +++++ 4 files changed, 89 insertions(+) create mode 100644 manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.installer.yaml create mode 100644 manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.locale.en-US.yaml create mode 100644 manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.locale.zh-CN.yaml create mode 100644 manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.yaml diff --git a/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.installer.yaml b/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.installer.yaml new file mode 100644 index 000000000000..58446fea2f5c --- /dev/null +++ b/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.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: JetBrains.TeamCity +PackageVersion: 2026.1.1 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +ProductCode: JetBrains TeamCity +ReleaseDate: 2026-05-29 +AppsAndFeaturesEntries: +- DisplayVersion: Build 222577 +Installers: +- Architecture: x64 + InstallerUrl: https://download.jetbrains.com/teamcity/TeamCity-2026.1.1.exe + InstallerSha256: FB54DE766E1C7F5E6F1A4F97DF853CCE061F0EC1EE853E81F618E7ED7E98B964 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.locale.en-US.yaml b/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.locale.en-US.yaml new file mode 100644 index 000000000000..570794ec10fe --- /dev/null +++ b/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: JetBrains.TeamCity +PackageVersion: 2026.1.1 +PackageLocale: en-US +Publisher: JetBrains s.r.o. +PublisherUrl: https://www.jetbrains.com/ +PublisherSupportUrl: https://www.jetbrains.com/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: JetBrains TeamCity +PackageUrl: https://www.jetbrains.com/teamcity/ +License: Proprietary +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2026 JetBrains s.r.o. +ShortDescription: Powerful continuous integration for DevOps-centric teams +Description: The powerful Continuous Integration and Deployment tool for Developers and DevOps Engineers. +Moniker: teamcity +Tags: +- cd +- ci +- develop +- development +- devops +ReleaseNotesUrl: https://www.jetbrains.com/help/teamcity/2026.1/teamcity-2026-1-1-release-notes.html +PurchaseUrl: https://www.jetbrains.com/teamcity/buy/ +Documentations: +- DocumentLabel: Learn TeamCity + DocumentUrl: https://www.jetbrains.com/teamcity/learn/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.locale.zh-CN.yaml b/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.locale.zh-CN.yaml new file mode 100644 index 000000000000..f4cc54c33c70 --- /dev/null +++ b/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.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: JetBrains.TeamCity +PackageVersion: 2026.1.1 +PackageLocale: zh-CN +Publisher: JetBrains s.r.o. +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: JetBrains TeamCity +PackageUrl: https://www.jetbrains.com/zh-cn/teamcity/ +License: 专有软件 +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2026 JetBrains s.r.o. +ShortDescription: 面向以 DevOps 为中心的团队的强大持续集成 +Description: 面向开发者和 DevOps 工程师的强大持续集成和部署工具。 +Tags: +- devops +- 开发 +- 持续交付 +- 持续部署 +- 持续集成 +ReleaseNotesUrl: https://www.jetbrains.com/help/teamcity/2026.1/teamcity-2026-1-1-release-notes.html +PurchaseUrl: https://www.jetbrains.com/zh-cn/teamcity/buy/ +Documentations: +- DocumentLabel: 学习 TeamCity + DocumentUrl: https://www.jetbrains.com/zh-cn/teamcity/learn/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.yaml b/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.yaml new file mode 100644 index 000000000000..be609a1b4fb3 --- /dev/null +++ b/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.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: JetBrains.TeamCity +PackageVersion: 2026.1.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 2c440928508e20e6d4d139a43998f6e0c583041e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= <31723128+kris6673@users.noreply.github.com> Date: Fri, 29 May 2026 16:22:58 +0200 Subject: [PATCH 26/82] New version: kubescape.kubescape version 4.0.9 (#381126) --- .../4.0.9/kubescape.kubescape.installer.yaml | 19 +++ .../kubescape.kubescape.locale.en-US.yaml | 150 ++++++++++++++++++ .../kubescape/4.0.9/kubescape.kubescape.yaml | 8 + 3 files changed, 177 insertions(+) create mode 100644 manifests/k/kubescape/kubescape/4.0.9/kubescape.kubescape.installer.yaml create mode 100644 manifests/k/kubescape/kubescape/4.0.9/kubescape.kubescape.locale.en-US.yaml create mode 100644 manifests/k/kubescape/kubescape/4.0.9/kubescape.kubescape.yaml diff --git a/manifests/k/kubescape/kubescape/4.0.9/kubescape.kubescape.installer.yaml b/manifests/k/kubescape/kubescape/4.0.9/kubescape.kubescape.installer.yaml new file mode 100644 index 000000000000..3a934cd245f3 --- /dev/null +++ b/manifests/k/kubescape/kubescape/4.0.9/kubescape.kubescape.installer.yaml @@ -0,0 +1,19 @@ +# 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: kubescape.kubescape +PackageVersion: 4.0.9 +InstallerType: portable +UpgradeBehavior: uninstallPrevious +Commands: +- kubescape +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/kubescape/kubescape/releases/download/v4.0.9/kubescape_4.0.9_windows_amd64.exe + InstallerSha256: C9F9E268FF974F3C4A2E1960DFAA5C8ABED3B24760E727790632427853CAF387 +- Architecture: arm64 + InstallerUrl: https://github.com/kubescape/kubescape/releases/download/v4.0.9/kubescape_4.0.9_windows_arm64.exe + InstallerSha256: 0D41DA98C24C036317DD6FAC2C95636B4A54662D7ADF4D6E59B34805B1EECF43 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/k/kubescape/kubescape/4.0.9/kubescape.kubescape.locale.en-US.yaml b/manifests/k/kubescape/kubescape/4.0.9/kubescape.kubescape.locale.en-US.yaml new file mode 100644 index 000000000000..fd8a5978be41 --- /dev/null +++ b/manifests/k/kubescape/kubescape/4.0.9/kubescape.kubescape.locale.en-US.yaml @@ -0,0 +1,150 @@ +# 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: kubescape.kubescape +PackageVersion: 4.0.9 +PackageLocale: en-US +Publisher: kubescape +PublisherUrl: https://kubescape.io/ +PublisherSupportUrl: https://github.com/kubescape/kubescape/issues +Author: The Kubescape Authors +PackageName: kubescape +PackageUrl: https://github.com/kubescape/kubescape +License: Apache-2.0 +LicenseUrl: https://github.com/kubescape/kubescape/blob/HEAD/LICENSE +Copyright: Copyright 2021-2023, the Kubescape Authors +ShortDescription: An open-source Kubernetes security platform for your IDE, CI/CD pipelines, and clusters +Description: Kubescape is an open-source Kubernetes security platform. It includes risk analysis, security compliance, and misconfiguration scanning. Targeted at the DevSecOps practitioner or platform engineer, it offers an easy-to-use CLI interface, flexible output formats, and automated scanning capabilities. It saves Kubernetes users and admins precious time, effort, and resources. Kubescape scans clusters, YAML files, and Helm charts. It detects misconfigurations according to multiple frameworks (including NSA-CISA, MITRE ATT&CK® and the CIS Benchmark). Kubescape was created by ARMO and is a Cloud Native Computing Foundation (CNCF) sandbox project. +Moniker: kubescape +Tags: +- best-practice +- devops +- kubernetes +- mitre-attack +- nsa +- security +- vulnerability-detection +ReleaseNotes: |- + Changelog + - ff48571 fix(resourcehandler): surface partial GVR collection failures instead of silently suppressing them + - 7da1924 Accept advertised base URI format in vulnerability manifest parser + - b503153 Add BoolPtrFlag unit tests + - 46f5695 Add image command RunE tests (#2182) + - e435fde Add threshold bounds unit tests + - fdf58c8 Add workload identifier parsing tests + - de1b3a1 Avoid nil source dereference in report marshal logging + - 969470d Emit SecurityException events for posture exception matches (#2291) + - d4d4d38 Feat/vap enforcement reconcile (#2307) + - 94ae647 Fix control scan validator error + - 0282a3e Fix false-positive master node taint classification + - a1a50ee Fix field selector state carryover across resource queries + - 1666f7b Fix inverted keepResults cleanup logic + - eedf923 Fix lint baseline issues + - 4ac5a3e Improve validation and error handling for config set + - 4bb74d3 Merge branch 'master' into test/imagescan-db-load-validation-pr + - 5d70480 Merge branch 'master' into test/imagescan-db-load-validation-pr + - 93bb574 Merge branch 'master' into test/imagescan-default-db-config-validation + - 07ea4bb Merge branch 'master' into test/listener-tls-key-error-cases + - 2437c87 Merge branch 'master' into test/rootutils-logger-env + - 5c2ad60 Merge branch 'master' of https://github.com/kubescape/kubescape into 2185 + - 9e2990f Merge branch 'master' of https://github.com/kubescape/kubescape into fix/pdf-html-default-output-file + - 35874cb Merge pull request #2062 from pfarikrispy/master + - ce8aa66 Merge pull request #2067 from Shreya2005-2005/docs/fix-operator-vulnerabilities-short-description + - 126add7 Merge pull request #2069 from Sanchit2662/feat/scan-coverage-not-evaluated + - 5347768 Merge pull request #2070 from Shreya2005-2005/fix/patch-buildchannel-goroutine-leak + - c69b285 Merge pull request #2072 from Shreya2005-2005/fix/findfile-walkfn-error-handling + - 04e9228 Merge pull request #2074 from Varadraj75/test/results-compliance-score-coverage + - c82ca31 Merge pull request #2076 from kimjune01/fix/vulnerability-manifest-uri-parsing + - f44d7ee Merge pull request #2077 from yugal07/2065 + - c0788db Merge pull request #2078 from Sanchit2662/fix/bump-k8s-interface-multi-group-clean + - 34bf98b Merge pull request #2079 from Mujib-Ahasan/format-output + - 2b13b27 Merge pull request #2081 from kubescape/dependabot/go_modules/github.com/in-toto/in-toto-golang-0.11.0 + - 8243904 Merge pull request #2082 from kubescape/dependabot/go_modules/httphandler/github.com/in-toto/in-toto-golang-0.11.0 + - b79ec88 Merge pull request #2085 from Varadraj75/test/compliance-results-comprehensive + - 9f210ac Merge pull request #2088 from Shreya2005-2005/docs/fix-patch-format-flag-description + - 983dfa3 Merge pull request #2090 from jijo-OO7/feat/anonymize-resource-metadata + - 04c6953 Merge pull request #2091 from Shreya2005-2005/feat/junit-skip-message-from-status-info + - 0fdacad Merge pull request #2093 from Shreya2005-2005/fix/list-policy-type-requeued-typo + - 0ac1f21 Merge pull request #2094 from anxovatomica/fix/typo-requeued-required + - 1879192 Merge pull request #2095 from looooown2006/fix/list-policy-type-required-2092 + - 658df04 Merge pull request #2098 from Shreya2005-2005/fix/remove-unreachable-args-check-and-fix-typo + - 8c0a6de Merge pull request #2100 from Sanchit2662/feat/fail-coverage-below + - 51a3f0c Merge pull request #2101 from yugal07/fix/junit-output-spec-compliance + - 70f2cd2 Merge pull request #2103 from Ridhi-03Kumari/refactor/replace-context-todo-initutils-test + - 8b91c03 Merge pull request #2105 from Ridhi-03Kumari/refactor/replace-context-todo-downloader + - 9661b0d Merge pull request #2106 from workwithsarang/fix/krew-release-template + - 7669efa Merge pull request #2107 from workwithsarang/fix/junit-skip-message + - e62afd0 Merge pull request #2109 from ThakurUjjwal1706/fix-results-idor-security + - 85dcb5f Merge pull request #2112 from Shreya2005-2005/fix/mcpserver-marshal-error-handling + - e61b7f1 Merge pull request #2114 from Shreya2005-2005/test/anonymizer-package-coverage + - 649b676 Merge pull request #2117 from Ridhi-03Kumari/fix/handle-scorewrapper-calculate-error + - 5440b19 Merge pull request #2120 from Shreya2005-2005/fix/mask-envfrom-in-remove-containers-data + - 8a688a7 Merge pull request #2121 from yugal07/fix/2108-report-unfixed-controls + - 2ca64ba Merge pull request #2125 from Sanchit2662/test/httphandler-status-serverstate-coverage + - 6d28916 Merge pull request #2126 from aaa-aashna/improve-config-set-validation + - c42ca75 Merge pull request #2127 from dakshhhhh16/add-core-patch-os-tests + - 4bf9530 Merge pull request #2129 from jijo-OO7/feat/anonymize-container-metadata + - 7aa2f39 Merge pull request #2130 from Ridhi-03Kumari/refactor/replace-log-printf-with-logger-in-mcpserver + - 9adb0dc Merge pull request #2132 from Shreya2005-2005/fix/clear-valuefrom-in-remove-containers-data + - a36a457 Merge pull request #2133 from Ridhi-03Kumari/fix/typo-argument-in-completion.go + - 0a50515 Merge pull request #2136 from Shreya2005-2005/fix/anonymize-container-list-type-assertion + - f8070cb Merge pull request #2137 from Ridhi-03Kumari/fix/handle-fclose-error-in-requestshandlerutils + - 17f115b Merge pull request #2141 from dakshhhhh16/add-rbac-report-tests + - 008d045 Merge pull request #2142 from dakshhhhh16/add-attacktrack-printer-tests + - 85d8a57 Merge pull request #2143 from dakshhhhh16/add-scaninfo-policy-tests + - 726f60f Merge pull request #2144 from dakshhhhh16/add-account-id-validation-tests + - de558df Merge pull request #2146 from Shreya2005-2005/fix/mcp-calltool-propagate-request-context + - 4e41dab Merge pull request #2148 from Shreya2005-2005/fix/anonymize-labels-to-copy-when-hide-set + - 854dee1 Merge pull request #2150 from Shreya2005-2005/docs/fix-patch-command-short-and-long-description + - 8984a78 Merge pull request #2154 from aaa-aashna/fix-fieldselector-state-leak + - c933ea3 Merge pull request #2155 from jijo-OO7/fix/anonymize-unstructured-container-support + - 02be936 Merge pull request #2157 from aaa-aashna/avoid-nil-source-panic-in-report-logging + - dc94733 Merge pull request #2158 from aaa-aashna/fix-master-node-taint-classification + - 02cbaf2 Merge pull request #2159 from aaa-aashna/fix-unfixed-control-summary-count + - 8e38a7b Merge pull request #2160 from Sanchit2662/fix/include-selector-cluster-scoped-dedup + - 33e8929 Merge pull request #2168 from Varadraj75/fix/ci-fork-workflow-permissions + - 729cd7f Merge pull request #2169 from Shreya2005-2005/fix/patch-format-flag-validation + - a31a6a3 Merge pull request #2170 from Sanchit2662/fix/partial-collection-silent-pass + - ae42f87 Merge pull request #2171 from Sanchit2662/test/httphandler-results-coverage + - 6f58086 Merge pull request #2173 from aaa-aashna/fix-keepresults-cleanup-logic + - d0c9afe Merge pull request #2175 from Shreya2005-2005/fix/list-vulnerability-manifests-namespace-filter + - 659352e Merge pull request #2177 from AnvayKharb/test/workload-scan-unit-tests + - 76cf64e Merge pull request #2178 from Shreya2005-2005/fix/prometheus-score-writes-to-writer + - 3854ebc Merge pull request #2179 from AnvayKharb/test/scan-validator-unit-tests + - 1217bfc Merge pull request #2180 from AnvayKharb/test/parse-workload-identifier + - 8da81dc Merge pull request #2181 from AnvayKharb/test/thresholds-only-unit-tests + - c625827 Merge pull request #2183 from AnvayKharb/test/boolptr-flag-unit-tests + - 53f9950 Merge pull request #2184 from krrishverma1805-web/fix/lint-baseline-cleanup + - 54f5387 Merge pull request #2186 from AnvayKharb/test/require-resource-match-unit-tests + - f8176b7 Merge pull request #2187 from krrishverma1805-web/perf/parallel-resource-pull + - cc39e1d Merge pull request #2188 from krrishverma1805-web/fix/propagate-context-storage + - 27d6620 Merge pull request #2192 from yugal07/fix/pdf-html-default-output-file + - 0f27f85 Merge pull request #2195 from Ridhi-03Kumari/refactor/structured-log-initutils + - 231cb67 Merge pull request #2197 from AnvayKharb/test/patch-default-tag-unit-tests + - dd8b0b1 Merge pull request #2199 from yugal07/2185 + - a240ed6 Merge pull request #2200 from AnvayKharb/test/imagescan-default-db-config-pr + - b3552da Merge pull request #2201 from AnvayKharb/test/imagescan-db-load-validation-pr + - b784931 Merge pull request #2202 from jijo-OO7/test/reorganize-anonymizer-unit-tests + - fe9fbff Merge pull request #2203 from yugal07/2189 + - 5f9c637 Merge pull request #2204 from Shreya2005-2005/fix/prometheus-missing-help-type-headers + - e796919 Merge pull request #2206 from Ridhi-03Kumari/refactor/structured-log-customerloader + - c8456f3 Merge pull request #2209 from AnvayKharb/test/imagescan-default-db-config-validation + - aed2947 Merge pull request #2212 from AnvayKharb/test/listener-env-port-offline + - 622def7 Merge pull request #2213 from AnvayKharb/test/listener-tls-key-error-cases + - e8f898a Merge pull request #2214 from Ridhi-03Kumari/fix/log-message-processruleslistener + - 4c10e6b Merge pull request #2215 from AnvayKharb/test/opaprocessor-summary-manual-review + - ed52292 Merge pull request #2219 from ivaresarthak-cloud/security/pin-actions-to-sha + - bcffe4e Merge pull request #2221 from AnvayKharb/test/boolptr-httpurl-helpers-unit-tests + - fec3c13 Merge pull request #2222 from AnvayKharb/test/fileformat-yaml-separator-unit-tests + - 070d57b Merge pull request #2224 from dakshhhhh16/test-prometheusutils-extract + - 037e508 Merge pull request #2225 from dakshhhhh16/test-metrics-init-update + - 245e6b0 Merge pull request #2226 from dakshhhhh16/test-datastructures-helpers + - 365760e Merge pull request #2227 from dakshhhhh16/test-operatorscaninfo-validation + - 33aeb83 Merge pull request #2228 from AnvayKharb/test/imagescan-default-matcher-config + - 5b46aa7 Merge pull request #2229 from dakshhhhh16/test-scancoverage-helpers + - dfd2421 Merge pull request #2230 from AnvayKharb/test/rootutils-logger-env + - 99fee16 Merge pull request #2231 from AnvayKharb/test/rootutils-logger-name-env + - 75c1a7f Merge pull request #2232 from AnvayKharb/test/rootutils-logger-name-precedence +ReleaseNotesUrl: https://github.com/kubescape/kubescape/releases/tag/v4.0.9 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/k/kubescape/kubescape/4.0.9/kubescape.kubescape.yaml b/manifests/k/kubescape/kubescape/4.0.9/kubescape.kubescape.yaml new file mode 100644 index 000000000000..85e47ade228a --- /dev/null +++ b/manifests/k/kubescape/kubescape/4.0.9/kubescape.kubescape.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: kubescape.kubescape +PackageVersion: 4.0.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 92d5050eb38243c633457a8668b97e328c9a3c95 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 22:23:15 +0800 Subject: [PATCH 27/82] New version: Postman.Postman version 12.12.6 (#381127) --- .../12.12.6/Postman.Postman.installer.yaml | 24 +++++++++++ .../12.12.6/Postman.Postman.locale.en-US.yaml | 40 +++++++++++++++++++ .../12.12.6/Postman.Postman.locale.zh-CN.yaml | 35 ++++++++++++++++ .../Postman/12.12.6/Postman.Postman.yaml | 8 ++++ 4 files changed, 107 insertions(+) create mode 100644 manifests/p/Postman/Postman/12.12.6/Postman.Postman.installer.yaml create mode 100644 manifests/p/Postman/Postman/12.12.6/Postman.Postman.locale.en-US.yaml create mode 100644 manifests/p/Postman/Postman/12.12.6/Postman.Postman.locale.zh-CN.yaml create mode 100644 manifests/p/Postman/Postman/12.12.6/Postman.Postman.yaml diff --git a/manifests/p/Postman/Postman/12.12.6/Postman.Postman.installer.yaml b/manifests/p/Postman/Postman/12.12.6/Postman.Postman.installer.yaml new file mode 100644 index 000000000000..c2e37378f1be --- /dev/null +++ b/manifests/p/Postman/Postman/12.12.6/Postman.Postman.installer.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Postman.Postman +PackageVersion: 12.12.6 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Protocols: +- postman +ProductCode: Postman +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.pstmn.io/download/version/12.12.6/windows_64 + InstallerSha256: F133FCFF9F2A6A238E585FB0DDA55287D998E698649EED9E434AC38C9DA8E58C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/Postman/Postman/12.12.6/Postman.Postman.locale.en-US.yaml b/manifests/p/Postman/Postman/12.12.6/Postman.Postman.locale.en-US.yaml new file mode 100644 index 000000000000..38ba76465bb1 --- /dev/null +++ b/manifests/p/Postman/Postman/12.12.6/Postman.Postman.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Postman.Postman +PackageVersion: 12.12.6 +PackageLocale: en-US +Publisher: Postman +PublisherUrl: https://www.postman.com/ +PublisherSupportUrl: https://www.postman.com/support/ +PrivacyUrl: https://www.postman.com/legal/privacy-policy/ +Author: Postman, Inc. +PackageName: Postman +PackageUrl: https://www.postman.com/downloads/ +License: Proprietary +LicenseUrl: https://www.postman.com/legal/terms/ +Copyright: © 2026 Postman, Inc. +CopyrightUrl: https://www.postman.com/legal/terms/ +ShortDescription: The Collaboration Platform for API Development +Description: Postman is a collaboration platform for API development. Postman's features simplify each step of building an API and streamline collaboration so you can create better APIs — faster. +Moniker: postman +Tags: +- api +- automation +- debug +- develop +- development +- interface +- internet +- network +- request +- response +ReleaseNotes: |- + Bug Fixes + Some critical bug fixes and enhancements were added in this release. +PurchaseUrl: https://www.postman.com/pricing/ +Documentations: +- DocumentLabel: Learning Center + DocumentUrl: https://learning.postman.com/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/Postman/Postman/12.12.6/Postman.Postman.locale.zh-CN.yaml b/manifests/p/Postman/Postman/12.12.6/Postman.Postman.locale.zh-CN.yaml new file mode 100644 index 000000000000..a3c33bd51fe0 --- /dev/null +++ b/manifests/p/Postman/Postman/12.12.6/Postman.Postman.locale.zh-CN.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Postman.Postman +PackageVersion: 12.12.6 +PackageLocale: zh-CN +Publisher: Postman +PublisherUrl: https://www.postman.com/ +PublisherSupportUrl: https://www.postman.com/support/ +PrivacyUrl: https://www.postman.com/legal/privacy-policy/ +Author: Postman, Inc. +PackageName: Postman +PackageUrl: https://www.postman.com/downloads/ +License: 专有软件 +LicenseUrl: https://www.postman.com/legal/terms/ +Copyright: © 2026 Postman, Inc. +CopyrightUrl: https://www.postman.com/legal/terms/ +ShortDescription: API 开发协作平台 +Description: Postman 是一个 API 开发协作平台,简化构建 API 流程的每一步,并让协作流水线化,从而更快更好地创建 API。 +Tags: +- api +- 互联网 +- 响应 +- 开发 +- 接口 +- 网络 +- 自动化 +- 请求 +- 调试 +PurchaseUrl: https://www.postman.com/pricing/ +Documentations: +- DocumentLabel: 学习中心 + DocumentUrl: https://learning.postman.com/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/p/Postman/Postman/12.12.6/Postman.Postman.yaml b/manifests/p/Postman/Postman/12.12.6/Postman.Postman.yaml new file mode 100644 index 000000000000..2427174d22b8 --- /dev/null +++ b/manifests/p/Postman/Postman/12.12.6/Postman.Postman.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: Postman.Postman +PackageVersion: 12.12.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 59232bf10e77d4d9923d4f37273df22b9895dfa7 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 22:23:32 +0800 Subject: [PATCH 28/82] New version: Sourcegraph.Amp version 0.0.1780045299-g6094cf (#381129) --- .../Sourcegraph.Amp.installer.yaml | 17 +++++++++ .../Sourcegraph.Amp.locale.en-US.yaml | 36 +++++++++++++++++++ .../Sourcegraph.Amp.locale.zh-CN.yaml | 25 +++++++++++++ .../Sourcegraph.Amp.yaml | 8 +++++ 4 files changed, 86 insertions(+) create mode 100644 manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.installer.yaml create mode 100644 manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.locale.en-US.yaml create mode 100644 manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.locale.zh-CN.yaml create mode 100644 manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.yaml diff --git a/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.installer.yaml b/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.installer.yaml new file mode 100644 index 000000000000..40706fd9ff7f --- /dev/null +++ b/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.installer.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Sourcegraph.Amp +PackageVersion: 0.0.1780045299-g6094cf +InstallerType: portable +Commands: +- amp +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +Installers: +- Architecture: x64 + InstallerUrl: https://static.ampcode.com/cli/0.0.1780045299-g6094cf/amp-windows-x64-baseline.exe + InstallerSha256: A11D9E880658B82FA60D959F17F144F59EAE529EA69FF8E17B19D692E0713700 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.locale.en-US.yaml b/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.locale.en-US.yaml new file mode 100644 index 000000000000..082f9db427d3 --- /dev/null +++ b/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Sourcegraph.Amp +PackageVersion: 0.0.1780045299-g6094cf +PackageLocale: en-US +Publisher: Sourcegraph, Inc. +PublisherUrl: https://ampcode.com/ +PrivacyUrl: https://ampcode.com/privacy-policy +Author: Sourcegraph, Inc. +PackageName: Amp CLI +PackageUrl: https://ampcode.com/ +License: Proprietary +LicenseUrl: https://ampcode.com/terms +CopyrightUrl: https://ampcode.com/terms +ShortDescription: The frontier coding agent for your terminal and editor. +Description: |- + Amp is the frontier coding agent for your terminal and editor. + - Multi-Model: Opus 4.7, GPT-5.4, fast models—Amp uses them all, for what each model is best at. + - Opinionated: You’re always using the good parts of Amp. If we don’t use and love a feature, we kill it. + - On the Frontier: Amp goes where the models take it. No backcompat, no legacy features. + - Threads: You can save and share your interactions with Amp. You wouldn’t code without version control, would you? + Amp has 3 modes: smart (unconstrained state-of-the-art model use), rush (faster, cheaper, suited for small, well-defined tasks), and deep (deep reasoning with extended thinking for complex problems). +Tags: +- agent +- agentic +- ai +- chatbot +- code +- coding +- large-language-model +- llm +- programming +PurchaseUrl: https://ampcode.com/manual#pricing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.locale.zh-CN.yaml b/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.locale.zh-CN.yaml new file mode 100644 index 000000000000..3b2307bc5d95 --- /dev/null +++ b/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Sourcegraph.Amp +PackageVersion: 0.0.1780045299-g6094cf +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 适用于终端与编辑器的前沿编码智能体。 +Description: |- + Amp 是适用于终端与编辑器的前沿编码智能体。 + - 多模型支持:Opus 4.7、GPT-5.4、速型模型——Amp 会调用所有模型,各展所长。 + - 去芜存菁:你始终能用到 Amp 的核心优质功能。如果我们自己不用、也不喜欢某个功能,就会直接砍掉它。 + - 前沿迭代:Amp 跟随大模型的发展持续更新。不保留向后兼容,不遗留老旧功能。 + - 会话管理:你可以保存并分享你和 Amp 的交互记录。写代码总离不开版本控制,不是吗? + Amp 共有三种工作模式:智能模式(调用无限制的最先进模型)、快速模式(速度更快、成本更低,适合定义清晰的小型任务),以及深度模式(针对复杂问题提供带扩展思考的深度推理)。 +Tags: +- 人工智能 +- 代码 +- 大语言模型 +- 智能体 +- 编程 +- 聊天机器人 +- 自主智能 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.yaml b/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.yaml new file mode 100644 index 000000000000..9dbc96f9cd7e --- /dev/null +++ b/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.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: Sourcegraph.Amp +PackageVersion: 0.0.1780045299-g6094cf +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 5f30bd9f1a2fbc8a43e878706ca9f36df7ac004b Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 22:23:50 +0800 Subject: [PATCH 29/82] New version: Tencent.WeChat.Universal version 4.1.10.27 (#381130) --- .../Tencent.WeChat.Universal.installer.yaml | 4 ++-- .../Tencent.WeChat.Universal.locale.en-US.yaml | 2 +- .../Tencent.WeChat.Universal.locale.zh-Hans-CN.yaml | 2 +- .../Tencent.WeChat.Universal.locale.zh-Hans.yaml | 2 +- .../{4.1.10.24 => 4.1.10.27}/Tencent.WeChat.Universal.yaml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) rename manifests/t/Tencent/WeChat/Universal/{4.1.10.24 => 4.1.10.27}/Tencent.WeChat.Universal.installer.yaml (80%) rename manifests/t/Tencent/WeChat/Universal/{4.1.10.24 => 4.1.10.27}/Tencent.WeChat.Universal.locale.en-US.yaml (97%) rename manifests/t/Tencent/WeChat/Universal/{4.1.10.24 => 4.1.10.27}/Tencent.WeChat.Universal.locale.zh-Hans-CN.yaml (97%) rename manifests/t/Tencent/WeChat/Universal/{4.1.10.24 => 4.1.10.27}/Tencent.WeChat.Universal.locale.zh-Hans.yaml (97%) rename manifests/t/Tencent/WeChat/Universal/{4.1.10.24 => 4.1.10.27}/Tencent.WeChat.Universal.yaml (90%) diff --git a/manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.installer.yaml b/manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.installer.yaml similarity index 80% rename from manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.installer.yaml rename to manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.installer.yaml index efe261543320..29742d99ba90 100644 --- a/manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.installer.yaml +++ b/manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Tencent.WeChat.Universal -PackageVersion: 4.1.10.24 +PackageVersion: 4.1.10.27 InstallerType: nullsoft Scope: machine UpgradeBehavior: install @@ -12,6 +12,6 @@ ProductCode: Weixin Installers: - Architecture: x64 InstallerUrl: https://dldir1v6.qq.com/weixin/Universal/Windows/WeChatWin_4.1.10.exe - InstallerSha256: 72200E92091DA921FB9520D72DB5A4FE7065839BAAB1E0AEABCA1D88EE4539E1 + InstallerSha256: 54203FC2B41983FA106B0AF0D67F86BEFC56CCD3DC1005D4BAB6DE8EA36B4F74 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.locale.en-US.yaml b/manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.locale.en-US.yaml similarity index 97% rename from manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.locale.en-US.yaml rename to manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.locale.en-US.yaml index bbf9e5341d18..45309e8ea235 100644 --- a/manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.locale.en-US.yaml +++ b/manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Tencent.WeChat.Universal -PackageVersion: 4.1.10.24 +PackageVersion: 4.1.10.27 PackageLocale: en-US Publisher: 腾讯科技(深圳)有限公司 PublisherUrl: https://www.wechat.com/en/ diff --git a/manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.locale.zh-Hans-CN.yaml b/manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.locale.zh-Hans-CN.yaml similarity index 97% rename from manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.locale.zh-Hans-CN.yaml rename to manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.locale.zh-Hans-CN.yaml index 1ad9eed58632..62ba31d04b87 100644 --- a/manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.locale.zh-Hans-CN.yaml +++ b/manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.locale.zh-Hans-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Tencent.WeChat.Universal -PackageVersion: 4.1.10.24 +PackageVersion: 4.1.10.27 PackageLocale: zh-Hans-CN Publisher: 腾讯科技(深圳)有限公司 PublisherUrl: https://weixin.qq.com/ diff --git a/manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.locale.zh-Hans.yaml b/manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.locale.zh-Hans.yaml similarity index 97% rename from manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.locale.zh-Hans.yaml rename to manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.locale.zh-Hans.yaml index 6c35ee9783b4..c094e9476581 100644 --- a/manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.locale.zh-Hans.yaml +++ b/manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.locale.zh-Hans.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Tencent.WeChat.Universal -PackageVersion: 4.1.10.24 +PackageVersion: 4.1.10.27 PackageLocale: zh-Hans Publisher: 腾讯科技(深圳)有限公司 PublisherUrl: https://www.wechat.com/zh_CN/ diff --git a/manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.yaml b/manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.yaml similarity index 90% rename from manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.yaml rename to manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.yaml index c84445c0b280..5a922ccb1099 100644 --- a/manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.yaml +++ b/manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Tencent.WeChat.Universal -PackageVersion: 4.1.10.24 +PackageVersion: 4.1.10.27 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 From 56aed704e7aa992b4c4355de5b8674fd4a2a33d1 Mon Sep 17 00:00:00 2001 From: UnownBot Date: Fri, 29 May 2026 10:24:42 -0400 Subject: [PATCH 30/82] New version: Microsoft.SafetyScanner version 1.451.158.0 (#381131) --- .../Microsoft.SafetyScanner.installer.yaml | 18 +++++++++++++++ .../Microsoft.SafetyScanner.locale.en-US.yaml | 23 +++++++++++++++++++ .../1.451.158.0/Microsoft.SafetyScanner.yaml | 8 +++++++ 3 files changed, 49 insertions(+) create mode 100644 manifests/m/Microsoft/SafetyScanner/1.451.158.0/Microsoft.SafetyScanner.installer.yaml create mode 100644 manifests/m/Microsoft/SafetyScanner/1.451.158.0/Microsoft.SafetyScanner.locale.en-US.yaml create mode 100644 manifests/m/Microsoft/SafetyScanner/1.451.158.0/Microsoft.SafetyScanner.yaml diff --git a/manifests/m/Microsoft/SafetyScanner/1.451.158.0/Microsoft.SafetyScanner.installer.yaml b/manifests/m/Microsoft/SafetyScanner/1.451.158.0/Microsoft.SafetyScanner.installer.yaml new file mode 100644 index 000000000000..9dc360f39b82 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.451.158.0/Microsoft.SafetyScanner.installer.yaml @@ -0,0 +1,18 @@ +# 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.451.158.0 +InstallerType: portable +Commands: +- safetyscanner +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x86 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.451.158.0&arch=x86 + InstallerSha256: E40AA92FA0446804D22C15E3AF6C5B8F941BBAADA3DCFD425D9A0936DFFDFCFD +- Architecture: x64 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.451.158.0&arch=amd64 + InstallerSha256: 019FDCDB194A783343BEE611D266AC78490E7F82E66B27C8B7F9CD092D73DFAF +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.451.158.0/Microsoft.SafetyScanner.locale.en-US.yaml b/manifests/m/Microsoft/SafetyScanner/1.451.158.0/Microsoft.SafetyScanner.locale.en-US.yaml new file mode 100644 index 000000000000..8706738bf7f7 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.451.158.0/Microsoft.SafetyScanner.locale.en-US.yaml @@ -0,0 +1,23 @@ +# 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 +PackageVersion: 1.451.158.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.451.158.0/Microsoft.SafetyScanner.yaml b/manifests/m/Microsoft/SafetyScanner/1.451.158.0/Microsoft.SafetyScanner.yaml new file mode 100644 index 000000000000..969fc2a94cf7 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.451.158.0/Microsoft.SafetyScanner.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.451.158.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From bd584ce78316e871ec0cd244f1a2b2646abba5dc Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 22:24:58 +0800 Subject: [PATCH 31/82] New version: Vivaldi.Vivaldi version 8.0.4033.35 (#381132) --- .../Vivaldi.Vivaldi.installer.yaml | 94 +++++++++++++++++++ .../Vivaldi.Vivaldi.locale.en-US.yaml | 36 +++++++ .../Vivaldi.Vivaldi.locale.zh-CN.yaml | 27 ++++++ .../Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.yaml | 8 ++ 4 files changed, 165 insertions(+) create mode 100644 manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.installer.yaml create mode 100644 manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.locale.en-US.yaml create mode 100644 manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.locale.zh-CN.yaml create mode 100644 manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.yaml diff --git a/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.installer.yaml b/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.installer.yaml new file mode 100644 index 000000000000..33832bda3490 --- /dev/null +++ b/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.installer.yaml @@ -0,0 +1,94 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Vivaldi.Vivaldi +PackageVersion: 8.0.4033.35 +InstallerType: exe +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --vivaldi-silent + SilentWithProgress: --vivaldi-silent + InstallLocation: --vivaldi-install-dir="" + Log: --verbose-logging --log-file="" +ExpectedReturnCodes: +- InstallerReturnCode: 60 + ReturnResponse: installInProgress +- InstallerReturnCode: 22 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 7 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 4 + ReturnResponse: downgrade +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +- tel +FileExtensions: +- apng +- flac +- gif +- htm +- html +- ico +- jpeg +- jpg +- log +- m4v +- mht +- mhtml +- mp3 +- mp4 +- ogg +- pdf +- png +- shtml +- svg +- txt +- webp +- xht +- xhtml +- xml +ProductCode: Vivaldi +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://downloads.vivaldi.com/stable/Vivaldi.8.0.4033.35.exe + InstallerSha256: 6661F57A28399661EC9EA188E0D1D6552C4D92CE7FD5114854F788EEEFE44428 + InstallerSwitches: + Custom: --do-not-launch-chrome +- Architecture: x86 + Scope: machine + InstallerUrl: https://downloads.vivaldi.com/stable/Vivaldi.8.0.4033.35.exe + InstallerSha256: 6661F57A28399661EC9EA188E0D1D6552C4D92CE7FD5114854F788EEEFE44428 + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level +- Architecture: x64 + Scope: user + InstallerUrl: https://downloads.vivaldi.com/stable/Vivaldi.8.0.4033.35.x64.exe + InstallerSha256: 93B721E70D5D18A2604C8D6703490688C10559B5A89F6BAECE15041546E9B9FD + InstallerSwitches: + Custom: --do-not-launch-chrome +- Architecture: x64 + Scope: machine + InstallerUrl: https://downloads.vivaldi.com/stable/Vivaldi.8.0.4033.35.x64.exe + InstallerSha256: 93B721E70D5D18A2604C8D6703490688C10559B5A89F6BAECE15041546E9B9FD + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level +- Architecture: arm64 + Scope: user + InstallerUrl: https://downloads.vivaldi.com/stable/Vivaldi.8.0.4033.35.arm64.exe + InstallerSha256: 3633CA528F14A914466FFED86295F04F053803A3DB1D34115B12893888BBAE56 + InstallerSwitches: + Custom: --do-not-launch-chrome +- Architecture: arm64 + Scope: machine + InstallerUrl: https://downloads.vivaldi.com/stable/Vivaldi.8.0.4033.35.arm64.exe + InstallerSha256: 3633CA528F14A914466FFED86295F04F053803A3DB1D34115B12893888BBAE56 + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.locale.en-US.yaml b/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.locale.en-US.yaml new file mode 100644 index 000000000000..59bc300108d8 --- /dev/null +++ b/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Vivaldi.Vivaldi +PackageVersion: 8.0.4033.35 +PackageLocale: en-US +Publisher: Vivaldi Technologies AS. +PublisherUrl: https://vivaldi.com/ +PublisherSupportUrl: https://help.vivaldi.com/ +PrivacyUrl: https://vivaldi.com/privacy/browser/ +Author: Vivaldi Technologies AS +PackageName: Vivaldi +PackageUrl: https://vivaldi.com/desktop/ +License: Freeware +LicenseUrl: https://vivaldi.com/privacy/vivaldi-end-user-license-agreement/ +Copyright: Copyright 2026 Vivaldi Technologies AS. All rights reserved. +ShortDescription: Powerful, Personal and Private web browser. +Description: Vivaldi is a web browser. But fun. It comes with a bunch of clever features built-in. It’s super flexible and does not track you. +Moniker: vivaldi +Tags: +- browser +- chromium +- internet +- manifestv2 +- mv2 +- pdfreader +- protonvpn +- rssreader +- web +- webbrowser +- webpage +- xp99gvqdx7jpr4 +ReleaseNotes: '- [Chromium] Update to 148.0.7778.221' +ReleaseNotesUrl: https://update.vivaldi.com/update/1.0/relnotes/8.0.4033.35.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.locale.zh-CN.yaml b/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.locale.zh-CN.yaml new file mode 100644 index 000000000000..8783f04411ac --- /dev/null +++ b/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.locale.zh-CN.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Vivaldi.Vivaldi +PackageVersion: 8.0.4033.35 +PackageLocale: zh-CN +Publisher: Vivaldi Technologies AS. +PublisherUrl: https://vivaldi.com/zh-hans/ +PublisherSupportUrl: https://help.vivaldi.com/ +PrivacyUrl: https://vivaldi.com/zh-hans/privacy/browser/ +Author: Vivaldi Technologies AS. +PackageName: Vivaldi +PackageUrl: https://vivaldi.com/zh-hans/desktop/ +License: 免费软件 +LicenseUrl: https://vivaldi.com/zh-hans/privacy/vivaldi-end-user-license-agreement/ +Copyright: Copyright 2026 Vivaldi Technologies AS. 版权所有。 +ShortDescription: 功能强大、个性定制、注重隐私的浏览器 +Description: Vivaldi 是一个有趣的浏览器,内置了很多强大的功能,并且非常灵活,不会跟踪你。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +- 隐私 +ReleaseNotesUrl: https://update.vivaldi.com/update/1.0/relnotes/8.0.4033.35.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.yaml b/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.yaml new file mode 100644 index 000000000000..c170980f6fc6 --- /dev/null +++ b/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.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: Vivaldi.Vivaldi +PackageVersion: 8.0.4033.35 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From adccc3f4a28f17b4fb852b183bcc3ae3be336900 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 22:25:15 +0800 Subject: [PATCH 32/82] New version: Yandex.Disk version 3.2.48.5143 (#381133) --- .../3.2.48.5143/Yandex.Disk.installer.yaml | 40 +++++++++++++++++++ .../3.2.48.5143/Yandex.Disk.locale.en-US.yaml | 31 ++++++++++++++ .../3.2.48.5143/Yandex.Disk.locale.zh-CN.yaml | 21 ++++++++++ .../Yandex/Disk/3.2.48.5143/Yandex.Disk.yaml | 8 ++++ 4 files changed, 100 insertions(+) create mode 100644 manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.installer.yaml create mode 100644 manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.locale.en-US.yaml create mode 100644 manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.locale.zh-CN.yaml create mode 100644 manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.yaml diff --git a/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.installer.yaml b/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.installer.yaml new file mode 100644 index 000000000000..6124fb27051e --- /dev/null +++ b/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Yandex.Disk +PackageVersion: 3.2.48.5143 +InstallerType: exe +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: -silent -norestart + SilentWithProgress: -silent -norestart +UpgradeBehavior: install +Protocols: +- telemost +- yandex-disk +ProductCode: YandexDisk2 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://disk.cdn.yandex.net/update/stable/00eb82dca8011e52c63bd59500676ded/YandexDisk30Setup_x86.exe + InstallerSha256: ED33B6884BA19EB349641A68F9DA5B3873BB2A5DFA19BA6D949B0B40473F8414 +- Architecture: x86 + Scope: machine + InstallerUrl: https://disk.cdn.yandex.net/update/stable/00eb82dca8011e52c63bd59500676ded/YandexDisk30Setup_x86.exe + InstallerSha256: ED33B6884BA19EB349641A68F9DA5B3873BB2A5DFA19BA6D949B0B40473F8414 + InstallerSwitches: + Custom: -permachine +- Architecture: x64 + Scope: user + InstallerUrl: https://disk.cdn.yandex.net/update/stable/4668bc5f07deaa84358da1d2f1acea76/YandexDisk30Setup_x64.exe + InstallerSha256: AF02F7D713D36C0489BC44F2431D8A37FB744C3484584015638FCDE36CA1A65D +- Architecture: x64 + Scope: machine + InstallerUrl: https://disk.cdn.yandex.net/update/stable/4668bc5f07deaa84358da1d2f1acea76/YandexDisk30Setup_x64.exe + InstallerSha256: AF02F7D713D36C0489BC44F2431D8A37FB744C3484584015638FCDE36CA1A65D + InstallerSwitches: + Custom: -permachine +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.locale.en-US.yaml b/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.locale.en-US.yaml new file mode 100644 index 000000000000..4ab12ba816d8 --- /dev/null +++ b/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Yandex.Disk +PackageVersion: 3.2.48.5143 +PackageLocale: en-US +Publisher: Yandex +PublisherUrl: https://yandex.com/ +PublisherSupportUrl: https://yandex.com/support/ +PrivacyUrl: https://yandex.com/legal/confidential/en/ +Author: YANDEX LLC +PackageName: Yandex.Disk +PackageUrl: https://360.yandex.com/disk/download/ +License: Proprietary +LicenseUrl: https://yandex.com/legal/disk_termsofuse/en/ +Copyright: © 2001—2026, Yandex +ShortDescription: A computer program that syncs your files with Yandex cloud storage so you can access them anywhere from different devices. +Tags: +- backup +- cloud +- cloud-drive +- download +- drive +- file +- netdisk +- share +- sync +- upload +PurchaseUrl: https://360.yandex.com/premium-plans +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.locale.zh-CN.yaml b/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.locale.zh-CN.yaml new file mode 100644 index 000000000000..0fbadde7f52c --- /dev/null +++ b/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.locale.zh-CN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Yandex.Disk +PackageVersion: 3.2.48.5143 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 一款可将您的文件与 Yandex 云存储同步的电脑程序,这样您就可以通过不同设备随时随地访问这些文件。 +Tags: +- 上传 +- 下载 +- 云 +- 云盘 +- 共享 +- 分享 +- 同步 +- 备份 +- 文件 +- 网盘 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.yaml b/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.yaml new file mode 100644 index 000000000000..59a3afbc4812 --- /dev/null +++ b/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.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: Yandex.Disk +PackageVersion: 3.2.48.5143 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 4f20b348c9f9d30ea24400f238ed9f5152edbbf3 Mon Sep 17 00:00:00 2001 From: Ladislau Szomoru <3372902+lszomoru@users.noreply.github.com> Date: Fri, 29 May 2026 16:25:45 +0200 Subject: [PATCH 33/82] New version: Microsoft.VisualStudioCode version 1.122.1 (#381136) Co-authored-by: 3372902+lszomoru@users.noreply.github.com --- .../Microsoft.VisualStudioCode.installer.yaml | 29 +++++++++++++++++++ ...crosoft.VisualStudioCode.locale.en-US.yaml | 20 +++++++++++++ .../1.122.1/Microsoft.VisualStudioCode.yaml | 8 +++++ 3 files changed, 57 insertions(+) create mode 100644 manifests/m/Microsoft/VisualStudioCode/1.122.1/Microsoft.VisualStudioCode.installer.yaml create mode 100644 manifests/m/Microsoft/VisualStudioCode/1.122.1/Microsoft.VisualStudioCode.locale.en-US.yaml create mode 100644 manifests/m/Microsoft/VisualStudioCode/1.122.1/Microsoft.VisualStudioCode.yaml diff --git a/manifests/m/Microsoft/VisualStudioCode/1.122.1/Microsoft.VisualStudioCode.installer.yaml b/manifests/m/Microsoft/VisualStudioCode/1.122.1/Microsoft.VisualStudioCode.installer.yaml new file mode 100644 index 000000000000..c95aed088e70 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudioCode/1.122.1/Microsoft.VisualStudioCode.installer.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.VisualStudioCode +PackageVersion: 1.122.1 +InstallerType: inno +InstallerSwitches: + Custom: /mergetasks=!runcode +Commands: +- code +Installers: +- Architecture: arm64 + Scope: machine + InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/stable/8761a5560cfd65fdd19ce7e2bd18dab5c0a4d84e/VSCodeSetup-arm64-1.122.1.exe + InstallerSha256: 88F21C82134875C3DBB1FD99F5AE538E80A25E8109EFF918E35F4BA594921C06 +- Architecture: arm64 + Scope: user + InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/stable/8761a5560cfd65fdd19ce7e2bd18dab5c0a4d84e/VSCodeUserSetup-arm64-1.122.1.exe + InstallerSha256: FECF4C32D3CE6C9C2A05DF123BEF1468E898669286E507668C0DB14E3E83E6F8 +- Architecture: x64 + Scope: machine + InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/stable/8761a5560cfd65fdd19ce7e2bd18dab5c0a4d84e/VSCodeSetup-x64-1.122.1.exe + InstallerSha256: 0508A23A33F25EC0B3BDB0EFBF270147D6A860635BD9216EDB80963059C3816B +- Architecture: x64 + Scope: user + InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/stable/8761a5560cfd65fdd19ce7e2bd18dab5c0a4d84e/VSCodeUserSetup-x64-1.122.1.exe + InstallerSha256: 90E66400580978037A721B4BEE586C3C99B8BE3C276AFD553D9A99FBE48CDA02 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/VisualStudioCode/1.122.1/Microsoft.VisualStudioCode.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudioCode/1.122.1/Microsoft.VisualStudioCode.locale.en-US.yaml new file mode 100644 index 000000000000..979a48ac4b72 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudioCode/1.122.1/Microsoft.VisualStudioCode.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.VisualStudioCode +PackageVersion: 1.122.1 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/ +PrivacyUrl: https://privacy.microsoft.com/ +PackageName: Microsoft Visual Studio Code +PackageUrl: https://code.visualstudio.com +License: Microsoft Software License +LicenseUrl: https://code.visualstudio.com/license +ShortDescription: Microsoft Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Microsoft Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. +Moniker: vscode +Tags: +- developer-tools +- editor +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/VisualStudioCode/1.122.1/Microsoft.VisualStudioCode.yaml b/manifests/m/Microsoft/VisualStudioCode/1.122.1/Microsoft.VisualStudioCode.yaml new file mode 100644 index 000000000000..0aecf78795c1 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudioCode/1.122.1/Microsoft.VisualStudioCode.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: Microsoft.VisualStudioCode +PackageVersion: 1.122.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From ecbc00727e4021b0472be1a7adb7cb05c3b48ad8 Mon Sep 17 00:00:00 2001 From: UnownBot Date: Fri, 29 May 2026 10:25:48 -0400 Subject: [PATCH 34/82] New version: Proton.ProtonPass.CLI version 2.1.2 (#381138) --- .../Proton.ProtonPass.CLI.installer.yaml | 21 +++++++++++ .../Proton.ProtonPass.CLI.locale.en-US.yaml | 36 +++++++++++++++++++ .../CLI/2.1.2/Proton.ProtonPass.CLI.yaml | 8 +++++ 3 files changed, 65 insertions(+) create mode 100644 manifests/p/Proton/ProtonPass/CLI/2.1.2/Proton.ProtonPass.CLI.installer.yaml create mode 100644 manifests/p/Proton/ProtonPass/CLI/2.1.2/Proton.ProtonPass.CLI.locale.en-US.yaml create mode 100644 manifests/p/Proton/ProtonPass/CLI/2.1.2/Proton.ProtonPass.CLI.yaml diff --git a/manifests/p/Proton/ProtonPass/CLI/2.1.2/Proton.ProtonPass.CLI.installer.yaml b/manifests/p/Proton/ProtonPass/CLI/2.1.2/Proton.ProtonPass.CLI.installer.yaml new file mode 100644 index 000000000000..df53433b253c --- /dev/null +++ b/manifests/p/Proton/ProtonPass/CLI/2.1.2/Proton.ProtonPass.CLI.installer.yaml @@ -0,0 +1,21 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Proton.ProtonPass.CLI +PackageVersion: 2.1.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: pass-cli.exe + PortableCommandAlias: pass-cli +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2026-05-29 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://proton.me/download/pass-cli/2.1.2/pass-cli-windows-x86_64.zip + InstallerSha256: C6A7C09D32E0C36A5FAEB1B15BF82253247778110DABAD5147F7EE0C4212A5A5 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/Proton/ProtonPass/CLI/2.1.2/Proton.ProtonPass.CLI.locale.en-US.yaml b/manifests/p/Proton/ProtonPass/CLI/2.1.2/Proton.ProtonPass.CLI.locale.en-US.yaml new file mode 100644 index 000000000000..c039199b251f --- /dev/null +++ b/manifests/p/Proton/ProtonPass/CLI/2.1.2/Proton.ProtonPass.CLI.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Proton.ProtonPass.CLI +PackageVersion: 2.1.2 +PackageLocale: en-US +Publisher: Proton AG +PublisherUrl: https://proton.me/ +PublisherSupportUrl: https://proton.me/support/pass +PrivacyUrl: https://proton.me/legal/privacy +Author: Proton AG +PackageName: Proton Pass CLI +PackageUrl: https://proton.me/pass +License: Proprietary +Copyright: © 2026 Proton AG. All rights reserved. +ShortDescription: Proton Pass CLI is a command-line interface for managing your Proton Pass vaults, items, and secrets. +Description: |- + The Proton Pass CLI allows you to manage your Proton Pass vaults and items directly from the command line, bringing the power of secure secret management to your terminal workflow. With the CLI, you can create, list, view, and delete vaults and items seamlessly, making it an great tool for developers and system administrators who prefer working in the command line. + + Beyond basic vault management, the CLI allows you to inject secrets into your applications through environment variables or template files, enabling easy integration with your deployment workflows. The tool also provides comprehensive SSH integration, allowing you to use your SSH keys stored in Proton Pass with your existing SSH workflows. + + Key features + Flexible secret management + - The CLI offers a flexible and intuitive approach to secret management through a simple URI syntax. You can reference any secret using the format pass://vault/item/field, making it easy to access specific credentials programmatically. This design allows you to inject secrets into environment variables for your applications or process template files that contain secret references. + SSH agent integration + - For developers working with SSH keys, the CLI provides robust SSH agent integration capabilities. You can load SSH keys stored in Proton Pass directly into your existing SSH agent, or run the Proton Pass CLI as a standalone SSH agent. +Tags: +- password +- password-manager +- proton +- vault +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://protonpass.github.io/pass-cli/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/Proton/ProtonPass/CLI/2.1.2/Proton.ProtonPass.CLI.yaml b/manifests/p/Proton/ProtonPass/CLI/2.1.2/Proton.ProtonPass.CLI.yaml new file mode 100644 index 000000000000..50ced77d7607 --- /dev/null +++ b/manifests/p/Proton/ProtonPass/CLI/2.1.2/Proton.ProtonPass.CLI.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Proton.ProtonPass.CLI +PackageVersion: 2.1.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 69dcb80e0e40868fb40e1d21194d4cd12eaa3863 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 22:26:05 +0800 Subject: [PATCH 35/82] New version: ByteDance.TraeSolo.CN version 2.3.33252 (#381143) --- .../ByteDance.TraeSolo.CN.installer.yaml | 24 ++++++++++++++ .../ByteDance.TraeSolo.CN.locale.en-US.yaml | 33 +++++++++++++++++++ .../ByteDance.TraeSolo.CN.locale.zh-CN.yaml | 22 +++++++++++++ .../CN/2.3.33252/ByteDance.TraeSolo.CN.yaml | 8 +++++ 4 files changed, 87 insertions(+) create mode 100644 manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.installer.yaml create mode 100644 manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.locale.en-US.yaml create mode 100644 manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.locale.zh-CN.yaml create mode 100644 manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.yaml diff --git a/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.installer.yaml b/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.installer.yaml new file mode 100644 index 000000000000..983c7bdbbbef --- /dev/null +++ b/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.installer.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ByteDance.TraeSolo.CN +PackageVersion: 2.3.33252 +InstallerType: inno +Scope: user +InstallerSwitches: + Custom: /mergetasks=!runcode +UpgradeBehavior: install +Protocols: +- solo-cn +ProductCode: '{953A2114-1972-4389-9722-1F54639F3958}_is1' +ReleaseDate: 2026-05-28 +Installers: +- Architecture: x64 + InstallerUrl: https://lf-cdn.trae.ai/obj/trae-ai-us/pkg/app/releases/stable/2.3.33252/win32/TRAE_SOLO_CN-Setup-x64.exe + InstallerSha256: D187DCDC40024643B760C039FCF074C132DB93797BDF77FCB54C586B6A7718C6 +- InstallerLocale: zh-CN + Architecture: x64 + InstallerUrl: https://lf-cdn.trae.com.cn/obj/trae-com-cn/pkg/app/releases/stable/2.3.33252/win32/TRAE_SOLO_CN-Setup-x64.exe + InstallerSha256: D187DCDC40024643B760C039FCF074C132DB93797BDF77FCB54C586B6A7718C6 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.locale.en-US.yaml b/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.locale.en-US.yaml new file mode 100644 index 000000000000..4e33b6416063 --- /dev/null +++ b/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ByteDance.TraeSolo.CN +PackageVersion: 2.3.33252 +PackageLocale: en-US +Publisher: Beijing Yinli Catapult Technology Co., Ltd. +PublisherUrl: https://www.trae.cn/ +PublisherSupportUrl: https://docs.trae.cn/solo/support +PrivacyUrl: https://www.trae.cn/privacy-policy +Author: Beijing Yinli Catapult Technology Co., Ltd. +PackageName: TRAE SOLO CN +PackageUrl: https://www.trae.cn/ide/download +License: Proprietary +LicenseUrl: https://www.trae.cn/terms-of-service +Copyright: Copyright © 2026. All rights reserved. +ShortDescription: More than Coding +Description: TRAE SOLO is an AI-native workspace that offers web, desktop, and mobile clients. It features two modes—More Than Coding (MTC) and Code—designed for different user groups. TRAE SOLO builds upon the original TRAE IDE SOLO mode with further enhanced capabilities, aiming to provide users with a unified, efficient, and customizable AI collaboration experience that covers scenarios ranging from professional development to everyday office work. +Tags: +- ai +- code +- coding +- develop +- development +- large-language-model +- llm +- programming +ReleaseNotesUrl: https://www.trae.cn/changelog +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.trae.cn/solo +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.locale.zh-CN.yaml b/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.locale.zh-CN.yaml new file mode 100644 index 000000000000..e1e7315988a8 --- /dev/null +++ b/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.locale.zh-CN.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: ByteDance.TraeSolo.CN +PackageVersion: 2.3.33252 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: More than Coding +Description: TRAE SOLO 是一款 AI 原生工作台,提供网页版、桌面版和移动版三种形态,并设有为不同用户群体设计的 More Than Coding (MTC) 与 Code 双模式。TRAE SOLO 的能力在原有 TRAE IDE SOLO 模式的基础上得到了进一步提升,旨在为用户提供统一、高效、可定制的 AI 协作体验,覆盖从专业开发到日常办公的各类场景。​ +Tags: +- ai +- llm +- 人工智能 +- 代码 +- 大语言模型 +- 开发 +- 编程 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.trae.cn/solo +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.yaml b/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.yaml new file mode 100644 index 000000000000..520344c509f1 --- /dev/null +++ b/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.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: ByteDance.TraeSolo.CN +PackageVersion: 2.3.33252 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From f87e762bb279b681791f87175bb373539ae02cf9 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 22:26:22 +0800 Subject: [PATCH 36/82] New version: Tencent.WorkBuddy version 4.24.2 (4.24.2.29266680) (#381156) --- .../4.24.2/Tencent.WorkBuddy.installer.yaml | 154 ++++++++++++++++++ .../Tencent.WorkBuddy.locale.en-US.yaml | 18 ++ .../Tencent.WorkBuddy.locale.zh-CN.yaml | 26 +++ .../WorkBuddy/4.24.2/Tencent.WorkBuddy.yaml | 8 + 4 files changed, 206 insertions(+) create mode 100644 manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.installer.yaml create mode 100644 manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.locale.en-US.yaml create mode 100644 manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.locale.zh-CN.yaml create mode 100644 manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.yaml diff --git a/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.installer.yaml b/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.installer.yaml new file mode 100644 index 000000000000..a8d96a13ae38 --- /dev/null +++ b/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.installer.yaml @@ -0,0 +1,154 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Tencent.WorkBuddy +PackageVersion: 4.24.2 +InstallerType: inno +Scope: user +InstallerSwitches: + Custom: /mergetasks=!runcode +UpgradeBehavior: install +Protocols: +- workbuddy +FileExtensions: +- ascx +- asp +- aspx +- bash +- bash_login +- bash_logout +- bash_profile +- bashrc +- bib +- bowerrc +- c +- c++ +- cc +- cfg +- cjs +- clj +- cljs +- cljx +- clojure +- cls +- cmake +- code-workspace +- coffee +- config +- containerfile +- cpp +- cs +- cshtml +- csproj +- css +- csv +- csx +- ctp +- cxx +- dart +- diff +- dockerfile +- dot +- dtd +- editorconfig +- edn +- erb +- eyaml +- eyml +- fs +- fsi +- fsscript +- fsx +- gemspec +- gitattributes +- gitconfig +- gitignore +- go +- gradle +- groovy +- h +- h++ +- handlebars +- hbs +- hh +- hpp +- hxx +- ipynb +- jade +- jav +- java +- js +- jscsrc +- jshintrc +- jshtm +- json +- jsp +- jsx +- less +- lua +- m +- makefile +- markdown +- md +- mdoc +- mdown +- mdtext +- mdtxt +- mdwn +- mjs +- mk +- mkd +- mkdn +- ml +- mli +- npmignore +- php +- phtml +- pl +- pl6 +- plist +- pm +- pm6 +- pod +- pp +- profile +- properties +- psgi +- py +- pyi +- r +- rb +- rhistory +- rprofile +- rs +- rst +- rt +- sass +- scss +- sh +- shtml +- sql +- t +- tex +- toml +- ts +- tsx +- vb +- vue +- wxi +- wxl +- wxs +- xaml +- xhtml +- xml +- yaml +- yml +- zsh +ProductCode: '{BFD312E9-1019-4F57-9F44-F86246833B50}}_is1' +ReleaseDate: 2026-05-28 +Installers: +- Architecture: x64 + InstallerUrl: https://download.codebuddy.cn/workbuddy/saas/win32-x64-user/WorkBuddy-win32-x64-user-4.24.2.29266680-b451b1ea.exe + InstallerSha256: AB2710B5233636DA8D497D68E69AA8EED6E1BCBAC79FEE461274785BEA2F788E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.locale.en-US.yaml b/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.locale.en-US.yaml new file mode 100644 index 000000000000..c533f0d8a010 --- /dev/null +++ b/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Tencent.WorkBuddy +PackageVersion: 4.24.2 +PackageLocale: en-US +Author: Tencent Technology (Shenzhen) Company Limited +License: Proprietary +ShortDescription: Desktop Agents - A New Paradigm for Office Work +Description: WorkBuddy is an AI-native desktop agent workspace that drives office automation through natural language. With a single command, it handles data processing, content creation, and in-depth analysis, delivering ready-to-use results and redefining workplace efficiency standards. +Tags: +- agent +- agentic +- ai +- large-language-model +- llm +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.locale.zh-CN.yaml b/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.locale.zh-CN.yaml new file mode 100644 index 000000000000..3c054952fd96 --- /dev/null +++ b/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.locale.zh-CN.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Tencent.WorkBuddy +PackageVersion: 4.24.2 +PackageLocale: zh-CN +Publisher: Tencent Technology (Shenzhen) Company Limited +PublisherUrl: https://www.codebuddy.cn/ +PublisherSupportUrl: https://cloud.tencent.com/document/product/1749/104249 +PrivacyUrl: https://privacy.qq.com/document/preview/284d799a07164d09bfc7cedd0ec3e089 +Author: 腾讯科技(深圳)有限公司 +PackageName: WorkBuddy +PackageUrl: https://copilot.tencent.com/work/ +License: 专有软件 +LicenseUrl: https://cloud.tencent.com/document/product/301/106125 +Copyright: Copyright (C) 2026 Tencent. All rights reserved. +CopyrightUrl: https://cloud.tencent.com/document/product/301/106125 +ShortDescription: 桌面智能体 办公新范式 +Description: WorkBuddy 是 AI 原生的桌面智能体工作台,以自然语言驱动办公自动化,一句指令即可完成数据处理、内容创作与深度分析,直接验收可交付结果,重塑职场效率标准。 +Tags: +- 人工智能 +- 大语言模型 +- 智能体 +- 自主智能 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.yaml b/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.yaml new file mode 100644 index 000000000000..1c48a82a894f --- /dev/null +++ b/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.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.WorkBuddy +PackageVersion: 4.24.2 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 From 047e5f929c10d53e514c982af65959a3b503a461 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 22:26:38 +0800 Subject: [PATCH 37/82] New version: Wondershare.UniConverter.17 version 17.4.0.589 (17.4.0) (#381157) --- ...Wondershare.UniConverter.17.installer.yaml | 75 +++++++++++++++++++ ...dershare.UniConverter.17.locale.en-US.yaml | 51 +++++++++++++ ...dershare.UniConverter.17.locale.zh-CN.yaml | 34 +++++++++ .../Wondershare.UniConverter.17.yaml | 8 ++ 4 files changed, 168 insertions(+) create mode 100644 manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.installer.yaml create mode 100644 manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.locale.en-US.yaml create mode 100644 manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.locale.zh-CN.yaml create mode 100644 manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.yaml diff --git a/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.installer.yaml b/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.installer.yaml new file mode 100644 index 000000000000..abcb7f42b6af --- /dev/null +++ b/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.installer.yaml @@ -0,0 +1,75 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Wondershare.UniConverter.17 +PackageVersion: 17.4.0.589 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- wsvcu +FileExtensions: +- 3g2 +- 3gp +- aac +- ac3 +- aif +- aiff +- amr +- ape +- asf +- au +- avi +- caf +- divx +- dv +- f4v +- flac +- flv +- m2t +- m2ts +- m4a +- m4b +- m4p +- m4r +- m4v +- mka +- mkv +- mod +- mov +- mp2 +- mp3 +- mp4 +- mpa +- mpeg +- mpg +- mts +- mxf +- nsv +- ogg +- ogv +- opus +- ra +- ram +- rm +- rmvb +- tod +- tp +- trp +- ts +- ts4 +- use +- vob +- vro +- wav +- webm +- wma +- wmv +- wtv +ProductCode: UniConverter 17_is1 +Installers: +- Architecture: x64 + InstallerUrl: https://download.wondershare.com/cbs_down/uniconverter_64bit_17.4.0_full14204.exe + InstallerSha256: 492F283B8D8FD0D520166D895EDB11C45E056A5748929E6F02B593F91F2234EE +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.locale.en-US.yaml b/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.locale.en-US.yaml new file mode 100644 index 000000000000..e43f004fae92 --- /dev/null +++ b/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.locale.en-US.yaml @@ -0,0 +1,51 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Wondershare.UniConverter.17 +PackageVersion: 17.4.0.589 +PackageLocale: en-US +Publisher: Wondershare Software +PublisherUrl: https://www.wondershare.com/ +PublisherSupportUrl: https://support.wondershare.com/how-tos/uniconverter/ +PrivacyUrl: https://www.wondershare.com/privacy.html +Author: Wondershare Technology Group Co.,Ltd. +PackageName: Wondershare UniConverter 17 +PackageUrl: https://videoconverter.wondershare.com/ +License: Proprietary +LicenseUrl: https://www.wondershare.com/company/end-user-license-agreement.html +Copyright: Copyright © 2026 Wondershare. All rights reserved. +CopyrightUrl: https://www.wondershare.com/company/terms_conditions.html +ShortDescription: A high-speed converter for thousands of media formats. +Description: Wondershare UniConverter is a complete video conversion toolset (conversion, editing, screen recording) with a simple user interface. It is easy to learn, cost effective, and empowers you to work faster. Compress files to more manageable sizes, convert into over 1000 formats, and edit your videos all with one software. +Tags: +- audio +- capture +- compress +- convert +- converter +- crop +- edit +- encode +- format +- media +- merge +- music +- record +- trim +- video +- watermark +ReleaseNotes: |- + 1. Video Watermark Remover: New generative AI-powered Ultra model for higher-quality watermark removal, plus a Motion Tracking brush for erasing moving objects more naturally. + 2. Video Enhancer: Upgraded Video Stabilization capability and a new Motion Blur model help make shaky or choppy footage smoother. + 3. Image Enhancer: New AI model presets for removing Glare & Reflections, and enhancing cloudy photos. + 4. Video Background Remover: Cleaner cutouts, smoother preview, and an improved background replacement workflow. + 5. Noise Remover: Better audio denoising results and an improved interaction experience. + 6. Video Compressor: Quality-priority mode now supports GPU acceleration on Windows with NVIDIA graphics cards. + This update also includes UX refinements and bug fixes for a smoother editing and exporting experience. +ReleaseNotesUrl: https://videoconverter.wondershare.com/what-is-new.html +PurchaseUrl: https://videoconverter.wondershare.com/store/windows-individuals.html +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://videoconverter.wondershare.com/guide/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.locale.zh-CN.yaml b/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.locale.zh-CN.yaml new file mode 100644 index 000000000000..7b63b9b2cb37 --- /dev/null +++ b/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.locale.zh-CN.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: Wondershare.UniConverter.17 +PackageVersion: 17.4.0.589 +PackageLocale: zh-CN +Author: 万兴科技集团股份有限公司 +PackageName: Wondershare UniConverter 17 +License: 专有软件 +Copyright: © 2026 万兴科技集团股份有限公司 版权所有 +ShortDescription: 一款支持数千媒体格式的高速转换器 +Description: Wondershare UniConverter 提供视频转换、压缩、编辑、录屏等全方位的专业音视频解决方案,你可以通过 Wondershare UniConverter 进行 1000+ 种视频格式的转换,将文件压缩至更易于操作和管理的大小,并对您的视频进行编辑处理;同时,Wondershare UniConverter 还提供 DVD、CD 刻录以及数据修复、GIF 制作、图片格式转换等特色功能,简单的用户界面助你轻松快速地实现音视频以及图片的处理工作。 +Tags: +- 剪切 +- 压制 +- 压缩 +- 合并 +- 媒体 +- 录制 +- 录屏 +- 格式 +- 水印 +- 视频 +- 编辑 +- 裁剪 +- 转换 +- 转换器 +- 音乐 +- 音频 +Documentations: +- DocumentLabel: 用户手册 + DocumentUrl: https://videoconverter.wondershare.com/guide/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.yaml b/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.yaml new file mode 100644 index 000000000000..4c3455822a44 --- /dev/null +++ b/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.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: Wondershare.UniConverter.17 +PackageVersion: 17.4.0.589 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 30e9ce9e2f2b4da1b0820a11d0f0bc6b0c78d4f0 Mon Sep 17 00:00:00 2001 From: UnownBot Date: Fri, 29 May 2026 10:27:06 -0400 Subject: [PATCH 38/82] New version: Microsoft.SafetyScanner version 1.451.161.0 (#381160) --- .../Microsoft.SafetyScanner.installer.yaml | 18 +++++++++++++++ .../Microsoft.SafetyScanner.locale.en-US.yaml | 23 +++++++++++++++++++ .../1.451.161.0/Microsoft.SafetyScanner.yaml | 8 +++++++ 3 files changed, 49 insertions(+) create mode 100644 manifests/m/Microsoft/SafetyScanner/1.451.161.0/Microsoft.SafetyScanner.installer.yaml create mode 100644 manifests/m/Microsoft/SafetyScanner/1.451.161.0/Microsoft.SafetyScanner.locale.en-US.yaml create mode 100644 manifests/m/Microsoft/SafetyScanner/1.451.161.0/Microsoft.SafetyScanner.yaml diff --git a/manifests/m/Microsoft/SafetyScanner/1.451.161.0/Microsoft.SafetyScanner.installer.yaml b/manifests/m/Microsoft/SafetyScanner/1.451.161.0/Microsoft.SafetyScanner.installer.yaml new file mode 100644 index 000000000000..1885df0919ab --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.451.161.0/Microsoft.SafetyScanner.installer.yaml @@ -0,0 +1,18 @@ +# 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.451.161.0 +InstallerType: portable +Commands: +- safetyscanner +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x86 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.451.161.0&arch=x86 + InstallerSha256: 06C9E4C423879C9EB78F661F40365E21E8C5D3B36B1534200B45B5EAA1FF261C +- Architecture: x64 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.451.161.0&arch=amd64 + InstallerSha256: B0F026DCCDC8A09CBB603DC16069EBA7AE077577ABFE9BB8009EE90ABBEFD2EC +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.451.161.0/Microsoft.SafetyScanner.locale.en-US.yaml b/manifests/m/Microsoft/SafetyScanner/1.451.161.0/Microsoft.SafetyScanner.locale.en-US.yaml new file mode 100644 index 000000000000..73c74b8c26e6 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.451.161.0/Microsoft.SafetyScanner.locale.en-US.yaml @@ -0,0 +1,23 @@ +# 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 +PackageVersion: 1.451.161.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.451.161.0/Microsoft.SafetyScanner.yaml b/manifests/m/Microsoft/SafetyScanner/1.451.161.0/Microsoft.SafetyScanner.yaml new file mode 100644 index 000000000000..b9a88e54efe2 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.451.161.0/Microsoft.SafetyScanner.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.451.161.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From f7e7e2d6a1101ebd61b9a6cffb5557c0e88bfbf2 Mon Sep 17 00:00:00 2001 From: DaMn good B0t <143536629+damn-good-b0t@users.noreply.github.com> Date: Fri, 29 May 2026 16:27:10 +0200 Subject: [PATCH 39/82] New version: AdaLang.Alire.Portable version 2.1.1 (#381161) --- .../AdaLang.Alire.Portable.installer.yaml | 17 +++++++++++ .../AdaLang.Alire.Portable.locale.en-US.yaml | 30 +++++++++++++++++++ .../2.1.1/AdaLang.Alire.Portable.yaml | 8 +++++ 3 files changed, 55 insertions(+) create mode 100644 manifests/a/AdaLang/Alire/Portable/2.1.1/AdaLang.Alire.Portable.installer.yaml create mode 100644 manifests/a/AdaLang/Alire/Portable/2.1.1/AdaLang.Alire.Portable.locale.en-US.yaml create mode 100644 manifests/a/AdaLang/Alire/Portable/2.1.1/AdaLang.Alire.Portable.yaml diff --git a/manifests/a/AdaLang/Alire/Portable/2.1.1/AdaLang.Alire.Portable.installer.yaml b/manifests/a/AdaLang/Alire/Portable/2.1.1/AdaLang.Alire.Portable.installer.yaml new file mode 100644 index 000000000000..827dd89ccc2d --- /dev/null +++ b/manifests/a/AdaLang/Alire/Portable/2.1.1/AdaLang.Alire.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: AdaLang.Alire.Portable +PackageVersion: 2.1.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: bin/alr.exe +UpgradeBehavior: install +ReleaseDate: 2026-05-25 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/alire-project/alire/releases/download/v2.1.1/alr-2.1.1-bin-x86_64-windows.zip + InstallerSha256: 863013B1F94DA6F3B7D0D5A74022AC3370424EEEA9A470EBDB33D188D61B9125 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/AdaLang/Alire/Portable/2.1.1/AdaLang.Alire.Portable.locale.en-US.yaml b/manifests/a/AdaLang/Alire/Portable/2.1.1/AdaLang.Alire.Portable.locale.en-US.yaml new file mode 100644 index 000000000000..8f0e31ea42c0 --- /dev/null +++ b/manifests/a/AdaLang/Alire/Portable/2.1.1/AdaLang.Alire.Portable.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: AdaLang.Alire.Portable +PackageVersion: 2.1.1 +PackageLocale: en-US +Publisher: The Alire Developers +PublisherUrl: https://github.com/alire-project/ +PublisherSupportUrl: https://github.com/alire-project/alire/issues +Author: The Alire Developers +PackageName: Alire +PackageUrl: https://alire.ada.dev/ +License: GPL-3.0 +LicenseUrl: https://github.com/alire-project/alire/blob/HEAD/LICENSE.txt +ShortDescription: Ada/SPARK Source Package Manager +Description: A catalog of ready-to-use Ada libraries plus a command-line tool (alr) to obtain, build, and incorporate them into your own projects. It aims to fulfill a similar role to Rust's cargo or OCaml's opam. +Moniker: alr-portable +Tags: +- ada +- ada-2012 +- package-management +- package-manager +- package-manager-tool +- reproducible-builds +ReleaseNotes: |- + Maintenance release with bugfixes and MSYS2 updated installer. + Full Changelog: v2.1.0...v2.1.1 +ReleaseNotesUrl: https://github.com/alire-project/alire/releases/tag/v2.1.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/AdaLang/Alire/Portable/2.1.1/AdaLang.Alire.Portable.yaml b/manifests/a/AdaLang/Alire/Portable/2.1.1/AdaLang.Alire.Portable.yaml new file mode 100644 index 000000000000..33146588e7bb --- /dev/null +++ b/manifests/a/AdaLang/Alire/Portable/2.1.1/AdaLang.Alire.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: AdaLang.Alire.Portable +PackageVersion: 2.1.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 75da18edbc921874ed1ab6c43d501e3277f49092 Mon Sep 17 00:00:00 2001 From: ZHAO Xudong <986839138@qq.com> Date: Fri, 29 May 2026 22:27:38 +0800 Subject: [PATCH 40/82] New version: electerm.electerm version 3.12.0 (#381162) --- .../3.12.0/electerm.electerm.installer.yaml | 31 ++++++++ .../electerm.electerm.locale.en-US.yaml | 71 +++++++++++++++++++ .../electerm/3.12.0/electerm.electerm.yaml | 8 +++ 3 files changed, 110 insertions(+) create mode 100644 manifests/e/electerm/electerm/3.12.0/electerm.electerm.installer.yaml create mode 100644 manifests/e/electerm/electerm/3.12.0/electerm.electerm.locale.en-US.yaml create mode 100644 manifests/e/electerm/electerm/3.12.0/electerm.electerm.yaml diff --git a/manifests/e/electerm/electerm/3.12.0/electerm.electerm.installer.yaml b/manifests/e/electerm/electerm/3.12.0/electerm.electerm.installer.yaml new file mode 100644 index 000000000000..4d51e5b97938 --- /dev/null +++ b/manifests/e/electerm/electerm/3.12.0/electerm.electerm.installer.yaml @@ -0,0 +1,31 @@ +# 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: electerm.electerm +PackageVersion: 3.12.0 +InstallerLocale: en-US +InstallerType: nullsoft +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: cdebb73f-ddf5-57cd-a4a4-998a5c7283dd +ReleaseDate: 2026-05-29 +AppsAndFeaturesEntries: +- DisplayName: electerm 3.12.0 + ProductCode: cdebb73f-ddf5-57cd-a4a4-998a5c7283dd +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/electerm/electerm/releases/download/v3.12.0/electerm-3.12.0-win-x64-installer.exe + InstallerSha256: 07F1F1D1F9EEA7A6D4B43305D59FDE2AEE0D24C151A0C5A7D9562D1B3AD57B76 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/electerm/electerm/releases/download/v3.12.0/electerm-3.12.0-win-x64-installer.exe + InstallerSha256: 07F1F1D1F9EEA7A6D4B43305D59FDE2AEE0D24C151A0C5A7D9562D1B3AD57B76 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/e/electerm/electerm/3.12.0/electerm.electerm.locale.en-US.yaml b/manifests/e/electerm/electerm/3.12.0/electerm.electerm.locale.en-US.yaml new file mode 100644 index 000000000000..66014d38c031 --- /dev/null +++ b/manifests/e/electerm/electerm/3.12.0/electerm.electerm.locale.en-US.yaml @@ -0,0 +1,71 @@ +# 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: electerm.electerm +PackageVersion: 3.12.0 +PackageLocale: en-US +Publisher: ZHAO Xudong +PublisherUrl: https://github.com/electerm/electerm +PublisherSupportUrl: https://github.com/electerm/electerm/issues +PrivacyUrl: https://github.com/electerm/electerm/wiki/privacy-notice +Author: ZHAO Xudong +PackageName: electerm +PackageUrl: https://github.com/electerm/electerm +License: MIT +LicenseUrl: https://github.com/electerm/electerm/blob/HEAD/LICENSE +Copyright: Copyright (c) 2017~tomorrow electerm, ZHAO Xudong +CopyrightUrl: https://raw.githubusercontent.com/electerm/electerm/master/LICENSE +ShortDescription: Terminal/ssh/sftp/ftp/telnet/serialport/RDP/VNC/Spice client(linux, mac, win) +Description: Terminal/ssh/sftp/ftp/telnet/serialport/RDP/VNC/Spice client(linux, mac, win) +Moniker: electerm +Tags: +- developer-tools +- file-manager +- powershell +- rdp +- serialport +- sftp +- shell +- spice +- ssh +- telnet +- terminal +- utilities +- vnc +- wsl +ReleaseNotes: |- + New features/UI/Updates + - serialport: Add XMODEM protocol support for file transfers in serialport session (#4358) + - serialport: Support TX/RX line endings for serialport session + - AI Agent: Add close_tab function for tab management + - AI Agent: Support sftp transfer + - MCP/AI Agent: Add open tab tool to directly open session without creating bookmark + - MCP: Enhance bookmark create by adding data validation and sanitization + - MCP/AI Agent: Fix MCP/AI run command ability, now can run in any tab + - Add confirmation for clearing AI chat history + - Add AI chat mode persistence with local storage + - UI: Improve bookmark list mouse over UI + - UI: Improve history UI logic + Bug fixes + - Fix sftp upload folder modify time issue + - Fix server info code, avoid potential crash (#4362) + - Fix backspace can not trigger terminal scroll to bottom issue + 新功能/界面/更新 + - serialport: 为串口会话添加 XMODEM 协议支持,用于文件传输 (#4358) + - serialport: 支持串口会话的 TX/RX 行尾符设置 + - AI 代理:添加 close_tab 功能用于标签页管理 + - AI 代理:支持 SFTP 文件传输 + - MCP/AI 代理:添加 open tab 工具,可直接打开会话而无需创建书签 + - MCP:通过添加数据验证和清理增强书签创建功能 + - MCP/AI 代理:修复 MCP/AI 运行命令功能,现在可在任意标签页中运行 + - 添加清空 AI 聊天历史的确认提示 + - 添加 AI 聊天模式的本地存储持久化 + - 界面:改进书签列表鼠标悬停效果 + - 界面:改进历史记录界面逻辑 + 问题修复 + - 修复 SFTP 上传文件夹修改时间的问题 + - 修复服务器信息代码,避免潜在崩溃 (#4362) + - 修复退格键无法触发终端滚动到底部的问题 +ReleaseNotesUrl: https://github.com/electerm/electerm/releases/tag/v3.12.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/e/electerm/electerm/3.12.0/electerm.electerm.yaml b/manifests/e/electerm/electerm/3.12.0/electerm.electerm.yaml new file mode 100644 index 000000000000..43e0c6fb7409 --- /dev/null +++ b/manifests/e/electerm/electerm/3.12.0/electerm.electerm.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: electerm.electerm +PackageVersion: 3.12.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 6f153157dc0885587fb75a10026601763c5055ff Mon Sep 17 00:00:00 2001 From: ZHAO Xudong <986839138@qq.com> Date: Fri, 29 May 2026 22:27:43 +0800 Subject: [PATCH 41/82] Remove version: electerm.electerm version 3.7.18 (#381163) --- .../3.7.18/electerm.electerm.installer.yaml | 31 ------------- .../electerm.electerm.locale.en-US.yaml | 43 ------------------- .../electerm/3.7.18/electerm.electerm.yaml | 8 ---- 3 files changed, 82 deletions(-) delete mode 100644 manifests/e/electerm/electerm/3.7.18/electerm.electerm.installer.yaml delete mode 100644 manifests/e/electerm/electerm/3.7.18/electerm.electerm.locale.en-US.yaml delete mode 100644 manifests/e/electerm/electerm/3.7.18/electerm.electerm.yaml diff --git a/manifests/e/electerm/electerm/3.7.18/electerm.electerm.installer.yaml b/manifests/e/electerm/electerm/3.7.18/electerm.electerm.installer.yaml deleted file mode 100644 index 631173eac6e9..000000000000 --- a/manifests/e/electerm/electerm/3.7.18/electerm.electerm.installer.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# 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: electerm.electerm -PackageVersion: 3.7.18 -InstallerLocale: en-US -InstallerType: nullsoft -InstallModes: -- interactive -- silent -UpgradeBehavior: install -ProductCode: cdebb73f-ddf5-57cd-a4a4-998a5c7283dd -ReleaseDate: 2026-04-29 -AppsAndFeaturesEntries: -- DisplayName: electerm 3.7.18 - ProductCode: cdebb73f-ddf5-57cd-a4a4-998a5c7283dd -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/electerm/electerm/releases/download/v3.7.18/electerm-3.7.18-win-x64-installer.exe - InstallerSha256: CED1C743BD92D497C69F08F48D739549B96A6F434AA101DB702FEDF9581E6B3E - InstallerSwitches: - Custom: /CURRENTUSER -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/electerm/electerm/releases/download/v3.7.18/electerm-3.7.18-win-x64-installer.exe - InstallerSha256: CED1C743BD92D497C69F08F48D739549B96A6F434AA101DB702FEDF9581E6B3E - InstallerSwitches: - Custom: /ALLUSERS -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/e/electerm/electerm/3.7.18/electerm.electerm.locale.en-US.yaml b/manifests/e/electerm/electerm/3.7.18/electerm.electerm.locale.en-US.yaml deleted file mode 100644 index 8858c314ec6e..000000000000 --- a/manifests/e/electerm/electerm/3.7.18/electerm.electerm.locale.en-US.yaml +++ /dev/null @@ -1,43 +0,0 @@ -# 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: electerm.electerm -PackageVersion: 3.7.18 -PackageLocale: en-US -Publisher: ZHAO Xudong -PublisherUrl: https://github.com/electerm/electerm -PublisherSupportUrl: https://github.com/electerm/electerm/issues -PrivacyUrl: https://github.com/electerm/electerm/wiki/privacy-notice -Author: ZHAO Xudong -PackageName: electerm -PackageUrl: https://github.com/electerm/electerm -License: MIT -LicenseUrl: https://github.com/electerm/electerm/blob/HEAD/LICENSE -Copyright: Copyright (c) 2017~tomorrow electerm, ZHAO Xudong -CopyrightUrl: https://raw.githubusercontent.com/electerm/electerm/master/LICENSE -ShortDescription: Terminal/ssh/sftp/ftp/telnet/serialport/RDP/VNC/Spice client(linux, mac, win) -Description: Terminal/ssh/sftp/ftp/telnet/serialport/RDP/VNC/Spice client(linux, mac, win) -Moniker: electerm -Tags: -- developer-tools -- file-manager -- powershell -- rdp -- serialport -- sftp -- shell -- spice -- ssh -- telnet -- terminal -- utilities -- vnc -- wsl -ReleaseNotes: |- - Quick bug fix release - - Fix ssh agent login - 快速修复发布 - - 修复 ssh agent 登录问题 -ReleaseNotesUrl: https://github.com/electerm/electerm/releases/tag/v3.7.18 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/e/electerm/electerm/3.7.18/electerm.electerm.yaml b/manifests/e/electerm/electerm/3.7.18/electerm.electerm.yaml deleted file mode 100644 index b31106a54593..000000000000 --- a/manifests/e/electerm/electerm/3.7.18/electerm.electerm.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: electerm.electerm -PackageVersion: 3.7.18 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 From 9ac4c1cd6c7370b66d9e3c79f4939a679c52a87d Mon Sep 17 00:00:00 2001 From: ZHAO Xudong <986839138@qq.com> Date: Fri, 29 May 2026 22:28:10 +0800 Subject: [PATCH 42/82] Remove version: electerm.electerm version 3.7.16 (#381164) --- .../3.7.16/electerm.electerm.installer.yaml | 31 ---------- .../electerm.electerm.locale.en-US.yaml | 59 ------------------- .../electerm/3.7.16/electerm.electerm.yaml | 8 --- 3 files changed, 98 deletions(-) delete mode 100644 manifests/e/electerm/electerm/3.7.16/electerm.electerm.installer.yaml delete mode 100644 manifests/e/electerm/electerm/3.7.16/electerm.electerm.locale.en-US.yaml delete mode 100644 manifests/e/electerm/electerm/3.7.16/electerm.electerm.yaml diff --git a/manifests/e/electerm/electerm/3.7.16/electerm.electerm.installer.yaml b/manifests/e/electerm/electerm/3.7.16/electerm.electerm.installer.yaml deleted file mode 100644 index 3c0b588d27f3..000000000000 --- a/manifests/e/electerm/electerm/3.7.16/electerm.electerm.installer.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# 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: electerm.electerm -PackageVersion: 3.7.16 -InstallerLocale: en-US -InstallerType: nullsoft -InstallModes: -- interactive -- silent -UpgradeBehavior: install -ProductCode: cdebb73f-ddf5-57cd-a4a4-998a5c7283dd -ReleaseDate: 2026-04-29 -AppsAndFeaturesEntries: -- DisplayName: electerm 3.7.16 - ProductCode: cdebb73f-ddf5-57cd-a4a4-998a5c7283dd -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/electerm/electerm/releases/download/v3.7.16/electerm-3.7.16-win-x64-installer.exe - InstallerSha256: 3EAB7858F58B6C61EB05823F69918CD7095B02C2962E1FB55871835262E722D7 - InstallerSwitches: - Custom: /CURRENTUSER -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/electerm/electerm/releases/download/v3.7.16/electerm-3.7.16-win-x64-installer.exe - InstallerSha256: 3EAB7858F58B6C61EB05823F69918CD7095B02C2962E1FB55871835262E722D7 - InstallerSwitches: - Custom: /ALLUSERS -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/e/electerm/electerm/3.7.16/electerm.electerm.locale.en-US.yaml b/manifests/e/electerm/electerm/3.7.16/electerm.electerm.locale.en-US.yaml deleted file mode 100644 index 30dfcf68b954..000000000000 --- a/manifests/e/electerm/electerm/3.7.16/electerm.electerm.locale.en-US.yaml +++ /dev/null @@ -1,59 +0,0 @@ -# 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: electerm.electerm -PackageVersion: 3.7.16 -PackageLocale: en-US -Publisher: ZHAO Xudong -PublisherUrl: https://github.com/electerm/electerm -PublisherSupportUrl: https://github.com/electerm/electerm/issues -PrivacyUrl: https://github.com/electerm/electerm/wiki/privacy-notice -Author: ZHAO Xudong -PackageName: electerm -PackageUrl: https://github.com/electerm/electerm -License: MIT -LicenseUrl: https://github.com/electerm/electerm/blob/HEAD/LICENSE -Copyright: Copyright (c) 2017~tomorrow electerm, ZHAO Xudong -CopyrightUrl: https://raw.githubusercontent.com/electerm/electerm/master/LICENSE -ShortDescription: Terminal/ssh/sftp/ftp/telnet/serialport/RDP/VNC/Spice client(linux, mac, win) -Description: Terminal/ssh/sftp/ftp/telnet/serialport/RDP/VNC/Spice client(linux, mac, win) -Moniker: electerm -Tags: -- developer-tools -- file-manager -- powershell -- rdp -- serialport -- sftp -- shell -- spice -- ssh -- telnet -- terminal -- utilities -- vnc -- wsl -ReleaseNotes: |- - New features/UI/Updates - - Improve tree list performance - Bug fixes - - Fix AI generate bookmark logic for profile auth type - - Fix open AI form not open issue for the first time click menu issue - - When add AI created bookmarks, add one by one to avoid crash the app - - Fix shell detect logic in terminal - - Fix terminal background when terminal initialized - - Fix ssh login for some 2FA server - - Fix widget load security issue - 新功能/界面/更新 - - 提升树状列表性能 - 问题修复 - - 修复 AI 生成书签逻辑对 profile auth 类型的支持 - - 修复首次点击菜单时 AI 表单不打开的问题 - - 添加 AI 创建的书签时逐个添加以避免应用崩溃 - - 修复终端中的 shell 检测逻辑 - - 修复终端初始化时的背景问题 - - 修复部分 2FA 服务器的 SSH 登录问题 - - 修复 widget 加载安全问题 -ReleaseNotesUrl: https://github.com/electerm/electerm/releases/tag/v3.7.16 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/e/electerm/electerm/3.7.16/electerm.electerm.yaml b/manifests/e/electerm/electerm/3.7.16/electerm.electerm.yaml deleted file mode 100644 index 0ac38c4957b2..000000000000 --- a/manifests/e/electerm/electerm/3.7.16/electerm.electerm.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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: electerm.electerm -PackageVersion: 3.7.16 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 From b7540934016c1deddb1f780c27341ef252f5b073 Mon Sep 17 00:00:00 2001 From: KarbitsCode <107671693+KarbitsCode@users.noreply.github.com> Date: Fri, 29 May 2026 22:28:14 +0800 Subject: [PATCH 43/82] Modify: iTop.iTopEasyDesktop version 4.3.0.342 (#381166) --- .../iTop.iTopEasyDesktop.installer.yaml | 4 ++-- .../iTop.iTopEasyDesktop.locale.en-US.yaml | 18 ++++++++---------- .../4.3.0.342/iTop.iTopEasyDesktop.yaml | 2 +- 3 files changed, 11 insertions(+), 13 deletions(-) diff --git a/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.installer.yaml b/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.installer.yaml index d09bd18317a6..bd997deb2b85 100644 --- a/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.installer.yaml +++ b/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2026/May/19 +# Created using wingetcreate 1.12.8.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: iTop.iTopEasyDesktop @@ -15,4 +15,4 @@ Installers: InstallerSha256: 2460BC2C81DAED88B4EDBF437EFB61A2CD7FAD5A7AE14C13A138B98620CA9D80 ManifestType: installer ManifestVersion: 1.12.0 -ReleaseDate: 2026-03-30 +ReleaseDate: 2026-05-19 diff --git a/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.locale.en-US.yaml b/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.locale.en-US.yaml index d5a8b5b69cc5..f3ccc639d235 100644 --- a/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.locale.en-US.yaml +++ b/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2026/May/19 +# Created using wingetcreate 1.12.8.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: iTop.iTopEasyDesktop @@ -16,15 +16,13 @@ Copyright: Copyright © iTop Inc. All rights reserved. CopyrightUrl: https://www.itopvpn.com/terms/ ShortDescription: Free Desktop Organizer and Lively Wallpapers - iTop Easy Desktop ReleaseNotes: |- - v4.2 (2026-03-27) - - [Box] Optimized layout logic for smarter detection and auto-adjustment of desktop changes - - [Box] Added support for common shortcut operations, such as copying (Ctrl + drag icon) and creating shortcuts (Alt + drag icon) - - [Wallpapers] Added multi-monitor support: set separate static wallpapers to differentiate work and personal spaces - - [Personalization] Newly added Desktop Icons settings, including background color, border color, transparency, and more - - [Personalization] Added two new Vivi-themed mouse styles - - [Widgets] iNotes now supports title editing for easier note labeling - - Streamlined application installation for a faster setup - - General performance improvements and bug fixes + v4.3 (2026-05-19) + - [Box] Optimized the layout of uncategorized desktop icons to match Windows system settings + - [Box] Improved compatibility with OneDrive to resolve the blank icon issues + - [Wallpapers] Added over 2000 dynamic and static wallpapers + - [Wallpapers] Optimized wallpaper upload function + - [Widgets] Newly supported world clock in Clock widget + - Fixed known issues PurchaseUrl: https://www.itopvpn.com/store/ Documentations: - DocumentLabel: Blog diff --git a/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.yaml b/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.yaml index cc5436c443ba..70afb79bf96f 100644 --- a/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.yaml +++ b/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2026/May/19 +# Created using wingetcreate 1.12.8.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: iTop.iTopEasyDesktop From 799c86b11160b38bf7b67a8cdd40be70ec74d7c3 Mon Sep 17 00:00:00 2001 From: Patrick Date: Fri, 29 May 2026 16:28:31 +0200 Subject: [PATCH 44/82] New version: Jellyfin2Samsung.Jellyfin2Samsung version 2.3.0.2 (#381167) --- ...in2Samsung.Jellyfin2Samsung.installer.yaml | 21 ++++++++++ ...Samsung.Jellyfin2Samsung.locale.en-US.yaml | 41 +++++++++++++++++++ .../Jellyfin2Samsung.Jellyfin2Samsung.yaml | 8 ++++ 3 files changed, 70 insertions(+) create mode 100644 manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.3.0.2/Jellyfin2Samsung.Jellyfin2Samsung.installer.yaml create mode 100644 manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.3.0.2/Jellyfin2Samsung.Jellyfin2Samsung.locale.en-US.yaml create mode 100644 manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.3.0.2/Jellyfin2Samsung.Jellyfin2Samsung.yaml diff --git a/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.3.0.2/Jellyfin2Samsung.Jellyfin2Samsung.installer.yaml b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.3.0.2/Jellyfin2Samsung.Jellyfin2Samsung.installer.yaml new file mode 100644 index 000000000000..0bdc2d65c9a5 --- /dev/null +++ b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.3.0.2/Jellyfin2Samsung.Jellyfin2Samsung.installer.yaml @@ -0,0 +1,21 @@ +# 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: Jellyfin2Samsung.Jellyfin2Samsung +PackageVersion: 2.3.0.2 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ProductCode: '{A9E1B43B-0D46-475B-B11D-F6E96A661A4D}' +ReleaseDate: 2026-05-29 +AppsAndFeaturesEntries: +- ProductCode: '{A9E1B43B-0D46-475B-B11D-F6E96A661A4D}' + UpgradeCode: '{6F3E2A1B-4C5D-4E6F-A7B8-9C0D1E2F3A4B}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Jellyfin2Samsung' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Jellyfin2Samsung/Samsung-Jellyfin-Installer/releases/download/v2.3.0.2/Jellyfin2Samsung-v2.3.0.2-win-x64.msi + InstallerSha256: 77D777792A5CB754C6CCE15337E6C6FF855ACCF93158E88E2E5147A7CBC7C454 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.3.0.2/Jellyfin2Samsung.Jellyfin2Samsung.locale.en-US.yaml b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.3.0.2/Jellyfin2Samsung.Jellyfin2Samsung.locale.en-US.yaml new file mode 100644 index 000000000000..8d646eb0fec3 --- /dev/null +++ b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.3.0.2/Jellyfin2Samsung.Jellyfin2Samsung.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: Jellyfin2Samsung.Jellyfin2Samsung +PackageVersion: 2.3.0.2 +PackageLocale: en-US +Publisher: Jellyfin2Samsung +PublisherUrl: https://github.com/Jellyfin2Samsung +PublisherSupportUrl: https://github.com/Jellyfin2Samsung/Samsung-Jellyfin-Installer/issues +PackageName: Jellyfin2Samsung +PackageUrl: https://github.com/Jellyfin2Samsung/Samsung-Jellyfin-Installer +License: MIT +LicenseUrl: https://github.com/Jellyfin2Samsung/Samsung-Jellyfin-Installer/blob/HEAD/LICENSE +ShortDescription: Bridge tool to install Jellyfin on all Samsung Tizen Devices +Tags: +- jellyfin +- jellyfin-tizen +- sdb +- tizen +- tizen-studio +- tizen-tv +ReleaseNotes: |- + 📦 [v2.3.0.2] – 2026-05-29 + ✅ What's New & Improved + - Added macos-arm64 binary path + ─────────────────────┬─────────┬─────────────────────────── + Platform │Status │Notes + ─────────────────────┼─────────┼─────────────────────────── + 🍎 macOS (.app + dmg)│✅ Stable│ARM64 + Intel + ─────────────────────┼─────────┼─────────────────────────── + 🍎 macOS (CLI) │✅ Stable│Per-arch tar.gz + ─────────────────────┼─────────┼─────────────────────────── + 🐧 Linux │✅ Stable│x64 + ARM64 (tar.gz / .deb) + ─────────────────────┼─────────┼─────────────────────────── + 🪟 Windows │✅ Stable│CI-built + ─────────────────────┴─────────┴─────────────────────────── + 🛡️ Security Notice + Antivirus warnings may occur and are likely false positives. +ReleaseNotesUrl: https://github.com/Jellyfin2Samsung/Samsung-Jellyfin-Installer/releases/tag/v2.3.0.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.3.0.2/Jellyfin2Samsung.Jellyfin2Samsung.yaml b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.3.0.2/Jellyfin2Samsung.Jellyfin2Samsung.yaml new file mode 100644 index 000000000000..9ff87d4783a8 --- /dev/null +++ b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.3.0.2/Jellyfin2Samsung.Jellyfin2Samsung.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: Jellyfin2Samsung.Jellyfin2Samsung +PackageVersion: 2.3.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 1a9ffe16078fd1fc6af65fd028b9051020f5e1d7 Mon Sep 17 00:00:00 2001 From: docker-winget-bot Date: Fri, 29 May 2026 16:28:59 +0200 Subject: [PATCH 45/82] New version: Docker.Agent version v1.70.0 (#381168) --- .../Agent/v1.70.0/Docker.Agent.installer.yaml | 18 +++++++++++++++ .../v1.70.0/Docker.Agent.locale.en-US.yaml | 23 +++++++++++++++++++ .../d/Docker/Agent/v1.70.0/Docker.Agent.yaml | 8 +++++++ 3 files changed, 49 insertions(+) create mode 100644 manifests/d/Docker/Agent/v1.70.0/Docker.Agent.installer.yaml create mode 100644 manifests/d/Docker/Agent/v1.70.0/Docker.Agent.locale.en-US.yaml create mode 100644 manifests/d/Docker/Agent/v1.70.0/Docker.Agent.yaml diff --git a/manifests/d/Docker/Agent/v1.70.0/Docker.Agent.installer.yaml b/manifests/d/Docker/Agent/v1.70.0/Docker.Agent.installer.yaml new file mode 100644 index 000000000000..c236fc64c9df --- /dev/null +++ b/manifests/d/Docker/Agent/v1.70.0/Docker.Agent.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: Docker.Agent +PackageVersion: v1.70.0 +InstallerType: portable +Commands: +- docker-agent +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/docker/docker-agent/releases/download/v1.70.0/docker-agent-windows-amd64.exe + InstallerSha256: 33BD75E6F70F9FC9625923757827CDA0EF7AD133F18B465CCB2A02E812DD2840 +- Architecture: arm64 + InstallerUrl: https://github.com/docker/docker-agent/releases/download/v1.70.0/docker-agent-windows-arm64.exe + InstallerSha256: 97F978E7D62EA9BFDDDC9575044D2E8D92322E5BB32A1B64D4951194B9D8E3B6 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-05-29 diff --git a/manifests/d/Docker/Agent/v1.70.0/Docker.Agent.locale.en-US.yaml b/manifests/d/Docker/Agent/v1.70.0/Docker.Agent.locale.en-US.yaml new file mode 100644 index 000000000000..fa0a14c86558 --- /dev/null +++ b/manifests/d/Docker/Agent/v1.70.0/Docker.Agent.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Docker.Agent +PackageVersion: v1.70.0 +PackageLocale: en-US +Publisher: Docker +PublisherUrl: https://github.com/docker +PublisherSupportUrl: https://github.com/docker/cagent/issues +PackageName: Agent +PackageUrl: https://github.com/docker/cagent +License: Apache-2.0 +ShortDescription: Agent Builder and Runtime by Docker Engineering. +Tags: +- docker-agent +- dockeragent +- agents +- artificial-intelligence +- artificialintelligence +- ai +ReleaseNotesUrl: https://github.com/docker/docker-agent/releases/tag/v1.70.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Docker/Agent/v1.70.0/Docker.Agent.yaml b/manifests/d/Docker/Agent/v1.70.0/Docker.Agent.yaml new file mode 100644 index 000000000000..82238d787c04 --- /dev/null +++ b/manifests/d/Docker/Agent/v1.70.0/Docker.Agent.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: Docker.Agent +PackageVersion: v1.70.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 111ca93126e164d9492a09c605ee13bd40a835f7 Mon Sep 17 00:00:00 2001 From: Johnny Wang Date: Fri, 29 May 2026 22:29:18 +0800 Subject: [PATCH 46/82] New version: xiaocang.EasydictforWindows version 0.8.0 (#381173) --- ...xiaocang.EasydictforWindows.installer.yaml | 21 +++++++++++ ...ocang.EasydictforWindows.locale.en-US.yaml | 36 +++++++++++++++++++ .../0.8.0/xiaocang.EasydictforWindows.yaml | 8 +++++ 3 files changed, 65 insertions(+) create mode 100644 manifests/x/xiaocang/EasydictforWindows/0.8.0/xiaocang.EasydictforWindows.installer.yaml create mode 100644 manifests/x/xiaocang/EasydictforWindows/0.8.0/xiaocang.EasydictforWindows.locale.en-US.yaml create mode 100644 manifests/x/xiaocang/EasydictforWindows/0.8.0/xiaocang.EasydictforWindows.yaml diff --git a/manifests/x/xiaocang/EasydictforWindows/0.8.0/xiaocang.EasydictforWindows.installer.yaml b/manifests/x/xiaocang/EasydictforWindows/0.8.0/xiaocang.EasydictforWindows.installer.yaml new file mode 100644 index 000000000000..a5a3ef590280 --- /dev/null +++ b/manifests/x/xiaocang/EasydictforWindows/0.8.0/xiaocang.EasydictforWindows.installer.yaml @@ -0,0 +1,21 @@ +# 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: xiaocang.EasydictforWindows +PackageVersion: 0.8.0 +InstallerLocale: en-US +InstallerType: inno +Scope: user +InstallerSwitches: + Custom: /CURRENTUSER +ProductCode: '{B7E2A5F3-9C41-4D82-A6F0-1E8B3C5D7F9A}_is1' +ReleaseDate: 2026-05-29 +AppsAndFeaturesEntries: +- ProductCode: '{B7E2A5F3-9C41-4D82-A6F0-1E8B3C5D7F9A}_is1' +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/xiaocang/easydict_win32/releases/download/v0.8.0/Easydict-v0.8.0-x64-setup.unsigned.exe + InstallerSha256: D50DD97F2EA3A0E12517B93BB1DD67897800153028C8C4241B1C6042035B2F42 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/x/xiaocang/EasydictforWindows/0.8.0/xiaocang.EasydictforWindows.locale.en-US.yaml b/manifests/x/xiaocang/EasydictforWindows/0.8.0/xiaocang.EasydictforWindows.locale.en-US.yaml new file mode 100644 index 000000000000..df6ced785609 --- /dev/null +++ b/manifests/x/xiaocang/EasydictforWindows/0.8.0/xiaocang.EasydictforWindows.locale.en-US.yaml @@ -0,0 +1,36 @@ +# 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: xiaocang.EasydictforWindows +PackageVersion: 0.8.0 +PackageLocale: en-US +Publisher: xiaocang +PublisherUrl: https://github.com/xiaocang +PublisherSupportUrl: https://github.com/xiaocang/easydict_win32/issues +PrivacyUrl: https://github.com/xiaocang/easydict_win32/blob/master/PRIVACY.md +Author: xiaocang +PackageName: Easydict for Windows +PackageUrl: https://github.com/xiaocang/easydict_win32 +License: GPL-3.0 +LicenseUrl: https://github.com/xiaocang/easydict_win32/blob/HEAD/LICENSE +Copyright: Copyright (c) 2023 Tisfeng (macOS original), 2026 xiaocang (Windows port) +CopyrightUrl: https://github.com/xiaocang/easydict_win32/blob/master/LICENSE +ShortDescription: Windows port of Easydict - Dictionary and translation app +Description: Windows port of Easydict translation app. Supports 15+ translation services (Google, DeepL, OpenAI, Gemini, etc.), global hotkeys, multiple window modes, clipboard monitoring, and LLM streaming. Self-contained application with system tray support. +Moniker: easydict +Tags: +- clipboard +- dictionary +- hotkey +- multilingual +- translation +- translator +ReleaseNotes: |- + What's Changed + - perf(startup): defer local AI provider and OCR service construction by @xiaocang in #160 + - refactor(ui-tests): enhance UI automation tests and improve screenshot handling by @xiaocang in #162 + - perf(settings): speed up first Settings paint and immediate tab switches by @xiaocang in #163 + Full Changelog: v0.7.7...v0.8.0 +ReleaseNotesUrl: https://github.com/xiaocang/easydict_win32/releases/tag/v0.8.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/x/xiaocang/EasydictforWindows/0.8.0/xiaocang.EasydictforWindows.yaml b/manifests/x/xiaocang/EasydictforWindows/0.8.0/xiaocang.EasydictforWindows.yaml new file mode 100644 index 000000000000..e2042f306c7d --- /dev/null +++ b/manifests/x/xiaocang/EasydictforWindows/0.8.0/xiaocang.EasydictforWindows.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: xiaocang.EasydictforWindows +PackageVersion: 0.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 7b8bbd8364ff9ff5080ebd020d53e5bb20669d9f Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 22:29:35 +0800 Subject: [PATCH 47/82] New version: NetEase.UURemote version 4.26.0.8259 (#381180) --- .../NetEase.UURemote.installer.yaml | 15 +++++++++++ .../NetEase.UURemote.locale.en-US.yaml | 26 +++++++++++++++++++ .../NetEase.UURemote.locale.zh-CN.yaml | 26 +++++++++++++++++++ .../4.26.0.8259/NetEase.UURemote.yaml | 8 ++++++ 4 files changed, 75 insertions(+) create mode 100644 manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.installer.yaml create mode 100644 manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.locale.en-US.yaml create mode 100644 manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.locale.zh-CN.yaml create mode 100644 manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.yaml diff --git a/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.installer.yaml b/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.installer.yaml new file mode 100644 index 000000000000..c2658361fa7d --- /dev/null +++ b/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.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: NetEase.UURemote +PackageVersion: 4.26.0.8259 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +ProductCode: GameViewer +Installers: +- Architecture: x64 + InstallerUrl: https://a56.gdl.netease.com/UURemote_Setup_4.26.0.8259_0529201533_gwqd.exe + InstallerSha256: 97BF752ED99BAA67323577F4FF40FE42616D54A04DE0D1F84657CE501C492A17 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.locale.en-US.yaml b/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.locale.en-US.yaml new file mode 100644 index 000000000000..58f46d3b5363 --- /dev/null +++ b/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: NetEase.UURemote +PackageVersion: 4.26.0.8259 +PackageLocale: en-US +Publisher: Netease +PublisherUrl: https://www.163.com/ +PublisherSupportUrl: https://gv.163.com/help/ +PrivacyUrl: https://gv.163.com/help/20240402/40294_1146067.html +Author: NetEase (Hangzhou) Network Co., Ltd. +PackageName: UU远程 +PackageUrl: https://gv.163.com/ +License: Proprietary +LicenseUrl: https://gv.163.com/help/20240402/40294_1146884.html +Copyright: Copyright © 1997-2026 NetEase Inc. All rights reserved. +ShortDescription: An ultra-low latency remote tool designed for gaming +Tags: +- gaming +- remote +- remote-access +- remote-control +- remote-desktop +- streaming +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.locale.zh-CN.yaml b/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.locale.zh-CN.yaml new file mode 100644 index 000000000000..bc70f8dc2527 --- /dev/null +++ b/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.locale.zh-CN.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: NetEase.UURemote +PackageVersion: 4.26.0.8259 +PackageLocale: zh-CN +Publisher: Netease +PublisherUrl: https://www.163.com/ +PublisherSupportUrl: https://gv.163.com/help/ +PrivacyUrl: https://gv.163.com/help/20240402/40294_1146067.html +Author: 网易(杭州)网络有限公司 +PackageName: UU远程 +PackageUrl: https://gv.163.com/ +License: 专有软件 +LicenseUrl: https://gv.163.com/help/20240402/40294_1146884.html +Copyright: 网易公司版权所有 ©1997-2026 +ShortDescription: 专为游戏打造的超低延迟远程工具 +Tags: +- 串流 +- 游戏 +- 远程 +- 远程控制 +- 远程桌面 +- 远程访问 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.yaml b/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.yaml new file mode 100644 index 000000000000..d0b751c974bb --- /dev/null +++ b/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.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: NetEase.UURemote +PackageVersion: 4.26.0.8259 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From a8ff999af8413361ee068118efab7662f215b698 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 22:32:55 +0800 Subject: [PATCH 48/82] New version: Reqable.Reqable version 3.1.3 (#381183) --- .../3.1.3/Reqable.Reqable.installer.yaml | 20 ++++++++ .../3.1.3/Reqable.Reqable.locale.en-US.yaml | 49 +++++++++++++++++++ .../3.1.3/Reqable.Reqable.locale.zh-CN.yaml | 47 ++++++++++++++++++ .../Reqable/3.1.3/Reqable.Reqable.yaml | 8 +++ 4 files changed, 124 insertions(+) create mode 100644 manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.installer.yaml create mode 100644 manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.locale.en-US.yaml create mode 100644 manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.locale.zh-CN.yaml create mode 100644 manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.yaml diff --git a/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.installer.yaml b/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.installer.yaml new file mode 100644 index 000000000000..17e3ce658cba --- /dev/null +++ b/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Reqable.Reqable +PackageVersion: 3.1.3 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- chls +- chlsj +- har +ProductCode: '{64920BD9-D19F-4537-84AA-42BF46FEB27E}_is1' +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/reqable/reqable-app/releases/download/3.1.3/reqable-app-windows-x86_64.exe + InstallerSha256: F12D5EA71A42DE314C0F7A3A70E17C26AE7629BE24D0AB897F12B258F9ECA5C6 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.locale.en-US.yaml b/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.locale.en-US.yaml new file mode 100644 index 000000000000..260c97661009 --- /dev/null +++ b/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Reqable.Reqable +PackageVersion: 3.1.3 +PackageLocale: en-US +Publisher: Reqqable Inc. +PublisherUrl: https://reqable.com/ +PublisherSupportUrl: https://github.com/reqable/reqable-app/issues +PrivacyUrl: https://reqable.com/policy +Author: Reqqable Inc. +PackageName: Reqable +PackageUrl: https://reqable.com/ +License: Proprietary +LicenseUrl: https://reqable.com/policy +Copyright: Copyright (C) 2026 Reqable All rights reserved. +ShortDescription: Advanced API Debugging Proxy. +Description: Reqable is a flutter-based, cross-platform app, which enables developers to capture, inspect, and manipulate HTTP(s) requests/responses with ease. Support Windows, macOS, linux, iOS and Android devices. +Tags: +- capture +- china +- debug +- network +- prc +- proxy +- request +- response +- traffic +- web +ReleaseNotes: |- + 💪 [OPT] Update Android certificate installation Magisk module. + 💪 [OPT] In the Base64 tool, decoded binary results can now be directly opened in the image viewer. + 💪 [OPT] Disable file drag-and-drop when a popup dialog is covering. + 💪 [OPT] The executable file version and product version no longer includes the build number. + 💪 [OPT] The application can now correctly restore the previous window maximized state after a restart. + 🐞 [FIX] The bug where SSL was not compatible with unsafe legacy renegotiation. + 🐞 [FIX] The bug where URL was not correctly encoded in some language code snippet. + 🐞 [FIX] The bug where numeric domain names could not be resolved. + 🐞 [FIX] The bug where clearing cache in settings did not completely delete all cache files. + 🐞 [FIX] The bug where clearing cache in settings would delete user scripts. + 🐞 [FIX] The bug where API authorization did not correctly navigate to the inherited authorization page. + 🐞 [FIX] The bug where importing some ApiPost collection files did not correctly retrieve the URL. +ReleaseNotesUrl: https://reqable.com/docs/changelogs/windows/ +PurchaseUrl: https://reqable.com/pricing/ +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://reqable.com/docs/introduction +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.locale.zh-CN.yaml b/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.locale.zh-CN.yaml new file mode 100644 index 000000000000..e333c2477d1d --- /dev/null +++ b/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.locale.zh-CN.yaml @@ -0,0 +1,47 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Reqable.Reqable +PackageVersion: 3.1.3 +PackageLocale: zh-CN +Publisher: Reqqable Inc. +PublisherUrl: https://reqable.com/zh-CN/ +PublisherSupportUrl: https://github.com/reqable/reqable-app/issues +PrivacyUrl: https://reqable.com/zh-CN/policy +Author: 上海日夸宝信息技术有限公司 +PackageName: Reqable +PackageUrl: https://reqable.com/zh-CN/ +License: 专有软件 +LicenseUrl: https://reqable.com/zh-CN/policy +Copyright: Copyright (C) 2026 Reqable All rights reserved. +ShortDescription: 先进 API 生产力工具 +Description: Reqable = Fiddler + Charles + Postman,网络抓包和 API 测试一站化国产解决方案,全平台支持 HTTP1、HTTP2 和 HTTP3(QUIC)。 +Tags: +- 代理 +- 响应 +- 抓包 +- 流量 +- 网络 +- 网页 +- 请求 +- 调试 +ReleaseNotes: |- + 💪【优化】更新 Android 证书安装 Magisk 模块。 + 💪【优化】Base64 工具中解码二进制结果可以直接打开图片查看器进行查看。 + 💪【优化】当有弹窗遮盖时禁用下层文件拖拽功能。 + 💪【优化】可执行文件版本号不再包含构建版本号。 + 💪【优化】应用重启后可以正常恢复之前窗口最大化的状态。 + 🐞【修复】SSL 不兼容旧版重协商机制的 bug。 + 🐞【修复】部分语言生成代码中 URL 未正确编码的 bug。 + 🐞【修复】数字域名无法解析的 bug。 + 🐞【修复】设置中清理缓存未能删干净的 bug。 + 🐞【修复】设置中清理缓存会导致用户调试脚本被删除的 bug。 + 🐞【修复】API 授权未能正确跳转到继承授权页面的 bug。 + 🐞【修复】导入部分 ApiPost 集合文件时 URL 未正确获取的 bug。 +ReleaseNotesUrl: https://reqable.com/zh-CN/docs/changelogs/windows/ +PurchaseUrl: https://reqable.com/zh-CN/pricing/ +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://reqable.com/zh-CN/docs/introduction +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.yaml b/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.yaml new file mode 100644 index 000000000000..157e8e012beb --- /dev/null +++ b/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.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: Reqable.Reqable +PackageVersion: 3.1.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 7b7e8acfe9aeffbbd7b1db8c49d3f7a7816cf8f8 Mon Sep 17 00:00:00 2001 From: laurentiu021 Date: Fri, 29 May 2026 17:49:40 +0300 Subject: [PATCH 49/82] New version: laurentiu021.SysManager version 1.17.1 (#381171) --- .../laurentiu021.SysManager.installer.yaml | 18 ++++++++ .../laurentiu021.SysManager.locale.en-US.yaml | 44 +++++++++++++++++++ .../1.17.1/laurentiu021.SysManager.yaml | 8 ++++ 3 files changed, 70 insertions(+) create mode 100644 manifests/l/laurentiu021/SysManager/1.17.1/laurentiu021.SysManager.installer.yaml create mode 100644 manifests/l/laurentiu021/SysManager/1.17.1/laurentiu021.SysManager.locale.en-US.yaml create mode 100644 manifests/l/laurentiu021/SysManager/1.17.1/laurentiu021.SysManager.yaml diff --git a/manifests/l/laurentiu021/SysManager/1.17.1/laurentiu021.SysManager.installer.yaml b/manifests/l/laurentiu021/SysManager/1.17.1/laurentiu021.SysManager.installer.yaml new file mode 100644 index 000000000000..18e139c69a6d --- /dev/null +++ b/manifests/l/laurentiu021/SysManager/1.17.1/laurentiu021.SysManager.installer.yaml @@ -0,0 +1,18 @@ +# 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: laurentiu021.SysManager +PackageVersion: 1.17.1 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: portable +Commands: +- SysManager +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/laurentiu021/SystemManager/releases/download/v1.17.1/SysManager-v1.17.1.exe + InstallerSha256: F2101C365CE382FD8AA39DDA5925FA4BF6E5882C8CA9E290D1465FC8ABE604D1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/laurentiu021/SysManager/1.17.1/laurentiu021.SysManager.locale.en-US.yaml b/manifests/l/laurentiu021/SysManager/1.17.1/laurentiu021.SysManager.locale.en-US.yaml new file mode 100644 index 000000000000..c0df251ae270 --- /dev/null +++ b/manifests/l/laurentiu021/SysManager/1.17.1/laurentiu021.SysManager.locale.en-US.yaml @@ -0,0 +1,44 @@ +# 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: laurentiu021.SysManager +PackageVersion: 1.17.1 +PackageLocale: en-US +Publisher: laurentiu021 +PublisherUrl: https://github.com/laurentiu021 +PublisherSupportUrl: https://github.com/laurentiu021/SystemManager/issues +PackageName: SysManager +PackageUrl: https://github.com/laurentiu021/SystemManager +License: MIT +LicenseUrl: https://github.com/laurentiu021/SystemManager/blob/HEAD/LICENSE +ShortDescription: Modern Windows system toolkit — network monitor, performance tuning, cleanup, battery health, process manager, and more. +Description: |- + SysManager is a modern Windows system toolkit built with WPF and .NET 9. + It provides a comprehensive set of tools in a single application including + live network monitoring, ping and traceroute, speed tests, performance tuning + with power plan management, deep disk cleanup, duplicate file finder, disk + analyzer, battery health monitoring, process manager, app uninstaller, + startup control, Windows services manager, Windows features manager, driver + information, and system health overview. +Tags: +- battery +- cleanup +- dotnet +- network-monitor +- open-source +- performance +- process-manager +- system-utility +- uninstaller +- windows +- wpf +ReleaseNotes: |- + [1.17.1] - 2026-05-29 + Fixed + - Documentation — ARCHITECTURE.md updated with new TemperatureService, ActivityLogService, and rewritten DashboardViewModel description to reflect v1.17.0 redesign. + Verify the download + Get-FileHash .\SysManager-v1.17.1.exe -Algorithm SHA256 + Expected SHA256: F2101C365CE382FD8AA39DDA5925FA4BF6E5882C8CA9E290D1465FC8ABE604D1 +ReleaseNotesUrl: https://github.com/laurentiu021/SystemManager/releases/tag/v1.17.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/laurentiu021/SysManager/1.17.1/laurentiu021.SysManager.yaml b/manifests/l/laurentiu021/SysManager/1.17.1/laurentiu021.SysManager.yaml new file mode 100644 index 000000000000..2a45993f0f70 --- /dev/null +++ b/manifests/l/laurentiu021/SysManager/1.17.1/laurentiu021.SysManager.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: laurentiu021.SysManager +PackageVersion: 1.17.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From b265f7af0f86143b7235c6f0f453d2c70f3af1a7 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 22:52:40 +0800 Subject: [PATCH 50/82] New version: PeterPawlowski.foobar2000 version 2.25.9 (#381181) --- .../PeterPawlowski.foobar2000.installer.yaml | 81 +++++++++++++++++++ ...eterPawlowski.foobar2000.locale.en-US.yaml | 45 +++++++++++ ...eterPawlowski.foobar2000.locale.zh-CN.yaml | 31 +++++++ .../2.25.9/PeterPawlowski.foobar2000.yaml | 8 ++ 4 files changed, 165 insertions(+) create mode 100644 manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.installer.yaml create mode 100644 manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.locale.en-US.yaml create mode 100644 manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.locale.zh-CN.yaml create mode 100644 manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.yaml diff --git a/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.installer.yaml b/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.installer.yaml new file mode 100644 index 000000000000..dea683ac7939 --- /dev/null +++ b/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.installer.yaml @@ -0,0 +1,81 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: PeterPawlowski.foobar2000 +PackageVersion: 2.25.9 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +FileExtensions: +- 8svx +- aac +- ac3 +- afc +- aif +- aifc +- aiff +- ape +- apl +- asx +- au +- bwf +- cda +- cue +- dts +- dtshd +- dtsma +- dtswav +- eac3 +- fb2k-component +- fla +- flac +- fpl +- fth +- m3u +- m3u8 +- m4a +- m4b +- m4r +- mac +- mka +- mp+ +- mp1 +- mp2 +- mp3 +- mp4 +- mpc +- mpp +- oga +- ogg +- ogx +- opus +- pls +- rf64 +- snd +- spx +- svx +- tak +- w64 +- wav +- wave +- wax +- wma +- wv +- wvx +ReleaseDate: 2026-05-29 +ElevationRequirement: elevationRequired +Installers: +- Architecture: x86 + InstallerUrl: https://www.foobar2000.org/files/foobar2000_v2.25.9.exe + InstallerSha256: 28A69EE37C25A3366C5EF5FE499E44A3F02954FACF0FEC151157A6E3F3CD4746 + ProductCode: foobar2000 +- Architecture: x64 + InstallerUrl: https://www.foobar2000.org/files/foobar2000-x64_v2.25.9.exe + InstallerSha256: 70D365A747BDA8C3B7309FF7BB91A93F40BAB0C19763C8D869031154B37E281B + ProductCode: foobar2000 (x64) +- Architecture: arm64 + InstallerUrl: https://www.foobar2000.org/files/foobar2000-arm64ec_v2.25.9.exe + InstallerSha256: DECECBD32AC1169D25C6FC8920670473D602E24D5FCD578AE75754A214EB4270 + ProductCode: foobar2000 (ARM64EC) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.locale.en-US.yaml b/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.locale.en-US.yaml new file mode 100644 index 000000000000..260028d6d3ed --- /dev/null +++ b/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.locale.en-US.yaml @@ -0,0 +1,45 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: PeterPawlowski.foobar2000 +PackageVersion: 2.25.9 +PackageLocale: en-US +Publisher: Peter Pawlowski +PublisherUrl: https://perkele.cc/ +PublisherSupportUrl: https://www.foobar2000.org/support +Author: Peter Pawlowski +PackageName: foobar2000 +PackageUrl: https://www.foobar2000.org/ +License: Freeware +LicenseUrl: https://www.foobar2000.org/license +Copyright: (C) Peter Pawlowski and contributors +CopyrightUrl: https://www.foobar2000.org/license +ShortDescription: foobar2000 is an advanced freeware audio player for the Windows platform. +Moniker: foobar2000 +Tags: +- audio +- audio-player +- media +- media-player +- music +- music-player +- player +- song +ReleaseNotes: |- + - Restored correct channel mask for 6.1 FLAC. + - Better remapping of back center channel to 5.1-side speaker setup. + - Fixed "remove chapters" not working on Ogg files with chapters. + - Improved WebDAV reliability. + - Some UPnP bug fixes backported from 2.26 series. + - Made send Windows version number when checking for component updates, to prevent installation of updates that require specific newer operating system build. + - Updated zlib to v1.3.2. + - Fixed some windows discarding multimedia keyboard events. + - Visual C++ runtime updated. +ReleaseNotesUrl: https://www.foobar2000.org/changelog +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://www.foobar2000.org/FAQ +- DocumentLabel: Wiki + DocumentUrl: https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Foobar2000 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.locale.zh-CN.yaml b/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.locale.zh-CN.yaml new file mode 100644 index 000000000000..ff94319698d3 --- /dev/null +++ b/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.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: PeterPawlowski.foobar2000 +PackageVersion: 2.25.9 +PackageLocale: zh-CN +Publisher: Peter Pawlowski +PublisherUrl: https://perkele.cc/ +PublisherSupportUrl: https://www.foobar2000.org/support +Author: Peter Pawlowski +PackageName: foobar2000 +PackageUrl: https://www.foobar2000.org/ +License: 免费软件 +LicenseUrl: https://www.foobar2000.org/license +Copyright: (C) Peter Pawlowski and contributors +CopyrightUrl: https://www.foobar2000.org/license +ShortDescription: foobar2000 是一款适用于 Windows 平台的高级免费音频播放器。 +Tags: +- 媒体 +- 播放器 +- 歌曲 +- 音乐 +- 音频 +ReleaseNotesUrl: https://www.foobar2000.org/changelog +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://www.foobar2000.org/FAQ +- DocumentLabel: Wiki + DocumentUrl: https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Foobar2000 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.yaml b/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.yaml new file mode 100644 index 000000000000..10bd0580241b --- /dev/null +++ b/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.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: PeterPawlowski.foobar2000 +PackageVersion: 2.25.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 25419c7ce99407017213f5b67df7c617e7de2a17 Mon Sep 17 00:00:00 2001 From: wingetbot <63816999+wingetbot@users.noreply.github.com> Date: Fri, 29 May 2026 08:19:07 -0700 Subject: [PATCH 51/82] Automatic update of CCPGames.EVEOnline from 1.15.0 to 1.15.1 (#381011) --- .../1.15.1/CCPGames.EVEOnline.installer.yaml | 15 +++++++++++++++ .../1.15.1/CCPGames.EVEOnline.locale.en-US.yaml | 13 +++++++++++++ .../EVEOnline/1.15.1/CCPGames.EVEOnline.yaml | 8 ++++++++ 3 files changed, 36 insertions(+) create mode 100644 manifests/c/CCPGames/EVEOnline/1.15.1/CCPGames.EVEOnline.installer.yaml create mode 100644 manifests/c/CCPGames/EVEOnline/1.15.1/CCPGames.EVEOnline.locale.en-US.yaml create mode 100644 manifests/c/CCPGames/EVEOnline/1.15.1/CCPGames.EVEOnline.yaml diff --git a/manifests/c/CCPGames/EVEOnline/1.15.1/CCPGames.EVEOnline.installer.yaml b/manifests/c/CCPGames/EVEOnline/1.15.1/CCPGames.EVEOnline.installer.yaml new file mode 100644 index 000000000000..9f42949cc2ae --- /dev/null +++ b/manifests/c/CCPGames/EVEOnline/1.15.1/CCPGames.EVEOnline.installer.yaml @@ -0,0 +1,15 @@ +# Automatically updated by the winget bot at 2026/May/28 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: CCPGames.EVEOnline +PackageVersion: 1.15.1 +InstallerType: exe +Scope: user +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://launcher.ccpgames.com/eve-online/release/win32/x64/eve-online-latest+Setup.exe + InstallerSha256: 182C9C296D533A7DBE3A82C0A468318C07F05A0AC06CBFEE53FF0DBBCA5748F6 + ProductCode: "eve-online" +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/CCPGames/EVEOnline/1.15.1/CCPGames.EVEOnline.locale.en-US.yaml b/manifests/c/CCPGames/EVEOnline/1.15.1/CCPGames.EVEOnline.locale.en-US.yaml new file mode 100644 index 000000000000..6407d931da51 --- /dev/null +++ b/manifests/c/CCPGames/EVEOnline/1.15.1/CCPGames.EVEOnline.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Automatically updated by the winget bot at 2026/May/28 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: CCPGames.EVEOnline +PackageVersion: "1.15.1" +PackageLocale: en-US +Publisher: "CCP ehf" +PackageName: "eve-online" +License: Proprietary +Copyright: Copyright © 2025 CCP Games +ShortDescription: EVE Online is a free MMORPG sci-fi strategy game where you can embark on your own unique space adventure. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/CCPGames/EVEOnline/1.15.1/CCPGames.EVEOnline.yaml b/manifests/c/CCPGames/EVEOnline/1.15.1/CCPGames.EVEOnline.yaml new file mode 100644 index 000000000000..54b131d03b82 --- /dev/null +++ b/manifests/c/CCPGames/EVEOnline/1.15.1/CCPGames.EVEOnline.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2026/May/28 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: CCPGames.EVEOnline +PackageVersion: 1.15.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From d49579fe7c0817ecef9dbfef32edfc0403f8448b Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 23:19:37 +0800 Subject: [PATCH 52/82] New version: LuisPater.CLIProxyAPI version 7.1.29 (#381086) --- .../LuisPater.CLIProxyAPI.installer.yaml | 18 ++++++++ .../LuisPater.CLIProxyAPI.locale.en-US.yaml | 43 +++++++++++++++++++ .../LuisPater.CLIProxyAPI.locale.zh-CN.yaml | 24 +++++++++++ .../7.1.29/LuisPater.CLIProxyAPI.yaml | 8 ++++ 4 files changed, 93 insertions(+) create mode 100644 manifests/l/LuisPater/CLIProxyAPI/7.1.29/LuisPater.CLIProxyAPI.installer.yaml create mode 100644 manifests/l/LuisPater/CLIProxyAPI/7.1.29/LuisPater.CLIProxyAPI.locale.en-US.yaml create mode 100644 manifests/l/LuisPater/CLIProxyAPI/7.1.29/LuisPater.CLIProxyAPI.locale.zh-CN.yaml create mode 100644 manifests/l/LuisPater/CLIProxyAPI/7.1.29/LuisPater.CLIProxyAPI.yaml diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.1.29/LuisPater.CLIProxyAPI.installer.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.1.29/LuisPater.CLIProxyAPI.installer.yaml new file mode 100644 index 000000000000..b126f62d7938 --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.1.29/LuisPater.CLIProxyAPI.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: LuisPater.CLIProxyAPI +PackageVersion: 7.1.29 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: cli-proxy-api.exe +Commands: +- cli-proxy-api +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/router-for-me/CLIProxyAPI/releases/download/v7.1.29/CLIProxyAPI_7.1.29_windows_amd64.zip + InstallerSha256: D9FF585B7BF0C86847A816799E849CA4404BB020C92D919B7F1321AA21697453 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.1.29/LuisPater.CLIProxyAPI.locale.en-US.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.1.29/LuisPater.CLIProxyAPI.locale.en-US.yaml new file mode 100644 index 000000000000..09dc06559af1 --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.1.29/LuisPater.CLIProxyAPI.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: LuisPater.CLIProxyAPI +PackageVersion: 7.1.29 +PackageLocale: en-US +Publisher: Luis Pater +PublisherUrl: https://github.com/router-for-me +PublisherSupportUrl: https://github.com/router-for-me/CLIProxyAPI/issues +Author: Luis Pater +PackageName: CLI Proxy API +PackageUrl: https://github.com/router-for-me/CLIProxyAPI +License: MIT +LicenseUrl: https://github.com/router-for-me/CLIProxyAPI/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Luis Pater +ShortDescription: Wrap Gemini CLI, ChatGPT Codex as an OpenAI/Gemini/Claude compatible API service, allowing you to enjoy the free Gemini 2.5 Pro, GPT 5 model through API +Description: |- + A proxy server that provides OpenAI/Gemini/Claude compatible API interfaces for CLI. + It now also supports OpenAI Codex (GPT models) and Claude Code via OAuth. + so you can use local or multi‑account CLI access with OpenAI‑compatible clients and SDKs. + Now, We added the first Chinese provider: Qwen Code. +Tags: +- ai +- chatbot +- chatgpt +- claude +- claude-code +- codex +- gemini +- large-language-model +- llm +- openai +ReleaseNotes: |- + Changelog + - f28258de22540584d9328fc429b222b148665cfc Merge pull request #3595 from Progress-infinitely/fix/anthropic-tool-name-reverse-map + - 4ade13a374f8dccb9459ef42852d29569b71491a Merge pull request #3605 from router-for-me/log + - c4ee063b958a6a2bed2afae8698256f2c1bdf977 feat(logging): add HomeAppLogForwarder for application log forwarding + - df0176a188cd4fcd71f32e57faa52dfc3773a765 feat(models): add Claude Opus 4.8 model to registry + - 01a7cc4a45880c9f49152131ebd529a099f3a294 fix(amp): restore response tool casing from request + - 7d9980e8fa2c0ffe58c60550774d8b61c0a224dd fix(logging): log errors during file-backed source cleanup +ReleaseNotesUrl: https://github.com/router-for-me/CLIProxyAPI/releases/tag/v7.1.29 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.1.29/LuisPater.CLIProxyAPI.locale.zh-CN.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.1.29/LuisPater.CLIProxyAPI.locale.zh-CN.yaml new file mode 100644 index 000000000000..97c65e81395b --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.1.29/LuisPater.CLIProxyAPI.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 7.1.29 +PackageLocale: zh-CN +ShortDescription: 封装 Gemini CLI 和 ChatGPT Codex 为兼容 OpenAI/Gemini/Claude 的 API 服务,让您通过 API 畅享免费的 Gemini 2.5 Pro 和 GPT 5 模型 +Description: |- + 一个为 CLI 提供 OpenAI/Gemini/Claude 兼容 API 接口的代理服务器。 + 现已支持通过 OAuth 登录接入 OpenAI Codex(GPT 系列)和 Claude Code。 + 可与本地或多账户方式配合,使用任何 OpenAI 兼容的客户端与 SDK。 + 现在,我们添加了第一个中国提供商:Qwen Code。 +Tags: +- chatgpt +- claude +- claude-code +- codex +- gemini +- openai +- 人工智能 +- 大语言模型 +- 聊天机器人 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.1.29/LuisPater.CLIProxyAPI.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.1.29/LuisPater.CLIProxyAPI.yaml new file mode 100644 index 000000000000..15a91c586cda --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.1.29/LuisPater.CLIProxyAPI.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: LuisPater.CLIProxyAPI +PackageVersion: 7.1.29 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From d7bfce24212108daf02939ac2af3899188aad334 Mon Sep 17 00:00:00 2001 From: Lablicate Quality Assurance <114160457+lablicateqa@users.noreply.github.com> Date: Fri, 29 May 2026 17:19:54 +0200 Subject: [PATCH 53/82] Update OpenChrom to version 1.6.18 (#381100) --- .../1.6.18/Lablicate.OpenChrom.installer.yaml | 30 +++++++++++++++++++ .../Lablicate.OpenChrom.locale.en-US.yaml | 19 ++++++++++++ .../OpenChrom/1.6.18/Lablicate.OpenChrom.yaml | 6 ++++ 3 files changed, 55 insertions(+) create mode 100644 manifests/l/Lablicate/OpenChrom/1.6.18/Lablicate.OpenChrom.installer.yaml create mode 100644 manifests/l/Lablicate/OpenChrom/1.6.18/Lablicate.OpenChrom.locale.en-US.yaml create mode 100644 manifests/l/Lablicate/OpenChrom/1.6.18/Lablicate.OpenChrom.yaml diff --git a/manifests/l/Lablicate/OpenChrom/1.6.18/Lablicate.OpenChrom.installer.yaml b/manifests/l/Lablicate/OpenChrom/1.6.18/Lablicate.OpenChrom.installer.yaml new file mode 100644 index 000000000000..bfac25668b47 --- /dev/null +++ b/manifests/l/Lablicate/OpenChrom/1.6.18/Lablicate.OpenChrom.installer.yaml @@ -0,0 +1,30 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +PackageIdentifier: Lablicate.OpenChrom +PackageVersion: 1.6.18 +InstallerLocale: en-US +InstallerType: nullsoft +UpgradeBehavior: uninstallPrevious +FileExtensions: +- ch +- dat +- raw +- gcd +- run +- ms +- icp +- cgm +- db +- qgd +- spc +- sms +- wiff +- dfm +- prm +- mfg +- mfl +Installers: +- Architecture: x64 + InstallerUrl: https://products.lablicate.com/openchrom/1.6.18/OpenChrom_1.6.18_setup_x64.exe + InstallerSha256: a906c8772f2eeb6a76b1862c802e671bb719ddc0585ec8116dfc017b45a8b93a +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/l/Lablicate/OpenChrom/1.6.18/Lablicate.OpenChrom.locale.en-US.yaml b/manifests/l/Lablicate/OpenChrom/1.6.18/Lablicate.OpenChrom.locale.en-US.yaml new file mode 100644 index 000000000000..51c2706dfec1 --- /dev/null +++ b/manifests/l/Lablicate/OpenChrom/1.6.18/Lablicate.OpenChrom.locale.en-US.yaml @@ -0,0 +1,19 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: Lablicate.OpenChrom +PackageVersion: 1.6.18 +PackageLocale: en-US +Publisher: Lablicate GmbH +PublisherUrl: https://lablicate.com +PackageName: OpenChrom +PackageUrl: https://openchrom.net +License: EPL-2.0 +Copyright: Lablicate GmbH +ShortDescription: Open Source software for chromatography, spectrometry and spectroscopy +Tags: +- chemistry +- chromatography +- spectrometry +- spectroscopy +ReleaseNotesUrl: https://github.com/openchrom/openchrom/wiki/changelog#1.6.18 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/l/Lablicate/OpenChrom/1.6.18/Lablicate.OpenChrom.yaml b/manifests/l/Lablicate/OpenChrom/1.6.18/Lablicate.OpenChrom.yaml new file mode 100644 index 000000000000..0b0f55731364 --- /dev/null +++ b/manifests/l/Lablicate/OpenChrom/1.6.18/Lablicate.OpenChrom.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +PackageIdentifier: Lablicate.OpenChrom +PackageVersion: 1.6.18 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 666b4a8780eb790aa1648ae6c1ffd8eb116832cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lum=C3=ADr=20N=C3=A1vrat?= Date: Fri, 29 May 2026 17:20:12 +0200 Subject: [PATCH 54/82] New version: Navratovi.RemoteBoulderTimer version 2.1.4.0 (#381120) --- ...avratovi.RemoteBoulderTimer.installer.yaml | 14 ++++++++++++++ ...atovi.RemoteBoulderTimer.locale.en-US.yaml | 19 +++++++++++++++++++ .../2.1.4.0/Navratovi.RemoteBoulderTimer.yaml | 8 ++++++++ 3 files changed, 41 insertions(+) create mode 100644 manifests/n/Navratovi/RemoteBoulderTimer/2.1.4.0/Navratovi.RemoteBoulderTimer.installer.yaml create mode 100644 manifests/n/Navratovi/RemoteBoulderTimer/2.1.4.0/Navratovi.RemoteBoulderTimer.locale.en-US.yaml create mode 100644 manifests/n/Navratovi/RemoteBoulderTimer/2.1.4.0/Navratovi.RemoteBoulderTimer.yaml diff --git a/manifests/n/Navratovi/RemoteBoulderTimer/2.1.4.0/Navratovi.RemoteBoulderTimer.installer.yaml b/manifests/n/Navratovi/RemoteBoulderTimer/2.1.4.0/Navratovi.RemoteBoulderTimer.installer.yaml new file mode 100644 index 000000000000..d1e9de24ab9b --- /dev/null +++ b/manifests/n/Navratovi/RemoteBoulderTimer/2.1.4.0/Navratovi.RemoteBoulderTimer.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.9.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Navratovi.RemoteBoulderTimer +PackageVersion: 2.1.4.0 +InstallerLocale: en-US +InstallerType: wix +ProductCode: '{9C8B8D1E-CCED-4AE4-BC9C-721322244585}' +Installers: +- Architecture: x64 + InstallerUrl: https://download.navrat.name/lezeni/RemoteBoulderTimer_v2.1.4.0.msi + InstallerSha256: 3AFF4D34285C388A4566DE421A7FEC286AEB60D2154BDF37AD5FC708D5C8DD02 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/Navratovi/RemoteBoulderTimer/2.1.4.0/Navratovi.RemoteBoulderTimer.locale.en-US.yaml b/manifests/n/Navratovi/RemoteBoulderTimer/2.1.4.0/Navratovi.RemoteBoulderTimer.locale.en-US.yaml new file mode 100644 index 000000000000..595a9c5cdb5c --- /dev/null +++ b/manifests/n/Navratovi/RemoteBoulderTimer/2.1.4.0/Navratovi.RemoteBoulderTimer.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.9.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Navratovi.RemoteBoulderTimer +PackageVersion: 2.1.4.0 +PackageLocale: en-US +Publisher: Návratovi +PublisherUrl: https://www.navrat.name +PublisherSupportUrl: https://www.navrat.name/zpracovani-vysledku +Author: Lumir Navrat +PackageName: RemoteBoulderTimer +PackageUrl: https://www.navrat.name/zpracovani-vysledku +License: Free +Copyright: (c) Lumir Navrat 2026 +ShortDescription: Timer for boulder competitions +Description: Timer for boulder competitions based on SignalR. Server part provide timer service and several clients throw web client could connect to it. First client is main with possibility to configure the timer. Next are only secondary that display the timer. +Moniker: RemoteBoulderTimer +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/Navratovi/RemoteBoulderTimer/2.1.4.0/Navratovi.RemoteBoulderTimer.yaml b/manifests/n/Navratovi/RemoteBoulderTimer/2.1.4.0/Navratovi.RemoteBoulderTimer.yaml new file mode 100644 index 000000000000..a504ebc57d7b --- /dev/null +++ b/manifests/n/Navratovi/RemoteBoulderTimer/2.1.4.0/Navratovi.RemoteBoulderTimer.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.9.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Navratovi.RemoteBoulderTimer +PackageVersion: 2.1.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 2e3d5b647a6634c20a8ee7ce430dcf588b465b95 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 23:20:42 +0800 Subject: [PATCH 55/82] New version: NetEase.CloudMusic version 3.1.34.205281 (#381128) --- .../NetEase.CloudMusic.installer.yaml | 32 ++++++++++++++++++ .../NetEase.CloudMusic.locale.en-US.yaml | 33 +++++++++++++++++++ .../NetEase.CloudMusic.locale.zh-CN.yaml | 32 ++++++++++++++++++ .../3.1.34.205281/NetEase.CloudMusic.yaml | 8 +++++ 4 files changed, 105 insertions(+) create mode 100644 manifests/n/NetEase/CloudMusic/3.1.34.205281/NetEase.CloudMusic.installer.yaml create mode 100644 manifests/n/NetEase/CloudMusic/3.1.34.205281/NetEase.CloudMusic.locale.en-US.yaml create mode 100644 manifests/n/NetEase/CloudMusic/3.1.34.205281/NetEase.CloudMusic.locale.zh-CN.yaml create mode 100644 manifests/n/NetEase/CloudMusic/3.1.34.205281/NetEase.CloudMusic.yaml diff --git a/manifests/n/NetEase/CloudMusic/3.1.34.205281/NetEase.CloudMusic.installer.yaml b/manifests/n/NetEase/CloudMusic/3.1.34.205281/NetEase.CloudMusic.installer.yaml new file mode 100644 index 000000000000..caee1e4960be --- /dev/null +++ b/manifests/n/NetEase/CloudMusic/3.1.34.205281/NetEase.CloudMusic.installer.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: NetEase.CloudMusic +PackageVersion: 3.1.34.205281 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +Protocols: +- orpheus +FileExtensions: +- aac +- ape +- cda +- cue +- flac +- m4a +- mp3 +- ncm +- ogg +- wav +- wma +ProductCode: 网易云音乐 +Installers: +- Architecture: x86 + InstallerUrl: https://d8.music.126.net/dmusic2/NeteaseCloudMusic_Music_official_3.1.34.205281_32.exe + InstallerSha256: 629161B236227D384B37E673695B3DB51596005E1D8E856C6ACE4D97B44C89A9 +- Architecture: x64 + InstallerUrl: https://d8.music.126.net/dmusic2/NeteaseCloudMusic_Music_official_3.1.34.205281_64.exe + InstallerSha256: 48E5BE68D35D40F0009A6322117F3CA222486155131F893FF9F49F365CD0F346 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetEase/CloudMusic/3.1.34.205281/NetEase.CloudMusic.locale.en-US.yaml b/manifests/n/NetEase/CloudMusic/3.1.34.205281/NetEase.CloudMusic.locale.en-US.yaml new file mode 100644 index 000000000000..848d54289301 --- /dev/null +++ b/manifests/n/NetEase/CloudMusic/3.1.34.205281/NetEase.CloudMusic.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: NetEase.CloudMusic +PackageVersion: 3.1.34.205281 +PackageLocale: en-US +Publisher: 网易公司 +PublisherUrl: https://music.163.com/ +PublisherSupportUrl: https://mp.music.163.com/600948c936c13f4d09752e73/contact-us-web/ +PrivacyUrl: https://st.music.163.com/official-terms/privacy +Author: Hangzhou NetEase Cloud Music Technology Co., Ltd. +PackageName: 网易云音乐 +PackageUrl: https://music.163.com/#/download +License: Proprietary +LicenseUrl: https://st.music.163.com/official-terms/service +Copyright: © NetEase Corporation. All rights reserved. +ShortDescription: A music product focused on discovery and sharing. +Description: NetEase CloudMusic is one of the most popular music streaming platforms among young users and the leading music community in the industry. In NetEase CloudMusic, you can not only listen to a large number of genuine music, but also meet music-loving partners like you. Use music to connect each other and convey the power of pleasure. +Tags: +- album +- artist +- audio +- china +- cloud +- music +- player +- playlist +- prc +- song +- sound +ReleaseNotesUrl: https://music.163.com/#/pcupdatelog +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetEase/CloudMusic/3.1.34.205281/NetEase.CloudMusic.locale.zh-CN.yaml b/manifests/n/NetEase/CloudMusic/3.1.34.205281/NetEase.CloudMusic.locale.zh-CN.yaml new file mode 100644 index 000000000000..2be743d93bba --- /dev/null +++ b/manifests/n/NetEase/CloudMusic/3.1.34.205281/NetEase.CloudMusic.locale.zh-CN.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: NetEase.CloudMusic +PackageVersion: 3.1.34.205281 +PackageLocale: zh-CN +Publisher: 网易公司 +PublisherUrl: https://music.163.com/ +PublisherSupportUrl: https://mp.music.163.com/600948c936c13f4d09752e73/contact-us-web/ +PrivacyUrl: https://st.music.163.com/official-terms/privacy +Author: 杭州网易云音乐科技有限公司 +PackageName: 网易云音乐 +PackageUrl: https://music.163.com/#/download +License: 专有软件 +LicenseUrl: https://st.music.163.com/official-terms/service +Copyright: © NetEase Corporation. All rights reserved. +ShortDescription: 专注于发现与分享的音乐产品 +Description: 网易云音乐是当下最受年轻用户喜爱的音乐平台之一,同时也是业内领先的音乐社区。在网易云音乐,不仅可以听到海量正版音乐,还能遇见和你同样热爱音乐的伙伴。用音乐连接彼此,用音乐传递美好力量。 +Tags: +- 专辑 +- 云村 +- 云音乐 +- 播放器 +- 歌单 +- 歌手 +- 歌曲 +- 音乐 +- 音频 +ReleaseNotes: ★ 修复已知问题,优化体验 +ReleaseNotesUrl: https://music.163.com/#/pcupdatelog +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetEase/CloudMusic/3.1.34.205281/NetEase.CloudMusic.yaml b/manifests/n/NetEase/CloudMusic/3.1.34.205281/NetEase.CloudMusic.yaml new file mode 100644 index 000000000000..64d7c4b10847 --- /dev/null +++ b/manifests/n/NetEase/CloudMusic/3.1.34.205281/NetEase.CloudMusic.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: NetEase.CloudMusic +PackageVersion: 3.1.34.205281 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 64834ba7524f7782ba91a4fbb184e109bacafd6f Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 23:20:57 +0800 Subject: [PATCH 56/82] New version: NoMachine.NoMachine.CloudServer version 9.6.3 (9.6.3_1) (#381149) Co-authored-by: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> --- ...chine.NoMachine.CloudServer.installer.yaml | 25 ++++++++++ ...ne.NoMachine.CloudServer.locale.en-US.yaml | 47 +++++++++++++++++++ ...ne.NoMachine.CloudServer.locale.zh-CN.yaml | 24 ++++++++++ .../NoMachine.NoMachine.CloudServer.yaml | 8 ++++ 4 files changed, 104 insertions(+) create mode 100644 manifests/n/NoMachine/NoMachine/CloudServer/9.6.3/NoMachine.NoMachine.CloudServer.installer.yaml create mode 100644 manifests/n/NoMachine/NoMachine/CloudServer/9.6.3/NoMachine.NoMachine.CloudServer.locale.en-US.yaml create mode 100644 manifests/n/NoMachine/NoMachine/CloudServer/9.6.3/NoMachine.NoMachine.CloudServer.locale.zh-CN.yaml create mode 100644 manifests/n/NoMachine/NoMachine/CloudServer/9.6.3/NoMachine.NoMachine.CloudServer.yaml diff --git a/manifests/n/NoMachine/NoMachine/CloudServer/9.6.3/NoMachine.NoMachine.CloudServer.installer.yaml b/manifests/n/NoMachine/NoMachine/CloudServer/9.6.3/NoMachine.NoMachine.CloudServer.installer.yaml new file mode 100644 index 000000000000..01b76152b01f --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/CloudServer/9.6.3/NoMachine.NoMachine.CloudServer.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.CloudServer +PackageVersion: 9.6.3 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- nxr +- nxs +- nxv +- nxw +ProductCode: NoMachine_is1 +ReleaseDate: 2026-05-29 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + InstallerUrl: https://web9001.nomachine.com/packages/9.6-PRODUCTION/Windows/nomachine-cloud-server_9.6.3_1_x86.exe + InstallerSha256: 77A4F5FBA9A008A270BE07E667931760445E26D56EF3FC659D6E74BA29D90166 +- Architecture: x64 + InstallerUrl: https://web9001.nomachine.com/packages/9.6-PRODUCTION/Windows/nomachine-cloud-server_9.6.3_1_x64.exe + InstallerSha256: CA868EE3232B7B4E3A747CAB6A4E2A08051CB9E3DED7362F85404A86F368AC46 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/CloudServer/9.6.3/NoMachine.NoMachine.CloudServer.locale.en-US.yaml b/manifests/n/NoMachine/NoMachine/CloudServer/9.6.3/NoMachine.NoMachine.CloudServer.locale.en-US.yaml new file mode 100644 index 000000000000..d7406324f299 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/CloudServer/9.6.3/NoMachine.NoMachine.CloudServer.locale.en-US.yaml @@ -0,0 +1,47 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.CloudServer +PackageVersion: 9.6.3 +PackageLocale: en-US +Publisher: NoMachine S.a.r.l. +PublisherUrl: https://www.nomachine.com/ +PublisherSupportUrl: https://www.nomachine.com/support +PrivacyUrl: https://kb.nomachine.com/AR05P00977 +Author: NoMachine S.à r.l. +PackageName: NoMachine Cloud Server +PackageUrl: https://downloads.nomachine.com/ +License: Proprietary +LicenseUrl: https://www.nomachine.com/licensing +Copyright: Copyright 2002, 2026 © NoMachine +CopyrightUrl: https://www.nomachine.com/licensing +ShortDescription: For smaller deployments Cloud Server permits up to 20 connections, connecting users located outside the LAN to their NoMachine-enabled computers. Users can connect from any device or Web browser to Windows, Mac or Linux desktops on the corporate network. +Description: NoMachine Cloud Server provides centralized remote access for up to 20 connections. Suitable for teams and small departments, it allows any organization to converge point-of-entry to desktops and computers on the corporate network. Administrators can securely consolidate access to NoMachine-enabled hosts, such as Enterprise Desktops, which have been added to the gateway, making sure that those resources are never exposed to the internet. +Tags: +- remote +- remote-access +- remote-control +- remote-desktop +ReleaseNotes: |- + NoMachine makes available version 9.6.x providing fixes for issues found in previous releases affecting USB device handling, file transfer reliability and Kerberos authentication. Additionally, this update includes a patch to prevent possible XSS (Cross-Site Scripting) with browser sessions. + Trouble Reports solved + + Here is the complete list of fixes released in version 9.6.3: + TR12W11668 - Sometimes the USB camera name is not properly identified + TR04X11801 - USB device forwarded to Linux may disconnect after 2 hours + TR11W11636 - Copying a file from remote to a shared subfolder sometimes hangs + TR05X11814 - Log rotation may ignore setting of the UsersDirectoryPath key + TR04X11807 - Windows users may be unable to use Kerberos authentication with Enterprise Client + TR05X11821 - Possible execution of an arbitrary XXS script during the login via web + TR05X11822 - It may be not possible to connect to the desktop when SDDM login manager is used +ReleaseNotesUrl: https://kb.nomachine.com/SU05X00276 +PurchaseUrl: https://store.nomachine.com +Documentations: +- DocumentLabel: Documents + DocumentUrl: https://www.nomachine.com/documents +- DocumentLabel: Knowledge Base + DocumentUrl: https://kb.nomachine.com/ +- DocumentLabel: FAQ + DocumentUrl: https://www.nomachine.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/CloudServer/9.6.3/NoMachine.NoMachine.CloudServer.locale.zh-CN.yaml b/manifests/n/NoMachine/NoMachine/CloudServer/9.6.3/NoMachine.NoMachine.CloudServer.locale.zh-CN.yaml new file mode 100644 index 000000000000..7b77e1db4de9 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/CloudServer/9.6.3/NoMachine.NoMachine.CloudServer.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.CloudServer +PackageVersion: 9.6.3 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 对于较小规模的部署,NoMachine 云服务器支持最多 20 个连接,使局域网外的用户能够访问其启用 NoMachine 的计算机。用户可通过任意设备或网页浏览器连接至企业网络中的 Windows、Mac 或 Linux 桌面。 +Description: NoMachine 云服务器为最多 20 个连接提供集中式远程访问方案。该解决方案适合团队和小型部门使用,可帮助各类组织统一接入企业网络内的桌面和计算机。管理员能够安全地整合对已添加至网关的 NoMachine 主机(如企业桌面)的访问权限,确保这些资源永不暴露在公网环境中。 +Tags: +- 远程 +- 远程控制 +- 远程桌面 +- 远程访问 +- 远程连接 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://www.nomachine.com/documents +- DocumentLabel: 知识库 + DocumentUrl: https://kb.nomachine.com/ +- DocumentLabel: 常见问题 + DocumentUrl: https://www.nomachine.com/faq +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/CloudServer/9.6.3/NoMachine.NoMachine.CloudServer.yaml b/manifests/n/NoMachine/NoMachine/CloudServer/9.6.3/NoMachine.NoMachine.CloudServer.yaml new file mode 100644 index 000000000000..e043a6af13e6 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/CloudServer/9.6.3/NoMachine.NoMachine.CloudServer.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: NoMachine.NoMachine.CloudServer +PackageVersion: 9.6.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 16d8f19eb023fb35ff279e3dd0b8abd1c9f0cc81 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 23:21:12 +0800 Subject: [PATCH 57/82] New version: NoMachine.NoMachine.EnterpriseClient version 9.6.3 (9.6.3_1) (#381150) Co-authored-by: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> --- ....NoMachine.EnterpriseClient.installer.yaml | 25 ++++++++++ ...Machine.EnterpriseClient.locale.en-US.yaml | 47 +++++++++++++++++++ ...Machine.EnterpriseClient.locale.zh-CN.yaml | 24 ++++++++++ .../NoMachine.NoMachine.EnterpriseClient.yaml | 8 ++++ 4 files changed, 104 insertions(+) create mode 100644 manifests/n/NoMachine/NoMachine/EnterpriseClient/9.6.3/NoMachine.NoMachine.EnterpriseClient.installer.yaml create mode 100644 manifests/n/NoMachine/NoMachine/EnterpriseClient/9.6.3/NoMachine.NoMachine.EnterpriseClient.locale.en-US.yaml create mode 100644 manifests/n/NoMachine/NoMachine/EnterpriseClient/9.6.3/NoMachine.NoMachine.EnterpriseClient.locale.zh-CN.yaml create mode 100644 manifests/n/NoMachine/NoMachine/EnterpriseClient/9.6.3/NoMachine.NoMachine.EnterpriseClient.yaml diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.6.3/NoMachine.NoMachine.EnterpriseClient.installer.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.6.3/NoMachine.NoMachine.EnterpriseClient.installer.yaml new file mode 100644 index 000000000000..d867bc4a2703 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.6.3/NoMachine.NoMachine.EnterpriseClient.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseClient +PackageVersion: 9.6.3 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- nxr +- nxs +- nxv +- nxw +ProductCode: NoMachine_is1 +ReleaseDate: 2026-05-29 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + InstallerUrl: https://web9001.nomachine.com/download/9.6/Windows/nomachine-enterprise-client_9.6.3_1_x86.exe + InstallerSha256: 51ACDF2EF817FACC3BB52C0E54B8B56599D6A7BEC7BCFB61535DBF68BE6F0A55 +- Architecture: x64 + InstallerUrl: https://web9001.nomachine.com/download/9.6/Windows/nomachine-enterprise-client_9.6.3_1_x64.exe + InstallerSha256: 3DDD4EFF96E51850AFA4CF3369EA53427586E562C5ED015A5BC0255BE8FDB8A5 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.6.3/NoMachine.NoMachine.EnterpriseClient.locale.en-US.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.6.3/NoMachine.NoMachine.EnterpriseClient.locale.en-US.yaml new file mode 100644 index 000000000000..eaa812066232 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.6.3/NoMachine.NoMachine.EnterpriseClient.locale.en-US.yaml @@ -0,0 +1,47 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseClient +PackageVersion: 9.6.3 +PackageLocale: en-US +Publisher: NoMachine S.a.r.l. +PublisherUrl: https://www.nomachine.com/ +PublisherSupportUrl: https://www.nomachine.com/support +PrivacyUrl: https://kb.nomachine.com/AR05P00977 +Author: NoMachine S.à r.l. +PackageName: NoMachine Enterprise Client +PackageUrl: https://downloads.nomachine.com/ +License: Proprietary +LicenseUrl: https://www.nomachine.com/licensing +Copyright: Copyright 2002, 2026 © NoMachine +CopyrightUrl: https://www.nomachine.com/licensing +ShortDescription: Get access to all your remote PCs and desktop computers where you have provided a NoMachine server product. Do that with a minimal install, including only the client-side components of the NoMachine software suite. +Description: Enterprise Client enables fast and secure access to your remote PC or desktop computer where you have installed one of the NoMachine server products. It provides a powerful connection interface, named the NoMachine Player, packed with all the features you need to work with your remote desktop. This package is available for those who prefer just a standalone "client-side" application, either because regulatory requirements dictate that connecting clients must stay as thin clients, or simply because a scaled-down client app is your personal preference. It's free to download and can be used to connect remotely from any Windows, Linux, Mac, ARM or Raspberry device to a computer where you have installed a NoMachine Enterprise product or the NoMachine Free Edition. +Tags: +- remote +- remote-access +- remote-control +- remote-desktop +ReleaseNotes: |- + NoMachine makes available version 9.6.x providing fixes for issues found in previous releases affecting USB device handling, file transfer reliability and Kerberos authentication. Additionally, this update includes a patch to prevent possible XSS (Cross-Site Scripting) with browser sessions. + Trouble Reports solved + + Here is the complete list of fixes released in version 9.6.3: + TR12W11668 - Sometimes the USB camera name is not properly identified + TR04X11801 - USB device forwarded to Linux may disconnect after 2 hours + TR11W11636 - Copying a file from remote to a shared subfolder sometimes hangs + TR05X11814 - Log rotation may ignore setting of the UsersDirectoryPath key + TR04X11807 - Windows users may be unable to use Kerberos authentication with Enterprise Client + TR05X11821 - Possible execution of an arbitrary XXS script during the login via web + TR05X11822 - It may be not possible to connect to the desktop when SDDM login manager is used +ReleaseNotesUrl: https://kb.nomachine.com/SU05X00276 +PurchaseUrl: https://store.nomachine.com +Documentations: +- DocumentLabel: Documents + DocumentUrl: https://www.nomachine.com/documents +- DocumentLabel: Knowledge Base + DocumentUrl: https://kb.nomachine.com/ +- DocumentLabel: FAQ + DocumentUrl: https://www.nomachine.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.6.3/NoMachine.NoMachine.EnterpriseClient.locale.zh-CN.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.6.3/NoMachine.NoMachine.EnterpriseClient.locale.zh-CN.yaml new file mode 100644 index 000000000000..28f98a33f0c9 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.6.3/NoMachine.NoMachine.EnterpriseClient.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseClient +PackageVersion: 9.6.3 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 访问您已安装 NoMachine 服务器产品的所有远程 PC 和桌面计算机。仅需最小化安装,包含 NoMachine 软件套件中的客户端组件即可实现。 +Description: 企业版客户端助您快速安全地访问已安装 NoMachine 服务器产品的远程 PC 或桌面计算机。它提供名为 NoMachine Player 的强大连接界面,集成了远程桌面工作所需的全部功能。该软件包专为以下用户设计:因合规要求连接客户端必须保持瘦客户端形态,或单纯偏好精简版客户端应用。本程序免费下载,支持从 Windows、Linux、Mac、ARM 或树莓派等设备远程连接至已安装 NoMachine 企业版产品或免费版的计算机。 +Tags: +- 远程 +- 远程控制 +- 远程桌面 +- 远程访问 +- 远程连接 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://www.nomachine.com/documents +- DocumentLabel: 知识库 + DocumentUrl: https://kb.nomachine.com/ +- DocumentLabel: 常见问题 + DocumentUrl: https://www.nomachine.com/faq +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.6.3/NoMachine.NoMachine.EnterpriseClient.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.6.3/NoMachine.NoMachine.EnterpriseClient.yaml new file mode 100644 index 000000000000..d632e4d1f52f --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.6.3/NoMachine.NoMachine.EnterpriseClient.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: NoMachine.NoMachine.EnterpriseClient +PackageVersion: 9.6.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From bad4394a23e417b34947ea58f40495e570914723 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 23:21:18 +0800 Subject: [PATCH 58/82] New version: NoMachine.NoMachine.EnterpriseDesktop version 9.6.3 (9.6.3_1) (#381153) Co-authored-by: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> --- ...NoMachine.EnterpriseDesktop.installer.yaml | 25 ++++++++++ ...achine.EnterpriseDesktop.locale.en-US.yaml | 47 +++++++++++++++++++ ...achine.EnterpriseDesktop.locale.zh-CN.yaml | 24 ++++++++++ ...NoMachine.NoMachine.EnterpriseDesktop.yaml | 8 ++++ 4 files changed, 104 insertions(+) create mode 100644 manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.6.3/NoMachine.NoMachine.EnterpriseDesktop.installer.yaml create mode 100644 manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.6.3/NoMachine.NoMachine.EnterpriseDesktop.locale.en-US.yaml create mode 100644 manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.6.3/NoMachine.NoMachine.EnterpriseDesktop.locale.zh-CN.yaml create mode 100644 manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.6.3/NoMachine.NoMachine.EnterpriseDesktop.yaml diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.6.3/NoMachine.NoMachine.EnterpriseDesktop.installer.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.6.3/NoMachine.NoMachine.EnterpriseDesktop.installer.yaml new file mode 100644 index 000000000000..f6ed52b77552 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.6.3/NoMachine.NoMachine.EnterpriseDesktop.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseDesktop +PackageVersion: 9.6.3 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- nxr +- nxs +- nxv +- nxw +ProductCode: NoMachine_is1 +ReleaseDate: 2026-05-29 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + InstallerUrl: https://web9001.nomachine.com/packages/9.6-PRODUCTION/Windows/nomachine-enterprise-desktop_9.6.3_1_x86.exe + InstallerSha256: 9F76FC54B531E186A97F2BEEB95318241D88CD7847F208DD6211EFFF66A1C499 +- Architecture: x64 + InstallerUrl: https://web9001.nomachine.com/packages/9.6-PRODUCTION/Windows/nomachine-enterprise-desktop_9.6.3_1_x64.exe + InstallerSha256: 129FE889707E9F7C52B23D456DAC2D9F7DC58FF51FE7F6B30E47BAFDE48D9FD1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.6.3/NoMachine.NoMachine.EnterpriseDesktop.locale.en-US.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.6.3/NoMachine.NoMachine.EnterpriseDesktop.locale.en-US.yaml new file mode 100644 index 000000000000..780f0e66bb97 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.6.3/NoMachine.NoMachine.EnterpriseDesktop.locale.en-US.yaml @@ -0,0 +1,47 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseDesktop +PackageVersion: 9.6.3 +PackageLocale: en-US +Publisher: NoMachine S.a.r.l. +PublisherUrl: https://www.nomachine.com/ +PublisherSupportUrl: https://www.nomachine.com/support +PrivacyUrl: https://kb.nomachine.com/AR05P00977 +Author: NoMachine S.à r.l. +PackageName: NoMachine Enterprise Desktop +PackageUrl: https://downloads.nomachine.com/ +License: Proprietary +LicenseUrl: https://www.nomachine.com/licensing +Copyright: Copyright 2002, 2026 © NoMachine +CopyrightUrl: https://www.nomachine.com/licensing +ShortDescription: Make any computer accessible from remote +Description: Access your remote office or home computer at its best, over any network, for remote collaboration and remote work. Manage your desktops and hosted resources deployed on-prem, in your data center or in the cloud. You can even add any Enterprise Desktop to any NoMachine Cloud Server you own, to get better control and centralized access. +Tags: +- remote +- remote-access +- remote-control +- remote-desktop +ReleaseNotes: |- + NoMachine makes available version 9.6.x providing fixes for issues found in previous releases affecting USB device handling, file transfer reliability and Kerberos authentication. Additionally, this update includes a patch to prevent possible XSS (Cross-Site Scripting) with browser sessions. + Trouble Reports solved + + Here is the complete list of fixes released in version 9.6.3: + TR12W11668 - Sometimes the USB camera name is not properly identified + TR04X11801 - USB device forwarded to Linux may disconnect after 2 hours + TR11W11636 - Copying a file from remote to a shared subfolder sometimes hangs + TR05X11814 - Log rotation may ignore setting of the UsersDirectoryPath key + TR04X11807 - Windows users may be unable to use Kerberos authentication with Enterprise Client + TR05X11821 - Possible execution of an arbitrary XXS script during the login via web + TR05X11822 - It may be not possible to connect to the desktop when SDDM login manager is used +ReleaseNotesUrl: https://kb.nomachine.com/SU05X00276 +PurchaseUrl: https://store.nomachine.com +Documentations: +- DocumentLabel: Documents + DocumentUrl: https://www.nomachine.com/documents +- DocumentLabel: Knowledge Base + DocumentUrl: https://kb.nomachine.com/ +- DocumentLabel: FAQ + DocumentUrl: https://www.nomachine.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.6.3/NoMachine.NoMachine.EnterpriseDesktop.locale.zh-CN.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.6.3/NoMachine.NoMachine.EnterpriseDesktop.locale.zh-CN.yaml new file mode 100644 index 000000000000..f4c5650ceb42 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.6.3/NoMachine.NoMachine.EnterpriseDesktop.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseDesktop +PackageVersion: 9.6.3 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 实现远程访问任意计算机 +Description: 以最佳方式访问您的远程办公室或家庭计算机,跨越任何网络,助力远程协作与远程办公。管理部署在本地、数据中心或云端的桌面及托管资源。您甚至可以将任何企业桌面添加到您所拥有的 NoMachine 云服务器中,以获得更佳的控制与集中访问体验。 +Tags: +- 远程 +- 远程控制 +- 远程桌面 +- 远程访问 +- 远程连接 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://www.nomachine.com/documents +- DocumentLabel: 知识库 + DocumentUrl: https://kb.nomachine.com/ +- DocumentLabel: 常见问题 + DocumentUrl: https://www.nomachine.com/faq +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.6.3/NoMachine.NoMachine.EnterpriseDesktop.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.6.3/NoMachine.NoMachine.EnterpriseDesktop.yaml new file mode 100644 index 000000000000..7bbf85d04b9b --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.6.3/NoMachine.NoMachine.EnterpriseDesktop.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: NoMachine.NoMachine.EnterpriseDesktop +PackageVersion: 9.6.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From b2690ee8affad8920ded56e27a6b832a80203ed5 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 23:21:43 +0800 Subject: [PATCH 59/82] New version: NoMachine.NoMachine.WorkgroupCloudServer version 9.6.3 (9.6.3_1) (#381154) Co-authored-by: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> --- ...achine.WorkgroupCloudServer.installer.yaml | 25 ++++++++++ ...ine.WorkgroupCloudServer.locale.en-US.yaml | 47 +++++++++++++++++++ ...ine.WorkgroupCloudServer.locale.zh-CN.yaml | 24 ++++++++++ ...achine.NoMachine.WorkgroupCloudServer.yaml | 8 ++++ 4 files changed, 104 insertions(+) create mode 100644 manifests/n/NoMachine/NoMachine/WorkgroupCloudServer/9.6.3/NoMachine.NoMachine.WorkgroupCloudServer.installer.yaml create mode 100644 manifests/n/NoMachine/NoMachine/WorkgroupCloudServer/9.6.3/NoMachine.NoMachine.WorkgroupCloudServer.locale.en-US.yaml create mode 100644 manifests/n/NoMachine/NoMachine/WorkgroupCloudServer/9.6.3/NoMachine.NoMachine.WorkgroupCloudServer.locale.zh-CN.yaml create mode 100644 manifests/n/NoMachine/NoMachine/WorkgroupCloudServer/9.6.3/NoMachine.NoMachine.WorkgroupCloudServer.yaml diff --git a/manifests/n/NoMachine/NoMachine/WorkgroupCloudServer/9.6.3/NoMachine.NoMachine.WorkgroupCloudServer.installer.yaml b/manifests/n/NoMachine/NoMachine/WorkgroupCloudServer/9.6.3/NoMachine.NoMachine.WorkgroupCloudServer.installer.yaml new file mode 100644 index 000000000000..7f435494dd68 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/WorkgroupCloudServer/9.6.3/NoMachine.NoMachine.WorkgroupCloudServer.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.WorkgroupCloudServer +PackageVersion: 9.6.3 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- nxr +- nxs +- nxv +- nxw +ProductCode: NoMachine_is1 +ReleaseDate: 2026-05-29 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + InstallerUrl: https://web9001.nomachine.com/packages/9.6-PRODUCTION/Windows/nomachine-workgroup-cloud-server_9.6.3_1_x86.exe + InstallerSha256: 722444AA935F817B8F8B3184907F99ED5981E101959B7BEF14D67A48608B7711 +- Architecture: x64 + InstallerUrl: https://web9001.nomachine.com/packages/9.6-PRODUCTION/Windows/nomachine-workgroup-cloud-server_9.6.3_1_x64.exe + InstallerSha256: 635ACF424622FAE9756C811A5A0F132EC77ECA074BF6B9469D73A4E10A7CCCD1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/WorkgroupCloudServer/9.6.3/NoMachine.NoMachine.WorkgroupCloudServer.locale.en-US.yaml b/manifests/n/NoMachine/NoMachine/WorkgroupCloudServer/9.6.3/NoMachine.NoMachine.WorkgroupCloudServer.locale.en-US.yaml new file mode 100644 index 000000000000..762377cd36a4 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/WorkgroupCloudServer/9.6.3/NoMachine.NoMachine.WorkgroupCloudServer.locale.en-US.yaml @@ -0,0 +1,47 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.WorkgroupCloudServer +PackageVersion: 9.6.3 +PackageLocale: en-US +Publisher: NoMachine S.a.r.l. +PublisherUrl: https://www.nomachine.com/ +PublisherSupportUrl: https://www.nomachine.com/support +PrivacyUrl: https://kb.nomachine.com/AR05P00977 +Author: NoMachine S.à r.l. +PackageName: NoMachine Workgroup Cloud Server +PackageUrl: https://downloads.nomachine.com/ +License: Proprietary +LicenseUrl: https://www.nomachine.com/licensing +Copyright: Copyright 2002, 2026 © NoMachine +CopyrightUrl: https://www.nomachine.com/licensing +ShortDescription: Centralize user access through a single gateway allowing NoMachine client devices to connect securely from outside the corporate network to remote desktops and servers residing inside. +Description: NoMachine Workgroup Cloud Server centralizes user access through a single gateway allowing NoMachine client devices to connect securely from outside the corporate network to remote desktops and servers residing inside. It is tailored for small teams and allows up to 10 simultaneous connections. Since any number of NoMachine nodes such as Enterprise Desktops or even Terminal Servers can be added to it, this mini connection broker is perfect for set-ups where there are multiple NoMachine-enabled desktops and computers, but only a few users requesting offsite remote access at any given time. +Tags: +- remote +- remote-access +- remote-control +- remote-desktop +ReleaseNotes: |- + NoMachine makes available version 9.6.x providing fixes for issues found in previous releases affecting USB device handling, file transfer reliability and Kerberos authentication. Additionally, this update includes a patch to prevent possible XSS (Cross-Site Scripting) with browser sessions. + Trouble Reports solved + + Here is the complete list of fixes released in version 9.6.3: + TR12W11668 - Sometimes the USB camera name is not properly identified + TR04X11801 - USB device forwarded to Linux may disconnect after 2 hours + TR11W11636 - Copying a file from remote to a shared subfolder sometimes hangs + TR05X11814 - Log rotation may ignore setting of the UsersDirectoryPath key + TR04X11807 - Windows users may be unable to use Kerberos authentication with Enterprise Client + TR05X11821 - Possible execution of an arbitrary XXS script during the login via web + TR05X11822 - It may be not possible to connect to the desktop when SDDM login manager is used +ReleaseNotesUrl: https://kb.nomachine.com/SU05X00276 +PurchaseUrl: https://store.nomachine.com +Documentations: +- DocumentLabel: Documents + DocumentUrl: https://www.nomachine.com/documents +- DocumentLabel: Knowledge Base + DocumentUrl: https://kb.nomachine.com/ +- DocumentLabel: FAQ + DocumentUrl: https://www.nomachine.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/WorkgroupCloudServer/9.6.3/NoMachine.NoMachine.WorkgroupCloudServer.locale.zh-CN.yaml b/manifests/n/NoMachine/NoMachine/WorkgroupCloudServer/9.6.3/NoMachine.NoMachine.WorkgroupCloudServer.locale.zh-CN.yaml new file mode 100644 index 000000000000..a2d9a8a86878 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/WorkgroupCloudServer/9.6.3/NoMachine.NoMachine.WorkgroupCloudServer.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.WorkgroupCloudServer +PackageVersion: 9.6.3 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 通过单一网关集中管理用户访问,让 NoMachine 客户端设备能够从企业网络外部安全连接到内部的远程桌面和服务器。 +Description: NoMachine Workgroup Cloud Server 通过单一网关集中管理用户访问,让 NoMachine 客户端设备能够从企业网络外部安全连接到内部的远程桌面和服务器。该方案专为小型团队设计,支持最多 10 个并发连接。由于可无限扩展添加企业桌面或终端服务器等 NoMachine 节点,这款迷你连接代理器完美适用于以下场景:部署了多台支持 NoMachine 的桌面和计算机,但任意时刻仅需为少数用户提供异地远程访问。 +Tags: +- 远程 +- 远程控制 +- 远程桌面 +- 远程访问 +- 远程连接 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://www.nomachine.com/documents +- DocumentLabel: 知识库 + DocumentUrl: https://kb.nomachine.com/ +- DocumentLabel: 常见问题 + DocumentUrl: https://www.nomachine.com/faq +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/WorkgroupCloudServer/9.6.3/NoMachine.NoMachine.WorkgroupCloudServer.yaml b/manifests/n/NoMachine/NoMachine/WorkgroupCloudServer/9.6.3/NoMachine.NoMachine.WorkgroupCloudServer.yaml new file mode 100644 index 000000000000..9bac53bfce33 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/WorkgroupCloudServer/9.6.3/NoMachine.NoMachine.WorkgroupCloudServer.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: NoMachine.NoMachine.WorkgroupCloudServer +PackageVersion: 9.6.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 6d37c1d0fe62b49eef2036b7146bec9850c40611 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 23:21:47 +0800 Subject: [PATCH 60/82] New version: ByteDance.LarkCLI version 1.0.44 (#381175) --- .../1.0.44/ByteDance.LarkCLI.installer.yaml | 21 +++++++ .../ByteDance.LarkCLI.locale.en-US.yaml | 57 +++++++++++++++++++ .../ByteDance.LarkCLI.locale.zh-Hans-CN.yaml | 39 +++++++++++++ .../ByteDance.LarkCLI.locale.zh-Hans.yaml | 37 ++++++++++++ .../LarkCLI/1.0.44/ByteDance.LarkCLI.yaml | 8 +++ 5 files changed, 162 insertions(+) create mode 100644 manifests/b/ByteDance/LarkCLI/1.0.44/ByteDance.LarkCLI.installer.yaml create mode 100644 manifests/b/ByteDance/LarkCLI/1.0.44/ByteDance.LarkCLI.locale.en-US.yaml create mode 100644 manifests/b/ByteDance/LarkCLI/1.0.44/ByteDance.LarkCLI.locale.zh-Hans-CN.yaml create mode 100644 manifests/b/ByteDance/LarkCLI/1.0.44/ByteDance.LarkCLI.locale.zh-Hans.yaml create mode 100644 manifests/b/ByteDance/LarkCLI/1.0.44/ByteDance.LarkCLI.yaml diff --git a/manifests/b/ByteDance/LarkCLI/1.0.44/ByteDance.LarkCLI.installer.yaml b/manifests/b/ByteDance/LarkCLI/1.0.44/ByteDance.LarkCLI.installer.yaml new file mode 100644 index 000000000000..a15af6f095ec --- /dev/null +++ b/manifests/b/ByteDance/LarkCLI/1.0.44/ByteDance.LarkCLI.installer.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ByteDance.LarkCLI +PackageVersion: 1.0.44 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: lark-cli.exe +Commands: +- lark-cli +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/larksuite/cli/releases/download/v1.0.44/lark-cli-1.0.44-windows-amd64.zip + InstallerSha256: FDC99A70C911B2D98B82BEA8FC0BC774B7BAF70DAE989E9C7988C10E6EBA314F +- Architecture: arm64 + InstallerUrl: https://github.com/larksuite/cli/releases/download/v1.0.44/lark-cli-1.0.44-windows-arm64.zip + InstallerSha256: 1AD9972FB85EB54B2ADAA185D31DC231F6C9ACF43D9678E57535A9A60AE0A5ED +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/LarkCLI/1.0.44/ByteDance.LarkCLI.locale.en-US.yaml b/manifests/b/ByteDance/LarkCLI/1.0.44/ByteDance.LarkCLI.locale.en-US.yaml new file mode 100644 index 000000000000..00f7edd82acf --- /dev/null +++ b/manifests/b/ByteDance/LarkCLI/1.0.44/ByteDance.LarkCLI.locale.en-US.yaml @@ -0,0 +1,57 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ByteDance.LarkCLI +PackageVersion: 1.0.44 +PackageLocale: en-US +Publisher: Lark Technologies Pte. Ltd. +PublisherUrl: https://www.larksuite.com/en_us/ +PublisherSupportUrl: https://github.com/larksuite/cli/issues +PrivacyUrl: https://www.larksuite.com/en_us/privacy-policy +Author: Lark Technologies Pte. Ltd. +PackageName: Lark CLI +PackageUrl: https://github.com/larksuite/cli +License: MIT +LicenseUrl: https://github.com/larksuite/cli/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Lark Technologies Pte. Ltd. +CopyrightUrl: https://www.larksuite.com/en_us/user-terms-of-service +ShortDescription: A command-line tool for Lark/Feishu Open Platform — built for humans and AI Agents. Covers core business domains including Messenger, Docs, Base, Sheets, Calendar, Mail, Tasks, Meetings, and more, with 200+ commands and 19 AI Agent Skills. +Description: |- + A command-line tool for Lark/Feishu Open Platform — built for humans and AI Agents. Covers core business domains including Messenger, Docs, Base, Sheets, Calendar, Mail, Tasks, Meetings, and more, with 200+ commands and 19 AI Agent Skills. + Why lark-cli? + - Agent-Native Design — 19 structured Skills out of the box, compatible with popular AI tools — Agents can operate Lark with zero extra setup + - Wide Coverage — 11 business domains, 200+ curated commands, 19 AI Agent Skills + - AI-Friendly & Optimized — Every command is tested with real Agents, featuring concise parameters, smart defaults, and structured output to maximize Agent call success rates + - Open Source, Zero Barriers — MIT license, ready to use, just npm install + - Up and Running in 3 Minutes — One-click app creation, interactive login, from install to first API call in just 3 steps + - Secure & Controllable — Input injection protection, terminal output sanitization, OS-native keychain credential storage + - Three-Layer Architecture — Shortcuts (human & AI friendly) → API Commands (platform-synced) → Raw API (full coverage), choose the right granularity + Features + - 📅 Calendar: View agenda, create events, invite attendees, check free/busy status, time suggestions + - 💬 Messenger: Send/reply messages, create and manage group chats, view chat history & threads, search messages, download media + - 📄 Docs: Create, read, update, and search documents, read/write media & whiteboards + - 📁 Drive: Upload and download files, search docs & wiki, manage comments + - 📊 Base: Create and manage tables, fields, records, views, dashboards, data aggregation & analytics + - 📈 Sheets: Create, read, write, append, find, and export spreadsheet data + - ✅ Tasks: Create, query, update, and complete tasks; manage task lists, subtasks, comments & reminders + - 📚 Wiki: Create and manage knowledge spaces, nodes, and documents + - 👤 Contact: Search users by name/email/phone, get user profiles + - 📧 Mail: Browse, search, read emails, send, reply, forward, manage drafts, watch new mail + - 🎥 Meetings: Search meeting records, query meeting minutes & recordings +Moniker: lark-cli +Tags: +- feishu +- lark +ReleaseNotes: |- + Changelog + - d126ea2f922a264d9c3acfc29e5ca6c7b581993f chore(release): v1.0.44 (#1176) + - 0e6274d9472a7d757671cecc40af370555d44090 feat(base): add dashboard block data shortcut and workflow docs (#1067) + - 365e0a28800f15c6393c6e6fb1f4cca31ae004c4 feat(im/chat-list): support --types flag for listing p2p single chats (#1077) + - 176d452cc1ad2d5aa4971dcda8e87acc51742f59 feat: add agent header support (#1158) + - e18ea9a2e824472c41c279ee80933a5d559a3d86 fix(im): correct 64-bit MP4 box size handling to prevent panic on crafted media (#1165) + - a2cc5e124ed1b8c82afe83cd643a60ca87c2b31a fix(install): detect curl version before using --ssl-revoke-best-effort (#1124) + - 1ba107da2ea32b516a3877f2a99912770d41374d fix(vc): correct --minute-token to --minute-tokens in recording reference (#1170) + - 0a2c3202cb3d71c6d5f914e6fcc13fa6a30037cd fix: whiteboard skill (#1166) +ReleaseNotesUrl: https://github.com/larksuite/cli/releases/tag/v1.0.44 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/LarkCLI/1.0.44/ByteDance.LarkCLI.locale.zh-Hans-CN.yaml b/manifests/b/ByteDance/LarkCLI/1.0.44/ByteDance.LarkCLI.locale.zh-Hans-CN.yaml new file mode 100644 index 000000000000..8f45ed3f7972 --- /dev/null +++ b/manifests/b/ByteDance/LarkCLI/1.0.44/ByteDance.LarkCLI.locale.zh-Hans-CN.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: ByteDance.LarkCLI +PackageVersion: 1.0.44 +PackageLocale: zh-Hans-CN +Publisher: 北京飞书科技有限公司 +PublisherUrl: https://www.feishu.cn/ +PrivacyUrl: https://www.feishu.cn/privacy +Author: 北京飞书科技有限公司 +CopyrightUrl: https://www.feishu.cn/terms +ShortDescription: 飞书/Lark 开放平台命令行工具 — 让人类和 AI Agent 都能在终端中操作飞书。覆盖消息、文档、多维表格、电子表格、日历、邮箱、任务、会议等核心业务域,提供 200+ 命令及 19 个 AI Agent Skills。 +Description: |- + 飞书/Lark 开放平台命令行工具 — 让人类和 AI Agent 都能在终端中操作飞书。覆盖消息、文档、多维表格、电子表格、日历、邮箱、任务、会议等核心业务域,提供 200+ 命令及 19 个 AI Agent Skills。 + 为什么选 lark-cli? + - 为 Agent 原生设计 — Skills 开箱即用,适配主流 AI 工具,Agent 无需额外适配即可操作飞书 + - 覆盖面广 — 11 大业务域、200+ 精选命令、 19 个 AI Agent Skills + - AI 友好调优 — 每条命令经过 Agent 实测验证,提供更友好的参数、智能默认值和结构化输出,大幅提升 Agent 调用成功率 + - 开源零门槛 — MIT 协议,开箱即用,npm install 即可使用 + - 三分钟上手 — 一键创建应用、交互式登录授权,从安装到第一次 API 调用只需三步 + - 安全可控 — 输入防注入、终端输出净化、OS 原生密钥链存储凭证 + - 三层调用架构 — 快捷命令(人机友好)→ API 命令(平台同步)→ 通用调用(全 API 覆盖),按需选择粒度 + 功能 + - 📅 日历:查看日程、创建日程、邀请参会人、查询忙闲状态、时间建议 + - 💬 即时通讯:发送/回复消息、创建和管理群聊、查看聊天记录与话题、搜索消息、下载媒体文件 + - 📄 云文档:创建、读取、更新文档、搜索文档、读写素材与画板 + - 📁 云空间:上传和下载文件、搜索文档与知识库、管理评论 + - 📊 多维表格:创建和管理多维表格、字段、记录、视图、仪表盘,数据聚合分析 + - 📈 电子表格:创建、读取、写入、追加、查找和导出表格数据 + - ✅ 任务:创建、查询、更新和完成任务;管理任务清单、子任务、评论与提醒 + - 📚 知识库:创建和管理知识空间、节点和文档 + - 👤 通讯录:按姓名/邮箱/手机号搜索用户、获取用户信息 + - 📧 邮箱:浏览、搜索、阅读邮件,发送、回复、转发邮件,管理草稿,监听新邮件 + - 🎥 视频会议:搜索会议记录、查询会议纪要与录制 +Tags: +- lark +- 飞书 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/LarkCLI/1.0.44/ByteDance.LarkCLI.locale.zh-Hans.yaml b/manifests/b/ByteDance/LarkCLI/1.0.44/ByteDance.LarkCLI.locale.zh-Hans.yaml new file mode 100644 index 000000000000..d96c49f0302b --- /dev/null +++ b/manifests/b/ByteDance/LarkCLI/1.0.44/ByteDance.LarkCLI.locale.zh-Hans.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: ByteDance.LarkCLI +PackageVersion: 1.0.44 +PackageLocale: zh-Hans +PublisherUrl: https://www.larksuite.com/zh_cn/ +PrivacyUrl: https://www.larksuite.com/zh_cn/privacy-policy +CopyrightUrl: https://www.larksuite.com/zh_cn/user-terms-of-service +ShortDescription: 飞书/Lark 开放平台命令行工具 — 让人类和 AI Agent 都能在终端中操作飞书。覆盖消息、文档、多维表格、电子表格、日历、邮箱、任务、会议等核心业务域,提供 200+ 命令及 19 个 AI Agent Skills。 +Description: |- + 飞书/Lark 开放平台命令行工具 — 让人类和 AI Agent 都能在终端中操作飞书。覆盖消息、文档、多维表格、电子表格、日历、邮箱、任务、会议等核心业务域,提供 200+ 命令及 19 个 AI Agent Skills。 + 为什么选 lark-cli? + - 为 Agent 原生设计 — Skills 开箱即用,适配主流 AI 工具,Agent 无需额外适配即可操作飞书 + - 覆盖面广 — 11 大业务域、200+ 精选命令、 19 个 AI Agent Skills + - AI 友好调优 — 每条命令经过 Agent 实测验证,提供更友好的参数、智能默认值和结构化输出,大幅提升 Agent 调用成功率 + - 开源零门槛 — MIT 协议,开箱即用,npm install 即可使用 + - 三分钟上手 — 一键创建应用、交互式登录授权,从安装到第一次 API 调用只需三步 + - 安全可控 — 输入防注入、终端输出净化、OS 原生密钥链存储凭证 + - 三层调用架构 — 快捷命令(人机友好)→ API 命令(平台同步)→ 通用调用(全 API 覆盖),按需选择粒度 + 功能 + - 📅 日历:查看日程、创建日程、邀请参会人、查询忙闲状态、时间建议 + - 💬 即时通讯:发送/回复消息、创建和管理群聊、查看聊天记录与话题、搜索消息、下载媒体文件 + - 📄 云文档:创建、读取、更新文档、搜索文档、读写素材与画板 + - 📁 云空间:上传和下载文件、搜索文档与知识库、管理评论 + - 📊 多维表格:创建和管理多维表格、字段、记录、视图、仪表盘,数据聚合分析 + - 📈 电子表格:创建、读取、写入、追加、查找和导出表格数据 + - ✅ 任务:创建、查询、更新和完成任务;管理任务清单、子任务、评论与提醒 + - 📚 知识库:创建和管理知识空间、节点和文档 + - 👤 通讯录:按姓名/邮箱/手机号搜索用户、获取用户信息 + - 📧 邮箱:浏览、搜索、阅读邮件,发送、回复、转发邮件,管理草稿,监听新邮件 + - 🎥 视频会议:搜索会议记录、查询会议纪要与录制 +Tags: +- lark +- 飞书 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/LarkCLI/1.0.44/ByteDance.LarkCLI.yaml b/manifests/b/ByteDance/LarkCLI/1.0.44/ByteDance.LarkCLI.yaml new file mode 100644 index 000000000000..88f02e06afb9 --- /dev/null +++ b/manifests/b/ByteDance/LarkCLI/1.0.44/ByteDance.LarkCLI.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: ByteDance.LarkCLI +PackageVersion: 1.0.44 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From e6ed281762e9dcffd92c2291fab512b005efb424 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 23:22:16 +0800 Subject: [PATCH 61/82] New version: Perplexity.Comet version 148.0.7778.1018 (#381182) --- .../Perplexity.Comet.installer.yaml | 4 ++-- .../Perplexity.Comet.locale.en-US.yaml | 2 +- .../Perplexity.Comet.locale.zh-CN.yaml | 2 +- .../{148.0.7778.559 => 148.0.7778.1018}/Perplexity.Comet.yaml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) rename manifests/p/Perplexity/Comet/{148.0.7778.559 => 148.0.7778.1018}/Perplexity.Comet.installer.yaml (86%) rename manifests/p/Perplexity/Comet/{148.0.7778.559 => 148.0.7778.1018}/Perplexity.Comet.locale.en-US.yaml (96%) rename manifests/p/Perplexity/Comet/{148.0.7778.559 => 148.0.7778.1018}/Perplexity.Comet.locale.zh-CN.yaml (95%) rename manifests/p/Perplexity/Comet/{148.0.7778.559 => 148.0.7778.1018}/Perplexity.Comet.yaml (88%) diff --git a/manifests/p/Perplexity/Comet/148.0.7778.559/Perplexity.Comet.installer.yaml b/manifests/p/Perplexity/Comet/148.0.7778.1018/Perplexity.Comet.installer.yaml similarity index 86% rename from manifests/p/Perplexity/Comet/148.0.7778.559/Perplexity.Comet.installer.yaml rename to manifests/p/Perplexity/Comet/148.0.7778.1018/Perplexity.Comet.installer.yaml index eb9d5ecce583..4544564270d5 100644 --- a/manifests/p/Perplexity/Comet/148.0.7778.559/Perplexity.Comet.installer.yaml +++ b/manifests/p/Perplexity/Comet/148.0.7778.1018/Perplexity.Comet.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Perplexity.Comet -PackageVersion: 148.0.7778.559 +PackageVersion: 148.0.7778.1018 InstallerType: exe Scope: machine InstallModes: @@ -33,6 +33,6 @@ ProductCode: Perplexity Comet Installers: - Architecture: x64 InstallerUrl: https://www.perplexity.ai/rest/browser/download?platform=win_x64&channel=stable - InstallerSha256: A2CA53738BB18C64E1B31320D6953FBF1374D95A3A64257E85DF272207A7D68D + InstallerSha256: 3D85AD9E2BE15A1258D88E0B280A27131A2F2CA7B01E2F24E40BDA5BC600D537 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/p/Perplexity/Comet/148.0.7778.559/Perplexity.Comet.locale.en-US.yaml b/manifests/p/Perplexity/Comet/148.0.7778.1018/Perplexity.Comet.locale.en-US.yaml similarity index 96% rename from manifests/p/Perplexity/Comet/148.0.7778.559/Perplexity.Comet.locale.en-US.yaml rename to manifests/p/Perplexity/Comet/148.0.7778.1018/Perplexity.Comet.locale.en-US.yaml index 8bef27031e32..e5dfbc38984c 100644 --- a/manifests/p/Perplexity/Comet/148.0.7778.559/Perplexity.Comet.locale.en-US.yaml +++ b/manifests/p/Perplexity/Comet/148.0.7778.1018/Perplexity.Comet.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Perplexity.Comet -PackageVersion: 148.0.7778.559 +PackageVersion: 148.0.7778.1018 PackageLocale: en-US Publisher: The Comet Authors Author: Perplexity AI, Inc. diff --git a/manifests/p/Perplexity/Comet/148.0.7778.559/Perplexity.Comet.locale.zh-CN.yaml b/manifests/p/Perplexity/Comet/148.0.7778.1018/Perplexity.Comet.locale.zh-CN.yaml similarity index 95% rename from manifests/p/Perplexity/Comet/148.0.7778.559/Perplexity.Comet.locale.zh-CN.yaml rename to manifests/p/Perplexity/Comet/148.0.7778.1018/Perplexity.Comet.locale.zh-CN.yaml index feeca0768198..a0bd1cc93b3a 100644 --- a/manifests/p/Perplexity/Comet/148.0.7778.559/Perplexity.Comet.locale.zh-CN.yaml +++ b/manifests/p/Perplexity/Comet/148.0.7778.1018/Perplexity.Comet.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Perplexity.Comet -PackageVersion: 148.0.7778.559 +PackageVersion: 148.0.7778.1018 PackageLocale: zh-CN License: 专有软件 ShortDescription: 个人 AI 助手 diff --git a/manifests/p/Perplexity/Comet/148.0.7778.559/Perplexity.Comet.yaml b/manifests/p/Perplexity/Comet/148.0.7778.1018/Perplexity.Comet.yaml similarity index 88% rename from manifests/p/Perplexity/Comet/148.0.7778.559/Perplexity.Comet.yaml rename to manifests/p/Perplexity/Comet/148.0.7778.1018/Perplexity.Comet.yaml index 6a02934a588a..7c528ab1c524 100644 --- a/manifests/p/Perplexity/Comet/148.0.7778.559/Perplexity.Comet.yaml +++ b/manifests/p/Perplexity/Comet/148.0.7778.1018/Perplexity.Comet.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Perplexity.Comet -PackageVersion: 148.0.7778.559 +PackageVersion: 148.0.7778.1018 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 From 5010ca3c78951c861ee8c17d0dd8ca8d234d4109 Mon Sep 17 00:00:00 2001 From: Buct0r Date: Fri, 29 May 2026 17:22:22 +0200 Subject: [PATCH 62/82] Buct0r.PassPort version 0.3.0 (#381195) --- .../0.3.0/Buct0r.PassPort.installer.yaml | 14 ++++++++ .../0.3.0/Buct0r.PassPort.locale.en-US.yaml | 34 +++++++++++++++++++ .../PassPort/0.3.0/Buct0r.PassPort.yaml | 8 +++++ 3 files changed, 56 insertions(+) create mode 100644 manifests/b/Buct0r/PassPort/0.3.0/Buct0r.PassPort.installer.yaml create mode 100644 manifests/b/Buct0r/PassPort/0.3.0/Buct0r.PassPort.locale.en-US.yaml create mode 100644 manifests/b/Buct0r/PassPort/0.3.0/Buct0r.PassPort.yaml diff --git a/manifests/b/Buct0r/PassPort/0.3.0/Buct0r.PassPort.installer.yaml b/manifests/b/Buct0r/PassPort/0.3.0/Buct0r.PassPort.installer.yaml new file mode 100644 index 000000000000..19748101fc5d --- /dev/null +++ b/manifests/b/Buct0r/PassPort/0.3.0/Buct0r.PassPort.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Buct0r.PassPort +PackageVersion: 0.3.0 +Installers: +- InstallerLocale: en-US + Architecture: x64 + InstallerType: inno + InstallerUrl: https://github.com/Buct0r/PassPort/releases/download/v0.3.0/PassPort-GUI-CLI-setup.exe + InstallerSha256: 1D406871CBF6CA01025CE39C0908206FF1382A0E73F6696E183A6CDB50403C27 + UpgradeBehavior: install +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/b/Buct0r/PassPort/0.3.0/Buct0r.PassPort.locale.en-US.yaml b/manifests/b/Buct0r/PassPort/0.3.0/Buct0r.PassPort.locale.en-US.yaml new file mode 100644 index 000000000000..5d3b8ad01b38 --- /dev/null +++ b/manifests/b/Buct0r/PassPort/0.3.0/Buct0r.PassPort.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Buct0r.PassPort +PackageVersion: 0.3.0 +PackageLocale: en-US +Publisher: Buct0r +PublisherUrl: https://github.com/Buct0r +PublisherSupportUrl: https://github.com/Buct0r/PassPort/issues +Author: Buct0r +PackageName: PassPort +PackageUrl: https://github.com/Buct0r/PassPort +License: MIT +LicenseUrl: https://github.com/Buct0r/PassPort/blob/main/LICENSE.md +Copyright: Copyright (c) 2026 Buct0r +CopyrightUrl: https://github.com/Buct0r/PassPort/blob/main/LICENSE.md +ShortDescription: A secure, cross-platform password manager built with Go and Fyne +Description: | + PassPort is a secure password manager featuring: + - AES encryption with PBKDF2 key derivation for maximum security + - Graphical User Interface (GUI) built with Fyne + - Command-Line Interface (CLI) for terminal users + - Master password protection for all stored credentials + - Cross-platform support (Windows, macOS, Linux) + - Local storage with no cloud synchronization +Tags: +- password-manager +- encryption +- security +- golang +- password-vault +ReleaseNotesUrl: https://github.com/Buct0r/PassPort/releases/tag/v0.3.0 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/b/Buct0r/PassPort/0.3.0/Buct0r.PassPort.yaml b/manifests/b/Buct0r/PassPort/0.3.0/Buct0r.PassPort.yaml new file mode 100644 index 000000000000..e80ee2445d81 --- /dev/null +++ b/manifests/b/Buct0r/PassPort/0.3.0/Buct0r.PassPort.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: Buct0r.PassPort +PackageVersion: 0.3.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From d8660ff12b49171a0119fe427e139f4b940e6f39 Mon Sep 17 00:00:00 2001 From: "Pecorino (zondax)" <83246875+pecorino-bot@users.noreply.github.com> Date: Fri, 29 May 2026 12:22:52 -0300 Subject: [PATCH 63/82] New version: kunobi-ninja.kunobi.Unstable version 1.2.0-rc.1 (#381197) --- ...unobi-ninja.kunobi.Unstable.installer.yaml | 23 +++++++++++++++ ...bi-ninja.kunobi.Unstable.locale.en-US.yaml | 29 +++++++++++++++++++ .../kunobi-ninja.kunobi.Unstable.yaml | 8 +++++ 3 files changed, 60 insertions(+) create mode 100644 manifests/k/kunobi-ninja/kunobi/Unstable/1.2.0-rc.1/kunobi-ninja.kunobi.Unstable.installer.yaml create mode 100644 manifests/k/kunobi-ninja/kunobi/Unstable/1.2.0-rc.1/kunobi-ninja.kunobi.Unstable.locale.en-US.yaml create mode 100644 manifests/k/kunobi-ninja/kunobi/Unstable/1.2.0-rc.1/kunobi-ninja.kunobi.Unstable.yaml diff --git a/manifests/k/kunobi-ninja/kunobi/Unstable/1.2.0-rc.1/kunobi-ninja.kunobi.Unstable.installer.yaml b/manifests/k/kunobi-ninja/kunobi/Unstable/1.2.0-rc.1/kunobi-ninja.kunobi.Unstable.installer.yaml new file mode 100644 index 000000000000..36282619f630 --- /dev/null +++ b/manifests/k/kunobi-ninja/kunobi/Unstable/1.2.0-rc.1/kunobi-ninja.kunobi.Unstable.installer.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: kunobi-ninja.kunobi.Unstable +PackageVersion: 1.2.0-rc.1 +InstallerType: exe +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /S + SilentWithProgress: /P +UpgradeBehavior: install +Protocols: +- kunobi +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x64 + InstallerUrl: https://r2.kunobi.ninja/v1.2.0-rc.1/Kunobi_1.2.0-rc.1_windows_x86_64.exe + InstallerSha256: 27F1B3D934093735C21EC3DDAAA7715BF67F2A95313AC1EF0068BF2C4CADAE6D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/k/kunobi-ninja/kunobi/Unstable/1.2.0-rc.1/kunobi-ninja.kunobi.Unstable.locale.en-US.yaml b/manifests/k/kunobi-ninja/kunobi/Unstable/1.2.0-rc.1/kunobi-ninja.kunobi.Unstable.locale.en-US.yaml new file mode 100644 index 000000000000..6a043fe464b1 --- /dev/null +++ b/manifests/k/kunobi-ninja/kunobi/Unstable/1.2.0-rc.1/kunobi-ninja.kunobi.Unstable.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: kunobi-ninja.kunobi.Unstable +PackageVersion: 1.2.0-rc.1 +PackageLocale: en-US +Publisher: Kunobi Ninja +PublisherUrl: https://kunobi.ninja/ +PublisherSupportUrl: https://kunobi.ninja/contact +Author: Zondax AG +PackageName: Kunobi (Unstable) +PackageUrl: https://kunobi.ninja/download +License: Proprietary +LicenseUrl: https://kunobi.ninja/terms-of-use +Copyright: Copyright (c) Zondax AG +CopyrightUrl: https://kunobi.ninja/terms-of-use +ShortDescription: Kubernetes and Gitops dashboard and management tool — unstable channel +Description: Operations control for GitOps and Kubernetes at scale. Kunobi helps platform teams understand what is deployed, what changed, and why. Across clusters and GitOps sources. This is the unstable channel — pre-releases (RC, beta, alpha) for testers and early adopters. For production use, install kunobi-ninja.kunobi instead. +Moniker: kunobi-unstable +Tags: +- devops +- gitops +- k8s +- kubernetes +- pre-release +- release-candidate +ReleaseNotesUrl: https://kunobi.ninja/changelog/v1.2.0-rc.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/k/kunobi-ninja/kunobi/Unstable/1.2.0-rc.1/kunobi-ninja.kunobi.Unstable.yaml b/manifests/k/kunobi-ninja/kunobi/Unstable/1.2.0-rc.1/kunobi-ninja.kunobi.Unstable.yaml new file mode 100644 index 000000000000..fdc1227773c3 --- /dev/null +++ b/manifests/k/kunobi-ninja/kunobi/Unstable/1.2.0-rc.1/kunobi-ninja.kunobi.Unstable.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: kunobi-ninja.kunobi.Unstable +PackageVersion: 1.2.0-rc.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 8c40b3b0910b1615bfc10e902feab72bec35adf5 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 23:22:57 +0800 Subject: [PATCH 64/82] New version: dreamlonglll.Mini-Term version 0.4.21 (#381198) --- .../dreamlonglll.Mini-Term.installer.yaml | 26 ++++++ .../dreamlonglll.Mini-Term.locale.en-US.yaml | 60 +++++++++++++ .../dreamlonglll.Mini-Term.locale.zh-CN.yaml | 87 +++++++++++++++++++ .../0.4.21/dreamlonglll.Mini-Term.yaml | 8 ++ 4 files changed, 181 insertions(+) create mode 100644 manifests/d/dreamlonglll/Mini-Term/0.4.21/dreamlonglll.Mini-Term.installer.yaml create mode 100644 manifests/d/dreamlonglll/Mini-Term/0.4.21/dreamlonglll.Mini-Term.locale.en-US.yaml create mode 100644 manifests/d/dreamlonglll/Mini-Term/0.4.21/dreamlonglll.Mini-Term.locale.zh-CN.yaml create mode 100644 manifests/d/dreamlonglll/Mini-Term/0.4.21/dreamlonglll.Mini-Term.yaml diff --git a/manifests/d/dreamlonglll/Mini-Term/0.4.21/dreamlonglll.Mini-Term.installer.yaml b/manifests/d/dreamlonglll/Mini-Term/0.4.21/dreamlonglll.Mini-Term.installer.yaml new file mode 100644 index 000000000000..4c30769df129 --- /dev/null +++ b/manifests/d/dreamlonglll/Mini-Term/0.4.21/dreamlonglll.Mini-Term.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: dreamlonglll.Mini-Term +PackageVersion: 0.4.21 +UpgradeBehavior: install +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/dreamlonglll/mini-term/releases/download/v0.4.21/Mini-Term_0.4.21_x64-setup.exe + InstallerSha256: 3020CD467CF780DFEFA26933FB9E3848F545CBC8A118270AEC43BC617E29F500 + ProductCode: Mini-Term +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/dreamlonglll/mini-term/releases/download/v0.4.21/Mini-Term_0.4.21_x64_en-US.msi + InstallerSha256: 9D48B992519B2068C01619A90369A5B24F42F5EF0C3BC470C093EFBD52ABC94A + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{4A22C562-740F-4A8E-8324-4F90D39ACE33}' + AppsAndFeaturesEntries: + - UpgradeCode: '{508EBA6B-F86F-54E3-A17E-094DDF898583}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/dreamlonglll/Mini-Term/0.4.21/dreamlonglll.Mini-Term.locale.en-US.yaml b/manifests/d/dreamlonglll/Mini-Term/0.4.21/dreamlonglll.Mini-Term.locale.en-US.yaml new file mode 100644 index 000000000000..29d374c05694 --- /dev/null +++ b/manifests/d/dreamlonglll/Mini-Term/0.4.21/dreamlonglll.Mini-Term.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: dreamlonglll.Mini-Term +PackageVersion: 0.4.21 +PackageLocale: en-US +License: Freeware +ShortDescription: Desktop Terminal Manager Built for the AI Era +Description: |- + An AI terminal management tool supporting multi-project, multi-terminal layout management + + Features + Terminal Core + - Multi-tab management — Independent tabs per project, drag-to-sort, status icons at a glance + - Recursive splitting — Horizontal/vertical nested splits, Allotment drag-to-adjust ratios + - High-performance rendering — xterm.js v6 + WebGL acceleration, automatic Canvas fallback + - 100K-line scrollback — Intercepts CSI 3J (ED3) commands, preserves scrollback history when Claude/Codex TUIs clear screen + - Terminal caching — Switching tabs/splits without rebuilding xterm instances, existing content preserved + - Copy & paste — Ctrl+Shift+C / Ctrl+Shift+V shortcuts + right-click menu, "Copy" auto-grayed when no selection; Windows large multi-line paste auto-chunked to prevent ConPTY line loss + - Long text paste — Clipboard text ≥10 lines or ≥2000 chars auto-saved as temp .txt and pastes quoted file path, avoiding AI tool performance and paste bracket issues with ultra-long content + - Image paste — Auto-detects screenshots in clipboard, saves as temp PNG via Win32 API and pastes quoted path, compatible with non-standard formats like PinPix + - File drag-drop — Files dragged to terminal auto-insert quoted absolute paths, compatible with spaces-in-path + - Multi-Shell config — Windows (cmd / powershell / pwsh), macOS (zsh / bash), Linux (bash / sh), freely add/remove + AI Process Awareness + - Real-time status detection — 500ms polling child process names, auto-identifies Claude/Codex, displays idle/working/error states + - Status aggregation — Panel → Tab → Project layered aggregation, priority: error > ai-working > ai-idle > idle + - Completion alert trio — Triggers immediately when AI task goes working → idle: + - Bottom-right Toast desktop notification (inactive projects only, deduplicated per project) + - Project list DONE badge, click to clear + - Taskbar flash (Windows) / Dock bounce (macOS), only when window unfocused + - Three toggles independently configurable + - Session entry/exit detection — Command echo identifies AI entry; double Ctrl+C / Ctrl+D or exit/quit/:quit/logout identifies exit + - Session history — Reads local Claude/Codex session history, right-click copy recovery command for quick resumption + - AI task markers — Auto-logs xterm on each Enter press in AI session, tab top-right ⚑ button drops down history submission list, click or Ctrl+Shift+↑/↓ to jump between markers, target line briefly highlighted + Project Management + - Project list — Left sidebar manages multiple project directories, one-click workspace switch, auto-restores last active project on restart + - Drag-to-add projects — Drag folders from Explorer to project list for quick add, auto-identifies files/folders/duplicates with visual feedback + - Nested groups — Up to 3-level project grouping, drag-to-sort, collapse/expand + - File tree — Integrated directory browser, nested .gitignore grayed out (per-subdirectory ignore rules and !pattern whitelists respected, consistent with git behavior), notify file watcher real-time refresh + - File operations — New file/folder, rename, view content in file tree (binary and oversized file friendly prompts) + - VS Code quick open — File tree top-right button opens current project with configured VS Code executable, path customizable in "Settings → System Settings → External Editor" + Git Integration + - File status — Git status colors in file tree (modified/added/deleted/conflict) + - Change Diff — Detailed Diff for working directory changes, Hunk line-level parsing, side-by-side/inline dual view + - Commit history — Browse repository commit log, cursor pagination (default 30 items) + - Commit Diff — View file changes for any commit, per-file switching + - Branch info — Local/remote branch list + - Source control panel — VS Code-style Changes panel, Staged/Changes/Untrackedg grouping, single-file and bulk stage/unstage/discard, Ctrl+Enter quick commit, list/tree view toggle + - Pull/Push — In-line repository buttons for one-click remote sync, refresh button reloads commit history and branch info + - Multi-repo discovery — Auto-scans all Git repositories under project directory (recursive 5 levels, skips node_modules, etc.) + Appearance & Configuration + - Activity Bar sidebar — Leftmost permanent 40px icon bar, Projects/Sessions/Files/Git panel toggles, independent show/hide control, active state blue vertical bar indicator, state persistence + - Three theme modes — Auto (follow system)/Light/Dark, dark based on Warm Carbon warm charcoal tones, custom CSS variable system + - Independent font adjustment — UI and terminal font sizes separately adjustable (10-20px), terminal optional UI theme following + - Layout persistence — Split ratios, tabs, window size/position auto-saved and restored on restart (tauri-plugin-window-state) + - Close confirmation — Pre-close confirmation dialog, flushes all project layouts to prevent accidental operations + - Version check — Fetches GitHub Release on startup, title bar shows new version notification + - Settings center — Unified SettingsModal manages themes, fonts, Shell, AI notifications and all other toggles +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/dreamlonglll/Mini-Term/0.4.21/dreamlonglll.Mini-Term.locale.zh-CN.yaml b/manifests/d/dreamlonglll/Mini-Term/0.4.21/dreamlonglll.Mini-Term.locale.zh-CN.yaml new file mode 100644 index 000000000000..72ea28d58d6b --- /dev/null +++ b/manifests/d/dreamlonglll/Mini-Term/0.4.21/dreamlonglll.Mini-Term.locale.zh-CN.yaml @@ -0,0 +1,87 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: dreamlonglll.Mini-Term +PackageVersion: 0.4.21 +PackageLocale: zh-CN +Publisher: tauri-app +PublisherUrl: https://github.com/dreamlonglll +PublisherSupportUrl: https://github.com/dreamlonglll/mini-term/issues +PackageName: Mini-Term +PackageUrl: https://github.com/dreamlonglll/mini-term +License: 免费软件 +ShortDescription: 为 AI 时代打造的桌面终端管理器 +Description: |- + 一个 AI 终端管理工具,支持多项目、多终端布局管理 + + 功能特性 + 终端核心 + - 多标签管理 — 每个项目独立标签页,拖拽排序,状态图标一目了然 + - 递归分屏 — 横向 / 纵向任意嵌套分屏,Allotment 拖拽调整比例 + - 高性能渲染 — xterm.js v6 + WebGL 加速,自动降级为 Canvas + - 10 万行滚动缓冲 — 拦截 CSI 3J(ED3)指令,Claude / Codex 等 TUI 清屏时保留上滚历史 + - 终端缓存 — 切换标签 / 分屏不重建 xterm 实例,已有内容不丢失 + - 复制粘贴 — Ctrl+Shift+C / Ctrl+Shift+V 快捷键 + 右键菜单,未选中时"复制"自动置灰;Windows 大段多行粘贴自动分块写入,防止 ConPTY 丢行 + - 长文本粘贴 — 剪贴板文本 ≥10 行或 ≥2000 字符时自动转存为临时 .txt 并粘贴带引号的文件路径,避免 AI 工具直接处理超长内容引发性能与 paste bracket 问题 + - 图片粘贴 — 剪贴板含截图时自动检测,通过 Win32 API 保存为临时 PNG 并粘贴带引号的路径,兼容 PinPix 等非标准格式 + - 文件拖拽 — 文件拖到终端自动插入带引号的绝对路径,兼容含空格的路径 + - 多 Shell 配置 — Windows(cmd / powershell / pwsh)、macOS(zsh / bash)、Linux(bash / sh)等,可自由增删 + AI 进程感知 + - 实时状态检测 — 500ms 轮询子进程名,自动识别 Claude / Codex,显示 idle / working / error 状态 + - 状态聚合 — 面板 → 标签页 → 项目逐层聚合,优先级 error > ai-working > ai-idle > idle + - 完成提醒三件套 — AI 任务从 working → idle 时立刻触发: + - 右下角 Toast 桌面通知(仅非活跃项目弹出,同项目去重) + - 项目列表 DONE 徽章,点击清除 + - 任务栏闪烁(Windows)/ Dock 跳动(macOS),窗口失焦时才触发 + - 三个开关独立可配 + - 会话进出检测 — 命令 echo 识别进入 AI;双击 Ctrl+C / Ctrl+D 或 exit / quit / :quit / /logout 识别退出 + - 会话历史 — 读取本地 Claude / Codex 历史会话记录,右键复制恢复命令快速续接 + - AI 任务标记 — AI 会话内每次用户按 Enter 自动在 xterm 打点,标签右上角 ⚑ 按钮下拉展示历史提交列表,点击或 Ctrl+Shift+↑/↓ 在标记间跳转,目标行短暂高亮提示 + 项目管理 + - 项目列表 — 左侧边栏管理多个项目目录,一键切换工作区,重启自动恢复上次激活项目 + - 拖拽添加项目 — 从资源管理器拖拽文件夹到项目列表即可快速添加,自动识别文件 / 文件夹 / 重复项目并给出视觉反馈 + - 嵌套分组 — 最多 3 级项目分组,拖拽排序,折叠 / 展开 + - 文件树 — 集成目录浏览器,嵌套 .gitignore 置灰(每层子目录的忽略规则与 !pattern 白名单都会生效,与 git 行为一致),notify 文件监听实时刷新 + - 文件操作 — 文件树内新建文件 / 文件夹、重命名、查看内容(二进制与超大文件友好提示) + - VS Code 快捷打开 — 文件树右上角按钮一键用配置的 VS Code 可执行文件打开当前项目,路径可在「设置 → 系统设置 → 外部编辑器」自定义 + Git 集成 + - 文件状态 — 文件树显示 Git 状态颜色(修改 / 新增 / 删除 / 冲突) + - 变更 Diff — 工作区文件变更的详细 Diff,Hunk 行级解析,并排 / 内联双视图 + - 提交历史 — 浏览仓库提交记录,游标分页加载(默认 30 条) + - 提交 Diff — 查看任意提交的文件变更,逐文件切换 + - 分支信息 — 本地 / 远程分支列表 + - 源码控制面板 — VS Code 风格 Changes 面板,Staged / Changes / Untracked 分组展示,支持单文件和全量 stage / unstage / discard,Ctrl+Enter 快速提交,列表与树形视图切换 + - Pull / Push — 仓库行内按钮一键同步远端,支持刷新按钮重新加载提交记录与分支信息 + - 多仓库发现 — 自动扫描项目目录下所有 Git 仓库(递归 5 层,跳过 node_modules 等) + 外观与配置 + - Activity Bar 侧边栏 — 最左侧常驻 40px 图标栏,含 Projects / Sessions / Files / Git 四个面板开关,独立控制显隐,激活态蓝色竖条指示,状态持久化 + - 三种主题模式 — Auto(跟随系统)/ Light / Dark,深色基于 Warm Carbon 暖炭色调,自定义 CSS 变量体系 + - 字体独立调节 — UI 与终端字号分别可调(10-20px),终端可选是否跟随 UI 主题 + - 布局持久化 — 分屏比例、标签页、窗口大小 / 位置自动保存,重启恢复(tauri-plugin-window-state) + - 关闭确认 — 关闭窗口前二次确认,并 flush 所有项目布局,避免误操作 + - 版本检查 — 启动时拉取 GitHub Release,标题栏显示新版本提示 + - 设置中心 — 统一的 SettingsModal 管理主题、字体、Shell、AI 通知等所有开关 +ReleaseNotes: |- + 更新内容 + - release: 升级版本号至 v0.4.21,首次将 cc-connect 集成并入主线 + - feat: 「连接」弹窗内一键导入项目到 cc-connect,占位平台修复冷启动 + - fix(cc-connect): 修复 Windows 启动失败/孤儿进程/卡顿,并移除会产出无效配置的项目导入 + - chore(task): archive research-clawd-on-desk + - feat: 「连接」弹窗内置项目导入,支持勾选批量一键导入 - 弹窗新增“导入项目到 cc-connect”区块,可单个导入或勾选后一键批量导入,已关联项显示解除、失效项显示清理 - 新增后端 cc_connect_import_projects 命令:批量一次写盘 + 仅重启一次 cc-connect,避免逐个导入多次断开 IM 会话 - 批量导入在“现有项目 + 批次内部”统一去重(冲突加 hash 后缀),并一次性写入全部 projectLinks - 探活改为常驻 + 放宽右键导入门控,零配置(未保存路径)下也能识别运行态并导入 - 确认框 .prompt-message 支持换行与超长滚动,批量清单超 15 条折叠显示 + - feat: cc-connect 入口从设置页迁移为顶栏「连接」弹窗并支持零配置 - 顶栏改为「设置 | SSH | 连接」三按钮,移除原 cc-connect 状态点与独立 Dashboard 入口 - 新增 CcConnectModal 整合进程管理(启停/重启/测试/编辑配置)与 Dashboard 嵌入入口,从设置面板移出 - 设置面板删除 cc-connect 分页及对应菜单项、SettingsPage 类型值 - 未填写可执行文件/配置时回退默认值(PATH 中的 cc-connect + ~/.cc-connect/config.toml),启动/停止/重启/测试/编辑配置及开机自启均可零配置使用 - 新增后端命令 cc_connect_config_path 解析默认 config.toml 路径,供「编辑配置文件」在未填写时打开 + - chore(task): archive 05-28-fluent2-skin + - chore(task): archive 05-28-fix-xterm-atlas-mojibake-v2 + - chore: record journal + - docs: 同步 README 与 Cargo.toml 介绍 cc-connect 集成 - README 顶部 slogan 加 · IM 平台远程驱动 (cc-connect) 亮点,功能特性新增 ### cc-connect 集成 分组,涵盖进程管理 (启停 / 测试连接 / autoStart / 顶部状态点三态) / 项目导入与关联 (toml_edit 写盘 + restart + hash 冲突后缀 + race-safe icon) / Dashboard 嵌入 (iframe 自动登录 + createPortal 绕 Fluent 2 + keep-alive) / 半同步态处理 (tomlWritten 与 deletedOk 分支) / 优雅降级 五大子项 - src-tauri/Cargo.toml description 从占位符 "A Tauri App" 改成 mini-term: AI-aware desktop terminal manager built on Tauri v2 — multi-project, multi-tab, split-pane, IM bridged via cc-connect 真实描述 + - chore: record journal + - chore(task): archive 05-29-fix-cc-connect-panel-critical + - fix: cc-connect-panel review 三 Critical + Major #7 半同步态修复 - Critical #1:CcConnectDashboard 提到 App 顶层单例,store 加 dashboard slice (ccDashboardOpen/ccDashboardDeepLink + openCcDashboard/closeCcDashboard action),ProjectList 删 local state 改用 store,grep 验证全仓仅 App.tsx 一处挂载,消除双挂载 keep-alive 内存翻倍 + z-index 重叠 + Esc 行为不确定 - Critical #2:CcConnectDashboard 加 lastSeenRunningRef/lastSeenOwnPidRef 边缘检测,running false→true 或 ownPid 变化时 setIframeUrl(null) 强制 rebuild;running true→false 保留 url 避免 cc-connect 临时掉线白屏闪烁;首次 mount 时 lastSeenRunning 初值取 status.running 不误触 - Critical #3:cc_connect_restart fallback 顺序调整,exe_path.ok_or_else 提到 take child 之前,exe_path=None 时不杀 child 不破坏 state,Err 信息提示用户填路径后手动启动避免半同步态 - Major #7:cc_connect_import_project / cc_connect_unlink_project 返回值改 ImportProjectResult/UnlinkProjectResult struct (tomlWritten/restartOk/restartError 与 deletedOk/restartOk/restartError),toml/DELETE 成功后 restart 失败编码到 result 不返 Err,前端按 tomlWritten/deletedOk 仍写/清 projectLinks + 警告 toast 消除"项目存在但未关联""项目已删但 icon 仍红"半同步态 - types.ts 加 ImportProjectResult/UnlinkProjectResult interface 严格 camelCase 对齐;spec cc-connect-integration.md Validation Matrix 同步契约从"返 Err"改"返 result.restartOk=false";cargo test 154 全过 / cargo check / tsc / vite build clean + - chore: record journal + - chore(task): archive 05-28-embed-cc-connect-panel + - docs: 沉淀 cc-connect 集成 4 项 spec (task 05-28-embed-cc-connect-panel 收尾) - backend/toml-edit-array-of-tables.md (新):TOML [[xxx]] 数组表标准模式 + ArrayOfTables 无 Index / 类型推断歧义 / 引号风格 assertion 脆 等坑的 Wrong vs Correct,5 个必跑单测点 - backend/cc-connect-integration.md (新):Management API :9820 接入面 / token 位置 / 创建项目必经 toml_edit + /api/v1/restart (/reload 不生效) / iframe URL + race-safe broken 标记 / probe 不抛错的轮询契约 - backend/tauri-command-nested-args.md (新):后端 command 含 struct 参数时前端 invoke 必须 wrap { req: } 而非散开,跨边界字段严格 camelCase 1:1 对齐 Rust serde 产物,常见错误信息映射 - frontend/fluent2-portal-modal.md (新):[data-panel] backdrop-filter 形成 containing block,fixed inset-0 全屏 modal/iframe 统一 createPortal 到 document.body,沿用 commit e7316e5 七 modal 修复范式 + iframe keep-alive display:none 不卸载避免重 login - backend/index.md / frontend/index.md 同步加索引 + - feat: cc-connect 项目同步与 dashboard 嵌入 (mini-term × cc-connect PR3) - ProjectList 右键加 "导入到 cc-connect" / "在 cc-connect 配置平台" / "解除关联" / "清理失效关联" 四项,导入流程 confirm 显式提示重启风险 + 冲突 8 字符 hash 后缀 + 立即 probe 刷新,DELETE 失败走二次 confirm 清本地 link 避免 broken 卡死 - 项目 item 右侧加绿色 ◆ / 红色 ⚠ 关联 icon,race-safe 仅 listLoaded 后才标 broken,cc-connect running 切换重置避免刚启动期间误报红;openCcDashboard 项目名走 encodeURIComponent 处理含 / ? # 等特殊字符的项目名 - 新增 CcConnectDashboard 全屏 iframe modal,createPortal 到 document.body 绕开 Fluent 2 [data-panel] backdrop-filter (沿用 commit e7316e5 七 modal 修复范式),keep-alive 关闭走 display:none 避免每次重 login;URL 走 /login?token=&redirect= - 顶部加独立 "Dashboard" 按钮 (cc 未跑灰显) + StatusDot 双击触发 onOpenDashboard,新增 useCcConnectProjects hook (10s 轮询 list_projects + missingLinks) + ccConnectActions 工具封装 import/unlink 流程 + - feat: cc-connect 集成 UI 入口层 (mini-term × cc-connect PR2) - SettingsModal 新增 cc-connect 栏,提供 exePath/configPath/autoStart/extraArgs 配置 + 启动/停止/重启/测试连接/打开 config.toml 五个按钮 + 顶部状态指示器 (running pid 端口 版本 / stopped / error diagnostic),沿用现有 SettingsPage 分段风格 + Fluent 2 CSS 变量 - App.tsx 标题栏右侧挂 CcConnectStatusDot 三态 (绿●/灰○/红⚠) + hover tooltip + 点击深链跳设置 cc-connect 栏;mount 时若 autoStart && !running 自动 spawn cc-connect 后二次 probe - 新增 useCcConnectProbe hook 走 5s setInterval 轮询 cc_connect_probe,visibilitychange 失焦时暂停,configPath 变更只 mount 探一次后续靠全局轮询保鲜,避免输入半成品路径触发状态闪烁 - types.ts 补 CcConnectStatus / CcProject / ImportProjectRequest 三个 interface 严格对齐 Rust camelCase 产物 (ownPid / workDir / agentType / hasPlatform),store.ts 加 ccConnectStatus slice - 未配置 ccConnect 时状态点不渲染,首次用户零视觉污染 + - feat: 接入 cc-connect 集成基建层 (mini-term × cc-connect PR1) - 新增 src-tauri/src/cc_connect.rs 提供 8 个 Tauri command (probe/read_token/start/stop/restart/list_projects/import_project/unlink_project),走 ureq 调本机 cc-connect Management API (默认 :9820,Bearer token 从 ~/.cc-connect/config.toml 读),import_project 用 toml_edit 写回 [[projects]] 保留注释 + POST /api/v1/restart 让新项目生效 - AppConfig 扩 ccConnect?: CcConnectConfig 字段 (exePath/configPath/autoStart/extraArgs/projectLinks 项目关联映射),Option 包裹 + skip_serializing_if 保持老 config.json 干净 - 引 ureq 2 依赖支持同步 HTTP 客户端 (不引 tokio runtime),沿用既有 toml_edit 0.22 处理 array-of-tables - 含 5 个单元测试覆盖 toml round-trip / 注释保留 / 创建数组 / 重名检测 / URL 编码,types.ts 同步扩前端 AppConfig.ccConnect 与 CcConnectConfig 接口 - .trellis/tasks/05-28-embed-cc-connect-panel/ 归档 PRD + 5 份 research (cc-connect HTTP API / web UI iframe 嵌入可行性 / config.toml schema / Windows 进程管理 / 项目创建路径必经 restart) +ReleaseNotesUrl: https://github.com/dreamlonglll/mini-term/releases/tag/v0.4.21 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/dreamlonglll/Mini-Term/0.4.21/dreamlonglll.Mini-Term.yaml b/manifests/d/dreamlonglll/Mini-Term/0.4.21/dreamlonglll.Mini-Term.yaml new file mode 100644 index 000000000000..11a70b155eba --- /dev/null +++ b/manifests/d/dreamlonglll/Mini-Term/0.4.21/dreamlonglll.Mini-Term.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: dreamlonglll.Mini-Term +PackageVersion: 0.4.21 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 From b2b40c6f6da93fc6afa76c6ff15eaf1901d903ae Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Fri, 29 May 2026 23:23:27 +0800 Subject: [PATCH 65/82] ReleaseNotes: Codeium.Windsurf version 2.3.15 (#381225) --- .../2.3.15/Codeium.Windsurf.locale.en-US.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/manifests/c/Codeium/Windsurf/2.3.15/Codeium.Windsurf.locale.en-US.yaml b/manifests/c/Codeium/Windsurf/2.3.15/Codeium.Windsurf.locale.en-US.yaml index dc76c399e359..66bd764a44b4 100644 --- a/manifests/c/Codeium/Windsurf/2.3.15/Codeium.Windsurf.locale.en-US.yaml +++ b/manifests/c/Codeium/Windsurf/2.3.15/Codeium.Windsurf.locale.en-US.yaml @@ -25,6 +25,20 @@ Tags: - editing - editor - programming +ReleaseNotes: |- + Bug fixes and improvements + + General + - Increased remote server startup timeout from 2.5s to 6s. + + Devin Local + This release updates the bundled Devin Local agent to 2026.5.26. See the changelog for the full list of changes. + - Devin Local is now aware of the files you have open in the editor as part of its context. + - When prompted for an MCP tool permission in Devin Local, two additional server-level options are now offered: approve all tools on the server for the current session, or permanently. + - Repaired hooks for Devin Local to allow blocking user prompts. + - Improved plan mode in Devin Local to work in the OS sandbox. + - "Always Allow" permission grants in Devin Local now persist across sessions. + - Image attachments in Devin Local now show the correct warning when the selected model does not support images. ReleaseNotesUrl: https://codeium.com/changelog PurchaseUrl: https://codeium.com/pricing Documentations: From 9d65bf5caddc46ea59d34720b1f68102e9dccfee Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Fri, 29 May 2026 23:23:54 +0800 Subject: [PATCH 66/82] ReleaseNotes: Tailscale.Tailscale version 1.98.4 (#381226) --- .../Tailscale/1.98.4/Tailscale.Tailscale.installer.yaml | 1 + .../Tailscale/1.98.4/Tailscale.Tailscale.locale.en-US.yaml | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/manifests/t/Tailscale/Tailscale/1.98.4/Tailscale.Tailscale.installer.yaml b/manifests/t/Tailscale/Tailscale/1.98.4/Tailscale.Tailscale.installer.yaml index 68a8ee9bdb6b..1240fcc1b98f 100644 --- a/manifests/t/Tailscale/Tailscale/1.98.4/Tailscale.Tailscale.installer.yaml +++ b/manifests/t/Tailscale/Tailscale/1.98.4/Tailscale.Tailscale.installer.yaml @@ -9,6 +9,7 @@ InstallerSwitches: UpgradeBehavior: install Protocols: - tailscale +ReleaseDate: 2026-05-28 Installers: - Architecture: x86 InstallerType: burn diff --git a/manifests/t/Tailscale/Tailscale/1.98.4/Tailscale.Tailscale.locale.en-US.yaml b/manifests/t/Tailscale/Tailscale/1.98.4/Tailscale.Tailscale.locale.en-US.yaml index 1b7c17975918..aede5af9d9ce 100644 --- a/manifests/t/Tailscale/Tailscale/1.98.4/Tailscale.Tailscale.locale.en-US.yaml +++ b/manifests/t/Tailscale/Tailscale/1.98.4/Tailscale.Tailscale.locale.en-US.yaml @@ -22,7 +22,10 @@ Tags: - network - vpn - wireguard -ReleaseNotesUrl: https://tailscale.com/changelog +ReleaseNotes: |- + All Platforms + - Fixed: An issue causing a deadlock when processing peer changes and disconnecting from the Tailscale control server is resolved. +ReleaseNotesUrl: https://tailscale.com/changelog/#2026-05-28-client PurchaseUrl: https://tailscale.com/pricing Documentations: - DocumentLabel: Docs From 12067db82edbc160dfddf0d01acfc26521578608 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Fri, 29 May 2026 23:23:58 +0800 Subject: [PATCH 67/82] ReleaseNotes: TheBrowserCompany.Arc version 1.108.0.248 (#381227) --- .../Arc/1.108.0.248/TheBrowserCompany.Arc.installer.yaml | 1 + .../Arc/1.108.0.248/TheBrowserCompany.Arc.locale.en-US.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/manifests/t/TheBrowserCompany/Arc/1.108.0.248/TheBrowserCompany.Arc.installer.yaml b/manifests/t/TheBrowserCompany/Arc/1.108.0.248/TheBrowserCompany.Arc.installer.yaml index 65a0444ce548..18767fd4db33 100644 --- a/manifests/t/TheBrowserCompany/Arc/1.108.0.248/TheBrowserCompany.Arc.installer.yaml +++ b/manifests/t/TheBrowserCompany/Arc/1.108.0.248/TheBrowserCompany.Arc.installer.yaml @@ -13,6 +13,7 @@ Dependencies: - PackageIdentifier: Microsoft.VCLibs.Desktop.14 - PackageIdentifier: Microsoft.WindowsAppRuntime.1.5 PackageFamilyName: TheBrowserCompany.Arc_ttt1ap7aakyb4 +ReleaseDate: 2026-05-28 Installers: - Architecture: x64 InstallerUrl: https://releases.arc.net/windows/prod/1.108.0.248/Arc.x64.msix diff --git a/manifests/t/TheBrowserCompany/Arc/1.108.0.248/TheBrowserCompany.Arc.locale.en-US.yaml b/manifests/t/TheBrowserCompany/Arc/1.108.0.248/TheBrowserCompany.Arc.locale.en-US.yaml index bf12e4ee11bf..6743e8b22b83 100644 --- a/manifests/t/TheBrowserCompany/Arc/1.108.0.248/TheBrowserCompany.Arc.locale.en-US.yaml +++ b/manifests/t/TheBrowserCompany/Arc/1.108.0.248/TheBrowserCompany.Arc.locale.en-US.yaml @@ -20,6 +20,7 @@ Tags: - internet - web - webpage +ReleaseNotes: Nice to have you here! This release advances Arc to Chromium 148.0.7778.217, with security and stability updates to keep your browsing protected. Catch you soon! ReleaseNotesUrl: https://arc.net/windows/release-notes Documentations: - DocumentLabel: FAQ From f8ee2ceb64909761ae9330ae0222f8f3d7c86ea6 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Fri, 29 May 2026 23:24:25 +0800 Subject: [PATCH 68/82] ReleaseNotes: LastPass.LastPass version 5.4.3.1481 (#381228) --- .../LastPass/5.4.3.1481/LastPass.LastPass.installer.yaml | 1 + .../LastPass/5.4.3.1481/LastPass.LastPass.locale.en-US.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/manifests/l/LastPass/LastPass/5.4.3.1481/LastPass.LastPass.installer.yaml b/manifests/l/LastPass/LastPass/5.4.3.1481/LastPass.LastPass.installer.yaml index fec90db38c3a..16a856f7770d 100644 --- a/manifests/l/LastPass/LastPass/5.4.3.1481/LastPass.LastPass.installer.yaml +++ b/manifests/l/LastPass/LastPass/5.4.3.1481/LastPass.LastPass.installer.yaml @@ -11,6 +11,7 @@ InstallerSwitches: InstallLocation: INSTALLDIR="" UpgradeBehavior: install ProductCode: '{A95184D4-3AB4-4C23-BF74-53F5B98538F7}' +ReleaseDate: 2026-05-28 AppsAndFeaturesEntries: - ProductCode: '{A95184D4-3AB4-4C23-BF74-53F5B98538F7}' UpgradeCode: '{5CD146E8-4D50-4247-AA0E-5DBFE0B2660C}' diff --git a/manifests/l/LastPass/LastPass/5.4.3.1481/LastPass.LastPass.locale.en-US.yaml b/manifests/l/LastPass/LastPass/5.4.3.1481/LastPass.LastPass.locale.en-US.yaml index a50f0dd151e0..499d7b1fc5ff 100644 --- a/manifests/l/LastPass/LastPass/5.4.3.1481/LastPass.LastPass.locale.en-US.yaml +++ b/manifests/l/LastPass/LastPass/5.4.3.1481/LastPass.LastPass.locale.en-US.yaml @@ -23,6 +23,7 @@ Tags: - protect - protection - security +ReleaseNotes: '- New LastPass for Desktop version included.' ReleaseNotesUrl: https://lastpass.com/upgrade.php PurchaseUrl: https://www.lastpass.com/pricing ManifestType: defaultLocale From 76b8843adf1ac6cace63f76d33937a52b4f35dbd Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Fri, 29 May 2026 23:24:29 +0800 Subject: [PATCH 69/82] ReleaseNotes: AuraMarker.Lattics version 3.4.12 (#381229) --- .../Lattics/3.4.12/AuraMarker.Lattics.locale.en-US.yaml | 4 ++++ .../Lattics/3.4.12/AuraMarker.Lattics.locale.zh-CN.yaml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/manifests/a/AuraMarker/Lattics/3.4.12/AuraMarker.Lattics.locale.en-US.yaml b/manifests/a/AuraMarker/Lattics/3.4.12/AuraMarker.Lattics.locale.en-US.yaml index 24b681df6f3c..ab5b929fd919 100644 --- a/manifests/a/AuraMarker/Lattics/3.4.12/AuraMarker.Lattics.locale.en-US.yaml +++ b/manifests/a/AuraMarker/Lattics/3.4.12/AuraMarker.Lattics.locale.en-US.yaml @@ -32,6 +32,10 @@ Tags: - outliner - pkm - reference +ReleaseNotes: |- + [New] Supports title folding, Heading 1 - Heading 6 + [Optimized] Converts selected content in PDFs to cards, eliminating interference from special characters. + [Optimized] Improved storage mechanism, resolving the issue of files being unable to be written to when locked by other applications, such as OneDrive. Documentations: - DocumentLabel: Tutorial DocumentUrl: https://helps.auramarker.com/en/lattics/backup_and_sync diff --git a/manifests/a/AuraMarker/Lattics/3.4.12/AuraMarker.Lattics.locale.zh-CN.yaml b/manifests/a/AuraMarker/Lattics/3.4.12/AuraMarker.Lattics.locale.zh-CN.yaml index 383066c97116..c202b0abb2bb 100644 --- a/manifests/a/AuraMarker/Lattics/3.4.12/AuraMarker.Lattics.locale.zh-CN.yaml +++ b/manifests/a/AuraMarker/Lattics/3.4.12/AuraMarker.Lattics.locale.zh-CN.yaml @@ -30,6 +30,10 @@ Tags: - 笔记 - 编辑器 - 脑图 +ReleaseNotes: |- + 【新增】支持标题折叠,Heading 1 - Heading 6 + 【优化】PDF 选中部分内容后转卡片,消除特殊字符的干扰 + 【优化】改进存储机制,解决文件被其他应用,比如 OneDrive 锁定后无法写入的问题 Documentations: - DocumentLabel: 使用指南 DocumentUrl: https://helps.auramarker.com/lattics/backup_and_sync From 0a7a6871babada22d314631624e41580dc8a2806 Mon Sep 17 00:00:00 2001 From: copilot-cli-winget-bot Date: Fri, 29 May 2026 11:32:56 -0400 Subject: [PATCH 70/82] GitHub.Copilot.Prerelease version v1.0.56-0 (#380946) --- .../GitHub.Copilot.Prerelease.installer.yaml | 23 +++++++++++++++ ...itHub.Copilot.Prerelease.locale.en-US.yaml | 29 +++++++++++++++++++ .../v1.0.56-0/GitHub.Copilot.Prerelease.yaml | 8 +++++ 3 files changed, 60 insertions(+) create mode 100644 manifests/g/GitHub/Copilot/Prerelease/v1.0.56-0/GitHub.Copilot.Prerelease.installer.yaml create mode 100644 manifests/g/GitHub/Copilot/Prerelease/v1.0.56-0/GitHub.Copilot.Prerelease.locale.en-US.yaml create mode 100644 manifests/g/GitHub/Copilot/Prerelease/v1.0.56-0/GitHub.Copilot.Prerelease.yaml diff --git a/manifests/g/GitHub/Copilot/Prerelease/v1.0.56-0/GitHub.Copilot.Prerelease.installer.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.56-0/GitHub.Copilot.Prerelease.installer.yaml new file mode 100644 index 000000000000..fd027f671703 --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.56-0/GitHub.Copilot.Prerelease.installer.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GitHub.Copilot.Prerelease +PackageVersion: v1.0.56-0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: copilot.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.PowerShell + MinimumVersion: 7.0.0 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/github/copilot-cli/releases/download/v1.0.56-0/copilot-win32-x64.zip + InstallerSha256: AD08C9CB7D2FBB61F893BECFD194D8B59FE32B05406DC203DCA20392CC332C8B +- Architecture: arm64 + InstallerUrl: https://github.com/github/copilot-cli/releases/download/v1.0.56-0/copilot-win32-arm64.zip + InstallerSha256: E668FE94AC3B7F0F6986C894BDCCD09BBAC213EB3393EE46B198B9436ACE8381 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-05-28 diff --git a/manifests/g/GitHub/Copilot/Prerelease/v1.0.56-0/GitHub.Copilot.Prerelease.locale.en-US.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.56-0/GitHub.Copilot.Prerelease.locale.en-US.yaml new file mode 100644 index 000000000000..e4ab71089130 --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.56-0/GitHub.Copilot.Prerelease.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GitHub.Copilot.Prerelease +PackageVersion: v1.0.56-0 +PackageLocale: en-US +Publisher: GitHub, Inc. +PublisherUrl: https://github.com/home/ +PublisherSupportUrl: https://support.github.com/ +PrivacyUrl: https://docs.github.com/site-policy/privacy-policies/github-privacy-statement +PackageName: Copilot CLI (Preview) +PackageUrl: https://github.com/github/copilot-cli +License: Proprietary +LicenseUrl: https://docs.github.com/en/site-policy/github-terms/github-pre-release-license-terms +Copyright: Copyright (c) GitHub 2025. All rights reserved. +CopyrightUrl: https://github.com/github/copilot-cli?tab=License-1-ov-file +ShortDescription: GitHub Copilot CLI brings the power of Copilot coding agent directly to your terminal. +Description: GitHub Copilot CLI brings AI-powered coding assistance directly to your command line, enabling you to build, debug, and understand code through natural language conversations. Powered by the same agentic harness as GitHub's Copilot coding agent, it provides intelligent assistance while staying deeply integrated with your GitHub workflow. +Moniker: copilot-prerelease +Tags: +- cli +- copilot +- github +ReleaseNotesUrl: https://github.com/github/copilot-cli/releases/tag/v1.0.56-0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/github/copilot-cli/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GitHub/Copilot/Prerelease/v1.0.56-0/GitHub.Copilot.Prerelease.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.56-0/GitHub.Copilot.Prerelease.yaml new file mode 100644 index 000000000000..55173a7bdccd --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.56-0/GitHub.Copilot.Prerelease.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: GitHub.Copilot.Prerelease +PackageVersion: v1.0.56-0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 81bf4ea1ea27027d493d8309ddc9ad75486765c9 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 23:33:26 +0800 Subject: [PATCH 71/82] New version: Sourcegraph.Amp version 0.0.1780059282-g6094cf (#381184) --- .../Sourcegraph.Amp.installer.yaml | 17 +++++++++ .../Sourcegraph.Amp.locale.en-US.yaml | 36 +++++++++++++++++++ .../Sourcegraph.Amp.locale.zh-CN.yaml | 25 +++++++++++++ .../Sourcegraph.Amp.yaml | 8 +++++ 4 files changed, 86 insertions(+) create mode 100644 manifests/s/Sourcegraph/Amp/0.0.1780059282-g6094cf/Sourcegraph.Amp.installer.yaml create mode 100644 manifests/s/Sourcegraph/Amp/0.0.1780059282-g6094cf/Sourcegraph.Amp.locale.en-US.yaml create mode 100644 manifests/s/Sourcegraph/Amp/0.0.1780059282-g6094cf/Sourcegraph.Amp.locale.zh-CN.yaml create mode 100644 manifests/s/Sourcegraph/Amp/0.0.1780059282-g6094cf/Sourcegraph.Amp.yaml diff --git a/manifests/s/Sourcegraph/Amp/0.0.1780059282-g6094cf/Sourcegraph.Amp.installer.yaml b/manifests/s/Sourcegraph/Amp/0.0.1780059282-g6094cf/Sourcegraph.Amp.installer.yaml new file mode 100644 index 000000000000..f10f1e270ac2 --- /dev/null +++ b/manifests/s/Sourcegraph/Amp/0.0.1780059282-g6094cf/Sourcegraph.Amp.installer.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Sourcegraph.Amp +PackageVersion: 0.0.1780059282-g6094cf +InstallerType: portable +Commands: +- amp +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +Installers: +- Architecture: x64 + InstallerUrl: https://static.ampcode.com/cli/0.0.1780059282-g6094cf/amp-windows-x64-baseline.exe + InstallerSha256: C7BAC0E4C81BFCC0A2E2B768E63772500573A65BB49F907F57358285E22BAC11 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1780059282-g6094cf/Sourcegraph.Amp.locale.en-US.yaml b/manifests/s/Sourcegraph/Amp/0.0.1780059282-g6094cf/Sourcegraph.Amp.locale.en-US.yaml new file mode 100644 index 000000000000..ccd5bb7769e7 --- /dev/null +++ b/manifests/s/Sourcegraph/Amp/0.0.1780059282-g6094cf/Sourcegraph.Amp.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Sourcegraph.Amp +PackageVersion: 0.0.1780059282-g6094cf +PackageLocale: en-US +Publisher: Sourcegraph, Inc. +PublisherUrl: https://ampcode.com/ +PrivacyUrl: https://ampcode.com/privacy-policy +Author: Sourcegraph, Inc. +PackageName: Amp CLI +PackageUrl: https://ampcode.com/ +License: Proprietary +LicenseUrl: https://ampcode.com/terms +CopyrightUrl: https://ampcode.com/terms +ShortDescription: The frontier coding agent for your terminal and editor. +Description: |- + Amp is the frontier coding agent for your terminal and editor. + - Multi-Model: Opus 4.7, GPT-5.4, fast models—Amp uses them all, for what each model is best at. + - Opinionated: You’re always using the good parts of Amp. If we don’t use and love a feature, we kill it. + - On the Frontier: Amp goes where the models take it. No backcompat, no legacy features. + - Threads: You can save and share your interactions with Amp. You wouldn’t code without version control, would you? + Amp has 3 modes: smart (unconstrained state-of-the-art model use), rush (faster, cheaper, suited for small, well-defined tasks), and deep (deep reasoning with extended thinking for complex problems). +Tags: +- agent +- agentic +- ai +- chatbot +- code +- coding +- large-language-model +- llm +- programming +PurchaseUrl: https://ampcode.com/manual#pricing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1780059282-g6094cf/Sourcegraph.Amp.locale.zh-CN.yaml b/manifests/s/Sourcegraph/Amp/0.0.1780059282-g6094cf/Sourcegraph.Amp.locale.zh-CN.yaml new file mode 100644 index 000000000000..0ad0c70f6a79 --- /dev/null +++ b/manifests/s/Sourcegraph/Amp/0.0.1780059282-g6094cf/Sourcegraph.Amp.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Sourcegraph.Amp +PackageVersion: 0.0.1780059282-g6094cf +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 适用于终端与编辑器的前沿编码智能体。 +Description: |- + Amp 是适用于终端与编辑器的前沿编码智能体。 + - 多模型支持:Opus 4.7、GPT-5.4、速型模型——Amp 会调用所有模型,各展所长。 + - 去芜存菁:你始终能用到 Amp 的核心优质功能。如果我们自己不用、也不喜欢某个功能,就会直接砍掉它。 + - 前沿迭代:Amp 跟随大模型的发展持续更新。不保留向后兼容,不遗留老旧功能。 + - 会话管理:你可以保存并分享你和 Amp 的交互记录。写代码总离不开版本控制,不是吗? + Amp 共有三种工作模式:智能模式(调用无限制的最先进模型)、快速模式(速度更快、成本更低,适合定义清晰的小型任务),以及深度模式(针对复杂问题提供带扩展思考的深度推理)。 +Tags: +- 人工智能 +- 代码 +- 大语言模型 +- 智能体 +- 编程 +- 聊天机器人 +- 自主智能 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1780059282-g6094cf/Sourcegraph.Amp.yaml b/manifests/s/Sourcegraph/Amp/0.0.1780059282-g6094cf/Sourcegraph.Amp.yaml new file mode 100644 index 000000000000..5d51a6602bf4 --- /dev/null +++ b/manifests/s/Sourcegraph/Amp/0.0.1780059282-g6094cf/Sourcegraph.Amp.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: Sourcegraph.Amp +PackageVersion: 0.0.1780059282-g6094cf +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From e8e0e67cdbd99814f85bb0db4a3695202de72196 Mon Sep 17 00:00:00 2001 From: docker-winget-bot Date: Fri, 29 May 2026 17:33:42 +0200 Subject: [PATCH 72/82] New version: Docker.sbx version 0.31.1 (#381185) --- .../sbx/0.31.1/Docker.sbx.installer.yaml | 21 ++++++++++++++++ .../sbx/0.31.1/Docker.sbx.locale.en-US.yaml | 25 +++++++++++++++++++ manifests/d/Docker/sbx/0.31.1/Docker.sbx.yaml | 8 ++++++ 3 files changed, 54 insertions(+) create mode 100644 manifests/d/Docker/sbx/0.31.1/Docker.sbx.installer.yaml create mode 100644 manifests/d/Docker/sbx/0.31.1/Docker.sbx.locale.en-US.yaml create mode 100644 manifests/d/Docker/sbx/0.31.1/Docker.sbx.yaml diff --git a/manifests/d/Docker/sbx/0.31.1/Docker.sbx.installer.yaml b/manifests/d/Docker/sbx/0.31.1/Docker.sbx.installer.yaml new file mode 100644 index 000000000000..977403b7f159 --- /dev/null +++ b/manifests/d/Docker/sbx/0.31.1/Docker.sbx.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: Docker.sbx +PackageVersion: 0.31.1 +InstallerType: wix +Scope: machine +UpgradeBehavior: install +ProductCode: '{63BC1B78-88FF-4390-ACA1-BD5799CE618E}' +AppsAndFeaturesEntries: +- ProductCode: '{63BC1B78-88FF-4390-ACA1-BD5799CE618E}' + UpgradeCode: '{DA546BF6-4342-4335-8A93-DA620CEBA3F4}' +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\DockerSandboxes' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/docker/sbx-releases/releases/download/v0.31.1/DockerSandboxes.msi + InstallerSha256: 6D64B6D6B5BEF43DB7A6DE2C0A9A25FB7F0C84087F3723F89F20D69E276F1C22 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-05-29 diff --git a/manifests/d/Docker/sbx/0.31.1/Docker.sbx.locale.en-US.yaml b/manifests/d/Docker/sbx/0.31.1/Docker.sbx.locale.en-US.yaml new file mode 100644 index 000000000000..bdc0c0eee945 --- /dev/null +++ b/manifests/d/Docker/sbx/0.31.1/Docker.sbx.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: Docker.sbx +PackageVersion: 0.31.1 +PackageLocale: en-US +Publisher: Docker Inc. +PublisherUrl: https://www.docker.com/ +PublisherSupportUrl: https://www.docker.com/support/ +PrivacyUrl: https://www.docker.com/legal/privacy/ +Author: Docker Inc. +PackageName: Docker Sandboxes +PackageUrl: https://docs.docker.com/ai/sandboxes/ +License: Proprietary +LicenseUrl: https://github.com/docker/dash-releases/blob/HEAD/LICENSE +Copyright: Copyright (c) Docker Inc. +CopyrightUrl: https://github.com/docker/sbx-releases/blob/HEAD/LICENSE +ShortDescription: Docker Sandboxes gives agents safe, isolated environments to work in. +Description: Docker Sandboxes gives agents safe, isolated environments to work in. +ReleaseNotesUrl: https://github.com/docker/sbx-releases/releases/tag/v0.31.1 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.docker.com/ai/sandboxes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Docker/sbx/0.31.1/Docker.sbx.yaml b/manifests/d/Docker/sbx/0.31.1/Docker.sbx.yaml new file mode 100644 index 000000000000..293ae006e099 --- /dev/null +++ b/manifests/d/Docker/sbx/0.31.1/Docker.sbx.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: Docker.sbx +PackageVersion: 0.31.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From bea0319b89108f8d9e3121530ef63c2c8abec4e3 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 29 May 2026 23:34:08 +0800 Subject: [PATCH 73/82] Update: KDE.Konsole version 26.07.70 (4848) (#381204) --- .../k/KDE/Konsole/26.07.70/KDE.Konsole.installer.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/manifests/k/KDE/Konsole/26.07.70/KDE.Konsole.installer.yaml b/manifests/k/KDE/Konsole/26.07.70/KDE.Konsole.installer.yaml index 0ff561d3af09..7b5ecb44dead 100644 --- a/manifests/k/KDE/Konsole/26.07.70/KDE.Konsole.installer.yaml +++ b/manifests/k/KDE/Konsole/26.07.70/KDE.Konsole.installer.yaml @@ -9,14 +9,14 @@ ProductCode: Konsole Installers: - Architecture: x64 Scope: user - InstallerUrl: https://cdn.kde.org/ci-builds/utilities/konsole/master/windows/konsole-master-4837-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 68E558A74051DB606CF25ACF586ECB0807C13AEC4EE129C294B8D8B4FA870E1F + InstallerUrl: https://cdn.kde.org/ci-builds/utilities/konsole/master/windows/konsole-master-4848-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 494DAE1BE9525C6B66274EEDFD1B8E17B67DC04BE8CB31B7257C9A76A0C6CA81 InstallerSwitches: Custom: /CurrentUser - Architecture: x64 Scope: machine - InstallerUrl: https://cdn.kde.org/ci-builds/utilities/konsole/master/windows/konsole-master-4837-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 68E558A74051DB606CF25ACF586ECB0807C13AEC4EE129C294B8D8B4FA870E1F + InstallerUrl: https://cdn.kde.org/ci-builds/utilities/konsole/master/windows/konsole-master-4848-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 494DAE1BE9525C6B66274EEDFD1B8E17B67DC04BE8CB31B7257C9A76A0C6CA81 InstallerSwitches: Custom: /AllUsers ManifestType: installer From f7d1518934c8d4356d014225509535302d5a8aa7 Mon Sep 17 00:00:00 2001 From: laurentiu021 Date: Fri, 29 May 2026 18:58:37 +0300 Subject: [PATCH 74/82] New version: laurentiu021.SysManager version 1.17.2 (#381194) --- .../laurentiu021.SysManager.installer.yaml | 18 +++++++ .../laurentiu021.SysManager.locale.en-US.yaml | 48 +++++++++++++++++++ .../1.17.2/laurentiu021.SysManager.yaml | 8 ++++ 3 files changed, 74 insertions(+) create mode 100644 manifests/l/laurentiu021/SysManager/1.17.2/laurentiu021.SysManager.installer.yaml create mode 100644 manifests/l/laurentiu021/SysManager/1.17.2/laurentiu021.SysManager.locale.en-US.yaml create mode 100644 manifests/l/laurentiu021/SysManager/1.17.2/laurentiu021.SysManager.yaml diff --git a/manifests/l/laurentiu021/SysManager/1.17.2/laurentiu021.SysManager.installer.yaml b/manifests/l/laurentiu021/SysManager/1.17.2/laurentiu021.SysManager.installer.yaml new file mode 100644 index 000000000000..80c3255b06a6 --- /dev/null +++ b/manifests/l/laurentiu021/SysManager/1.17.2/laurentiu021.SysManager.installer.yaml @@ -0,0 +1,18 @@ +# 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: laurentiu021.SysManager +PackageVersion: 1.17.2 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: portable +Commands: +- SysManager +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/laurentiu021/SystemManager/releases/download/v1.17.2/SysManager-v1.17.2.exe + InstallerSha256: CCE7E9311E2218A3E0A2F1DBA12108EA29F3A1DF18642243764428E3E5EAEEDF +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/laurentiu021/SysManager/1.17.2/laurentiu021.SysManager.locale.en-US.yaml b/manifests/l/laurentiu021/SysManager/1.17.2/laurentiu021.SysManager.locale.en-US.yaml new file mode 100644 index 000000000000..8adc7d306af7 --- /dev/null +++ b/manifests/l/laurentiu021/SysManager/1.17.2/laurentiu021.SysManager.locale.en-US.yaml @@ -0,0 +1,48 @@ +# 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: laurentiu021.SysManager +PackageVersion: 1.17.2 +PackageLocale: en-US +Publisher: laurentiu021 +PublisherUrl: https://github.com/laurentiu021 +PublisherSupportUrl: https://github.com/laurentiu021/SystemManager/issues +PackageName: SysManager +PackageUrl: https://github.com/laurentiu021/SystemManager +License: MIT +LicenseUrl: https://github.com/laurentiu021/SystemManager/blob/HEAD/LICENSE +ShortDescription: Modern Windows system toolkit — network monitor, performance tuning, cleanup, battery health, process manager, and more. +Description: |- + SysManager is a modern Windows system toolkit built with WPF and .NET 9. + It provides a comprehensive set of tools in a single application including + live network monitoring, ping and traceroute, speed tests, performance tuning + with power plan management, deep disk cleanup, duplicate file finder, disk + analyzer, battery health monitoring, process manager, app uninstaller, + startup control, Windows services manager, Windows features manager, driver + information, and system health overview. +Tags: +- battery +- cleanup +- dotnet +- network-monitor +- open-source +- performance +- process-manager +- system-utility +- uninstaller +- windows +- wpf +ReleaseNotes: |- + [1.17.2] - 2026-05-29 + Fixed + - Memory leaks — AboutViewModel now properly disposes ManagementObject instances in all 5 WMI foreach loops (CPU, RAM, GPU, Display, OS detection). + - Silent failures — ThemeService Save/Load empty catch blocks now log errors via Serilog instead of swallowing silently. + - Dashboard error handling — replaced 4 bare catch (Exception) in alert scanners with logged exceptions for diagnostics. + - UI flicker — BulkInstallerViewModel.FilteredApps converted from ObservableCollection to BulkObservableCollection with ReplaceWith(). + - Visual consistency — ShortcutCleanerView DataGrid now has Background="Transparent" and BorderThickness="0" matching all other views. + Verify the download + Get-FileHash .\SysManager-v1.17.2.exe -Algorithm SHA256 + Expected SHA256: CCE7E9311E2218A3E0A2F1DBA12108EA29F3A1DF18642243764428E3E5EAEEDF +ReleaseNotesUrl: https://github.com/laurentiu021/SystemManager/releases/tag/v1.17.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/laurentiu021/SysManager/1.17.2/laurentiu021.SysManager.yaml b/manifests/l/laurentiu021/SysManager/1.17.2/laurentiu021.SysManager.yaml new file mode 100644 index 000000000000..abc16e799246 --- /dev/null +++ b/manifests/l/laurentiu021/SysManager/1.17.2/laurentiu021.SysManager.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: laurentiu021.SysManager +PackageVersion: 1.17.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 7dce92abfa916593093cb4e2e407d1041c397925 Mon Sep 17 00:00:00 2001 From: Imre Eilertsen Date: Fri, 29 May 2026 17:59:06 +0200 Subject: [PATCH 75/82] Added portable: timokoessler.2FAGuard version 1.8.0 (#381232) --- .../timokoessler.2FAGuard.installer.yaml | 29 ++++++++++++++----- 1 file changed, 21 insertions(+), 8 deletions(-) diff --git a/manifests/t/timokoessler/2FAGuard/1.8.0/timokoessler.2FAGuard.installer.yaml b/manifests/t/timokoessler/2FAGuard/1.8.0/timokoessler.2FAGuard.installer.yaml index a30ff3d93455..85c5e45319dd 100644 --- a/manifests/t/timokoessler/2FAGuard/1.8.0/timokoessler.2FAGuard.installer.yaml +++ b/manifests/t/timokoessler/2FAGuard/1.8.0/timokoessler.2FAGuard.installer.yaml @@ -3,15 +3,28 @@ PackageIdentifier: timokoessler.2FAGuard PackageVersion: 1.8.0 +ReleaseDate: 2026-05-16 MinimumOSVersion: 10.0.17763.0 -InstallerType: inno -UpgradeBehavior: install Installers: - - Architecture: x64 - InstallerUrl: https://github.com/timokoessler/2FAGuard/releases/download/v1.8.0/2FAGuard-Installer-1.8.0.exe - InstallerSha256: AA28A72B97321BAB56327E091F56F1C525A49FAF6CEDD66DFABF9C6DD16F823B +- Architecture: x64 + InstallerType: inno + UpgradeBehavior: install + InstallerSwitches: + Silent: /SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /NOSTART + SilentWithProgress: /SP- /SILENT /SUPPRESSMSGBOXES /NORESTART /NOSTART + InstallerUrl: https://github.com/timokoessler/2FAGuard/releases/download/v1.8.0/2FAGuard-Installer-1.8.0.exe + InstallerSha256: AA28A72B97321BAB56327E091F56F1C525A49FAF6CEDD66DFABF9C6DD16F823B +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: 2FAGuard-Portable.exe + PortableCommandAlias: 2faguard-portable + Commands: + - 2faguard + InstallerUrl: https://github.com/timokoessler/2FAGuard/releases/download/v1.8.0/2FAGuard-Portable-1.8.0.zip + InstallerSha256: c34107e47364328ceab95aa4170dd7c0f6465a7c3fec7cff8d6eb74364750619 + AppsAndFeaturesEntries: + - DisplayName: 2FAGuard (Portable) ManifestType: installer ManifestVersion: 1.12.0 -InstallerSwitches: - Silent: /SP- /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /NOSTART - SilentWithProgress: /SP- /SILENT /SUPPRESSMSGBOXES /NORESTART /NOSTART From f9433b3f002757d8a1cc0d59b1b97aae2b5260c7 Mon Sep 17 00:00:00 2001 From: peterandree Date: Fri, 29 May 2026 18:25:32 +0200 Subject: [PATCH 76/82] BTChargeTrayWatcher 3.1.0 manifest update (#381113) --- ...randree.BTChargeTrayWatcher.installer.yaml | 16 +++++++++++++ ...dree.BTChargeTrayWatcher.locale.en-US.yaml | 24 +++++++++++++++++++ .../peterandree.BTChargeTrayWatcher.yaml | 5 ++++ 3 files changed, 45 insertions(+) create mode 100644 manifests/p/peterandree/BTChargeTrayWatcher/3.1.0/peterandree.BTChargeTrayWatcher.installer.yaml create mode 100644 manifests/p/peterandree/BTChargeTrayWatcher/3.1.0/peterandree.BTChargeTrayWatcher.locale.en-US.yaml create mode 100644 manifests/p/peterandree/BTChargeTrayWatcher/3.1.0/peterandree.BTChargeTrayWatcher.yaml diff --git a/manifests/p/peterandree/BTChargeTrayWatcher/3.1.0/peterandree.BTChargeTrayWatcher.installer.yaml b/manifests/p/peterandree/BTChargeTrayWatcher/3.1.0/peterandree.BTChargeTrayWatcher.installer.yaml new file mode 100644 index 000000000000..75c1eabc0a4e --- /dev/null +++ b/manifests/p/peterandree/BTChargeTrayWatcher/3.1.0/peterandree.BTChargeTrayWatcher.installer.yaml @@ -0,0 +1,16 @@ +PackageIdentifier: peterandree.BTChargeTrayWatcher +PackageVersion: 3.1.0 +InstallerLocale: en-US +Platform: + - Windows.Desktop +MinimumOSVersion: 10.0.19041.0 +InstallerType: exe +InstallerSwitches: + Silent: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART + SilentWithProgress: /SILENT /SUPPRESSMSGBOXES /NORESTART +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/peterandree/BTChargeTrayWatcher/releases/download/v3.1.0/BTChargeTrayWatcher_3.1.0_Setup.exe + InstallerSha256: F95356FA535993A5E1BA26E4EDD89BF8269F348B1AFD951E48D13E656E56B3DF +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/p/peterandree/BTChargeTrayWatcher/3.1.0/peterandree.BTChargeTrayWatcher.locale.en-US.yaml b/manifests/p/peterandree/BTChargeTrayWatcher/3.1.0/peterandree.BTChargeTrayWatcher.locale.en-US.yaml new file mode 100644 index 000000000000..863ef6dbed73 --- /dev/null +++ b/manifests/p/peterandree/BTChargeTrayWatcher/3.1.0/peterandree.BTChargeTrayWatcher.locale.en-US.yaml @@ -0,0 +1,24 @@ +PackageIdentifier: peterandree.BTChargeTrayWatcher +PackageVersion: 3.1.0 +PackageLocale: en-US +Publisher: peterandree +PackageName: BTChargeTrayWatcher +License: MIT +ShortDescription: Windows tray app that monitors Bluetooth device battery levels and alerts on low or high thresholds. +Description: |- + BTChargeTrayWatcher sits in the system tray and continuously monitors the battery + levels of connected Bluetooth devices (headphones, keyboards, mice, etc.) and your + laptop battery. Desktop notifications are raised when a device crosses a configurable + low or high threshold. Hover over the tray icon to see current battery levels at a glance. + Version 2.0.0 adds ntfy.sh mobile push notification support: battery alerts and on-demand + charge status reports can be forwarded to any ntfy topic and received on Android or iPhone. +Tags: + - bluetooth + - battery + - monitor + - tray + - notification + - ntfy + - mobile +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/p/peterandree/BTChargeTrayWatcher/3.1.0/peterandree.BTChargeTrayWatcher.yaml b/manifests/p/peterandree/BTChargeTrayWatcher/3.1.0/peterandree.BTChargeTrayWatcher.yaml new file mode 100644 index 000000000000..6df3910bb185 --- /dev/null +++ b/manifests/p/peterandree/BTChargeTrayWatcher/3.1.0/peterandree.BTChargeTrayWatcher.yaml @@ -0,0 +1,5 @@ +PackageIdentifier: peterandree.BTChargeTrayWatcher +PackageVersion: 3.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From c8fbca140e048ae3e5d46f067f8275c33f5e45a2 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 30 May 2026 00:25:48 +0800 Subject: [PATCH 77/82] New version: Lingbao.EasyClaw.CN version 1.3.57 (#381209) --- .../CN/{1.3.56 => 1.3.57}/Lingbao.EasyClaw.CN.installer.yaml | 4 ++-- .../{1.3.56 => 1.3.57}/Lingbao.EasyClaw.CN.locale.en-US.yaml | 2 +- .../{1.3.56 => 1.3.57}/Lingbao.EasyClaw.CN.locale.zh-CN.yaml | 2 +- .../EasyClaw/CN/{1.3.56 => 1.3.57}/Lingbao.EasyClaw.CN.yaml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) rename manifests/l/Lingbao/EasyClaw/CN/{1.3.56 => 1.3.57}/Lingbao.EasyClaw.CN.installer.yaml (84%) rename manifests/l/Lingbao/EasyClaw/CN/{1.3.56 => 1.3.57}/Lingbao.EasyClaw.CN.locale.en-US.yaml (95%) rename manifests/l/Lingbao/EasyClaw/CN/{1.3.56 => 1.3.57}/Lingbao.EasyClaw.CN.locale.zh-CN.yaml (97%) rename manifests/l/Lingbao/EasyClaw/CN/{1.3.56 => 1.3.57}/Lingbao.EasyClaw.CN.yaml (91%) diff --git a/manifests/l/Lingbao/EasyClaw/CN/1.3.56/Lingbao.EasyClaw.CN.installer.yaml b/manifests/l/Lingbao/EasyClaw/CN/1.3.57/Lingbao.EasyClaw.CN.installer.yaml similarity index 84% rename from manifests/l/Lingbao/EasyClaw/CN/1.3.56/Lingbao.EasyClaw.CN.installer.yaml rename to manifests/l/Lingbao/EasyClaw/CN/1.3.57/Lingbao.EasyClaw.CN.installer.yaml index bc42b01316e2..da4cc74890dd 100644 --- a/manifests/l/Lingbao/EasyClaw/CN/1.3.56/Lingbao.EasyClaw.CN.installer.yaml +++ b/manifests/l/Lingbao/EasyClaw/CN/1.3.57/Lingbao.EasyClaw.CN.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Lingbao.EasyClaw.CN -PackageVersion: 1.3.56 +PackageVersion: 1.3.57 InstallerType: exe Scope: machine InstallModes: @@ -20,6 +20,6 @@ ProductCode: easyclawcn Installers: - Architecture: x64 InstallerUrl: https://aibot-install-cdn.easyclaw.cn/public/package/easyclawcnsetup.exe - InstallerSha256: 1061BD802A5A57F0FC7EF5BE7D5DC251C73149C460EFEFA1F0AD3CA7EE2E80DC + InstallerSha256: 45478EA87B3FD84AC4AD30A09622B981D644F178F8CE3C721ECD45759383634C ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/l/Lingbao/EasyClaw/CN/1.3.56/Lingbao.EasyClaw.CN.locale.en-US.yaml b/manifests/l/Lingbao/EasyClaw/CN/1.3.57/Lingbao.EasyClaw.CN.locale.en-US.yaml similarity index 95% rename from manifests/l/Lingbao/EasyClaw/CN/1.3.56/Lingbao.EasyClaw.CN.locale.en-US.yaml rename to manifests/l/Lingbao/EasyClaw/CN/1.3.57/Lingbao.EasyClaw.CN.locale.en-US.yaml index 06313917766c..1d9c8308f3bd 100644 --- a/manifests/l/Lingbao/EasyClaw/CN/1.3.56/Lingbao.EasyClaw.CN.locale.en-US.yaml +++ b/manifests/l/Lingbao/EasyClaw/CN/1.3.57/Lingbao.EasyClaw.CN.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Lingbao.EasyClaw.CN -PackageVersion: 1.3.56 +PackageVersion: 1.3.57 PackageLocale: en-US Author: Beijing Lingbao Intelligent Technology Co., Ltd. License: Proprietary diff --git a/manifests/l/Lingbao/EasyClaw/CN/1.3.56/Lingbao.EasyClaw.CN.locale.zh-CN.yaml b/manifests/l/Lingbao/EasyClaw/CN/1.3.57/Lingbao.EasyClaw.CN.locale.zh-CN.yaml similarity index 97% rename from manifests/l/Lingbao/EasyClaw/CN/1.3.56/Lingbao.EasyClaw.CN.locale.zh-CN.yaml rename to manifests/l/Lingbao/EasyClaw/CN/1.3.57/Lingbao.EasyClaw.CN.locale.zh-CN.yaml index 19142df5b943..8ea20299ca3e 100644 --- a/manifests/l/Lingbao/EasyClaw/CN/1.3.56/Lingbao.EasyClaw.CN.locale.zh-CN.yaml +++ b/manifests/l/Lingbao/EasyClaw/CN/1.3.57/Lingbao.EasyClaw.CN.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Lingbao.EasyClaw.CN -PackageVersion: 1.3.56 +PackageVersion: 1.3.57 PackageLocale: zh-CN Publisher: EasyClaw Team PublisherUrl: https://easyclaw.cn/ diff --git a/manifests/l/Lingbao/EasyClaw/CN/1.3.56/Lingbao.EasyClaw.CN.yaml b/manifests/l/Lingbao/EasyClaw/CN/1.3.57/Lingbao.EasyClaw.CN.yaml similarity index 91% rename from manifests/l/Lingbao/EasyClaw/CN/1.3.56/Lingbao.EasyClaw.CN.yaml rename to manifests/l/Lingbao/EasyClaw/CN/1.3.57/Lingbao.EasyClaw.CN.yaml index 5e7b3a4f59d8..bfa587b611cd 100644 --- a/manifests/l/Lingbao/EasyClaw/CN/1.3.56/Lingbao.EasyClaw.CN.yaml +++ b/manifests/l/Lingbao/EasyClaw/CN/1.3.57/Lingbao.EasyClaw.CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Lingbao.EasyClaw.CN -PackageVersion: 1.3.56 +PackageVersion: 1.3.57 DefaultLocale: zh-CN ManifestType: version ManifestVersion: 1.12.0 From 99d13f534cd58e63a5b7102a632bdeacad434a73 Mon Sep 17 00:00:00 2001 From: "Zhao.MA" Date: Fri, 29 May 2026 18:26:04 +0200 Subject: [PATCH 78/82] New version: xarthurx.Whisperi version 0.7.1 (#381234) --- .../0.7.1/xarthurx.Whisperi.installer.yaml | 13 ++++++++++++ .../0.7.1/xarthurx.Whisperi.locale.en-US.yaml | 20 +++++++++++++++++++ .../Whisperi/0.7.1/xarthurx.Whisperi.yaml | 8 ++++++++ 3 files changed, 41 insertions(+) create mode 100644 manifests/x/xarthurx/Whisperi/0.7.1/xarthurx.Whisperi.installer.yaml create mode 100644 manifests/x/xarthurx/Whisperi/0.7.1/xarthurx.Whisperi.locale.en-US.yaml create mode 100644 manifests/x/xarthurx/Whisperi/0.7.1/xarthurx.Whisperi.yaml diff --git a/manifests/x/xarthurx/Whisperi/0.7.1/xarthurx.Whisperi.installer.yaml b/manifests/x/xarthurx/Whisperi/0.7.1/xarthurx.Whisperi.installer.yaml new file mode 100644 index 000000000000..bae8e637d9d1 --- /dev/null +++ b/manifests/x/xarthurx/Whisperi/0.7.1/xarthurx.Whisperi.installer.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: xarthurx.Whisperi +PackageVersion: 0.7.1 +InstallerType: nullsoft +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/xarthurx/whisperi/releases/download/v0.7.1/Whisperi_0.7.1_x64-setup.exe + InstallerSha256: DA10D4C24B9A014614A828C6248F4E041F0958C8B67127064B2C180FEC6A40CB +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-05-29 diff --git a/manifests/x/xarthurx/Whisperi/0.7.1/xarthurx.Whisperi.locale.en-US.yaml b/manifests/x/xarthurx/Whisperi/0.7.1/xarthurx.Whisperi.locale.en-US.yaml new file mode 100644 index 000000000000..ae11641b21b1 --- /dev/null +++ b/manifests/x/xarthurx/Whisperi/0.7.1/xarthurx.Whisperi.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: xarthurx.Whisperi +PackageVersion: 0.7.1 +PackageLocale: en-US +Publisher: xarthurx +PublisherUrl: https://github.com/xarthurx +PublisherSupportUrl: https://github.com/xarthurx/whisperi/issues +PackageName: Whisperi +PackageUrl: https://github.com/xarthurx/whisperi +License: MIT +LicenseUrl: https://github.com/xarthurx/whisperi/blob/main/LICENSE +ShortDescription: Fast local & cloud speech-to-text dictation for Windows +ReleaseNotesUrl: https://github.com/xarthurx/whisperi/releases/tag/v0.7.1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/xarthurx/whisperi/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/x/xarthurx/Whisperi/0.7.1/xarthurx.Whisperi.yaml b/manifests/x/xarthurx/Whisperi/0.7.1/xarthurx.Whisperi.yaml new file mode 100644 index 000000000000..d3bc024935f6 --- /dev/null +++ b/manifests/x/xarthurx/Whisperi/0.7.1/xarthurx.Whisperi.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: xarthurx.Whisperi +PackageVersion: 0.7.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 08d01833f52a8ec91186a658209f160edad86120 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 30 May 2026 00:50:56 +0800 Subject: [PATCH 79/82] New version: BitSum.ProcessLasso version 18.2.1.6 (#381236) --- .../BitSum.ProcessLasso.installer.yaml | 8 ++--- .../BitSum.ProcessLasso.locale.en-US.yaml | 36 +++++-------------- .../BitSum.ProcessLasso.locale.zh-CN.yaml | 2 +- .../BitSum.ProcessLasso.yaml | 2 +- 4 files changed, 14 insertions(+), 34 deletions(-) rename manifests/b/BitSum/ProcessLasso/{18.2.0.50 => 18.2.1.6}/BitSum.ProcessLasso.installer.yaml (77%) rename manifests/b/BitSum/ProcessLasso/{18.2.0.50 => 18.2.1.6}/BitSum.ProcessLasso.locale.en-US.yaml (57%) rename manifests/b/BitSum/ProcessLasso/{18.2.0.50 => 18.2.1.6}/BitSum.ProcessLasso.locale.zh-CN.yaml (98%) rename manifests/b/BitSum/ProcessLasso/{18.2.0.50 => 18.2.1.6}/BitSum.ProcessLasso.yaml (90%) diff --git a/manifests/b/BitSum/ProcessLasso/18.2.0.50/BitSum.ProcessLasso.installer.yaml b/manifests/b/BitSum/ProcessLasso/18.2.1.6/BitSum.ProcessLasso.installer.yaml similarity index 77% rename from manifests/b/BitSum/ProcessLasso/18.2.0.50/BitSum.ProcessLasso.installer.yaml rename to manifests/b/BitSum/ProcessLasso/18.2.1.6/BitSum.ProcessLasso.installer.yaml index 32056a4a48d4..2e3f2de4b8e3 100644 --- a/manifests/b/BitSum/ProcessLasso/18.2.0.50/BitSum.ProcessLasso.installer.yaml +++ b/manifests/b/BitSum/ProcessLasso/18.2.1.6/BitSum.ProcessLasso.installer.yaml @@ -2,24 +2,24 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: BitSum.ProcessLasso -PackageVersion: 18.2.0.50 +PackageVersion: 18.2.1.6 InstallerLocale: en-US InstallerType: nullsoft Scope: machine UpgradeBehavior: install ProductCode: ProcessLasso -ReleaseDate: 2026-05-22 +ReleaseDate: 2026-05-29 AppsAndFeaturesEntries: - ProductCode: ProcessLasso Installers: - Architecture: x86 InstallerUrl: https://dl.bitsum.com/files/processlassosetup32.exe - InstallerSha256: DA289DCF2A2F4636AC039E62F5C9A156557A99EDDF1DD22069FABF6640CAF5CE + InstallerSha256: F7462CEA67768BE7CDC600A623AD5B2BCAE43A2A2AD077143F5FABDD8438E26B InstallationMetadata: DefaultInstallLocation: '%ProgramFiles(x86)%\Process Lasso' - Architecture: x64 InstallerUrl: https://dl.bitsum.com/files/processlassosetup64.exe - InstallerSha256: 12429ED3550BDD78E04FBE51DBDB5810419C59542E5B26839BC013D3187A3FDA + InstallerSha256: B717ACCAB58779D0E3BEA50854F4055FB6FB498AF0745420B123CE6CAC560354 InstallationMetadata: DefaultInstallLocation: '%ProgramFiles%\Process Lasso' ManifestType: installer diff --git a/manifests/b/BitSum/ProcessLasso/18.2.0.50/BitSum.ProcessLasso.locale.en-US.yaml b/manifests/b/BitSum/ProcessLasso/18.2.1.6/BitSum.ProcessLasso.locale.en-US.yaml similarity index 57% rename from manifests/b/BitSum/ProcessLasso/18.2.0.50/BitSum.ProcessLasso.locale.en-US.yaml rename to manifests/b/BitSum/ProcessLasso/18.2.1.6/BitSum.ProcessLasso.locale.en-US.yaml index 14c08b0f5217..bd3fd4544600 100644 --- a/manifests/b/BitSum/ProcessLasso/18.2.0.50/BitSum.ProcessLasso.locale.en-US.yaml +++ b/manifests/b/BitSum/ProcessLasso/18.2.1.6/BitSum.ProcessLasso.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: BitSum.ProcessLasso -PackageVersion: 18.2.0.50 +PackageVersion: 18.2.1.6 PackageLocale: en-US Publisher: Bitsum PublisherUrl: https://bitsum.com/ @@ -31,33 +31,13 @@ Tags: - schedule - scheduler ReleaseNotes: |- - (1) GUI: Add load based power profile switcher feature - (11) GUI: Extend per-process multi-GPU readings to the Active Processes view - (11) GUI: When showing multiple GPUs on the line graph, have GPU widgets use GPU line colors - (13) GUI: Add GPU numbers to line graph legend when showing multiple - (13) GUI: Fix an issue with the Japanese RAM load status bar partition - (15) GUI: Improve rendering of widget captions with larger text sizes - (15) GUI: Fix an issue where multiple identical GPUs could sometimes get filtered out in dedupe - (15) GUI: Add diagnostic data collection tool to the Help menu and About box - (17) GUI: Fix an issue with the Finnish translation that would prevent the GUI from opening - (17) GUI: Improve CPU and GPU widget graph tooltip behavior - (17) GUI: Add tooltip to the RAM widget - (19) GUI: Create distinct strings for actions due to verb subject ordering differences between languages - (19) GUI: Have action (e.g. terminate) confirmation messagebox list the specific process(es) - (21) GUI: Improve tooling around translation validation - (21) GUI: Fix an issue with the sort of CPU average column - (23) GUI: Add HKCU registry settings to override GPU widget colors “gpuColor1”, “gpuColor2”, … - (23) GUI: Adjust GPU preference rule string characters - (25) GUI: Add custom color selection menu items for present GPU adapters - (27) GUI: After reset custom colors is used, don’t change the theme to custom - (29) GUI: Remove adapter name suffix from GPU preferences when it would be identical - (29) GUI: Improve behavior of GPU Preference adapter names on systems with same-class GPUs - (33) GUI: Dynamically size Show/Hide Graph and Edit Rules buttons - (41) GUI: Add View option to control per-process GPU data collection (auto, all, visible rows only) - (43) GUI: Adjust GPU utilization aggregate total methodology to handle some edge cases - (49) GUI: Dynamically size View Log and Insights buttons - (49) GUI: Improve button padding when system font size is increased - (49) GUI: Translation updates + - Minor fixes and enhancements + (1) Installer: Remove remaining incomplete translation warnings + (1) Translations: Improve consistency check tooling + (1) GUI: Fix to Finnish translation + (3) GUI: Add last 50 log entries to diagnostics report + (3) GUI: Refine GPU adapter dedupe + (5) GUI: Change GPU adapter numbering to start at 0 ReleaseNotesUrl: https://bitsum.com/changes/processlasso/ PurchaseUrl: https://bitsum.com/get-lasso-pro/ Documentations: diff --git a/manifests/b/BitSum/ProcessLasso/18.2.0.50/BitSum.ProcessLasso.locale.zh-CN.yaml b/manifests/b/BitSum/ProcessLasso/18.2.1.6/BitSum.ProcessLasso.locale.zh-CN.yaml similarity index 98% rename from manifests/b/BitSum/ProcessLasso/18.2.0.50/BitSum.ProcessLasso.locale.zh-CN.yaml rename to manifests/b/BitSum/ProcessLasso/18.2.1.6/BitSum.ProcessLasso.locale.zh-CN.yaml index fcb58db6c082..764e9d149d7b 100644 --- a/manifests/b/BitSum/ProcessLasso/18.2.0.50/BitSum.ProcessLasso.locale.zh-CN.yaml +++ b/manifests/b/BitSum/ProcessLasso/18.2.1.6/BitSum.ProcessLasso.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: BitSum.ProcessLasso -PackageVersion: 18.2.0.50 +PackageVersion: 18.2.1.6 PackageLocale: zh-CN License: 专有软件 ShortDescription: 实时 CPU 优化和自动化 diff --git a/manifests/b/BitSum/ProcessLasso/18.2.0.50/BitSum.ProcessLasso.yaml b/manifests/b/BitSum/ProcessLasso/18.2.1.6/BitSum.ProcessLasso.yaml similarity index 90% rename from manifests/b/BitSum/ProcessLasso/18.2.0.50/BitSum.ProcessLasso.yaml rename to manifests/b/BitSum/ProcessLasso/18.2.1.6/BitSum.ProcessLasso.yaml index 7f76c0943f3a..2e4dce469d8a 100644 --- a/manifests/b/BitSum/ProcessLasso/18.2.0.50/BitSum.ProcessLasso.yaml +++ b/manifests/b/BitSum/ProcessLasso/18.2.1.6/BitSum.ProcessLasso.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: BitSum.ProcessLasso -PackageVersion: 18.2.0.50 +PackageVersion: 18.2.1.6 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 From 71267c8dc4b72d459d25052494294dc1951cb09e Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 30 May 2026 00:51:12 +0800 Subject: [PATCH 80/82] New version: dreamlonglll.Mini-Term version 0.4.22 (#381240) --- .../dreamlonglll.Mini-Term.installer.yaml | 26 ++++++ .../dreamlonglll.Mini-Term.locale.en-US.yaml | 60 +++++++++++++ .../dreamlonglll.Mini-Term.locale.zh-CN.yaml | 85 +++++++++++++++++++ .../0.4.22/dreamlonglll.Mini-Term.yaml | 8 ++ 4 files changed, 179 insertions(+) create mode 100644 manifests/d/dreamlonglll/Mini-Term/0.4.22/dreamlonglll.Mini-Term.installer.yaml create mode 100644 manifests/d/dreamlonglll/Mini-Term/0.4.22/dreamlonglll.Mini-Term.locale.en-US.yaml create mode 100644 manifests/d/dreamlonglll/Mini-Term/0.4.22/dreamlonglll.Mini-Term.locale.zh-CN.yaml create mode 100644 manifests/d/dreamlonglll/Mini-Term/0.4.22/dreamlonglll.Mini-Term.yaml diff --git a/manifests/d/dreamlonglll/Mini-Term/0.4.22/dreamlonglll.Mini-Term.installer.yaml b/manifests/d/dreamlonglll/Mini-Term/0.4.22/dreamlonglll.Mini-Term.installer.yaml new file mode 100644 index 000000000000..41e5a1cca5c8 --- /dev/null +++ b/manifests/d/dreamlonglll/Mini-Term/0.4.22/dreamlonglll.Mini-Term.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: dreamlonglll.Mini-Term +PackageVersion: 0.4.22 +UpgradeBehavior: install +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/dreamlonglll/mini-term/releases/download/v0.4.22/Mini-Term_0.4.22_x64-setup.exe + InstallerSha256: D388E948E69E98056E1E885237686E9E258B30A84A7087FA9212996616C34C5B + ProductCode: Mini-Term +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/dreamlonglll/mini-term/releases/download/v0.4.22/Mini-Term_0.4.22_x64_en-US.msi + InstallerSha256: E141AC650257AC3F2FA3787EE418D2F57EB052E67EAC365E673BEE424F0A312B + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{FF61C782-8D33-47AA-95AE-AFE30ED59B8E}' + AppsAndFeaturesEntries: + - UpgradeCode: '{508EBA6B-F86F-54E3-A17E-094DDF898583}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/dreamlonglll/Mini-Term/0.4.22/dreamlonglll.Mini-Term.locale.en-US.yaml b/manifests/d/dreamlonglll/Mini-Term/0.4.22/dreamlonglll.Mini-Term.locale.en-US.yaml new file mode 100644 index 000000000000..9b9f1de06be8 --- /dev/null +++ b/manifests/d/dreamlonglll/Mini-Term/0.4.22/dreamlonglll.Mini-Term.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: dreamlonglll.Mini-Term +PackageVersion: 0.4.22 +PackageLocale: en-US +License: Freeware +ShortDescription: Desktop Terminal Manager Built for the AI Era +Description: |- + An AI terminal management tool supporting multi-project, multi-terminal layout management + + Features + Terminal Core + - Multi-tab management — Independent tabs per project, drag-to-sort, status icons at a glance + - Recursive splitting — Horizontal/vertical nested splits, Allotment drag-to-adjust ratios + - High-performance rendering — xterm.js v6 + WebGL acceleration, automatic Canvas fallback + - 100K-line scrollback — Intercepts CSI 3J (ED3) commands, preserves scrollback history when Claude/Codex TUIs clear screen + - Terminal caching — Switching tabs/splits without rebuilding xterm instances, existing content preserved + - Copy & paste — Ctrl+Shift+C / Ctrl+Shift+V shortcuts + right-click menu, "Copy" auto-grayed when no selection; Windows large multi-line paste auto-chunked to prevent ConPTY line loss + - Long text paste — Clipboard text ≥10 lines or ≥2000 chars auto-saved as temp .txt and pastes quoted file path, avoiding AI tool performance and paste bracket issues with ultra-long content + - Image paste — Auto-detects screenshots in clipboard, saves as temp PNG via Win32 API and pastes quoted path, compatible with non-standard formats like PinPix + - File drag-drop — Files dragged to terminal auto-insert quoted absolute paths, compatible with spaces-in-path + - Multi-Shell config — Windows (cmd / powershell / pwsh), macOS (zsh / bash), Linux (bash / sh), freely add/remove + AI Process Awareness + - Real-time status detection — 500ms polling child process names, auto-identifies Claude/Codex, displays idle/working/error states + - Status aggregation — Panel → Tab → Project layered aggregation, priority: error > ai-working > ai-idle > idle + - Completion alert trio — Triggers immediately when AI task goes working → idle: + - Bottom-right Toast desktop notification (inactive projects only, deduplicated per project) + - Project list DONE badge, click to clear + - Taskbar flash (Windows) / Dock bounce (macOS), only when window unfocused + - Three toggles independently configurable + - Session entry/exit detection — Command echo identifies AI entry; double Ctrl+C / Ctrl+D or exit/quit/:quit/logout identifies exit + - Session history — Reads local Claude/Codex session history, right-click copy recovery command for quick resumption + - AI task markers — Auto-logs xterm on each Enter press in AI session, tab top-right ⚑ button drops down history submission list, click or Ctrl+Shift+↑/↓ to jump between markers, target line briefly highlighted + Project Management + - Project list — Left sidebar manages multiple project directories, one-click workspace switch, auto-restores last active project on restart + - Drag-to-add projects — Drag folders from Explorer to project list for quick add, auto-identifies files/folders/duplicates with visual feedback + - Nested groups — Up to 3-level project grouping, drag-to-sort, collapse/expand + - File tree — Integrated directory browser, nested .gitignore grayed out (per-subdirectory ignore rules and !pattern whitelists respected, consistent with git behavior), notify file watcher real-time refresh + - File operations — New file/folder, rename, view content in file tree (binary and oversized file friendly prompts) + - VS Code quick open — File tree top-right button opens current project with configured VS Code executable, path customizable in "Settings → System Settings → External Editor" + Git Integration + - File status — Git status colors in file tree (modified/added/deleted/conflict) + - Change Diff — Detailed Diff for working directory changes, Hunk line-level parsing, side-by-side/inline dual view + - Commit history — Browse repository commit log, cursor pagination (default 30 items) + - Commit Diff — View file changes for any commit, per-file switching + - Branch info — Local/remote branch list + - Source control panel — VS Code-style Changes panel, Staged/Changes/Untrackedg grouping, single-file and bulk stage/unstage/discard, Ctrl+Enter quick commit, list/tree view toggle + - Pull/Push — In-line repository buttons for one-click remote sync, refresh button reloads commit history and branch info + - Multi-repo discovery — Auto-scans all Git repositories under project directory (recursive 5 levels, skips node_modules, etc.) + Appearance & Configuration + - Activity Bar sidebar — Leftmost permanent 40px icon bar, Projects/Sessions/Files/Git panel toggles, independent show/hide control, active state blue vertical bar indicator, state persistence + - Three theme modes — Auto (follow system)/Light/Dark, dark based on Warm Carbon warm charcoal tones, custom CSS variable system + - Independent font adjustment — UI and terminal font sizes separately adjustable (10-20px), terminal optional UI theme following + - Layout persistence — Split ratios, tabs, window size/position auto-saved and restored on restart (tauri-plugin-window-state) + - Close confirmation — Pre-close confirmation dialog, flushes all project layouts to prevent accidental operations + - Version check — Fetches GitHub Release on startup, title bar shows new version notification + - Settings center — Unified SettingsModal manages themes, fonts, Shell, AI notifications and all other toggles +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/dreamlonglll/Mini-Term/0.4.22/dreamlonglll.Mini-Term.locale.zh-CN.yaml b/manifests/d/dreamlonglll/Mini-Term/0.4.22/dreamlonglll.Mini-Term.locale.zh-CN.yaml new file mode 100644 index 000000000000..fb5648d8a2a2 --- /dev/null +++ b/manifests/d/dreamlonglll/Mini-Term/0.4.22/dreamlonglll.Mini-Term.locale.zh-CN.yaml @@ -0,0 +1,85 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: dreamlonglll.Mini-Term +PackageVersion: 0.4.22 +PackageLocale: zh-CN +Publisher: tauri-app +PublisherUrl: https://github.com/dreamlonglll +PublisherSupportUrl: https://github.com/dreamlonglll/mini-term/issues +PackageName: Mini-Term +PackageUrl: https://github.com/dreamlonglll/mini-term +License: 免费软件 +ShortDescription: 为 AI 时代打造的桌面终端管理器 +Description: |- + 一个 AI 终端管理工具,支持多项目、多终端布局管理 + + 功能特性 + 终端核心 + - 多标签管理 — 每个项目独立标签页,拖拽排序,状态图标一目了然 + - 递归分屏 — 横向 / 纵向任意嵌套分屏,Allotment 拖拽调整比例 + - 高性能渲染 — xterm.js v6 + WebGL 加速,自动降级为 Canvas + - 10 万行滚动缓冲 — 拦截 CSI 3J(ED3)指令,Claude / Codex 等 TUI 清屏时保留上滚历史 + - 终端缓存 — 切换标签 / 分屏不重建 xterm 实例,已有内容不丢失 + - 复制粘贴 — Ctrl+Shift+C / Ctrl+Shift+V 快捷键 + 右键菜单,未选中时"复制"自动置灰;Windows 大段多行粘贴自动分块写入,防止 ConPTY 丢行 + - 长文本粘贴 — 剪贴板文本 ≥10 行或 ≥2000 字符时自动转存为临时 .txt 并粘贴带引号的文件路径,避免 AI 工具直接处理超长内容引发性能与 paste bracket 问题 + - 图片粘贴 — 剪贴板含截图时自动检测,通过 Win32 API 保存为临时 PNG 并粘贴带引号的路径,兼容 PinPix 等非标准格式 + - 文件拖拽 — 文件拖到终端自动插入带引号的绝对路径,兼容含空格的路径 + - 多 Shell 配置 — Windows(cmd / powershell / pwsh)、macOS(zsh / bash)、Linux(bash / sh)等,可自由增删 + AI 进程感知 + - 实时状态检测 — 500ms 轮询子进程名,自动识别 Claude / Codex,显示 idle / working / error 状态 + - 状态聚合 — 面板 → 标签页 → 项目逐层聚合,优先级 error > ai-working > ai-idle > idle + - 完成提醒三件套 — AI 任务从 working → idle 时立刻触发: + - 右下角 Toast 桌面通知(仅非活跃项目弹出,同项目去重) + - 项目列表 DONE 徽章,点击清除 + - 任务栏闪烁(Windows)/ Dock 跳动(macOS),窗口失焦时才触发 + - 三个开关独立可配 + - 会话进出检测 — 命令 echo 识别进入 AI;双击 Ctrl+C / Ctrl+D 或 exit / quit / :quit / /logout 识别退出 + - 会话历史 — 读取本地 Claude / Codex 历史会话记录,右键复制恢复命令快速续接 + - AI 任务标记 — AI 会话内每次用户按 Enter 自动在 xterm 打点,标签右上角 ⚑ 按钮下拉展示历史提交列表,点击或 Ctrl+Shift+↑/↓ 在标记间跳转,目标行短暂高亮提示 + 项目管理 + - 项目列表 — 左侧边栏管理多个项目目录,一键切换工作区,重启自动恢复上次激活项目 + - 拖拽添加项目 — 从资源管理器拖拽文件夹到项目列表即可快速添加,自动识别文件 / 文件夹 / 重复项目并给出视觉反馈 + - 嵌套分组 — 最多 3 级项目分组,拖拽排序,折叠 / 展开 + - 文件树 — 集成目录浏览器,嵌套 .gitignore 置灰(每层子目录的忽略规则与 !pattern 白名单都会生效,与 git 行为一致),notify 文件监听实时刷新 + - 文件操作 — 文件树内新建文件 / 文件夹、重命名、查看内容(二进制与超大文件友好提示) + - VS Code 快捷打开 — 文件树右上角按钮一键用配置的 VS Code 可执行文件打开当前项目,路径可在「设置 → 系统设置 → 外部编辑器」自定义 + Git 集成 + - 文件状态 — 文件树显示 Git 状态颜色(修改 / 新增 / 删除 / 冲突) + - 变更 Diff — 工作区文件变更的详细 Diff,Hunk 行级解析,并排 / 内联双视图 + - 提交历史 — 浏览仓库提交记录,游标分页加载(默认 30 条) + - 提交 Diff — 查看任意提交的文件变更,逐文件切换 + - 分支信息 — 本地 / 远程分支列表 + - 源码控制面板 — VS Code 风格 Changes 面板,Staged / Changes / Untracked 分组展示,支持单文件和全量 stage / unstage / discard,Ctrl+Enter 快速提交,列表与树形视图切换 + - Pull / Push — 仓库行内按钮一键同步远端,支持刷新按钮重新加载提交记录与分支信息 + - 多仓库发现 — 自动扫描项目目录下所有 Git 仓库(递归 5 层,跳过 node_modules 等) + 外观与配置 + - Activity Bar 侧边栏 — 最左侧常驻 40px 图标栏,含 Projects / Sessions / Files / Git 四个面板开关,独立控制显隐,激活态蓝色竖条指示,状态持久化 + - 三种主题模式 — Auto(跟随系统)/ Light / Dark,深色基于 Warm Carbon 暖炭色调,自定义 CSS 变量体系 + - 字体独立调节 — UI 与终端字号分别可调(10-20px),终端可选是否跟随 UI 主题 + - 布局持久化 — 分屏比例、标签页、窗口大小 / 位置自动保存,重启恢复(tauri-plugin-window-state) + - 关闭确认 — 关闭窗口前二次确认,并 flush 所有项目布局,避免误操作 + - 版本检查 — 启动时拉取 GitHub Release,标题栏显示新版本提示 + - 设置中心 — 统一的 SettingsModal 管理主题、字体、Shell、AI 通知等所有开关 +ReleaseNotes: |- + 更新内容 + 本版为 v0.4.21 的修复版:v0.4.21 在打包后(生产环境)打开 cc-connect Dashboard 会被 WebView CSP 拦成「已阻止此内容」空白页,本版修复。功能与 v0.4.21 一致。 + 修复 + - 生产环境打开 cc-connect Dashboard 显示「已阻止此内容」空白页 — Dashboard 以 iframe 加载本机 http://127.0.0.1: 的 cc-connect Web 控制台,而 tauri.conf.json 的 CSP frame-src 白名单不含本地回环地址;开发环境前端走 Vite dev server 不注入 CSP 所以正常,打包后走 Tauri 自定义协议、CSP 生效,iframe 被拦截。本版移除 CSP 限制,使内嵌 Dashboard 在生产环境正常加载。 + - cc-connect 在 Windows 上的进程管理兼容性 — cc-connect 常以 npm 脚本壳(cc-connect.cmd / .ps1)安装、无原生 .exe,旧逻辑 Command::new 解析裸名只补 .exe 导致 program not found;现按 PATH × PATHEXT 像终端一样解析(.cmd / .bat 原生 spawn、.ps1 包 powershell -NoProfile -File)。停止 / 重启遗留孤儿进程(真实 node 是脚本壳子孙、child.kill() 杀不到)改用 taskkill /T /F 杀整棵进程树。探活 HTTP 改异步执行,不再因 5s 轮询冻结 UI。 + - 导入项目缺平台导致 cc-connect 无法冷启动 — cc-connect 强制每个 [[projects]] 至少一个 [[projects.platforms]],否则配置校验失败、进程 os.Exit(1)。导入时为每个项目注入一个冷启动安全的占位 Telegram 平台(非空假 token,异步重连失败不崩),彻底避免写出无法启动的配置。 + 新增 + - cc-connect 集成 — 把本机 AI agent 通过 IM 平台(飞书 / Slack / Telegram / Discord / 钉钉 / 微信等)远程驱动 — 与上游 chenhg5/cc-connect 桥接,入口统一收在顶栏「连接」按钮弹窗内: + - 进程管理(零配置) — 一键启动 / 停止 / 重启 / 测试连接 / 编辑 config.toml,可选 mini-term 启动时自动 spawn;可执行文件 / 配置路径留空时自动回退 PATH 中的 cc-connect 与 ~/.cc-connect/config.toml,零配置即可使用;关闭 mini-term 不联动 kill,保证 IM 持续可用。 + - 一键导入项目 — 弹窗内列出全部 mini-term 项目,勾选 / 全选后一键批量导入到 cc-connect(用 toml_edit 追加 [[projects]] 保留注释、单次写盘 + 仅重启一次、同名冲突加 8 字符 hash 后缀),也可逐项单独导入;已导入项显示「● 已导入」并可一键移除。每个导入项目会附带一个占位 Telegram 平台保证 cc-connect 能冷启动,导入后到 Dashboard 把占位替换为真实 IM 平台即可启用。 + - Dashboard 嵌入 — 弹窗内「打开 Dashboard」直接在 mini-term 内嵌 cc-connect Web 控制台(自动登录态),配置 IM 平台 / 切换 provider / 管理 cron,无需另开浏览器。 + 下载 + - Windows — Mini-Term_0.4.22_x64-setup.exe(NSIS,推荐)或 Mini-Term_0.4.22_x64_en-US.msi + - macOS (Apple Silicon) — Mini-Term_0.4.22_aarch64.dmg(首次启动需在终端运行 xattr -cr /Applications/Mini-Term.app 解除 Gatekeeper quarantine) + - Linux — Mini-Term_0.4.22_amd64.AppImage / Mini-Term_0.4.22_amd64.deb / Mini-Term-0.4.22-1.x86_64.rpm + 平台支持:Windows 为主要支持平台,日常开发与测试均在 Windows 上进行;macOS / Linux 代码层面已支持,但未经充分打磨,可用性欠佳,欢迎提 Issue 反馈。 + + 完整 commits: https://github.com/dreamlonglll/mini-term/compare/v0.4.21...v0.4.22 +ReleaseNotesUrl: https://github.com/dreamlonglll/mini-term/releases/tag/v0.4.22 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/dreamlonglll/Mini-Term/0.4.22/dreamlonglll.Mini-Term.yaml b/manifests/d/dreamlonglll/Mini-Term/0.4.22/dreamlonglll.Mini-Term.yaml new file mode 100644 index 000000000000..e14fbc3f110a --- /dev/null +++ b/manifests/d/dreamlonglll/Mini-Term/0.4.22/dreamlonglll.Mini-Term.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: dreamlonglll.Mini-Term +PackageVersion: 0.4.22 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 From 3ef8a95d6e420c185e238dccd7d5ae844754cfe5 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 30 May 2026 00:51:29 +0800 Subject: [PATCH 81/82] New version: KDE.Kate version 26.04.2 (26.04-11769) (#381242) --- .../KDE/Kate/26.04.2/KDE.Kate.installer.yaml | 23 ++++++++ .../Kate/26.04.2/KDE.Kate.locale.en-US.yaml | 58 +++++++++++++++++++ .../Kate/26.04.2/KDE.Kate.locale.zh-CN.yaml | 50 ++++++++++++++++ manifests/k/KDE/Kate/26.04.2/KDE.Kate.yaml | 8 +++ 4 files changed, 139 insertions(+) create mode 100644 manifests/k/KDE/Kate/26.04.2/KDE.Kate.installer.yaml create mode 100644 manifests/k/KDE/Kate/26.04.2/KDE.Kate.locale.en-US.yaml create mode 100644 manifests/k/KDE/Kate/26.04.2/KDE.Kate.locale.zh-CN.yaml create mode 100644 manifests/k/KDE/Kate/26.04.2/KDE.Kate.yaml diff --git a/manifests/k/KDE/Kate/26.04.2/KDE.Kate.installer.yaml b/manifests/k/KDE/Kate/26.04.2/KDE.Kate.installer.yaml new file mode 100644 index 000000000000..0bfecf522063 --- /dev/null +++ b/manifests/k/KDE/Kate/26.04.2/KDE.Kate.installer.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: KDE.Kate +PackageVersion: 26.04.2 +InstallerType: nullsoft +UpgradeBehavior: install +ProductCode: Kate +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://cdn.kde.org/ci-builds/utilities/kate/release-26.04/windows/kate-release_26.04-11769-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 2F343657A58EC3123EB1F2D52B9FCB723260848FD6AF53908190DCDA11113067 + InstallerSwitches: + Custom: /CurrentUser +- Architecture: x64 + Scope: machine + InstallerUrl: https://cdn.kde.org/ci-builds/utilities/kate/release-26.04/windows/kate-release_26.04-11769-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 2F343657A58EC3123EB1F2D52B9FCB723260848FD6AF53908190DCDA11113067 + InstallerSwitches: + Custom: /AllUsers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/k/KDE/Kate/26.04.2/KDE.Kate.locale.en-US.yaml b/manifests/k/KDE/Kate/26.04.2/KDE.Kate.locale.en-US.yaml new file mode 100644 index 000000000000..9e9203ec088b --- /dev/null +++ b/manifests/k/KDE/Kate/26.04.2/KDE.Kate.locale.en-US.yaml @@ -0,0 +1,58 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: KDE.Kate +PackageVersion: 26.04.2 +PackageLocale: en-US +Publisher: KDE e.V. +PublisherUrl: https://kde.org/ +PublisherSupportUrl: https://kate-editor.org/support/ +PrivacyUrl: https://kde.org/privacypolicy/ +Author: KDE e.V. +PackageName: Kate +PackageUrl: https://kate-editor.org/ +License: LGPL-2.1-or-later +LicenseUrl: https://invent.kde.org/utilities/kate/-/blob/HEAD/LICENSES/LGPL-2.0-or-later.txt +Copyright: © 2020-2026 KDE Community +ShortDescription: Advanced Text Editor +Description: |- + Kate is a fast multi-document, multi-view text editor for programmers by KDE. It features stuff like LSP (Language Server Protocol) support, projects, multiple cursors and selections, git integration, folder wide search, horizontal and vertical splits, vi mode, syntax highlighting for 300+ languages, built-in terminal, dynamic word wrap and much more. It is available on Linux, BSD, Windows and MacOS. + Features: + - MDI, window splitting, window tabbing + - Spell checking + - CR, CRLF, LF newline support + - Encoding support (utf-8, utf-16, ascii etc.) + - Encoding conversion + - Regular expression based find & replace + - Syntax highlighting for 300+ languages + - Code and text folding + - Multiple cursors and multiple selections + - Block selection mode + - Auto indentation + - Auto completion support + - Shell integration + - Wide protocol support (http, ftp, ssh, webdav etc.) + - Extensible via plugins + - Integrated terminal + - Scriptable using JavaScript + - Vi mode + - Intellisense support using LSP (Language Server Protocol) + - DAP (Debug Adapter Protocol) support + - Vertical tabs/document list + - Lightweight project support. Kate can open folders as projects + - Code formatting using native formatters such as clang-format, prettier etc + - Built in filesystem browser + - CTags support + - Project wide and folder wide search + - Git integration +Tags: +- code +- coding +- editing +- editor +- programming +Documentations: +- DocumentLabel: Handbook + DocumentUrl: https://docs.kde.org/?application=kate +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/k/KDE/Kate/26.04.2/KDE.Kate.locale.zh-CN.yaml b/manifests/k/KDE/Kate/26.04.2/KDE.Kate.locale.zh-CN.yaml new file mode 100644 index 000000000000..e3850c9eb6b6 --- /dev/null +++ b/manifests/k/KDE/Kate/26.04.2/KDE.Kate.locale.zh-CN.yaml @@ -0,0 +1,50 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: KDE.Kate +PackageVersion: 26.04.2 +PackageLocale: zh-CN +PublisherUrl: https://kde.org/zh-cn/ +PublisherSupportUrl: https://kate-editor.org/zh-cn/support/ +PackageUrl: https://kate-editor.org/zh-cn/ +ShortDescription: 多功能文本编辑器 +Description: |- + Kate 是 KDE 为程序员量身定制的一款轻快的多文档、多视图文本编辑器。它的功能丰富,支持 LSP (Language Server Protocol, 语言服务器协议)、项目、多光标、多个选择对象、Git 集成、文件夹内搜索、水平和垂直视图拆分、Vi 模式、300 多种语言的语法高亮、内置终端、动态换行等。它可在 Linux、BSD、Windows 和 macOS 上使用。 + 功能特性: + - 多文档界面 (MDI)、窗口拆分、标签页 + - 拼写检查 + - CR、CRLF、LF 换行支持 + - 编码支持 (UTF-8、UTF-16、ASCII 等) + - 编码转换 + - 基于正则表达式的查找和替换 + - 300 多种语言的语法高亮 + - 代码和文本折叠 + - 多光标和多个选择对象 + - 块选择模式 + - 自动缩进 + - 自动补全支持 + - 系统外壳程序集成 + - 支持多种类型的协议 (HTTP、FTP、SSH、WebDAV 等) + - 可通过插件扩展 + - 集成终端 + - 基于 JavaScript 实现的脚本编程 + - Vi 模式 + - Intellisense 支持 (基于 LSP/Language Server Protocol/语言服务器协议) + - DAP (Debug Adapter Protocol/调试适配器协议) 支持 + - 垂直标签页/文档列表 + - 轻量级项目支持。Kate 可以将文件夹作为工程打开 + - 使用本地格式化工具 (如 clang-format、prettier 等) 对代码进行格式化。 + - 内建在文件系统浏览器中 + - CTags 支持 + - 搜索整个项目和整个文件夹的内容 + - Git 集成 +Tags: +- 代码 +- 编程 +- 编辑 +- 编辑器 +Documentations: +- DocumentLabel: 手册 + DocumentUrl: https://docs.kde.org/?application=kate +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/k/KDE/Kate/26.04.2/KDE.Kate.yaml b/manifests/k/KDE/Kate/26.04.2/KDE.Kate.yaml new file mode 100644 index 000000000000..03938e3b11e4 --- /dev/null +++ b/manifests/k/KDE/Kate/26.04.2/KDE.Kate.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: KDE.Kate +PackageVersion: 26.04.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From c153718bfb03be0d2cb1ccbc7fbf43c90ff421d7 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 30 May 2026 00:51:43 +0800 Subject: [PATCH 82/82] Update: KDE.Marknote version 1.5.2 (1714) (#381244) --- .../k/KDE/Marknote/1.5.2/KDE.Marknote.installer.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/manifests/k/KDE/Marknote/1.5.2/KDE.Marknote.installer.yaml b/manifests/k/KDE/Marknote/1.5.2/KDE.Marknote.installer.yaml index bc5c398fdca7..5ed8cb05ec57 100644 --- a/manifests/k/KDE/Marknote/1.5.2/KDE.Marknote.installer.yaml +++ b/manifests/k/KDE/Marknote/1.5.2/KDE.Marknote.installer.yaml @@ -9,14 +9,14 @@ ProductCode: marknote Installers: - Architecture: x64 Scope: user - InstallerUrl: https://cdn.kde.org/ci-builds/office/marknote/master/windows/marknote-master-1686-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 1E1448BFD19AADDF6A9621B6C88A6A3EBA3E48B8B3A26672FBA65F16A8B2BB88 + InstallerUrl: https://cdn.kde.org/ci-builds/office/marknote/master/windows/marknote-master-1714-windows-cl-msvc2022-x86_64.exe + InstallerSha256: FC73560F71D159B5ED213C6331ACC231B5D3816240C998098049D7ECFEE39F2F InstallerSwitches: Custom: /CurrentUser - Architecture: x64 Scope: machine - InstallerUrl: https://cdn.kde.org/ci-builds/office/marknote/master/windows/marknote-master-1686-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 1E1448BFD19AADDF6A9621B6C88A6A3EBA3E48B8B3A26672FBA65F16A8B2BB88 + InstallerUrl: https://cdn.kde.org/ci-builds/office/marknote/master/windows/marknote-master-1714-windows-cl-msvc2022-x86_64.exe + InstallerSha256: FC73560F71D159B5ED213C6331ACC231B5D3816240C998098049D7ECFEE39F2F InstallerSwitches: Custom: /AllUsers ManifestType: installer