From cefc32013533fcf9fa932fd984a7cf629028605b 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, 27 Mar 2026 16:21:36 +0100 Subject: [PATCH 001/162] Fix slow MSI package installations in Windows Sandbox (#340671) --- Tools/SandboxTest.ps1 | 81 ++++++++++++++++++++++--------------------- 1 file changed, 41 insertions(+), 40 deletions(-) diff --git a/Tools/SandboxTest.ps1 b/Tools/SandboxTest.ps1 index 912124f4685a..0aa67b02b452 100644 --- a/Tools/SandboxTest.ps1 +++ b/Tools/SandboxTest.ps1 @@ -8,11 +8,11 @@ ### [CmdletBinding()] -Param( +param( # Manifest [Parameter(Position = 0, HelpMessage = 'The Manifest to install in the Sandbox.')] [ValidateScript({ - if (-Not (Test-Path -Path $_)) { throw "$_ does not exist" } + if (-not (Test-Path -Path $_)) { throw "$_ does not exist" } return $true })] [String] $Manifest, @@ -22,7 +22,7 @@ Param( # MapFolder [Parameter(HelpMessage = 'The folder to map in the Sandbox.')] [ValidateScript({ - if (-Not (Test-Path -Path $_ -PathType Container)) { throw "$_ is not a folder." } + if (-not (Test-Path -Path $_ -PathType Container)) { throw "$_ is not a folder." } return $true })] [String] $MapFolder = $pwd, @@ -165,7 +165,7 @@ function Initialize-Folder { #### function Get-Release { [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSAvoidUsingConvertToSecureStringWithPlainText', '', - Justification='The standard workflow that users use with other applications requires the use of plaintext GitHub Access Tokens')] + Justification = 'The standard workflow that users use with other applications requires the use of plaintext GitHub Access Tokens')] param ( [Parameter()] @@ -183,8 +183,7 @@ function Get-Release { Write-Verbose 'Adding Bearer Token Authentication to Releases API Request' $requestParameters.Add('Authentication', 'Bearer') $requestParameters.Add('Token', $(ConvertTo-SecureString $GitHubToken -AsPlainText)) - } - else { + } else { # No token was provided or the token has expired # If an invalid token was provided, an exception will have been thrown before this code is reached Write-Warning @" @@ -243,8 +242,7 @@ function Get-RemoteContent { try { $downloadTask = $script:HttpClient.GetByteArrayAsync($URL) [System.IO.File]::WriteAllBytes($localfile.FullName, $downloadTask.Result) - } - catch { + } catch { # If the download fails, write a zero-byte file anyways $null | Out-File $localFile.FullName } @@ -347,7 +345,7 @@ function Test-FileChecksum { #### function Test-GithubToken { [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSAvoidUsingConvertToSecureStringWithPlainText', '', - Justification='The standard workflow that users use with other applications requires the use of plaintext GitHub Access Tokens')] + Justification = 'The standard workflow that users use with other applications requires the use of plaintext GitHub Access Tokens')] param ( [Parameter(Mandatory = $true)] @@ -403,7 +401,7 @@ function Test-GithubToken { $tokenExpirationDays = [Math]::Round($tokenExpirationDays, 2) # We don't need all the precision the system provides if ($cachedExpirationForParsing -eq [System.DateTime]::MaxValue.ToLongDateString().Trim()) { - Write-Verbose "The cached token contained content. It is set to never expire" + Write-Verbose 'The cached token contained content. It is set to never expire' return $true } @@ -416,21 +414,18 @@ function Test-GithubToken { Write-Verbose 'The cached token contained content, but it could not be parsed as a date. It will be re-validated' Invoke-FileCleanup -FilePaths $cachedToken.FullName # Do not return anything, since the token will need to be re-validated - } - else { + } else { Write-Verbose "The cached token contained content, but the token expired $([Math]::Abs($tokenExpirationDays)) days ago" # Leave the cached token so that it doesn't throw script exceptions in the future # Invoke-FileCleanup -FilePaths $cachedToken.FullName return $false } - } - else { + } else { # Either the token was empty, or the cached token is expired. Remove the cached token so that re-validation # of the token will update the date the token was cached if it is still valid Invoke-FileCleanup -FilePaths $cachedToken.FullName } - } - else { + } else { Write-Verbose 'Token was not found in the cache' } @@ -458,18 +453,18 @@ function Test-GithubToken { Write-Verbose 'Token validated successfully. Adding to cache' # Trim off any non-digit characters from the end # Strip off the array wrapper since it is no longer needed - $tokenExpiration = $tokenExpiration[0] -replace '[^0-9]+$','' + $tokenExpiration = $tokenExpiration[0] -replace '[^0-9]+$', '' # If the token doesn't expire, write a special value to the file if (!$tokenExpiration -or [string]::IsNullOrWhiteSpace($tokenExpiration)) { - Write-Debug "Token expiration was empty, setting it to maximum" + Write-Debug 'Token expiration was empty, setting it to maximum' $tokenExpiration = [System.DateTime]::MaxValue } # Try parsing the value to a datetime before storing it - if ([DateTime]::TryParse($tokenExpiration,[ref]$tokenExpiration)) { + if ([DateTime]::TryParse($tokenExpiration, [ref]$tokenExpiration)) { Write-Debug "Token expiration successfully parsed as DateTime ($tokenExpiration)" } else { # TryParse Failed - Write-Warning "Could not parse expiration date as a DateTime object. It will be set to the minimum value" + Write-Warning 'Could not parse expiration date as a DateTime object. It will be set to the minimum value' $tokenExpiration = [System.DateTime]::MinValue } # Explicitly convert to a string here to avoid implicit casting @@ -483,7 +478,7 @@ function Test-GithubToken { #### Start of main script #### # Check if Windows Sandbox is enabled -if (-Not (Get-Command 'WindowsSandbox' -ErrorAction SilentlyContinue)) { +if (-not (Get-Command 'WindowsSandbox' -ErrorAction SilentlyContinue)) { Write-Error -ErrorAction Continue -Category NotInstalled -Message @' Windows Sandbox does not seem to be available. Check the following URL for prerequisites and further details: https://docs.microsoft.com/windows/security/threat-protection/windows-sandbox/windows-sandbox-overview @@ -501,20 +496,20 @@ if (!$SkipManifestValidation -and ![String]::IsNullOrWhiteSpace($Manifest)) { Write-Error -Category NotInstalled 'WinGet is not installed. Manifest cannot be validated' -ErrorAction Continue Invoke-CleanExit -ExitCode 3 } - Write-Information "--> Validating Manifest" + Write-Information '--> Validating Manifest' $validateCommandOutput = - & { - # Store current output encoding setting - $prevOutEnc = [Console]::OutputEncoding - # Set [Console]::OutputEncoding to UTF-8 since winget uses UTF-8 for output - [Console]::OutputEncoding = $OutputEncoding = [System.Text.Utf8Encoding]::new() + & { + # Store current output encoding setting + $prevOutEnc = [Console]::OutputEncoding + # Set [Console]::OutputEncoding to UTF-8 since winget uses UTF-8 for output + [Console]::OutputEncoding = $OutputEncoding = [System.Text.Utf8Encoding]::new() - winget.exe validate $Manifest + winget.exe validate $Manifest - # Reset the encoding to the previous values - [Console]::OutputEncoding = $prevOutEnc - } - switch ($LASTEXITCODE) { + # Reset the encoding to the previous values + [Console]::OutputEncoding = $prevOutEnc + } + switch ($LASTEXITCODE) { '-1978335191' { # Skip the first line and the empty last line $validateCommandOutput | Select-Object -Skip 1 -SkipLast 1 | ForEach-Object { @@ -532,7 +527,7 @@ if (!$SkipManifestValidation -and ![String]::IsNullOrWhiteSpace($Manifest)) { Write-Warning 'Manifest validation succeeded with warnings' Start-Sleep -Seconds 5 # Allow the user 5 seconds to read the warnings before moving on } - Default { + default { Write-Information $validateCommandOutput.Trim() # On the success, print an empty line after the command output } } @@ -595,8 +590,7 @@ if ($script:AppInstallerParsedVersion -ge [System.Version]'1.9.25180') { Algorithm = 'SHA256' SaveTo = (Join-Path -Path $script:AppInstallerReleaseAssetsFolder -ChildPath $script:DependenciesZipFileName) } -} -else { +} else { $script:DependencySource = [DependencySources]::Legacy # Add the VCLibs to the dependencies Write-Debug 'Adding VCLibs UWP to dependency list' @@ -626,8 +620,7 @@ else { Algorithm = 'SHA256' SaveTo = (Join-Path -Path $script:DependenciesCacheFolder -ChildPath 'Microsoft.UI.Xaml.2.7.x64.appx') } - } - else { + } else { # Add Xaml 2.8 to the dependencies Write-Debug 'Adding Microsoft.UI.Xaml (v2.8) to dependency list' $script:AppInstallerDependencies += @{ @@ -712,7 +705,7 @@ $script:SandboxWinGetSettings | ConvertTo-Json | Out-File -FilePath (Join-Path - foreach ($dependency in $script:AppInstallerDependencies) { Copy-Item -Path $dependency.SaveTo -Destination $script:TestDataFolder -ErrorAction SilentlyContinue } # Create a script file from the script parameter -if (-Not [String]::IsNullOrWhiteSpace($Script)) { +if (-not [String]::IsNullOrWhiteSpace($Script)) { Write-Verbose "Creating script file from 'Script' argument" $Script | Out-File -Path (Join-Path $script:TestDataFolder -ChildPath 'BoundParameterScript.ps1') } @@ -779,6 +772,14 @@ Tip: you can type 'Update-EnvironmentVariables' to update your environment varia Write-Host @' +--> Fixing slow MSI package installers +'@ + +reg add "HKLM\SYSTEM\CurrentControlSet\Control\CI\Policy" /v "VerifiedAndReputablePolicyState" /t REG_DWORD /d 0 /f # See: https://github.com/microsoft/Windows-Sandbox/issues/68#issuecomment-2754867968 +CiTool.exe --refresh --json | Out-Null # Refreshes policy. Use json output param or else it will prompt for confirmation, even with Out-Null + +Write-Host @' + --> Configuring Winget '@ winget settings --Enable LocalManifestFiles @@ -860,7 +861,7 @@ Write-Information @" - Configuring Winget "@ -if (-Not [String]::IsNullOrWhiteSpace($Manifest)) { +if (-not [String]::IsNullOrWhiteSpace($Manifest)) { Write-Information @" - Installing the Manifest $(Split-Path $Manifest -Leaf) - Refreshing environment variables @@ -868,7 +869,7 @@ if (-Not [String]::IsNullOrWhiteSpace($Manifest)) { "@ } -if (-Not [String]::IsNullOrWhiteSpace($Script)) { +if (-not [String]::IsNullOrWhiteSpace($Script)) { Write-Information @" - Running the following script: { $Script From 9e0cad6296e3f0d056e975b3b38fdb0639950fef Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Fri, 27 Mar 2026 23:22:54 +0800 Subject: [PATCH 002/162] New version: TheDocumentFoundation.LibreOffice.SDK version 26.2.2.2 (#352601) --- ...tFoundation.LibreOffice.SDK.installer.yaml | 37 +++++++++++++++++++ ...undation.LibreOffice.SDK.locale.en-US.yaml | 24 ++++++++++++ ...undation.LibreOffice.SDK.locale.zh-CN.yaml | 23 ++++++++++++ ...TheDocumentFoundation.LibreOffice.SDK.yaml | 8 ++++ 4 files changed, 92 insertions(+) create mode 100644 manifests/t/TheDocumentFoundation/LibreOffice/SDK/26.2.2.2/TheDocumentFoundation.LibreOffice.SDK.installer.yaml create mode 100644 manifests/t/TheDocumentFoundation/LibreOffice/SDK/26.2.2.2/TheDocumentFoundation.LibreOffice.SDK.locale.en-US.yaml create mode 100644 manifests/t/TheDocumentFoundation/LibreOffice/SDK/26.2.2.2/TheDocumentFoundation.LibreOffice.SDK.locale.zh-CN.yaml create mode 100644 manifests/t/TheDocumentFoundation/LibreOffice/SDK/26.2.2.2/TheDocumentFoundation.LibreOffice.SDK.yaml diff --git a/manifests/t/TheDocumentFoundation/LibreOffice/SDK/26.2.2.2/TheDocumentFoundation.LibreOffice.SDK.installer.yaml b/manifests/t/TheDocumentFoundation/LibreOffice/SDK/26.2.2.2/TheDocumentFoundation.LibreOffice.SDK.installer.yaml new file mode 100644 index 000000000000..47a0221f41b7 --- /dev/null +++ b/manifests/t/TheDocumentFoundation/LibreOffice/SDK/26.2.2.2/TheDocumentFoundation.LibreOffice.SDK.installer.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: TheDocumentFoundation.LibreOffice.SDK +PackageVersion: 26.2.2.2 +InstallerType: msi +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLLOCATION="" +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: TheDocumentFoundation.LibreOffice +Installers: +- Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_sdk.msi + InstallerSha256: 4121D5E560D810CFC2A4215BD3743D24CD411AF07F858AF24A02962FC92DE6FF + ProductCode: '{45FA0E6F-6886-48AE-9D86-2B6480160364}' + AppsAndFeaturesEntries: + - ProductCode: '{45FA0E6F-6886-48AE-9D86-2B6480160364}' + UpgradeCode: '{EFD2F52B-6C0E-4F84-9E95-79C5F69DF479}' +- Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_sdk.msi + InstallerSha256: 3E9C1D68829A264CB10E640EC2D9EFAB98475675630B0E73553CFAAB84424463 + ProductCode: '{2F3B9D04-2CF1-424F-A789-262713C1D8EA}' + AppsAndFeaturesEntries: + - ProductCode: '{2F3B9D04-2CF1-424F-A789-262713C1D8EA}' + UpgradeCode: '{EFD2F52B-6C0E-4F84-9E95-79C5F69DF479}' +- Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_sdk.msi + InstallerSha256: ABE71C0E1F3EB4EB22436765A72731DD962B0D55C95C3C040FE62F145509BDA8 + ProductCode: '{9A249E9A-F8DA-4503-ACEA-77829E78E205}' + AppsAndFeaturesEntries: + - ProductCode: '{9A249E9A-F8DA-4503-ACEA-77829E78E205}' + UpgradeCode: '{EFD2F52B-6C0E-4F84-9E95-79C5F69DF479}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/TheDocumentFoundation/LibreOffice/SDK/26.2.2.2/TheDocumentFoundation.LibreOffice.SDK.locale.en-US.yaml b/manifests/t/TheDocumentFoundation/LibreOffice/SDK/26.2.2.2/TheDocumentFoundation.LibreOffice.SDK.locale.en-US.yaml new file mode 100644 index 000000000000..add4e88d9d60 --- /dev/null +++ b/manifests/t/TheDocumentFoundation/LibreOffice/SDK/26.2.2.2/TheDocumentFoundation.LibreOffice.SDK.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: TheDocumentFoundation.LibreOffice.SDK +PackageVersion: 26.2.2.2 +PackageLocale: en-US +Publisher: The Document Foundation +PublisherUrl: https://www.documentfoundation.org/ +PublisherSupportUrl: https://www.libreoffice.org/get-help/feedback/ +PrivacyUrl: https://www.libreoffice.org/about-us/privacy/ +Author: The Document Foundation +PackageName: LibreOffice SDK +PackageUrl: https://www.libreoffice.org/ +License: MPL-2.0 +LicenseUrl: https://www.libreoffice.org/download/license/ +Copyright: Copyright © 2000-2026 LibreOffice contributors. +CopyrightUrl: https://wiki.documentfoundation.org/TDF/Policies/Trademark_Policy +ShortDescription: LibreOffice SDK is a development kit for LibreOffice, which eases the development of office components. +Moniker: libreoffice-sdk +Tags: +- libreoffice +- sdk +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/TheDocumentFoundation/LibreOffice/SDK/26.2.2.2/TheDocumentFoundation.LibreOffice.SDK.locale.zh-CN.yaml b/manifests/t/TheDocumentFoundation/LibreOffice/SDK/26.2.2.2/TheDocumentFoundation.LibreOffice.SDK.locale.zh-CN.yaml new file mode 100644 index 000000000000..65d5022161da --- /dev/null +++ b/manifests/t/TheDocumentFoundation/LibreOffice/SDK/26.2.2.2/TheDocumentFoundation.LibreOffice.SDK.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: TheDocumentFoundation.LibreOffice.SDK +PackageVersion: 26.2.2.2 +PackageLocale: zh-CN +Publisher: The Document Foundation +PublisherUrl: https://www.documentfoundation.org/ +PublisherSupportUrl: https://zh-cn.libreoffice.org/get-help/feedback/ +PrivacyUrl: https://www.libreoffice.org/about-us/privacy/ +Author: The Document Foundation +PackageName: LibreOffice SDK +PackageUrl: https://zh-cn.libreoffice.org/ +License: MPL-2.0 +LicenseUrl: https://www.libreoffice.org/download/license/ +Copyright: 版权所有 © 2000-2026 LibreOffice 的贡献者。 +CopyrightUrl: https://wiki.documentfoundation.org/TDF/Policies/Trademark_Policy +ShortDescription: LibreOffice SDK 是 LibreOffice 的开发工具包,可简化办公组件的开发。 +Tags: +- libreoffice +- sdk +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/t/TheDocumentFoundation/LibreOffice/SDK/26.2.2.2/TheDocumentFoundation.LibreOffice.SDK.yaml b/manifests/t/TheDocumentFoundation/LibreOffice/SDK/26.2.2.2/TheDocumentFoundation.LibreOffice.SDK.yaml new file mode 100644 index 000000000000..9e6b4c060011 --- /dev/null +++ b/manifests/t/TheDocumentFoundation/LibreOffice/SDK/26.2.2.2/TheDocumentFoundation.LibreOffice.SDK.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: TheDocumentFoundation.LibreOffice.SDK +PackageVersion: 26.2.2.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 5ad7ee8dc7aa7effe0835281ee61031ec7a4f3ec Mon Sep 17 00:00:00 2001 From: yukimemi Date: Sat, 28 Mar 2026 00:24:04 +0900 Subject: [PATCH 003/162] New version: yukimemi.shun version 3.7.2 (#352606) --- .../shun/3.7.2/yukimemi.shun.installer.yaml | 27 ++++++++++++ .../3.7.2/yukimemi.shun.locale.en-US.yaml | 44 +++++++++++++++++++ .../y/yukimemi/shun/3.7.2/yukimemi.shun.yaml | 8 ++++ 3 files changed, 79 insertions(+) create mode 100644 manifests/y/yukimemi/shun/3.7.2/yukimemi.shun.installer.yaml create mode 100644 manifests/y/yukimemi/shun/3.7.2/yukimemi.shun.locale.en-US.yaml create mode 100644 manifests/y/yukimemi/shun/3.7.2/yukimemi.shun.yaml diff --git a/manifests/y/yukimemi/shun/3.7.2/yukimemi.shun.installer.yaml b/manifests/y/yukimemi/shun/3.7.2/yukimemi.shun.installer.yaml new file mode 100644 index 000000000000..abc556bca7e8 --- /dev/null +++ b/manifests/y/yukimemi/shun/3.7.2/yukimemi.shun.installer.yaml @@ -0,0 +1,27 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: yukimemi.shun +PackageVersion: 3.7.2 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /S + SilentWithProgress: /S +UpgradeBehavior: install +ProductCode: shun +ReleaseDate: 2026-03-26 +AppsAndFeaturesEntries: +- ProductCode: shun +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\shun' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/yukimemi/shun/releases/download/v3.7.2/shun_3.7.2_x64-setup.exe + InstallerSha256: EE1E064849FC349B960CD83FC4252B802AEACEB57BE18086AA33FE906391248C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/y/yukimemi/shun/3.7.2/yukimemi.shun.locale.en-US.yaml b/manifests/y/yukimemi/shun/3.7.2/yukimemi.shun.locale.en-US.yaml new file mode 100644 index 000000000000..4ac7ae00c22e --- /dev/null +++ b/manifests/y/yukimemi/shun/3.7.2/yukimemi.shun.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: yukimemi.shun +PackageVersion: 3.7.2 +PackageLocale: en-US +Publisher: yukimemi +PublisherUrl: https://github.com/yukimemi +PublisherSupportUrl: https://github.com/yukimemi/shun/issues +PackageName: shun +PackageUrl: https://github.com/yukimemi/shun +License: MIT +LicenseUrl: https://github.com/yukimemi/shun/blob/HEAD/LICENSE +ShortDescription: A cross-platform, keyboard-driven minimal launcher like Alfred/Raycast +Description: |- + shun (瞬) is a cross-platform, keyboard-driven minimal launcher built with Tauri. + Features include fuzzy/exact search, launch history with frecency sorting, args mode, + path & URL completion, slash commands, auto-update, theming, and more. +Moniker: shun +Tags: +- alfred +- keyboard +- launcher +- productivity +- raycast +- tauri +ReleaseNotes: |- + What's Changed + See commits for details. + Installation + Download the installer for your platform from the assets below: + ────────┬──────────────────────────────────────────────────────────────────────────── + Platform│File + ────────┼──────────────────────────────────────────────────────────────────────────── + Windows │*-setup.exe (installer, no admin required) or shun-windows-x64.zip + │(portable) + ────────┼──────────────────────────────────────────────────────────────────────────── + macOS │.dmg + ────────┼──────────────────────────────────────────────────────────────────────────── + Linux │.AppImage or .deb + ────────┴──────────────────────────────────────────────────────────────────────────── +ReleaseNotesUrl: https://github.com/yukimemi/shun/releases/tag/v3.7.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/y/yukimemi/shun/3.7.2/yukimemi.shun.yaml b/manifests/y/yukimemi/shun/3.7.2/yukimemi.shun.yaml new file mode 100644 index 000000000000..73e9277dce2d --- /dev/null +++ b/manifests/y/yukimemi/shun/3.7.2/yukimemi.shun.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: yukimemi.shun +PackageVersion: 3.7.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 80472bf5fc2ee690cb2a99b70b0ebf9df568513c Mon Sep 17 00:00:00 2001 From: Tomislav Pericin Date: Fri, 27 Mar 2026 16:25:10 +0100 Subject: [PATCH 004/162] New version: ReversingLabs.SAFEViewer version 1.5.8 (#352609) --- .../ReversingLabs.SAFEViewer.installer.yaml | 20 +++++++++++++++++++ ...ReversingLabs.SAFEViewer.locale.en-US.yaml | 12 +++++++++++ .../1.5.8/ReversingLabs.SAFEViewer.yaml | 8 ++++++++ 3 files changed, 40 insertions(+) create mode 100644 manifests/r/ReversingLabs/SAFEViewer/1.5.8/ReversingLabs.SAFEViewer.installer.yaml create mode 100644 manifests/r/ReversingLabs/SAFEViewer/1.5.8/ReversingLabs.SAFEViewer.locale.en-US.yaml create mode 100644 manifests/r/ReversingLabs/SAFEViewer/1.5.8/ReversingLabs.SAFEViewer.yaml diff --git a/manifests/r/ReversingLabs/SAFEViewer/1.5.8/ReversingLabs.SAFEViewer.installer.yaml b/manifests/r/ReversingLabs/SAFEViewer/1.5.8/ReversingLabs.SAFEViewer.installer.yaml new file mode 100644 index 000000000000..321bb284bb06 --- /dev/null +++ b/manifests/r/ReversingLabs/SAFEViewer/1.5.8/ReversingLabs.SAFEViewer.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: ReversingLabs.SAFEViewer +PackageVersion: 1.5.8 +InstallerType: zip +NestedInstallerType: nullsoft +Installers: +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: rl-safe\rl-safe-viewer-installer-win-x64.exe + InstallerUrl: https://downloads.secure.software/rlSAFE158-Windows-x64.zip + InstallerSha256: A0ABD3E6D8A8BC3730F16BF173D83E320C390668D0EBF8542D493061826665C7 +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: rl-safe\rl-safe-viewer-installer-win-arm64.exe + InstallerUrl: https://downloads.secure.software/rlSAFE158-Windows-arm64.zip + InstallerSha256: 47936F217336CDEF211F69BE609607A43C959BAE8139D7A6BB242CC23736CC7B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/r/ReversingLabs/SAFEViewer/1.5.8/ReversingLabs.SAFEViewer.locale.en-US.yaml b/manifests/r/ReversingLabs/SAFEViewer/1.5.8/ReversingLabs.SAFEViewer.locale.en-US.yaml new file mode 100644 index 000000000000..a7e8c01d45d9 --- /dev/null +++ b/manifests/r/ReversingLabs/SAFEViewer/1.5.8/ReversingLabs.SAFEViewer.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.10.0.schema.json + +PackageIdentifier: ReversingLabs.SAFEViewer +PackageVersion: 1.5.8 +PackageLocale: en-US +Publisher: ReversingLabs +PackageName: SAFE Viewer +License: SAFE Viewer - EULA +ShortDescription: SAFE Viewer is a standalone application developed by ReversingLabs for working with the SAFE report in the RL-SAFE archive format. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/r/ReversingLabs/SAFEViewer/1.5.8/ReversingLabs.SAFEViewer.yaml b/manifests/r/ReversingLabs/SAFEViewer/1.5.8/ReversingLabs.SAFEViewer.yaml new file mode 100644 index 000000000000..2bb4b649a479 --- /dev/null +++ b/manifests/r/ReversingLabs/SAFEViewer/1.5.8/ReversingLabs.SAFEViewer.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: ReversingLabs.SAFEViewer +PackageVersion: 1.5.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From fa1e66586f0d08acadc959391e468a5aba1dbca3 Mon Sep 17 00:00:00 2001 From: Podman Desktop Bot <103741593+podman-desktop-bot@users.noreply.github.com> Date: Fri, 27 Mar 2026 16:26:15 +0100 Subject: [PATCH 005/162] New version: RedHat.Podman-Desktop version 1.26.2 (#352610) --- .../RedHat.Podman-Desktop.installer.yaml | 17 ++++++++++ .../RedHat.Podman-Desktop.locale.en-US.yaml | 31 +++++++++++++++++++ .../1.26.2/RedHat.Podman-Desktop.yaml | 8 +++++ 3 files changed, 56 insertions(+) create mode 100644 manifests/r/RedHat/Podman-Desktop/1.26.2/RedHat.Podman-Desktop.installer.yaml create mode 100644 manifests/r/RedHat/Podman-Desktop/1.26.2/RedHat.Podman-Desktop.locale.en-US.yaml create mode 100644 manifests/r/RedHat/Podman-Desktop/1.26.2/RedHat.Podman-Desktop.yaml diff --git a/manifests/r/RedHat/Podman-Desktop/1.26.2/RedHat.Podman-Desktop.installer.yaml b/manifests/r/RedHat/Podman-Desktop/1.26.2/RedHat.Podman-Desktop.installer.yaml new file mode 100644 index 000000000000..81685c0f4094 --- /dev/null +++ b/manifests/r/RedHat/Podman-Desktop/1.26.2/RedHat.Podman-Desktop.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: RedHat.Podman-Desktop +PackageVersion: 1.26.2 +InstallerType: nullsoft +Scope: machine +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/containers/podman-desktop/releases/download/v1.26.2/podman-desktop-1.26.2-setup-x64.exe + InstallerSha256: A8CFAB73BE4FB8F112B180C5A73D4AE8A328C4A3B9F65E208801A78B4C6C0377 +- Architecture: arm64 + InstallerUrl: https://github.com/containers/podman-desktop/releases/download/v1.26.2/podman-desktop-1.26.2-setup-arm64.exe + InstallerSha256: F0114EC370F449AB94EBA7219494093003EF698FA1340DCA678B0AE27B1CC07E +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-25 diff --git a/manifests/r/RedHat/Podman-Desktop/1.26.2/RedHat.Podman-Desktop.locale.en-US.yaml b/manifests/r/RedHat/Podman-Desktop/1.26.2/RedHat.Podman-Desktop.locale.en-US.yaml new file mode 100644 index 000000000000..584e3a3c5a1f --- /dev/null +++ b/manifests/r/RedHat/Podman-Desktop/1.26.2/RedHat.Podman-Desktop.locale.en-US.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: RedHat.Podman-Desktop +PackageVersion: 1.26.2 +PackageLocale: en-US +Publisher: RedHat +PublisherUrl: https://github.com/containers +PublisherSupportUrl: https://github.com/containers/podman-desktop/issues +PackageName: Podman Desktop +PackageUrl: https://github.com/containers/podman-desktop +License: Apache License 2.0 +Copyright: Copyright © 2022 Podman Desktop +ShortDescription: Manage different container engines from a single UI and tray icon +Tags: +- container +- containers +- desktop +- docker +- hacktoberfest +- kubernetes +- podman +- podman-desktop +- tray-application +- ui +ReleaseNotesUrl: https://github.com/podman-desktop/podman-desktop/releases/tag/v1.26.2 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/containers/podman-desktop/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RedHat/Podman-Desktop/1.26.2/RedHat.Podman-Desktop.yaml b/manifests/r/RedHat/Podman-Desktop/1.26.2/RedHat.Podman-Desktop.yaml new file mode 100644 index 000000000000..f14e1517a007 --- /dev/null +++ b/manifests/r/RedHat/Podman-Desktop/1.26.2/RedHat.Podman-Desktop.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: RedHat.Podman-Desktop +PackageVersion: 1.26.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From ffdef1c6f22da40bb75139f1fb9a9e3621e1406c Mon Sep 17 00:00:00 2001 From: Tom Plant Date: Sat, 28 Mar 2026 02:27:11 +1100 Subject: [PATCH 006/162] New version: DeterminedAI.CLI version 0.37.0 (#352931) --- .../0.37.0/DeterminedAI.CLI.installer.yaml | 22 +++++++++++++++++++ .../0.37.0/DeterminedAI.CLI.locale.en-US.yaml | 19 ++++++++++++++++ .../CLI/0.37.0/DeterminedAI.CLI.yaml | 8 +++++++ 3 files changed, 49 insertions(+) create mode 100644 manifests/d/DeterminedAI/CLI/0.37.0/DeterminedAI.CLI.installer.yaml create mode 100644 manifests/d/DeterminedAI/CLI/0.37.0/DeterminedAI.CLI.locale.en-US.yaml create mode 100644 manifests/d/DeterminedAI/CLI/0.37.0/DeterminedAI.CLI.yaml diff --git a/manifests/d/DeterminedAI/CLI/0.37.0/DeterminedAI.CLI.installer.yaml b/manifests/d/DeterminedAI/CLI/0.37.0/DeterminedAI.CLI.installer.yaml new file mode 100644 index 000000000000..1700ca158be0 --- /dev/null +++ b/manifests/d/DeterminedAI/CLI/0.37.0/DeterminedAI.CLI.installer.yaml @@ -0,0 +1,22 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: DeterminedAI.CLI +PackageVersion: 0.37.0 +Commands: +- det +ReleaseDate: 2024-10-01 +Installers: +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: det.exe + InstallerUrl: https://github.com/sirredbeard/determined-windows-cli/releases/download/0.37.0/determined-cli.zip + InstallerSha256: 8C3E2CA8DB44B31CEDD476E21CF02DE3E80273C934EC1A622D4F98E8070C7DCA +- Architecture: x64 + InstallerType: portable + InstallerUrl: https://github.com/sirredbeard/determined-windows-cli/releases/download/0.37.0/det.exe + InstallerSha256: 0566594BC903C0FA5EB5AE1AA11904F080C744D094A67C3867F5DE5CA9DC5354 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DeterminedAI/CLI/0.37.0/DeterminedAI.CLI.locale.en-US.yaml b/manifests/d/DeterminedAI/CLI/0.37.0/DeterminedAI.CLI.locale.en-US.yaml new file mode 100644 index 000000000000..c3f53bd4b97c --- /dev/null +++ b/manifests/d/DeterminedAI/CLI/0.37.0/DeterminedAI.CLI.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: DeterminedAI.CLI +PackageVersion: 0.37.0 +PackageLocale: en-US +Publisher: Determined AI +PublisherUrl: https://github.com/sirredbeard +PackageName: Determined AI CLI +PackageUrl: https://github.com/sirredbeard/determined-windows-cli +License: Apache-2.0 +LicenseUrl: https://github.com/sirredbeard/determined-windows-cli/blob/HEAD/LICENSE +ShortDescription: CLI tool for the Determined AI machine learning platform +Tags: +- determined-ai +ReleaseNotes: New Determined AI Windows CLI build +ReleaseNotesUrl: https://github.com/sirredbeard/determined-windows-cli/releases/tag/0.37.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DeterminedAI/CLI/0.37.0/DeterminedAI.CLI.yaml b/manifests/d/DeterminedAI/CLI/0.37.0/DeterminedAI.CLI.yaml new file mode 100644 index 000000000000..20477720d6dd --- /dev/null +++ b/manifests/d/DeterminedAI/CLI/0.37.0/DeterminedAI.CLI.yaml @@ -0,0 +1,8 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: DeterminedAI.CLI +PackageVersion: 0.37.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From adfbfbfdfa4394fb61dca47166714570ac960989 Mon Sep 17 00:00:00 2001 From: TheEragon Date: Fri, 27 Mar 2026 16:28:11 +0100 Subject: [PATCH 007/162] New version: FarManager.FarManager version 3.0.6666 (#352968) --- .../FarManager.FarManager.installer.yaml | 28 +++++++++++++++++++ .../FarManager.FarManager.locale.en-US.yaml | 25 +++++++++++++++++ .../3.0.6666/FarManager.FarManager.yaml | 8 ++++++ 3 files changed, 61 insertions(+) create mode 100644 manifests/f/FarManager/FarManager/3.0.6666/FarManager.FarManager.installer.yaml create mode 100644 manifests/f/FarManager/FarManager/3.0.6666/FarManager.FarManager.locale.en-US.yaml create mode 100644 manifests/f/FarManager/FarManager/3.0.6666/FarManager.FarManager.yaml diff --git a/manifests/f/FarManager/FarManager/3.0.6666/FarManager.FarManager.installer.yaml b/manifests/f/FarManager/FarManager/3.0.6666/FarManager.FarManager.installer.yaml new file mode 100644 index 000000000000..3fc3a86fe361 --- /dev/null +++ b/manifests/f/FarManager/FarManager/3.0.6666/FarManager.FarManager.installer.yaml @@ -0,0 +1,28 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: FarManager.FarManager +PackageVersion: 3.0.6666 +MinimumOSVersion: 10.0.0.0 +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://www.farmanager.com/files/Far30b6666.x64.20260324.msi + InstallerSha256: 66162FB5F25BAA577756515AA61AFE9E4F39E76C234B2CC6A66F47BF4CAD9C3F + ProductCode: '{46834CCE-097B-4BFA-8ABC-D95F0F155626}' +- Architecture: x86 + InstallerUrl: https://www.farmanager.com/files/Far30b6666.x86.20260324.msi + InstallerSha256: 521FE6D4C3B0AFF1C93280CEDCEF11221A195E9B3A49CABC141FFC0CA6246BC4 + ProductCode: '{809551DB-E3F0-4326-A490-1FBD548A3C1A}' +- Architecture: arm64 + InstallerUrl: https://www.farmanager.com/files/Far30b6666.ARM64.20260324.msi + InstallerSha256: 90887CA73ED0E74E551DDF9E4EBDF126A43FAD381D16B58F62201CCCAC2C5508 + ProductCode: '{E9E1F833-0778-458E-A7C7-F26F27E0D72D}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/f/FarManager/FarManager/3.0.6666/FarManager.FarManager.locale.en-US.yaml b/manifests/f/FarManager/FarManager/3.0.6666/FarManager.FarManager.locale.en-US.yaml new file mode 100644 index 000000000000..f449063b131e --- /dev/null +++ b/manifests/f/FarManager/FarManager/3.0.6666/FarManager.FarManager.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: FarManager.FarManager +PackageVersion: 3.0.6666 +PackageLocale: en-US +Publisher: Eugene Roshal & Far Group +PublisherUrl: https://www.farmanager.com/ +PublisherSupportUrl: https://www.farmanager.com/problems.php?l=en +Author: Eugene Roshal & Far Group +PackageName: Far Manager 3 +PackageUrl: https://www.farmanager.com/ +License: BSD-3-Clause +LicenseUrl: https://github.com/FarGroup/FarManager/blob/master/LICENSE +Copyright: Copyright (c) 1996 Eugene Roshal. Copyright (c) 2000 Far Group. All rights reserved. +CopyrightUrl: https://www.farmanager.com/license.php?l=en +ShortDescription: Far Manager is a program for managing files and archives in Windows operating systems. Far Manager works in text mode and provides a simple and intuitive interface for performing most of the necessary actions. +Moniker: farmanager3 +Tags: +- commander +- file-manager +- filemanager +- files +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/FarManager/FarManager/3.0.6666/FarManager.FarManager.yaml b/manifests/f/FarManager/FarManager/3.0.6666/FarManager.FarManager.yaml new file mode 100644 index 000000000000..99523d00ebf6 --- /dev/null +++ b/manifests/f/FarManager/FarManager/3.0.6666/FarManager.FarManager.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: FarManager.FarManager +PackageVersion: 3.0.6666 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 50eff1698d07eb4d9d6b619606a5fc8c22888326 Mon Sep 17 00:00:00 2001 From: hitalin Date: Sat, 28 Mar 2026 00:29:13 +0900 Subject: [PATCH 008/162] New version: Hitalin.NoteDeck version 0.8.17 (#352979) --- .../0.8.17/Hitalin.NoteDeck.installer.yaml | 21 +++++++++++++ .../0.8.17/Hitalin.NoteDeck.locale.en-US.yaml | 24 ++++++++++++++ .../0.8.17/Hitalin.NoteDeck.locale.ja-JP.yaml | 31 +++++++++++++++++++ .../NoteDeck/0.8.17/Hitalin.NoteDeck.yaml | 8 +++++ 4 files changed, 84 insertions(+) create mode 100644 manifests/h/Hitalin/NoteDeck/0.8.17/Hitalin.NoteDeck.installer.yaml create mode 100644 manifests/h/Hitalin/NoteDeck/0.8.17/Hitalin.NoteDeck.locale.en-US.yaml create mode 100644 manifests/h/Hitalin/NoteDeck/0.8.17/Hitalin.NoteDeck.locale.ja-JP.yaml create mode 100644 manifests/h/Hitalin/NoteDeck/0.8.17/Hitalin.NoteDeck.yaml diff --git a/manifests/h/Hitalin/NoteDeck/0.8.17/Hitalin.NoteDeck.installer.yaml b/manifests/h/Hitalin/NoteDeck/0.8.17/Hitalin.NoteDeck.installer.yaml new file mode 100644 index 000000000000..c09ae71e3115 --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.17/Hitalin.NoteDeck.installer.yaml @@ -0,0 +1,21 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.17 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +ProductCode: NoteDeck +ReleaseDate: 2026-03-27 +AppsAndFeaturesEntries: +- Publisher: notedeck + ProductCode: NoteDeck +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\NoteDeck' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/hitalin/notedeck/releases/download/v0.8.17/NoteDeck-0.8.17-windows-x64-setup.exe + InstallerSha256: D3947D3D67F4449206F1795343272AEDBC8A4F197F812A46AD752DED3A2CA1D0 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.8.17/Hitalin.NoteDeck.locale.en-US.yaml b/manifests/h/Hitalin/NoteDeck/0.8.17/Hitalin.NoteDeck.locale.en-US.yaml new file mode 100644 index 000000000000..4333c95e8fb2 --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.17/Hitalin.NoteDeck.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.17 +PackageLocale: en-US +Publisher: hitalin +PublisherUrl: https://github.com/hitalin +PackageName: NoteDeck +PackageUrl: https://github.com/hitalin/notedeck +License: AGPL-3.0 +LicenseUrl: https://github.com/hitalin/notedeck/blob/main/LICENSE +ShortDescription: A multi-platform deck client for Misskey and its forks +Description: |- + NoteDeck is a deck client for Misskey and its forks. + It provides efficient multi-server timeline viewing with features like local full-text search, + AI integration, and localhost API that are only possible with a native desktop application. +Tags: +- deck +- fediverse +- misskey +- social-media +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.8.17/Hitalin.NoteDeck.locale.ja-JP.yaml b/manifests/h/Hitalin/NoteDeck/0.8.17/Hitalin.NoteDeck.locale.ja-JP.yaml new file mode 100644 index 000000000000..270748e99c11 --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.17/Hitalin.NoteDeck.locale.ja-JP.yaml @@ -0,0 +1,31 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.17 +PackageLocale: ja-JP +Publisher: hitalin +PublisherUrl: https://github.com/hitalin +PublisherSupportUrl: https://github.com/hitalin/notedeck/issues +PackageName: NoteDeck +PackageUrl: https://github.com/hitalin/notedeck +License: AGPL-3.0 +LicenseUrl: https://github.com/hitalin/notedeck/blob/HEAD/LICENSE +ShortDescription: Misskey とそのフォークに対応したマルチプラットフォーム対応デッキクライアント +Description: |- + NoteDeck は Misskey とそのフォークに対応したデッキクライアントです。 + 複数サーバーのタイムラインを効率よく閲覧でき、ローカル全文検索、AI 統合、localhost API など + デスクトップネイティブならではの機能を備えています。 +Tags: +- deck +- fediverse +- misskey +- social-media +ReleaseNotes: |- + What's Changed + Other Changes + - Release v0.8.17 by @hitalin in #246 + Full Changelog: v0.8.16...v0.8.17 +ReleaseNotesUrl: https://github.com/hitalin/notedeck/releases/tag/v0.8.17 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.8.17/Hitalin.NoteDeck.yaml b/manifests/h/Hitalin/NoteDeck/0.8.17/Hitalin.NoteDeck.yaml new file mode 100644 index 000000000000..6cb24a9ecf2f --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.17/Hitalin.NoteDeck.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.17 +DefaultLocale: ja-JP +ManifestType: version +ManifestVersion: 1.12.0 From b8b479306a00098c186688ff793b57fc89b249bb Mon Sep 17 00:00:00 2001 From: hitalin Date: Sat, 28 Mar 2026 00:30:29 +0900 Subject: [PATCH 009/162] New version: Hitalin.NoteDeck version 0.8.18 (#352980) --- .../0.8.18/Hitalin.NoteDeck.installer.yaml | 22 +++++++++++++ .../0.8.18/Hitalin.NoteDeck.locale.en-US.yaml | 24 ++++++++++++++ .../0.8.18/Hitalin.NoteDeck.locale.ja-JP.yaml | 31 +++++++++++++++++++ .../NoteDeck/0.8.18/Hitalin.NoteDeck.yaml | 8 +++++ 4 files changed, 85 insertions(+) create mode 100644 manifests/h/Hitalin/NoteDeck/0.8.18/Hitalin.NoteDeck.installer.yaml create mode 100644 manifests/h/Hitalin/NoteDeck/0.8.18/Hitalin.NoteDeck.locale.en-US.yaml create mode 100644 manifests/h/Hitalin/NoteDeck/0.8.18/Hitalin.NoteDeck.locale.ja-JP.yaml create mode 100644 manifests/h/Hitalin/NoteDeck/0.8.18/Hitalin.NoteDeck.yaml diff --git a/manifests/h/Hitalin/NoteDeck/0.8.18/Hitalin.NoteDeck.installer.yaml b/manifests/h/Hitalin/NoteDeck/0.8.18/Hitalin.NoteDeck.installer.yaml new file mode 100644 index 000000000000..abbb6d72a85d --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.18/Hitalin.NoteDeck.installer.yaml @@ -0,0 +1,22 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.18 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +ProductCode: NoteDeck +ReleaseDate: 2026-03-27 +AppsAndFeaturesEntries: +- Publisher: notedeck + DisplayVersion: 0.8.17 + ProductCode: NoteDeck +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\NoteDeck' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/hitalin/notedeck/releases/download/v0.8.18/NoteDeck-0.8.18-windows-x64-setup.exe + InstallerSha256: 6BF133DFF256E5C3A0DBD41EC572D5F8294901EACA55E0B70CC1025263DEC8F0 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.8.18/Hitalin.NoteDeck.locale.en-US.yaml b/manifests/h/Hitalin/NoteDeck/0.8.18/Hitalin.NoteDeck.locale.en-US.yaml new file mode 100644 index 000000000000..80e0feac1cf5 --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.18/Hitalin.NoteDeck.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.18 +PackageLocale: en-US +Publisher: hitalin +PublisherUrl: https://github.com/hitalin +PackageName: NoteDeck +PackageUrl: https://github.com/hitalin/notedeck +License: AGPL-3.0 +LicenseUrl: https://github.com/hitalin/notedeck/blob/main/LICENSE +ShortDescription: A multi-platform deck client for Misskey and its forks +Description: |- + NoteDeck is a deck client for Misskey and its forks. + It provides efficient multi-server timeline viewing with features like local full-text search, + AI integration, and localhost API that are only possible with a native desktop application. +Tags: +- deck +- fediverse +- misskey +- social-media +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.8.18/Hitalin.NoteDeck.locale.ja-JP.yaml b/manifests/h/Hitalin/NoteDeck/0.8.18/Hitalin.NoteDeck.locale.ja-JP.yaml new file mode 100644 index 000000000000..f3b41a716496 --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.18/Hitalin.NoteDeck.locale.ja-JP.yaml @@ -0,0 +1,31 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.18 +PackageLocale: ja-JP +Publisher: hitalin +PublisherUrl: https://github.com/hitalin +PublisherSupportUrl: https://github.com/hitalin/notedeck/issues +PackageName: NoteDeck +PackageUrl: https://github.com/hitalin/notedeck +License: AGPL-3.0 +LicenseUrl: https://github.com/hitalin/notedeck/blob/HEAD/LICENSE +ShortDescription: Misskey とそのフォークに対応したマルチプラットフォーム対応デッキクライアント +Description: |- + NoteDeck は Misskey とそのフォークに対応したデッキクライアントです。 + 複数サーバーのタイムラインを効率よく閲覧でき、ローカル全文検索、AI 統合、localhost API など + デスクトップネイティブならではの機能を備えています。 +Tags: +- deck +- fediverse +- misskey +- social-media +ReleaseNotes: |- + What's Changed + Other Changes + - Release v0.8.18 by @hitalin in #247 + Full Changelog: v0.8.17...v0.8.18 +ReleaseNotesUrl: https://github.com/hitalin/notedeck/releases/tag/v0.8.18 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.8.18/Hitalin.NoteDeck.yaml b/manifests/h/Hitalin/NoteDeck/0.8.18/Hitalin.NoteDeck.yaml new file mode 100644 index 000000000000..46c29f40fae0 --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.18/Hitalin.NoteDeck.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.18 +DefaultLocale: ja-JP +ManifestType: version +ManifestVersion: 1.12.0 From f397cb42d351a0c2d5ebfcc9dd10982c0e1e23b2 Mon Sep 17 00:00:00 2001 From: UnownBot Date: Fri, 27 Mar 2026 12:01:32 -0400 Subject: [PATCH 010/162] New version: GitHub.cli version 2.89.0 (#352608) --- .../cli/2.89.0/GitHub.cli.installer.yaml | 45 +++++++++++++ .../cli/2.89.0/GitHub.cli.locale.en-US.yaml | 67 +++++++++++++++++++ manifests/g/GitHub/cli/2.89.0/GitHub.cli.yaml | 8 +++ 3 files changed, 120 insertions(+) create mode 100644 manifests/g/GitHub/cli/2.89.0/GitHub.cli.installer.yaml create mode 100644 manifests/g/GitHub/cli/2.89.0/GitHub.cli.locale.en-US.yaml create mode 100644 manifests/g/GitHub/cli/2.89.0/GitHub.cli.yaml diff --git a/manifests/g/GitHub/cli/2.89.0/GitHub.cli.installer.yaml b/manifests/g/GitHub/cli/2.89.0/GitHub.cli.installer.yaml new file mode 100644 index 000000000000..03bb92300579 --- /dev/null +++ b/manifests/g/GitHub/cli/2.89.0/GitHub.cli.installer.yaml @@ -0,0 +1,45 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GitHub.cli +PackageVersion: 2.89.0 +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- gh +ReleaseDate: 2026-03-26 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/cli/cli/releases/download/v2.89.0/gh_2.89.0_windows_386.msi + InstallerSha256: 0A65FE4A573AEFAF328BB5EB5ECD352A2BFC283382F2F8788A9A76732C272DBA + ProductCode: '{9DA92934-6726-4915-BC09-BEC8553F6885}' + AppsAndFeaturesEntries: + - ProductCode: '{9DA92934-6726-4915-BC09-BEC8553F6885}' + UpgradeCode: '{767EC5D2-C8F0-4912-9901-45E21F59A284}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%/GitHub CLI' +- Architecture: x64 + InstallerUrl: https://github.com/cli/cli/releases/download/v2.89.0/gh_2.89.0_windows_amd64.msi + InstallerSha256: E7461C7D75308A932D7335411A210656223A9675144A5F93E4DAA6734A50DF30 + ProductCode: '{22B1775A-6F83-4BC4-9330-0F10CE026003}' + AppsAndFeaturesEntries: + - ProductCode: '{22B1775A-6F83-4BC4-9330-0F10CE026003}' + UpgradeCode: '{8CFB9531-B959-4E1B-AA2E-4AF0FFCC4AF4}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/GitHub CLI' +- Architecture: arm64 + InstallerUrl: https://github.com/cli/cli/releases/download/v2.89.0/gh_2.89.0_windows_arm64.msi + InstallerSha256: 7E89F25CAD17677A1D682486984226CFB9D259CEADD3861307108E863A1078CC + ProductCode: '{E73C61A6-9AE7-410C-81BC-9E5E6294AE5F}' + AppsAndFeaturesEntries: + - ProductCode: '{E73C61A6-9AE7-410C-81BC-9E5E6294AE5F}' + UpgradeCode: '{5D15E95C-F979-41B0-826C-C33C8CB5A7EB}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/GitHub CLI' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/GitHub/cli/2.89.0/GitHub.cli.locale.en-US.yaml b/manifests/g/GitHub/cli/2.89.0/GitHub.cli.locale.en-US.yaml new file mode 100644 index 000000000000..54798a8f8251 --- /dev/null +++ b/manifests/g/GitHub/cli/2.89.0/GitHub.cli.locale.en-US.yaml @@ -0,0 +1,67 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GitHub.cli +PackageVersion: 2.89.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: GitHub CLI +PackageUrl: https://cli.github.com/ +License: MIT +LicenseUrl: https://github.com/cli/cli/blob/HEAD/LICENSE +Copyright: Copyright (c) 2019 GitHub Inc. +CopyrightUrl: https://github.com/cli/cli/blob/v2.63.1/LICENSE +ShortDescription: Take GitHub to the command line +Description: GitHub CLI (gh) is a command-line tool that brings pull requests, issues, GitHub Actions, and other GitHub features to your terminal, so you can do all your work in one place. +Moniker: gh +Tags: +- cli +- command-line +- enterprise +- foss +- git +- github +- open-source +- terminal +- tool +- utility +- workflow +ReleaseNotes: |- + What's Changed + - fix(agent-task): resolve Copilot API URL dynamically by @BagToad in #12956 + - Remove auto-labels from issue templates by @tidy-dev in #12972 + - docs: clarify that gh pr edit --add-reviewer can re-request reviews by @joshjohanning in #13021 + - Record agentic invocations in User-Agent header by @williammartin in #13023 + - Add AGENTS.md by @williammartin in #13024 + - chore(deps): bump google.golang.org/grpc from 1.79.2 to 1.79.3 by @dependabot[bot] in #12963 + - Use login-based assignee mutation on github.com by @BagToad in #13009 + - Fix typo: remove extra space in README.md link by @realMelTuc in #12725 + - chore(deps): bump github.com/google/go-containerregistry from 0.20.7 to 0.21.3 by @dependabot[bot] in #12962 + - fix(issue): avoid fetching unnecessary fields for discovery by @babakks in #12884 + - chore(deps): bump github.com/zalando/go-keyring from 0.2.6 to 0.2.8 by @dependabot[bot] in #13031 + - define err in go func instead of use err defined in outer scope by @Lslightly in #13033 + - Consolidate actor-mode signals into ApiActorsSupported by @BagToad in #13025 + - Align triage.md with current triage process by @tidy-dev in #13030 + - Fix acceptance test failures: git identity, headRepository JSON, obsolete traversal test by @BagToad in #13037 + - chore(deps): bump microsoft/setup-msbuild from 2.0.0 to 3.0.0 by @dependabot[bot] in #13005 + - chore(deps): bump mislav/bump-homebrew-formula-action from 3.6 to 4.1 by @dependabot[bot] in #13004 + - chore(deps): bump azure/login from 2.3.0 to 3.0.0 by @dependabot[bot] in #12951 + - Add experimental huh-only prompter gated by GH_EXPERIMENTAL_PROMPTER by @BagToad in #12859 + + New Contributors + - @joshjohanning made their first contribution in #13021 + - @realMelTuc made their first contribution in #12725 + - @Lslightly made their first contribution in #13033 +ReleaseNotesUrl: https://github.com/cli/cli/releases/tag/v2.89.0 +Documentations: +- DocumentLabel: GitHub Docs + DocumentUrl: https://docs.github.com/github-cli/github-cli/ +- DocumentLabel: Manual + DocumentUrl: https://cli.github.com/manual/ +- DocumentLabel: Repository + DocumentUrl: https://github.com/cli/cli +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GitHub/cli/2.89.0/GitHub.cli.yaml b/manifests/g/GitHub/cli/2.89.0/GitHub.cli.yaml new file mode 100644 index 000000000000..38362b2194c1 --- /dev/null +++ b/manifests/g/GitHub/cli/2.89.0/GitHub.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: GitHub.cli +PackageVersion: 2.89.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 510a45a3f4297de207a23fbd6352906c15c53b9e Mon Sep 17 00:00:00 2001 From: UnownBot Date: Fri, 27 Mar 2026 12:02:34 -0400 Subject: [PATCH 011/162] New version: SST.OpenCodeDesktop version 1.3.3 (#352612) --- .../1.3.3/SST.OpenCodeDesktop.installer.yaml | 22 +++++++ .../SST.OpenCodeDesktop.locale.en-US.yaml | 60 +++++++++++++++++++ .../1.3.3/SST.OpenCodeDesktop.yaml | 8 +++ 3 files changed, 90 insertions(+) create mode 100644 manifests/s/SST/OpenCodeDesktop/1.3.3/SST.OpenCodeDesktop.installer.yaml create mode 100644 manifests/s/SST/OpenCodeDesktop/1.3.3/SST.OpenCodeDesktop.locale.en-US.yaml create mode 100644 manifests/s/SST/OpenCodeDesktop/1.3.3/SST.OpenCodeDesktop.yaml diff --git a/manifests/s/SST/OpenCodeDesktop/1.3.3/SST.OpenCodeDesktop.installer.yaml b/manifests/s/SST/OpenCodeDesktop/1.3.3/SST.OpenCodeDesktop.installer.yaml new file mode 100644 index 000000000000..59f6fb1d5519 --- /dev/null +++ b/manifests/s/SST/OpenCodeDesktop/1.3.3/SST.OpenCodeDesktop.installer.yaml @@ -0,0 +1,22 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: SST.OpenCodeDesktop +PackageVersion: 1.3.3 +InstallerType: nullsoft +Scope: user +ProductCode: OpenCode +ReleaseDate: 2026-03-26 +AppsAndFeaturesEntries: +- ProductCode: OpenCode +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\OpenCode' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/anomalyco/opencode/releases/download/v1.3.3/opencode-desktop-windows-x64.exe + InstallerSha256: 99EB3C26730F0222B18A5A9273117B92353F5DBF313B40CE43CF823609DDDC47 +- Architecture: arm64 + InstallerUrl: https://github.com/anomalyco/opencode/releases/download/v1.3.3/opencode-desktop-windows-arm64.exe + InstallerSha256: F43E912DE3D67FE4F71400BFCBA4A45337D82E3784D82BDD1D7A193EB7DE9C8A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/OpenCodeDesktop/1.3.3/SST.OpenCodeDesktop.locale.en-US.yaml b/manifests/s/SST/OpenCodeDesktop/1.3.3/SST.OpenCodeDesktop.locale.en-US.yaml new file mode 100644 index 000000000000..c5968e81c2cd --- /dev/null +++ b/manifests/s/SST/OpenCodeDesktop/1.3.3/SST.OpenCodeDesktop.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: SST.OpenCodeDesktop +PackageVersion: 1.3.3 +PackageLocale: en-US +Publisher: opencode +PublisherUrl: https://anoma.ly/ +PublisherSupportUrl: https://github.com/anomalyco/opencode/issues +PackageName: OpenCode +PackageUrl: https://opencode.ai/ +License: MIT +LicenseUrl: https://github.com/anomalyco/opencode/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 opencode +ShortDescription: OpenCode is an open source agent that helps you write and run code with any AI model. It''s available as a terminal-based interface, desktop app, or IDE extension. +Description: |- + opencode is an AI coding agent. It features: + - A responsive, native, themeable terminal UI and desktop app. + - Automatically loads the right LSPs, so the LLMs make fewer mistakes. + - Have multiple agents working in parallel on the same project. + - Create shareable links to any session for reference or to debug. + - Log in with Anthropic to use your Claude Pro or Claude Max account. + - Supports 75+ LLM providers through Models.dev, including local models. +Tags: +- ai +- code +- coding +- develop +- development +- programming +ReleaseNotes: |- + TUI + - Bypass local SSE event streaming in worker for improved performance (#19183) + - Fix image paste support on Windows Terminal 1.25+ with kitty keyboard enabled (#17674) + + Desktop + - Embed WebUI directly in the binary with configurable proxy flags (#19299) + - Fix agent normalization in desktop app (#19169) + - Fix project switch flickering when using keybinds by pre-warming globalSync state (#19088) + - Move message navigation from cmd+arrow to cmd+opt+[ / cmd+opt+] to preserve native cursor movement (#18728) + - Add createDirectory option to directory picker in Electron app (#19071) + - Remove .json extension from electron-store for seamless Tauri to Electron migration (#19082) + + Core + - Initial implementation of event-sourced syncing system for session data (#17814) + - Fix enterprise URL not being set properly during authentication flow (#19212) + - Classify ZlibError from Bun fetch as retryable instead of unknown error (#19104) + - Skip snapshotting files larger than 2MB to improve performance (#19043) + - Respect agent permission configuration for todowrite tool (#19125) + - Fix DWS workflow tools being silently cancelled due to missing tool approval support (#19185) + - Fix MCP servers disappearing after transient errors and improve OAuth handling (#19042) + + Misc + - Revert git-backed review modes to restore compatibility with older CLI builds (#19295) +ReleaseNotesUrl: https://github.com/anomalyco/opencode/releases/tag/v1.3.3 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://opencode.ai/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/OpenCodeDesktop/1.3.3/SST.OpenCodeDesktop.yaml b/manifests/s/SST/OpenCodeDesktop/1.3.3/SST.OpenCodeDesktop.yaml new file mode 100644 index 000000000000..a6d0aa37018a --- /dev/null +++ b/manifests/s/SST/OpenCodeDesktop/1.3.3/SST.OpenCodeDesktop.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: SST.OpenCodeDesktop +PackageVersion: 1.3.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 2d53fdeef6569eec433399cba1acb0d64083aa83 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 00:03:44 +0800 Subject: [PATCH 012/162] New version: BitSum.ProcessLasso.Beta version 18.0.0.49 (#352983) --- .../BitSum.ProcessLasso.Beta.installer.yaml | 4 ++-- .../BitSum.ProcessLasso.Beta.locale.en-US.yaml | 2 +- .../BitSum.ProcessLasso.Beta.locale.zh-CN.yaml | 2 +- .../{18.0.0.45 => 18.0.0.49}/BitSum.ProcessLasso.Beta.yaml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) rename manifests/b/BitSum/ProcessLasso/Beta/{18.0.0.45 => 18.0.0.49}/BitSum.ProcessLasso.Beta.installer.yaml (82%) rename manifests/b/BitSum/ProcessLasso/Beta/{18.0.0.45 => 18.0.0.49}/BitSum.ProcessLasso.Beta.locale.en-US.yaml (99%) rename manifests/b/BitSum/ProcessLasso/Beta/{18.0.0.45 => 18.0.0.49}/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml (98%) rename manifests/b/BitSum/ProcessLasso/Beta/{18.0.0.45 => 18.0.0.49}/BitSum.ProcessLasso.Beta.yaml (90%) diff --git a/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.installer.yaml b/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.installer.yaml similarity index 82% rename from manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.installer.yaml rename to manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.installer.yaml index 4c98a07eecf5..33ec191b1820 100644 --- a/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.installer.yaml +++ b/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: BitSum.ProcessLasso.Beta -PackageVersion: 18.0.0.45 +PackageVersion: 18.0.0.49 InstallerType: nullsoft Scope: machine UpgradeBehavior: install @@ -12,6 +12,6 @@ InstallationMetadata: Installers: - Architecture: x64 InstallerUrl: https://dl.bitsum.com/files/beta/processlassosetup64.exe - InstallerSha256: F131AB95C89F09CB4C4A935E481D0B935523542FB3DAEC9159D0557CB05790F3 + InstallerSha256: D52305CA087FA636F5A3C38A851ABCF5F7D803DCAE9C8D9915694B02C39337E9 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.locale.en-US.yaml b/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.locale.en-US.yaml similarity index 99% rename from manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.locale.en-US.yaml rename to manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.locale.en-US.yaml index 9d5d2b59a933..a975a80de23e 100644 --- a/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.locale.en-US.yaml +++ b/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.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.Beta -PackageVersion: 18.0.0.45 +PackageVersion: 18.0.0.49 PackageLocale: en-US Publisher: Bitsum PublisherUrl: https://bitsum.com/ diff --git a/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml b/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml similarity index 98% rename from manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml rename to manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml index 158d6527b411..b1826d2dfb5d 100644 --- a/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml +++ b/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.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.Beta -PackageVersion: 18.0.0.45 +PackageVersion: 18.0.0.49 PackageLocale: zh-CN License: 专有软件 ShortDescription: 实时 CPU 优化和自动化 diff --git a/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.yaml b/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.yaml similarity index 90% rename from manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.yaml rename to manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.yaml index 9e1141b4c57f..5f9c9e693917 100644 --- a/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.yaml +++ b/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: BitSum.ProcessLasso.Beta -PackageVersion: 18.0.0.45 +PackageVersion: 18.0.0.49 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 From 2ffe41e460e7cd4a37b168f62922b38194419d9a Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 00:05:04 +0800 Subject: [PATCH 013/162] New version: ClawWork.ClawWork version 0.0.13 (#352984) --- .../0.0.13/ClawWork.ClawWork.installer.yaml | 25 ++++++ .../ClawWork.ClawWork.locale.en-US.yaml | 78 +++++++++++++++++++ .../ClawWork.ClawWork.locale.zh-CN.yaml | 32 ++++++++ .../ClawWork/0.0.13/ClawWork.ClawWork.yaml | 8 ++ 4 files changed, 143 insertions(+) create mode 100644 manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.installer.yaml create mode 100644 manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.locale.en-US.yaml create mode 100644 manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.locale.zh-CN.yaml create mode 100644 manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.yaml diff --git a/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.installer.yaml b/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.installer.yaml new file mode 100644 index 000000000000..c9bdf15c1abf --- /dev/null +++ b/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.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: ClawWork.ClawWork +PackageVersion: 0.0.13 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +ProductCode: 5395e3d2-8866-5284-9f7b-073e8b6bc4b5 +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/clawwork-ai/ClawWork/releases/download/v0.0.13/ClawWork-0.0.13-win-x64.exe + InstallerSha256: 2620AC452D8FFD1FFBD78B4754AAB31EB6D3B6BC81F7BA8CCD3BA64D62C8EFEA + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/clawwork-ai/ClawWork/releases/download/v0.0.13/ClawWork-0.0.13-win-x64.exe + InstallerSha256: 2620AC452D8FFD1FFBD78B4754AAB31EB6D3B6BC81F7BA8CCD3BA64D62C8EFEA + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.locale.en-US.yaml b/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.locale.en-US.yaml new file mode 100644 index 000000000000..c829c8144a2b --- /dev/null +++ b/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.locale.en-US.yaml @@ -0,0 +1,78 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ClawWork.ClawWork +PackageVersion: 0.0.13 +PackageLocale: en-US +Publisher: clawwork-ai +PublisherUrl: https://github.com/clawwork-ai +PublisherSupportUrl: https://github.com/clawwork-ai/ClawWork/issues +PackageName: ClawWork +PackageUrl: https://clawwork-ai.github.io/ClawWork/ +License: Apache-2.0 +LicenseUrl: https://github.com/clawwork-ai/ClawWork/blob/HEAD/LICENSE +Copyright: Copyright 2026 ClawWork Contributors +ShortDescription: Connect ClawWork to your own OpenClaw and unlock 10x multi-session productivity. +Description: |- + A desktop workspace for OpenClaw. + Parallel tasks, visible tool activity, and files you can actually find later. + + Why ClawWork + Using OpenClaw through Telegram, Slack, or a plain chat UI works fine for small stuff. It gets annoying once the work stops being simple. + Status disappears into the message stream. Running several tasks means juggling tabs and trying to remember which session was using which model. Files show up in replies, then vanish into history. + ClawWork fixes that by treating each task as its own workspace. You get a desktop UI where tasks stay separate, tool activity is visible while it happens, and output files stay attached to the work that produced them. + + Why it feels better + - Each task runs in its own OpenClaw session, so you can switch between parallel jobs without mixing context. + - Streaming replies, tool call cards, progress, and artifacts live in one place instead of being buried in chat history. + - Gateway, agent, model, and thinking settings are scoped per task. + - Files produced by the agent are saved to a local workspace and stay easy to browse later. + - Risky exec actions can stop for approval before they run. +Tags: +- agent +- agentic +- ai +- chatbot +- claw +- large-language-model +- llm +- openclaw +ReleaseNotes: |- + 🔥 Highlights + - 📱 ClawWork on your phone — Brand-new PWA mobile companion with a native chat experience, swipe gestures, and seamless QR pairing that keeps your desktop connected. + - 🐧 Linux support — First-class Linux builds ship starting this release — AppImage and deb for x64. + - ✨ Visual refresh — Glass panels, glow accents, and ambient gradients give the entire app a polished new look while respecting reduced-motion preferences. + - 🔒 Security hardening — Four fixes close a private key leak, an SSRF bypass, a TOCTOU race, and a path traversal vector in the artifact handler. + ✨ What's New + - 📱 PWA mobile companion — Brand-new mobile web app with native iOS chat experience: OLED dark theme, edge-swipe gestures, drag-to-dismiss bottom sheets, settings panel with 8-language selector, and QR pairing with independent device identity — your desktop stays connected when a phone joins. by @samzong in #183 + - 🎨 Premium design system — Glass surfaces, 3-layer glow effects, ambient gradient orbs, display typography (Instrument Serif), extended motion presets, and CI enforcement rules. All with dark + light theme coverage, prefers-reduced-motion respect, and @supports fallbacks. by @samzong in #200 #201 + - 🐧 Linux desktop builds — AppImage (portable) and deb (Ubuntu/Debian) packages for x64, fully integrated into the CI/CD release pipeline. by @samzong in #174 + 🔒 Security + - Removed private key exposure and raw IPC backdoor from the renderer preload bridge — neither surface had any renderer consumers by @samzong in #184 + - Production-grade SSRF guard with numeric IPv4/IPv6 range checks and DNS pre-resolution, replacing the string-prefix check that missed all RFC 1918 ranges by @samzong in #189 + - Eliminated TOCTOU race in context file path validation by merging validate + read into a single fd-centric atomic operation by @samzong in #185 + - Fixed path traversal vector in artifact handler — replaced naive url.replace('file://', '') with fileURLToPath() by @samzong in #194 + 🐛 Bug Fixes + - Fixed macOS crash on dock re-open — IPC handlers registered inside createWindow() threw on second invocation; centralized window lifecycle via window-manager module by @samzong in #195 + - Fixed PWA status bar color not updating when switching between dark and light themes by @samzong in #192 + - Fixed invisible text in Gateway debug log caused by undefined --text-tertiary CSS variable by @samzong in #193 + - Fixed per-token forced reflow during streaming — replaced scrollToBottom on every token with ResizeObserver; fixed Virtuoso dual scroll context by @samzong in #196 + - Fixed PWA client version stuck at hardcoded 0.1.0 — now injected from package.json at build time by @samzong in #191 + - Fixed PWA i18n gaps — en.json is now the authoritative superset, all defaultValue anti-patterns eliminated, Gateway debug log fully translated across 8 languages by @samzong in #199 + 🔧 Engineering + - Extracted @clawwork/core package with port-based dependency injection — stores, session sync, gateway dispatching, and protocol parsing are now platform-agnostic, enabling future PWA code sharing by @samzong in #178 + - Extracted chat composer service into @clawwork/core — split the 1655-line ChatInput.tsx god component into 9 focused modules by @samzong in #180 + - Added knip for dead code detection, removed 52 dead code items, added Renovate for automated dependency updates and vitest coverage by @samzong in #176 + - Extracted BottomSheet primitive from 3 PWA components, fixing 3 accessibility bugs and adding body scroll lock by @samzong in #186 + - Extracted useOverlay hook — unified portal rendering, ref-counted scroll lock, inert support, and prefers-reduced-motion for all overlays by @samzong in #198 + - Extracted useFocusTrap hook from DrawerLayout and AgentSelector by @samzong in #190 + - Extracted client registry and eliminated composerBridge monkey-patching hack by @samzong in #188 + - Replaced manual base64 encode/decode with ES2025 Uint8Array.toBase64() platform API by @samzong in #197 + - PWA polish: removed type lies (! non-null assertions), dead tsconfig paths, added IndexedDB migration guard, reduced edge-swipe dead zone by @samzong in #187 + 📖 Docs + - Keynote: full 8-language translations and dark/light theme toggle by @samzong in #182 + - Keynote slide polish and toolchain integration focus by @samzong in #179 + - Fixed SPA fallback for GitHub Pages keynote routes by @samzong in #175 +ReleaseNotesUrl: https://github.com/clawwork-ai/ClawWork/releases/tag/v0.0.13 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.locale.zh-CN.yaml b/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.locale.zh-CN.yaml new file mode 100644 index 000000000000..03a46a6c48b0 --- /dev/null +++ b/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.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: ClawWork.ClawWork +PackageVersion: 0.0.13 +PackageLocale: zh-CN +ShortDescription: 将 ClawWork 连接至您自己的 OpenClaw,解锁 10 倍多会话生产力。 +Description: |- + OpenClaw 的桌面工作区。 + 支持并行任务、实时可见的工具活动,以及日后轻松查找的文件。 + + 为何选择 ClawWork + 通过 Telegram、Slack 或普通聊天界面使用 OpenClaw,处理简单任务尚可。但一旦工作变得复杂,体验就会大打折扣。 + 状态信息淹没在消息流中;运行多个任务时,不得不在多个标签页间切换,努力回忆哪个会话使用了哪个模型;文件出现在回复中,随后又消失在历史记录里。 + ClawWork 通过将每个任务视为独立的工作区来解决这一问题。您将获得一个桌面界面:任务彼此隔离,工具活动在执行过程中清晰可见,输出文件始终与生成它们的工作关联在一起。 + + 为何体验更佳 + - 每个任务在独立的 OpenClaw 会话中运行,让您能在并行作业间自由切换而不会混淆上下文。 + - 流式回复、工具调用卡片、进度信息和产出物集中呈现,不再埋没于聊天记录中。 + - 网关、智能体、模型及思维设置均按任务单独配置。 + - 智能体生成的文件保存至本地工作区,便于后续浏览。 + - 高风险的执行操作可在运行前暂停并等待批准。 +Tags: +- openclaw +- 人工智能 +- 大语言模型 +- 智能体 +- 聊天机器人 +- 自主智能 +- 龙虾 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.yaml b/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.yaml new file mode 100644 index 000000000000..7f7d6f8e50f6 --- /dev/null +++ b/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.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: ClawWork.ClawWork +PackageVersion: 0.0.13 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 4ced38a6d45b3e7783e9c5ceeecf17c8845ce7e5 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 00:06:10 +0800 Subject: [PATCH 014/162] New version: codexu.NoteGen version 0.27.4 (#352985) --- .../0.27.4/codexu.NoteGen.installer.yaml | 26 +++++++ .../0.27.4/codexu.NoteGen.locale.en-US.yaml | 59 +++++++++++++++ .../0.27.4/codexu.NoteGen.locale.zh-CN.yaml | 73 +++++++++++++++++++ .../codexu/NoteGen/0.27.4/codexu.NoteGen.yaml | 8 ++ 4 files changed, 166 insertions(+) create mode 100644 manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.installer.yaml create mode 100644 manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.locale.en-US.yaml create mode 100644 manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.locale.zh-CN.yaml create mode 100644 manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.yaml diff --git a/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.installer.yaml b/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.installer.yaml new file mode 100644 index 000000000000..5157df243332 --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.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: codexu.NoteGen +PackageVersion: 0.27.4 +UpgradeBehavior: install +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/codexu/note-gen/releases/download/note-gen-v0.27.4/NoteGen_0.27.4_x64-setup.exe + InstallerSha256: 2153248DC53AC43FC43E2064F95BDC54240E17F5912F59CE4D2A954B165291CB + ProductCode: NoteGen +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/codexu/note-gen/releases/download/note-gen-v0.27.4/NoteGen_0.27.4_x64_en-US.msi + InstallerSha256: C97D2959702EC7D9E8FF078F940315567F0F90A23B8A65B452F5947BC60E5214 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{E2E23176-A393-4150-B75A-0D72E26981CC}' + AppsAndFeaturesEntries: + - UpgradeCode: '{E353DB5D-25D7-5FA9-B7DC-C4BC524A075E}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.locale.en-US.yaml b/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.locale.en-US.yaml new file mode 100644 index 000000000000..93635cc9a0c9 --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.locale.en-US.yaml @@ -0,0 +1,59 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: codexu.NoteGen +PackageVersion: 0.27.4 +PackageLocale: en-US +Publisher: codexu +PublisherUrl: https://github.com/codexu +PublisherSupportUrl: https://github.com/codexu/note-gen/issues +PackageName: NoteGen +PackageUrl: https://github.com/codexu/note-gen +License: MIT +LicenseUrl: https://github.com/codexu/note-gen/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 codexu +ShortDescription: A cross-platform AI note-taking application focused on recording and writing. +Description: |- + NoteGen is a cross-platform AI note-taking application focused on recording and writing, developed based on Tauri. + The core philosophy of NoteGen is to combine recording, writing, and AI, with all three complementing each other. The recording function helps users quickly capture and organize fragmented knowledge. The organization function is the bridge connecting recording and writing, which can organize continuously recorded content into a readable note, assisting users in completing the creation process from scratch. If the AI-organized results cannot meet your requirements, you can use the writing function to refine it yourself. + Recording + Recording methods supported: + 1. 🖥️ Screenshot recording, through which users can quickly capture and record fragmented knowledge, especially in situations where text copying is not possible. + 2. 📄 Text recording, which allows copying text or manually inputting brief content as a record. + 3. 🖼️ Illustration recording, which can be automatically inserted into appropriate positions when generating notes. + 4. 📇 File recording, which recognizes content from PDF, md, html, txt, and other files for text recording. + 5. 🔗 Link recording (to be implemented), using web crawlers for page content recognition and recording. + 6. 📷 Photo recording (to be implemented), similar to illustration recording, calling the camera to record, suitable for future mobile use. + Auxiliary recording: + - 🏷️ Custom tags for better categorization and differentiation of different recording scenarios. + - 🤖 AI conversation, by default associated with records under the current tag, and you can also manually associate it with any article in your writing. + - 📋 Clipboard recognition, which automatically recognizes images or text in the clipboard after you copy them. + - 💾 Organization, when you have completed a series of records, you can try to let AI help you organize them into an article. + Writing + - 🗂 File manager, supporting management of files and folders in local and Github repositories, with unlimited directory levels. + - 📝 Support for WYSIWYG, instant rendering, and split-screen preview modes. + - 📅 Version control, if you enable synchronization, you can trace back to historically uploaded records in the history. + - 🤖 AI assistance, supporting Q&A, continuation, optimization, simplification, translation, and other functions, and you can insert records into any position of the article at any time. + - 🏞️ Image hosting, directly copy and paste images into the Markdown editor, which will automatically upload the image to the image hosting service and convert it to a Markdown image link. + - 🛠️ HTML and Markdown conversion, copying content from browsers will automatically convert it to Markdown format. + Auxiliary + - 📦 Large model support, with multiple built-in large model configurations, supporting customization and easy switching. + - 👁️ OCR, which can assist in recognizing text in images. + - 🏗️ Organization templates, which can be customized for AI to organize different types of content. + - 🔎 Global search, for quickly searching and jumping to specified content. + - 🌃 Image hosting management, for convenient management of image hosting repository content. + - 💎 Themes and appearance, supporting dark theme, and appearance settings for Markdown, code, etc. +Tags: +- ai +- bookmark +- clipping +- favorite +- knowledge +- knowledge-base +- large-language-model +- llm +- mark +- notes +ReleaseNotesUrl: https://github.com/codexu/note-gen/releases/tag/note-gen-v0.27.4 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.locale.zh-CN.yaml b/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.locale.zh-CN.yaml new file mode 100644 index 000000000000..ed558ce3d3bd --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.locale.zh-CN.yaml @@ -0,0 +1,73 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: codexu.NoteGen +PackageVersion: 0.27.4 +PackageLocale: zh-CN +Publisher: codexu +PublisherUrl: https://github.com/codexu +PublisherSupportUrl: https://github.com/codexu/note-gen/issues +PackageName: NoteGen +PackageUrl: https://github.com/codexu/note-gen +License: MIT +LicenseUrl: https://github.com/codexu/note-gen/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 codexu +ShortDescription: 一款专注于记录和写作的跨端 AI 笔记应用。 +Description: |- + NoteGen 是一款专注于记录和写作的跨端 AI 笔记应用,基于 Tauri 开发。 + NoteGen 的核心理念是将记录、写作和 AI 结合使用,三者相辅相成。记录功能可以帮助用户快速捕捉和整理碎片化知识。整理功能是连接记录和写作的桥梁,可将持续记录的内容整理成一篇可读的笔记,辅助用户完成从零到一的创作过程,如果 AI 整理的结果无法满足你的要求,那么你可以使用写作功能自行去完善。 + 记录 + 记录方式支持: + 1. 🖥️ 截图记录,通过截图,用户可以快速捕捉和记录碎片化知识,尤其是在遇到无法进行文本复制的情况下。 + 2. 📄 文本记录,可以复制文本或者手动输入一些简短的内容作为一次记录。 + 3. 🖼️ 插图记录,可以在笔记生成时,自动插入到合适的位置。 + 4. 📇 文件记录,识别 PDF、md、html、txt 等文件内容,进行文字记录。 + 5. 🔗 链接记录(待实现),使用爬虫进行页面内容识别与记录。 + 6. 📷 拍照记录(待实现)功能类似于插图记录,调用相机记录,适合未来移动端。 + 辅助记录: + - 🏷️ 自定义标签,更好地归类和区分不同的记录场景。 + - 🤖 AI 对话,默认关联当前标签下的记录,你也可以手动去关联写作内的任何文章。 + - 📋 剪贴板识别,在你进行图片或文本复制后,会自动识别剪贴板中的图片或文本。 + - 💾 整理,当你已经完成了一系列的记录之后,可以尝试让 AI 帮你整理为一篇文章。 + 写作 + - 🗂 文件管理器,支持本地和 Github 仓库的文件和文件夹的管理,支持无限层级目录。 + - 📝 支持所见即所得、即时渲染、分屏预览三种模式。 + - 📅 版本控制,如果你开启了同步功能,可以在历史记录中回溯历史上传过的记录。 + - 🤖 AI 辅助,支持问答、续写、优化、精简、翻译等功能,且可以随时将记录插入到文章任何位置。 + - 🏞️ 图床,直接复制图片粘贴在 Markdown 编辑器中,将自动将此图片上传至图床,并转换为 Markdown 图片链接。 + - 🛠️ HTML、Markdown 转换,复制浏览器的内容,将自动转换为 Markdown 格式。 + 辅助 + - 📦 大模型支持,内置多种大模型配置,支持自定义,随意切换。 + - 👁️ OCR,可以辅助识别图片内的文字。 + - 🏗️ 整理模板,可自定义模板,方便 AI 对不同类型的内容进行定制化整理。 + - 🔎 全局搜索,可以快速搜索并跳转至指定的内容。 + - 🌃 图床管理,可以方便的管理图床仓库的内容。 + - 💎 主题与外观,支持深色主题,支持 Markdown、代码等外观设置。 +Tags: +- 书摘 +- 书签 +- 人工智能 +- 剪藏 +- 大语言模型 +- 收藏 +- 收藏夹 +- 知识 +- 知识库 +- 笔记 +ReleaseNotes: |- + - feat(#974): AI 支持跨域请求 + - feat: 移动端历史提交记录改为抽屉组件 + - feat: 优化翻译功能,保持与其他 AI 功能交互逻辑一致 + - feat: 优化润色等工具输出时,避免将思考内容写入到笔记中 + - feat: SM.MS 图床替换为 S.EE + - refactor: 重构移动端记录页面顶部布局 + - fix(#1020): 修复移动端无法使用大纲的问题 + - fix(#1012): 修复大纲与编辑器布局冲突 + - fix(#1006): 修复远端文件存在空格时无法正确删除的问题 + - fix(#1019): 修复可能由 slash 命令导致回车被劫持的问题 + - fix(#1018): 修复写作资源路径无效的问题 + - fix(#1017): 修复编辑器图片上传未正确保存路径 + - fix(#1016): 文件夹同步未正确读取用户自定义仓库名称 +ReleaseNotesUrl: https://github.com/codexu/note-gen/releases/tag/note-gen-v0.27.4 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.yaml b/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.yaml new file mode 100644 index 000000000000..d58478339180 --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.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: codexu.NoteGen +PackageVersion: 0.27.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From a1f9bac1b08d397a1fd9efdce021c8bc41d2264e Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 00:07:12 +0800 Subject: [PATCH 015/162] New version: MicroDicom.DICOMViewer version 2026.1 (#352989) --- .../MicroDicom.DICOMViewer.installer.yaml | 28 +++++ .../MicroDicom.DICOMViewer.locale.en-US.yaml | 103 ++++++++++++++++++ .../MicroDicom.DICOMViewer.locale.zh-CN.yaml | 51 +++++++++ .../2026.1/MicroDicom.DICOMViewer.yaml | 8 ++ 4 files changed, 190 insertions(+) create mode 100644 manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.installer.yaml create mode 100644 manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.locale.en-US.yaml create mode 100644 manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.locale.zh-CN.yaml create mode 100644 manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.yaml diff --git a/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.installer.yaml b/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.installer.yaml new file mode 100644 index 000000000000..a4a33c44464f --- /dev/null +++ b/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.installer.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: MicroDicom.DICOMViewer +PackageVersion: "2026.1" +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +Protocols: +- microdicom +FileExtensions: +- dcm +- dcm30 +Installers: +- Architecture: x86 + InstallerUrl: https://www.microdicom.com/downloads/Software/MicroDicom-2026.1-win32.exe + InstallerSha256: E47E0701FBD45E569E7AE3C244E448B52AB9C4E28606C149F266B9E8634AF147 + ProductCode: MicroDicom32 + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\MicroDicom' +- Architecture: x64 + InstallerUrl: https://www.microdicom.com/downloads/Software/MicroDicom-2026.1-x64.exe + InstallerSha256: FCECC4D983FF640768DF3E12AC8FA70865D3CFFD615F6167F4D2B52F099EAC18 + ProductCode: MicroDicom64 + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\MicroDicom' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.locale.en-US.yaml b/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.locale.en-US.yaml new file mode 100644 index 000000000000..a1ab88e8509b --- /dev/null +++ b/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.locale.en-US.yaml @@ -0,0 +1,103 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: MicroDicom.DICOMViewer +PackageVersion: "2026.1" +PackageLocale: en-US +Publisher: MicroDicom +PublisherUrl: https://www.microdicom.com/ +PublisherSupportUrl: https://www.microdicom.com/support.html +PrivacyUrl: https://www.microdicom.com/privacy.html +Author: MicroDicom Ltd. +PackageName: MicroDicom DICOM Viewer +PackageUrl: https://www.microdicom.com/dicom-viewer.html +License: Proprietary +LicenseUrl: https://www.microdicom.com/eula.html +Copyright: Copyright © 2007-2026 MicroDicom All rights reserved. +CopyrightUrl: https://www.microdicom.com/eula.html +ShortDescription: Free DICOM viewer for primary processing and preservation of medical images in DICOM format. +Description: |- + Most of the available commercial software for manipulation of DICOM images is expensive by itself or distributed with expensive medical machinery. Free software packages on the other side are often non-intuitive and with limited functionality. There is a common situation for the user when more than one package is needed to achieve feasible results. + The subject of the presented work is the design and implementation of a software package aimed to overcome the problem stated above. MicroDicom DICOM Viewer is equipped with most common tools for manipulation of DICOM images, and it has an intuitive user interface. It also has the advantage of being free for use and accessible to everyone. + Features: + - Open and save medical images in DICOM format + - Read DICOM files of any manufacturer and modality + - Supported DICOM images - without compression and RLE, JPEG Lossy, JPEG Lossless, JPEG 2000 Lossy, JPEG2000 Lossless compressions + - Structured Reports + - MPEG-2 and MPEG-4 transfer syntaxes + - Encapsulated PDF + - Open DICOM directory files + - Display patient list from DICOMDIR + - Load via drag & drop or double-click + - Open images in common graphic formats (JPEG, BMP, PNG, GIF, TIFF) + - Convert DICOM images to JPEG, BMP, PNG, GIF, TIFF + - Convert DICOM images to movie file format(AVI, WMV and MP4) + - Copy DICOM image to clipboard + - Anonymize DICOM images + - Image orientation in overlay + - Mouse-driven level-window, user-defined window presets + - Zooming and panning + - Medical image processing operation + - Measurements and annotations + - Brightness/contrast control + - Image resize, Rotate, Flip, Invert + - Displaying DICOM attributes of selected image + - Suited for patient CD/DVD to show DICOM images without installation + - Run on Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10 and Windows 11 + - Available for x86 and x64 platforms + - Portable version + - And much more +Tags: +- dicom +- medical-imaging +ReleaseNotes: |- + - New features: + Reworked folder scanning — now 5x faster. + Added error display in the exporter. + Removed the progress dialog when downloading from a PACS server; progress is now shown in the status bar only. + Faster opening of DICOMDIR files. + Selection is now preserved while searching tags in the DICOM Tags pane. + Added "Advanced" option to the "Send to PACS" entry in the DICOM Browser context menu. + Added Crash Reporting. + - Improvements: + Improved the progress bar when loading images and MPR series. + Improved the progress bar when importing to the database. + Improved list controls throughout the application: removed the ability to sort by clicking column headers where sorting is unnecessary, and added tag sorting in the Tag Dictionary dialog. + Reworked the status bar progress indicator. + Reworked timeouts in DICOMWeb. + Refactoring. + Updated the manual. + Removed unused UTF-8 conversion and made file format copying occur only when loading an image. This change reduces memory usage by half during folder scanning for DICOM files. + Faster server shutdown. Fixed an issue that occurred when starting to download a large file and closing the application. + - Defect fixing: + Fixed an issue where byte transfer was not added when downloading only a single image. + Fixed a crash when sending to PACS, along with several related improvements. + Fixed an issue where searching on a non-existent DICOM server would cause the application to hang after closing the dialog. + Fixed a potential crash. + Fixed a regression with exporting video files. + Fixed string decoding issues under Wine. + Fixed issues with text encoding. + Fixed an issue where the root item in the DICOM Browser was displayed twice. + Fixed an empty icon appearing when the splash screen is shown. + Fixed a regression with opening common image formats. + Fixed a crash when playing animations. + Fixed an issue with opening images using JPEG2000 compression with multi-fragment frame reassembly. + Fixed a crash. + Fixed an issue with opening files using JPEG2000 compression. + Fixed an issue with downloading from a PACS server. + Fixed an issue with measurements using the Ellipse tool. + Fixed an issue with MP4 export failing on Windows 7. + Fixed an issue with incorrect date and time when the application is first launched. + Fixed a regression with opening DICOM files that are not part of the DICOM Part 10 standard. + Fixed a regression with editing DICOM tags after downloading a file from a PACS server. +ReleaseNotesUrl: https://www.microdicom.com/dicom-viewer/history.html +PurchaseUrl: https://www.microdicom.com/online-store.html +Documentations: +- DocumentLabel: User Manual + DocumentUrl: https://www.microdicom.com/dicom-viewer-user-manual/ +- DocumentLabel: Quick Tutorials + DocumentUrl: https://www.microdicom.com/quick-tutorials-how-to.html +- DocumentLabel: Video Tutorials + DocumentUrl: https://www.microdicom.com/video-tutorials.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.locale.zh-CN.yaml b/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.locale.zh-CN.yaml new file mode 100644 index 000000000000..0e6c56b91aab --- /dev/null +++ b/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.locale.zh-CN.yaml @@ -0,0 +1,51 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: MicroDicom.DICOMViewer +PackageVersion: "2026.1" +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 免费 DICOM 查看器,用于 DICOM 格式医学影像的初级处理与保存。 +Description: |- + 市面上大多数用于处理 DICOM 图像的商业软件本身价格昂贵,或需搭配昂贵的医疗设备使用。而免费软件往往操作复杂且功能有限,用户常需组合多个软件才能完成基础操作。 + 本项目的核心目标是设计与开发一套解决上述问题的软件方案。MicroDicom DICOM Viewer 集成了最常用的 DICOM 图像处理工具,拥有直观的用户界面,并具有免费开放的核心优势。 + 功能特性: + - 支持 DICOM 格式医学图像的打开与保存 + - 兼容各厂商设备及成像模态的 DICOM 文件 + - 支持压缩类型:无压缩/RLE/JPEG 有损/JPEG 无损/JPEG2000 有损/JPEG2000 无损 + - 结构化报告处理 + - MPEG-2 与 MPEG-4 传输语法 + - 内嵌 PDF 解析 + - 可打开 DICOM 目录文件 + - 从 DICOMDIR 显示患者列表 + - 拖放/双击快速载入 + - 支持通用图像格式(JPEG/BMP/PNG/GIF/TIFF) + - DICOM 转 JPEG/BMP/PNG/GIF/TIFF + - DICOM 转视频格式(AVI/WMV/MP4) + - 复制 DICOM 图像至剪贴板 + - DICOM 图像匿名化处理 + - 叠加层图像方向标识 + - 鼠标驱动窗宽窗位调节/自定义预设值 + - 缩放与平移 + - 医学图像处理运算 + - 测量与标注工具 + - 亮度/对比度调节 + - 图像缩放/旋转/翻转/反相 + - 显示选定图像的 DICOM 属性 + - 无需安装即可直接运行患者 CD/DVD 中的 DICOM 图像 + - 兼容 Windows Vista/7/8/8.1/10/11 + - 支持 x86 与 x64 平台 + - 提供便携版本 + - 及其他多项功能 +Tags: +- dicom +- 医学成像 +Documentations: +- DocumentLabel: 用户手册 + DocumentUrl: https://www.microdicom.com/dicom-viewer-user-manual/ +- DocumentLabel: 快速入门 + DocumentUrl: https://www.microdicom.com/quick-tutorials-how-to.html +- DocumentLabel: 视频教程 + DocumentUrl: https://www.microdicom.com/video-tutorials.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.yaml b/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.yaml new file mode 100644 index 000000000000..6ede6b4a9666 --- /dev/null +++ b/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.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: MicroDicom.DICOMViewer +PackageVersion: "2026.1" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From ca919fe3168b723327dc2b2bb7032372ee9b3881 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 00:08:35 +0800 Subject: [PATCH 016/162] New version: TandemHealth.Tandem version 2026.3.27 (2026.3.27-build48795+ef97da2) (#352992) --- .../TandemHealth.Tandem.installer.yaml | 4 ++-- .../TandemHealth.Tandem.locale.da.yaml | 2 +- .../TandemHealth.Tandem.locale.de.yaml | 2 +- .../TandemHealth.Tandem.locale.en-US.yaml | 2 +- .../TandemHealth.Tandem.locale.es.yaml | 2 +- .../TandemHealth.Tandem.locale.et.yaml | 2 +- .../TandemHealth.Tandem.locale.fi.yaml | 2 +- .../TandemHealth.Tandem.locale.fr.yaml | 2 +- .../TandemHealth.Tandem.locale.no.yaml | 2 +- .../TandemHealth.Tandem.locale.sv.yaml | 2 +- .../Tandem/{2026.3.26 => 2026.3.27}/TandemHealth.Tandem.yaml | 2 +- 11 files changed, 12 insertions(+), 12 deletions(-) rename manifests/t/TandemHealth/Tandem/{2026.3.26 => 2026.3.27}/TandemHealth.Tandem.installer.yaml (83%) rename manifests/t/TandemHealth/Tandem/{2026.3.26 => 2026.3.27}/TandemHealth.Tandem.locale.da.yaml (96%) rename manifests/t/TandemHealth/Tandem/{2026.3.26 => 2026.3.27}/TandemHealth.Tandem.locale.de.yaml (96%) rename manifests/t/TandemHealth/Tandem/{2026.3.26 => 2026.3.27}/TandemHealth.Tandem.locale.en-US.yaml (97%) rename manifests/t/TandemHealth/Tandem/{2026.3.26 => 2026.3.27}/TandemHealth.Tandem.locale.es.yaml (96%) rename manifests/t/TandemHealth/Tandem/{2026.3.26 => 2026.3.27}/TandemHealth.Tandem.locale.et.yaml (96%) rename manifests/t/TandemHealth/Tandem/{2026.3.26 => 2026.3.27}/TandemHealth.Tandem.locale.fi.yaml (96%) rename manifests/t/TandemHealth/Tandem/{2026.3.26 => 2026.3.27}/TandemHealth.Tandem.locale.fr.yaml (97%) rename manifests/t/TandemHealth/Tandem/{2026.3.26 => 2026.3.27}/TandemHealth.Tandem.locale.no.yaml (96%) rename manifests/t/TandemHealth/Tandem/{2026.3.26 => 2026.3.27}/TandemHealth.Tandem.locale.sv.yaml (96%) rename manifests/t/TandemHealth/Tandem/{2026.3.26 => 2026.3.27}/TandemHealth.Tandem.yaml (90%) diff --git a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.installer.yaml b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.installer.yaml similarity index 83% rename from manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.installer.yaml rename to manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.installer.yaml index 95e6a413d7d7..937b896a8250 100644 --- a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.installer.yaml +++ b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem -PackageVersion: 2026.3.26 +PackageVersion: 2026.3.27 InstallerType: exe Scope: user InstallModes: @@ -17,6 +17,6 @@ ProductCode: Tandem Installers: - Architecture: x64 InstallerUrl: https://tandemhealth.blob.core.windows.net/tandem-public/native/Tandem-win-Setup.exe - InstallerSha256: 01A9000D62F5FF18468E1C147BAE4392A5E21B2B30986F3DBE1F30AD70183073 + InstallerSha256: 575EABC88C1506C8F8F803060F3AD990D8FDEB2DE4A31A868F5259AB1FCD91BC ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.da.yaml b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.da.yaml similarity index 96% rename from manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.da.yaml rename to manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.da.yaml index 1d4d13034a91..0f4341cd32de 100644 --- a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.da.yaml +++ b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.da.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem -PackageVersion: 2026.3.26 +PackageVersion: 2026.3.27 PackageLocale: da PublisherUrl: https://tandemhealth.ai/da/ PrivacyUrl: https://tandemhealth.ai/da/juridisk/privatlivspolitik diff --git a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.de.yaml b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.de.yaml similarity index 96% rename from manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.de.yaml rename to manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.de.yaml index 489e5f835668..e1c0be64930f 100644 --- a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.de.yaml +++ b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.de.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem -PackageVersion: 2026.3.26 +PackageVersion: 2026.3.27 PackageLocale: de PublisherUrl: https://tandemhealth.ai/de/ PublisherSupportUrl: https://intercom-help.eu/tandem-eu/de/ diff --git a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.en-US.yaml b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.en-US.yaml similarity index 97% rename from manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.en-US.yaml rename to manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.en-US.yaml index fbd46e13af6a..63d3d7f22c81 100644 --- a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.en-US.yaml +++ b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem -PackageVersion: 2026.3.26 +PackageVersion: 2026.3.27 PackageLocale: en-US Publisher: Tandem PublisherUrl: https://tandemhealth.ai/ diff --git a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.es.yaml b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.es.yaml similarity index 96% rename from manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.es.yaml rename to manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.es.yaml index 3c6f2a318a06..e360805a9571 100644 --- a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.es.yaml +++ b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.es.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem -PackageVersion: 2026.3.26 +PackageVersion: 2026.3.27 PackageLocale: es PublisherUrl: https://tandemhealth.ai/es/ PublisherSupportUrl: https://intercom-help.eu/tandem-eu/es/ diff --git a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.et.yaml b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.et.yaml similarity index 96% rename from manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.et.yaml rename to manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.et.yaml index 0242a4b7c78c..6d97e989e38a 100644 --- a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.et.yaml +++ b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.et.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem -PackageVersion: 2026.3.26 +PackageVersion: 2026.3.27 PackageLocale: et PublisherUrl: https://tandemhealth.ai/et/ PrivacyUrl: https://tandemhealth.ai/et/juriidiline/privacy-policy diff --git a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.fi.yaml b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.fi.yaml similarity index 96% rename from manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.fi.yaml rename to manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.fi.yaml index 3556d9d4ca58..c38687ed395a 100644 --- a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.fi.yaml +++ b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.fi.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem -PackageVersion: 2026.3.26 +PackageVersion: 2026.3.27 PackageLocale: fi PublisherUrl: https://tandemhealth.ai/fi/ PrivacyUrl: https://tandemhealth.ai/fi/legal/tietosuoja diff --git a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.fr.yaml b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.fr.yaml similarity index 97% rename from manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.fr.yaml rename to manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.fr.yaml index 209e96d18012..8522ca9197c1 100644 --- a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.fr.yaml +++ b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.fr.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem -PackageVersion: 2026.3.26 +PackageVersion: 2026.3.27 PackageLocale: fr PublisherUrl: https://tandemhealth.ai/fr/ PublisherSupportUrl: https://intercom-help.eu/tandem-eu/fr/ diff --git a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.no.yaml b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.no.yaml similarity index 96% rename from manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.no.yaml rename to manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.no.yaml index 5f02d93a1916..f6b9eb41638d 100644 --- a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.no.yaml +++ b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.no.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem -PackageVersion: 2026.3.26 +PackageVersion: 2026.3.27 PackageLocale: "no" PublisherUrl: https://tandemhealth.ai/no/ PrivacyUrl: https://tandemhealth.ai/no/juridisk/personvern diff --git a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.sv.yaml b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.sv.yaml similarity index 96% rename from manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.sv.yaml rename to manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.sv.yaml index 2e2d0d5901f2..7bf250bc2b0a 100644 --- a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.sv.yaml +++ b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.sv.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem -PackageVersion: 2026.3.26 +PackageVersion: 2026.3.27 PackageLocale: sv PublisherUrl: https://tandemhealth.ai/sv/ PublisherSupportUrl: https://intercom-help.eu/tandem-eu/sv/ diff --git a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.yaml b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.yaml similarity index 90% rename from manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.yaml rename to manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.yaml index 6ac5a359e509..b49510852036 100644 --- a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.yaml +++ b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem -PackageVersion: 2026.3.26 +PackageVersion: 2026.3.27 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 From 3ffbd8bba2b81a5794d2b674ee30bc8961380f22 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 00:09:34 +0800 Subject: [PATCH 017/162] New version: VidJuice.UniTube version 7.5.2 (#352995) --- .../7.5.2/VidJuice.UniTube.installer.yaml | 16 +++++++++ .../7.5.2/VidJuice.UniTube.locale.en-US.yaml | 34 +++++++++++++++++++ .../7.5.2/VidJuice.UniTube.locale.zh-CN.yaml | 31 +++++++++++++++++ .../UniTube/7.5.2/VidJuice.UniTube.yaml | 8 +++++ 4 files changed, 89 insertions(+) create mode 100644 manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.installer.yaml create mode 100644 manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.locale.en-US.yaml create mode 100644 manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.locale.zh-CN.yaml create mode 100644 manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.yaml diff --git a/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.installer.yaml b/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.installer.yaml new file mode 100644 index 000000000000..85adea49f5cf --- /dev/null +++ b/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.installer.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: VidJuice.UniTube +PackageVersion: 7.5.2 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +ProductCode: VidJuice UniTube_is1 +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://download.vidjuice.com/unitube.exe?v=7.5.2 + InstallerSha256: C12787EF5E5E869C3A51CF3BD91861E6863758B44EEAA0F0E1CED73900F9FDA8 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.locale.en-US.yaml b/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.locale.en-US.yaml new file mode 100644 index 000000000000..f74c221d0a9e --- /dev/null +++ b/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: VidJuice.UniTube +PackageVersion: 7.5.2 +PackageLocale: en-US +Publisher: Mobee Technology Co., Limited +PublisherUrl: https://www.vidjuice.com/ +PublisherSupportUrl: https://www.vidjuice.com/support/ +PrivacyUrl: https://www.vidjuice.com/privacy-policy/ +PackageName: VidJuice UniTube +PackageUrl: https://www.vidjuice.com/download/ +License: Proprietary +LicenseUrl: https://www.vidjuice.com/terms-of-service/ +Copyright: Copyright © 2026 VidJuice. All rights reserved. +CopyrightUrl: https://www.vidjuice.com/terms-of-service/ +ShortDescription: Download videos and audios from 10,000+ sites across all your devices +Tags: +- audio +- audio-downloader +- download +- downloader +- media +- media-downloader +- video +- video-downloader +ReleaseNotes: 1. Fixed some bugs. +ReleaseNotesUrl: https://www.vidjuice.com/tech-specs/unitube-update-history/ +PurchaseUrl: https://www.vidjuice.com/pricing/unitube-video-downloader/ +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://www.vidjuice.com/guide/how-to-download-online-videos-with-vidjuice-unitube/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.locale.zh-CN.yaml b/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.locale.zh-CN.yaml new file mode 100644 index 000000000000..67a069d6ecbf --- /dev/null +++ b/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.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: VidJuice.UniTube +PackageVersion: 7.5.2 +PackageLocale: zh-CN +Publisher: Mobee Technology Co., Limited +PublisherUrl: https://zh-cn.vidjuice.com/ +PublisherSupportUrl: https://zh-cn.vidjuice.com/support/ +PrivacyUrl: https://zh-cn.vidjuice.com/privacy-policy/ +PackageName: VidJuice UniTube +PackageUrl: https://zh-cn.vidjuice.com/download/ +License: 专有软件 +LicenseUrl: https://zh-cn.vidjuice.com/terms-of-service/ +Copyright: Copyright © 2026 VidJuice. All rights reserved. +CopyrightUrl: https://zh-cn.vidjuice.com/terms-of-service/ +ShortDescription: 在所有设备上从 10,000+ 网站下载视频和音频 +Tags: +- 下载 +- 下载器 +- 媒体 +- 视频 +- 音乐 +- 音频 +ReleaseNotesUrl: https://zh-cn.vidjuice.com/tech-specs/unitube-update-history +PurchaseUrl: https://zh-cn.vidjuice.com/pricing/unitube-video-downloader/ +Documentations: +- DocumentLabel: 用户指南 + DocumentUrl: https://zh-cn.vidjuice.com/guide/how-to-download-online-videos-with-vidjuice-unitube/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.yaml b/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.yaml new file mode 100644 index 000000000000..ad79a883439d --- /dev/null +++ b/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.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: VidJuice.UniTube +PackageVersion: 7.5.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 454ee11138888e8402ee5237b14fecc8a7757a94 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 00:10:38 +0800 Subject: [PATCH 018/162] New version: yetone.OpenAITranslator version 0.6.13 (#352997) --- .../yetone.OpenAITranslator.installer.yaml | 16 +++++++++++++ .../yetone.OpenAITranslator.locale.en-US.yaml | 24 +++++++++++++++++++ .../yetone.OpenAITranslator.locale.zh-CN.yaml | 13 ++++++++++ .../0.6.13/yetone.OpenAITranslator.yaml | 8 +++++++ 4 files changed, 61 insertions(+) create mode 100644 manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.installer.yaml create mode 100644 manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.locale.en-US.yaml create mode 100644 manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.locale.zh-CN.yaml create mode 100644 manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.yaml diff --git a/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.installer.yaml b/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.installer.yaml new file mode 100644 index 000000000000..79cd83d5dd02 --- /dev/null +++ b/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.installer.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: yetone.OpenAITranslator +PackageVersion: 0.6.13 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +ProductCode: OpenAI Translator +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/nextai-translator/nextai-translator/releases/download/v0.6.13/NextAI.Translator_0.6.13_x64-setup.exe + InstallerSha256: CCCDC12B762CD734A9F2ED4530609EF66E4EAC25AB94E70BA24BD5034607C7AD +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.locale.en-US.yaml b/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.locale.en-US.yaml new file mode 100644 index 000000000000..57602813b9e5 --- /dev/null +++ b/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.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: yetone.OpenAITranslator +PackageVersion: 0.6.13 +PackageLocale: en-US +Publisher: yetone +PublisherUrl: https://github.com/nextai-translator +PublisherSupportUrl: https://github.com/nextai-translator/nextai-translator/issues +PackageName: OpenAI Translator +PackageUrl: https://github.com/nextai-translator/nextai-translator +License: AGPL-3.0 +LicenseUrl: https://github.com/nextai-translator/nextai-translator/blob/HEAD/LICENSE +ShortDescription: Cross-platform desktop application for translation based on ChatGPT API. +Tags: +- chatgpt +- openai +- translate +- translation +- translator +ReleaseNotes: 'feat: refine UI/UX with elegant transitions, softer shadows, and polished details' +ReleaseNotesUrl: https://github.com/nextai-translator/nextai-translator/releases/tag/v0.6.13 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.locale.zh-CN.yaml b/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.locale.zh-CN.yaml new file mode 100644 index 000000000000..53c09f5c7f7d --- /dev/null +++ b/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.locale.zh-CN.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: yetone.OpenAITranslator +PackageVersion: 0.6.13 +PackageLocale: zh-CN +ShortDescription: 基于 ChatGPT API 的划词翻译跨平台桌面端应用 +Tags: +- chatgpt +- openai +- 翻译 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.yaml b/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.yaml new file mode 100644 index 000000000000..713e1caf18c3 --- /dev/null +++ b/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.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: yetone.OpenAITranslator +PackageVersion: 0.6.13 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From f2cb47a68527f939aeab1dbd3cbf98399356caf2 Mon Sep 17 00:00:00 2001 From: Fanis Hatzidakis Date: Fri, 27 Mar 2026 18:15:57 +0200 Subject: [PATCH 019/162] New package: Fanis.ClaudeCodeSwitcher version 0.3.0 (#348690) --- .../Fanis.ClaudeCodeSwitcher.installer.yaml | 14 +++++++++++++ ...Fanis.ClaudeCodeSwitcher.locale.en-US.yaml | 20 +++++++++++++++++++ .../0.3.0/Fanis.ClaudeCodeSwitcher.yaml | 8 ++++++++ 3 files changed, 42 insertions(+) create mode 100644 manifests/f/Fanis/ClaudeCodeSwitcher/0.3.0/Fanis.ClaudeCodeSwitcher.installer.yaml create mode 100644 manifests/f/Fanis/ClaudeCodeSwitcher/0.3.0/Fanis.ClaudeCodeSwitcher.locale.en-US.yaml create mode 100644 manifests/f/Fanis/ClaudeCodeSwitcher/0.3.0/Fanis.ClaudeCodeSwitcher.yaml diff --git a/manifests/f/Fanis/ClaudeCodeSwitcher/0.3.0/Fanis.ClaudeCodeSwitcher.installer.yaml b/manifests/f/Fanis/ClaudeCodeSwitcher/0.3.0/Fanis.ClaudeCodeSwitcher.installer.yaml new file mode 100644 index 000000000000..9e388d2d369f --- /dev/null +++ b/manifests/f/Fanis/ClaudeCodeSwitcher/0.3.0/Fanis.ClaudeCodeSwitcher.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Fanis.ClaudeCodeSwitcher +PackageVersion: 0.3.0 +InstallerType: portable +Commands: + - claude-code-switcher +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/fanis/claude-code-switcher/releases/download/0.3.0/claude-code-switcher.exe + InstallerSha256: B168294D2A1C684712F311CBFA61DF7599C2457279D4BC3B6667D681B1A5827C +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/f/Fanis/ClaudeCodeSwitcher/0.3.0/Fanis.ClaudeCodeSwitcher.locale.en-US.yaml b/manifests/f/Fanis/ClaudeCodeSwitcher/0.3.0/Fanis.ClaudeCodeSwitcher.locale.en-US.yaml new file mode 100644 index 000000000000..5323a7dc3d82 --- /dev/null +++ b/manifests/f/Fanis/ClaudeCodeSwitcher/0.3.0/Fanis.ClaudeCodeSwitcher.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Fanis.ClaudeCodeSwitcher +PackageVersion: 0.3.0 +PackageLocale: en-US +Publisher: Fanis Hatzidakis +PackageName: Claude Code Switcher +PackageUrl: https://github.com/fanis/claude-code-switcher +License: PolyForm Internal Use License 1.0.0 +LicenseUrl: https://github.com/fanis/claude-code-switcher/blob/master/LICENCE.md +ShortDescription: Fast native Windows utility for switching between Claude Code projects. +Description: A fast, native Windows utility for switching between Claude Code projects. Shows all your Claude Code projects in a popup dialog sorted by most recently used, with fuzzy search filtering. +Tags: + - claude + - claude-code + - developer-tools + - windows-terminal +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/f/Fanis/ClaudeCodeSwitcher/0.3.0/Fanis.ClaudeCodeSwitcher.yaml b/manifests/f/Fanis/ClaudeCodeSwitcher/0.3.0/Fanis.ClaudeCodeSwitcher.yaml new file mode 100644 index 000000000000..960331e91310 --- /dev/null +++ b/manifests/f/Fanis/ClaudeCodeSwitcher/0.3.0/Fanis.ClaudeCodeSwitcher.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Fanis.ClaudeCodeSwitcher +PackageVersion: 0.3.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 From 16d248be898cdcad148d8f41032cb1f3c3e5af65 Mon Sep 17 00:00:00 2001 From: Keath Milligan Date: Fri, 27 Mar 2026 11:27:24 -0500 Subject: [PATCH 020/162] keathmilligan.unfk version 1.3.0 (#348693) --- .../1.3.0/keathmilligan.unfk.installer.yaml | 19 +++++++++++++++++++ .../keathmilligan.unfk.locale.en-US.yaml | 12 ++++++++++++ .../unfk/1.3.0/keathmilligan.unfk.yaml | 8 ++++++++ 3 files changed, 39 insertions(+) create mode 100644 manifests/k/keathmilligan/unfk/1.3.0/keathmilligan.unfk.installer.yaml create mode 100644 manifests/k/keathmilligan/unfk/1.3.0/keathmilligan.unfk.locale.en-US.yaml create mode 100644 manifests/k/keathmilligan/unfk/1.3.0/keathmilligan.unfk.yaml diff --git a/manifests/k/keathmilligan/unfk/1.3.0/keathmilligan.unfk.installer.yaml b/manifests/k/keathmilligan/unfk/1.3.0/keathmilligan.unfk.installer.yaml new file mode 100644 index 000000000000..6ff1c964cf60 --- /dev/null +++ b/manifests/k/keathmilligan/unfk/1.3.0/keathmilligan.unfk.installer.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: keathmilligan.unfk +PackageVersion: 1.3.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: + - RelativeFilePath: unfk.exe + PortableCommandAlias: unfk +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/keathmilligan/unfk/releases/download/v1.3.0/unfk-1.3.0-x86_64-pc-windows-msvc.zip + InstallerSha256: EA30BA2EA92402E71CF50A412878731C14711A30178C9D455371FDF127D60A43 + - Architecture: arm64 + InstallerUrl: https://github.com/keathmilligan/unfk/releases/download/v1.3.0/unfk-1.3.0-aarch64-pc-windows-msvc.zip + InstallerSha256: 25A841286DF5A4AA5398D6FB1565256E1FCD0AA353234D5B99A9A15F0B2B1364 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/k/keathmilligan/unfk/1.3.0/keathmilligan.unfk.locale.en-US.yaml b/manifests/k/keathmilligan/unfk/1.3.0/keathmilligan.unfk.locale.en-US.yaml new file mode 100644 index 000000000000..ddfea36dfea7 --- /dev/null +++ b/manifests/k/keathmilligan/unfk/1.3.0/keathmilligan.unfk.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: keathmilligan.unfk +PackageVersion: 1.3.0 +PackageLocale: en-US +Publisher: keathmilligan +PackageName: unfk +License: MIT License +ShortDescription: CLI tool for scanning and correcting formatting and encoding issues across a wide variety of file types +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/k/keathmilligan/unfk/1.3.0/keathmilligan.unfk.yaml b/manifests/k/keathmilligan/unfk/1.3.0/keathmilligan.unfk.yaml new file mode 100644 index 000000000000..5faea797c4d3 --- /dev/null +++ b/manifests/k/keathmilligan/unfk/1.3.0/keathmilligan.unfk.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: keathmilligan.unfk +PackageVersion: 1.3.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 7f18b17fd8627be87a4146a378feccd6509ef566 Mon Sep 17 00:00:00 2001 From: Michael Jolley Date: Fri, 27 Mar 2026 11:37:41 -0500 Subject: [PATCH 021/162] New package: BaldBeardedBuilder.WeatherforCommandPalette version 1.0.1 (#350522) --- ...er.WeatherforCommandPalette.installer.yaml | 23 +++++++++++++++++++ ...WeatherforCommandPalette.locale.en-US.yaml | 16 +++++++++++++ ...ardedBuilder.WeatherforCommandPalette.yaml | 8 +++++++ 3 files changed, 47 insertions(+) create mode 100644 manifests/b/BaldBeardedBuilder/WeatherforCommandPalette/1.0.1.0/BaldBeardedBuilder.WeatherforCommandPalette.installer.yaml create mode 100644 manifests/b/BaldBeardedBuilder/WeatherforCommandPalette/1.0.1.0/BaldBeardedBuilder.WeatherforCommandPalette.locale.en-US.yaml create mode 100644 manifests/b/BaldBeardedBuilder/WeatherforCommandPalette/1.0.1.0/BaldBeardedBuilder.WeatherforCommandPalette.yaml diff --git a/manifests/b/BaldBeardedBuilder/WeatherforCommandPalette/1.0.1.0/BaldBeardedBuilder.WeatherforCommandPalette.installer.yaml b/manifests/b/BaldBeardedBuilder/WeatherforCommandPalette/1.0.1.0/BaldBeardedBuilder.WeatherforCommandPalette.installer.yaml new file mode 100644 index 000000000000..8f845e363e99 --- /dev/null +++ b/manifests/b/BaldBeardedBuilder/WeatherforCommandPalette/1.0.1.0/BaldBeardedBuilder.WeatherforCommandPalette.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: BaldBeardedBuilder.WeatherforCommandPalette +PackageVersion: 1.0.1.0 +Platform: +- Windows.Universal +- Windows.Desktop +MinimumOSVersion: 10.0.19041.0 +InstallerType: msix +PackageFamilyName: BaldBeardedBuilder.WeatherforCommandPalette_8gmfv84wfe0w6 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/michaeljolley/WeatherExtension/releases/download/v1.0.1/WeatherExtension_1.0.1.0_x64.msix + InstallerSha256: CD9ACA4DF852D33C5B3372BF971A983C8161DE167807A4656CA0A60C1F9410A2 + SignatureSha256: D0B0F54464D70AECECEF3441015C423E77E59F3BA71F7FCE431833568200AC55 +- Architecture: arm64 + InstallerUrl: https://github.com/michaeljolley/WeatherExtension/releases/download/v1.0.1/WeatherExtension_1.0.1.0_arm64.msix + InstallerSha256: 79083899BB81A84DF2E52DEB6B4FA78A4E90985EC7E3E3FBB70986DF791EE6EA + SignatureSha256: 975C228097C8E0E8F921DFC8D000CAD4897A57305393FB584248A9761EAAF930 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-20 diff --git a/manifests/b/BaldBeardedBuilder/WeatherforCommandPalette/1.0.1.0/BaldBeardedBuilder.WeatherforCommandPalette.locale.en-US.yaml b/manifests/b/BaldBeardedBuilder/WeatherforCommandPalette/1.0.1.0/BaldBeardedBuilder.WeatherforCommandPalette.locale.en-US.yaml new file mode 100644 index 000000000000..0ccaf96de4df --- /dev/null +++ b/manifests/b/BaldBeardedBuilder/WeatherforCommandPalette/1.0.1.0/BaldBeardedBuilder.WeatherforCommandPalette.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: BaldBeardedBuilder.WeatherforCommandPalette +PackageVersion: 1.0.1.0 +PackageLocale: en-US +Publisher: Bald Bearded Builder +PublisherUrl: https://github.com/michaeljolley +PublisherSupportUrl: https://github.com/michaeljolley/WeatherExtension/issues +PackageName: Weather for Command Palette +PackageUrl: https://github.com/michaeljolley/WeatherExtension +License: MIT +ShortDescription: Weather extension for Microsoft Command Palette +ReleaseNotesUrl: https://github.com/michaeljolley/WeatherExtension/releases/tag/v1.0.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/BaldBeardedBuilder/WeatherforCommandPalette/1.0.1.0/BaldBeardedBuilder.WeatherforCommandPalette.yaml b/manifests/b/BaldBeardedBuilder/WeatherforCommandPalette/1.0.1.0/BaldBeardedBuilder.WeatherforCommandPalette.yaml new file mode 100644 index 000000000000..4a7525098691 --- /dev/null +++ b/manifests/b/BaldBeardedBuilder/WeatherforCommandPalette/1.0.1.0/BaldBeardedBuilder.WeatherforCommandPalette.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: BaldBeardedBuilder.WeatherforCommandPalette +PackageVersion: 1.0.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From ff51da81f6260797203198d2fc646f88c13351f3 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 00:42:00 +0800 Subject: [PATCH 022/162] New version: Brave.Brave.Nightly version 146.1.90.72 (#352619) --- .../Brave.Brave.Nightly.installer.yaml | 86 +++++++++++++++++++ .../Brave.Brave.Nightly.locale.en-US.yaml | 33 +++++++ .../Brave.Brave.Nightly.locale.zh-CN.yaml | 29 +++++++ .../146.1.90.72/Brave.Brave.Nightly.yaml | 8 ++ 4 files changed, 156 insertions(+) create mode 100644 manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.installer.yaml create mode 100644 manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.locale.en-US.yaml create mode 100644 manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.locale.zh-CN.yaml create mode 100644 manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.yaml diff --git a/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.installer.yaml b/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.installer.yaml new file mode 100644 index 000000000000..aeef8ac272ca --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.installer.yaml @@ -0,0 +1,86 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Brave.Brave.Nightly +PackageVersion: 146.1.90.72 +InstallerType: exe +ExpectedReturnCodes: +- InstallerReturnCode: -2147219440 + ReturnResponse: cancelledByUser +- InstallerReturnCode: -2147219416 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: -2147218431 + ReturnResponse: invalidParameter +- InstallerReturnCode: -2147024809 + ReturnResponse: invalidParameter +UpgradeBehavior: install +Protocols: +- ftp +- http +- https +- mailto +- tel +FileExtensions: +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: BraveSoftware Brave-Browser-Nightly +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.90.72/BraveBrowserStandaloneSilentNightlySetup32.exe + InstallerSha256: 61506FCCCDF4F65A0744E45169A15E0A116611B59363D46D7FD3D85473F9AE9D + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.90.72/BraveBrowserStandaloneNightlySetup32.exe + InstallerSha256: 10BAB9E2AA7A5A1D3B0F4C2722250CB6F657B4594C40FFF3E40ACB465932A6EC + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + ElevationRequirement: elevationRequired +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.90.72/BraveBrowserStandaloneSilentNightlySetup.exe + InstallerSha256: 5D3CC1073CBB7C1BCC913A1C4805CB5BA62D4B5FC12A42A695EAF8D5EF007A80 + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.90.72/BraveBrowserStandaloneNightlySetup.exe + InstallerSha256: EE10A108FC9737EF8CFE545A74BEDCBD8CE013DD42F391E09E243703FA9F3FE2 + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.90.72/BraveBrowserStandaloneSilentNightlySetupArm64.exe + InstallerSha256: E1B36B4341425DB11F12C39C13215BB0D4952D75FD2D7A5C2F49BCEEF0A609B4 + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.90.72/BraveBrowserStandaloneNightlySetupArm64.exe + InstallerSha256: DDFDE2D887A3448E1717179BB2646C2348BF033CC54E4B3F8F16146949F773CE + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.locale.en-US.yaml b/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.locale.en-US.yaml new file mode 100644 index 000000000000..6fe48c392471 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.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: Brave.Brave.Nightly +PackageVersion: 146.1.90.72 +PackageLocale: en-US +Publisher: Brave Software Inc +PublisherUrl: https://brave.com +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave Nightly +PackageUrl: https://brave.com/download-nightly +License: MPL-2.0 +LicenseUrl: https://github.com/brave/brave-browser/blob/master/LICENSE +Copyright: Copyright © 2026 The Brave Authors. All rights reserved. +CopyrightUrl: https://brave.com/terms-of-use +ShortDescription: Brave Nightly is our testing and development version of Brave. Releases are updated every night. +Description: |- + Nightly is our testing and development version of Brave. + The releases are updated every night and may contain bugs that can result in data loss. + Nightly automatically sends us crash reports when things go wrong. +Tags: +- browser +- chromium +- internet +- privacy +- web +- webpage +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://brave.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.locale.zh-CN.yaml new file mode 100644 index 000000000000..71abe621ee4d --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Brave.Brave.Nightly +PackageVersion: 146.1.90.72 +PackageLocale: zh-CN +Publisher: Brave Software Inc +PublisherUrl: https://brave.com/zh +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave Nightly +PackageUrl: https://brave.com/download-nightly +License: MPL-2.0 +LicenseUrl: https://github.com/brave/brave-browser/blob/master/LICENSE +Copyright: 版权所有2026 Brave Software Inc。保留所有权利。 +CopyrightUrl: https://brave.com/terms-of-use +ShortDescription: Brave Nightly 是 Brave 的测试和开发版本,每天晚上更新。 +Description: Nightly 是 Brave 的测试和开发版本,每天晚上更新,可能包含导致数据丢失的错误。当出现问题时,Nightly 会自动向我们发送崩溃报告。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +- 隐私 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://brave.com/zh/faq +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.yaml b/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.yaml new file mode 100644 index 000000000000..13dd3c70d522 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.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: Brave.Brave.Nightly +PackageVersion: 146.1.90.72 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 025bc79083112c7672ebaec4773a88adb156015a Mon Sep 17 00:00:00 2001 From: leic4u <32786903+leic4u@users.noreply.github.com> Date: Sat, 28 Mar 2026 00:43:12 +0800 Subject: [PATCH 023/162] Fix LeiGod.LeiGodAcc InstallerType error. (#352974) --- .../l/LeiGod/LeiGodAcc/11.3.1.5/LeiGod.LeiGodAcc.installer.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/l/LeiGod/LeiGodAcc/11.3.1.5/LeiGod.LeiGodAcc.installer.yaml b/manifests/l/LeiGod/LeiGodAcc/11.3.1.5/LeiGod.LeiGodAcc.installer.yaml index 658b9b381fed..dbefb33b3009 100644 --- a/manifests/l/LeiGod/LeiGodAcc/11.3.1.5/LeiGod.LeiGodAcc.installer.yaml +++ b/manifests/l/LeiGod/LeiGodAcc/11.3.1.5/LeiGod.LeiGodAcc.installer.yaml @@ -3,7 +3,7 @@ PackageIdentifier: LeiGod.LeiGodAcc PackageVersion: 11.3.1.5 -InstallerType: portable +InstallerType: exe InstallModes: - interactive - silent From 770eb7f7cc3990e4a09b2f5df0a19e825d3ad69f Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 00:44:18 +0800 Subject: [PATCH 024/162] New version: Termius.Termius.Beta version 9.37.6 (#352994) --- .../Termius.Termius.Beta.installer.yaml | 8 ++++---- .../Termius.Termius.Beta.locale.en-US.yaml | 2 +- .../Termius.Termius.Beta.locale.zh-CN.yaml | 2 +- .../Beta/{9.37.5 => 9.37.6}/Termius.Termius.Beta.yaml | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) rename manifests/t/Termius/Termius/Beta/{9.37.5 => 9.37.6}/Termius.Termius.Beta.installer.yaml (74%) rename manifests/t/Termius/Termius/Beta/{9.37.5 => 9.37.6}/Termius.Termius.Beta.locale.en-US.yaml (98%) rename manifests/t/Termius/Termius/Beta/{9.37.5 => 9.37.6}/Termius.Termius.Beta.locale.zh-CN.yaml (97%) rename manifests/t/Termius/Termius/Beta/{9.37.5 => 9.37.6}/Termius.Termius.Beta.yaml (91%) diff --git a/manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.installer.yaml b/manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.installer.yaml similarity index 74% rename from manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.installer.yaml rename to manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.installer.yaml index 7cf76c84d751..1f412341292a 100644 --- a/manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.installer.yaml +++ b/manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Termius.Termius.Beta -PackageVersion: 9.37.5 +PackageVersion: 9.37.6 InstallerType: nullsoft Scope: user InstallerSwitches: @@ -12,13 +12,13 @@ Protocols: - ssh - terminus ProductCode: 783bade9-3e66-5d68-a8fa-f225b8034101 -ReleaseDate: 2026-03-12 +ReleaseDate: 2026-03-27 Installers: - Architecture: x86 InstallerUrl: https://autoupdate.termius.com/windows-beta/Install%20Termius%20Beta.exe - InstallerSha256: 53A0307E31BDFCC0E069B85E7937B700DFD26F72A139DFC904BE63D8B8FF2113 + InstallerSha256: 7D5C5CC319745F643BD31D1DAF698B4B8E184993DD3DAC0219DBF88B8BB6E29B - Architecture: x64 InstallerUrl: https://autoupdate.termius.com/windows-beta/Install%20Termius%20Beta.exe - InstallerSha256: 53A0307E31BDFCC0E069B85E7937B700DFD26F72A139DFC904BE63D8B8FF2113 + InstallerSha256: 7D5C5CC319745F643BD31D1DAF698B4B8E184993DD3DAC0219DBF88B8BB6E29B ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.locale.en-US.yaml b/manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.locale.en-US.yaml similarity index 98% rename from manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.locale.en-US.yaml rename to manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.locale.en-US.yaml index 905da8d4d419..03aa7c8c8765 100644 --- a/manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.locale.en-US.yaml +++ b/manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Termius.Termius.Beta -PackageVersion: 9.37.5 +PackageVersion: 9.37.6 PackageLocale: en-US Publisher: Termius Corporation PublisherUrl: https://termius.com/ diff --git a/manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.locale.zh-CN.yaml b/manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.locale.zh-CN.yaml similarity index 97% rename from manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.locale.zh-CN.yaml rename to manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.locale.zh-CN.yaml index 9d2ff7795b0b..f1075d483ea9 100644 --- a/manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.locale.zh-CN.yaml +++ b/manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Termius.Termius.Beta -PackageVersion: 9.37.5 +PackageVersion: 9.37.6 PackageLocale: zh-CN License: 专有软件 ShortDescription: 适用于 Windows 的现代 SSH 客户端 diff --git a/manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.yaml b/manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.yaml similarity index 91% rename from manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.yaml rename to manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.yaml index d5ba304bd39c..7fb395efd5f6 100644 --- a/manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.yaml +++ b/manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Termius.Termius.Beta -PackageVersion: 9.37.5 +PackageVersion: 9.37.6 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 From e70b9175d4968209d3e4f1917ba77033eb3ffab2 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 00:45:22 +0800 Subject: [PATCH 025/162] New version: Wasmer.Wasmer version 7.1.0 (#352996) --- .../Wasmer/7.1.0/Wasmer.Wasmer.installer.yaml | 25 +++++++++++ .../7.1.0/Wasmer.Wasmer.locale.en-US.yaml | 45 +++++++++++++++++++ .../7.1.0/Wasmer.Wasmer.locale.zh-CN.yaml | 26 +++++++++++ .../w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.yaml | 8 ++++ 4 files changed, 104 insertions(+) create mode 100644 manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.installer.yaml create mode 100644 manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.locale.en-US.yaml create mode 100644 manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.locale.zh-CN.yaml create mode 100644 manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.yaml diff --git a/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.installer.yaml b/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.installer.yaml new file mode 100644 index 000000000000..7db2d50625e3 --- /dev/null +++ b/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.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: Wasmer.Wasmer +PackageVersion: 7.1.0 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Commands: +- wasmer +- wasmer-headless +- wax +FileExtensions: +- wasm +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: Wasmer_is1 +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/wasmerio/wasmer/releases/download/v7.1.0/wasmer-windows.exe + InstallerSha256: AB7824CF469BD4C40C63686BC9759AD76ED04CB161EBD29E937934E9D1C009FF +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.locale.en-US.yaml b/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.locale.en-US.yaml new file mode 100644 index 000000000000..cea48e7003f2 --- /dev/null +++ b/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.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: Wasmer.Wasmer +PackageVersion: 7.1.0 +PackageLocale: en-US +Publisher: Wasmer, Inc. +PublisherUrl: https://wasmer.io +PublisherSupportUrl: https://github.com/wasmerio/wasmer/issues +Author: Wasmer, Inc. +PackageName: Wasmer +PackageUrl: https://wasmer.io +License: MIT +LicenseUrl: https://github.com/wasmerio/wasmer/blob/master/LICENSE +Copyright: Copyright (c) 2019-present Wasmer, Inc. and its affiliates. +ShortDescription: The leading WebAssembly Runtime supporting WASI and Emscripten +Description: 'Wasmer is a fast and secure WebAssembly runtime that enables super lightweight containers to run anywhere: from Desktop to the Cloud, Edge and IoT devices.' +Tags: +- wasm +- webassembly +ReleaseNotes: |- + This release includes: + - A new N-API interface supporting Edge.js. + - Better CPU scaling for the Cranelift and LLVM compilers on larger modules such as PHP and Python workloads. + - A substantial overhaul of WASIX TTY support. + - A complete rewrite of WASIX epoll. + - Tail Call support in the LLVM compiler. + - Extended Constant Expression support across all compilers. + - Relaxed SIMD support in the LLVM and Cranelift compilers. + - Wide Arithmetic support in LLVM and Cranelift. + - A redesigned --enable-pass-params-opt optimization for LLVM, now enabled by default. + - A new perf annotate-style script for improved profiling. + - Easier reproducible distribution builds through the WASMER_REPRODUCIBLE_BUILD=1 environment variable. + - A new secret export and secret import subcommands were introduced for easier manipulation with secrets. + - Added run --enable-nan-canonicalization. + Added + Changed + - #6357 build: adapt make-release.py for the napi crate as a submodule + Fixed +ReleaseNotesUrl: https://github.com/wasmerio/wasmer/blob/master/CHANGELOG.md#710---27032026 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.wasmer.io +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.locale.zh-CN.yaml b/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.locale.zh-CN.yaml new file mode 100644 index 000000000000..4604ff75c920 --- /dev/null +++ b/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.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: Wasmer.Wasmer +PackageVersion: 7.1.0 +PackageLocale: zh-CN +Publisher: Wasmer, Inc. +PublisherUrl: https://wasmer.io +PublisherSupportUrl: https://github.com/wasmerio/wasmer/issues +Author: Wasmer, Inc. +PackageName: Wasmer +PackageUrl: https://wasmer.io +License: MIT +LicenseUrl: https://github.com/wasmerio/wasmer/blob/master/LICENSE +Copyright: Copyright (c) 2019-present Wasmer, Inc. and its affiliates. +ShortDescription: 支持 WASI 和 Emscripten 的领先 WebAssembly 运行时 +Description: Wasmer 是快速、安全的 WebAssembly 运行时,可以让超轻量级容器在任何地方运行:从桌面到云、边缘和 IoT 设备。 +Tags: +- wasm +- webassembly +ReleaseNotesUrl: https://github.com/wasmerio/wasmer/blob/master/CHANGELOG.md#710---27032026 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.wasmer.io +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.yaml b/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.yaml new file mode 100644 index 000000000000..1c59596083d5 --- /dev/null +++ b/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.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: Wasmer.Wasmer +PackageVersion: 7.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 2ff61f4c0bcdfc60f759b47472a7f508de69ed46 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 00:48:00 +0800 Subject: [PATCH 026/162] New version: RioArisk.CodexManager version 0.1.6 (#353006) --- .../RioArisk.CodexManager.installer.yaml | 20 +++++++ .../RioArisk.CodexManager.locale.en-US.yaml | 19 +++++++ .../RioArisk.CodexManager.locale.zh-CN.yaml | 53 +++++++++++++++++++ .../0.1.6/RioArisk.CodexManager.yaml | 8 +++ 4 files changed, 100 insertions(+) create mode 100644 manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.installer.yaml create mode 100644 manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.locale.en-US.yaml create mode 100644 manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.locale.zh-CN.yaml create mode 100644 manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.yaml diff --git a/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.installer.yaml b/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.installer.yaml new file mode 100644 index 000000000000..d6200797fa61 --- /dev/null +++ b/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.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: RioArisk.CodexManager +PackageVersion: 0.1.6 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +ProductCode: '{7F446211-326D-440B-A76F-FE2CD8B620AC}' +ReleaseDate: 2026-03-27 +AppsAndFeaturesEntries: +- UpgradeCode: '{5A5099F3-F258-5945-8D7B-B90CA5E820D9}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/RioArisk/codex-auth-manager/releases/download/v0.1.6/Codex.Manager_0.1.6_x64_en-US.msi + InstallerSha256: B4BD6A6BC8D72EFB58F32EF56B8F99F06F1A49CF33203630639BE19FF4980C6D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.locale.en-US.yaml b/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.locale.en-US.yaml new file mode 100644 index 000000000000..40655501aa5b --- /dev/null +++ b/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: RioArisk.CodexManager +PackageVersion: 0.1.6 +PackageLocale: en-US +License: Freeware +ShortDescription: A Windows desktop application for managing multiple OpenAI Codex accounts (Tauri + React). +Description: |- + This project is a local Codex account management tool that supports unified management of multiple accounts, quick switching between active accounts, and checking quota usage for each account. Currently, only officially sourced Codex accounts are supported. + + Features + - 🔄 One-click account switching: Quickly switch between multiple Codex accounts with automatic write to .codex/auth.json + - 📊 Usage monitoring: Parse 5-hour / weekly quota information from local ~/.codex/sessions + - 🎯 Smart recommendation: Automatically recommend the account with the highest remaining weekly quota + - ⏰ Auto-refresh: Set auto-refresh interval (in minutes) + - 🧩 Local storage: Both account data and configurations are saved to local files +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.locale.zh-CN.yaml b/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.locale.zh-CN.yaml new file mode 100644 index 000000000000..cdff266d34a4 --- /dev/null +++ b/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.locale.zh-CN.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: RioArisk.CodexManager +PackageVersion: 0.1.6 +PackageLocale: zh-CN +Publisher: codex-manager +PublisherUrl: https://github.com/RioArisk +PublisherSupportUrl: https://github.com/RioArisk/codex-auth-manager/issues +Author: Qi Zhang +PackageName: Codex Manager +PackageUrl: https://github.com/RioArisk/codex-auth-manager +License: 免费软件 +ShortDescription: 一个用于管理多个 OpenAI Codex 账号的 Windows 桌面应用(Tauri + React)。 +Description: |- + 本项目是一个本地 Codex 账号管理工具,支持多账号统一管理、快速切换当前使用账号,并可查询各账号的额度使用情况。目前仅支持官方渠道的 Codex 账号。 + + 功能特点 + - 🔄 一键切换账号:在多个 Codex 账号之间快速切换,自动写入 .codex/auth.json + - 📊 用量监控:从本地 ~/.codex/sessions 解析 5 小时 / 周限额信息 + - 🎯 智能推荐:基于周限额剩余量自动推荐最充足账号 + - ⏰ 自动刷新:可设置自动刷新间隔(分钟) + - 🧩 本地存储:账号与配置均保存到本地文件 +Tags: +- codex +ReleaseNotes: |- + ✨ 新增功能 + 快速登录导入 + - 新增一键快速登录入口,可直接拉起 Codex 登录流程 + - 登录完成后自动检测新的 auth.json 并导入账号,减少手动复制粘贴成本 + - 设置页新增 Codex CLI 路径配置,便于自定义命令或绝对路径 + 托盘后台运行 + - 新增系统托盘支持,可在关闭主窗口后继续后台运行 + - 可从托盘重新打开主界面、切换账号,并查看账号额度摘要 + - 后台会按配置周期刷新额度并同步托盘显示 + ⚙️ 交互优化 + 关闭按钮行为配置 + - 支持“每次询问 / 最小化到托盘 / 直接退出”三种关闭策略 + - 首次关闭时可直接记住选择,并可在设置中随时修改 + - 托盘切换账号后会同步主界面状态,减少前后台状态不一致 + 当前登录同步与稳定性修复 + - 快速登录、读取当前登录、缺失身份确认导入后会立即同步活动账号并刷新额度 + - 修复 Windows 下带引号的 Codex CLI 路径无法启动快速登录的问题 + - 补强关闭流程,避免关闭确认对话框被重复唤起 + 📦 本次产物 + - Windows:Codex.Manager_0.1.6_x64-setup.exe、Codex.Manager_0.1.6_x64_en-US.msi + - macOS:Codex.Manager_0.1.6_x64.dmg、Codex.Manager_0.1.6_aarch64.dmg + 📝 撰稿人 + - @Yunssss4410(PR #7) + Full Changelog: https://github.com/RioArisk/codex-auth-manager/compare/v0.1.5...v0.1.6 +ReleaseNotesUrl: https://github.com/RioArisk/codex-auth-manager/releases/tag/v0.1.6 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.yaml b/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.yaml new file mode 100644 index 000000000000..9132536e172e --- /dev/null +++ b/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.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: RioArisk.CodexManager +PackageVersion: 0.1.6 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 From 088d91cc432e6e1c66671deaaa8142ae659ae01f Mon Sep 17 00:00:00 2001 From: Caleb Clavin <31264358+cclavin@users.noreply.github.com> Date: Fri, 27 Mar 2026 11:49:43 -0500 Subject: [PATCH 027/162] New version: cclavin.pios 1.0.0 (#350899) Co-authored-by: goreleaserbot --- .../pios/1.0.0/cclavin.pios.installer.yaml | 26 +++++++++++++++++++ .../pios/1.0.0/cclavin.pios.locale.en-US.yaml | 13 ++++++++++ .../c/cclavin/pios/1.0.0/cclavin.pios.yaml | 7 +++++ 3 files changed, 46 insertions(+) create mode 100644 manifests/c/cclavin/pios/1.0.0/cclavin.pios.installer.yaml create mode 100644 manifests/c/cclavin/pios/1.0.0/cclavin.pios.locale.en-US.yaml create mode 100644 manifests/c/cclavin/pios/1.0.0/cclavin.pios.yaml diff --git a/manifests/c/cclavin/pios/1.0.0/cclavin.pios.installer.yaml b/manifests/c/cclavin/pios/1.0.0/cclavin.pios.installer.yaml new file mode 100644 index 000000000000..317842a03e28 --- /dev/null +++ b/manifests/c/cclavin/pios/1.0.0/cclavin.pios.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: cclavin.pios +PackageVersion: 1.0.0 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-03-22" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: pios.exe + PortableCommandAlias: pios + InstallerUrl: https://github.com/cclavin/pios/releases/download/v1.0.0/pios_Windows_x86_64.zip + InstallerSha256: 95e03e130afb239af7faeb913fc86dae2dfa2a8b641ba7ef115e5505cbdb6984 + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: pios.exe + PortableCommandAlias: pios + InstallerUrl: https://github.com/cclavin/pios/releases/download/v1.0.0/pios_Windows_arm64.zip + InstallerSha256: 2509849639fc2be7d4b79806e7dda22bf0689ec7ce2ee2536c05f0263382f9f0 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/cclavin/pios/1.0.0/cclavin.pios.locale.en-US.yaml b/manifests/c/cclavin/pios/1.0.0/cclavin.pios.locale.en-US.yaml new file mode 100644 index 000000000000..746176eb30e6 --- /dev/null +++ b/manifests/c/cclavin/pios/1.0.0/cclavin.pios.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: cclavin.pios +PackageVersion: 1.0.0 +PackageLocale: en-US +Publisher: cclavin +PackageName: pios +PackageUrl: https://github.com/cclavin/PIOS +License: MIT +ShortDescription: AI Project Execution Contract CLI +Moniker: pios +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/cclavin/pios/1.0.0/cclavin.pios.yaml b/manifests/c/cclavin/pios/1.0.0/cclavin.pios.yaml new file mode 100644 index 000000000000..2cedc20fb78a --- /dev/null +++ b/manifests/c/cclavin/pios/1.0.0/cclavin.pios.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: cclavin.pios +PackageVersion: 1.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 36603fab7e450f1d06a51b252b08d889cc430556 Mon Sep 17 00:00:00 2001 From: Gianluca Date: Fri, 27 Mar 2026 17:54:04 +0100 Subject: [PATCH 028/162] Add Giancan.AutoGRToolkit version 6.0.0 (#346568) --- .../Giancan.AutoGRToolkit.installer.yaml | 17 +++++++++++++++++ .../Giancan.AutoGRToolkit.locale.en-US.yaml | 16 ++++++++++++++++ .../6.0.0.0/Giancan.AutoGRToolkit.yaml | 9 +++++++++ 3 files changed, 42 insertions(+) create mode 100644 manifests/g/Giancan/AutoGRToolkit/6.0.0.0/Giancan.AutoGRToolkit.installer.yaml create mode 100644 manifests/g/Giancan/AutoGRToolkit/6.0.0.0/Giancan.AutoGRToolkit.locale.en-US.yaml create mode 100644 manifests/g/Giancan/AutoGRToolkit/6.0.0.0/Giancan.AutoGRToolkit.yaml diff --git a/manifests/g/Giancan/AutoGRToolkit/6.0.0.0/Giancan.AutoGRToolkit.installer.yaml b/manifests/g/Giancan/AutoGRToolkit/6.0.0.0/Giancan.AutoGRToolkit.installer.yaml new file mode 100644 index 000000000000..caa8f7a07599 --- /dev/null +++ b/manifests/g/Giancan/AutoGRToolkit/6.0.0.0/Giancan.AutoGRToolkit.installer.yaml @@ -0,0 +1,17 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Giancan.AutoGRToolkit +PackageVersion: 6.0.0.0 +InstallModes: + - silent + - silentWithProgress +Installers: + - Architecture: x86 + InstallerType: inno + InstallerUrl: https://github.com/giancan/AutoGR-Toolkit/releases/download/v6.0/AutoGRT-Setup_v6.0_win-x86.exe + InstallerSha256: 1da4f9319a0d36da185786deca8fcc9d7d51e42b2ffdbcc3401b8621e65418f2 + InstallerSwitches: + Silent: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- + SilentWithProgress: /SILENT /SUPPRESSMSGBOXES /NORESTART /SP- +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/Giancan/AutoGRToolkit/6.0.0.0/Giancan.AutoGRToolkit.locale.en-US.yaml b/manifests/g/Giancan/AutoGRToolkit/6.0.0.0/Giancan.AutoGRToolkit.locale.en-US.yaml new file mode 100644 index 000000000000..e8afef25d314 --- /dev/null +++ b/manifests/g/Giancan/AutoGRToolkit/6.0.0.0/Giancan.AutoGRToolkit.locale.en-US.yaml @@ -0,0 +1,16 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Giancan.AutoGRToolkit +PackageVersion: 6.0.0.0 +PackageLocale: en-US +Publisher: Giancan +PackageName: AutoGR Toolkit +License: Freeware +ShortDescription: Toolkit for automatic image georeferencing and more. +ReleaseNotes: | + - First official GitHub release + - Added automatic update system + - Improved image configuration management +ReleaseNotesUrl: https://github.com/giancan/AutoGR-Toolkit/releases/tag/v6.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/Giancan/AutoGRToolkit/6.0.0.0/Giancan.AutoGRToolkit.yaml b/manifests/g/Giancan/AutoGRToolkit/6.0.0.0/Giancan.AutoGRToolkit.yaml new file mode 100644 index 000000000000..0d573357a4b8 --- /dev/null +++ b/manifests/g/Giancan/AutoGRToolkit/6.0.0.0/Giancan.AutoGRToolkit.yaml @@ -0,0 +1,9 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Giancan.AutoGRToolkit +PackageVersion: 6.0.0.0 +DefaultLocale: en-US +ManifestType: version + +ManifestVersion: 1.12.0 + From 9d3c8b7b7640688593c26b9757a423e710f36bb2 Mon Sep 17 00:00:00 2001 From: Abhinav Prakash Date: Fri, 27 Mar 2026 22:44:17 +0530 Subject: [PATCH 029/162] New package: rishiyaduwanshi.boiler version 0.3.0 (#350875) Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .../rishiyaduwanshi.boiler.installer.yaml | 20 +++++++++++ .../rishiyaduwanshi.boiler.locale.en-US.yaml | 36 +++++++++++++++++++ .../boiler/0.3.0/rishiyaduwanshi.boiler.yaml | 8 +++++ 3 files changed, 64 insertions(+) create mode 100644 manifests/r/rishiyaduwanshi/boiler/0.3.0/rishiyaduwanshi.boiler.installer.yaml create mode 100644 manifests/r/rishiyaduwanshi/boiler/0.3.0/rishiyaduwanshi.boiler.locale.en-US.yaml create mode 100644 manifests/r/rishiyaduwanshi/boiler/0.3.0/rishiyaduwanshi.boiler.yaml diff --git a/manifests/r/rishiyaduwanshi/boiler/0.3.0/rishiyaduwanshi.boiler.installer.yaml b/manifests/r/rishiyaduwanshi/boiler/0.3.0/rishiyaduwanshi.boiler.installer.yaml new file mode 100644 index 000000000000..c0282f650302 --- /dev/null +++ b/manifests/r/rishiyaduwanshi/boiler/0.3.0/rishiyaduwanshi.boiler.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: rishiyaduwanshi.boiler +PackageVersion: 0.3.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: bl.exe + PortableCommandAlias: boiler +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/rishiyaduwanshi/boiler/releases/download/v0.3.0/boiler_Windows_x86_64.zip + InstallerSha256: F8E8221ACC6AFE006674947035C05C3FDB3D15510A26CAA3D6A11E06EE3422AF +- Architecture: arm64 + InstallerUrl: https://github.com/rishiyaduwanshi/boiler/releases/download/v0.3.0/boiler_Windows_arm64.zip + InstallerSha256: 618F0B857BE8F1C7022BFC0FB02EBD1E7837BD38199D6496004A68ADE8DA9ABE +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-22 diff --git a/manifests/r/rishiyaduwanshi/boiler/0.3.0/rishiyaduwanshi.boiler.locale.en-US.yaml b/manifests/r/rishiyaduwanshi/boiler/0.3.0/rishiyaduwanshi.boiler.locale.en-US.yaml new file mode 100644 index 000000000000..d7aef4c252cc --- /dev/null +++ b/manifests/r/rishiyaduwanshi/boiler/0.3.0/rishiyaduwanshi.boiler.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: rishiyaduwanshi.boiler +PackageVersion: 0.3.0 +PackageLocale: en-US +Publisher: Rishi Yaduwanshi +PublisherUrl: https://github.com/rishiyaduwanshi +PublisherSupportUrl: https://github.com/rishiyaduwanshi/boiler/issues +Author: Abhinav Prakash +PackageName: Boiler +PackageUrl: https://github.com/rishiyaduwanshi/boiler +License: Apache-2.0 +LicenseUrl: https://github.com/rishiyaduwanshi/boiler/blob/main/LICENSE +Copyright: 2025 Abhinav Prakash +ShortDescription: Store reusable code snippets and stacks locally and in remote repositories. +Description: |- + Boiler is a CLI tool to store and reuse code snippets and project templates locally and in remote . + Features include automatic versioning, template variables, and zero configuration. + Stop installing entire packages for one function. Stop copy-pasting code between projects. +Moniker: boiler +Tags: +- cli +- code-snippets +- boilerplate +- templates +- productivity +- developer-tools +- go +- golang +ReleaseNotesUrl: https://github.com/rishiyaduwanshi/boiler/releases/tag/v0.3.0 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://boiler.iamabhinav.dev +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/rishiyaduwanshi/boiler/0.3.0/rishiyaduwanshi.boiler.yaml b/manifests/r/rishiyaduwanshi/boiler/0.3.0/rishiyaduwanshi.boiler.yaml new file mode 100644 index 000000000000..5fa5d9a2af86 --- /dev/null +++ b/manifests/r/rishiyaduwanshi/boiler/0.3.0/rishiyaduwanshi.boiler.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: rishiyaduwanshi.boiler +PackageVersion: 0.3.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From a378256153e8c4cb89ba691559d369f441e783a1 Mon Sep 17 00:00:00 2001 From: yukimemi Date: Sat, 28 Mar 2026 02:18:57 +0900 Subject: [PATCH 030/162] New version: yukimemi.shun version 3.7.3 (#352981) --- .../shun/3.7.3/yukimemi.shun.installer.yaml | 27 ++++++++++++ .../3.7.3/yukimemi.shun.locale.en-US.yaml | 44 +++++++++++++++++++ .../y/yukimemi/shun/3.7.3/yukimemi.shun.yaml | 8 ++++ 3 files changed, 79 insertions(+) create mode 100644 manifests/y/yukimemi/shun/3.7.3/yukimemi.shun.installer.yaml create mode 100644 manifests/y/yukimemi/shun/3.7.3/yukimemi.shun.locale.en-US.yaml create mode 100644 manifests/y/yukimemi/shun/3.7.3/yukimemi.shun.yaml diff --git a/manifests/y/yukimemi/shun/3.7.3/yukimemi.shun.installer.yaml b/manifests/y/yukimemi/shun/3.7.3/yukimemi.shun.installer.yaml new file mode 100644 index 000000000000..07edbb367045 --- /dev/null +++ b/manifests/y/yukimemi/shun/3.7.3/yukimemi.shun.installer.yaml @@ -0,0 +1,27 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: yukimemi.shun +PackageVersion: 3.7.3 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /quiet +UpgradeBehavior: install +ProductCode: shun +ReleaseDate: 2026-03-27 +AppsAndFeaturesEntries: +- ProductCode: shun +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\shun' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/yukimemi/shun/releases/download/v3.7.3/shun_3.7.3_x64-setup.exe + InstallerSha256: 08752060FCE02B62F8C40425FE8747B765C32E900F12351049E5F80DDD74DDA0 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/y/yukimemi/shun/3.7.3/yukimemi.shun.locale.en-US.yaml b/manifests/y/yukimemi/shun/3.7.3/yukimemi.shun.locale.en-US.yaml new file mode 100644 index 000000000000..5a2c6c9e8c76 --- /dev/null +++ b/manifests/y/yukimemi/shun/3.7.3/yukimemi.shun.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: yukimemi.shun +PackageVersion: 3.7.3 +PackageLocale: en-US +Publisher: yukimemi +PublisherUrl: https://github.com/yukimemi +PublisherSupportUrl: https://github.com/yukimemi/shun/issues +PackageName: shun +PackageUrl: https://github.com/yukimemi/shun +License: MIT +LicenseUrl: https://github.com/yukimemi/shun/blob/HEAD/LICENSE +ShortDescription: A cross-platform, keyboard-driven minimal launcher like Alfred/Raycast +Description: |- + shun (瞬) is a cross-platform, keyboard-driven minimal launcher built with Tauri. + Features include fuzzy/exact search, launch history with frecency sorting, args mode, + path & URL completion, slash commands, auto-update, theming, and more. +Moniker: shun +Tags: +- alfred +- keyboard +- launcher +- productivity +- raycast +- tauri +ReleaseNotes: |- + What's Changed + See commits for details. + Installation + Download the installer for your platform from the assets below: + ────────┬──────────────────────────────────────────────────────────────────────────── + Platform│File + ────────┼──────────────────────────────────────────────────────────────────────────── + Windows │*-setup.exe (installer, no admin required) or shun-windows-x64.zip + │(portable) + ────────┼──────────────────────────────────────────────────────────────────────────── + macOS │.dmg + ────────┼──────────────────────────────────────────────────────────────────────────── + Linux │.AppImage or .deb + ────────┴──────────────────────────────────────────────────────────────────────────── +ReleaseNotesUrl: https://github.com/yukimemi/shun/releases/tag/v3.7.3 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/y/yukimemi/shun/3.7.3/yukimemi.shun.yaml b/manifests/y/yukimemi/shun/3.7.3/yukimemi.shun.yaml new file mode 100644 index 000000000000..6b59bcc8f830 --- /dev/null +++ b/manifests/y/yukimemi/shun/3.7.3/yukimemi.shun.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: yukimemi.shun +PackageVersion: 3.7.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 0be77224da047a916a87b24d40f478258b5a7f99 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 01:20:04 +0800 Subject: [PATCH 031/162] New version: deanxv.DoneHub version 1.20.39 (#353000) --- .../1.20.39/deanxv.DoneHub.installer.yaml | 15 ++++++++++ .../1.20.39/deanxv.DoneHub.locale.en-US.yaml | 29 +++++++++++++++++++ .../1.20.39/deanxv.DoneHub.locale.zh-CN.yaml | 14 +++++++++ .../DoneHub/1.20.39/deanxv.DoneHub.yaml | 8 +++++ 4 files changed, 66 insertions(+) create mode 100644 manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.installer.yaml create mode 100644 manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.locale.en-US.yaml create mode 100644 manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.locale.zh-CN.yaml create mode 100644 manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.yaml diff --git a/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.installer.yaml b/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.installer.yaml new file mode 100644 index 000000000000..13c2e39262e9 --- /dev/null +++ b/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.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: deanxv.DoneHub +PackageVersion: 1.20.39 +InstallerType: portable +Commands: +- done-hub +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/deanxv/done-hub/releases/download/v1.20.39/done-hub.exe + InstallerSha256: 572EDC0634DF650E3398057992AC7DFD76EB2D738492D239AF1628468B44B886 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.locale.en-US.yaml b/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.locale.en-US.yaml new file mode 100644 index 000000000000..511f8b66f5fd --- /dev/null +++ b/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: deanxv.DoneHub +PackageVersion: 1.20.39 +PackageLocale: en-US +Publisher: Dean +PublisherUrl: https://github.com/deanxv +PublisherSupportUrl: https://github.com/deanxv/done-hub/issues +PackageName: Done Hub +PackageUrl: https://github.com/deanxv/done-hub +License: Apache-2.0 +LicenseUrl: https://github.com/deanxv/done-hub/blob/HEAD/LICENSE +Copyright: Copyright (C) 2026 deanxv. All rights reserved. +ShortDescription: All in Done Hub service for OpenAI API. +Tags: +- ai +- chatbot +- large-language-model +- llm +- openai-api +ReleaseNotes: |- + What's Changed + Right, so—long time no see. Or maybe not. Whatever, no one really gives a toss anyway, do they? Bet you're thinking, 'Right then, must be a massive update, yeah?' Wrong. Just a bunch of tinkering. That said, I did notice while hammering the thing myself—high concurrency, proper meltdown territory—memory and CPU were having a right old barney. All them base64 requests flying about, routing logic’s a proper mess, serialise this, serialise that, memory's just ballooning like it's got nowhere better to be. Luckily, Claude me stepped in. Sorted a load of memory bollocks under the Gemini router, cut down on the CPU spinning its wheels. If you're running a big ol’ pool of Gemini keys, give this version a spin—might save you a pretty penny on server bills. My Alipay's 13543******. Anyway, that's enough of that. Been slow lately—loads of non-critical bugs I just haven’t had the time for. Fancy lending a hand? Pop by the issues page, maybe I’ll chuck some AI credits your way. Right then, catch you next time. + New Contributors + - @yusnake made their first contribution in https://github.com/deanxv/done-hub/pull/52 +ReleaseNotesUrl: https://github.com/deanxv/done-hub/releases/tag/v1.20.39 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.locale.zh-CN.yaml b/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.locale.zh-CN.yaml new file mode 100644 index 000000000000..f4a04b3ce580 --- /dev/null +++ b/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.locale.zh-CN.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: deanxv.DoneHub +PackageVersion: 1.20.39 +PackageLocale: zh-CN +ShortDescription: 一站式 OpenAI API 聚合服务。 +Tags: +- openai-api +- 人工智能 +- 大语言模型 +- 聊天机器人 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.yaml b/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.yaml new file mode 100644 index 000000000000..74c7d98166b9 --- /dev/null +++ b/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.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: deanxv.DoneHub +PackageVersion: 1.20.39 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From c1898f3af350f4c2d37b30a8822afed165c00ae6 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 01:51:13 +0800 Subject: [PATCH 032/162] New version: Psyche.Kelivo version 1.1.9+27 (#353013) --- .../1.1.9+27/Psyche.Kelivo.installer.yaml | 18 +++++ .../1.1.9+27/Psyche.Kelivo.locale.en-US.yaml | 80 +++++++++++++++++++ .../1.1.9+27/Psyche.Kelivo.locale.zh-CN.yaml | 46 +++++++++++ .../Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.yaml | 8 ++ 4 files changed, 152 insertions(+) create mode 100644 manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.installer.yaml create mode 100644 manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.locale.en-US.yaml create mode 100644 manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.locale.zh-CN.yaml create mode 100644 manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.yaml diff --git a/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.installer.yaml b/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.installer.yaml new file mode 100644 index 000000000000..3fb23da94831 --- /dev/null +++ b/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.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: Psyche.Kelivo +PackageVersion: 1.1.9+27 +InstallerType: inno +Scope: machine +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: '{A7B8C9D0-E1F2-4A5B-8C9D-0E1F2A3B4C5D}}_is1' +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Chevey339/kelivo/releases/download/v1.1.9/Kelivo_windows_1.1.9+27_setup.exe + InstallerSha256: 145E01B70D6B1B9EA8FDDBFB58356C340A932F457596EEE2E59142E74DD6A4E7 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.locale.en-US.yaml b/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.locale.en-US.yaml new file mode 100644 index 000000000000..943b486bf0b1 --- /dev/null +++ b/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.locale.en-US.yaml @@ -0,0 +1,80 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Psyche.Kelivo +PackageVersion: 1.1.9+27 +PackageLocale: en-US +Publisher: Psyche +PublisherUrl: https://github.com/Chevey339 +PublisherSupportUrl: https://github.com/Chevey339/kelivo/issues +PackageName: Kelivo +PackageUrl: https://github.com/Chevey339/kelivo +License: AGPL-3.0 +LicenseUrl: https://github.com/Chevey339/kelivo/blob/HEAD/LICENSE +Copyright: Copyright (C) 2026 com.psyche. All rights reserved. +ShortDescription: A Flutter LLM Chat Client. Support Android & iOS & Harmony Next. +Description: |- + A Flutter LLM Chat Client. Support Android & iOS & Harmony Next. + ✨ Features + - 🎨 Modern Design - Material You design language with dynamic color theming support (Android 12+). + - 🌙 Dark Mode - Perfectly adapted dark theme to protect your eyes. + - 🌍 Multi-language Support - Supports both English and Chinese interfaces. + - 🖥️ Multi-platform Support - Mobile (Android/iOS/Harmony) and Desktop (Windows/macOS/Linux). + - 🔄 Multi-provider Support - Supports major AI providers like OpenAI, Google Gemini, Anthropic, etc. + - 🤖 Custom Assistants - Create and manage personalized AI assistants. + - 🖼️ Multimodal Input - Supports various formats including images, text documents, PDFs, Word documents, etc. + - 📝 Markdown Rendering - Full support for code highlighting, LaTeX formulas, tables, and more. + - 🎙️ Voice/TTS Providers - Built-in system TTS plus OpenAI / Google Gemini / ElevenLabs voice servers. + - 🛠️ MCP Support - Model Context Protocol tool integration. + - 🧰 Built-in MCP Tools - Includes a built-in MCP Fetch tool. + - 🔍 Web Search - Integrated with multiple search engines (Exa, Tavily, Zhipu, LinkUp, Brave, Bing, Metaso, SearXNG, Ollama, Jina, Perplexity, Bocha). + - 🧩 Prompt Variables - Supports dynamic variables like model name, time, etc. + - 📤 QR Code Sharing - Export and import provider configurations via QR codes. + - 💾 Data Backup - Supports chat history backup and restoration. + - 🌐 Custom Requests - Supports custom HTTP request headers and bodies. + - 🔡 Custom Fonts - Bring your own fonts (system fonts / Google Fonts). + - ⚙️ Android Background Generation - Keep chat generation running in the background (optional setting). +Tags: +- ai +- chatbot +- chatgpt +- claude +- deepseek +- doubao +- gemini +- kimi +- large-language-model +- llama +- llm +- minimax +- mistral +- qwen +ReleaseNotes: |- + What's Changed + - feat: Add context compression feature with customizable model and prompt. + - feat: Add global search mode for conversations. + - feat: Add S3 backup support. + - feat: Add support for DashScope built-in search and reasoning tools. + - feat: Add custom API URL support for Exa and Tavily search services. + - feat: Add support for Google Vertex AI Claude models and Claude 4.6 adaptive thinking. + - feat: Add support for GPT-5 series models and reasoning levels. + - feat: Add support for Moonshot Kimi thinking models and kimi-k2.5 reasoning echo. + - feat: Add support for multimodal LongCat Omni models. + - feat: Add reordering support for World Books and entries. + - feat: Add setting to toggle Markdown rendering for assistant messages. + - feat: Add "Show Provider" option to chat messages. + - feat: Add assistant name and avatar display options for chat titles. + - feat: Add confirmation dialogs for message regeneration and topic deletion. + - feat: Add log management settings and auto-cleanup. + - feat: Add customizable summary refresh frequency for assistants. + - feat: Increase maximum context message size to 1024. + - feat: Add scroll-to-bottom button in mini map. + - refactor: Improve chat auto-scroll. + - refactor: Improve citation display with card-style search results. + - perf: Optimize frosted chat bubble rendering performance. + - perf: Optimize backup and restore memory usage. + - fix: Fix several other known bugs. + Full Changelog: https://github.com/Chevey339/kelivo/compare/v1.1.8...v1.1.9 +ReleaseNotesUrl: https://github.com/Chevey339/kelivo/releases/tag/v1.1.9 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.locale.zh-CN.yaml b/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.locale.zh-CN.yaml new file mode 100644 index 000000000000..89925bfc5494 --- /dev/null +++ b/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.locale.zh-CN.yaml @@ -0,0 +1,46 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Psyche.Kelivo +PackageVersion: 1.1.9+27 +PackageLocale: zh-CN +ShortDescription: 一个 Flutter LLM 聊天客户端。支持 Android、iOS 和 Harmony Next。 +Description: |- + 一个 Flutter LLM 聊天客户端。支持 Android、iOS 和 Harmony Next。 + ✨ 功能特性 + - 🎨 现代化设计 - 采用 Material You 设计语言,支持动态色彩主题(Android 12+)。 + - 🌙 深色模式 - 完美适配的深色主题,保护您的双眼。 + - 🌍 多语言支持 - 支持英文和中文界面。 + - 🖥️ 多平台支持 - 移动端(Android/iOS/Harmony)和桌面端(Windows/macOS/Linux)。 + - 🔄 多服务商支持 - 支持 OpenAI、Google Gemini、Anthropic 等主流 AI 服务商。 + - 🤖 自定义助手 - 创建和管理个性化的 AI 助手。 + - 🖼️ 多模态输入 - 支持图片、文本文件、PDF、Word 文档等多种格式。 + - 📝 Markdown 渲染 - 完全支持代码高亮、LaTeX 公式、表格等功能。 + - 🎙️ 语音/TTS 服务 - 内置系统 TTS,同时支持 OpenAI / Google Gemini / ElevenLabs 语音服务。 + - 🛠️ MCP 支持 - 支持模型上下文协议(Model Context Protocol)工具集成。 + - 🧰 内置 MCP 工具 - 包含内置的 MCP Fetch 工具。 + - 🔍 网络搜索 - 集成多种搜索引擎(Exa、Tavily、Zhipu、LinkUp、Brave、Bing、Metaso、SearXNG、Ollama、Jina、Perplexity、Bocha)。 + - 🧩 提示词变量 - 支持模型名称、时间等动态变量。 + - 📤 二维码分享 - 通过二维码导出和导入服务商配置。 + - 💾 数据备份 - 支持聊天记录的备份与恢复。 + - 🌐 自定义请求 - 支持自定义 HTTP 请求头和请求体。 + - 🔡 自定义字体 - 可使用自定义字体(系统字体 / Google Fonts)。 + - ⚙️ Android 后台生成 - 支持在后台持续生成聊天内容(可选设置)。 +Tags: +- ai +- chatgpt +- claude +- deepseek +- gemini +- kimi +- llama +- llm +- minimax +- mistral +- 人工智能 +- 大语言模型 +- 聊天机器人 +- 豆包 +- 通义千问 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.yaml b/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.yaml new file mode 100644 index 000000000000..b3a3b37483c5 --- /dev/null +++ b/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.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: Psyche.Kelivo +PackageVersion: 1.1.9+27 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 3adcb3eeb7be0c7c1dc8e54ba61932d810c5974e Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 01:52:18 +0800 Subject: [PATCH 033/162] New version: PixPin.PixPin version 3.0.8.0 (#352965) --- .../3.0.8.0/PixPin.PixPin.installer.yaml | 20 +++++++ .../3.0.8.0/PixPin.PixPin.locale.en-US.yaml | 52 +++++++++++++++++++ .../3.0.8.0/PixPin.PixPin.locale.zh-CN.yaml | 33 ++++++++++++ .../PixPin/PixPin/3.0.8.0/PixPin.PixPin.yaml | 8 +++ 4 files changed, 113 insertions(+) create mode 100644 manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.installer.yaml create mode 100644 manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.locale.en-US.yaml create mode 100644 manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.locale.zh-CN.yaml create mode 100644 manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.yaml diff --git a/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.installer.yaml b/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.installer.yaml new file mode 100644 index 000000000000..7209c6dafc96 --- /dev/null +++ b/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.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: PixPin.PixPin +PackageVersion: 3.0.8.0 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- pixpin +ProductCode: '{506270E7-E3B5-4157-B53A-3BFFE8E418DB}_is1' +ReleaseDate: 2026-03-27 +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\PixPin' +Installers: +- Architecture: x64 + InstallerUrl: https://download.pixpinapp.com/PixPin_cn_zh-cn_3.0.8.0.exe + InstallerSha256: 2E999731643E6D9B6AB6EF66233B21983772BDD71265F5342A1E90043A0739D4 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.locale.en-US.yaml b/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.locale.en-US.yaml new file mode 100644 index 000000000000..ae8e3c6de613 --- /dev/null +++ b/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.locale.en-US.yaml @@ -0,0 +1,52 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: PixPin.PixPin +PackageVersion: 3.0.8.0 +PackageLocale: en-US +Publisher: Shenzhen Shendu Tujing Technology Co., Ltd. +PublisherUrl: https://pixpin.cn/ +PublisherSupportUrl: https://txc.qq.com/products/614512/ +PrivacyUrl: https://pixpin.cn/docs/policy/privacy_zh_CN +Author: Shenzhen Shendu Tujing Technology Co., Ltd. +PackageName: PixPin +PackageUrl: https://pixpin.cn/ +License: Proprietary +LicenseUrl: https://pixpin.cn/docs/policy/tos_zh_CN +Copyright: Copyright © 2026 Shenzhen Shendu Tujing Technology Co., Ltd. All rights reserved. +CopyrightUrl: https://pixpin.cn/docs/policy/tos_zh_CN +ShortDescription: A powerful and easy-to-use screenshot/sticker tool that helps you improve efficiency +Tags: +- annotate +- annotation +- capture +- color-picker +- ocr +- region-capture +- screen-capture +- screenshot +ReleaseNotes: |- + 3.0.8.0 + 焕然一新的界面 + 我们对 UI 进行了全面重构。全新的设计语言,更加现代、清爽的视觉风格,让你在高效工作的同时,也能拥有极致的视觉体验。 支持自定义选区边框宽度和颜色,配置-外观-截图。 + 更强大的文本识别 + 全新升级的文本识别算法,提高了识别的准确率,能同时识别简体中文,繁体中文,英文,日文。 + 更强大的图像保存 + 全新设计的保存界面,新增支持 AVIF 和 PDF 格式,预估保存文件大小,会员可预览编码效果。 可随时切换回旧版保存界面样式,配置-外观-外观-保存对话框样式。 + AI 翻译 + 我们正式接入了 AI 大模型,翻译水平大幅度跃升。不仅支持多种语言的自动互译,还能结合语境给出更精准、更自然的翻译结果,阅读外文资料从此畅通无阻。 可随时切换回旧版翻译模式,配置-系统-翻译-翻译模式。 + 桌面悬浮图标 + 通过桌面悬浮图标,点击即可触发快捷操作。还可以直接将图像或文字拖动到图标上完成贴图,可全程鼠标操作。 若关闭悬浮图标后想打开,配置-系统-系统-桌面工具栏显示。 + -【功能】录制结束后的预览页新增快捷操作,空格:暂停、左右方向键:切换帧、Home/End:跳到首尾帧 + -【功能】橡皮檫标注增加“清除所有标注”按钮 + -【功能】悬浮球菜单新增“全屏隐藏”和“截图隐藏”菜单选项,默认开启 + -【功能】翻译对话框新增分隔线,支持手动调节原文和译文区域大小 + -【功能】保存对话框新增“复制图像路径”按钮 + -【优化】文本识别对话框现在可以调整大小 + -【优化】录屏后 webp 导出速度 +ReleaseNotesUrl: https://pixpin.cn/docs/official-log/3.0.8.0 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://pixpin.cn/docs/start/what-is-pixpin +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.locale.zh-CN.yaml b/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.locale.zh-CN.yaml new file mode 100644 index 000000000000..aaab330604ac --- /dev/null +++ b/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.locale.zh-CN.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: PixPin.PixPin +PackageVersion: 3.0.8.0 +PackageLocale: zh-CN +Publisher: Shenzhen Shendu Tujing Technology Co., Ltd. +PublisherUrl: https://pixpin.cn/ +PublisherSupportUrl: https://txc.qq.com/products/614512/ +PrivacyUrl: https://pixpin.cn/docs/policy/privacy_zh_CN +Author: 深度图景科技有限公司 +PackageName: PixPin +PackageUrl: https://pixpin.cn/ +License: 专有软件 +LicenseUrl: https://pixpin.cn/docs/policy/tos_zh_CN +Copyright: 版权所有 © 2026 深圳市深度图景科技有限公司 保留所有权利。 +CopyrightUrl: https://pixpin.cn/docs/policy/tos_zh_CN +ShortDescription: 功能强大使用简单的截图/贴图工具,帮助你提高效率 +Tags: +- ocr +- 区域捕获 +- 取色器 +- 截图 +- 拾色器 +- 捕获 +- 标注 +- 标记 +ReleaseNotesUrl: https://pixpin.cn/docs/official-log/3.0.8.0 +Documentations: +- DocumentLabel: 使用文档 + DocumentUrl: https://pixpin.cn/docs/start/what-is-pixpin +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.yaml b/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.yaml new file mode 100644 index 000000000000..e293c700e5a7 --- /dev/null +++ b/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.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: PixPin.PixPin +PackageVersion: 3.0.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 9b5d8cae62638c4b558fe4455b62e81812acbafa Mon Sep 17 00:00:00 2001 From: hitalin Date: Sat, 28 Mar 2026 02:53:26 +0900 Subject: [PATCH 034/162] New version: Hitalin.NoteDeck version 0.8.19 (#353018) --- .../0.8.19/Hitalin.NoteDeck.installer.yaml | 21 +++++++++++++ .../0.8.19/Hitalin.NoteDeck.locale.en-US.yaml | 24 ++++++++++++++ .../0.8.19/Hitalin.NoteDeck.locale.ja-JP.yaml | 31 +++++++++++++++++++ .../NoteDeck/0.8.19/Hitalin.NoteDeck.yaml | 8 +++++ 4 files changed, 84 insertions(+) create mode 100644 manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.installer.yaml create mode 100644 manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.locale.en-US.yaml create mode 100644 manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.locale.ja-JP.yaml create mode 100644 manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.yaml diff --git a/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.installer.yaml b/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.installer.yaml new file mode 100644 index 000000000000..756d36c68dbf --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.installer.yaml @@ -0,0 +1,21 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.19 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +ProductCode: NoteDeck +ReleaseDate: 2026-03-27 +AppsAndFeaturesEntries: +- Publisher: notedeck + ProductCode: NoteDeck +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\NoteDeck' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/hitalin/notedeck/releases/download/v0.8.19/NoteDeck-0.8.19-windows-x64-setup.exe + InstallerSha256: D729F4ECF014E1E46722131E57F616FE7D6998C0D471B82182D635A4D970A54A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.locale.en-US.yaml b/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.locale.en-US.yaml new file mode 100644 index 000000000000..0e0446a1b695 --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.19 +PackageLocale: en-US +Publisher: hitalin +PublisherUrl: https://github.com/hitalin +PackageName: NoteDeck +PackageUrl: https://github.com/hitalin/notedeck +License: AGPL-3.0 +LicenseUrl: https://github.com/hitalin/notedeck/blob/main/LICENSE +ShortDescription: A multi-platform deck client for Misskey and its forks +Description: |- + NoteDeck is a deck client for Misskey and its forks. + It provides efficient multi-server timeline viewing with features like local full-text search, + AI integration, and localhost API that are only possible with a native desktop application. +Tags: +- deck +- fediverse +- misskey +- social-media +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.locale.ja-JP.yaml b/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.locale.ja-JP.yaml new file mode 100644 index 000000000000..2d4ea3e9432e --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.locale.ja-JP.yaml @@ -0,0 +1,31 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.19 +PackageLocale: ja-JP +Publisher: hitalin +PublisherUrl: https://github.com/hitalin +PublisherSupportUrl: https://github.com/hitalin/notedeck/issues +PackageName: NoteDeck +PackageUrl: https://github.com/hitalin/notedeck +License: AGPL-3.0 +LicenseUrl: https://github.com/hitalin/notedeck/blob/HEAD/LICENSE +ShortDescription: Misskey とそのフォークに対応したマルチプラットフォーム対応デッキクライアント +Description: |- + NoteDeck は Misskey とそのフォークに対応したデッキクライアントです。 + 複数サーバーのタイムラインを効率よく閲覧でき、ローカル全文検索、AI 統合、localhost API など + デスクトップネイティブならではの機能を備えています。 +Tags: +- deck +- fediverse +- misskey +- social-media +ReleaseNotes: |- + What's Changed + Other Changes + - Release v0.8.19 by @hitalin in #249 + Full Changelog: v0.8.18...v0.8.19 +ReleaseNotesUrl: https://github.com/hitalin/notedeck/releases/tag/v0.8.19 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.yaml b/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.yaml new file mode 100644 index 000000000000..22ad40843ea9 --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.19 +DefaultLocale: ja-JP +ManifestType: version +ManifestVersion: 1.12.0 From b138f92a1f75e86b79cab3697ee5352340d9bfe6 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 02:02:42 +0800 Subject: [PATCH 035/162] New version: NetworkOptix.NxWitness.Bundle version 6.1.1.42624 (#350255) --- ...tworkOptix.NxWitness.Bundle.installer.yaml | 21 ++++ ...rkOptix.NxWitness.Bundle.locale.en-US.yaml | 105 ++++++++++++++++++ ...rkOptix.NxWitness.Bundle.locale.zh-CN.yaml | 14 +++ .../NetworkOptix.NxWitness.Bundle.yaml | 8 ++ 4 files changed, 148 insertions(+) create mode 100644 manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.installer.yaml create mode 100644 manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.locale.en-US.yaml create mode 100644 manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.locale.zh-CN.yaml create mode 100644 manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.yaml diff --git a/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.installer.yaml b/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.installer.yaml new file mode 100644 index 000000000000..2f3d4bf1cc3b --- /dev/null +++ b/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.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: NetworkOptix.NxWitness.Bundle +PackageVersion: 6.1.1.42624 +InstallerType: burn +Scope: machine +Protocols: +- nx-vms +FileExtensions: +- nov +ProductCode: '{a5eaf35e-33f6-41a6-b503-1acb7c7e64d7}' +ReleaseDate: 2026-03-11 +AppsAndFeaturesEntries: +- UpgradeCode: '{2C83E785-23E4-4B70-BE6C-ED49FA329BB5}' +Installers: +- Architecture: x64 + InstallerUrl: https://updates.networkoptix.com/default/42624/windows/nxwitness-bundle-6.1.1.42624-windows_x64.exe + InstallerSha256: EC561C38D1941439155548BFAA5C08AEA348DBA25FF2F3A9465995C7C6DBFABF +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.locale.en-US.yaml b/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.locale.en-US.yaml new file mode 100644 index 000000000000..635203f2aaf3 --- /dev/null +++ b/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.locale.en-US.yaml @@ -0,0 +1,105 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: NetworkOptix.NxWitness.Bundle +PackageVersion: 6.1.1.42624 +PackageLocale: en-US +Publisher: Network Optix +PublisherUrl: https://www.networkoptix.com/ +PublisherSupportUrl: https://support.networkoptix.com/ +PrivacyUrl: https://www.networkoptix.com/privacy-policy +Author: Network Optix, Inc. +PackageName: Nx Witness Bundle +PackageUrl: https://www.networkoptix.com/nx-witness +License: Proprietary +LicenseUrl: https://www.networkoptix.com/terms-of-use +Copyright: © 2026 Network Optix All rights reserved. +CopyrightUrl: https://www.networkoptix.com/terms-of-use +ShortDescription: Intelligent Video Management System +Description: Nx Witness is a fast, cross-platform IP video surveillance management system designed to discover, view, record, and manage IP cameras effortlessly in real-time. +Tags: +- camera +- surveillance +ReleaseNotes: |- + IMPORTANT: + - These release notes cover changes implemented since the latest major release (6.1.0.42176). + BREAKING CHANGES: + - Support for MacOS 12 will be discontinued in the next major release (6.2).. + NEW DEVICES / OPERATING SYSTEMS SUPPORT: + - Mac OS Tahoe + - Raspbian 13 + - Milesight Edge + NEW FEATURES + - AI Manager is added as a plugin. See more at https://www.networkoptix.com/nx-ai-manager. + GENERAL IMPROVEMENTS: + - JWT Tokens are fully supported to improve authentication performance and avoid accidental logouts from Cloud connected Sites. + - Danish localization added. + - The in-Client Remote Administration Tool is improved. + - Improved the Desktop Client stability on Windows 11. + - The window size limitation is eliminated when using the --window-geometry CLI parameter to run the Desktop Client. + - The --hide-panels CLI parameter is added to launch the Desktop Client with all side panels hidden. + - The “Reset to defaults” Web Admin dialog is improved. Added the information that the activated licenses will remain on Server after a reset. + ENTERPRISE FUNCTIONALITY IMPROVEMENTS / FIXES: + - Sites could show up Unreachable in the Desktop Client. Fixed. + ANALYTICS IMPROVEMENTS / FIXES: + - Only the first object was detected on Dahua ITC413-PW4D-IZ1. Fixed. + - Objects detected on Hikvision iDS-2CD7146G0-IZS did not trigger actions. Fixed. + - Analytic events (IVA) did not work on Bosch cameras. Fixed. + - Analytics event attributes info was missing in the Event Log description. Fixed. + - Analytic Events were not triggered if the rules of the event was configured under the group level. Fixed. + DEVICE SUPPORT AND FIXES: + - Devices Specific Fixes: + - Fixed RTP issues on the URMET 1099/501B camera. + - Live stream from AXIS F9114 could not load. Fixed. + - Initialization is improved for MERIT-LILIN cameras. + - Alarm input events are supported on Hikvision DS-2CD2123G2x, DS-2CD3687G3x and Hikvision DS-2DE3C210IXx. + - Osiris OS-I3-EENSW8Mx are detected as Dahua devices. + - Input signals from FLIR were handled for 10-30 seconds. Fixed. + - Newly Supported Devices: + - Elmo NEXIBF07T, NEXIMF02 + - Encoders added to the analog list: + - Speco n32nrn, n16nrx + - Multisensor Cameras: + - Vivotek TT9333 + - HIKVISION iDS-2CD8A46G2-XZHSY + - Advanced PTZ: + - TBA + BUG FIXES: + - General UI Fixes: + - Shared bookmarks with video footage longer than 1.5 minutes could not be played back properly. Fixed. + - The Desktop Client window configuration was not saved properly if another Desktop Client instance was opened in a ne window. Fixed. + - Japanese translations improved. + - The Desktop Client could crash while accessing Nx Maps. Fixed. + - Some frames could be lost when a multi-video export contained many camera items. Fixed. + - The Desktop Client on Windows could not be uninstalled remotely (using SCCM and the psexec CLI tool). Fixed. + - The Desktop Client could crash if a camera went offline while a maintenance confirmation dialog was open. Fixed. + - Users (Power User or Administrators) could not rename shared layouts after locking and unlocking them. Fixed. + - The live stream stopped after selecting an offline device as the audio source. Fixed. + - Shared layouts did not save resolution settings for cameras. Fixed. + - Fixed the --window-geometry CLI parameter to launch the Desktop Client. + - Fixed the following audio features that did not work on Mac OS Tahoe: + - Audio from cameras + - The “Speak” action + - The “Play Sound” action + - Server Fixes: + * Fixed high CPU usage on Server after a live view license activation. + - Server kept losing connection to the LDAP server after restart if it had been terminated unexpectedly before. Fixed. + - Let's Encrypt certificates could not be loaded on a 6.1 Server due to ECDSA key. Fixed. + - The Server GUID of the Nvidia Jetsons were identical causing conflicts in multi-Server environments. Fixed. + - Server did not restore connection to inaccessible SMB shared storage after they became accessible again. Fixed. + - Sites containing apostrophe characters in their names could not connect to Cloud. Fixed. + - Server tried to send a test email to mail@example.com every time the System (Site) Management settings dialog was open in the Desktop Client. Fixed. + - Sending Emails from VMS using an insecure protocol did not work. Fixed. + API / SDK FIXES: + - Sites can be updated to a specific version via API using the /rest/v4/update method. + - The internal HTTPS Request did not work with Create Generic Event API (/rest/v4/events/generic). Fixed. + - Introduced the default value (${DATA_DIR}/update_verification_keys/) for the additionalUpdateVerificationKeysDir build parameter when building and signing a custom package. + - Fixed ​​documentation and implementation issues with the /rest/v4/login/tickets method. If a user tried to use the access token (the x-runtime-guid value) as a request body param key, server returned unauthorized error. + - The sender SSRC was always 0 in sender report while using Nx Server RTSP API to restream. Fixed. + - The preset ID was not created by Server automatically while using the ./rest/v{3-4}/devices/{device_id}/ptz/presets API request to create a preset. Fixed. + - Integrations can now be deleted via API request. + - The /rest/v4/update/info API call returned empty results. Fixed. + - Showreels are now accessible to power users via API. +ReleaseNotesUrl: https://nxvms.com/downloads/6.1.1.42624 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.locale.zh-CN.yaml b/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.locale.zh-CN.yaml new file mode 100644 index 000000000000..8b8cb683185e --- /dev/null +++ b/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.locale.zh-CN.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: NetworkOptix.NxWitness.Bundle +PackageVersion: 6.1.1.42624 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 智能视频管理系统 +Description: Nx Witness 是一款快速、跨平台的 IP 视频监控管理系统,旨在轻松实时发现、查看、录制和管理 IP 摄像头。 +Tags: +- 摄像头 +- 监控 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.yaml b/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.yaml new file mode 100644 index 000000000000..98fb79d9a33a --- /dev/null +++ b/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.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: NetworkOptix.NxWitness.Bundle +PackageVersion: 6.1.1.42624 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From bad6548ae917c9aaa1730e8146ea6a8e3a492b93 Mon Sep 17 00:00:00 2001 From: LorenzCoder <136112857+LorenzCoder@users.noreply.github.com> Date: Fri, 27 Mar 2026 19:09:08 +0100 Subject: [PATCH 036/162] New version: Microsoft.XMLNotepad version 2.9.0.19 (#353004) --- .../Microsoft.XMLNotepad.installer.yaml | 39 +++++++++++++++++++ .../Microsoft.XMLNotepad.locale.en-US.yaml | 32 +++++++++++++++ .../Microsoft.XMLNotepad.locale.zh-CN.yaml | 17 ++++++++ .../2.9.0.19/Microsoft.XMLNotepad.yaml | 8 ++++ 4 files changed, 96 insertions(+) create mode 100644 manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.installer.yaml create mode 100644 manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.locale.en-US.yaml create mode 100644 manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.locale.zh-CN.yaml create mode 100644 manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.yaml diff --git a/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.installer.yaml b/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.installer.yaml new file mode 100644 index 000000000000..b844a6db2a49 --- /dev/null +++ b/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.installer.yaml @@ -0,0 +1,39 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.XMLNotepad +PackageVersion: 2.9.0.19 +UpgradeBehavior: install +FileExtensions: +- xml +Installers: +- Platform: + - Windows.Universal + - Windows.Desktop + MinimumOSVersion: 10.0.17763.0 + Architecture: neutral + InstallerType: msix + InstallerUrl: https://github.com/microsoft/XmlNotepad/releases/download/2.9.0.19/XmlNotepadPackage_2.9.0.19_AnyCPU.msixbundle + InstallerSha256: 31A7596B2D3204B5F53BB1CE32EDBB2520E8CAB6A8621E37995E2075B0E49439 + SignatureSha256: 605D07484A17050CEF272BEDBB4FB6036B539810FB90115871EECD04C34F481E + PackageFamilyName: 43906ChrisLovett.XmlNotepad_hndwmj480pefj +- InstallerLocale: en-US + Architecture: x86 + InstallerType: zip + NestedInstallerType: wix + NestedInstallerFiles: + - RelativeFilePath: XmlNotepadSetup.msi + InstallerUrl: https://github.com/microsoft/XmlNotepad/releases/download/2.9.0.19/XmlNotepadSetup.zip + InstallerSha256: 10D88394AC4F189CA9FC73AB4DEC1AD8AC32B1DBE0C85870FD4F29C1FB8E3888 + InstallerSwitches: + InstallLocation: APPINSTALLROOTDIR="" + ProductCode: '{D18C44C6-DCA6-49E0-9CA6-D3DF30614083}' + AppsAndFeaturesEntries: + - DisplayName: XmlNotepad + Publisher: Lovett Software + DisplayVersion: 2.9.0.19 + ProductCode: '{D18C44C6-DCA6-49E0-9CA6-D3DF30614083}' + UpgradeCode: '{14C1B5E8-3198-4AF2-B4BC-351017A109D3}' +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-27 diff --git a/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.locale.en-US.yaml b/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.locale.en-US.yaml new file mode 100644 index 000000000000..c82bcaad2cf9 --- /dev/null +++ b/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.XMLNotepad +PackageVersion: 2.9.0.19 +PackageLocale: en-US +Publisher: Chris Lovett +PublisherUrl: https://github.com/microsoft/XmlNotepad +PublisherSupportUrl: https://github.com/microsoft/XmlNotepad/issues +PrivacyUrl: https://privacy.microsoft.com/privacystatement +Author: Chris Lovett +PackageName: XmlNotepad +PackageUrl: https://microsoft.github.io/XmlNotepad/ +License: MIT +LicenseUrl: https://github.com/microsoft/XmlNotepad/blob/HEAD/LICENSE +Copyright: © 2026 Microsoft Corporation. All Rights Reserved. +CopyrightUrl: https://www.microsoft.com/legal/intellectualproperty/trademarks +ShortDescription: XML Notepad provides a simple intuitive User Interface for browsing and editing XML documents. +Description: XML Notepad is the result of a promise Chris Lovett made to a friend at Microsoft. The original XML Notepad shipped in back in 1998, written by Murray Low in C++. Later on it fell behind in support for XML standards and, because we didn't have time to fix it, we pulled the downloader. But Murray apparently did such a nice job that MSDN was inundated with requests to put the notepad back up, so they asked for a replacement. +Moniker: xmlnotepad +Tags: +- extensible-markup-language +- xml +- xml-editor +- xml-files +- xml-statistics +ReleaseNotesUrl: https://github.com/microsoft/XmlNotepad/releases/tag/2.9.0.19 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/microsoft/XmlNotepad/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.locale.zh-CN.yaml b/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.locale.zh-CN.yaml new file mode 100644 index 000000000000..3b73c9c92f97 --- /dev/null +++ b/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.locale.zh-CN.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.XMLNotepad +PackageVersion: 2.9.0.19 +PackageLocale: zh-CN +PrivacyUrl: https://privacy.microsoft.com/zh-cn/privacystatement +ShortDescription: XML Notepad 为浏览和编辑 XML 文档提供了一个简单直观的用户界面。 +Description: XML Notepad 源自 Chris Lovett 对一位微软的朋友的承诺。最初的 XML Notepad 由 Murray Low 用 C++ 编写,于 1998 年推出。后来,它在支持 XML 标准方面落后了,由于我们没有时间来修复它,所以就撤下了下载程序。但 Murray 的工作非常出色,以至于 MSDN 收到了大量恢复请求,因此他们要求有一个替代品。 +Tags: +- xml +- xml文件 +- xml统计 +- xml编辑器 +- 可扩展标记语言 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.yaml b/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.yaml new file mode 100644 index 000000000000..e211657ee959 --- /dev/null +++ b/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.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.XMLNotepad +PackageVersion: 2.9.0.19 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 33dcf92b04b829a2974d9d35733845f8dbf1c3fb Mon Sep 17 00:00:00 2001 From: mrwsl <8242787+mrwsl@users.noreply.github.com> Date: Fri, 27 Mar 2026 19:18:16 +0100 Subject: [PATCH 037/162] New package: QElectroTech.QElectroTech version 0.100.0 (#352481) --- .../QElectroTech.QElectroTech.installer.yaml | 28 +++++ ...ElectroTech.QElectroTech.locale.en-US.yaml | 111 ++++++++++++++++++ .../0.100.0/QElectroTech.QElectroTech.yaml | 8 ++ 3 files changed, 147 insertions(+) create mode 100644 manifests/q/QElectroTech/QElectroTech/0.100.0/QElectroTech.QElectroTech.installer.yaml create mode 100644 manifests/q/QElectroTech/QElectroTech/0.100.0/QElectroTech.QElectroTech.locale.en-US.yaml create mode 100644 manifests/q/QElectroTech/QElectroTech/0.100.0/QElectroTech.QElectroTech.yaml diff --git a/manifests/q/QElectroTech/QElectroTech/0.100.0/QElectroTech.QElectroTech.installer.yaml b/manifests/q/QElectroTech/QElectroTech/0.100.0/QElectroTech.QElectroTech.installer.yaml new file mode 100644 index 000000000000..34c1ea9078cc --- /dev/null +++ b/manifests/q/QElectroTech/QElectroTech/0.100.0/QElectroTech.QElectroTech.installer.yaml @@ -0,0 +1,28 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: QElectroTech.QElectroTech +PackageVersion: 0.100.0 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +FileExtensions: +- elmt +- qet +ProductCode: QElectroTech +ReleaseDate: 2026-01-25 +AppsAndFeaturesEntries: +- DisplayName: QElectroTech (remove only) + ProductCode: QElectroTech +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\QElectroTech' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/qelectrotech/qelectrotech-source-mirror/releases/download/0.100/Installer_QElectroTech-0.100.0_x86_64-win64+git8590-1.exe + InstallerSha256: 14A830E391B78FD7D69D793D13F5F4D24696628B7A682077D3F7332FA41AAA80 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/q/QElectroTech/QElectroTech/0.100.0/QElectroTech.QElectroTech.locale.en-US.yaml b/manifests/q/QElectroTech/QElectroTech/0.100.0/QElectroTech.QElectroTech.locale.en-US.yaml new file mode 100644 index 000000000000..7b7c38561a43 --- /dev/null +++ b/manifests/q/QElectroTech/QElectroTech/0.100.0/QElectroTech.QElectroTech.locale.en-US.yaml @@ -0,0 +1,111 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: QElectroTech.QElectroTech +PackageVersion: 0.100.0 +PackageLocale: en-US +Publisher: QElectroTech +PublisherUrl: https://github.com/qelectrotech +PublisherSupportUrl: https://github.com/qelectrotech/qelectrotech-source-mirror/issues +Author: Laurent Trinques +PackageName: QElectroTech +PackageUrl: https://github.com/qelectrotech/qelectrotech-source-mirror +License: GPL-2.0 +LicenseUrl: https://github.com/qelectrotech/qelectrotech-source-mirror/blob/HEAD/LICENSE +ShortDescription: A free and open-source application to create electrical diagrams +Moniker: qet +ReleaseNotes: |- + QElectroTech, or QET in short, is a free software to create industrial complex electric diagrams. + But you can also even do plumbing, geothermal, air-conditioning, layout, hydraulics, pneumatics, domotic, + PID, photovoltaic, swiming pool plumbing, ect...! + On last version 0.100 the collection contains over 8000 symbols... + Version 0.100 + Compiled from provided commit logs and contributor notes. + Overview + This release (v0.100) collects a large set of new features, UI and editor improvements, element and symbol updates, build and packaging fixes, dependency upgrades, translations, and a broad set of bug fixes and stability improvements. It is intended as a stable, feature-rich stepping stone toward the next major workflows for symbol editing, terminal/strip handling and export improvements. + Highlights / Key Features + - Terminal Strip / Terminal Strip Editor + - New TerminalStripItem type and related editor workflow added. + - Support for drawing and displaying terminal bridges and links in the editor. + - Full editor support (layout preview, save/load into .qet files) and undo support for terminal strip operations. + - New Example Projects + - Several new example projects included, notably photovoltaic (PV) examples to help users getting started with PV designs. + - Improved Export / Print Handling + - Export limits adjusted and better handling of QPainter/printing boundaries to avoid export artefacts and out-of-range errors. + - Export dialog updated to allow larger pixel limits where appropriate. + - Element & Symbol Additions + - New elements and symbols added (including vendor-specific elements and additional sensors/Arduino components). + - Improvements to element import & metadata handling. + - Packaging & Multi-arch Support + - Updated packaging scripts for AppImage, Flatpak, Snap and macOS deployment. Improved aarch64/arm64 support. + Detailed Changes + Editor & UX + - Better handling for rotation, flip and mirror operations in the element editor: + - Primitives and text rotation behavior improved. + - Finer rotation increments and predictable text orientation after flips/rotations. + - Wiring and conductor behavior: + - More robust creation and movement of wires and conductor bundles. + - Improved text attachment and positioning for wires and improved stability while editing complex conductor networks. + - TerminalStrip editor: see Highlights - includes drawing, preview, layout editing, persistent storage in the project file and undo support. + - Element Editor & Symbol Trim/Sort: + - Improved trimming/normalization of element metadata. + - Better sorting and error handling for element imports (DXF and other formats). + - Small UI improvements: About dialog updates, autosave spinbox ranges, improved tooltips and mouse-hover help for dynamic texts. + New & Updated Elements + - New elements added for industrial and automation workflows (including Siemens-related elements, logic elements, sensors and Arduino components). + - Symbol library additions and cleanup; improved defaults for newly added symbols. + - Element meta-data cleanup: article numbers, descriptions, and manufacturer fields were normalized and trimmed on import. + Export / Printing / PDF + - Adjusted internal export limits to avoid hitting QPainter size restrictions; users can now export larger, high-resolution images/prints in more cases. + - Better handling of page sizes and printer-related geometry using QRectF improvements. + - PDF export improvements to increase reliability of exported vector content. + Build, Dependencies, Packaging + - Upgrades of core test and build dependencies: + - Catch2 upgraded to v2.13.10. + - googletest upgraded to v1.17.0. + - CMake fixes and i18n handling corrected for nl_BE and other locales. + - Packaging scripts updated across platforms (AppImage/Flatpak/Snap/macOS deploy) including fixes for aarch64/arm64. + - Submodule updates (e.g., qelectrotech-elements, pugixml, SingleApplication) synchronized where needed. + Internationalization & Translations + - Large translation updates across many languages: German (DE), French (FR), Dutch (NL, including nl_BE), Swedish (SV), Italian (IT), Polish (PL), Portuguese-BR (PT-BR), Serbian (SR), Chinese (Simplified) and others. + - Fixes and corrections for many UI strings and localized resources. + Tests, QA & Logging + - Improved logging and machine/config-path reporting; Git revision display refined to only show a revision when available. + - Unit test updates and fixes to align with updated testing frameworks. + Bug Fixes (selected) + - Fixed crashes and various null pointer access issues discovered by static and dynamic testing. + - Resolved multiple reported bugs that caused build failures on some platforms (FTBFS fixes for macOS and others). + - Fixed issues with automatic conductor/strand numbering in several edge cases (referenced Bug 293 in the commit logs). + - Resolved text/summary headline issues in the German-language summary generator. + - Fixes for a number of visually incorrect renderings and layout corner-cases during element transformation (rotate/flip/mirror). + - Fixed issues that affected export sizes and caused export artifacts (referenced fixes for bug IDs around #329/#330 in commit notes). + Developer & Contributor Notes + - Reworked parts of the codebase to use QRectF consistently for better compatibility with QPrinter and export pipelines. + - Code-style cleanups and comment improvements applied throughout the project. + - Expanded test coverage and dependency refresh to keep CI builds stable. + Contributors (selected) + Thanks to the many contributors who made this release possible. Selected contributors mentioned in the commit logs include: + - Laurent Trinques + - joshua + - plc-user + - Achim + - Pascal Sander + - Andre Rummler + - Magnus Hellströmer + - Martin Marmsoler + - Remi Collet + (See the full commit history for the complete contributor list.) + Upgrade / Migration Notes + - No database or project file format breaking changes were reported in the provided logs. As always, back up projects before opening them with a new version. + - If you rely on custom element libraries or third-party submodules, verify submodule synchronization after upgrading. + - If you are using custom packaging pipelines, review the updated packaging scripts for any changes required by new dependency versions, especially on aarch64/arm64. + Known Issues & Limitations + - Some very large exports may still be limited by platform-specific rendering restrictions; the export dialog now allows larger pixel limits but extreme sizes may still hit system-level limits. + - If you use niche element-import workflows (DXF → element import), occasionally metadata normalization may alter whitespace/trim rules - verify newly imported elements in the element editor. + How to get help / report bugs + - Use the project issue tracker (see repository) to report regressions or new bugs with detailed reproduction steps and example .qet files where possible. + - Include the output of Help → About (application version and Git revision) when reporting build/packaging issues. + See more here: https://github.com/qelectrotech/qelectrotech-source-mirror/blob/master/ChangeLog.MD +ReleaseNotesUrl: https://github.com/qelectrotech/qelectrotech-source-mirror/releases/tag/0.100 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/q/QElectroTech/QElectroTech/0.100.0/QElectroTech.QElectroTech.yaml b/manifests/q/QElectroTech/QElectroTech/0.100.0/QElectroTech.QElectroTech.yaml new file mode 100644 index 000000000000..4a4ecf57e55b --- /dev/null +++ b/manifests/q/QElectroTech/QElectroTech/0.100.0/QElectroTech.QElectroTech.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: QElectroTech.QElectroTech +PackageVersion: 0.100.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 4793fef06f81a16b879040b30deedf58314d682e Mon Sep 17 00:00:00 2001 From: Gijs Reijn Date: Fri, 27 Mar 2026 19:21:36 +0100 Subject: [PATCH 038/162] New package: OpenDsc resources 0.5.1 (#352888) --- .../0.5.1/OpenDsc.Resources.installer.yaml | 15 ++++++++++++ .../0.5.1/OpenDsc.Resources.locale.en-US.yaml | 24 +++++++++++++++++++ .../Resources/0.5.1/OpenDsc.Resources.yaml | 7 ++++++ 3 files changed, 46 insertions(+) create mode 100644 manifests/o/OpenDsc/Resources/0.5.1/OpenDsc.Resources.installer.yaml create mode 100644 manifests/o/OpenDsc/Resources/0.5.1/OpenDsc.Resources.locale.en-US.yaml create mode 100644 manifests/o/OpenDsc/Resources/0.5.1/OpenDsc.Resources.yaml diff --git a/manifests/o/OpenDsc/Resources/0.5.1/OpenDsc.Resources.installer.yaml b/manifests/o/OpenDsc/Resources/0.5.1/OpenDsc.Resources.installer.yaml new file mode 100644 index 000000000000..98e2857c33b1 --- /dev/null +++ b/manifests/o/OpenDsc/Resources/0.5.1/OpenDsc.Resources.installer.yaml @@ -0,0 +1,15 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: OpenDsc.Resources +PackageVersion: 0.5.1 +InstallerType: msi +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.Runtime.10 +ProductCode: '{6721C041-92B9-482B-B136-BCDF527C0792}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/opendsc/opendsc/releases/download/v0.5.1/OpenDSC.Resources-0.5.1.msi + InstallerSha256: EB45B1859008201AA7AD3A4B020CA30E1A54610E15EC5B0979C28EE5F940A898 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenDsc/Resources/0.5.1/OpenDsc.Resources.locale.en-US.yaml b/manifests/o/OpenDsc/Resources/0.5.1/OpenDsc.Resources.locale.en-US.yaml new file mode 100644 index 000000000000..d7893bbeb5a4 --- /dev/null +++ b/manifests/o/OpenDsc/Resources/0.5.1/OpenDsc.Resources.locale.en-US.yaml @@ -0,0 +1,24 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: OpenDsc.Resources +PackageVersion: 0.5.1 +PackageLocale: en-US +Publisher: OpenDsc +PublisherUrl: https://github.com/opendsc +PublisherSupportUrl: https://github.com/opendsc/opendsc/issues +PackageName: OpenDsc Resources +PackageUrl: https://github.com/opendsc/opendsc +License: MIT +LicenseUrl: https://github.com/opendsc/opendsc/blob/main/LICENSE +ShortDescription: A comprehensive set of built-in DSC resources for Windows and cross-platform management. +Description: |- + OpenDsc Resources provides a comprehensive set of built-in DSC v3 resources for managing Windows and cross-platform systems. Includes resources for managing environment variables, local groups, services, scheduled tasks, user accounts, user rights, shortcuts, optional features, security policies, file system ACLs, SQL Server, files, directories, symbolic links, JSON values, XML elements, and ZIP archives. +Tags: +- dsc +- configuration-management +- infrastructure-as-code +- windows +- dotnet +ReleaseNotesUrl: https://github.com/opendsc/opendsc/releases/tag/v0.5.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenDsc/Resources/0.5.1/OpenDsc.Resources.yaml b/manifests/o/OpenDsc/Resources/0.5.1/OpenDsc.Resources.yaml new file mode 100644 index 000000000000..88f1f99e3e5c --- /dev/null +++ b/manifests/o/OpenDsc/Resources/0.5.1/OpenDsc.Resources.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: OpenDsc.Resources +PackageVersion: 0.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 36acc09520e379315cf389ad3e6deee58a2fc4b5 Mon Sep 17 00:00:00 2001 From: copilot-cli-winget-bot Date: Fri, 27 Mar 2026 14:24:30 -0400 Subject: [PATCH 039/162] GitHub.Copilot.Prerelease version v1.0.13-0 (#352998) --- .../GitHub.Copilot.Prerelease.installer.yaml | 23 +++++++++++++++ ...itHub.Copilot.Prerelease.locale.en-US.yaml | 29 +++++++++++++++++++ .../v1.0.13-0/GitHub.Copilot.Prerelease.yaml | 8 +++++ 3 files changed, 60 insertions(+) create mode 100644 manifests/g/GitHub/Copilot/Prerelease/v1.0.13-0/GitHub.Copilot.Prerelease.installer.yaml create mode 100644 manifests/g/GitHub/Copilot/Prerelease/v1.0.13-0/GitHub.Copilot.Prerelease.locale.en-US.yaml create mode 100644 manifests/g/GitHub/Copilot/Prerelease/v1.0.13-0/GitHub.Copilot.Prerelease.yaml diff --git a/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-0/GitHub.Copilot.Prerelease.installer.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-0/GitHub.Copilot.Prerelease.installer.yaml new file mode 100644 index 000000000000..f176171bdfcc --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-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.13-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.13-0/copilot-win32-x64.zip + InstallerSha256: EC3F9BC5CE5E64BA9AB95BF36FDDAE4BAF72B75D94F70005F84B3A15E7B8F96F +- Architecture: arm64 + InstallerUrl: https://github.com/github/copilot-cli/releases/download/v1.0.13-0/copilot-win32-arm64.zip + InstallerSha256: 181B7303DC39E5F852E63CFF9EC33AB3847684D482F87ED0EA7FF3BDE44C1FC9 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-27 diff --git a/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-0/GitHub.Copilot.Prerelease.locale.en-US.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-0/GitHub.Copilot.Prerelease.locale.en-US.yaml new file mode 100644 index 000000000000..d98edf7f0734 --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-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.13-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.13-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.13-0/GitHub.Copilot.Prerelease.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-0/GitHub.Copilot.Prerelease.yaml new file mode 100644 index 000000000000..c4ec07a27fc5 --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-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.13-0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 77d1b64b6efbc732474c6d2bc95e05993a228002 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ralph=20K=C3=BCpper?= Date: Fri, 27 Mar 2026 14:25:34 -0400 Subject: [PATCH 040/162] New version: PerryTS.Perry version 0.4.24 (#353016) --- .../Perry/0.4.24/PerryTS.Perry.installer.yaml | 17 +++++++++++++ .../0.4.24/PerryTS.Perry.locale.en-US.yaml | 24 +++++++++++++++++++ .../p/PerryTS/Perry/0.4.24/PerryTS.Perry.yaml | 8 +++++++ 3 files changed, 49 insertions(+) create mode 100644 manifests/p/PerryTS/Perry/0.4.24/PerryTS.Perry.installer.yaml create mode 100644 manifests/p/PerryTS/Perry/0.4.24/PerryTS.Perry.locale.en-US.yaml create mode 100644 manifests/p/PerryTS/Perry/0.4.24/PerryTS.Perry.yaml diff --git a/manifests/p/PerryTS/Perry/0.4.24/PerryTS.Perry.installer.yaml b/manifests/p/PerryTS/Perry/0.4.24/PerryTS.Perry.installer.yaml new file mode 100644 index 000000000000..698f961c2ff4 --- /dev/null +++ b/manifests/p/PerryTS/Perry/0.4.24/PerryTS.Perry.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: PerryTS.Perry +PackageVersion: 0.4.24 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: perry.exe + PortableCommandAlias: perry +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/PerryTS/perry/releases/download/v0.4.24/perry-windows-x86_64.zip + InstallerSha256: E47C21B3BCBCF24C31F0E89F8D5FD2D96EB02E3032FDA60A048682552994D149 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-27 diff --git a/manifests/p/PerryTS/Perry/0.4.24/PerryTS.Perry.locale.en-US.yaml b/manifests/p/PerryTS/Perry/0.4.24/PerryTS.Perry.locale.en-US.yaml new file mode 100644 index 000000000000..9723e98682d3 --- /dev/null +++ b/manifests/p/PerryTS/Perry/0.4.24/PerryTS.Perry.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: PerryTS.Perry +PackageVersion: 0.4.24 +PackageLocale: en-US +Publisher: PerryTS +PublisherUrl: https://github.com/PerryTS +PublisherSupportUrl: https://github.com/PerryTS/perry/issues +PackageName: Perry +PackageUrl: https://github.com/PerryTS/perry +License: MIT +LicenseUrl: https://github.com/PerryTS/perry/blob/main/LICENSE +ShortDescription: Native TypeScript compiler that compiles TypeScript to native executables +Description: Perry is a native TypeScript compiler written in Rust that compiles TypeScript source code directly to native executables. It uses SWC for TypeScript parsing and Cranelift for code generation. +Tags: +- typescript +- compiler +- native +- rust +- cranelift +ReleaseNotesUrl: https://github.com/PerryTS/perry/releases/tag/v0.4.24 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PerryTS/Perry/0.4.24/PerryTS.Perry.yaml b/manifests/p/PerryTS/Perry/0.4.24/PerryTS.Perry.yaml new file mode 100644 index 000000000000..e70885bceda7 --- /dev/null +++ b/manifests/p/PerryTS/Perry/0.4.24/PerryTS.Perry.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: PerryTS.Perry +PackageVersion: 0.4.24 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 0032228c0fa01781149e6ddbb43b968d78e683b7 Mon Sep 17 00:00:00 2001 From: UnownPlain Date: Fri, 27 Mar 2026 14:26:26 -0400 Subject: [PATCH 041/162] New package: Google.WorkspaceCLI version 0.22.1 (#352677) --- .../0.22.1/Google.WorkspaceCLI.installer.yaml | 19 ++++++++++ .../Google.WorkspaceCLI.locale.en-US.yaml | 38 +++++++++++++++++++ .../0.22.1/Google.WorkspaceCLI.yaml | 8 ++++ 3 files changed, 65 insertions(+) create mode 100644 manifests/g/Google/WorkspaceCLI/0.22.1/Google.WorkspaceCLI.installer.yaml create mode 100644 manifests/g/Google/WorkspaceCLI/0.22.1/Google.WorkspaceCLI.locale.en-US.yaml create mode 100644 manifests/g/Google/WorkspaceCLI/0.22.1/Google.WorkspaceCLI.yaml diff --git a/manifests/g/Google/WorkspaceCLI/0.22.1/Google.WorkspaceCLI.installer.yaml b/manifests/g/Google/WorkspaceCLI/0.22.1/Google.WorkspaceCLI.installer.yaml new file mode 100644 index 000000000000..b017f6061e8c --- /dev/null +++ b/manifests/g/Google/WorkspaceCLI/0.22.1/Google.WorkspaceCLI.installer.yaml @@ -0,0 +1,19 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Google.WorkspaceCLI +PackageVersion: 0.22.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: gws.exe + PortableCommandAlias: gws +Commands: +- gws +ReleaseDate: 2026-03-25 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/googleworkspace/cli/releases/download/v0.22.1/google-workspace-cli-x86_64-pc-windows-msvc.zip + InstallerSha256: 5E33F26556DF86411959E0F07CD51CAA87B4EAA413B14A385C9EFD828B5B1739 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/Google/WorkspaceCLI/0.22.1/Google.WorkspaceCLI.locale.en-US.yaml b/manifests/g/Google/WorkspaceCLI/0.22.1/Google.WorkspaceCLI.locale.en-US.yaml new file mode 100644 index 000000000000..d7b74749c568 --- /dev/null +++ b/manifests/g/Google/WorkspaceCLI/0.22.1/Google.WorkspaceCLI.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Google.WorkspaceCLI +PackageVersion: 0.22.1 +PackageLocale: en-US +Publisher: Google LLC +PublisherUrl: https://about.google/ +PublisherSupportUrl: https://github.com/googleworkspace/cli/issues +Author: Google LLC +PackageName: Google Workspace CLI +PackageUrl: https://github.com/googleworkspace/cli +License: Apache-2.0 +LicenseUrl: https://github.com/googleworkspace/cli/blob/HEAD/LICENSE +ShortDescription: One command-line tool for Drive, Gmail, Calendar, Sheets, Docs, Chat, Admin, and more. Dynamically built from Google Discovery Service. Includes AI agent skills. +Moniker: gws +Tags: +- agent-skills +- ai-agent +- automation +- cli +- discovery-api +- gemini-cli-extension +- google-admin +- google-api +- google-calendar +- google-chat +- google-docs +- google-drive +- google-sheets +- google-workspace +- google-workspace-cli +ReleaseNotes: |- + Patch Changes + - 6a45832: Sync generated skills with latest Google Discovery API specs +ReleaseNotesUrl: https://github.com/googleworkspace/cli/releases/tag/v0.22.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/Google/WorkspaceCLI/0.22.1/Google.WorkspaceCLI.yaml b/manifests/g/Google/WorkspaceCLI/0.22.1/Google.WorkspaceCLI.yaml new file mode 100644 index 000000000000..0c990af97375 --- /dev/null +++ b/manifests/g/Google/WorkspaceCLI/0.22.1/Google.WorkspaceCLI.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: Google.WorkspaceCLI +PackageVersion: 0.22.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 0b57f07d672cd97982fac25e9a476dacf96852e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9D=A4=E6=98=AF=E7=BA=B1=E9=9B=BE=E9=85=B1=E5=93=9F?= =?UTF-8?q?=EF=BD=9E?= <49941141+Dragon1573@users.noreply.github.com> Date: Sat, 28 Mar 2026 02:37:31 +0800 Subject: [PATCH 042/162] New package: Danfoss.MyDrive.Insight version 2.20.0 (#352307) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: ❤是纱雾酱哟~ <49941141+Dragon1573@users.noreply.github.com> --- .../Danfoss.MyDrive.Insight.installer.yaml | 27 +++++++++++++++ .../Danfoss.MyDrive.Insight.locale.en-US.yaml | 33 +++++++++++++++++++ .../2.20.0/Danfoss.MyDrive.Insight.yaml | 8 +++++ 3 files changed, 68 insertions(+) create mode 100644 manifests/d/Danfoss/MyDrive/Insight/2.20.0/Danfoss.MyDrive.Insight.installer.yaml create mode 100644 manifests/d/Danfoss/MyDrive/Insight/2.20.0/Danfoss.MyDrive.Insight.locale.en-US.yaml create mode 100644 manifests/d/Danfoss/MyDrive/Insight/2.20.0/Danfoss.MyDrive.Insight.yaml diff --git a/manifests/d/Danfoss/MyDrive/Insight/2.20.0/Danfoss.MyDrive.Insight.installer.yaml b/manifests/d/Danfoss/MyDrive/Insight/2.20.0/Danfoss.MyDrive.Insight.installer.yaml new file mode 100644 index 000000000000..919b12cff8fc --- /dev/null +++ b/manifests/d/Danfoss/MyDrive/Insight/2.20.0/Danfoss.MyDrive.Insight.installer.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Danfoss.MyDrive.Insight +PackageVersion: 2.20.0 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: nullsoft +NestedInstallerFiles: +- RelativeFilePath: MyDrive Insight 2.20.0 Setup.exe +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: MyDrive Insight 2.20.0 +ReleaseDate: 2025-12-17 +AppsAndFeaturesEntries: +- DisplayName: MyDrive Insight 2.20.0 + Publisher: Danfoss Drives + ProductCode: MyDrive Insight 2.20.0 +Installers: +- Architecture: x86 + InstallerUrl: https://datacore.mydrive.danfoss.com/assets/1a46936b-6b64-4854-9637-306d20ea88e2?download + InstallerSha256: 244F58FABBABBE6002FA435ABACBD04421F6C7608AA3A6521AFB9615E076D9CC +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/Danfoss/MyDrive/Insight/2.20.0/Danfoss.MyDrive.Insight.locale.en-US.yaml b/manifests/d/Danfoss/MyDrive/Insight/2.20.0/Danfoss.MyDrive.Insight.locale.en-US.yaml new file mode 100644 index 000000000000..22360427e9be --- /dev/null +++ b/manifests/d/Danfoss/MyDrive/Insight/2.20.0/Danfoss.MyDrive.Insight.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Danfoss.MyDrive.Insight +PackageVersion: 2.20.0 +PackageLocale: en-US +Publisher: Danfoss A/S +PublisherUrl: https://www.danfoss.com/en/about-danfoss/company/ +PublisherSupportUrl: https://www.danfoss.com/en/service-and-support/ +PackageName: MyDrive Insight +PackageUrl: https://suite.mydrive.danfoss.com/content/tools?tags=iC2%20Series&category=all&lang=EN&id=24 +License: Proprietary +Copyright: © 2023 Danfoss A/S All Rights Reserved +ShortDescription: > + With MyDrive Insight you get a pc software tool, saving you time and cost in your daily work by + reducing complexity. +Description: |- + The tool helps to support with commissioning and monitoring. + + Features include: + + - Seamless configuration and commissioning support + - Project management with backup/restore and report generation functionality + - Data-based drives performance insights - device signals, notifications, and drives systems + performance visualizations based on real-time data + - Enhanced configuration through fieldbus customization, and functional safety interface + - Secure communication – no unauthorized access to your system +ReleaseNotesUrl: https://suite.mydrive.danfoss.com/content/tools?tags=iC2%20Series&category=all&id=24&lang=EN&release=open +Documentations: +- DocumentLabel: MyDrive Insight fact sheet + DocumentUrl: https://files.danfoss.com/download/Drives/AM421746728271en_MyDrive_Insight.pdf +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Danfoss/MyDrive/Insight/2.20.0/Danfoss.MyDrive.Insight.yaml b/manifests/d/Danfoss/MyDrive/Insight/2.20.0/Danfoss.MyDrive.Insight.yaml new file mode 100644 index 000000000000..ddf33450811c --- /dev/null +++ b/manifests/d/Danfoss/MyDrive/Insight/2.20.0/Danfoss.MyDrive.Insight.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: Danfoss.MyDrive.Insight +PackageVersion: 2.20.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 26e600f692f734049ddde1f15de820bdbd3be67b Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 02:57:31 +0800 Subject: [PATCH 043/162] New version: hellodigua.ChatLab version 0.14.0 (#353023) --- .../0.14.0/hellodigua.ChatLab.installer.yaml | 26 ++++++++++++++ .../hellodigua.ChatLab.locale.en-US.yaml | 35 +++++++++++++++++++ .../hellodigua.ChatLab.locale.zh-CN.yaml | 31 ++++++++++++++++ .../ChatLab/0.14.0/hellodigua.ChatLab.yaml | 8 +++++ 4 files changed, 100 insertions(+) create mode 100644 manifests/h/hellodigua/ChatLab/0.14.0/hellodigua.ChatLab.installer.yaml create mode 100644 manifests/h/hellodigua/ChatLab/0.14.0/hellodigua.ChatLab.locale.en-US.yaml create mode 100644 manifests/h/hellodigua/ChatLab/0.14.0/hellodigua.ChatLab.locale.zh-CN.yaml create mode 100644 manifests/h/hellodigua/ChatLab/0.14.0/hellodigua.ChatLab.yaml diff --git a/manifests/h/hellodigua/ChatLab/0.14.0/hellodigua.ChatLab.installer.yaml b/manifests/h/hellodigua/ChatLab/0.14.0/hellodigua.ChatLab.installer.yaml new file mode 100644 index 000000000000..188c95e8a657 --- /dev/null +++ b/manifests/h/hellodigua/ChatLab/0.14.0/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.14.0 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 5c93c6d5-cfd9-53ea-a37a-26c1e3d35c8d +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/hellodigua/ChatLab/releases/download/v0.14.0/ChatLab-0.14.0-setup.exe + InstallerSha256: E287D33146AFAF9492F468F7C64708CA43062811CBB14C32B994D1BB0D9F5071 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/hellodigua/ChatLab/releases/download/v0.14.0/ChatLab-0.14.0-setup.exe + InstallerSha256: E287D33146AFAF9492F468F7C64708CA43062811CBB14C32B994D1BB0D9F5071 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.14.0/hellodigua.ChatLab.locale.en-US.yaml b/manifests/h/hellodigua/ChatLab/0.14.0/hellodigua.ChatLab.locale.en-US.yaml new file mode 100644 index 000000000000..9083a5974ea5 --- /dev/null +++ b/manifests/h/hellodigua/ChatLab/0.14.0/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.14.0 +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/hellodigua/ChatLab/releases/tag/v0.14.0 +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.14.0/hellodigua.ChatLab.locale.zh-CN.yaml b/manifests/h/hellodigua/ChatLab/0.14.0/hellodigua.ChatLab.locale.zh-CN.yaml new file mode 100644 index 000000000000..120748f5149c --- /dev/null +++ b/manifests/h/hellodigua/ChatLab/0.14.0/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.14.0 +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 + Add API import/export and preset prompts, improve Overview and settings flows, and fix message deduplication, AI conversation flow, and daily trend display. + 更新内容 + 支持通过 API 导入与查询聊天消息,优化总览和设置体验,并修复消息去重、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.14.0/hellodigua.ChatLab.yaml b/manifests/h/hellodigua/ChatLab/0.14.0/hellodigua.ChatLab.yaml new file mode 100644 index 000000000000..464119eb5c94 --- /dev/null +++ b/manifests/h/hellodigua/ChatLab/0.14.0/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.14.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 2038c34be979b1d6abdb81b64accd5a8b66a0992 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 02:58:29 +0800 Subject: [PATCH 044/162] New version: leezer3.OpenBVE version 1.12.1.2 (#353024) --- .../1.12.1.2/leezer3.OpenBVE.installer.yaml | 19 ++++++++ .../leezer3.OpenBVE.locale.en-US.yaml | 44 +++++++++++++++++++ .../leezer3.OpenBVE.locale.zh-CN.yaml | 26 +++++++++++ .../OpenBVE/1.12.1.2/leezer3.OpenBVE.yaml | 8 ++++ 4 files changed, 97 insertions(+) create mode 100644 manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.installer.yaml create mode 100644 manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.locale.en-US.yaml create mode 100644 manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.locale.zh-CN.yaml create mode 100644 manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.yaml diff --git a/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.installer.yaml b/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.installer.yaml new file mode 100644 index 000000000000..9f1c6f081959 --- /dev/null +++ b/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: leezer3.OpenBVE +PackageVersion: 1.12.1.2 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +ProductCode: '{D617A45D-C2F6-44D1-A85C-CA7FFA91F7FC}_is1' +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/leezer3/OpenBVE/releases/download/1.12.1.2/openBVE-1.12.1.2-setup.exe + InstallerSha256: 8087E8DB7847F2B0E7FE0B6BDE1FB02F5DA505CD6299120A3323F769C6895D0A +- Architecture: x64 + InstallerUrl: https://github.com/leezer3/OpenBVE/releases/download/1.12.1.2/openBVE-1.12.1.2-setup.exe + InstallerSha256: 8087E8DB7847F2B0E7FE0B6BDE1FB02F5DA505CD6299120A3323F769C6895D0A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.locale.en-US.yaml b/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.locale.en-US.yaml new file mode 100644 index 000000000000..09eaff052762 --- /dev/null +++ b/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: leezer3.OpenBVE +PackageVersion: 1.12.1.2 +PackageLocale: en-US +Publisher: The OpenBVE Project +PublisherUrl: https://openbve-project.net/ +PublisherSupportUrl: https://github.com/leezer3/OpenBVE/issues +Author: Christopher Lees +PackageName: openBVE +PackageUrl: https://openbve-project.net/ +License: BSD-2-Clause +LicenseUrl: https://openbve-project.net/copyright/ +Copyright: © 2007 - 2026 The OpenBVE Project, and released into the Public Domain. +ShortDescription: A license-free, open source, free of charge train driving simulator. +Description: |- + OpenBVE is a license-free, open source, free of charge train driving simulator. + This program includes detailed per-car simulation of the brake systems, friction, air resistance, toppling and more. In 3D cabs, the driving experience is augmented with forces that shake your simulated body upon acceleration and braking, as well as in curves. Besides that, OpenBVE features a 3D positional sound system best enjoyed with surround speakers, train exteriors and timetables for the current run. Finally, via the main menu, routes and trains be easily selected to start a new session, the controls can be configured to keyboard or joystick devices, and a variety of options can be selected. + Compared to other simulators of the genre, especially compared to commercial games, OpenBVE has its main focus on realism, not necessarily on user-friendliness. You should be willing to study operational manuals for the routes and trains you want to drive, and will in many cases not get along by just memorizing a few keystrokes. If you can identify with this focus, OpenBVE might be the right simulator for you. +Tags: +- game +- gaming +- metro +- railway +- simulate +- simulation +- simulator +- subway +- train +- underground +ReleaseNotes: |- + Significant Changes: + - Change: Set BVETSHacks after a BVE5 route is loaded, so that train specific fixes are used. + - Change: Update id-ID translation (Aditiya Afrizal) + - Change: Some improvements to Loksim3D object parsing. + - Fix: Issue with couplers in CarXML Convertor. + - Fix: Beacon reciever position incorrect for XML trains. +ReleaseNotesUrl: https://github.com/leezer3/OpenBVE/releases/tag/1.12.1.2 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/leezer3/OpenBVE/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.locale.zh-CN.yaml b/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.locale.zh-CN.yaml new file mode 100644 index 000000000000..ea1a5ac212f7 --- /dev/null +++ b/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.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: leezer3.OpenBVE +PackageVersion: 1.12.1.2 +PackageLocale: zh-CN +ShortDescription: 免许可证、开源、免费的火车驾驶模拟器。 +Description: |- + OpenBVE 是一款免许可证、开源、免费的火车驾驶模拟器。 + 该程序包括制动系统、摩擦、空气阻力、倾覆等每辆车的详细模拟。在三维驾驶室中,加速、制动和转弯时模拟车身的晃动会增强驾驶体验。除此以外,OpenBVE 还配备了 3D 定位声音系统,可通过搭配环绕扬声器、列车外部和当前运行时刻表以体验最佳效果。最后,可以在主菜单轻松选择路线和列车以开始新的会话,可以将键盘或操纵杆设备配置为控制器,同时还有各种选项可选。 + 与其它同类模拟器,尤其是与商业游戏相比,OpenBVE 的重点在于逼真性而不一定是用户友好性。你可能需要研究你所驾驶的路线和列车的操作手册,并且在大多数情况下仅靠记住几个按键是无法完成任务的。如果你能认同这一重点,OpenBVE 可能就是适合你的模拟器。 +Tags: +- 列车 +- 地铁 +- 模拟 +- 模拟器 +- 游戏 +- 火车 +- 轨道交通 +- 铁路 +ReleaseNotesUrl: https://github.com/leezer3/OpenBVE/releases/tag/1.12.1.2 +Documentations: +- DocumentLabel: 维基 + DocumentUrl: https://github.com/leezer3/OpenBVE/wiki +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.yaml b/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.yaml new file mode 100644 index 000000000000..adb896b1944a --- /dev/null +++ b/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.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: leezer3.OpenBVE +PackageVersion: 1.12.1.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From e5d7a4f513f6c3dce2877d729d318063cf211015 Mon Sep 17 00:00:00 2001 From: Oliver Schantz Date: Fri, 27 Mar 2026 20:29:21 +0100 Subject: [PATCH 045/162] New package: frequency403.OpenSSHGUI version 3.0.1 (#351444) --- .../frequency403.OpenSSHGUI.installer.yaml | 16 ++++++++++++ .../frequency403.OpenSSHGUI.locale.en-US.yaml | 25 +++++++++++++++++++ .../3.0.1/frequency403.OpenSSHGUI.yaml | 8 ++++++ 3 files changed, 49 insertions(+) create mode 100644 manifests/f/frequency403/OpenSSHGUI/3.0.1/frequency403.OpenSSHGUI.installer.yaml create mode 100644 manifests/f/frequency403/OpenSSHGUI/3.0.1/frequency403.OpenSSHGUI.locale.en-US.yaml create mode 100644 manifests/f/frequency403/OpenSSHGUI/3.0.1/frequency403.OpenSSHGUI.yaml diff --git a/manifests/f/frequency403/OpenSSHGUI/3.0.1/frequency403.OpenSSHGUI.installer.yaml b/manifests/f/frequency403/OpenSSHGUI/3.0.1/frequency403.OpenSSHGUI.installer.yaml new file mode 100644 index 000000000000..b7c6bbc8a2a7 --- /dev/null +++ b/manifests/f/frequency403/OpenSSHGUI/3.0.1/frequency403.OpenSSHGUI.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: frequency403.OpenSSHGUI +PackageVersion: 3.0.1 +InstallerType: portable +InstallModes: +- silent +UpgradeBehavior: install +ReleaseDate: 2026-03-24 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/frequency403/OpenSSH-GUI/releases/download/v3.0.1/OpenSSH-GUI-win-x64.exe + InstallerSha256: 530F1A91C7EA02C3E376DB946B6052F465A5F7C5A474404B033EAF088C3B6240 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/f/frequency403/OpenSSHGUI/3.0.1/frequency403.OpenSSHGUI.locale.en-US.yaml b/manifests/f/frequency403/OpenSSHGUI/3.0.1/frequency403.OpenSSHGUI.locale.en-US.yaml new file mode 100644 index 000000000000..d9e7280c3ff2 --- /dev/null +++ b/manifests/f/frequency403/OpenSSHGUI/3.0.1/frequency403.OpenSSHGUI.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: frequency403.OpenSSHGUI +PackageVersion: 3.0.1 +PackageLocale: en-US +Publisher: frequency403 +PublisherUrl: https://github.com/frequency403 +PublisherSupportUrl: https://github.com/frequency403/OpenSSH-GUI/issues +Author: Oliver Schantz +PackageName: OpenSSH_GUI +PackageUrl: https://github.com/frequency403/OpenSSH-GUI +License: MIT +LicenseUrl: https://github.com/frequency403/OpenSSH-GUI/blob/HEAD/LICENSE +ShortDescription: A simple GUI front-end for OpenSSH for Windows, Linux and Mac! +Description: Discover OpenSSH-GUI, an intuitive graphical interface for OpenSSH, designed for Windows, Linux, and Mac users. Built entirely in C#, this open-source tool simplifies managing SSH connections, keys, and configurations. +Moniker: opensshgui +ReleaseNotes: |- + What's Changed + - Fix naming errors and startup issues with file readability - Release v3.0.1 by @frequency403 in #19 + - Release/v3.0.1 by @frequency403 in #20 + Full Changelog: v3.0.0...v3.0.1 +ReleaseNotesUrl: https://github.com/frequency403/OpenSSH-GUI/releases/tag/v3.0.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/frequency403/OpenSSHGUI/3.0.1/frequency403.OpenSSHGUI.yaml b/manifests/f/frequency403/OpenSSHGUI/3.0.1/frequency403.OpenSSHGUI.yaml new file mode 100644 index 000000000000..e249973c0505 --- /dev/null +++ b/manifests/f/frequency403/OpenSSHGUI/3.0.1/frequency403.OpenSSHGUI.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: frequency403.OpenSSHGUI +PackageVersion: 3.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 87dead2d756953639048e91be69d3332076e15b0 Mon Sep 17 00:00:00 2001 From: mobisystems-winget Date: Fri, 27 Mar 2026 21:29:34 +0200 Subject: [PATCH 046/162] MobiSystems.MobiOffice version 11.40.15329.0 (#351198) --- .../MobiSystems.MobiOffice.installer.yaml | 18 ++++++++++++ .../MobiSystems.MobiOffice.locale.en-US.yaml | 29 +++++++++++++++++++ .../11.40.15329.0/MobiSystems.MobiOffice.yaml | 8 +++++ 3 files changed, 55 insertions(+) create mode 100644 manifests/m/MobiSystems/MobiOffice/11.40.15329.0/MobiSystems.MobiOffice.installer.yaml create mode 100644 manifests/m/MobiSystems/MobiOffice/11.40.15329.0/MobiSystems.MobiOffice.locale.en-US.yaml create mode 100644 manifests/m/MobiSystems/MobiOffice/11.40.15329.0/MobiSystems.MobiOffice.yaml diff --git a/manifests/m/MobiSystems/MobiOffice/11.40.15329.0/MobiSystems.MobiOffice.installer.yaml b/manifests/m/MobiSystems/MobiOffice/11.40.15329.0/MobiSystems.MobiOffice.installer.yaml new file mode 100644 index 000000000000..40e9f0fd2d24 --- /dev/null +++ b/manifests/m/MobiSystems/MobiOffice/11.40.15329.0/MobiSystems.MobiOffice.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: MobiSystems.MobiOffice +PackageVersion: 11.40.15329.0 +Platform: +- Windows.Universal +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: msix +PackageFamilyName: MobiSystems.MobiOffice_bvgb55c3tfatp +Installers: +- Architecture: x64 + InstallerUrl: https://cfg.mobisystems.com/update/com.mobisystems.windows.appx.mobioffice/11.40.15329/full/MobiOffice.Package_11.40.15329.0_x64.msixbundle + InstallerSha256: 4FBBDAE1FB7F534D0DA466AC7180952F1308FFEDD19D2EB845CA8EA9CCC9EF76 + SignatureSha256: F531AD1CD4C9E6B6734E4D9EE15F8622B2EFAEBF0EC4219FAB126AD92FBB6E47 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/MobiSystems/MobiOffice/11.40.15329.0/MobiSystems.MobiOffice.locale.en-US.yaml b/manifests/m/MobiSystems/MobiOffice/11.40.15329.0/MobiSystems.MobiOffice.locale.en-US.yaml new file mode 100644 index 000000000000..ffe44420bb2c --- /dev/null +++ b/manifests/m/MobiSystems/MobiOffice/11.40.15329.0/MobiSystems.MobiOffice.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: MobiSystems.MobiOffice +PackageVersion: 11.40.15329.0 +PackageLocale: en-US +Publisher: MobiSystems, Inc. +PublisherUrl: https://www.mobisystems.com +PublisherSupportUrl: https://www.mobisystems.com/support/ +PrivacyUrl: https://mobisystems.com/en-us/privacy-policy +PackageName: MobiOffice +PackageUrl: https://www.mobisystems.com/office-suite/ +License: Proprietary +LicenseUrl: https://mobisystems.com/en-us/terms-of-use +ShortDescription: Office suite compatible with Word, Excel, and PowerPoint +Description: MobiOffice is a full-featured office suite for creating, editing, and managing documents, spreadsheets, and presentations. Compatible with Microsoft Office formats including DOCX, XLSX, and PPTX. +Tags: +- office +- documents +- spreadsheets +- presentations +- word +- excel +- powerpoint +- docx +- xlsx +- pptx +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MobiSystems/MobiOffice/11.40.15329.0/MobiSystems.MobiOffice.yaml b/manifests/m/MobiSystems/MobiOffice/11.40.15329.0/MobiSystems.MobiOffice.yaml new file mode 100644 index 000000000000..cfb97294450c --- /dev/null +++ b/manifests/m/MobiSystems/MobiOffice/11.40.15329.0/MobiSystems.MobiOffice.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: MobiSystems.MobiOffice +PackageVersion: 11.40.15329.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 27156b0c4a83f0b2620b18f432f23c133cec7feb Mon Sep 17 00:00:00 2001 From: Dirk Lemstra Date: Fri, 27 Mar 2026 20:29:58 +0100 Subject: [PATCH 047/162] New version: ImageMagick.Q16-HDRI version 7.1.2.18 (#350961) --- .../ImageMagick.Q16-HDRI.installer.yaml | 22 ------------------- .../ImageMagick.Q16-HDRI.installer.yaml | 22 +++++++++++++++++++ .../ImageMagick.Q16-HDRI.locale.en-US.yaml | 10 ++++----- .../ImageMagick.Q16-HDRI.yaml | 8 +++---- 4 files changed, 31 insertions(+), 31 deletions(-) delete mode 100644 manifests/i/ImageMagick/Q16-HDRI/7.1.2.17/ImageMagick.Q16-HDRI.installer.yaml create mode 100644 manifests/i/ImageMagick/Q16-HDRI/7.1.2.18/ImageMagick.Q16-HDRI.installer.yaml rename manifests/i/ImageMagick/Q16-HDRI/{7.1.2.17 => 7.1.2.18}/ImageMagick.Q16-HDRI.locale.en-US.yaml (84%) rename manifests/i/ImageMagick/Q16-HDRI/{7.1.2.17 => 7.1.2.18}/ImageMagick.Q16-HDRI.yaml (55%) diff --git a/manifests/i/ImageMagick/Q16-HDRI/7.1.2.17/ImageMagick.Q16-HDRI.installer.yaml b/manifests/i/ImageMagick/Q16-HDRI/7.1.2.17/ImageMagick.Q16-HDRI.installer.yaml deleted file mode 100644 index 5daf259d3b2d..000000000000 --- a/manifests/i/ImageMagick/Q16-HDRI/7.1.2.17/ImageMagick.Q16-HDRI.installer.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: ImageMagick.Q16-HDRI -PackageVersion: 7.1.2.17 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.17763.0 -InstallerType: msix -PackageFamilyName: ImageMagick.Q16-HDRI_b3hnabsze9y3j -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-17/ImageMagick.Q16-HDRI.msixbundle - InstallerSha256: 5319365B557BA1569FBC3E1FA7E7A1E93DE7CDD82D1E3858BDD04FB4B708F4D0 - SignatureSha256: C2D6616C68BC8CF238A961C4AEA62363EFD010B9AEF10D6F1E34DBA767734506 -- Architecture: arm64 - InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-17/ImageMagick.Q16-HDRI.msixbundle - InstallerSha256: 5319365B557BA1569FBC3E1FA7E7A1E93DE7CDD82D1E3858BDD04FB4B708F4D0 - SignatureSha256: C2D6616C68BC8CF238A961C4AEA62363EFD010B9AEF10D6F1E34DBA767734506 -ManifestType: installer -ManifestVersion: 1.10.0 -ReleaseDate: 2026-03-15 diff --git a/manifests/i/ImageMagick/Q16-HDRI/7.1.2.18/ImageMagick.Q16-HDRI.installer.yaml b/manifests/i/ImageMagick/Q16-HDRI/7.1.2.18/ImageMagick.Q16-HDRI.installer.yaml new file mode 100644 index 000000000000..ac9be1d7fa98 --- /dev/null +++ b/manifests/i/ImageMagick/Q16-HDRI/7.1.2.18/ImageMagick.Q16-HDRI.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ImageMagick.Q16-HDRI +PackageVersion: 7.1.2.18 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: msix +PackageFamilyName: ImageMagick.Q16-HDRI_b3hnabsze9y3j +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-18/ImageMagick.Q16-HDRI.msixbundle + InstallerSha256: E8606B27760FEE199C6D4CFF9A922B524079BBF45156A3178F17B88991A8396E + SignatureSha256: 043A85B82E02680A61152A4E42CEFF61B1363518AE2F382EF2681E5DCC53FDBB +- Architecture: arm64 + InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-18/ImageMagick.Q16-HDRI.msixbundle + InstallerSha256: E8606B27760FEE199C6D4CFF9A922B524079BBF45156A3178F17B88991A8396E + SignatureSha256: 043A85B82E02680A61152A4E42CEFF61B1363518AE2F382EF2681E5DCC53FDBB +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-22 diff --git a/manifests/i/ImageMagick/Q16-HDRI/7.1.2.17/ImageMagick.Q16-HDRI.locale.en-US.yaml b/manifests/i/ImageMagick/Q16-HDRI/7.1.2.18/ImageMagick.Q16-HDRI.locale.en-US.yaml similarity index 84% rename from manifests/i/ImageMagick/Q16-HDRI/7.1.2.17/ImageMagick.Q16-HDRI.locale.en-US.yaml rename to manifests/i/ImageMagick/Q16-HDRI/7.1.2.18/ImageMagick.Q16-HDRI.locale.en-US.yaml index 05d7e51c103e..b75ffdc1772b 100644 --- a/manifests/i/ImageMagick/Q16-HDRI/7.1.2.17/ImageMagick.Q16-HDRI.locale.en-US.yaml +++ b/manifests/i/ImageMagick/Q16-HDRI/7.1.2.18/ImageMagick.Q16-HDRI.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: ImageMagick.Q16-HDRI -PackageVersion: 7.1.2.17 +PackageVersion: 7.1.2.18 PackageLocale: en-US Publisher: ImageMagick Studio LLC PublisherUrl: https://github.com/ImageMagick/ImageMagick @@ -20,9 +20,9 @@ Tags: - imagemagick - magick - resize -ReleaseNotesUrl: https://github.com/ImageMagick/ImageMagick/releases/tag/7.1.2-17 +ReleaseNotesUrl: https://github.com/ImageMagick/ImageMagick/releases/tag/7.1.2-18 Documentations: - DocumentLabel: Usage DocumentUrl: https://usage.imagemagick.org/ ManifestType: defaultLocale -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/i/ImageMagick/Q16-HDRI/7.1.2.17/ImageMagick.Q16-HDRI.yaml b/manifests/i/ImageMagick/Q16-HDRI/7.1.2.18/ImageMagick.Q16-HDRI.yaml similarity index 55% rename from manifests/i/ImageMagick/Q16-HDRI/7.1.2.17/ImageMagick.Q16-HDRI.yaml rename to manifests/i/ImageMagick/Q16-HDRI/7.1.2.18/ImageMagick.Q16-HDRI.yaml index 555dd3d7b7cb..804e937ec7cf 100644 --- a/manifests/i/ImageMagick/Q16-HDRI/7.1.2.17/ImageMagick.Q16-HDRI.yaml +++ b/manifests/i/ImageMagick/Q16-HDRI/7.1.2.18/ImageMagick.Q16-HDRI.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: ImageMagick.Q16-HDRI -PackageVersion: 7.1.2.17 +PackageVersion: 7.1.2.18 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 From 064dd91df93a98b372dfaee5e7f3fbbf289d8f08 Mon Sep 17 00:00:00 2001 From: agnosdesigner Date: Fri, 27 Mar 2026 16:30:13 -0300 Subject: [PATCH 048/162] New package: Cfx.re.RedM version 2.0.0.6775 (#350799) --- .../re/RedM/2.0.0.6775/Cfx.re.RedM.installer.yaml | 12 ++++++++++++ .../RedM/2.0.0.6775/Cfx.re.RedM.locale.en-US.yaml | 13 +++++++++++++ manifests/c/Cfx/re/RedM/2.0.0.6775/Cfx.re.RedM.yaml | 8 ++++++++ 3 files changed, 33 insertions(+) create mode 100644 manifests/c/Cfx/re/RedM/2.0.0.6775/Cfx.re.RedM.installer.yaml create mode 100644 manifests/c/Cfx/re/RedM/2.0.0.6775/Cfx.re.RedM.locale.en-US.yaml create mode 100644 manifests/c/Cfx/re/RedM/2.0.0.6775/Cfx.re.RedM.yaml diff --git a/manifests/c/Cfx/re/RedM/2.0.0.6775/Cfx.re.RedM.installer.yaml b/manifests/c/Cfx/re/RedM/2.0.0.6775/Cfx.re.RedM.installer.yaml new file mode 100644 index 000000000000..89113e1ce713 --- /dev/null +++ b/manifests/c/Cfx/re/RedM/2.0.0.6775/Cfx.re.RedM.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: Cfx.re.RedM +PackageVersion: 2.0.0.6775 +InstallerType: exe +Installers: +- Architecture: x64 + InstallerUrl: https://content.cfx.re/mirrors/client_download/RedM.exe + InstallerSha256: 856D3E10185023F759D70396A2ECCA30F8025C85D0FCCFEFA5564DADBDC3FFC4 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cfx/re/RedM/2.0.0.6775/Cfx.re.RedM.locale.en-US.yaml b/manifests/c/Cfx/re/RedM/2.0.0.6775/Cfx.re.RedM.locale.en-US.yaml new file mode 100644 index 000000000000..00cea54d5985 --- /dev/null +++ b/manifests/c/Cfx/re/RedM/2.0.0.6775/Cfx.re.RedM.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Cfx.re.RedM +PackageVersion: 2.0.0.6775 +PackageLocale: en-US +Publisher: Cfx.re +PackageName: RedM +License: GPL-3.0 +Copyright: (C) 2015-2022 Cfx.re +ShortDescription: RedM +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cfx/re/RedM/2.0.0.6775/Cfx.re.RedM.yaml b/manifests/c/Cfx/re/RedM/2.0.0.6775/Cfx.re.RedM.yaml new file mode 100644 index 000000000000..7d4cb0cc0198 --- /dev/null +++ b/manifests/c/Cfx/re/RedM/2.0.0.6775/Cfx.re.RedM.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: Cfx.re.RedM +PackageVersion: 2.0.0.6775 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From f6d3707ea630dc5a967541d913ec51befa4d4d73 Mon Sep 17 00:00:00 2001 From: agnosdesigner Date: Fri, 27 Mar 2026 16:30:37 -0300 Subject: [PATCH 049/162] New package: Cfx.re.FiveM version 2.0.0.25776 (#350793) --- .../FiveM/2.0.0.25776/Cfx.re.FiveM.installer.yaml | 12 ++++++++++++ .../2.0.0.25776/Cfx.re.FiveM.locale.en-US.yaml | 13 +++++++++++++ .../c/Cfx/re/FiveM/2.0.0.25776/Cfx.re.FiveM.yaml | 8 ++++++++ 3 files changed, 33 insertions(+) create mode 100644 manifests/c/Cfx/re/FiveM/2.0.0.25776/Cfx.re.FiveM.installer.yaml create mode 100644 manifests/c/Cfx/re/FiveM/2.0.0.25776/Cfx.re.FiveM.locale.en-US.yaml create mode 100644 manifests/c/Cfx/re/FiveM/2.0.0.25776/Cfx.re.FiveM.yaml diff --git a/manifests/c/Cfx/re/FiveM/2.0.0.25776/Cfx.re.FiveM.installer.yaml b/manifests/c/Cfx/re/FiveM/2.0.0.25776/Cfx.re.FiveM.installer.yaml new file mode 100644 index 000000000000..fe26c80615c0 --- /dev/null +++ b/manifests/c/Cfx/re/FiveM/2.0.0.25776/Cfx.re.FiveM.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: Cfx.re.FiveM +PackageVersion: 2.0.0.25776 +InstallerType: exe +Installers: +- Architecture: x64 + InstallerUrl: https://runtime.fivem.net/client/FiveM.exe + InstallerSha256: 3387931FC00AE9BD5FFF9FC8EFE7537960CEF92AAC32133066172F3952FE1ED9 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cfx/re/FiveM/2.0.0.25776/Cfx.re.FiveM.locale.en-US.yaml b/manifests/c/Cfx/re/FiveM/2.0.0.25776/Cfx.re.FiveM.locale.en-US.yaml new file mode 100644 index 000000000000..68bb00c67754 --- /dev/null +++ b/manifests/c/Cfx/re/FiveM/2.0.0.25776/Cfx.re.FiveM.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Cfx.re.FiveM +PackageVersion: 2.0.0.25776 +PackageLocale: en-US +Publisher: Cfx.re +PackageName: FiveM +License: GPL-3.0 +Copyright: (C) 2015-2022 Cfx.re +ShortDescription: FiveM +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cfx/re/FiveM/2.0.0.25776/Cfx.re.FiveM.yaml b/manifests/c/Cfx/re/FiveM/2.0.0.25776/Cfx.re.FiveM.yaml new file mode 100644 index 000000000000..52374343b7fa --- /dev/null +++ b/manifests/c/Cfx/re/FiveM/2.0.0.25776/Cfx.re.FiveM.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: Cfx.re.FiveM +PackageVersion: 2.0.0.25776 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 83a5d623888277ef0eae6914a66bf36b620ffdaf Mon Sep 17 00:00:00 2001 From: Nicolas Altmann <46928829+sibexico@users.noreply.github.com> Date: Fri, 27 Mar 2026 12:30:53 -0700 Subject: [PATCH 050/162] New package: sibexico.Trusty version 0.4.2 (#349882) --- .../0.4.2/sibexico.Trusty.installer.yaml | 15 +++++++++++++++ .../0.4.2/sibexico.Trusty.locale.en-US.yaml | 19 +++++++++++++++++++ .../Trusty/0.4.2/sibexico.Trusty.yaml | 8 ++++++++ 3 files changed, 42 insertions(+) create mode 100644 manifests/s/sibexico/Trusty/0.4.2/sibexico.Trusty.installer.yaml create mode 100644 manifests/s/sibexico/Trusty/0.4.2/sibexico.Trusty.locale.en-US.yaml create mode 100644 manifests/s/sibexico/Trusty/0.4.2/sibexico.Trusty.yaml diff --git a/manifests/s/sibexico/Trusty/0.4.2/sibexico.Trusty.installer.yaml b/manifests/s/sibexico/Trusty/0.4.2/sibexico.Trusty.installer.yaml new file mode 100644 index 000000000000..a57987fe3382 --- /dev/null +++ b/manifests/s/sibexico/Trusty/0.4.2/sibexico.Trusty.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: sibexico.Trusty +PackageVersion: 0.4.2 +InstallerType: portable +Commands: +- trusty +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/sibexico/Trusty/releases/download/v0.4.2/trusty_0.4.2_windows_x86_64.exe + InstallerSha256: 53B3200B5DA5790F754ED460A7DE4282473687C9EFE3075CD25B4A7BA7A53516 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-19 diff --git a/manifests/s/sibexico/Trusty/0.4.2/sibexico.Trusty.locale.en-US.yaml b/manifests/s/sibexico/Trusty/0.4.2/sibexico.Trusty.locale.en-US.yaml new file mode 100644 index 000000000000..47ede99d6020 --- /dev/null +++ b/manifests/s/sibexico/Trusty/0.4.2/sibexico.Trusty.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: sibexico.Trusty +PackageVersion: 0.4.2 +PackageLocale: en-US +Publisher: Nicolas Altmann +PublisherUrl: https://github.com/sibexico +PublisherSupportUrl: https://github.com/sibexico/Trusty/issues +PackageName: Trusty Messenger +PackageUrl: https://github.com/sibexico/Trusty +License: MIT +ShortDescription: End-to-end encryption in any conversation +ReleaseNotesUrl: https://github.com/sibexico/Trusty/releases/tag/v0.4.2 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/sibexico/Trusty/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/sibexico/Trusty/0.4.2/sibexico.Trusty.yaml b/manifests/s/sibexico/Trusty/0.4.2/sibexico.Trusty.yaml new file mode 100644 index 000000000000..e7b956a38249 --- /dev/null +++ b/manifests/s/sibexico/Trusty/0.4.2/sibexico.Trusty.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: sibexico.Trusty +PackageVersion: 0.4.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 15f86c81e8bc9755408347baa09dff84d92cbf63 Mon Sep 17 00:00:00 2001 From: Dirk Lemstra Date: Fri, 27 Mar 2026 20:31:15 +0100 Subject: [PATCH 051/162] New version: ImageMagick.Q16 version 7.1.2.18 (#350962) --- .../7.1.2.17/ImageMagick.Q16.installer.yaml | 22 ------------------- .../7.1.2.18/ImageMagick.Q16.installer.yaml | 22 +++++++++++++++++++ .../ImageMagick.Q16.locale.en-US.yaml | 10 ++++----- .../ImageMagick.Q16.yaml | 8 +++---- 4 files changed, 31 insertions(+), 31 deletions(-) delete mode 100644 manifests/i/ImageMagick/Q16/7.1.2.17/ImageMagick.Q16.installer.yaml create mode 100644 manifests/i/ImageMagick/Q16/7.1.2.18/ImageMagick.Q16.installer.yaml rename manifests/i/ImageMagick/Q16/{7.1.2.17 => 7.1.2.18}/ImageMagick.Q16.locale.en-US.yaml (83%) rename manifests/i/ImageMagick/Q16/{7.1.2.17 => 7.1.2.18}/ImageMagick.Q16.yaml (54%) diff --git a/manifests/i/ImageMagick/Q16/7.1.2.17/ImageMagick.Q16.installer.yaml b/manifests/i/ImageMagick/Q16/7.1.2.17/ImageMagick.Q16.installer.yaml deleted file mode 100644 index e9c1e4672c6c..000000000000 --- a/manifests/i/ImageMagick/Q16/7.1.2.17/ImageMagick.Q16.installer.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: ImageMagick.Q16 -PackageVersion: 7.1.2.17 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.17763.0 -InstallerType: msix -PackageFamilyName: ImageMagick.Q16_b3hnabsze9y3j -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-17/ImageMagick.Q16.msixbundle - InstallerSha256: 12121173157A46FFA2DAB332AF206D6047505EA7AADD237B20F305832DA5894C - SignatureSha256: C7731FF8D7959247D55933C2FCDEBA5BD54DF0C4F5661587C0AFD5037BFE79A3 -- Architecture: arm64 - InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-17/ImageMagick.Q16.msixbundle - InstallerSha256: 12121173157A46FFA2DAB332AF206D6047505EA7AADD237B20F305832DA5894C - SignatureSha256: C7731FF8D7959247D55933C2FCDEBA5BD54DF0C4F5661587C0AFD5037BFE79A3 -ManifestType: installer -ManifestVersion: 1.10.0 -ReleaseDate: 2026-03-15 diff --git a/manifests/i/ImageMagick/Q16/7.1.2.18/ImageMagick.Q16.installer.yaml b/manifests/i/ImageMagick/Q16/7.1.2.18/ImageMagick.Q16.installer.yaml new file mode 100644 index 000000000000..46c5b5b1f5e9 --- /dev/null +++ b/manifests/i/ImageMagick/Q16/7.1.2.18/ImageMagick.Q16.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ImageMagick.Q16 +PackageVersion: 7.1.2.18 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: msix +PackageFamilyName: ImageMagick.Q16_b3hnabsze9y3j +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-18/ImageMagick.Q16.msixbundle + InstallerSha256: 1C0F26AE0ECA2F966B3FFE9CC830E808487ABED133D609A9AB468C4BA7857EFD + SignatureSha256: 1DB007F7CFD3882B11A291FBC3054D8620A43113BEB13D7A4664D005E211FEDD +- Architecture: arm64 + InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-18/ImageMagick.Q16.msixbundle + InstallerSha256: 1C0F26AE0ECA2F966B3FFE9CC830E808487ABED133D609A9AB468C4BA7857EFD + SignatureSha256: 1DB007F7CFD3882B11A291FBC3054D8620A43113BEB13D7A4664D005E211FEDD +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-22 diff --git a/manifests/i/ImageMagick/Q16/7.1.2.17/ImageMagick.Q16.locale.en-US.yaml b/manifests/i/ImageMagick/Q16/7.1.2.18/ImageMagick.Q16.locale.en-US.yaml similarity index 83% rename from manifests/i/ImageMagick/Q16/7.1.2.17/ImageMagick.Q16.locale.en-US.yaml rename to manifests/i/ImageMagick/Q16/7.1.2.18/ImageMagick.Q16.locale.en-US.yaml index 96a4bc93fcd1..65cfd6cd2969 100644 --- a/manifests/i/ImageMagick/Q16/7.1.2.17/ImageMagick.Q16.locale.en-US.yaml +++ b/manifests/i/ImageMagick/Q16/7.1.2.18/ImageMagick.Q16.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: ImageMagick.Q16 -PackageVersion: 7.1.2.17 +PackageVersion: 7.1.2.18 PackageLocale: en-US Publisher: ImageMagick Studio LLC PublisherUrl: https://github.com/ImageMagick/ImageMagick @@ -20,9 +20,9 @@ Tags: - imagemagick - magick - resize -ReleaseNotesUrl: https://github.com/ImageMagick/ImageMagick/releases/tag/7.1.2-17 +ReleaseNotesUrl: https://github.com/ImageMagick/ImageMagick/releases/tag/7.1.2-18 Documentations: - DocumentLabel: Usage DocumentUrl: https://usage.imagemagick.org/ ManifestType: defaultLocale -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/i/ImageMagick/Q16/7.1.2.17/ImageMagick.Q16.yaml b/manifests/i/ImageMagick/Q16/7.1.2.18/ImageMagick.Q16.yaml similarity index 54% rename from manifests/i/ImageMagick/Q16/7.1.2.17/ImageMagick.Q16.yaml rename to manifests/i/ImageMagick/Q16/7.1.2.18/ImageMagick.Q16.yaml index 26db94019e66..ea45f1f8749a 100644 --- a/manifests/i/ImageMagick/Q16/7.1.2.17/ImageMagick.Q16.yaml +++ b/manifests/i/ImageMagick/Q16/7.1.2.18/ImageMagick.Q16.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: ImageMagick.Q16 -PackageVersion: 7.1.2.17 +PackageVersion: 7.1.2.18 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 From 83f933100d0b61ad861cebb915d3d35c97b9cca7 Mon Sep 17 00:00:00 2001 From: Dirk Lemstra Date: Fri, 27 Mar 2026 20:32:33 +0100 Subject: [PATCH 052/162] New version: ImageMagick.Q8 version 7.1.2.18 (#350963) --- .../Q8/7.1.2.17/ImageMagick.Q8.installer.yaml | 22 ------------------- .../Q8/7.1.2.18/ImageMagick.Q8.installer.yaml | 22 +++++++++++++++++++ .../ImageMagick.Q8.locale.en-US.yaml | 10 ++++----- .../ImageMagick.Q8.yaml | 8 +++---- 4 files changed, 31 insertions(+), 31 deletions(-) delete mode 100644 manifests/i/ImageMagick/Q8/7.1.2.17/ImageMagick.Q8.installer.yaml create mode 100644 manifests/i/ImageMagick/Q8/7.1.2.18/ImageMagick.Q8.installer.yaml rename manifests/i/ImageMagick/Q8/{7.1.2.17 => 7.1.2.18}/ImageMagick.Q8.locale.en-US.yaml (83%) rename manifests/i/ImageMagick/Q8/{7.1.2.17 => 7.1.2.18}/ImageMagick.Q8.yaml (53%) diff --git a/manifests/i/ImageMagick/Q8/7.1.2.17/ImageMagick.Q8.installer.yaml b/manifests/i/ImageMagick/Q8/7.1.2.17/ImageMagick.Q8.installer.yaml deleted file mode 100644 index f6760bff061f..000000000000 --- a/manifests/i/ImageMagick/Q8/7.1.2.17/ImageMagick.Q8.installer.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: ImageMagick.Q8 -PackageVersion: 7.1.2.17 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.17763.0 -InstallerType: msix -PackageFamilyName: ImageMagick.Q8_b3hnabsze9y3j -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-17/ImageMagick.Q8.msixbundle - InstallerSha256: AEBDBA571A45BF7EE99D310D6E1F64BE87D0C5833A83AF680CBC066A5FEC884B - SignatureSha256: 80358B20217AEEA458A360798A418D8CD01092808BC674881C542118E292C434 -- Architecture: arm64 - InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-17/ImageMagick.Q8.msixbundle - InstallerSha256: AEBDBA571A45BF7EE99D310D6E1F64BE87D0C5833A83AF680CBC066A5FEC884B - SignatureSha256: 80358B20217AEEA458A360798A418D8CD01092808BC674881C542118E292C434 -ManifestType: installer -ManifestVersion: 1.10.0 -ReleaseDate: 2026-03-15 diff --git a/manifests/i/ImageMagick/Q8/7.1.2.18/ImageMagick.Q8.installer.yaml b/manifests/i/ImageMagick/Q8/7.1.2.18/ImageMagick.Q8.installer.yaml new file mode 100644 index 000000000000..daa7e653649b --- /dev/null +++ b/manifests/i/ImageMagick/Q8/7.1.2.18/ImageMagick.Q8.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ImageMagick.Q8 +PackageVersion: 7.1.2.18 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: msix +PackageFamilyName: ImageMagick.Q8_b3hnabsze9y3j +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-18/ImageMagick.Q8.msixbundle + InstallerSha256: 7006FD9A6AAE9DBC2041401941A6F8C4001064149AEB1A0E653BED2AEFA1D577 + SignatureSha256: 31D4A8AD431FD0689C31B4540083D1EC0B7A41D0E5722911880C4B66FAE3B9AF +- Architecture: arm64 + InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-18/ImageMagick.Q8.msixbundle + InstallerSha256: 7006FD9A6AAE9DBC2041401941A6F8C4001064149AEB1A0E653BED2AEFA1D577 + SignatureSha256: 31D4A8AD431FD0689C31B4540083D1EC0B7A41D0E5722911880C4B66FAE3B9AF +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-22 diff --git a/manifests/i/ImageMagick/Q8/7.1.2.17/ImageMagick.Q8.locale.en-US.yaml b/manifests/i/ImageMagick/Q8/7.1.2.18/ImageMagick.Q8.locale.en-US.yaml similarity index 83% rename from manifests/i/ImageMagick/Q8/7.1.2.17/ImageMagick.Q8.locale.en-US.yaml rename to manifests/i/ImageMagick/Q8/7.1.2.18/ImageMagick.Q8.locale.en-US.yaml index 877997943c3e..f8f9385352a3 100644 --- a/manifests/i/ImageMagick/Q8/7.1.2.17/ImageMagick.Q8.locale.en-US.yaml +++ b/manifests/i/ImageMagick/Q8/7.1.2.18/ImageMagick.Q8.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: ImageMagick.Q8 -PackageVersion: 7.1.2.17 +PackageVersion: 7.1.2.18 PackageLocale: en-US Publisher: ImageMagick Studio LLC PublisherUrl: https://github.com/ImageMagick/ImageMagick @@ -20,9 +20,9 @@ Tags: - imagemagick - magick - resize -ReleaseNotesUrl: https://github.com/ImageMagick/ImageMagick/releases/tag/7.1.2-17 +ReleaseNotesUrl: https://github.com/ImageMagick/ImageMagick/releases/tag/7.1.2-18 Documentations: - DocumentLabel: Usage DocumentUrl: https://usage.imagemagick.org/ ManifestType: defaultLocale -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/i/ImageMagick/Q8/7.1.2.17/ImageMagick.Q8.yaml b/manifests/i/ImageMagick/Q8/7.1.2.18/ImageMagick.Q8.yaml similarity index 53% rename from manifests/i/ImageMagick/Q8/7.1.2.17/ImageMagick.Q8.yaml rename to manifests/i/ImageMagick/Q8/7.1.2.18/ImageMagick.Q8.yaml index 929486fde55e..00496aa2b2ce 100644 --- a/manifests/i/ImageMagick/Q8/7.1.2.17/ImageMagick.Q8.yaml +++ b/manifests/i/ImageMagick/Q8/7.1.2.18/ImageMagick.Q8.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: ImageMagick.Q8 -PackageVersion: 7.1.2.17 +PackageVersion: 7.1.2.18 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 From 156f49c421cbd2e852ba2985eb60bba2f2e3a35d Mon Sep 17 00:00:00 2001 From: Darshit Mistry <159099382+drshtmstry@users.noreply.github.com> Date: Sat, 28 Mar 2026 01:04:19 +0530 Subject: [PATCH 053/162] Remove version: WHONET.AMRIE version v26.3.26 (#352865) --- .../v26.3.26/WHONET.AMRIE.installer.yaml | 32 ------------------ .../v26.3.26/WHONET.AMRIE.locale.en-US.yaml | 33 ------------------- .../w/WHONET/AMRIE/v26.3.26/WHONET.AMRIE.yaml | 8 ----- 3 files changed, 73 deletions(-) delete mode 100644 manifests/w/WHONET/AMRIE/v26.3.26/WHONET.AMRIE.installer.yaml delete mode 100644 manifests/w/WHONET/AMRIE/v26.3.26/WHONET.AMRIE.locale.en-US.yaml delete mode 100644 manifests/w/WHONET/AMRIE/v26.3.26/WHONET.AMRIE.yaml diff --git a/manifests/w/WHONET/AMRIE/v26.3.26/WHONET.AMRIE.installer.yaml b/manifests/w/WHONET/AMRIE/v26.3.26/WHONET.AMRIE.installer.yaml deleted file mode 100644 index 672567c11846..000000000000 --- a/manifests/w/WHONET/AMRIE/v26.3.26/WHONET.AMRIE.installer.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with komac v2.15.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: WHONET.AMRIE -PackageVersion: v26.3.26 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: /quiet - SilentWithProgress: /passive -UpgradeBehavior: install -Dependencies: - PackageDependencies: - - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8 -ProductCode: '{26240CA9-1170-483E-B983-BF5215327469}' -ReleaseDate: 2026-03-26 -AppsAndFeaturesEntries: -- ProductCode: '{26240CA9-1170-483E-B983-BF5215327469}' - UpgradeCode: '{1A6FF147-1163-4CC4-BAA8-0719A40CEB05}' -InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%/AMR Interpretation Engine' -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/AClark-WHONET/AMRIE/releases/download/v26.3.26/AMR_Interpretation_Engine_v26.3.26.msi - InstallerSha256: F850802B56D979698D207261A76D98ECAB237AFA58261076A2FDB32DCB089A39 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/w/WHONET/AMRIE/v26.3.26/WHONET.AMRIE.locale.en-US.yaml b/manifests/w/WHONET/AMRIE/v26.3.26/WHONET.AMRIE.locale.en-US.yaml deleted file mode 100644 index 26fa8fb475c8..000000000000 --- a/manifests/w/WHONET/AMRIE/v26.3.26/WHONET.AMRIE.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Created with komac v2.15.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: WHONET.AMRIE -PackageVersion: v26.3.26 -PackageLocale: en-US -Publisher: Brigham and Women's Hospital -PublisherUrl: https://github.com/AClark-WHONET -PublisherSupportUrl: https://github.com/AClark-WHONET/AMRIE/issues -PackageName: AMR Interpretation Engine -PackageUrl: https://github.com/AClark-WHONET/AMRIE -License: GPL-3.0 -LicenseUrl: https://github.com/AClark-WHONET/AMRIE/blob/HEAD/LICENSE -ShortDescription: The AMR Interpretation Engine is a standalone software which can interpret AMR measurements using CLSI and EUCAST breakpoints. The system also includes resource files which can be used independently of the interpretation system by 3rd parties. -Description: |- - This software was created by the WHONET development team (https://whonet.org) to facilitate the interpretation of antibiotic measurements according to the various supported guidelines available for this purpose, and published by those groups (CLSI, EUCAST, etc.). - The system can be integrated with your project via the Interpretation Engine library, or it can be used directly with either the command line interface or interactive interface projects. - The interactive interface is designed primarily to allow you to exercise the various functions of the system, but it can also allow you to process an input file into an output file with the interpretations. - The command-line interface facilitates easy incorporation with a 3rd-party system since the developer does not need to know how to use the various library functions associated. With that said, the CLI project is very small, so it should serve as a window into how to accomplish the basic needs if direct library integration was preferred. - The breakpoints and other tables will be kept up-to-date over time (Interpretaion Engine\Resources), and are useful in their own right, even if the software implementation of the engine is not for your purposes. For example, there are several groups who only utilize our tables. This repository now serves as the official source for these WHONET-related resources. - To process a complete data file, the input file must use WHONET naming conventions for the data columns. Sample data and configuration files are also provided in the Interpretation Engine\Resources\ folder. - We also provide SQL queries which can demonstrate certain aspects of the system, but which are not used directly by the code here. We have chosen to implement these function as pure C# code to assist others if they choose to make their own implementations, and also to eliminate any dependence on a certain database technology. Because the application only uses C# with a recent .NET version, it should be possible to build the library code for many platforms. -Tags: -- AMR -- Antibiotics -- Bacteriology -- CLSI -- EUCAST -- Microbiology -ReleaseNotes: Adds the 2026 CLSI and EUCAST breakpoints, QC tables, ECOFFs and other related annual updates. -ReleaseNotesUrl: https://github.com/AClark-WHONET/AMRIE/releases/tag/v26.3.26 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/w/WHONET/AMRIE/v26.3.26/WHONET.AMRIE.yaml b/manifests/w/WHONET/AMRIE/v26.3.26/WHONET.AMRIE.yaml deleted file mode 100644 index 8ff16af0310f..000000000000 --- a/manifests/w/WHONET/AMRIE/v26.3.26/WHONET.AMRIE.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with komac v2.15.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: WHONET.AMRIE -PackageVersion: v26.3.26 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 From 7cba02970afaa8948521419568dd932187868eee Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 03:34:59 +0800 Subject: [PATCH 054/162] New version: Folge.Folge version 1.32.0 (#353010) --- .../Folge/1.32.0/Folge.Folge.installer.yaml | 30 ++++++++++++ .../1.32.0/Folge.Folge.locale.en-US.yaml | 47 +++++++++++++++++++ .../1.32.0/Folge.Folge.locale.zh-CN.yaml | 18 +++++++ .../f/Folge/Folge/1.32.0/Folge.Folge.yaml | 8 ++++ 4 files changed, 103 insertions(+) create mode 100644 manifests/f/Folge/Folge/1.32.0/Folge.Folge.installer.yaml create mode 100644 manifests/f/Folge/Folge/1.32.0/Folge.Folge.locale.en-US.yaml create mode 100644 manifests/f/Folge/Folge/1.32.0/Folge.Folge.locale.zh-CN.yaml create mode 100644 manifests/f/Folge/Folge/1.32.0/Folge.Folge.yaml diff --git a/manifests/f/Folge/Folge/1.32.0/Folge.Folge.installer.yaml b/manifests/f/Folge/Folge/1.32.0/Folge.Folge.installer.yaml new file mode 100644 index 000000000000..c7b73ffa4ade --- /dev/null +++ b/manifests/f/Folge/Folge/1.32.0/Folge.Folge.installer.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Folge.Folge +PackageVersion: 1.32.0 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: a6386432-8ff6-5fc0-8bfc-252affc43de8 +ReleaseDate: 2026-03-28 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://cdn.folge.me/Folge-1.32.0.exe + InstallerSha256: 12F551623FFC59C2575BB30BE5FC4E0B250A45C1118FAED3C5CF0B55319E55ED + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://cdn.folge.me/Folge-1.32.0.exe + InstallerSha256: 12F551623FFC59C2575BB30BE5FC4E0B250A45C1118FAED3C5CF0B55319E55ED + InstallerSwitches: + Custom: /allusers + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/f/Folge/Folge/1.32.0/Folge.Folge.locale.en-US.yaml b/manifests/f/Folge/Folge/1.32.0/Folge.Folge.locale.en-US.yaml new file mode 100644 index 000000000000..34c9df238db6 --- /dev/null +++ b/manifests/f/Folge/Folge/1.32.0/Folge.Folge.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: Folge.Folge +PackageVersion: 1.32.0 +PackageLocale: en-US +Publisher: Oleksii Sribnyi +PublisherUrl: https://folge.me/ +PublisherSupportUrl: https://folge.me/help/ +PrivacyUrl: https://folge.me/terms-of-service#privacy +Author: Oleksii Sribnyi +PackageName: Folge +PackageUrl: https://folge.me/download +License: Proprietary +LicenseUrl: https://folge.me/eula +Copyright: Copyright © 2026 Oleksii Sribnyi +CopyrightUrl: https://folge.me/eula +ShortDescription: Easily create step-by-step guides and documentation of any process. +Description: |- + Folge is a desktop tool to capture steps with every click of the mouse, customize screenshots, create annotations, and generate the final guide in HTML, Word Document, PDF, PowerPoint slides, and more. + Main Features are: + - Take screenshots of apps, any selected region, windows or fullscreen. Pause, adjust, and resume. Screenshots with every mouse click or keypress. + - Give each step a name and description. Reorder them, hide them, and add new ones on the fly. Organize guides in projects. + - Exports guides to HTML, PDF, DOC, PPT, JSON, Markdown files ready to share with others. And more formats to come. +Tags: +- guide +ReleaseNotes: |- + 🎁 New Features + - Tooltip V2 – Completely redesigned tooltips with speech bubble and arrow pointer styles, independent tail color and width controls, and configurable border radius. + - Step Number Arrows – Step numbers can now have an optional arrow pointing to a target, with configurable line width, color, and arrowhead size. + - Spotlight – New annotation tool that dims the background and highlights specific areas, with adjustable opacity, border radius, and stroke. + - Magnifier V2 – Redesigned magnifying glass with separate source and display areas, both resizable and movable. + - Custom Watermark – Add a watermark image to exported step images with configurable position, opacity, scale, and padding. + - Apply Styles Across Steps – Apply annotation style changes to all matching annotations across your entire guide in one click. + - Toolbar Submenus – Annotation tools are now organized into groups with expandable submenus for a cleaner toolbar. + ⭐ Improvements + - Pre-capture overlay is now click-through for Active Window and Full Screen modes, allowing you to arrange windows before starting capture. + - Clicked elements metadata parsing greatly improved on Mac. + - Fit-to-zoom now centers the view correctly in Focused View. + - Guide details (title, description) now autosave as you type. + - Export Settings Templates UI improvements. + 🔧 Bug Fixes + - Fixed timer option for simple capture mode. +ReleaseNotesUrl: https://folge.me/changelog +PurchaseUrl: https://folge.me/buy +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/Folge/Folge/1.32.0/Folge.Folge.locale.zh-CN.yaml b/manifests/f/Folge/Folge/1.32.0/Folge.Folge.locale.zh-CN.yaml new file mode 100644 index 000000000000..40f88630cab6 --- /dev/null +++ b/manifests/f/Folge/Folge/1.32.0/Folge.Folge.locale.zh-CN.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: Folge.Folge +PackageVersion: 1.32.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 轻松创建任何流程的分步指南和文档。 +Description: |- + Folge 是一款桌面工具,能够通过每次鼠标点击捕捉操作步骤,自定义截图,添加注释,并最终生成 HTML、Word 文档、PDF、PowerPoint 幻灯片等多种格式的指南。 + 主要功能包括: + - 截取应用程序、任意选定区域、窗口或全屏画面。支持暂停、调整和继续操作,每次鼠标点击或按键均可触发截图。 + - 为每个步骤命名并添加描述。可随时重新排序、隐藏或新增步骤,并将指南按项目分类管理。 + - 支持将指南导出为 HTML、PDF、DOC、PPT、JSON、Markdown 等格式,便于分享。未来还将支持更多文件类型。 +Tags: +- 指南 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/f/Folge/Folge/1.32.0/Folge.Folge.yaml b/manifests/f/Folge/Folge/1.32.0/Folge.Folge.yaml new file mode 100644 index 000000000000..ac8138a22b69 --- /dev/null +++ b/manifests/f/Folge/Folge/1.32.0/Folge.Folge.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: Folge.Folge +PackageVersion: 1.32.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 611f9fdf4180c9f21d891426efe181224764f7e6 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 03:35:43 +0800 Subject: [PATCH 055/162] New version: MySolutionsNORDIC.NSClient++ version 0.11.26.0 (0.11.26) (#352476) --- ...ySolutionsNORDIC.NSClient++.installer.yaml | 28 ++++++++++++ ...lutionsNORDIC.NSClient++.locale.en-US.yaml | 43 +++++++++++++++++++ ...lutionsNORDIC.NSClient++.locale.zh-CN.yaml | 19 ++++++++ .../MySolutionsNORDIC.NSClient++.yaml | 8 ++++ 4 files changed, 98 insertions(+) create mode 100644 manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.installer.yaml create mode 100644 manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.locale.en-US.yaml create mode 100644 manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.locale.zh-CN.yaml create mode 100644 manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.yaml diff --git a/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.installer.yaml b/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.installer.yaml new file mode 100644 index 000000000000..4123e318946c --- /dev/null +++ b/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.installer.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: MySolutionsNORDIC.NSClient++ +PackageVersion: 0.11.26.0 +InstallerType: wix +InstallerSwitches: + InstallLocation: INSTALLLOCATION="" +ReleaseDate: 2026-03-26 +AppsAndFeaturesEntries: +- UpgradeCode: '{0B36E3B7-0042-452D-B376-57E0C07ADDBB}' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/mickem/nscp/releases/download/0.11.26/NSCP-0.11.26-Win32-legacy-xp.msi + InstallerSha256: C39199B5D2B089C0A525329DC675ED90C5F3BC602AEFF25CC7C442F61859F1C3 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 + ProductCode: '{65C324EF-30EE-4589-997D-5BC1E213C25C}' +- Architecture: x64 + InstallerUrl: https://github.com/mickem/nscp/releases/download/0.11.26/NSCP-0.11.26-x64.msi + InstallerSha256: 15F08B900B41C61EC875A08F636901B7D598082C81C17791D770E93EA25131C6 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + ProductCode: '{88C5EB3F-B466-4202-9CA8-C91FE75F6CEB}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.locale.en-US.yaml b/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.locale.en-US.yaml new file mode 100644 index 000000000000..b816aa2b3f9f --- /dev/null +++ b/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.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: MySolutionsNORDIC.NSClient++ +PackageVersion: 0.11.26.0 +PackageLocale: en-US +Publisher: MySolutions NORDIC +PublisherUrl: https://medin.name/ +PublisherSupportUrl: https://github.com/mickem/nscp/issues +Author: My Computer Solutions NORDIC KB +PackageName: NSClient++ +PackageUrl: https://nsclient.org/ +License: GPL-2.0 +LicenseUrl: https://github.com/mickem/nscp/blob/HEAD/COPYING +Copyright: Copyright (C) 2026 - Michael Medin +ShortDescription: A fully fledged monitoring agent which can be used with many monitoring tools. +Description: |- + NSClient++ (nscp) aims to be a simple yet powerful and secure monitoring daemon. It was built for Nagios/Icinga, but nothing in the daemon is Nagios/Icinga specific and it can be used in many other scenarios where you want to receive/distribute check metrics. + The daemon has 3 main functions: + - Allow a remote machine (monitoring server) to request commands to be run on this machine (the monitored machine) which return the status of the machine. + - Submit the same results to a remote (monitoring server). + - Take action and perform tasks. +Moniker: nscp +Tags: +- icinga +- naemon +- nagios +ReleaseNotes: |- + What's Changed + This version adds two new dashboard widgets that showcases some statistics as well as a network graph. + I also fixes and issue relating to calculating network measurements. + It also changes the tools bar slightly to make them a bit less intense: + Other changes: + - three new metrics which contains the refresh times of metrics, system metrics and network metrics so you can see this in the web UI. + - Removes unnecessary scientific notations for number in the metrics api so now you will get 1 instead of 1E1. Both are valid json so this should not impact anyone as long as your not using grep or some such to parse the json. + - Added network metrics to web UI by @mickem in https://github.com/mickem/nscp/pull/1199 + Full Changelog: https://github.com/mickem/nscp/compare/0.11.25...0.11.26 +ReleaseNotesUrl: https://github.com/mickem/nscp/releases/tag/0.11.26 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://nsclient.org/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.locale.zh-CN.yaml b/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.locale.zh-CN.yaml new file mode 100644 index 000000000000..c7f340cddfcd --- /dev/null +++ b/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: MySolutionsNORDIC.NSClient++ +PackageVersion: 0.11.26.0 +PackageLocale: zh-CN +ShortDescription: 可与多种监控工具协同使用的全功能监控代理 +Description: |- + NSClient++(nscp)旨在成为一个简单而强大且安全的监控守护进程。它最初为 Nagios/Icinga 设计,但守护进程本身并不局限于 Nagios/Icinga,可广泛应用于需要接收或分发检查指标的其他场景中。 + 该守护进程主要具备三项核心功能: + - 允许远程主机(监控服务器)请求在本机(被监控主机)上执行命令,以获取主机状态信息。 + - 将相同的检测结果主动提交至远程(监控服务器)。 + - 执行预设操作并完成任务处理。 +ReleaseNotesUrl: https://github.com/mickem/nscp/releases/tag/0.11.26 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://nsclient.org/docs/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.yaml b/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.yaml new file mode 100644 index 000000000000..7f29ea5eca8c --- /dev/null +++ b/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.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: MySolutionsNORDIC.NSClient++ +PackageVersion: 0.11.26.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 573e3e8fe198781d044fbba7af29c6b98355dd27 Mon Sep 17 00:00:00 2001 From: DaMn good B0t <143536629+damn-good-b0t@users.noreply.github.com> Date: Fri, 27 Mar 2026 20:36:22 +0100 Subject: [PATCH 056/162] New version: argoproj.argocd version 3.3.6 (#353020) --- .../3.3.6/argoproj.argocd.installer.yaml | 18 ++++++++ .../3.3.6/argoproj.argocd.locale.en-US.yaml | 42 +++++++++++++++++++ .../argocd/3.3.6/argoproj.argocd.yaml | 8 ++++ 3 files changed, 68 insertions(+) create mode 100644 manifests/a/argoproj/argocd/3.3.6/argoproj.argocd.installer.yaml create mode 100644 manifests/a/argoproj/argocd/3.3.6/argoproj.argocd.locale.en-US.yaml create mode 100644 manifests/a/argoproj/argocd/3.3.6/argoproj.argocd.yaml diff --git a/manifests/a/argoproj/argocd/3.3.6/argoproj.argocd.installer.yaml b/manifests/a/argoproj/argocd/3.3.6/argoproj.argocd.installer.yaml new file mode 100644 index 000000000000..94f7d915922e --- /dev/null +++ b/manifests/a/argoproj/argocd/3.3.6/argoproj.argocd.installer.yaml @@ -0,0 +1,18 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: argoproj.argocd +PackageVersion: 3.3.6 +InstallerLocale: en-US +InstallerType: portable +InstallModes: +- silent +Commands: +- argocd +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/argoproj/argo-cd/releases/download/v3.3.6/argocd-windows-amd64.exe + InstallerSha256: EECBE4C1F77E19C58F948ACE8297F4CFAA7418E2A3A722658109B5D501FFE091 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/argoproj/argocd/3.3.6/argoproj.argocd.locale.en-US.yaml b/manifests/a/argoproj/argocd/3.3.6/argoproj.argocd.locale.en-US.yaml new file mode 100644 index 000000000000..39c560380461 --- /dev/null +++ b/manifests/a/argoproj/argocd/3.3.6/argoproj.argocd.locale.en-US.yaml @@ -0,0 +1,42 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: argoproj.argocd +PackageVersion: 3.3.6 +PackageLocale: en-US +Publisher: Argo Project +PublisherUrl: https://argoproj.github.io/ +PublisherSupportUrl: https://github.com/argoproj/argo-cd/issues +Author: Argo Project +PackageName: ArgoCD +PackageUrl: https://github.com/argoproj/argo-cd +License: Apache-2.0 +LicenseUrl: https://github.com/argoproj/argo-cd/blob/HEAD/LICENSE +ShortDescription: A command line tool for communicating with ArgoCD +Moniker: argocd +Tags: +- argocd +- k8s +- kubernetes +ReleaseNotes: |- + Quick Start + Non-HA: + kubectl create namespace argocd + kubectl apply -n argocd --server-side --force-conflicts -f https://raw.githubusercontent.com/argoproj/argo-cd/v3.3.6/manifests/install.yaml + HA: + kubectl create namespace argocd + kubectl apply -n argocd --server-side --force-conflicts -f https://raw.githubusercontent.com/argoproj/argo-cd/v3.3.6/manifests/ha/install.yaml + Release Signatures and Provenance + All Argo CD container images are signed by cosign. A Provenance is generated for container images and CLI binaries which meet the SLSA Level 3 specifications. See the documentation on how to verify. + Release Notes Blog Post + For a detailed breakdown of the key changes and improvements in this release, check out the official blog post + Upgrading + If upgrading from a different minor version, be sure to read the upgrading documentation. + Changelog + Bug fixes + - 4a823fe: fix: controller incorrectly detecting diff during app normalization (cherry-pick #27002 for 3.3) (#27013) (@argo-cd-cherry-pick-bot[bot]) + - c5d7748: fix: wrong installation id returned from cache (cherry-pick #26969 for 3.3) (#27027) (@argo-cd-cherry-pick-bot[bot]) + Full Changelog: v3.3.5...v3.3.6 +ReleaseNotesUrl: https://github.com/argoproj/argo-cd/releases/tag/v3.3.6 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/argoproj/argocd/3.3.6/argoproj.argocd.yaml b/manifests/a/argoproj/argocd/3.3.6/argoproj.argocd.yaml new file mode 100644 index 000000000000..66897f88fd91 --- /dev/null +++ b/manifests/a/argoproj/argocd/3.3.6/argoproj.argocd.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: argoproj.argocd +PackageVersion: 3.3.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From d73a5d1f16c631095784c00cc0281aa6af367c7d Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 03:37:36 +0800 Subject: [PATCH 057/162] New version: MoonshotAI.KimiCLI version 1.27.0 (#353026) --- .../1.27.0/MoonshotAI.KimiCLI.installer.yaml | 18 +++++++ .../MoonshotAI.KimiCLI.locale.en-US.yaml | 48 +++++++++++++++++++ .../MoonshotAI.KimiCLI.locale.zh-CN.yaml | 22 +++++++++ .../KimiCLI/1.27.0/MoonshotAI.KimiCLI.yaml | 8 ++++ 4 files changed, 96 insertions(+) create mode 100644 manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.installer.yaml create mode 100644 manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.locale.en-US.yaml create mode 100644 manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.locale.zh-CN.yaml create mode 100644 manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.yaml diff --git a/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.installer.yaml b/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.installer.yaml new file mode 100644 index 000000000000..647b7d7c7928 --- /dev/null +++ b/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.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: MoonshotAI.KimiCLI +PackageVersion: 1.27.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: kimi.exe +Commands: +- kimi +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/MoonshotAI/kimi-cli/releases/download/1.27.0/kimi-1.27.0-x86_64-pc-windows-msvc.zip + InstallerSha256: E83B838C89BB830A7DCAAD020873DA4B854CC1F5DD9C064C633F2604C3EA1617 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.locale.en-US.yaml b/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.locale.en-US.yaml new file mode 100644 index 000000000000..5e039f1ffcca --- /dev/null +++ b/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.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: MoonshotAI.KimiCLI +PackageVersion: 1.27.0 +PackageLocale: en-US +Publisher: Beijing Yuezhi Dark Face Technology Co., Ltd. +PublisherUrl: https://www.moonshot.ai/ +PublisherSupportUrl: https://github.com/MoonshotAI/kimi-cli/issues +PrivacyUrl: https://www.kimi.com/user/agreement/userPrivacy?version=v2 +Author: Beijing Yuezhi Dark Face Technology Co., Ltd. +PackageName: Kimi CLI +PackageUrl: https://www.kimi.com/coding/docs/en/kimi-cli.html +License: Apache-2.0 +LicenseUrl: https://github.com/MoonshotAI/kimi-cli/blob/HEAD/LICENSE +ShortDescription: A new CLI agent that can help you with your software development tasks and terminal operations. +Moniker: kimi-cli +Tags: +- agent +- agentic +- ai +- chatbot +- code +- coding +- kimi +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - feat(ui): incremental markdown streaming and spinner enhancements by @RealKai42 in https://github.com/MoonshotAI/kimi-cli/pull/1598 + - feat: add PlanDisplay wire type and inline rendering support by @RealKai42 in https://github.com/MoonshotAI/kimi-cli/pull/1601 + - feat(web): 增加工作区文件面板 || feat(web): Add workspace file panel by @luzhongqiu in https://github.com/MoonshotAI/kimi-cli/pull/1573 + - feat: add --sessions/--list-sessions CLI options & fix CJK shorten by @DRunkPiano114 in https://github.com/MoonshotAI/kimi-cli/pull/1376 + - Revert "feat: add --sessions/--list-sessions CLI options & fix CJK shorten" by @RealKai42 in https://github.com/MoonshotAI/kimi-cli/pull/1608 + - feat(cli): update exit codes for command execution and add tests for Print mode by @RealKai42 in https://github.com/MoonshotAI/kimi-cli/pull/1603 + - feat(glob): allow Glob tool to access skills directories by @n-WN in https://github.com/MoonshotAI/kimi-cli/pull/1609 + - fix(glob): expand ~ in directory path before validation by @n-WN in https://github.com/MoonshotAI/kimi-cli/pull/1611 + - feat(diff): enhance diff rendering with inline diff support and improved styles by @RealKai42 in https://github.com/MoonshotAI/kimi-cli/pull/1612 + - feat(feedback): implement asynchronous feedback submission with error handling by @RealKai42 in https://github.com/MoonshotAI/kimi-cli/pull/1593 + - chore: bump kimi-cli to 1.27.0 by @RealKai42 in https://github.com/MoonshotAI/kimi-cli/pull/1613 + New Contributors + - @luzhongqiu made their first contribution in https://github.com/MoonshotAI/kimi-cli/pull/1573 + - @DRunkPiano114 made their first contribution in https://github.com/MoonshotAI/kimi-cli/pull/1376 + Full Changelog: https://github.com/MoonshotAI/kimi-cli/compare/1.26.0...1.27.0 +ReleaseNotesUrl: https://github.com/MoonshotAI/kimi-cli/releases/tag/1.27.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.locale.zh-CN.yaml b/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..869cbca03479 --- /dev/null +++ b/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.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: MoonshotAI.KimiCLI +PackageVersion: 1.27.0 +PackageLocale: zh-CN +Publisher: 北京月之暗面科技有限公司 +PublisherUrl: https://www.moonshot.cn/ +Author: 北京月之暗面科技有限公司 +PackageUrl: https://www.kimi.com/coding/docs/kimi-cli.html +ShortDescription: Moonshot AI 自研的命令行通用智能体工具,帮助你快速完成各种各样的编程和文件处理等任务。 +Tags: +- kimi +- 人工智能 +- 代码 +- 大语言模型 +- 智能体 +- 编程 +- 聊天机器人 +- 自主智能 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.yaml b/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.yaml new file mode 100644 index 000000000000..39e2b4b26b35 --- /dev/null +++ b/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.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: MoonshotAI.KimiCLI +PackageVersion: 1.27.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 141a73fdbb9a0478bc3995a799e86e5afd637fdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9D=A4=E6=98=AF=E7=BA=B1=E9=9B=BE=E9=85=B1=E5=93=9F?= =?UTF-8?q?=EF=BD=9E?= <49941141+Dragon1573@users.noreply.github.com> Date: Sat, 28 Mar 2026 03:37:58 +0800 Subject: [PATCH 058/162] New version: dandavison.delta version 0.19.0 (#352124) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: ❤是纱雾酱哟~ <49941141+Dragon1573@users.noreply.github.com> --- .../0.19.0/dandavison.delta.installer.yaml | 20 ++++ .../0.19.0/dandavison.delta.locale.en-US.yaml | 94 +++++++++++++++++++ .../delta/0.19.0/dandavison.delta.yaml | 8 ++ 3 files changed, 122 insertions(+) create mode 100644 manifests/d/dandavison/delta/0.19.0/dandavison.delta.installer.yaml create mode 100644 manifests/d/dandavison/delta/0.19.0/dandavison.delta.locale.en-US.yaml create mode 100644 manifests/d/dandavison/delta/0.19.0/dandavison.delta.yaml diff --git a/manifests/d/dandavison/delta/0.19.0/dandavison.delta.installer.yaml b/manifests/d/dandavison/delta/0.19.0/dandavison.delta.installer.yaml new file mode 100644 index 000000000000..7b25ba8c9350 --- /dev/null +++ b/manifests/d/dandavison/delta/0.19.0/dandavison.delta.installer.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: dandavison.delta +PackageVersion: 0.19.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: delta-0.19.0-x86_64-pc-windows-msvc/delta.exe + PortableCommandAlias: delta +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2026-03-20 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/dandavison/delta/releases/download/0.19.0/delta-0.19.0-x86_64-pc-windows-msvc.zip + InstallerSha256: C704699D76DEF630EDFD65BF356E710C28ACD147CA30A4F425762C934E8E107D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/dandavison/delta/0.19.0/dandavison.delta.locale.en-US.yaml b/manifests/d/dandavison/delta/0.19.0/dandavison.delta.locale.en-US.yaml new file mode 100644 index 000000000000..af31051c9fcb --- /dev/null +++ b/manifests/d/dandavison/delta/0.19.0/dandavison.delta.locale.en-US.yaml @@ -0,0 +1,94 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: dandavison.delta +PackageVersion: 0.19.0 +PackageLocale: en-US +Publisher: Dan Davison +PublisherUrl: https://github.com/dandavison +PublisherSupportUrl: https://github.com/dandavison/delta/issues +Author: Dan Davison +PackageName: delta +PackageUrl: https://github.com/dandavison/delta +License: MIT +LicenseUrl: https://github.com/dandavison/delta/blob/master/LICENSE +Copyright: Copyright 2020 Dan Davison +CopyrightUrl: https://github.com/dandavison/delta/blob/master/LICENSE +ShortDescription: A syntax-highlighting pager for git, diff, and grep output +Tags: +- delta +- diff +- git +- git-delta +- pager +- rust +ReleaseNotes: |- + Tons of improvements; thanks very much to all delta contributors. + + This release is missing several binaries due to a bug in the GitHub Actions release workflow. Please + use https://github.com/dandavison/delta/releases/tag/0.19.1 instead. + + ## What's Changed + + - Do not double panic in FakeParentArgs::drop by @dvermd in #1856 + - Improve blame file type detection (#1803) by @dvermd in #1829 + - Use same example config in manual as README by @dandavison in #1879 + - Clarify grep highlighter-related code by @dandavison in #1877 + - Don't set colorMoved in introductory instructions by @dandavison in #1884 + - Recommend zdiff3 merge.conflictStyle by @adamchainz in #1260 + - Add themes weeping-willow, mirthful-willow by @lvdh in #1864 + - CI: switch to macos-13, as 12 will be unsupported soon by @th1000s in #1890 + - Add optional capture-output writer to run_app() by @th1000s in #1889 + - Center-align README content by @dandavison in #1893 + - Redundant Option Checks, Unwrap Safety by @sharma-shray in #1892 + - Add console commands for git configuration by @harmtemolder in #1896 + - Honor pager path when checking less version by @dandavison in #1903 + - Rename some variables by @dandavison in #1904 + - Delete now-unused pricate homebrew formula step from Makefile (III) by @dvermd in #1830 + - Support {host} in hyperlinks by @dandavison in #1901 + - Allow multiple hyperlinks per line by @th1000s in #1909 + - Clippy 1.83 by @th1000s in #1918 + - Support external subcommands: rg, diff, git-show (etc.) by @th1000s in #1769 + - Don't keep subcommand stdout around by @th1000s in #1920 + - hyperlink commit hashes of length 7 as well by @th1000s in #1924 + - clippy 1.84 fix by @th1000s in #1938 + - chore(deps): update git2 to use libgit2 1.9 by @chenrui333 in #1930 + - Suggest minimum bat version in manual by @ernstki in #1941 + - Upgrade unicode-width to v0.1.14 (but still < 0.2.0) by @th1000s in #1937 + - Update terminal-colorsaurus version to 0.4.8 by @rashil2000 in #1936 + - Fix index out of bounds crash for '@@ @@' hunk header by @adamchainz in #1995 + - Tune themes weeping-willow, mirthful-willow by @lvdh in #2011 + - clippy 1.88 fixes by @injust in #2016 + - Fix diff output when a diff ends with a mode change by @th1000s in #2023 + - fix: cargo install git-delta --locked fails on systems with GCC 15 by @tquin in #2007 + - Normalize merge.conflictStyle casing by @injust in #2015 + - Styled zero lines fix by @th1000s in #1916 + - config: add setup instructions for Jujutsu (jj) vcs by @arjunmahishi in #2048 + - all: fix clippy complaints by @charlievieth in #2038 + - Cache the Git remote URL to speed up rendering hyperlinks by @charlievieth in #1940 + - deps: update cc by @ognevny in #2053 + - rg json handling: fix line comment highlighting by @th1000s in #2057 + - Update dirs dependency to version 6 by @musicinmybrain in #2063 + - default line number to 1 for hyperlinks by @schpet in #2061 + - Fix line numbers showing filename when hyperlinks enabled by @tsvikas in #2058 + - less hist file: look at xdg paths by @th1000s in #2065 + - CI: remove x86 apple/macOS by @th1000s in #2074 + - Update bat dependency from 0.24 to 0.26 by @dandavison in #2115 + + ## New Contributors + + - @dvermd made their first contribution in #1856 + - @lvdh made their first contribution in #1864 + - @sharma-shray made their first contribution in #1892 + - @harmtemolder made their first contribution in #1896 + - @ernstki made their first contribution in #1941 + - @tquin made their first contribution in #2007 + - @arjunmahishi made their first contribution in #2048 + - @charlievieth made their first contribution in #2038 + - @ognevny made their first contribution in #2053 + - @musicinmybrain made their first contribution in #2063 + - @schpet made their first contribution in #2061 + - @tsvikas made their first contribution in #2058 +ReleaseNotesUrl: https://github.com/dandavison/delta/releases/tag/0.19.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/dandavison/delta/0.19.0/dandavison.delta.yaml b/manifests/d/dandavison/delta/0.19.0/dandavison.delta.yaml new file mode 100644 index 000000000000..25973d8096f5 --- /dev/null +++ b/manifests/d/dandavison/delta/0.19.0/dandavison.delta.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: dandavison.delta +PackageVersion: 0.19.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From d68aa46f9e5f5483d946161479093a282ca8069a Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 03:38:48 +0800 Subject: [PATCH 059/162] New version: ColonyLabs.ScribeDesktopCapture version 6.3.25.0 (#353037) --- ...nyLabs.ScribeDesktopCapture.installer.yaml | 20 ++++++++++++++ ...abs.ScribeDesktopCapture.locale.en-US.yaml | 26 +++++++++++++++++++ ...abs.ScribeDesktopCapture.locale.zh-CN.yaml | 14 ++++++++++ .../ColonyLabs.ScribeDesktopCapture.yaml | 8 ++++++ 4 files changed, 68 insertions(+) create mode 100644 manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.installer.yaml create mode 100644 manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.locale.en-US.yaml create mode 100644 manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.locale.zh-CN.yaml create mode 100644 manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.yaml diff --git a/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.installer.yaml b/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.installer.yaml new file mode 100644 index 000000000000..b9ee313f6c67 --- /dev/null +++ b/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.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: ColonyLabs.ScribeDesktopCapture +PackageVersion: 6.3.25.0 +InstallerType: msi +InstallerSwitches: + InstallLocation: APPDIR="" +UpgradeBehavior: install +Protocols: +- scribehow +ProductCode: '{2ce37a56-a9bc-4454-80bf-5ee8d4c3e597}' +AppsAndFeaturesEntries: +- UpgradeCode: '{351EF756-3AF5-4117-8697-53AB61427040}' +Installers: +- Architecture: x64 + InstallerUrl: https://colony-labs-public.s3.us-east-2.amazonaws.com/Scribe_6.3.25.msi + InstallerSha256: C1DA77B558AA2C3B2CC6B911A46B7A2F6905D74E023FD9A3722429B45EE2B030 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.locale.en-US.yaml b/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.locale.en-US.yaml new file mode 100644 index 000000000000..880654747027 --- /dev/null +++ b/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.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: ColonyLabs.ScribeDesktopCapture +PackageVersion: 6.3.25.0 +PackageLocale: en-US +Publisher: Colony Labs, Inc +PublisherUrl: https://scribehow.com/ +PublisherSupportUrl: https://support.scribehow.com/ +PrivacyUrl: https://scribehow.com/legal/privacy +Author: Colony Labs, Inc. +PackageName: Scribe +PackageUrl: https://scribehow.com/get-desktop +License: Proprietary +LicenseUrl: https://scribehow.com/legal/terms +Copyright: ©2026-All rights reserved. +CopyrightUrl: https://scribehow.com/legal/terms +ShortDescription: Turn any process into a step-by-step guide, instantly. +Description: Scribe automatically generates how-to guides and serves them to your team when they need them most. +Moniker: scribe +Tags: +- documentation +- steps-recorder +PurchaseUrl: https://scribehow.com/pricing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.locale.zh-CN.yaml b/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.locale.zh-CN.yaml new file mode 100644 index 000000000000..204fdcbc996d --- /dev/null +++ b/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.locale.zh-CN.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: ColonyLabs.ScribeDesktopCapture +PackageVersion: 6.3.25.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 将任何流程转化为分步指南,即刻实现。 +Description: Scribe 自动生成操作指南,并在团队最需要的时刻提供给他们。 +Tags: +- 文档 +- 步骤记录器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.yaml b/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.yaml new file mode 100644 index 000000000000..d08213a2a3d6 --- /dev/null +++ b/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.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: ColonyLabs.ScribeDesktopCapture +PackageVersion: 6.3.25.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 5d55458ded91ef0ff7d9c8cf2731b3aa8dddabe6 Mon Sep 17 00:00:00 2001 From: Gordon Beeming Date: Sat, 28 Mar 2026 05:39:08 +1000 Subject: [PATCH 060/162] New version: GordonBeeming.CopilotHere version 2026.03.22.463 (#351245) --- .../GordonBeeming.CopilotHere.installer.yaml | 20 ++++++++++++++ ...ordonBeeming.CopilotHere.locale.en-US.yaml | 27 +++++++++++++++++++ .../GordonBeeming.CopilotHere.yaml | 8 ++++++ 3 files changed, 55 insertions(+) create mode 100644 manifests/g/GordonBeeming/CopilotHere/2026.03.22.463/GordonBeeming.CopilotHere.installer.yaml create mode 100644 manifests/g/GordonBeeming/CopilotHere/2026.03.22.463/GordonBeeming.CopilotHere.locale.en-US.yaml create mode 100644 manifests/g/GordonBeeming/CopilotHere/2026.03.22.463/GordonBeeming.CopilotHere.yaml diff --git a/manifests/g/GordonBeeming/CopilotHere/2026.03.22.463/GordonBeeming.CopilotHere.installer.yaml b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.463/GordonBeeming.CopilotHere.installer.yaml new file mode 100644 index 000000000000..082a55319ed1 --- /dev/null +++ b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.463/GordonBeeming.CopilotHere.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GordonBeeming.CopilotHere +PackageVersion: 2026.03.22.463 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: copilot_here.exe + PortableCommandAlias: copilot_here +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/GordonBeeming/copilot_here/releases/download/cli-v2026.03.22.463-266de0e/copilot_here-win-x64.zip + InstallerSha256: B4A95C5D35ECDC6DA628A662B35693AA7462A107841316AC127FEA498E8E53EA +- Architecture: arm64 + InstallerUrl: https://github.com/GordonBeeming/copilot_here/releases/download/cli-v2026.03.22.463-266de0e/copilot_here-win-arm64.zip + InstallerSha256: 427DB035914C4413DDD7B231CEE170A16BF597C9487A5FAFD6E11151C3C47EFF +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-23 diff --git a/manifests/g/GordonBeeming/CopilotHere/2026.03.22.463/GordonBeeming.CopilotHere.locale.en-US.yaml b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.463/GordonBeeming.CopilotHere.locale.en-US.yaml new file mode 100644 index 000000000000..501f8a7cd864 --- /dev/null +++ b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.463/GordonBeeming.CopilotHere.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GordonBeeming.CopilotHere +PackageVersion: 2026.03.22.463 +PackageLocale: en-US +Publisher: Gordon Beeming +PublisherUrl: https://github.com/GordonBeeming +PublisherSupportUrl: https://github.com/GordonBeeming/copilot_here/issues +PackageName: copilot_here +PackageUrl: https://github.com/GordonBeeming/copilot_here +License: FSL-1.1-MIT +LicenseUrl: https://github.com/GordonBeeming/copilot_here/blob/main/LICENSE +ShortDescription: Run GitHub Copilot CLI in a sandboxed Docker container +Description: |- + copilot_here lets you run GitHub Copilot CLI commands inside a sandboxed Docker container, + keeping your host machine clean and secure. It provides shell function wrappers for Bash, + Zsh, and PowerShell that seamlessly proxy Copilot CLI commands through a containerized environment. +Tags: +- cli +- copilot +- docker +- github +- github-copilot +ReleaseNotesUrl: https://github.com/GordonBeeming/copilot_here/releases/tag/cli-v2026.03.22.463-266de0e +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GordonBeeming/CopilotHere/2026.03.22.463/GordonBeeming.CopilotHere.yaml b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.463/GordonBeeming.CopilotHere.yaml new file mode 100644 index 000000000000..9f0e53916774 --- /dev/null +++ b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.463/GordonBeeming.CopilotHere.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: GordonBeeming.CopilotHere +PackageVersion: 2026.03.22.463 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From d315dba124a271b08cd97799d171d295e100b9fd Mon Sep 17 00:00:00 2001 From: Gordon Beeming Date: Sat, 28 Mar 2026 05:40:02 +1000 Subject: [PATCH 061/162] New version: GordonBeeming.CopilotHere version 2026.03.22.465 (#351250) --- .../GordonBeeming.CopilotHere.installer.yaml | 20 ++++++++++++++ ...ordonBeeming.CopilotHere.locale.en-US.yaml | 27 +++++++++++++++++++ .../GordonBeeming.CopilotHere.yaml | 8 ++++++ 3 files changed, 55 insertions(+) create mode 100644 manifests/g/GordonBeeming/CopilotHere/2026.03.22.465/GordonBeeming.CopilotHere.installer.yaml create mode 100644 manifests/g/GordonBeeming/CopilotHere/2026.03.22.465/GordonBeeming.CopilotHere.locale.en-US.yaml create mode 100644 manifests/g/GordonBeeming/CopilotHere/2026.03.22.465/GordonBeeming.CopilotHere.yaml diff --git a/manifests/g/GordonBeeming/CopilotHere/2026.03.22.465/GordonBeeming.CopilotHere.installer.yaml b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.465/GordonBeeming.CopilotHere.installer.yaml new file mode 100644 index 000000000000..950dd6db3cf0 --- /dev/null +++ b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.465/GordonBeeming.CopilotHere.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GordonBeeming.CopilotHere +PackageVersion: 2026.03.22.465 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: copilot_here.exe + PortableCommandAlias: copilot_here +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/GordonBeeming/copilot_here/releases/download/cli-v2026.03.22.465-da3103a/copilot_here-win-x64.zip + InstallerSha256: 83D1864E5529D3BCC5A22C81EF400081F3AC07DA7806A19BA9F4A2E372D89E14 +- Architecture: arm64 + InstallerUrl: https://github.com/GordonBeeming/copilot_here/releases/download/cli-v2026.03.22.465-da3103a/copilot_here-win-arm64.zip + InstallerSha256: 2B677453E4DE72FA54E57B0EBCB4CFE4359FA25FDAFD9928E5C283F949ECE160 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-23 diff --git a/manifests/g/GordonBeeming/CopilotHere/2026.03.22.465/GordonBeeming.CopilotHere.locale.en-US.yaml b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.465/GordonBeeming.CopilotHere.locale.en-US.yaml new file mode 100644 index 000000000000..5c067c8b6534 --- /dev/null +++ b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.465/GordonBeeming.CopilotHere.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GordonBeeming.CopilotHere +PackageVersion: 2026.03.22.465 +PackageLocale: en-US +Publisher: Gordon Beeming +PublisherUrl: https://github.com/GordonBeeming +PublisherSupportUrl: https://github.com/GordonBeeming/copilot_here/issues +PackageName: copilot_here +PackageUrl: https://github.com/GordonBeeming/copilot_here +License: FSL-1.1-MIT +LicenseUrl: https://github.com/GordonBeeming/copilot_here/blob/main/LICENSE +ShortDescription: Run GitHub Copilot CLI in a sandboxed Docker container +Description: |- + copilot_here lets you run GitHub Copilot CLI commands inside a sandboxed Docker container, + keeping your host machine clean and secure. It provides shell function wrappers for Bash, + Zsh, and PowerShell that seamlessly proxy Copilot CLI commands through a containerized environment. +Tags: +- cli +- copilot +- docker +- github +- github-copilot +ReleaseNotesUrl: https://github.com/GordonBeeming/copilot_here/releases/tag/cli-v2026.03.22.465-da3103a +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GordonBeeming/CopilotHere/2026.03.22.465/GordonBeeming.CopilotHere.yaml b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.465/GordonBeeming.CopilotHere.yaml new file mode 100644 index 000000000000..37a73d648daf --- /dev/null +++ b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.465/GordonBeeming.CopilotHere.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: GordonBeeming.CopilotHere +PackageVersion: 2026.03.22.465 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From a8a01e40ccb7ff4ee2558717ba234dfd1521e39a Mon Sep 17 00:00:00 2001 From: hitalin Date: Sat, 28 Mar 2026 04:40:23 +0900 Subject: [PATCH 062/162] New version: Hitalin.NoteDeck version 0.8.20 (#353038) --- .../0.8.20/Hitalin.NoteDeck.installer.yaml | 21 ++++++++++++ .../0.8.20/Hitalin.NoteDeck.locale.en-US.yaml | 24 ++++++++++++++ .../0.8.20/Hitalin.NoteDeck.locale.ja-JP.yaml | 32 +++++++++++++++++++ .../NoteDeck/0.8.20/Hitalin.NoteDeck.yaml | 8 +++++ 4 files changed, 85 insertions(+) create mode 100644 manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.installer.yaml create mode 100644 manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.locale.en-US.yaml create mode 100644 manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.locale.ja-JP.yaml create mode 100644 manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.yaml diff --git a/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.installer.yaml b/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.installer.yaml new file mode 100644 index 000000000000..83e145c0b15c --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.installer.yaml @@ -0,0 +1,21 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.20 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +ProductCode: NoteDeck +ReleaseDate: 2026-03-27 +AppsAndFeaturesEntries: +- Publisher: notedeck + ProductCode: NoteDeck +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\NoteDeck' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/hitalin/notedeck/releases/download/v0.8.20/NoteDeck-0.8.20-windows-x64-setup.exe + InstallerSha256: CEBD40D0B6809FA1ED59AC749DBADE688FDE7785463488D8E76C81171E6648E1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.locale.en-US.yaml b/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.locale.en-US.yaml new file mode 100644 index 000000000000..51cf6696b7eb --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.20 +PackageLocale: en-US +Publisher: hitalin +PublisherUrl: https://github.com/hitalin +PackageName: NoteDeck +PackageUrl: https://github.com/hitalin/notedeck +License: AGPL-3.0 +LicenseUrl: https://github.com/hitalin/notedeck/blob/main/LICENSE +ShortDescription: A multi-platform deck client for Misskey and its forks +Description: |- + NoteDeck is a deck client for Misskey and its forks. + It provides efficient multi-server timeline viewing with features like local full-text search, + AI integration, and localhost API that are only possible with a native desktop application. +Tags: +- deck +- fediverse +- misskey +- social-media +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.locale.ja-JP.yaml b/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.locale.ja-JP.yaml new file mode 100644 index 000000000000..c43d64492d1b --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.locale.ja-JP.yaml @@ -0,0 +1,32 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.20 +PackageLocale: ja-JP +Publisher: hitalin +PublisherUrl: https://github.com/hitalin +PublisherSupportUrl: https://github.com/hitalin/notedeck/issues +PackageName: NoteDeck +PackageUrl: https://github.com/hitalin/notedeck +License: AGPL-3.0 +LicenseUrl: https://github.com/hitalin/notedeck/blob/HEAD/LICENSE +ShortDescription: Misskey とそのフォークに対応したマルチプラットフォーム対応デッキクライアント +Description: |- + NoteDeck は Misskey とそのフォークに対応したデッキクライアントです。 + 複数サーバーのタイムラインを効率よく閲覧でき、ローカル全文検索、AI 統合、localhost API など + デスクトップネイティブならではの機能を備えています。 +Tags: +- deck +- fediverse +- misskey +- social-media +ReleaseNotes: |- + What's Changed + Other Changes + - Release v0.8.20 by @hitalin in #250 + - Release v0.8.20 by @hitalin in #251 + Full Changelog: v0.8.19...v0.8.20 +ReleaseNotesUrl: https://github.com/hitalin/notedeck/releases/tag/v0.8.20 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.yaml b/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.yaml new file mode 100644 index 000000000000..27c338104817 --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.20 +DefaultLocale: ja-JP +ManifestType: version +ManifestVersion: 1.12.0 From 777b714917a15b022f6cddad11dc4a7e14ff4df8 Mon Sep 17 00:00:00 2001 From: LorenzCoder <136112857+LorenzCoder@users.noreply.github.com> Date: Fri, 27 Mar 2026 20:40:53 +0100 Subject: [PATCH 063/162] ElectronicArts.EADesktop version 13.671.0.6184 (#353001) --- .../ElectronicArts.EADesktop.installer.yaml | 53 +++++++++-------- ...ElectronicArts.EADesktop.locale.en-US.yaml | 58 +++++++++---------- ...ElectronicArts.EADesktop.locale.zh-CN.yaml | 54 ++++++++--------- .../ElectronicArts.EADesktop.yaml | 16 ++--- 4 files changed, 92 insertions(+), 89 deletions(-) diff --git a/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.installer.yaml b/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.installer.yaml index 4985465f864d..622855205d27 100644 --- a/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.installer.yaml +++ b/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.installer.yaml @@ -1,25 +1,28 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: ElectronicArts.EADesktop -PackageVersion: 13.671.0.6184 -InstallerType: burn -Scope: machine -InstallerSwitches: - InstallLocation: InstallFolder="" -UpgradeBehavior: uninstallPrevious -Protocols: -- ealink -- link2ea -- origin -- origin2 -ProductCode: '{dba59e86-422e-4b29-94be-d0b3a70352bd}' -AppsAndFeaturesEntries: -- ProductCode: '{dba59e86-422e-4b29-94be-d0b3a70352bd}' - UpgradeCode: '{ADF2591E-00D2-4FFF-9BF4-9CCDAE6BDC67}' -Installers: -- Architecture: x64 - InstallerUrl: https://origin-a.akamaihd.net/EA-Desktop-Client-Download/installer-releases/EAappInstaller-13.671.0.6184-4124.exe - InstallerSha256: EC13CADDFA92C7B4EC25042C2796E0B53F777D13DE00F64282C237371711ECA1 -ManifestType: installer -ManifestVersion: 1.12.0 +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ElectronicArts.EADesktop +PackageVersion: 13.671.0.6184 +InstallerType: burn +Scope: machine +InstallerSwitches: + Silent: /passive /norestart + SilentWithProgress: /passive /norestart + InstallLocation: InstallFolder="" + Custom: /norestart +UpgradeBehavior: uninstallPrevious +Protocols: +- ealink +- link2ea +- origin +- origin2 +ProductCode: '{dba59e86-422e-4b29-94be-d0b3a70352bd}' +AppsAndFeaturesEntries: +- ProductCode: '{dba59e86-422e-4b29-94be-d0b3a70352bd}' + UpgradeCode: '{ADF2591E-00D2-4FFF-9BF4-9CCDAE6BDC67}' +Installers: +- Architecture: x86 + InstallerUrl: https://origin-a.akamaihd.net/EA-Desktop-Client-Download/installer-releases/EAappInstaller-13.671.0.6184-4124.exe + InstallerSha256: EC13CADDFA92C7B4EC25042C2796E0B53F777D13DE00F64282C237371711ECA1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.locale.en-US.yaml b/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.locale.en-US.yaml index bb2d4d41b5c4..f88aa7c9a44c 100644 --- a/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.locale.en-US.yaml +++ b/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.locale.en-US.yaml @@ -1,29 +1,29 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: ElectronicArts.EADesktop -PackageVersion: 13.671.0.6184 -PackageLocale: en-US -Publisher: Electronic Arts -PublisherUrl: https://www.ea.com/ -PublisherSupportUrl: https://help.ea.com/ -PrivacyUrl: https://www.ea.com/legal/privacy-and-cookie-policy -Author: Electronic Arts Inc. -PackageName: EA app -PackageUrl: https://www.ea.com/ea-app -License: Proprietary -LicenseUrl: https://tos.ea.com/legalapp/WEBTERMS/US/en/PC/ -Copyright: © 2026 Electronic Arts Inc. -ShortDescription: Play great PC games and connect with your friends, all in one place. -Description: Built on feedback from players like you, the EA Desktop app is the newest iteration of our PC platform. The beta includes new features and overall improvements to power a faster, smarter, more connected desktop app. -Moniker: eaapp -Tags: -- ea -- ea-desktop -- game -- gaming -- launcher -- origin -- store -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ElectronicArts.EADesktop +PackageVersion: 13.671.0.6184 +PackageLocale: en-US +Publisher: Electronic Arts +PublisherUrl: https://www.ea.com/ +PublisherSupportUrl: https://help.ea.com/ +PrivacyUrl: https://www.ea.com/legal/privacy-and-cookie-policy +Author: Electronic Arts Inc. +PackageName: EA app +PackageUrl: https://www.ea.com/ea-app +License: Proprietary +LicenseUrl: https://tos.ea.com/legalapp/WEBTERMS/US/en/PC/ +Copyright: © 2026 Electronic Arts Inc. +ShortDescription: Play great PC games and connect with your friends, all in one place. +Description: Built on feedback from players like you, the EA Desktop app is the newest iteration of our PC platform. The beta includes new features and overall improvements to power a faster, smarter, more connected desktop app. +Moniker: eaapp +Tags: +- ea +- ea-desktop +- game +- gaming +- launcher +- origin +- store +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.locale.zh-CN.yaml b/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.locale.zh-CN.yaml index ee7fd0bd5a5a..2aff54e13f37 100644 --- a/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.locale.zh-CN.yaml +++ b/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.locale.zh-CN.yaml @@ -1,27 +1,27 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: ElectronicArts.EADesktop -PackageVersion: 13.671.0.6184 -PackageLocale: zh-CN -Publisher: Electronic Arts -PublisherUrl: https://www.ea.com/zh-cn -PublisherSupportUrl: https://help.ea.com/ -PrivacyUrl: https://www.ea.com/zh-cn/legal/privacy-and-cookie-policy -Author: Electronic Arts Inc. -PackageName: EA app -PackageUrl: https://www.ea.com/ea-app -License: 专有软件 -LicenseUrl: https://tos.ea.com/legalapp/WEBTERMS/US/sc/PC/ -Copyright: © 2026 Electronic Arts Inc. -ShortDescription: 在一个地方游玩精彩的 PC 游戏并与朋友交流。 -Description: 根据玩家的反馈,我们开发了 EA Desktop 应用程序,作为 PC 平台的最新迭代。测试版包括新功能和整体改进,为更快、更智能、更互联的桌面应用程序提供动力。 -Tags: -- ea -- ea-desktop -- origin -- 启动器 -- 商店 -- 游戏 -ManifestType: locale -ManifestVersion: 1.12.0 +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: ElectronicArts.EADesktop +PackageVersion: 13.671.0.6184 +PackageLocale: zh-CN +Publisher: Electronic Arts +PublisherUrl: https://www.ea.com/zh-cn +PublisherSupportUrl: https://help.ea.com/ +PrivacyUrl: https://www.ea.com/zh-cn/legal/privacy-and-cookie-policy +Author: Electronic Arts Inc. +PackageName: EA app +PackageUrl: https://www.ea.com/ea-app +License: 专有软件 +LicenseUrl: https://tos.ea.com/legalapp/WEBTERMS/US/sc/PC/ +Copyright: © 2026 Electronic Arts Inc. +ShortDescription: 在一个地方游玩精彩的 PC 游戏并与朋友交流。 +Description: 根据玩家的反馈,我们开发了 EA Desktop 应用程序,作为 PC 平台的最新迭代。测试版包括新功能和整体改进,为更快、更智能、更互联的桌面应用程序提供动力。 +Tags: +- ea +- ea-desktop +- origin +- 启动器 +- 商店 +- 游戏 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.yaml b/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.yaml index f864b7a35f48..cfa696bba5c2 100644 --- a/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.yaml +++ b/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: ElectronicArts.EADesktop -PackageVersion: 13.671.0.6184 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: ElectronicArts.EADesktop +PackageVersion: 13.671.0.6184 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 6e56f689173b325d18a23df5999dc30329fed04d Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 03:41:07 +0800 Subject: [PATCH 064/162] New version: IntegrIT.Hackolade version 8.10.0 (#353039) --- .../8.10.0/IntegrIT.Hackolade.installer.yaml | 17 ++++++++ .../IntegrIT.Hackolade.locale.en-US.yaml | 43 +++++++++++++++++++ .../IntegrIT.Hackolade.locale.zh-CN.yaml | 23 ++++++++++ .../Hackolade/8.10.0/IntegrIT.Hackolade.yaml | 8 ++++ 4 files changed, 91 insertions(+) create mode 100644 manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.installer.yaml create mode 100644 manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.locale.en-US.yaml create mode 100644 manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.locale.zh-CN.yaml create mode 100644 manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.yaml diff --git a/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.installer.yaml b/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.installer.yaml new file mode 100644 index 000000000000..cd6490b03f96 --- /dev/null +++ b/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.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: IntegrIT.Hackolade +PackageVersion: 8.10.0 +InstallerType: inno +Scope: machine +Protocols: +- hcks +ProductCode: '{6BD03139-BBF4-44E0-ABA3-6D0461958CEC}_is1' +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://s3-eu-west-1.amazonaws.com/hackolade/previous/v8.10.0/Hackolade-win64-setup-signed.exe + InstallerSha256: 95CAA281386C42AC2B7E558E0E5534EEB842016B7644609B7859FEAF2C718179 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.locale.en-US.yaml b/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.locale.en-US.yaml new file mode 100644 index 000000000000..7988bfcd9540 --- /dev/null +++ b/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.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: IntegrIT.Hackolade +PackageVersion: 8.10.0 +PackageLocale: en-US +Publisher: Hackolade +PublisherUrl: https://hackolade.com/ +PublisherSupportUrl: https://hackolade.com/help/index.html +PrivacyUrl: https://hackolade.com/privacy.html +Author: IntegrIT SA/NV +PackageName: Hackolade +PackageUrl: https://hackolade.com/download.html +License: Proprietary +LicenseUrl: https://hackolade.com/eulas.html +Copyright: Copyright © 2016-2026 Hackolade. All rights reserved. +CopyrightUrl: https://hackolade.com/eulas.html +ShortDescription: Polyglot Data Modeling for SQL and NoSQL databases, APIs, and storage formats +Description: |- + Hackolade Studio is an intuitive yet powerful application to perform the visually data modeling and schema design of many SQL and NoSQL databases, APIS, and storage formats. + Hackolade Studio combines the graphical representation of collections in an Entity Relationship Diagram, with the graphical representation of the JSON Schema definition of each collection in a hierarchical schema view. Together, these graphical representations provide the schema model for data-at-rest and data-in-motion, plus the documentation of that model. The application is specifically designed around the powerful nature of JSON nested sub-objects and denormalization. + The software facilitates the work of, and the dialog between analysts, architects, designers, developers, testers, DBAs, and operators of systems that are based on such technologies. It also can generate schema scripts and documentation in a variety of machine-readable formats (DDLs, JSON Schema, Avro, Parquet, Protobuf, ...) as well as database instances, or human-readable formats such as HTML, Markdown, and PDF reports. + Instead of having to find data structures tacitly described in the application code, the creation of a database model helps to evaluate design options beforehand, think through the implications of different alternatives, and recognize potential hurdles before committing sizable amounts of development effort. A database model helps plan ahead, in order to minimize later rework. In the end, the modeling process accelerates development, increases quality of the application, and reduces execution risks. +Tags: +- database +- db +- modeling +ReleaseNotes: |- + - Tech refresh: replaced electron-store to leverage safeStorage API with Credential Manager (Windows), KeyChain (Mac), and Gnome Keyring or KWallet (Linux) + - PowerDesigner: added support for reverse-engineering Oracle check constraints + - Plugin Manager: streamlined plugin update process to reduce risks of anti-virus interference + - Cassandra: allowed addition or removal of keys as deviations on partition key of a derived entity + - DeltaLake/Databricks: created hardened fallback for reverse-engineering discovery of large tables + - SQLServer: added support for procedures in properties, forward- and reverse-engineering from DDL and instance +ReleaseNotesUrl: https://hackolade.com/versionInfo/ReadMe.txt +PurchaseUrl: https://hackolade.com/pricing.html +Documentations: +- DocumentLabel: Videos + DocumentUrl: https://hackolade.com/videos.html +- DocumentLabel: FAQ + DocumentUrl: https://hackolade.com/help/FAQandtroubleshooting.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.locale.zh-CN.yaml b/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.locale.zh-CN.yaml new file mode 100644 index 000000000000..773e1f0619c6 --- /dev/null +++ b/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.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: IntegrIT.Hackolade +PackageVersion: 8.10.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 涵盖 SQL 与 NoSQL 数据库、API 及存储格式的多语言数据建模 +Description: |- + Hackolade Studio 是一款直观而强大的应用程序,用于对多种 SQL 和 NoSQL 数据库、API 及存储格式进行可视化数据建模与模式设计。 + Hackolade Studio 将实体关系图中集合的图形化表示,与层次化模式视图中每个集合的 JSON Schema 定义图形化表示相结合。这些图形化表示共同构成了静态数据和动态数据的模式模型,并附带该模型的文档说明。该应用专门围绕 JSON 嵌套子对象和非规范化的强大特性进行设计。 + 该软件促进了基于此类技术的系统分析师、架构师、设计师、开发人员、测试人员、数据库管理员和运维人员之间的工作协作与对话。它还能生成多种机器可读格式(DDL、JSON Schema、Avro、Parquet、Protobuf 等)的模式脚本和文档,以及数据库实例;同时支持 HTML、Markdown 和 PDF 报告等人可读格式的输出。 + 通过创建数据库模型,用户无需从应用程序代码中隐式推导数据结构,即可预先评估设计方案、深入思考不同替代方案的影响,并在投入大量开发工作前识别潜在障碍。数据库模型有助于提前规划,从而最大限度减少后期返工。最终,建模过程能加速开发进度、提升应用质量并降低实施风险。 +Tags: +- 建模 +- 数据库 +Documentations: +- DocumentLabel: 视频 + DocumentUrl: https://hackolade.com/videos.html +- DocumentLabel: 常见问题 + DocumentUrl: https://hackolade.com/help/FAQandtroubleshooting.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.yaml b/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.yaml new file mode 100644 index 000000000000..5da47cecb219 --- /dev/null +++ b/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.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: IntegrIT.Hackolade +PackageVersion: 8.10.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 26130ac4fc0722a85c2dc26aa2ee3cda35331166 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9D=A4=E6=98=AF=E7=BA=B1=E9=9B=BE=E9=85=B1=E5=93=9F?= =?UTF-8?q?=EF=BD=9E?= <49941141+Dragon1573@users.noreply.github.com> Date: Sat, 28 Mar 2026 03:41:31 +0800 Subject: [PATCH 065/162] New package: gamigo.WildTangentGamesApp version 4.1.1.137 (#350874) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: ❤是纱雾酱哟~ <49941141+Dragon1573@users.noreply.github.com> --- .../gamigo.WildTangentGamesApp.installer.yaml | 21 +++++++++++++++ ...migo.WildTangentGamesApp.locale.en-US.yaml | 26 +++++++++++++++++++ .../4.1.1.137/gamigo.WildTangentGamesApp.yaml | 8 ++++++ 3 files changed, 55 insertions(+) create mode 100644 manifests/g/gamigo/WildTangentGamesApp/4.1.1.137/gamigo.WildTangentGamesApp.installer.yaml create mode 100644 manifests/g/gamigo/WildTangentGamesApp/4.1.1.137/gamigo.WildTangentGamesApp.locale.en-US.yaml create mode 100644 manifests/g/gamigo/WildTangentGamesApp/4.1.1.137/gamigo.WildTangentGamesApp.yaml diff --git a/manifests/g/gamigo/WildTangentGamesApp/4.1.1.137/gamigo.WildTangentGamesApp.installer.yaml b/manifests/g/gamigo/WildTangentGamesApp/4.1.1.137/gamigo.WildTangentGamesApp.installer.yaml new file mode 100644 index 000000000000..296beb918e3c --- /dev/null +++ b/manifests/g/gamigo/WildTangentGamesApp/4.1.1.137/gamigo.WildTangentGamesApp.installer.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: gamigo.WildTangentGamesApp +PackageVersion: 4.1.1.137 +InstallerType: exe +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /silent + SilentWithProgress: /silent +UpgradeBehavior: install +ReleaseDate: 2024-02-28 +Installers: +- Architecture: x86 + InstallerUrl: https://stackpathdownload.wildgames.com/Gamesapp/TouchPointInstallers/wildgames/Setup-wildgames.exe + InstallerSha256: F18EA0A86251B57D4B5B8C0173C6945B4EA06B498EC3D20D3C1EEADD9912F569 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/gamigo/WildTangentGamesApp/4.1.1.137/gamigo.WildTangentGamesApp.locale.en-US.yaml b/manifests/g/gamigo/WildTangentGamesApp/4.1.1.137/gamigo.WildTangentGamesApp.locale.en-US.yaml new file mode 100644 index 000000000000..d2785ff9394b --- /dev/null +++ b/manifests/g/gamigo/WildTangentGamesApp/4.1.1.137/gamigo.WildTangentGamesApp.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: gamigo.WildTangentGamesApp +PackageVersion: 4.1.1.137 +PackageLocale: en-US +Publisher: gamigo, Inc. +PublisherUrl: https://company.wildtangent.com/ +# PublisherSupportUrl: https://support.wildtangent.com/hc/en-us +PackageName: Games App touchpoint outer installer +PackageUrl: https://www.wildtangent.com/gamesapp +License: Proprietary (EULA) +LicenseUrl: https://www.wildtangent.com/legal/eula +Copyright: (c) 2026 gamigo Inc All Rights Reserved. +CopyrightUrl: https://www.wildtangent.com/gamesapp#:~:text=All%20Rights%20Reserved +ShortDescription: Play Games Your Way - with the WildTangent Games App +Description: Client launcher for games bought at the WildTangent Games store. +Tags: +- games-store +- hidden-objects +- launcher +- marketplace +- match-3 +- solitaire +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/gamigo/WildTangentGamesApp/4.1.1.137/gamigo.WildTangentGamesApp.yaml b/manifests/g/gamigo/WildTangentGamesApp/4.1.1.137/gamigo.WildTangentGamesApp.yaml new file mode 100644 index 000000000000..5874a0d5b755 --- /dev/null +++ b/manifests/g/gamigo/WildTangentGamesApp/4.1.1.137/gamigo.WildTangentGamesApp.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: gamigo.WildTangentGamesApp +PackageVersion: 4.1.1.137 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From aabe9c11bd6b037d3605201e4e1dde5506d48ed0 Mon Sep 17 00:00:00 2001 From: Danilo Pianini Date: Fri, 27 Mar 2026 20:41:57 +0100 Subject: [PATCH 066/162] New version: Unibo.Alchemist version 43.0.23 (#352573) --- .../43.0.23/Unibo.Alchemist.installer.yaml | 23 +++++++++++++++++++ .../43.0.23/Unibo.Alchemist.locale.en-US.yaml | 20 ++++++++++++++++ .../Alchemist/43.0.23/Unibo.Alchemist.yaml | 8 +++++++ 3 files changed, 51 insertions(+) create mode 100644 manifests/u/Unibo/Alchemist/43.0.23/Unibo.Alchemist.installer.yaml create mode 100644 manifests/u/Unibo/Alchemist/43.0.23/Unibo.Alchemist.locale.en-US.yaml create mode 100644 manifests/u/Unibo/Alchemist/43.0.23/Unibo.Alchemist.yaml diff --git a/manifests/u/Unibo/Alchemist/43.0.23/Unibo.Alchemist.installer.yaml b/manifests/u/Unibo/Alchemist/43.0.23/Unibo.Alchemist.installer.yaml new file mode 100644 index 000000000000..2a55bcccbd02 --- /dev/null +++ b/manifests/u/Unibo/Alchemist/43.0.23/Unibo.Alchemist.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: Unibo.Alchemist +PackageVersion: 43.0.23 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ProductCode: '{86FDBC21-FAEF-3C7F-A067-B7580631E707}' +AppsAndFeaturesEntries: +- DisplayName: alchemist + Publisher: Unknown + ProductCode: '{86FDBC21-FAEF-3C7F-A067-B7580631E707}' + UpgradeCode: '{4342BF32-7612-3295-9D0C-A06586CDA5D4}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\alchemist' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/AlchemistSimulator/Alchemist/releases/download/43.0.23/alchemist-43.0.23.msi + InstallerSha256: D23B7B4DB8E9F04AA0B346B2FBA733C574052F157C2AF4D29502D81D6C2B0A4B +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-26 diff --git a/manifests/u/Unibo/Alchemist/43.0.23/Unibo.Alchemist.locale.en-US.yaml b/manifests/u/Unibo/Alchemist/43.0.23/Unibo.Alchemist.locale.en-US.yaml new file mode 100644 index 000000000000..97d70c59a58f --- /dev/null +++ b/manifests/u/Unibo/Alchemist/43.0.23/Unibo.Alchemist.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: Unibo.Alchemist +PackageVersion: 43.0.23 +PackageLocale: en-US +Publisher: Unibo +PublisherUrl: https://github.com/AlchemistSimulator +PublisherSupportUrl: https://github.com/AlchemistSimulator/Alchemist/issues +PackageName: Alchemist +PackageUrl: https://github.com/AlchemistSimulator/Alchemist +License: GPLv3 +LicenseUrl: https://github.com/AlchemistSimulator/Alchemist/blob/HEAD/LICENSE.md +ShortDescription: an extensible simulator for pervasive computing +ReleaseNotesUrl: https://github.com/AlchemistSimulator/Alchemist/releases/tag/43.0.23 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/AlchemistSimulator/Alchemist/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/u/Unibo/Alchemist/43.0.23/Unibo.Alchemist.yaml b/manifests/u/Unibo/Alchemist/43.0.23/Unibo.Alchemist.yaml new file mode 100644 index 000000000000..76afcf222f82 --- /dev/null +++ b/manifests/u/Unibo/Alchemist/43.0.23/Unibo.Alchemist.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: Unibo.Alchemist +PackageVersion: 43.0.23 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 134feef8cf62c1ea26965e14b9d52ccd4c4dd39d Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 03:42:21 +0800 Subject: [PATCH 067/162] New version: Mixxx.Mixxx version 2.5.6 (#353041) --- .../Mixxx/2.5.6/Mixxx.Mixxx.installer.yaml | 21 +++++ .../Mixxx/2.5.6/Mixxx.Mixxx.locale.en-US.yaml | 89 +++++++++++++++++++ .../Mixxx/2.5.6/Mixxx.Mixxx.locale.zh-CN.yaml | 21 +++++ .../m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.yaml | 8 ++ 4 files changed, 139 insertions(+) create mode 100644 manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.installer.yaml create mode 100644 manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.locale.en-US.yaml create mode 100644 manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.locale.zh-CN.yaml create mode 100644 manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.yaml diff --git a/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.installer.yaml b/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.installer.yaml new file mode 100644 index 000000000000..1c7a023c9e7c --- /dev/null +++ b/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.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: Mixxx.Mixxx +PackageVersion: 2.5.6 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALL_ROOT="" +UpgradeBehavior: install +ProductCode: '{CE707519-18E2-4C74-84AD-75CF8D37B635}' +ReleaseDate: 2026-03-25 +AppsAndFeaturesEntries: +- ProductCode: '{CE707519-18E2-4C74-84AD-75CF8D37B635}' + UpgradeCode: '{921DC99C-4DCF-478D-B950-50685CB9E6BE}' +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.mixxx.org/releases/2.5.6/mixxx-2.5.6-win64.msi + InstallerSha256: 0D1F01A1F5C2E4D4180CD462E60365D0230B405808E7BD2B6625B62A53A29C72 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.locale.en-US.yaml b/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.locale.en-US.yaml new file mode 100644 index 000000000000..65eec3344385 --- /dev/null +++ b/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.locale.en-US.yaml @@ -0,0 +1,89 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mixxx.Mixxx +PackageVersion: 2.5.6 +PackageLocale: en-US +Publisher: Mixxx Project +PublisherUrl: https://mixxx.org/ +PublisherSupportUrl: https://mixxx.org/support/ +PrivacyUrl: https://mixxx.org/privacy-policy/ +PackageName: Mixxx +PackageUrl: https://mixxx.org/download/ +License: GPL-2.0-or-later +LicenseUrl: https://github.com/mixxxdj/mixxx/blob/HEAD/LICENSE +Copyright: Copyright (C) 2001-2026 Mixxx Development Team +ShortDescription: Free and open source DJ software for Windows, macOS, and Linux +Description: |- + Mixxx integrates the tools DJs need to perform creative live mixes with digital music files. + Whether you are a new DJ with just a laptop or an experienced turntablist, Mixxx can support your style and techniques of mixing. +Moniker: mixxx +Tags: +- dj +- mixing +ReleaseNotes: |- + We're proud to announce a new stable release of Mixxx: version 2.5.6. This version contains updates and fixes for issues, as well as improvements to effects, controller mappings, and overall stability. This should be the last 2.5 release. Note that this version is the successor of version 2.5.4 because version 2.5.5 has been skipped following an issue in the release workflow. We'd like to thank all users for their feedback and emphasize once again the importance of testing and reporting. Please join our team to help make Mixxx even better. + Enjoy Mixxx! + Important updates and fixes in 2.5.6 + - The 'not' operator in the search function was not working correctly. + - Rhythmbox imports were not functioning as expected. + - History playlists now allow track file export. + - Performance when restoring large track selections has been improved. + - White Noise and Echo effects have been enhanced, and crackling in QuickEffect has been fixed. + - Controller mappings for Numark Mixtrack 3, Pioneer CDJ-350, Reloop Beatmix 2/4, and Traktor Kontrol Z1 have been updated. + - Scratching with keylock enabled has been fixed. + - Flatpak packaging files have been added for easier installation on Linux. + 2.5.6 Changelog + The complete changelog can be found here. + Library + - Search: fix 'not' operator #15923 #15918 + - Rhythmbox: fix imports #15798 #15770 + - WTrackMenu: warn before opening more than 10 tracks in file browser #15828 #15819 + - Fix "dataChanged() called with an invalid index range" warning #15937 #14610 + - History: allow track file export #16074 + - History: prevent deletion of current history after purging tracks #15991 + - Tracks: improve performance when restoring large track selections #15973 + Effects + - White Noise: remove DC offset #15979 + - White Noise: improve gain responds #15949 + - Echo: fix distortion bug #15985 #15835 + - Echo: fix ramping of the send and feedback parameters #16006 + - QuickEffect: fix crackling noise when switching #15796 #15794 + - Glitch: remove unnecessary cast to integer #16068 + - Reverb: fix ramping of the send parameter #16001 + Controller Mappings + - Numark Mixtrack 3: update scripts #14180 + - Pioneer CDJ-350: fix incorrect name in controller mapping #15683 + - Reloop Beatmix 2/4: implement shift+jog wheel seek #15575 #12334 + - Traktor Kontrol Z1: fix crossfader cut #14451 #14450 #15945 + - Traktor S4Mk2: check for deck undefined #14445 + Engine + - Fix scratching with keylock enabled and mapping using scratch2 #15845 + - AudioUnit: fix crash due to off-by-one error in parameter syncing #15919 + - AudioUnit: fix startup crash by loading out-of-process #16106 + - FX units: resolve issue preventing use on all samplers #15971 #15799 + - Fix false positive "First sound has been moved!" warnings log message #16054 + - Beats: fix rare off-by-one beat issue with quantize and sync #13262 #16086 + Preferences + - Interface: use main window screen to detect if skin fits #15824 #15823 + Skins + - Time widget: make ShowSeconds only show seconds, no extra locale info #15805 + - Search related menu: fix search click trigger #15912 + - Tracks: avoid re-sorting table when purging/hiding tracks #15872 #12565 + Target support + - Add Flatpak packaging files #15695 #15922 #15935 + - Fail early if not running from Visual Studio environment #14623 + - Make Debian non-free optional #15895 + - Debian: remove 'qml6-module-qtquick-nativestyle #15771 + - Ubuntu: retire Plucky Puffin 25.04 #15926 + Miscellaneous + - Fix mixxx-test build to find mad.h #15803 + - Num deck streamline #14112 #16009 +ReleaseNotesUrl: https://mixxx.org/news/2026-03-27-mixxx-2_5_6-released +Documentations: +- DocumentLabel: Manual + DocumentUrl: https://manual.mixxx.org/ +- DocumentLabel: Wiki + DocumentUrl: https://github.com/mixxxdj/mixxx/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.locale.zh-CN.yaml b/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.locale.zh-CN.yaml new file mode 100644 index 000000000000..5daee84f52ea --- /dev/null +++ b/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.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: Mixxx.Mixxx +PackageVersion: 2.5.6 +PackageLocale: zh-CN +ShortDescription: 适用于 Windows、macOS 和 Linux 的免费开源 DJ 软件 +Description: |- + Mixxx 集成了 DJ 使用数字音乐文件进行创意现场混音所需的工具。 + 无论你是只有一台笔记本电脑的 DJ 新手,还是经验丰富的唱机手,Mixxx 都能支持你的混音风格和技术。 +Tags: +- dj +- 混音 +ReleaseNotesUrl: https://mixxx.org/news/2026-03-27-mixxx-2_5_6-released +Documentations: +- DocumentLabel: 手册 + DocumentUrl: https://manual.mixxx.org/ +- DocumentLabel: Wiki + DocumentUrl: https://github.com/mixxxdj/mixxx/wiki +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.yaml b/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.yaml new file mode 100644 index 000000000000..395e1490373e --- /dev/null +++ b/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.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: Mixxx.Mixxx +PackageVersion: 2.5.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From b7862ed14442f82e245dc08a7343d9f2cc08a3fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9D=A4=E6=98=AF=E7=BA=B1=E9=9B=BE=E9=85=B1=E5=93=9F?= =?UTF-8?q?=EF=BD=9E?= <49941141+Dragon1573@users.noreply.github.com> Date: Sat, 28 Mar 2026 03:42:31 +0800 Subject: [PATCH 068/162] Remove version: RustDesk.RustDesk version 1.4.1 (#352095) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: ❤是纱雾酱哟~ <49941141+Dragon1573@users.noreply.github.com> --- .../1.4.1/RustDesk.RustDesk.installer.yaml | 25 ------ .../1.4.1/RustDesk.RustDesk.locale.en-US.yaml | 84 ------------------- .../1.4.1/RustDesk.RustDesk.locale.zh-CN.yaml | 33 -------- .../RustDesk/1.4.1/RustDesk.RustDesk.yaml | 8 -- 4 files changed, 150 deletions(-) delete mode 100644 manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.installer.yaml delete mode 100644 manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.locale.en-US.yaml delete mode 100644 manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.locale.zh-CN.yaml delete mode 100644 manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.yaml diff --git a/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.installer.yaml b/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.installer.yaml deleted file mode 100644 index 0ce739aed8a9..000000000000 --- a/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.installer.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with komac v2.12.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: RustDesk.RustDesk -PackageVersion: 1.4.1 -InstallerType: exe -Scope: machine -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent-install - SilentWithProgress: --silent-install - Interactive: --install -UpgradeBehavior: install -ReleaseDate: 2025-07-29 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/rustdesk/rustdesk/releases/download/1.4.1/rustdesk-1.4.1-x86-sciter.exe - InstallerSha256: 76720E622E36BC36A1E594D706F2ABC3647931BA59709D2BA9DC15D0354314BE -- Architecture: x64 - InstallerUrl: https://github.com/rustdesk/rustdesk/releases/download/1.4.1/rustdesk-1.4.1-x86_64.exe - InstallerSha256: BA5AF57AFC8E97381AF7201EE35B202AA62F5B162863D9135A3A8908F32FF08A -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.locale.en-US.yaml b/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.locale.en-US.yaml deleted file mode 100644 index 48ecf881beed..000000000000 --- a/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.locale.en-US.yaml +++ /dev/null @@ -1,84 +0,0 @@ -# Created with komac v2.12.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: RustDesk.RustDesk -PackageVersion: 1.4.1 -PackageLocale: en-US -Publisher: RustDesk -PublisherUrl: https://rustdesk.com/ -PublisherSupportUrl: https://github.com/rustdesk/rustdesk/issues -PrivacyUrl: https://rustdesk.com/privacy.html -Author: Purslane Ltd. -PackageName: RustDesk -PackageUrl: https://rustdesk.com/ -License: AGPL-3.0 -LicenseUrl: https://github.com/rustdesk/rustdesk/blob/master/LICENCE -Copyright: Copyright © 2024 Purslane Ltd. -ShortDescription: An open-source remote desktop, and alternative to TeamViewer. -Description: RustDesk is a full-featured open source remote control alternative for self-hosting and security with minimal configuration. -Tags: -- home-office -- remote -- remote-access -- remote-assistance -- remote-control -- remote-desktop -- rust -ReleaseNotes: |- - image - ───────────────┬─────────────────┬─────────────┬─────────────┬──────────────┬─────────────┬──────────────┬─────── - Architecture │Windows │Ubuntu │Mac │Android │Flatpak │iOS │Web - ───────────────┼─────────────────┼─────────────┼─────────────┼──────────────┼─────────────┼──────────────┼─────── - x86-64 (64-bit)│EXE MSI │Download │Download │Universal │Download │ │Go - ───────────────┼─────────────────┼─────────────┼─────────────┼──────────────┼─────────────┼──────────────┼─────── - AArch64 (ARM64)│ │Download │Download │Download │Download │App Store │ - ───────────────┼─────────────────┼─────────────┼─────────────┼──────────────┼─────────────┼──────────────┼─────── - ARMv7 (32-bit) │ │Download │ │Download │ │ │ - ───────────────┼─────────────────┼─────────────┼─────────────┼──────────────┼─────────────┼──────────────┼─────── - x86-32 (32-bit)│EXE │ │ │ │ │ │ - ───────────────┴─────────────────┴─────────────┴─────────────┴──────────────┴─────────────┴──────────────┴─────── - For more downloads (Fedora / Arch Linux / Suse / AppImage): check below please - For the latest features: check out the nightly build - Changelog - Changelog - Added - - Terminal - - UDP and IPv6 Punch - - Stylus - - Numberic one time password option - - Enable force-always-relay option in address books and accessible devices - Changes - - Force secure tcp for login session rather than ignoring timeout - - clear the accessible devices tab when retrieving accessible devices disabled #11913 - - Improve sas - - Shorten retry time (from 18s to 3s) for some network error in rendezvous mediator to make reboot connection faster - Fixes - - macOS resolution list for Retina to solve the problem of unexpected resolution change after disconnection - - Can not input password if lock screen via RustDesk on macOS #11802 - - Key input lag on macOS https://www.reddit.com/r/rustdesk/comments/1kn1w5x/typing_lags_when_connecting_to_macos_clients/ - - Crash of 32 bit on Windows X64 for camera connection - - len(uid) < 4 case for "No active console user logged on" #11943 - - No icon for Rustdesk appimage #11927 - - Test nat type for outgoing-only client - - Untagged tag does not work in secondary or additional address books. #12061 - - bring back allow-https-21114 rustdesk/rustdesk-server-pro#570 (reply in thread) - - linux, nokhwa, camera index #12045 - - win, upload sysinfo #11849 - - mobile never connecting with password from url scheme #11797 - - not work on Windows Server Core since 1.3.9 - - Windows7 x86 >= 1.3.8 rustdesk can't open #12097 - - Privacy Mode 2 Failed ChangeDisplaySettingsEx, ret: -1, last error.... #10540 - - Crash on Android 7.1 when interacting (introduced in 1.3.8) - - Web client - Clicking anywhere brings a paste option #12121 - - Record directory of custom client #12171 - - win, only start tray if is installed exe #11737 - - High CPU on MacOS when the service is Stop #12233 - - rustdesk.service cause high CPU usage when idle #11157 - - Print output truncated at bottom and right side #11410 -ReleaseNotesUrl: https://github.com/rustdesk/rustdesk/releases/tag/1.4.1 -PurchaseUrl: https://rustdesk.com/pricing.html -Documentations: -- DocumentLabel: Documentation - DocumentUrl: https://rustdesk.com/docs/ -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.locale.zh-CN.yaml b/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.locale.zh-CN.yaml deleted file mode 100644 index 5a6db49ba5ba..000000000000 --- a/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.locale.zh-CN.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Created with komac v2.12.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: RustDesk.RustDesk -PackageVersion: 1.4.1 -PackageLocale: zh-CN -Publisher: RustDesk -PublisherUrl: https://rustdesk.com/ -PublisherSupportUrl: https://github.com/rustdesk/rustdesk/issues -PrivacyUrl: https://rustdesk.com/privacy.html -Author: Purslane Ltd. -PackageName: RustDesk -PackageUrl: https://rustdesk.com/ -License: AGPL-3.0 -LicenseUrl: https://github.com/rustdesk/rustdesk/blob/master/LICENCE -Copyright: Copyright © 2024 Purslane Ltd. -ShortDescription: 开源远程桌面,TeamViewer 的替代品。 -Description: RustDesk 是一款功能齐全的开源远程控制替代品,只需最少的配置即可实现自托管和安全性。 -Tags: -- rust -- 远程 -- 远程办公 -- 远程协助 -- 远程控制 -- 远程桌面 -- 远程访问 -- 远程连接 -PurchaseUrl: https://rustdesk.com/pricing.html -Documentations: -- DocumentLabel: 文档 - DocumentUrl: https://rustdesk.com/docs/ -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.yaml b/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.yaml deleted file mode 100644 index b0d58b2a5a24..000000000000 --- a/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with komac v2.12.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: RustDesk.RustDesk -PackageVersion: 1.4.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 From de26f232bc7221b98e47c452a805c38f8893fe1e Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sat, 28 Mar 2026 03:42:53 +0800 Subject: [PATCH 069/162] Remove: CrashPlan.CrashPlan version 11.9.0.507 (#350707) --- .../CrashPlan.CrashPlan.installer.yaml | 21 ------------------ .../CrashPlan.CrashPlan.locale.en-US.yaml | 22 ------------------- .../CrashPlan.CrashPlan.locale.zh-CN.yaml | 12 ---------- .../11.9.0.507/CrashPlan.CrashPlan.yaml | 8 ------- 4 files changed, 63 deletions(-) delete mode 100644 manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.installer.yaml delete mode 100644 manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.locale.en-US.yaml delete mode 100644 manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.locale.zh-CN.yaml delete mode 100644 manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.yaml diff --git a/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.installer.yaml b/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.installer.yaml deleted file mode 100644 index f506f8ff741b..000000000000 --- a/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: CrashPlan.CrashPlan -PackageVersion: 11.9.0.507 -InstallerType: msi -InstallerSwitches: - InstallLocation: APPDIR="" -UpgradeBehavior: install -Dependencies: - PackageDependencies: - - PackageIdentifier: Microsoft.VCRedist.2015+.x64 -ProductCode: '{AC36A2F6-E39D-43C4-9364-6A404581011E}' -AppsAndFeaturesEntries: -- UpgradeCode: '{113B48D9-4965-4FAA-A583-A61ADAE58355}' -Installers: -- Architecture: x64 - InstallerUrl: https://download.crashplan.com/installs/agent/cloud/11.9.0/507/install/CrashPlan_11.9.0_507_Win64.msi - InstallerSha256: B5F459889D09AF1C0CB37AC3C9AB05792FB9C5D5EEB1A7A01CD168A7C771B422 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.locale.en-US.yaml b/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.locale.en-US.yaml deleted file mode 100644 index d88017241a93..000000000000 --- a/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.locale.en-US.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: CrashPlan.CrashPlan -PackageVersion: 11.9.0.507 -PackageLocale: en-US -Publisher: CrashPlan Group LLC -PublisherUrl: https://www.crashplan.com/ -PublisherSupportUrl: https://support.crashplan.com/ -PrivacyUrl: https://www.crashplan.com/privacy/ -Author: CrashPlan Group LLC -PackageName: CrashPlan -License: Proprietary -LicenseUrl: https://www.crashplan.com/terms-conditions/ -Copyright: © 2026, CrashPlan Group LLC -CopyrightUrl: https://www.crashplan.com/terms-conditions/ -ShortDescription: When you need to recover a file or a version of a file, the CrashPlan app makes it easy to browse, search, and download files from all of the devices on your account. -Tags: -- backup -PurchaseUrl: https://www.crashplan.com/pricing/ -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.locale.zh-CN.yaml b/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.locale.zh-CN.yaml deleted file mode 100644 index 9bbff0428d0b..000000000000 --- a/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.locale.zh-CN.yaml +++ /dev/null @@ -1,12 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: CrashPlan.CrashPlan -PackageVersion: 11.9.0.507 -PackageLocale: zh-CN -License: 专有软件 -ShortDescription: 当您需要恢复某个文件或文件的某个版本时,CrashPlan 应用让您能够轻松浏览、搜索并下载账户下所有设备中的文件。 -Tags: -- 备份 -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.yaml b/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.yaml deleted file mode 100644 index 402af9a24b33..000000000000 --- a/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: CrashPlan.CrashPlan -PackageVersion: 11.9.0.507 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 From 29160624ae6c01dfdec27f75ea2aa676617e32d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9D=A4=E6=98=AF=E7=BA=B1=E9=9B=BE=E9=85=B1=E5=93=9F?= =?UTF-8?q?=EF=BD=9E?= <49941141+Dragon1573@users.noreply.github.com> Date: Sat, 28 Mar 2026 03:43:03 +0800 Subject: [PATCH 070/162] Remove version: JetBrains.QodanaCLI version 2025.3.3 (#351158) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: ❤是纱雾酱哟~ <49941141+Dragon1573@users.noreply.github.com> --- .../JetBrains.QodanaCLI.installer.yaml | 20 -------------- .../JetBrains.QodanaCLI.locale.en-US.yaml | 27 ------------------- .../2025.3.3/JetBrains.QodanaCLI.yaml | 8 ------ 3 files changed, 55 deletions(-) delete mode 100644 manifests/j/JetBrains/QodanaCLI/2025.3.3/JetBrains.QodanaCLI.installer.yaml delete mode 100644 manifests/j/JetBrains/QodanaCLI/2025.3.3/JetBrains.QodanaCLI.locale.en-US.yaml delete mode 100644 manifests/j/JetBrains/QodanaCLI/2025.3.3/JetBrains.QodanaCLI.yaml diff --git a/manifests/j/JetBrains/QodanaCLI/2025.3.3/JetBrains.QodanaCLI.installer.yaml b/manifests/j/JetBrains/QodanaCLI/2025.3.3/JetBrains.QodanaCLI.installer.yaml deleted file mode 100644 index 6dcee6909c6c..000000000000 --- a/manifests/j/JetBrains/QodanaCLI/2025.3.3/JetBrains.QodanaCLI.installer.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Created with komac v2.8.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: JetBrains.QodanaCLI -PackageVersion: 2025.3.3 -InstallerLocale: en-US -InstallerType: zip -NestedInstallerType: portable -NestedInstallerFiles: -- RelativeFilePath: qodana.exe -ReleaseDate: 2026-03-10 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/JetBrains/qodana-cli/releases/download/v2025.3.3/qodana_windows_x86_64.zip - InstallerSha256: C05CEBE5A13C654CCECD86DD83A083291ADC7902984555EAE5A7FF231BCD50BD -- Architecture: arm64 - InstallerUrl: https://github.com/JetBrains/qodana-cli/releases/download/v2025.3.3/qodana_windows_arm64.zip - InstallerSha256: F038DF713DE4E34676A32A19ED4BA182570CE4692A5757D66745955481558554 -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/j/JetBrains/QodanaCLI/2025.3.3/JetBrains.QodanaCLI.locale.en-US.yaml b/manifests/j/JetBrains/QodanaCLI/2025.3.3/JetBrains.QodanaCLI.locale.en-US.yaml deleted file mode 100644 index 3e93acaea108..000000000000 --- a/manifests/j/JetBrains/QodanaCLI/2025.3.3/JetBrains.QodanaCLI.locale.en-US.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Created with komac v2.8.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: JetBrains.QodanaCLI -PackageVersion: 2025.3.3 -PackageLocale: en-US -Publisher: JetBrains s.r.o. -PublisherUrl: https://www.jetbrains.com/ -PublisherSupportUrl: https://www.jetbrains.com/help/qodana/getting-started.html -PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy -Author: JetBrains s.r.o. -PackageName: Qodana CLI -PackageUrl: https://www.jetbrains.com/qodana -License: Apache-2.0 -LicenseUrl: https://github.com/JetBrains/qodana-cli/blob/HEAD/LICENSE -Copyright: Copyright © JetBrains s.r.o. -ShortDescription: Qodana is a simple cross-platform command-line tool to run Qodana linters anywhere with minimum effort required. -Moniker: qodana -Tags: -- code-quality -- code-scanning -- jetbrains -- qodana -ReleaseNotes: "Changelog\n- :bug: QD-13907 Switch GitHub authorization to use GitHub App instead of PAT for releasing (#870)\nInstall\n💡 The Qodana CLI is distributed and run as a binary. The Qodana linters with inspections are Docker Images or, starting from version 2023.2, your local/downloaded by CLI IDE installations (experimental support).\n- To run Qodana with a container (the default mode in CLI), you must have Docker or Podman installed and running locally to support this: https://www.docker.com/get-started, and, if you are using Linux, you should be able to run Docker from the current (non-root) user (https://docs.docker.com/engine/install/linux-postinstall/#manage-docker-as-a-non-root-user)\n- To run Qodana without a container, you must have the IDE installed locally to provide the IDE installation path to the CLI or specify the product code, and CLI will try to download the IDE automatically (experimental support).\n\nmacOS and Linux\nInstall with Homebrew (recommended)\nbrew install jetbrains/utils/qodana\n\nInstall with our installer\ncurl -fsSL https://jb.gg/qodana-cli/install | bash\n\nAlso, you can install nightly or any other version (e.g. v2023.2.9) the following way:\ncurl -fsSL https://jb.gg/qodana-cli/install | bash -s -- nightly\n\nWindows\nInstall with Windows Package Manager (recommended)\nwinget install -e --id JetBrains.QodanaCLI\n\nInstall with Chocolatey\nchoco install qodana\n\nInstall with Scoop\nscoop bucket add jetbrains \nscoop install qodana\n\nAnywhere else\nAlternatively, you can install the latest binary (or the apt/rpm/deb/archlinux package) from this page.Update\nUpdate to the latest version depends on how you choose to install qodana on your machine.Update with Homebrew\nbrew upgrade qodana\n\nUpdate with Scoop\nscoop update qodana\n\nUpdate with Chocolatey\nchoco upgrade qodana\n\nUpdate on Linux and macOS with the installer script\ncurl -fsSL https://jb.gg/qodana-cli/install | bash\n\nAlternatively, you can grab the latest binary (or the apt/rpm/deb package) from this page." -ReleaseNotesUrl: https://github.com/JetBrains/qodana-cli/releases/tag/v2025.3.3 -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/j/JetBrains/QodanaCLI/2025.3.3/JetBrains.QodanaCLI.yaml b/manifests/j/JetBrains/QodanaCLI/2025.3.3/JetBrains.QodanaCLI.yaml deleted file mode 100644 index bdec77802c0b..000000000000 --- a/manifests/j/JetBrains/QodanaCLI/2025.3.3/JetBrains.QodanaCLI.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with komac v2.8.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: JetBrains.QodanaCLI -PackageVersion: 2025.3.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 From 042ece8bed08b7f91debbd3d98e20e8707ca848c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9D=A4=E6=98=AF=E7=BA=B1=E9=9B=BE=E9=85=B1=E5=93=9F?= =?UTF-8?q?=EF=BD=9E?= <49941141+Dragon1573@users.noreply.github.com> Date: Sat, 28 Mar 2026 03:43:27 +0800 Subject: [PATCH 071/162] Remove version: RoyalApps.RoyalTS.7 version 7.4.50306.0 (#351202) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: ❤是纱雾酱哟~ <49941141+Dragon1573@users.noreply.github.com> --- .../RoyalApps.RoyalTS.7.installer.yaml | 36 ---------------- .../RoyalApps.RoyalTS.7.locale.en-US.yaml | 42 ------------------- .../RoyalApps.RoyalTS.7.locale.zh-CN.yaml | 26 ------------ .../7/7.4.50306.0/RoyalApps.RoyalTS.7.yaml | 8 ---- 4 files changed, 112 deletions(-) delete mode 100644 manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.installer.yaml delete mode 100644 manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.locale.en-US.yaml delete mode 100644 manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.locale.zh-CN.yaml delete mode 100644 manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.yaml diff --git a/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.installer.yaml b/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.installer.yaml deleted file mode 100644 index d6793493799f..000000000000 --- a/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.installer.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Created with komac v2.15.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: RoyalApps.RoyalTS.7 -PackageVersion: 7.4.50306.0 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallerSwitches: - InstallLocation: INSTALLDIR="" -UpgradeBehavior: install -Protocols: -- royalappslicense -- rtscli -- rtsx -FileExtensions: -- rtsx -- rtsz -ProductCode: '{4959A733-614C-44E8-AC0D-3E7BCABB95AC}' -ReleaseDate: 2026-03-06 -AppsAndFeaturesEntries: -- DisplayName: Royal TS V7 - Publisher: Royal Apps GmbH - ProductCode: '{4959A733-614C-44E8-AC0D-3E7BCABB95AC}' - UpgradeCode: '{4959A733-614C-44E8-AC0D-3E7B5A7375AB}' -InstallationMetadata: - DefaultInstallLocation: ABSOLUTEPATH -Installers: -- Architecture: x64 - InstallerUrl: https://download.royalapps.com/royalts/royaltsinstaller_7.04.50306.0_x64.msi - InstallerSha256: 2FBC0F25346039479D7B8E2069FC594C9AF36E85355FB46C7574097DFD1194F8 -- Architecture: arm64 - InstallerUrl: https://download.royalapps.com/royalts/royaltsinstaller_7.04.50306.0_arm64.msi - InstallerSha256: A6A62D3D85EA648ED426B2230B36B19AD56D50D7ABAB8071F9D5235769096709 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.locale.en-US.yaml b/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.locale.en-US.yaml deleted file mode 100644 index 764ebff121c2..000000000000 --- a/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.locale.en-US.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Created with komac v2.15.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: RoyalApps.RoyalTS.7 -PackageVersion: 7.4.50306.0 -PackageLocale: en-US -Publisher: Royal Apps GmbH -PublisherUrl: https://www.royalapps.com/ -PublisherSupportUrl: https://support.royalapps.com/support/home -PrivacyUrl: https://www.royalapps.com/ts/win/privacy -Author: Royal Apps GmbH -PackageName: Royal TS V7 -PackageUrl: https://www.royalapps.com/ts/win/download -License: Proprietary -LicenseUrl: https://support.royalapps.com/support/solutions/articles/17000074360 -Copyright: © 2025 Royal Apps GmbH -CopyrightUrl: https://support.royalapps.com/support/solutions/articles/17000074360 -ShortDescription: Comprehensive Remote Management Solution -Description: > - Royal TS provides powerful, easy and secure access to your remote systems. It's the perfect tool - for server admins, system engineers, developers and IT focused information workers who constantly - need to access remote systems with different protocols (like RDP, VNC, SSH, HTTP/S, and many - more). -Tags: -- ftp -- rdp -- remote -- server -- sftp -- ssh -- telnet -- vnc -- x11 -- xorg -- xserver -ReleaseNotesUrl: https://community.royalapps.com/t/royal-ts-v7-previous-versions/238#p-240-royal-ts-704wrappatch-version50306wrap-wraprelease-date2026-03-06wrap-1 -PurchaseUrl: https://www.royalapps.com/ts/win/buy -Documentations: -- DocumentLabel: Docs - DocumentUrl: https://docs.royalapps.com/ -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.locale.zh-CN.yaml b/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.locale.zh-CN.yaml deleted file mode 100644 index e4b6a33018e5..000000000000 --- a/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.locale.zh-CN.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with komac v2.15.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: RoyalApps.RoyalTS.7 -PackageVersion: 7.4.50306.0 -PackageLocale: zh-CN -License: 专有软件 -ShortDescription: 综合远程管理解决方案 -Description: Royal TS 为您提供强大、便捷且安全的远程系统访问体验。作为服务器管理员、系统工程师、开发人员及 IT 专业人士的理想工具,它能完美支持多种协议(如RDP、VNC、SSH、HTTP/S 等),满足您频繁连接各类远程系统的需求。 -Tags: -- ftp -- rdp -- sftp -- ssh -- telnet -- vnc -- x11 -- xorg -- xserver -- 服务器 -- 远程 -Documentations: -- DocumentLabel: 文档 - DocumentUrl: https://docs.royalapps.com/ -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.yaml b/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.yaml deleted file mode 100644 index aeb568cadd32..000000000000 --- a/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with komac v2.15.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: RoyalApps.RoyalTS.7 -PackageVersion: 7.4.50306.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 From 51d1b05d945d7dd6093df7d5a7671144c3b08a2a Mon Sep 17 00:00:00 2001 From: Santiago Biali Date: Fri, 27 Mar 2026 17:13:28 -0300 Subject: [PATCH 072/162] ReceitaFederaldoBrasil.SpedFiscalICMSIPI version 6.0.3 (#352293) --- ...deraldoBrasil.SpedFiscalICMSIPI.installer.yaml | 15 +++++++++++++++ ...aldoBrasil.SpedFiscalICMSIPI.locale.pt-BR.yaml | 13 +++++++++++++ .../ReceitaFederaldoBrasil.SpedFiscalICMSIPI.yaml | 8 ++++++++ 3 files changed, 36 insertions(+) create mode 100644 manifests/r/ReceitaFederaldoBrasil/SpedFiscalICMSIPI/6.0.3/ReceitaFederaldoBrasil.SpedFiscalICMSIPI.installer.yaml create mode 100644 manifests/r/ReceitaFederaldoBrasil/SpedFiscalICMSIPI/6.0.3/ReceitaFederaldoBrasil.SpedFiscalICMSIPI.locale.pt-BR.yaml create mode 100644 manifests/r/ReceitaFederaldoBrasil/SpedFiscalICMSIPI/6.0.3/ReceitaFederaldoBrasil.SpedFiscalICMSIPI.yaml diff --git a/manifests/r/ReceitaFederaldoBrasil/SpedFiscalICMSIPI/6.0.3/ReceitaFederaldoBrasil.SpedFiscalICMSIPI.installer.yaml b/manifests/r/ReceitaFederaldoBrasil/SpedFiscalICMSIPI/6.0.3/ReceitaFederaldoBrasil.SpedFiscalICMSIPI.installer.yaml new file mode 100644 index 000000000000..663dcc3310ad --- /dev/null +++ b/manifests/r/ReceitaFederaldoBrasil/SpedFiscalICMSIPI/6.0.3/ReceitaFederaldoBrasil.SpedFiscalICMSIPI.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ReceitaFederaldoBrasil.SpedFiscalICMSIPI +PackageVersion: 6.0.3 +InstallerType: exe +InstallerSwitches: + Silent: -q + SilentWithProgress: -q -splash +Installers: +- Architecture: x64 + InstallerUrl: https://servicos.receita.fazenda.gov.br/publico/programas/Sped/SpedFiscal/SpedEFD_w64-6.0.3.exe + InstallerSha256: 8B87DF4735013E1F9B6A9A4A4FE37E865FB9EB3BB7F5DB899AB98B4453F6D8AB +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/ReceitaFederaldoBrasil/SpedFiscalICMSIPI/6.0.3/ReceitaFederaldoBrasil.SpedFiscalICMSIPI.locale.pt-BR.yaml b/manifests/r/ReceitaFederaldoBrasil/SpedFiscalICMSIPI/6.0.3/ReceitaFederaldoBrasil.SpedFiscalICMSIPI.locale.pt-BR.yaml new file mode 100644 index 000000000000..d4dfe060a9e7 --- /dev/null +++ b/manifests/r/ReceitaFederaldoBrasil/SpedFiscalICMSIPI/6.0.3/ReceitaFederaldoBrasil.SpedFiscalICMSIPI.locale.pt-BR.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ReceitaFederaldoBrasil.SpedFiscalICMSIPI +PackageVersion: 6.0.3 +PackageLocale: pt-BR +Publisher: Receita Federal do Brasil +PackageName: Sped Fiscal ICMS IPI +License: Public +Copyright: Receita Federal do Brasil +ShortDescription: Sped Fiscal ICMS IPI +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/ReceitaFederaldoBrasil/SpedFiscalICMSIPI/6.0.3/ReceitaFederaldoBrasil.SpedFiscalICMSIPI.yaml b/manifests/r/ReceitaFederaldoBrasil/SpedFiscalICMSIPI/6.0.3/ReceitaFederaldoBrasil.SpedFiscalICMSIPI.yaml new file mode 100644 index 000000000000..13491621792e --- /dev/null +++ b/manifests/r/ReceitaFederaldoBrasil/SpedFiscalICMSIPI/6.0.3/ReceitaFederaldoBrasil.SpedFiscalICMSIPI.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: ReceitaFederaldoBrasil.SpedFiscalICMSIPI +PackageVersion: 6.0.3 +DefaultLocale: pt-BR +ManifestType: version +ManifestVersion: 1.12.0 From 3fcab03d8e9efca80dff643453c2d3d247762332 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 04:14:23 +0800 Subject: [PATCH 073/162] New version: JetBrains.PhpStorm version 2026.1 (#352623) --- .../2026.1/JetBrains.PhpStorm.installer.yaml | 41 ++++++++++++++ .../JetBrains.PhpStorm.locale.en-US.yaml | 56 +++++++++++++++++++ .../JetBrains.PhpStorm.locale.zh-CN.yaml | 31 ++++++++++ .../PhpStorm/2026.1/JetBrains.PhpStorm.yaml | 8 +++ 4 files changed, 136 insertions(+) create mode 100644 manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.installer.yaml create mode 100644 manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.locale.en-US.yaml create mode 100644 manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.locale.zh-CN.yaml create mode 100644 manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.yaml diff --git a/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.installer.yaml b/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.installer.yaml new file mode 100644 index 000000000000..83e0197feb5c --- /dev/null +++ b/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.installer.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: JetBrains.PhpStorm +PackageVersion: "2026.1" +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +FileExtensions: +- css +- html +- ipr +- js +- php +- phtml +ProductCode: PhpStorm 2026.1 +ReleaseDate: 2026-03-26 +AppsAndFeaturesEntries: +- DisplayVersion: 261.22158.283 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.jetbrains.com/webide/PhpStorm-2026.1.exe + InstallerSha256: 6429633909C81AB72D55D0C9190244C3329A32C7C53D9364BC3F90780538E1B7 +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/webide/PhpStorm-2026.1.exe + InstallerSha256: 6429633909C81AB72D55D0C9190244C3329A32C7C53D9364BC3F90780538E1B7 + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://download.jetbrains.com/webide/PhpStorm-2026.1-aarch64.exe + InstallerSha256: 7EF9E5689791B473AEDD6F580E98809BC0365546ED15812891E102F275CF6CDF +- Architecture: arm64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/webide/PhpStorm-2026.1-aarch64.exe + InstallerSha256: 7EF9E5689791B473AEDD6F580E98809BC0365546ED15812891E102F275CF6CDF + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.locale.en-US.yaml b/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.locale.en-US.yaml new file mode 100644 index 000000000000..40f58a6cda67 --- /dev/null +++ b/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.locale.en-US.yaml @@ -0,0 +1,56 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: JetBrains.PhpStorm +PackageVersion: "2026.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: PhpStorm +PackageUrl: https://www.jetbrains.com/phpstorm/ +License: Proprietary +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2026 JetBrains s.r.o. +ShortDescription: Lightning-smart PHP IDE +Description: PhpStorm is a development tool for PHP and Web projects. It’s a perfect PHP IDE for working with Laravel, Symfony, Drupal, WordPress, and other frameworks. +Moniker: phpstorm +Tags: +- code +- coding +- css +- develop +- development +- htm +- html +- ide +- javascript +- js +- php +- programming +- web +- webpage +ReleaseNotes: |- + PhpStorm 2026.1 is now available! + The highlights of this update include: + + - PhpStorm MCP tools. + - An ACP registry of available coding agents. + - Next-edit suggestions. + - Optimized project indexing. + - Support for Laravel Livewire 4, Filament v4, eloquent enhancements, and more. + Explore the full list of the new features on our What's New page. + The full list of changes in PhpStorm 2026.1 is available in the release notes. + + - Download PhpStorm + - Tweet us + - Report bugs to our issue tracker +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/WI-A-231736312 +PurchaseUrl: https://www.jetbrains.com/phpstorm/buy/ +Documentations: +- DocumentLabel: Resources + DocumentUrl: https://www.jetbrains.com/phpstorm/resources/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.locale.zh-CN.yaml b/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.locale.zh-CN.yaml new file mode 100644 index 000000000000..09e97387250d --- /dev/null +++ b/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.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.PhpStorm +PackageVersion: "2026.1" +PackageLocale: zh-CN +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PackageUrl: https://www.jetbrains.com/zh-cn/phpstorm/ +License: 专有软件 +ShortDescription: 高效智能的 PHP IDE +Description: PhpStorm 是一个用于 PHP 和 Web 项目的开发工具。它是一个完美的 PHP IDE,支持 Laravel、Symfony、Drupal、WordPress 等各种主流框架。 +Tags: +- css +- htm +- html +- javascript +- js +- php +- 代码 +- 开发 +- 编程 +- 网页 +- 集成开发环境 +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/WI-A-231736312 +PurchaseUrl: https://www.jetbrains.com/zh-cn/phpstorm/buy/ +Documentations: +- DocumentLabel: 资源 + DocumentUrl: https://www.jetbrains.com/zh-cn/phpstorm/resources/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.yaml b/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.yaml new file mode 100644 index 000000000000..25f694ed9d4b --- /dev/null +++ b/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.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.PhpStorm +PackageVersion: "2026.1" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 4e4f6445ee7f2be83f7130ef5c3ea125792433b4 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 04:15:18 +0800 Subject: [PATCH 074/162] New version: NoMachine.NoMachine.EnterpriseDesktop version 9.4.14 (9.4.14_1) (#352630) --- ...NoMachine.EnterpriseDesktop.installer.yaml | 25 +++++++ ...achine.EnterpriseDesktop.locale.en-US.yaml | 75 +++++++++++++++++++ ...achine.EnterpriseDesktop.locale.zh-CN.yaml | 24 ++++++ ...NoMachine.NoMachine.EnterpriseDesktop.yaml | 8 ++ 4 files changed, 132 insertions(+) create mode 100644 manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.installer.yaml create mode 100644 manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.locale.en-US.yaml create mode 100644 manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.locale.zh-CN.yaml create mode 100644 manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.yaml diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.installer.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.installer.yaml new file mode 100644 index 000000000000..ae46eef5ff40 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/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.4.14 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- nxr +- nxs +- nxv +- nxw +ProductCode: NoMachine_is1 +ReleaseDate: 2026-03-26 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + InstallerUrl: https://web9001.nomachine.com/packages/9.4-PRODUCTION/Windows/nomachine-enterprise-desktop_9.4.14_1_x86.exe + InstallerSha256: D8B82A520D5319162AA673B88570D35EF749F2F1F887417893555DAAEB4115AD +- Architecture: x64 + InstallerUrl: https://web9001.nomachine.com/packages/9.4-PRODUCTION/Windows/nomachine-enterprise-desktop_9.4.14_1_x64.exe + InstallerSha256: 41781BF4EEB239419FD2C98F3C91A98A9F5A64BD9E0162EB3D76E549ACAFB07E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.locale.en-US.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.locale.en-US.yaml new file mode 100644 index 000000000000..84502b92bd0a --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.locale.en-US.yaml @@ -0,0 +1,75 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseDesktop +PackageVersion: 9.4.14 +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.4.14, introducing a number of improvements, along with updates to third‑party components affected by CVEs, as well as fixes for issues found in previous releases. + Changes to keys in configuration files + + The new CustomXauthorityPath key in server.cfg, allows administrators to change the location of the .Xauthority file or to create separate .Xauthority files per virtual desktop session. This helps prevent XAUTHORITY conflicts in environments with shared home directories and is primarily intended for complex or enterprise deployments. The TokenExpiryTimeout key in server.cfg, lets you define the validity period of the token generated by the server to allow clients to reconnect after a connection failure. By default, the token remains valid for five minutes (300 s). Additionally, the 'EnableDbusLaunch' key in node.cfg has been renamed into 'EnableDbusWrapper'. This new key name is available for fresh new installations, updates will not rename the original EnableDbusLaunch key. + Ability to log-in automatically Linux Guest Users via web + + Two new keys in server.cfg, EnableWebGuestsAutoLogin and ForceGuestUserCreation, enable seamless guest access to Linux web sessions, where system guests are automatically logged in to the system without encountering any login prompt. + + Improvements to session list and export of history + + A new option, the '--no-physical' parameter, allows you to exclude physical sessions from the output of session list commands ('nxserver --list', 'nxserver --connectionlist' and 'nxserver --history'). Another new parameter, '--filter item,value' applies the same logic of the '--format items_list' option but limits the output to entries matching the specified item-value pair. The full list of available items can be obtained by running 'nxserver --history --format'. Additionally, the 'nxserver --history' output can now be exported in JSON or CSV formats, facilitating data integration with external analysis platforms and third‑party tools. + OpenSSL + + OpenSSL libraries shipped by NoMachine client and server packages are now v3.0.19. The full list of CVE patched by OpenSSL v3.0.19 is available on their Official web site https://github.com/openssl/openssl/releases/tag/openssl-3.0.19. + Perl + + A patch for CVE-2024-56406 has been applied to the current Perl version shipped by NoMachine server packages. Details about the CVE are available at: https://nvd.nist.gov/vuln/detail/CVE-2024-56406 + Trouble Reports solved + + Here is the complete list of fixes released in version 9.4.14: + + TR02X11721 - Kerberos authentication may fail with 'Cannot initialize gssapi' + TR11W11638 - Black screen after connection to macOS with a sleeping display + TR03X11742 - Black screen may occur when connecting to Linux physical desktops + TR07W11488 - On RHEL 10 starting a single application may be not possible + TR07W11489 - On RHEL 10, creating a virtual desktop may not be possible + TR01X11689 - Possible privileges escalation on Windows via named pipe impersonation + TR02X11711 - Possible privilege escalation via a valid Kerberos ccache file + TR02X11710 - Possible arbitrary deletion of files by exploiting the NoMachine environment variable for Kerberos cache path + TR03X11758 - After power outage it could be no longer possible to connect via VPN + TR11W11630 - The connections limit counter is sometimes wrongly increased + TR01X11694 - License incorrectly in active state after incomplete installation using '--subscriptionset' + TR01X11699 - Possible unexpected termination of nxnode on Linux + TR03U10791 - Monitors of client are treated as a single monitor when the X11 graphics mode is disabled + TR01X11685 - In a multinode environment, session could not be started when "ClientMenuconfiguration none" is set on the node + TR02X11712 - A timeout error occurred while attempting to connect to host with private key and passphrase + TR01X11693 - Cannot connect to a node via Web when Duo Authentication is enabled + TR11W11629 - Web sessions or virtual desktops with X11 vector graphics mode disabled are counted twice in the connection limit counter + TR07V11189 - Unwanted scrolling when scrolling a page with two fingers in a web session +ReleaseNotesUrl: https://kb.nomachine.com/SU03X00271 +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.4.14/NoMachine.NoMachine.EnterpriseDesktop.locale.zh-CN.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.locale.zh-CN.yaml new file mode 100644 index 000000000000..eb3ccbf0f37f --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/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.4.14 +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.4.14/NoMachine.NoMachine.EnterpriseDesktop.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.yaml new file mode 100644 index 000000000000..dfb7b3d7969d --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/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.4.14 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From ba81759277667e871a8a042cba4148e59afff468 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 04:16:15 +0800 Subject: [PATCH 075/162] New version: RubyInstallerTeam.RubyWithDevKit.3.3 version 3.3.11-1 (#352635) --- ...llerTeam.RubyWithDevKit.3.3.installer.yaml | 53 +++++++++++++++++++ ...rTeam.RubyWithDevKit.3.3.locale.en-US.yaml | 46 ++++++++++++++++ ...rTeam.RubyWithDevKit.3.3.locale.zh-CN.yaml | 16 ++++++ .../RubyInstallerTeam.RubyWithDevKit.3.3.yaml | 8 +++ 4 files changed, 123 insertions(+) create mode 100644 manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.installer.yaml create mode 100644 manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.locale.en-US.yaml create mode 100644 manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.locale.zh-CN.yaml create mode 100644 manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.yaml diff --git a/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.installer.yaml b/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.installer.yaml new file mode 100644 index 000000000000..6e4cc6ba0f50 --- /dev/null +++ b/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.installer.yaml @@ -0,0 +1,53 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: RubyInstallerTeam.RubyWithDevKit.3.3 +PackageVersion: 3.3.11-1 +InstallerType: inno +UpgradeBehavior: install +Commands: +- ruby +- rubyw +FileExtensions: +- rb +- rbw +ReleaseDate: 2026-03-26 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-3.3.11-1/rubyinstaller-devkit-3.3.11-1-x86.exe + InstallerSha256: 5F1B67D9FF86E5C178C9137C0D9926345126AE93243A666D43F5523F63863A94 + InstallerSwitches: + Custom: /CURRENTUSER + ProductCode: RubyInstaller-3.3-i386-mingw32_is1 + AppsAndFeaturesEntries: + - DisplayName: Ruby 3.3.11-1-x86 +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-3.3.11-1/rubyinstaller-devkit-3.3.11-1-x86.exe + InstallerSha256: 5F1B67D9FF86E5C178C9137C0D9926345126AE93243A666D43F5523F63863A94 + InstallerSwitches: + Custom: /ALLUSERS + ProductCode: RubyInstaller-3.3-i386-mingw32_is1 + AppsAndFeaturesEntries: + - DisplayName: Ruby 3.3.11-1-x86 +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-3.3.11-1/rubyinstaller-devkit-3.3.11-1-x64.exe + InstallerSha256: 950FD8414178C000229D65943F3383F389E1F4778110687992CC7A06C3382E93 + InstallerSwitches: + Custom: /CURRENTUSER + ProductCode: RubyInstaller-3.3-x64-mingw-ucrt_is1 + AppsAndFeaturesEntries: + - DisplayName: Ruby 3.3.11-1-x64 +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-3.3.11-1/rubyinstaller-devkit-3.3.11-1-x64.exe + InstallerSha256: 950FD8414178C000229D65943F3383F389E1F4778110687992CC7A06C3382E93 + InstallerSwitches: + Custom: /ALLUSERS + ProductCode: RubyInstaller-3.3-x64-mingw-ucrt_is1 + AppsAndFeaturesEntries: + - DisplayName: Ruby 3.3.11-1-x64 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.locale.en-US.yaml b/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.locale.en-US.yaml new file mode 100644 index 000000000000..2e0527bead48 --- /dev/null +++ b/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.locale.en-US.yaml @@ -0,0 +1,46 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: RubyInstallerTeam.RubyWithDevKit.3.3 +PackageVersion: 3.3.11-1 +PackageLocale: en-US +Publisher: RubyInstaller Team +PublisherUrl: https://rubyinstaller.org/ +PublisherSupportUrl: https://github.com/oneclick/rubyinstaller2/issues +PackageName: Ruby 3.3 with MSYS2 +PackageUrl: https://rubyinstaller.org/downloads/ +License: BSD-3-Clause +LicenseUrl: https://github.com/oneclick/rubyinstaller2/blob/HEAD/LICENSE.txt +Copyright: Copyright (c) 2007-2026, RubyInstaller Team. All rights reserved. +ShortDescription: A Ruby language execution environment with a MSYS2 installation. +Description: The RubyInstaller project provides a self-contained Windows-based installer that includes a Ruby-language execution environment and a baseline set of required RubyGems and extensions, integrated with a MSYS2 installation. +Moniker: ruby3-3-devkit +Tags: +- language +- programming +- programming-language +- ruby +- ruby-with-devkit +ReleaseNotes: |- + Added + - Add the missing rdbg executable. #474 + - Add more color to ridk outputs. + Changed + - Update to ruby-3.3.11, see release notes. + - Shrink the 5 app icons to only one and add a subsequent console-based startmenu. + - Use msys2 headless installer in ridk install 1 and install into ruby's base directory. #459 + - Compact ENV display when running ridk enable. #470 + - Fix possible crash in ridk enable when searching the Windows registry. + - Fix detection of MSYS2 in a non-standard location. #445, #350 + - Extend c_rehash.rb helper script to update all three locations of SSL CA certificates #461 + - Preliminary support for MSYS2 environment clang64 . #471 + - Update links to point to the correct repository. #463 + - Update the SSL CA certificate list. + Removed + - Remove libgcc_s_seh-1.dll. It is no longer necessary. #467 +ReleaseNotesUrl: https://github.com/oneclick/rubyinstaller2/releases/tag/RubyInstaller-3.3.11-1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/oneclick/rubyinstaller2/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.locale.zh-CN.yaml b/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.locale.zh-CN.yaml new file mode 100644 index 000000000000..8daad00b2dea --- /dev/null +++ b/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.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: RubyInstallerTeam.RubyWithDevKit.3.3 +PackageVersion: 3.3.11-1 +PackageLocale: zh-CN +ShortDescription: Ruby 语言运行环境,配备 MSYS2。 +Description: RubyInstaller 项目提供一个独立的基于 Windows 的安装包,其中包含 Ruby 语言的运行环境,以及一组基本所需的 RubyGems 和扩展,并集成 MSYS2。 +Tags: +- ruby +- ruby-with-devkit +- 编程 +- 编程语言 +- 语言 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.yaml b/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.yaml new file mode 100644 index 000000000000..f3481c444e3a --- /dev/null +++ b/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.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: RubyInstallerTeam.RubyWithDevKit.3.3 +PackageVersion: 3.3.11-1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From ef6b90a2ba77a65f6fde4849d424e42852a03d52 Mon Sep 17 00:00:00 2001 From: Alejandro Borbolla <52978371+alejoborbo@users.noreply.github.com> Date: Fri, 27 Mar 2026 21:17:07 +0100 Subject: [PATCH 076/162] New version: alejoborbo.jj-spice 0.2.2 (#353034) Co-authored-by: goreleaserbot --- .../0.2.2/alejoborbo.jj-spice.installer.yaml | 18 ++++++++++++++++++ .../alejoborbo.jj-spice.locale.en-US.yaml | 13 +++++++++++++ .../jj-spice/0.2.2/alejoborbo.jj-spice.yaml | 7 +++++++ 3 files changed, 38 insertions(+) create mode 100644 manifests/a/alejoborbo/jj-spice/0.2.2/alejoborbo.jj-spice.installer.yaml create mode 100644 manifests/a/alejoborbo/jj-spice/0.2.2/alejoborbo.jj-spice.locale.en-US.yaml create mode 100644 manifests/a/alejoborbo/jj-spice/0.2.2/alejoborbo.jj-spice.yaml diff --git a/manifests/a/alejoborbo/jj-spice/0.2.2/alejoborbo.jj-spice.installer.yaml b/manifests/a/alejoborbo/jj-spice/0.2.2/alejoborbo.jj-spice.installer.yaml new file mode 100644 index 000000000000..0524e2e38875 --- /dev/null +++ b/manifests/a/alejoborbo/jj-spice/0.2.2/alejoborbo.jj-spice.installer.yaml @@ -0,0 +1,18 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: alejoborbo.jj-spice +PackageVersion: 0.2.2 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-03-27" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: jj-spice.exe + PortableCommandAlias: jj-spice + InstallerUrl: https://github.com/alejoborbo/jj-spice/releases/download/v0.2.2/jj-spice_0.2.2_windows_amd64.zip + InstallerSha256: 0d2bbdc03aa84081636cfb4e7784527d38ae5e1ec3697b71a51cce0bdb3ca6b0 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/alejoborbo/jj-spice/0.2.2/alejoborbo.jj-spice.locale.en-US.yaml b/manifests/a/alejoborbo/jj-spice/0.2.2/alejoborbo.jj-spice.locale.en-US.yaml new file mode 100644 index 000000000000..aedbfc582252 --- /dev/null +++ b/manifests/a/alejoborbo/jj-spice/0.2.2/alejoborbo.jj-spice.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: alejoborbo.jj-spice +PackageVersion: 0.2.2 +PackageLocale: en-US +Publisher: alejoborbo +PublisherUrl: https://github.com/alejoborbo/jj-spice +PackageName: jj-spice +License: Apache-2.0 +ShortDescription: Stacked change requests for Jujutsu VCS +Moniker: jj-spice +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/alejoborbo/jj-spice/0.2.2/alejoborbo.jj-spice.yaml b/manifests/a/alejoborbo/jj-spice/0.2.2/alejoborbo.jj-spice.yaml new file mode 100644 index 000000000000..83205aa1684b --- /dev/null +++ b/manifests/a/alejoborbo/jj-spice/0.2.2/alejoborbo.jj-spice.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: alejoborbo.jj-spice +PackageVersion: 0.2.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 1c512660fb2163566ee14aa0d3e784b0a251c5a7 Mon Sep 17 00:00:00 2001 From: UnownBot Date: Fri, 27 Mar 2026 16:18:02 -0400 Subject: [PATCH 077/162] New version: OpenWhisperSystems.Signal.Beta version 8.5.0-beta.2 (#353042) --- ...nWhisperSystems.Signal.Beta.installer.yaml | 19 ++++++++++++ ...isperSystems.Signal.Beta.locale.en-US.yaml | 31 +++++++++++++++++++ .../OpenWhisperSystems.Signal.Beta.yaml | 8 +++++ 3 files changed, 58 insertions(+) create mode 100644 manifests/o/OpenWhisperSystems/Signal/Beta/8.5.0-beta.2/OpenWhisperSystems.Signal.Beta.installer.yaml create mode 100644 manifests/o/OpenWhisperSystems/Signal/Beta/8.5.0-beta.2/OpenWhisperSystems.Signal.Beta.locale.en-US.yaml create mode 100644 manifests/o/OpenWhisperSystems/Signal/Beta/8.5.0-beta.2/OpenWhisperSystems.Signal.Beta.yaml diff --git a/manifests/o/OpenWhisperSystems/Signal/Beta/8.5.0-beta.2/OpenWhisperSystems.Signal.Beta.installer.yaml b/manifests/o/OpenWhisperSystems/Signal/Beta/8.5.0-beta.2/OpenWhisperSystems.Signal.Beta.installer.yaml new file mode 100644 index 000000000000..0b95f1629f80 --- /dev/null +++ b/manifests/o/OpenWhisperSystems/Signal/Beta/8.5.0-beta.2/OpenWhisperSystems.Signal.Beta.installer.yaml @@ -0,0 +1,19 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: OpenWhisperSystems.Signal.Beta +PackageVersion: 8.5.0-beta.2 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +ProductCode: b39ac3a0-cc73-5ec2-ba18-5ab3c4de1ca1 +ReleaseDate: 2026-03-27 +AppsAndFeaturesEntries: +- DisplayName: Signal Beta 8.5.0-beta.2 + ProductCode: b39ac3a0-cc73-5ec2-ba18-5ab3c4de1ca1 +Installers: +- Architecture: x64 + InstallerUrl: https://updates.signal.org/desktop/signal-desktop-beta-win-8.5.0-beta.2.exe + InstallerSha256: FE3FE392F7396B06024B69BE6DB5B909E4C7F0FEA9747D8F0CF691FF6C931233 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenWhisperSystems/Signal/Beta/8.5.0-beta.2/OpenWhisperSystems.Signal.Beta.locale.en-US.yaml b/manifests/o/OpenWhisperSystems/Signal/Beta/8.5.0-beta.2/OpenWhisperSystems.Signal.Beta.locale.en-US.yaml new file mode 100644 index 000000000000..a2b236784e41 --- /dev/null +++ b/manifests/o/OpenWhisperSystems/Signal/Beta/8.5.0-beta.2/OpenWhisperSystems.Signal.Beta.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: OpenWhisperSystems.Signal.Beta +PackageVersion: 8.5.0-beta.2 +PackageLocale: en-US +Publisher: Signal Messenger, LLC +PublisherUrl: https://www.signal.org/ +PublisherSupportUrl: https://github.com/signalapp/Signal-Desktop/issues +PrivacyUrl: https://www.signal.org/legal/#privacy-policy +Author: Signal Messenger, LLC +PackageName: Signal Beta +PackageUrl: https://www.signal.org/ +License: AGPL-3.0 +LicenseUrl: https://github.com/signalapp/Signal-Desktop/blob/HEAD/LICENSE +Copyright: © 2013–2026 Signal, a 501c3 nonprofit. +CopyrightUrl: https://www.signal.org/legal/#terms-of-service +ShortDescription: Private messaging from your desktop. Beta Desktop Client. +Tags: +- beta +- chat +- cross-platform +- encryption +- foss +- messaging +- open-source +- privacy +- security +- texting +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenWhisperSystems/Signal/Beta/8.5.0-beta.2/OpenWhisperSystems.Signal.Beta.yaml b/manifests/o/OpenWhisperSystems/Signal/Beta/8.5.0-beta.2/OpenWhisperSystems.Signal.Beta.yaml new file mode 100644 index 000000000000..a9e3be1329bd --- /dev/null +++ b/manifests/o/OpenWhisperSystems/Signal/Beta/8.5.0-beta.2/OpenWhisperSystems.Signal.Beta.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: OpenWhisperSystems.Signal.Beta +PackageVersion: 8.5.0-beta.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 2636c7fcead3e87f1882ed6bbe8c767e6608613c Mon Sep 17 00:00:00 2001 From: peterandree Date: Fri, 27 Mar 2026 21:18:23 +0100 Subject: [PATCH 078/162] New package: peterandree.BTChargeTrayWatcher version 1.0.0.0 (#352291) --- ...eterandree.BTChargeTrayWatcher.installer.yaml | 13 +++++++++++++ ...randree.BTChargeTrayWatcher.locale.en-US.yaml | 16 ++++++++++++++++ .../1.0.0.0/peterandree.BTChargeTrayWatcher.yaml | 8 ++++++++ 3 files changed, 37 insertions(+) create mode 100644 manifests/p/peterandree/BTChargeTrayWatcher/1.0.0.0/peterandree.BTChargeTrayWatcher.installer.yaml create mode 100644 manifests/p/peterandree/BTChargeTrayWatcher/1.0.0.0/peterandree.BTChargeTrayWatcher.locale.en-US.yaml create mode 100644 manifests/p/peterandree/BTChargeTrayWatcher/1.0.0.0/peterandree.BTChargeTrayWatcher.yaml diff --git a/manifests/p/peterandree/BTChargeTrayWatcher/1.0.0.0/peterandree.BTChargeTrayWatcher.installer.yaml b/manifests/p/peterandree/BTChargeTrayWatcher/1.0.0.0/peterandree.BTChargeTrayWatcher.installer.yaml new file mode 100644 index 000000000000..c71bc9ab4778 --- /dev/null +++ b/manifests/p/peterandree/BTChargeTrayWatcher/1.0.0.0/peterandree.BTChargeTrayWatcher.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: peterandree.BTChargeTrayWatcher +PackageVersion: 1.0.0.0 +InstallerType: portable +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/peterandree/BTChargeTrayWatcher/releases/download/v1.0.0/BTChargeTrayWatcher.exe + InstallerSha256: AA669F014CDD9A0FF742888E4E582700573F6E2909195B0AF5B262F8C23432A8 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-25 diff --git a/manifests/p/peterandree/BTChargeTrayWatcher/1.0.0.0/peterandree.BTChargeTrayWatcher.locale.en-US.yaml b/manifests/p/peterandree/BTChargeTrayWatcher/1.0.0.0/peterandree.BTChargeTrayWatcher.locale.en-US.yaml new file mode 100644 index 000000000000..ed34bc545664 --- /dev/null +++ b/manifests/p/peterandree/BTChargeTrayWatcher/1.0.0.0/peterandree.BTChargeTrayWatcher.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: peterandree.BTChargeTrayWatcher +PackageVersion: 1.0.0.0 +PackageLocale: en-US +Publisher: peterandree +PublisherUrl: https://github.com/peterandree +PublisherSupportUrl: https://github.com/peterandree/BTChargeTrayWatcher/issues +PackageName: BTChargeTrayWatcher +PackageUrl: https://github.com/peterandree/BTChargeTrayWatcher +License: MIT +ShortDescription: Windows tray app that monitors laptop and Bluetooth device batteries and alerts on configurable tresholds. Keeps your batteries alive longer! +ReleaseNotesUrl: https://github.com/peterandree/BTChargeTrayWatcher/releases/tag/v1.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/peterandree/BTChargeTrayWatcher/1.0.0.0/peterandree.BTChargeTrayWatcher.yaml b/manifests/p/peterandree/BTChargeTrayWatcher/1.0.0.0/peterandree.BTChargeTrayWatcher.yaml new file mode 100644 index 000000000000..10f608ba0a92 --- /dev/null +++ b/manifests/p/peterandree/BTChargeTrayWatcher/1.0.0.0/peterandree.BTChargeTrayWatcher.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: peterandree.BTChargeTrayWatcher +PackageVersion: 1.0.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 93a920ac149390d2bf1224870df645762fe10c6c Mon Sep 17 00:00:00 2001 From: leic4u <32786903+leic4u@users.noreply.github.com> Date: Sat, 28 Mar 2026 04:19:04 +0800 Subject: [PATCH 079/162] Fix InstallerSwitches error (#353045) --- .../LeiGod/LeiGodAcc/11.3.1.5/LeiGod.LeiGodAcc.installer.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/l/LeiGod/LeiGodAcc/11.3.1.5/LeiGod.LeiGodAcc.installer.yaml b/manifests/l/LeiGod/LeiGodAcc/11.3.1.5/LeiGod.LeiGodAcc.installer.yaml index dbefb33b3009..98098bc97034 100644 --- a/manifests/l/LeiGod/LeiGodAcc/11.3.1.5/LeiGod.LeiGodAcc.installer.yaml +++ b/manifests/l/LeiGod/LeiGodAcc/11.3.1.5/LeiGod.LeiGodAcc.installer.yaml @@ -9,8 +9,8 @@ InstallModes: - silent - silentWithProgress InstallerSwitches: - Silent: /S - SilentWithProgress: /S + Silent: /VERYSILENT + SilentWithProgress: /VERYSILENT UpgradeBehavior: install ReleaseDate: 2026-03-27 Installers: From a21242fdc0d1713cfad6d16e7e46a1d5346b365f Mon Sep 17 00:00:00 2001 From: leic4u <32786903+leic4u@users.noreply.github.com> Date: Sat, 28 Mar 2026 04:22:35 +0800 Subject: [PATCH 080/162] New package: Axure.AxureRP.9 version 9.0.0.3754 (#351712) --- .../9.0.0.3754/Axure.AxureRP.9.installer.yaml | 19 ++++++++++++++++ .../Axure.AxureRP.9.locale.en-US.yaml | 22 +++++++++++++++++++ .../AxureRP/9/9.0.0.3754/Axure.AxureRP.9.yaml | 8 +++++++ 3 files changed, 49 insertions(+) create mode 100644 manifests/a/Axure/AxureRP/9/9.0.0.3754/Axure.AxureRP.9.installer.yaml create mode 100644 manifests/a/Axure/AxureRP/9/9.0.0.3754/Axure.AxureRP.9.locale.en-US.yaml create mode 100644 manifests/a/Axure/AxureRP/9/9.0.0.3754/Axure.AxureRP.9.yaml diff --git a/manifests/a/Axure/AxureRP/9/9.0.0.3754/Axure.AxureRP.9.installer.yaml b/manifests/a/Axure/AxureRP/9/9.0.0.3754/Axure.AxureRP.9.installer.yaml new file mode 100644 index 000000000000..cb73a9a8eaf0 --- /dev/null +++ b/manifests/a/Axure/AxureRP/9/9.0.0.3754/Axure.AxureRP.9.installer.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Axure.AxureRP.9 +PackageVersion: 9.0.0.3754 +InstallerType: burn +Scope: machine +UpgradeBehavior: install +ReleaseDate: 2025-07-25 +AppsAndFeaturesEntries: +- ProductCode: '{f2447192-e0e7-4ee7-ab62-e63318f7e4b2}' + UpgradeCode: '{EABC6083-8DE4-46B4-89A7-EE2D3A4552B2}' + InstallerType: burn +Installers: +- Architecture: x86 + InstallerUrl: https://axure.cachefly.net/versions/9-0/AxureRP-Setup-3754.exe + InstallerSha256: D41BCB6F8A23C85E657E1EEC3218241D890DFA15A63BE3B7858C93D0B7515FCD +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/Axure/AxureRP/9/9.0.0.3754/Axure.AxureRP.9.locale.en-US.yaml b/manifests/a/Axure/AxureRP/9/9.0.0.3754/Axure.AxureRP.9.locale.en-US.yaml new file mode 100644 index 000000000000..56285647f010 --- /dev/null +++ b/manifests/a/Axure/AxureRP/9/9.0.0.3754/Axure.AxureRP.9.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Axure.AxureRP.9 +PackageVersion: 9.0.0.3754 +PackageLocale: en-US +Publisher: Axure Software Solutions, Inc. +PublisherUrl: https://www.axure.com/ +PublisherSupportUrl: https://www.axure.com/support +Author: Axure Software Solutions, Inc. +PackageName: Axure RP 9 +PackageUrl: https://www.axure.com/release-history/rp9 +License: Proprietary +LicenseUrl: https://www.axure.com/license +Copyright: Copyright (c) Axure Software Solutions, Inc.. All rights reserved. +CopyrightUrl: https://www.axure.com/patents +ShortDescription: Axure RP is the only UX tool that gives UX professionals the power to build realistic, functional prototypes. +Tags: +- prototypes +ReleaseNotesUrl: https://www.axure.com/changelog +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Axure/AxureRP/9/9.0.0.3754/Axure.AxureRP.9.yaml b/manifests/a/Axure/AxureRP/9/9.0.0.3754/Axure.AxureRP.9.yaml new file mode 100644 index 000000000000..7129b8e0ba22 --- /dev/null +++ b/manifests/a/Axure/AxureRP/9/9.0.0.3754/Axure.AxureRP.9.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: Axure.AxureRP.9 +PackageVersion: 9.0.0.3754 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 60e24b28ffa9531e32e32a1e6c7d8f93c009034c Mon Sep 17 00:00:00 2001 From: Lupey Date: Fri, 27 Mar 2026 15:29:57 -0500 Subject: [PATCH 081/162] New package: lupeydev.cgedownload version 1.0.0.0 (#351775) --- .../1.0.0.0/lupeydev.cgedownload.installer.yaml | 14 ++++++++++++++ .../1.0.0.0/lupeydev.cgedownload.locale.en-US.yaml | 12 ++++++++++++ .../cgedownload/1.0.0.0/lupeydev.cgedownload.yaml | 8 ++++++++ 3 files changed, 34 insertions(+) create mode 100644 manifests/l/lupeydev/cgedownload/1.0.0.0/lupeydev.cgedownload.installer.yaml create mode 100644 manifests/l/lupeydev/cgedownload/1.0.0.0/lupeydev.cgedownload.locale.en-US.yaml create mode 100644 manifests/l/lupeydev/cgedownload/1.0.0.0/lupeydev.cgedownload.yaml diff --git a/manifests/l/lupeydev/cgedownload/1.0.0.0/lupeydev.cgedownload.installer.yaml b/manifests/l/lupeydev/cgedownload/1.0.0.0/lupeydev.cgedownload.installer.yaml new file mode 100644 index 000000000000..b5d0c64a0406 --- /dev/null +++ b/manifests/l/lupeydev/cgedownload/1.0.0.0/lupeydev.cgedownload.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: lupeydev.cgedownload +PackageVersion: 1.0.0.0 +InstallerType: portable +Commands: +- cge-download +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Lupeydev/cge-ripper/releases/download/Main/cge-download.exe + InstallerSha256: 71D0F109D4E9493223C50AA6A65FC3311F1EC520DDF701A57CCA0935AE6C348D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/lupeydev/cgedownload/1.0.0.0/lupeydev.cgedownload.locale.en-US.yaml b/manifests/l/lupeydev/cgedownload/1.0.0.0/lupeydev.cgedownload.locale.en-US.yaml new file mode 100644 index 000000000000..c09e17a52149 --- /dev/null +++ b/manifests/l/lupeydev/cgedownload/1.0.0.0/lupeydev.cgedownload.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: lupeydev.cgedownload +PackageVersion: 1.0.0.0 +PackageLocale: en-US +Publisher: lupeydev +PackageName: cgedownload +License: GPL-3.0 +ShortDescription: cge downloader for cge-193 interloper arg by anomidae +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/lupeydev/cgedownload/1.0.0.0/lupeydev.cgedownload.yaml b/manifests/l/lupeydev/cgedownload/1.0.0.0/lupeydev.cgedownload.yaml new file mode 100644 index 000000000000..4977e3012016 --- /dev/null +++ b/manifests/l/lupeydev/cgedownload/1.0.0.0/lupeydev.cgedownload.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: lupeydev.cgedownload +PackageVersion: 1.0.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From a593b7aecf3435ff612cf01e8524f9a212ff8ee1 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 04:50:36 +0800 Subject: [PATCH 082/162] New version: SST.opencode version 1.3.3 (#352637) --- .../1.3.3/SST.opencode.installer.yaml | 21 +++++++ .../1.3.3/SST.opencode.locale.en-US.yaml | 57 +++++++++++++++++++ .../1.3.3/SST.opencode.locale.zh-CN.yaml | 25 ++++++++ .../s/SST/opencode/1.3.3/SST.opencode.yaml | 8 +++ 4 files changed, 111 insertions(+) create mode 100644 manifests/s/SST/opencode/1.3.3/SST.opencode.installer.yaml create mode 100644 manifests/s/SST/opencode/1.3.3/SST.opencode.locale.en-US.yaml create mode 100644 manifests/s/SST/opencode/1.3.3/SST.opencode.locale.zh-CN.yaml create mode 100644 manifests/s/SST/opencode/1.3.3/SST.opencode.yaml diff --git a/manifests/s/SST/opencode/1.3.3/SST.opencode.installer.yaml b/manifests/s/SST/opencode/1.3.3/SST.opencode.installer.yaml new file mode 100644 index 000000000000..e134ef78b322 --- /dev/null +++ b/manifests/s/SST/opencode/1.3.3/SST.opencode.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: SST.opencode +PackageVersion: 1.3.3 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: opencode.exe +Commands: +- opencode +ReleaseDate: 2026-03-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/anomalyco/opencode/releases/download/v1.3.3/opencode-windows-x64.zip + InstallerSha256: B3E8ADC6A166DB35FB32F9502152622979D9C9104F8A36421578D9EFF2E0DF6B +- Architecture: arm64 + InstallerUrl: https://github.com/anomalyco/opencode/releases/download/v1.3.3/opencode-windows-arm64.zip + InstallerSha256: C3963AA559D1A6CF08388CF525015832DD208DAE7E7AF3A9F468528A885398BB +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/opencode/1.3.3/SST.opencode.locale.en-US.yaml b/manifests/s/SST/opencode/1.3.3/SST.opencode.locale.en-US.yaml new file mode 100644 index 000000000000..42f7dbc790bf --- /dev/null +++ b/manifests/s/SST/opencode/1.3.3/SST.opencode.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: SST.opencode +PackageVersion: 1.3.3 +PackageLocale: en-US +Publisher: SST +PublisherUrl: https://sst.dev/ +PublisherSupportUrl: https://github.com/sst/opencode/issues +PackageName: opencode +PackageUrl: https://opencode.ai/ +License: MIT +LicenseUrl: https://github.com/sst/opencode/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 opencode +ShortDescription: The AI coding agent built for the terminal. +Description: |- + opencode is an AI coding agent built for the terminal. It features: + - A responsive, native, themeable terminal UI. + - Automatically loads the right LSPs, so the LLMs make fewer mistakes. + - Have multiple agents working in parallel on the same project. + - Create shareable links to any session for reference or to debug. + - Log in with Anthropic to use your Claude Pro or Claude Max account. + - Supports 75+ LLM providers through Models.dev, including local models. +Tags: +- ai +- code +- coding +- develop +- development +- programming +ReleaseNotes: |- + TUI + - Bypass local SSE event streaming in worker for improved performance (#19183) + - Fix image paste support on Windows Terminal 1.25+ with kitty keyboard enabled (#17674) + Desktop + - Embed WebUI directly in the binary with configurable proxy flags (#19299) + - Fix agent normalization in desktop app (#19169) + - Fix project switch flickering when using keybinds by pre-warming globalSync state (#19088) + - Move message navigation from cmd+arrow to cmd+opt+[ / cmd+opt+] to preserve native cursor movement (#18728) + - Add createDirectory option to directory picker in Electron app (#19071) + - Remove .json extension from electron-store for seamless Tauri to Electron migration (#19082) + Core + - Initial implementation of event-sourced syncing system for session data (#17814) + - Fix enterprise URL not being set properly during authentication flow (#19212) + - Classify ZlibError from Bun fetch as retryable instead of unknown error (#19104) + - Skip snapshotting files larger than 2MB to improve performance (#19043) + - Respect agent permission configuration for todowrite tool (#19125) + - Fix DWS workflow tools being silently cancelled due to missing tool approval support (#19185) + - Fix MCP servers disappearing after transient errors and improve OAuth handling (#19042) + Misc + - Revert git-backed review modes to restore compatibility with older CLI builds (#19295) +ReleaseNotesUrl: https://github.com/anomalyco/opencode/releases/tag/v1.3.3 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://opencode.ai/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/opencode/1.3.3/SST.opencode.locale.zh-CN.yaml b/manifests/s/SST/opencode/1.3.3/SST.opencode.locale.zh-CN.yaml new file mode 100644 index 000000000000..a543e8d4bbb7 --- /dev/null +++ b/manifests/s/SST/opencode/1.3.3/SST.opencode.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: SST.opencode +PackageVersion: 1.3.3 +PackageLocale: zh-CN +ShortDescription: 专为终端打造的 AI 编程助手 +Description: |- + opencode 是一款专为终端打造的 AI 编程助手,具备以下特性: + - 响应式、原生、可主题定制的终端界面 + - 自动加载正确的 LSP,减少 LLM 的错误率 + - 支持多个智能体并行处理同一项目 + - 可为任何会话生成可分享链接,便于参考或调试 + - 支持通过 Anthropic 登录使用 Claude Pro 或 Claude Max 账户 + - 通过 Models.dev 集成 75+ 个 LLM 服务提供商,包括本地模型 +Tags: +- ai +- 代码 +- 开发 +- 编程 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://opencode.ai/docs/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/opencode/1.3.3/SST.opencode.yaml b/manifests/s/SST/opencode/1.3.3/SST.opencode.yaml new file mode 100644 index 000000000000..fded48cadf40 --- /dev/null +++ b/manifests/s/SST/opencode/1.3.3/SST.opencode.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: SST.opencode +PackageVersion: 1.3.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 43568f51a24a59b339c5deaed63cde7ea25d5672 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 04:52:06 +0800 Subject: [PATCH 083/162] New version: JetBrains.Gateway version 2026.1 (#352987) --- .../2026.1/JetBrains.Gateway.installer.yaml | 36 ++++++++++++++++++ .../JetBrains.Gateway.locale.en-US.yaml | 37 +++++++++++++++++++ .../JetBrains.Gateway.locale.zh-CN.yaml | 22 +++++++++++ .../Gateway/2026.1/JetBrains.Gateway.yaml | 8 ++++ 4 files changed, 103 insertions(+) create mode 100644 manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.installer.yaml create mode 100644 manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.locale.en-US.yaml create mode 100644 manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.locale.zh-CN.yaml create mode 100644 manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.yaml diff --git a/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.installer.yaml b/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.installer.yaml new file mode 100644 index 000000000000..8e9792cbd438 --- /dev/null +++ b/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.installer.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: JetBrains.Gateway +PackageVersion: "2026.1" +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +Protocols: +- jetbrains-gateway +ProductCode: JetBrains Gateway 2026.1 +ReleaseDate: 2026-03-27 +AppsAndFeaturesEntries: +- DisplayVersion: 261.22158.290 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2026.1.exe + InstallerSha256: D53068F535003C083F592C0B0B801D34A184BD1F7C23E4527DAB82688F7D6F3B +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2026.1.exe + InstallerSha256: D53068F535003C083F592C0B0B801D34A184BD1F7C23E4527DAB82688F7D6F3B + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2026.1-aarch64.exe + InstallerSha256: EFFC8C680EE41ED4CD35F5C4A27B14869F20E0711E262C61DADB338DE5F4DDD9 +- Architecture: arm64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2026.1-aarch64.exe + InstallerSha256: EFFC8C680EE41ED4CD35F5C4A27B14869F20E0711E262C61DADB338DE5F4DDD9 + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.locale.en-US.yaml b/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.locale.en-US.yaml new file mode 100644 index 000000000000..cda164ddfb03 --- /dev/null +++ b/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: JetBrains.Gateway +PackageVersion: "2026.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 Gateway +PackageUrl: https://www.jetbrains.com/remote-development/gateway/ +License: Proprietary +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2026 JetBrains s.r.o. +ShortDescription: Your single entry point to all remote development environments +Moniker: jetbrains-gateway +Tags: +- gateway +- jetbrains +- remote +- remotedev +- ssh +ReleaseNotes: |- + The Gateway 2026.1 is out. What's New in Remote Development 2026.1: + - The Code With Me plugin is now unbundled. + - The plugin manager features various improvements, including new installation and uninstallation options in the context menu, clearer visibility into the state and location of installed plugins, and a smoother plugin installation flow. + - Issues related to the Undo and Mark Modified actions have been fixed. + - Several UI improvements related to Lux technology have been implemented. + - The run configuration UI has been improved, resolving issues with infinite loading and ensuring configuration names display correctly. + - Additional fixes address minor issues with the Search Everywhere window, error highlighting, the Commit window UI, and UI freezes. +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://www.jetbrains.com/help/idea/remote-development-a.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.locale.zh-CN.yaml b/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.locale.zh-CN.yaml new file mode 100644 index 000000000000..cdbf13074d19 --- /dev/null +++ b/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.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: JetBrains.Gateway +PackageVersion: "2026.1" +PackageLocale: zh-CN +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PackageUrl: https://www.jetbrains.com/zh-cn/remote-development/gateway/ +License: 专有软件 +ShortDescription: 所有远程开发环境的单一入口点 +Tags: +- gateway +- jetbrains +- ssh +- 远程 +- 远程开发 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://www.jetbrains.com/help/idea/remote-development-a.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.yaml b/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.yaml new file mode 100644 index 000000000000..ef8128393088 --- /dev/null +++ b/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.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.Gateway +PackageVersion: "2026.1" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From cfc015b22b8fcd26037d9b948d6f43bc5848f441 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 04:53:18 +0800 Subject: [PATCH 084/162] New version: Discord.Discord.Canary version 1.0.885 (#353052) --- .../Discord.Discord.Canary.installer.yaml | 20 +++++++++++ .../Discord.Discord.Canary.locale.en-US.yaml | 33 +++++++++++++++++++ .../Discord.Discord.Canary.locale.zh-CN.yaml | 29 ++++++++++++++++ .../1.0.885/Discord.Discord.Canary.yaml | 8 +++++ 4 files changed, 90 insertions(+) create mode 100644 manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.installer.yaml create mode 100644 manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.locale.en-US.yaml create mode 100644 manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.locale.zh-CN.yaml create mode 100644 manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.yaml diff --git a/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.installer.yaml b/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.installer.yaml new file mode 100644 index 000000000000..df4fd471b928 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.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: Discord.Discord.Canary +PackageVersion: 1.0.885 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Protocols: +- discord +ProductCode: DiscordCanary +Installers: +- Architecture: x64 + InstallerUrl: https://canary.dl2.discordapp.net/distro/app/canary/win/x64/1.0.885/DiscordCanarySetup.exe + InstallerSha256: 0700557DDE9AFEB51EA36EEC7EB30520073E229F5FF07A3A93B155A86E430810 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.locale.en-US.yaml new file mode 100644 index 000000000000..e674f447c675 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.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: Discord.Discord.Canary +PackageVersion: 1.0.885 +PackageLocale: en-US +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Canary +PackageUrl: https://discord.com/download +License: Proprietary +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2026 Discord Inc. All rights reserved. +ShortDescription: Your Place to Talk and Hang Out +Description: |- + Discord is the easiest way to talk over voice, video, and text. + Talk, chat, hang out, and stay close with your friends and communities. +Moniker: discord-canary +Tags: +- chat +- community +- gaming +- hang-out +- talk +- video +- voice +- voice-chat +PurchaseUrl: https://discord.com/nitro +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.locale.zh-CN.yaml new file mode 100644 index 000000000000..d16226a34122 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.885 +PackageLocale: zh-CN +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Canary +PackageUrl: https://discord.com/download +License: 专有软件 +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2026 Discord Inc. All rights reserved. +ShortDescription: 玩耍聊天的地方 +Description: |- + Discord 是最简单易用的通讯工具,兼具语音、视频以及文字信息功能。 + 您可以聊聊天,拉拉家常,一起玩耍,与好友和社区保持紧密联系。 +Tags: +- 开黑 +- 游戏 +- 聊天 +- 语音 +- 语音聊天 +PurchaseUrl: https://discord.com/nitro +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.yaml b/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.yaml new file mode 100644 index 000000000000..a31d9cfd2238 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.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: Discord.Discord.Canary +PackageVersion: 1.0.885 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From d3453a79f87ef4fad8db6e8a82596839b1ea6291 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 04:54:55 +0800 Subject: [PATCH 085/162] New version: OpenDataLab.MinerU version 0.13.1 (#353056) --- .../0.13.1/OpenDataLab.MinerU.installer.yaml | 40 +++++++++++++++++++ .../OpenDataLab.MinerU.locale.en-US.yaml | 29 ++++++++++++++ .../OpenDataLab.MinerU.locale.zh-CN.yaml | 25 ++++++++++++ .../MinerU/0.13.1/OpenDataLab.MinerU.yaml | 8 ++++ 4 files changed, 102 insertions(+) create mode 100644 manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.installer.yaml create mode 100644 manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.locale.en-US.yaml create mode 100644 manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.locale.zh-CN.yaml create mode 100644 manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.yaml diff --git a/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.installer.yaml b/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.installer.yaml new file mode 100644 index 000000000000..aa6b6edb19a0 --- /dev/null +++ b/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.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: OpenDataLab.MinerU +PackageVersion: 0.13.1 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- mineru_client +ProductCode: f8941786-352c-5c22-bea5-7886c3ac4a8f +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://webpub.shlab.tech/MinerU/latest/win/MinerU-0.13.1-setup.exe + InstallerSha256: 43E133551F9D4057EF7D5B05CE6FF06B6A04BFC1AD5F55CEF6B39304DE7B7073 + InstallerSwitches: + Custom: /currentuser +- Architecture: x86 + Scope: machine + InstallerUrl: https://webpub.shlab.tech/MinerU/latest/win/MinerU-0.13.1-setup.exe + InstallerSha256: 43E133551F9D4057EF7D5B05CE6FF06B6A04BFC1AD5F55CEF6B39304DE7B7073 + InstallerSwitches: + Custom: /allusers +- Architecture: x64 + Scope: user + InstallerUrl: https://webpub.shlab.tech/MinerU/latest/win/MinerU-0.13.1-setup.exe + InstallerSha256: 43E133551F9D4057EF7D5B05CE6FF06B6A04BFC1AD5F55CEF6B39304DE7B7073 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://webpub.shlab.tech/MinerU/latest/win/MinerU-0.13.1-setup.exe + InstallerSha256: 43E133551F9D4057EF7D5B05CE6FF06B6A04BFC1AD5F55CEF6B39304DE7B7073 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.locale.en-US.yaml b/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.locale.en-US.yaml new file mode 100644 index 000000000000..1b46785e858c --- /dev/null +++ b/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: OpenDataLab.MinerU +PackageVersion: 0.13.1 +PackageLocale: en-US +Publisher: opendatalab.com +PublisherUrl: https://opendatalab.com/ +PrivacyUrl: https://webpub.shlab.tech/dps/opendatalab-web/odl_v5.1690/privacy.html +Author: Shanghai Artificial Intelligence Laboratory +PackageName: MinerU +PackageUrl: https://mineru.net/ +License: Proprietary +LicenseUrl: https://webpub.shlab.tech/dps/opendatalab-web/odl_v5.1690/service.html +Copyright: © 2026 MinerU. All Rights Reserved. +CopyrightUrl: https://webpub.shlab.tech/dps/opendatalab-web/odl_v5.1690/service.html +ShortDescription: Document Extraction/Conversion Tool for the AI Era +Description: Intelligent parsing of various documents including PDF, Word, PPT, etc., applicable for machine learning, large model corpus production, RAG and other scenarios +Tags: +- docs +- document +- extract +- extraction +- extractor +- pdf +- recognition +- recognize +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.locale.zh-CN.yaml b/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.locale.zh-CN.yaml new file mode 100644 index 000000000000..f083fd96ad9e --- /dev/null +++ b/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.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: OpenDataLab.MinerU +PackageVersion: 0.13.1 +PackageLocale: zh-CN +Publisher: opendatalab.com +PublisherUrl: https://opendatalab.com/ +PrivacyUrl: https://webpub.shlab.tech/dps/opendatalab-web/odl_v5.1690/privacy.html +Author: 上海人工智能实验室 +PackageName: MinerU +PackageUrl: https://mineru.net/ +License: 专有软件 +LicenseUrl: https://webpub.shlab.tech/dps/opendatalab-web/odl_v5.1690/service.html +Copyright: © 2026 MinerU. All Rights Reserved. +CopyrightUrl: https://webpub.shlab.tech/dps/opendatalab-web/odl_v5.1690/service.html +ShortDescription: 大模型时代的文档提取/转换神器 +Description: 支持 PDF、Word、PPT 等多种文档的智能解析,可用于机器学习、大模型语料生产、RAG 等场景 +Tags: +- pdf +- 提取 +- 文档 +- 识别 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.yaml b/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.yaml new file mode 100644 index 000000000000..53162c2c1329 --- /dev/null +++ b/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.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: OpenDataLab.MinerU +PackageVersion: 0.13.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From aa064e3ae2aafcee947725daec614e3ae0dc4f29 Mon Sep 17 00:00:00 2001 From: UnownBot Date: Fri, 27 Mar 2026 16:56:28 -0400 Subject: [PATCH 086/162] New version: SatoshiLabs.trezor-suite version 26.3.3 (#353057) --- .../SatoshiLabs.trezor-suite.installer.yaml | 26 +++++++++++++ ...SatoshiLabs.trezor-suite.locale.en-US.yaml | 38 +++++++++++++++++++ .../26.3.3/SatoshiLabs.trezor-suite.yaml | 8 ++++ 3 files changed, 72 insertions(+) create mode 100644 manifests/s/SatoshiLabs/trezor-suite/26.3.3/SatoshiLabs.trezor-suite.installer.yaml create mode 100644 manifests/s/SatoshiLabs/trezor-suite/26.3.3/SatoshiLabs.trezor-suite.locale.en-US.yaml create mode 100644 manifests/s/SatoshiLabs/trezor-suite/26.3.3/SatoshiLabs.trezor-suite.yaml diff --git a/manifests/s/SatoshiLabs/trezor-suite/26.3.3/SatoshiLabs.trezor-suite.installer.yaml b/manifests/s/SatoshiLabs/trezor-suite/26.3.3/SatoshiLabs.trezor-suite.installer.yaml new file mode 100644 index 000000000000..505ed9ffb211 --- /dev/null +++ b/manifests/s/SatoshiLabs/trezor-suite/26.3.3/SatoshiLabs.trezor-suite.installer.yaml @@ -0,0 +1,26 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: SatoshiLabs.trezor-suite +PackageVersion: 26.3.3 +InstallerType: nullsoft +ProductCode: 978be57b-9286-5cd7-a60b-54c81352a986 +ReleaseDate: 2026-03-26 +AppsAndFeaturesEntries: +- DisplayName: Trezor Suite 26.3.3 + ProductCode: 978be57b-9286-5cd7-a60b-54c81352a986 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/trezor/trezor-suite/releases/download/v26.3.3/Trezor-Suite-26.3.3-win-x64.exe + InstallerSha256: 3151CA32874CB12888DE12B0F6E9DAE5AA380E2484555ACE6E54D33E709CCEEC + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/trezor/trezor-suite/releases/download/v26.3.3/Trezor-Suite-26.3.3-win-x64.exe + InstallerSha256: 3151CA32874CB12888DE12B0F6E9DAE5AA380E2484555ACE6E54D33E709CCEEC + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/SatoshiLabs/trezor-suite/26.3.3/SatoshiLabs.trezor-suite.locale.en-US.yaml b/manifests/s/SatoshiLabs/trezor-suite/26.3.3/SatoshiLabs.trezor-suite.locale.en-US.yaml new file mode 100644 index 000000000000..aa29e5a888f9 --- /dev/null +++ b/manifests/s/SatoshiLabs/trezor-suite/26.3.3/SatoshiLabs.trezor-suite.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: SatoshiLabs.trezor-suite +PackageVersion: 26.3.3 +PackageLocale: en-US +Publisher: SatoshiLabs +PublisherUrl: https://github.com/trezor +PublisherSupportUrl: https://github.com/trezor/trezor-suite/issues +Author: trezor +PackageName: Trezor Suite +PackageUrl: https://github.com/trezor/trezor-suite +License: TREZOR REFERENCE SOURCE LICENSE (T-RSL) +LicenseUrl: https://github.com/trezor/trezor-suite/blob/HEAD/LICENSE.md +ShortDescription: Trezor Suite desktop application +Tags: +- bitcoin +- electron +- suite +- trezor +- wallet +ReleaseNotes: |- + 🎨 Improvements + - Solana account data inconsistencies have been resolved, ensuring more accurate account information and balances. + - Cardano staking has been enhanced. Users can now update their delegation preferences directly within the staking interface. + - Decentralized exchanges (DEXs) are now highlighted at the top of the comparison page, helping you more easily discover non-custodial trading options. + - The country picker has been refined for a smoother and more intuitive selection experience. U.S. users can now also select their state. + - The trading flow with BTC Direct has been simplified for a more streamlined experience. + + 🔧 Bug fixes + - Fixed transaction simulation in Connect Popup for EVM transactions requiring higher than default gas limit. + - Minor issues have been resolved, along with general usability improvements for a more stable and seamless experience. +ReleaseNotesUrl: https://github.com/trezor/trezor-suite/releases/tag/v26.3.3 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/trezor/trezor-suite/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SatoshiLabs/trezor-suite/26.3.3/SatoshiLabs.trezor-suite.yaml b/manifests/s/SatoshiLabs/trezor-suite/26.3.3/SatoshiLabs.trezor-suite.yaml new file mode 100644 index 000000000000..00d51b820154 --- /dev/null +++ b/manifests/s/SatoshiLabs/trezor-suite/26.3.3/SatoshiLabs.trezor-suite.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: SatoshiLabs.trezor-suite +PackageVersion: 26.3.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 2e1d845f3eef739b95c8f8d9a33dc1614976174c Mon Sep 17 00:00:00 2001 From: EriusCalrissian <131411787+EriusCalrissian@users.noreply.github.com> Date: Fri, 27 Mar 2026 22:15:56 +0100 Subject: [PATCH 087/162] New package: qarmin.krokiet version 11.0.1 (#349094) --- .../11.0.1/qarmin.krokiet.installer.yaml | 19 ++++++++++ .../11.0.1/qarmin.krokiet.locale.en-US.yaml | 37 +++++++++++++++++++ .../qarmin/krokiet/11.0.1/qarmin.krokiet.yaml | 8 ++++ 3 files changed, 64 insertions(+) create mode 100644 manifests/q/qarmin/krokiet/11.0.1/qarmin.krokiet.installer.yaml create mode 100644 manifests/q/qarmin/krokiet/11.0.1/qarmin.krokiet.locale.en-US.yaml create mode 100644 manifests/q/qarmin/krokiet/11.0.1/qarmin.krokiet.yaml diff --git a/manifests/q/qarmin/krokiet/11.0.1/qarmin.krokiet.installer.yaml b/manifests/q/qarmin/krokiet/11.0.1/qarmin.krokiet.installer.yaml new file mode 100644 index 000000000000..c2f762587452 --- /dev/null +++ b/manifests/q/qarmin/krokiet/11.0.1/qarmin.krokiet.installer.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: qarmin.krokiet +PackageVersion: 11.0.1 +InstallerType: portable +UpgradeBehavior: uninstallPrevious +Commands: +- krokiet +ReleaseDate: 2026-02-21 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/qarmin/czkawka/releases/download/11.0.1/windows_krokiet_on_windows_skia_opengl.exe + InstallerSha256: EBC085BC5012A93B01F120FADD65CD38EB39CA63776BC0212AAF3953A15A7899 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/q/qarmin/krokiet/11.0.1/qarmin.krokiet.locale.en-US.yaml b/manifests/q/qarmin/krokiet/11.0.1/qarmin.krokiet.locale.en-US.yaml new file mode 100644 index 000000000000..4a31a2994e63 --- /dev/null +++ b/manifests/q/qarmin/krokiet/11.0.1/qarmin.krokiet.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: qarmin.krokiet +PackageVersion: 11.0.1 +PackageLocale: en-US +Publisher: Rafał Mikrut +PublisherUrl: https://github.com/qarmin +PublisherSupportUrl: https://github.com/qarmin/czkawka/issues +Author: Rafał Mikrut +PackageName: Krokiet +PackageUrl: https://github.com/qarmin/czkawka +License: GPL-3.0 +Copyright: Copyright (c) 2020-2026 Rafał Mikrut +ShortDescription: Multi functional app to find duplicates, empty folders, similar images etc. +Moniker: krokiet +Tags: +- cleaner +- duplicates +- multiplatform +- optimization +- optimizer +- rust +- similar-images +- similar-music +- similar-videos +ReleaseNotes: | + Core + - Fixed issue with excluded folders not working on Windows - #1808 + Krokiet + - Increased default maximum file size limit - #1808 + Prebuilt binaries + - Added new Krokiet wgpu binaries + - Added new all-in-one Krokiet binaries with all backends included +ReleaseNotesUrl: https://github.com/qarmin/czkawka/releases/tag/11.0.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/q/qarmin/krokiet/11.0.1/qarmin.krokiet.yaml b/manifests/q/qarmin/krokiet/11.0.1/qarmin.krokiet.yaml new file mode 100644 index 000000000000..f49286714281 --- /dev/null +++ b/manifests/q/qarmin/krokiet/11.0.1/qarmin.krokiet.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: qarmin.krokiet +PackageVersion: 11.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 5201bbb68fd89a1ed369298f2993ea27edbbfe04 Mon Sep 17 00:00:00 2001 From: bit5hift <71666421+bit5hift@users.noreply.github.com> Date: Fri, 27 Mar 2026 22:18:23 +0100 Subject: [PATCH 088/162] New package: bit5hift.sshm-rs version 0.2.0 (#351961) --- .../0.2.0/bit5hift.sshm-rs.installer.yaml | 20 +++++++++++++++ .../0.2.0/bit5hift.sshm-rs.locale.en-US.yaml | 25 +++++++++++++++++++ .../sshm-rs/0.2.0/bit5hift.sshm-rs.yaml | 7 ++++++ 3 files changed, 52 insertions(+) create mode 100644 manifests/b/bit5hift/sshm-rs/0.2.0/bit5hift.sshm-rs.installer.yaml create mode 100644 manifests/b/bit5hift/sshm-rs/0.2.0/bit5hift.sshm-rs.locale.en-US.yaml create mode 100644 manifests/b/bit5hift/sshm-rs/0.2.0/bit5hift.sshm-rs.yaml diff --git a/manifests/b/bit5hift/sshm-rs/0.2.0/bit5hift.sshm-rs.installer.yaml b/manifests/b/bit5hift/sshm-rs/0.2.0/bit5hift.sshm-rs.installer.yaml new file mode 100644 index 000000000000..d5523174d893 --- /dev/null +++ b/manifests/b/bit5hift/sshm-rs/0.2.0/bit5hift.sshm-rs.installer.yaml @@ -0,0 +1,20 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: bit5hift.sshm-rs +PackageVersion: 0.2.0 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: + - RelativeFilePath: sshm-rs.exe + PortableCommandAlias: sshm-rs +ReleaseDate: 2026-03-25 +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/bit5hift/sshm-rs/releases/download/v0.2.0/sshm-rs-v0.2.0-x86_64-pc-windows-msvc.zip + InstallerSha256: e1b26108e68cc6a9f9a34fc5af739477b4ef91b339c6a7fa5549b64e1ee0dbde +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/b/bit5hift/sshm-rs/0.2.0/bit5hift.sshm-rs.locale.en-US.yaml b/manifests/b/bit5hift/sshm-rs/0.2.0/bit5hift.sshm-rs.locale.en-US.yaml new file mode 100644 index 000000000000..00952de8f70e --- /dev/null +++ b/manifests/b/bit5hift/sshm-rs/0.2.0/bit5hift.sshm-rs.locale.en-US.yaml @@ -0,0 +1,25 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: bit5hift.sshm-rs +PackageVersion: 0.2.0 +PackageLocale: en-US +Publisher: bit5hift +PublisherUrl: https://github.com/bit5hift +PublisherSupportUrl: https://github.com/bit5hift/sshm-rs/issues +Author: bit5hift +PackageName: sshm-rs +PackageUrl: https://github.com/bit5hift/sshm-rs +License: MIT +LicenseUrl: https://github.com/bit5hift/sshm-rs/blob/HEAD/LICENSE +ShortDescription: SSH connection manager with integrated terminal and SFTP browser +Moniker: sshm-rs +Tags: + - cli + - ssh + - terminal + - sftp + - tui + - open-source + - cross-platform +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/b/bit5hift/sshm-rs/0.2.0/bit5hift.sshm-rs.yaml b/manifests/b/bit5hift/sshm-rs/0.2.0/bit5hift.sshm-rs.yaml new file mode 100644 index 000000000000..74f1c504096e --- /dev/null +++ b/manifests/b/bit5hift/sshm-rs/0.2.0/bit5hift.sshm-rs.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: bit5hift.sshm-rs +PackageVersion: 0.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 From df34060272ab3812418883df6c4ac011ff542a63 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 05:27:39 +0800 Subject: [PATCH 089/162] New version: Brave.Brave.Nightly version 147.1.90.77 (#352999) --- .../Brave.Brave.Nightly.installer.yaml | 86 +++++++++++++++++++ .../Brave.Brave.Nightly.locale.en-US.yaml | 33 +++++++ .../Brave.Brave.Nightly.locale.zh-CN.yaml | 29 +++++++ .../147.1.90.77/Brave.Brave.Nightly.yaml | 8 ++ 4 files changed, 156 insertions(+) create mode 100644 manifests/b/Brave/Brave/Nightly/147.1.90.77/Brave.Brave.Nightly.installer.yaml create mode 100644 manifests/b/Brave/Brave/Nightly/147.1.90.77/Brave.Brave.Nightly.locale.en-US.yaml create mode 100644 manifests/b/Brave/Brave/Nightly/147.1.90.77/Brave.Brave.Nightly.locale.zh-CN.yaml create mode 100644 manifests/b/Brave/Brave/Nightly/147.1.90.77/Brave.Brave.Nightly.yaml diff --git a/manifests/b/Brave/Brave/Nightly/147.1.90.77/Brave.Brave.Nightly.installer.yaml b/manifests/b/Brave/Brave/Nightly/147.1.90.77/Brave.Brave.Nightly.installer.yaml new file mode 100644 index 000000000000..29cd152e9f66 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/147.1.90.77/Brave.Brave.Nightly.installer.yaml @@ -0,0 +1,86 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Brave.Brave.Nightly +PackageVersion: 147.1.90.77 +InstallerType: exe +ExpectedReturnCodes: +- InstallerReturnCode: -2147219440 + ReturnResponse: cancelledByUser +- InstallerReturnCode: -2147219416 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: -2147218431 + ReturnResponse: invalidParameter +- InstallerReturnCode: -2147024809 + ReturnResponse: invalidParameter +UpgradeBehavior: install +Protocols: +- ftp +- http +- https +- mailto +- tel +FileExtensions: +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: BraveSoftware Brave-Browser-Nightly +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.90.77/BraveBrowserStandaloneSilentNightlySetup32.exe + InstallerSha256: 9F77B5C0E3DFC5076A3806D2C51E933A0BA9D0560A0CC6B75E84B25462E4C082 + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.90.77/BraveBrowserStandaloneNightlySetup32.exe + InstallerSha256: 86B6BDAAA15C6EC833948B38A5C469BBF4B75C7CCE2D43E49771B2188382D07D + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + ElevationRequirement: elevationRequired +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.90.77/BraveBrowserStandaloneSilentNightlySetup.exe + InstallerSha256: AC2B1FB8EA5EE9C2A9C154E82F2ECFED2AE39BB0E9C060B3294C66732A6A04E0 + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.90.77/BraveBrowserStandaloneNightlySetup.exe + InstallerSha256: DF7F956F53EC677B162F567AA92A671A6278E25CCBDED55AFB90D89EE7835379 + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.90.77/BraveBrowserStandaloneSilentNightlySetupArm64.exe + InstallerSha256: 9CAB724D749CA538B01EBFFB56B930ED587482AD0E53297A965BAF34DBF22CD4 + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.90.77/BraveBrowserStandaloneNightlySetupArm64.exe + InstallerSha256: 9BBE0AC164D329C98C7976DE23F8B085E842A60827F84902F08ECCB7B57E4625 + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/Brave/Brave/Nightly/147.1.90.77/Brave.Brave.Nightly.locale.en-US.yaml b/manifests/b/Brave/Brave/Nightly/147.1.90.77/Brave.Brave.Nightly.locale.en-US.yaml new file mode 100644 index 000000000000..766098e36179 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/147.1.90.77/Brave.Brave.Nightly.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: Brave.Brave.Nightly +PackageVersion: 147.1.90.77 +PackageLocale: en-US +Publisher: Brave Software Inc +PublisherUrl: https://brave.com +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave Nightly +PackageUrl: https://brave.com/download-nightly +License: MPL-2.0 +LicenseUrl: https://github.com/brave/brave-browser/blob/master/LICENSE +Copyright: Copyright © 2026 The Brave Authors. All rights reserved. +CopyrightUrl: https://brave.com/terms-of-use +ShortDescription: Brave Nightly is our testing and development version of Brave. Releases are updated every night. +Description: |- + Nightly is our testing and development version of Brave. + The releases are updated every night and may contain bugs that can result in data loss. + Nightly automatically sends us crash reports when things go wrong. +Tags: +- browser +- chromium +- internet +- privacy +- web +- webpage +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://brave.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/Brave/Brave/Nightly/147.1.90.77/Brave.Brave.Nightly.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Nightly/147.1.90.77/Brave.Brave.Nightly.locale.zh-CN.yaml new file mode 100644 index 000000000000..ac02f5668239 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/147.1.90.77/Brave.Brave.Nightly.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Brave.Brave.Nightly +PackageVersion: 147.1.90.77 +PackageLocale: zh-CN +Publisher: Brave Software Inc +PublisherUrl: https://brave.com/zh +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave Nightly +PackageUrl: https://brave.com/download-nightly +License: MPL-2.0 +LicenseUrl: https://github.com/brave/brave-browser/blob/master/LICENSE +Copyright: 版权所有2026 Brave Software Inc。保留所有权利。 +CopyrightUrl: https://brave.com/terms-of-use +ShortDescription: Brave Nightly 是 Brave 的测试和开发版本,每天晚上更新。 +Description: Nightly 是 Brave 的测试和开发版本,每天晚上更新,可能包含导致数据丢失的错误。当出现问题时,Nightly 会自动向我们发送崩溃报告。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +- 隐私 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://brave.com/zh/faq +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/Brave/Brave/Nightly/147.1.90.77/Brave.Brave.Nightly.yaml b/manifests/b/Brave/Brave/Nightly/147.1.90.77/Brave.Brave.Nightly.yaml new file mode 100644 index 000000000000..03f7d0406850 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/147.1.90.77/Brave.Brave.Nightly.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: Brave.Brave.Nightly +PackageVersion: 147.1.90.77 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 9bb35d61ab4d3d9678e2eba1cd46fd6a8d49e282 Mon Sep 17 00:00:00 2001 From: Gijs Reijn Date: Fri, 27 Mar 2026 22:28:34 +0100 Subject: [PATCH 090/162] New package: OpenDsc.Lcm version 0.5.1 (#352889) --- .../Lcm/0.5.1/OpenDsc.Lcm.installer.yaml | 12 ++++++++++ .../Lcm/0.5.1/OpenDsc.Lcm.locale.en-US.yaml | 24 +++++++++++++++++++ .../o/OpenDsc/Lcm/0.5.1/OpenDsc.Lcm.yaml | 7 ++++++ 3 files changed, 43 insertions(+) create mode 100644 manifests/o/OpenDsc/Lcm/0.5.1/OpenDsc.Lcm.installer.yaml create mode 100644 manifests/o/OpenDsc/Lcm/0.5.1/OpenDsc.Lcm.locale.en-US.yaml create mode 100644 manifests/o/OpenDsc/Lcm/0.5.1/OpenDsc.Lcm.yaml diff --git a/manifests/o/OpenDsc/Lcm/0.5.1/OpenDsc.Lcm.installer.yaml b/manifests/o/OpenDsc/Lcm/0.5.1/OpenDsc.Lcm.installer.yaml new file mode 100644 index 000000000000..b390d91884d8 --- /dev/null +++ b/manifests/o/OpenDsc/Lcm/0.5.1/OpenDsc.Lcm.installer.yaml @@ -0,0 +1,12 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: OpenDsc.Lcm +PackageVersion: 0.5.1 +InstallerType: msi +ProductCode: '{B4AF7DA1-EF84-454D-A9D9-355BAEA08E81}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/opendsc/opendsc/releases/download/v0.5.1/OpenDSC.Lcm-0.5.1.msi + InstallerSha256: 556B7AA082F300915408AD9FC2F3512B1FA6438EBF58CB4C36B8556E4FFAB5F5 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenDsc/Lcm/0.5.1/OpenDsc.Lcm.locale.en-US.yaml b/manifests/o/OpenDsc/Lcm/0.5.1/OpenDsc.Lcm.locale.en-US.yaml new file mode 100644 index 000000000000..48a68ebc1d6a --- /dev/null +++ b/manifests/o/OpenDsc/Lcm/0.5.1/OpenDsc.Lcm.locale.en-US.yaml @@ -0,0 +1,24 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: OpenDsc.Lcm +PackageVersion: 0.5.1 +PackageLocale: en-US +Publisher: OpenDsc +PublisherUrl: https://github.com/opendsc +PublisherSupportUrl: https://github.com/opendsc/opendsc/issues +PackageName: OpenDsc Local Configuration Manager +PackageUrl: https://github.com/opendsc/opendsc +License: MIT +LicenseUrl: https://github.com/opendsc/opendsc/blob/main/LICENSE +ShortDescription: A cross-platform Local Configuration Manager (LCM) service for continuous DSC monitoring and remediation. +Description: |- + The OpenDsc Local Configuration Manager (LCM) is a cross-platform background service that continuously monitors and optionally remediates DSC configurations. It supports Monitor mode for detecting drift from desired state and Remediate mode for automatically applying corrections. The LCM also supports pull mode, allowing it to download configurations from the OpenDsc Pull Server with automatic updates, API key rotation, and compliance reporting. +Tags: +- dsc +- configuration-management +- infrastructure-as-code +- lcm +- monitoring +ReleaseNotesUrl: https://github.com/opendsc/opendsc/releases/tag/v0.5.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenDsc/Lcm/0.5.1/OpenDsc.Lcm.yaml b/manifests/o/OpenDsc/Lcm/0.5.1/OpenDsc.Lcm.yaml new file mode 100644 index 000000000000..cd4991ac97f2 --- /dev/null +++ b/manifests/o/OpenDsc/Lcm/0.5.1/OpenDsc.Lcm.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: OpenDsc.Lcm +PackageVersion: 0.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From d109c3bcd2ae680f7c424e96857a0104190fe8c8 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 05:28:50 +0800 Subject: [PATCH 091/162] New version: Amazon.AWSCLI version 2.34.19 (#353048) --- .../2.34.19/Amazon.AWSCLI.installer.yaml | 25 +++++++++++++++++ .../2.34.19/Amazon.AWSCLI.locale.en-US.yaml | 28 +++++++++++++++++++ .../2.34.19/Amazon.AWSCLI.locale.zh-CN.yaml | 14 ++++++++++ .../Amazon/AWSCLI/2.34.19/Amazon.AWSCLI.yaml | 8 ++++++ 4 files changed, 75 insertions(+) create mode 100644 manifests/a/Amazon/AWSCLI/2.34.19/Amazon.AWSCLI.installer.yaml create mode 100644 manifests/a/Amazon/AWSCLI/2.34.19/Amazon.AWSCLI.locale.en-US.yaml create mode 100644 manifests/a/Amazon/AWSCLI/2.34.19/Amazon.AWSCLI.locale.zh-CN.yaml create mode 100644 manifests/a/Amazon/AWSCLI/2.34.19/Amazon.AWSCLI.yaml diff --git a/manifests/a/Amazon/AWSCLI/2.34.19/Amazon.AWSCLI.installer.yaml b/manifests/a/Amazon/AWSCLI/2.34.19/Amazon.AWSCLI.installer.yaml new file mode 100644 index 000000000000..bf2094559f68 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.34.19/Amazon.AWSCLI.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: Amazon.AWSCLI +PackageVersion: 2.34.19 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: AWSCLIV2="" +UpgradeBehavior: install +Commands: +- aws +ProductCode: '{62FB5E5F-1E70-4422-961B-16B29B2B9766}' +AppsAndFeaturesEntries: +- DisplayName: AWS Command Line Interface v2 + ProductCode: '{62FB5E5F-1E70-4422-961B-16B29B2B9766}' + UpgradeCode: '{E1C1971C-384E-4D6D-8D02-F1AC48281CF8}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Amazon\AWSCLIV2' +Installers: +- Architecture: x64 + InstallerUrl: https://awscli.amazonaws.com/AWSCLIV2-2.34.19.msi + InstallerSha256: 5E42EBC023ADC0CDF852CDF036A88ABDB3F2B918EFFEAA215FFE6A78DD7B4697 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/Amazon/AWSCLI/2.34.19/Amazon.AWSCLI.locale.en-US.yaml b/manifests/a/Amazon/AWSCLI/2.34.19/Amazon.AWSCLI.locale.en-US.yaml new file mode 100644 index 000000000000..912ed895b588 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.34.19/Amazon.AWSCLI.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Amazon.AWSCLI +PackageVersion: 2.34.19 +PackageLocale: en-US +Publisher: Amazon Web Services +PublisherUrl: https://aws.amazon.com/ +PublisherSupportUrl: https://github.com/aws/aws-cli/issues +PrivacyUrl: https://aws.amazon.com/privacy/ +Author: Amazon Web Services, Inc +PackageName: AWS Command Line Interface +PackageUrl: https://aws.amazon.com/cli/ +License: Apache-2.0 +LicenseUrl: https://github.com/aws/aws-cli/blob/HEAD/LICENSE.txt +Copyright: Copyright 2012-2026 Amazon.com, Inc. +CopyrightUrl: https://aws.amazon.com/agreement/ +ShortDescription: Universal Command Line Interface for Amazon Web Services +Description: The AWS Command Line Interface (AWS CLI) is an open source tool that enables you to interact with AWS services using commands in your command-line shell. With minimal configuration, the AWS CLI enables you to start running commands that implement functionality equivalent to that provided by the browser-based AWS Management Console from the command prompt in your terminal program. +Tags: +- aws +- awscli +- cli +- cloud +- s3 +- web +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Amazon/AWSCLI/2.34.19/Amazon.AWSCLI.locale.zh-CN.yaml b/manifests/a/Amazon/AWSCLI/2.34.19/Amazon.AWSCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..258a275b3ef1 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.34.19/Amazon.AWSCLI.locale.zh-CN.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Amazon.AWSCLI +PackageVersion: 2.34.19 +PackageLocale: zh-CN +PublisherUrl: https://aws.amazon.com/cn/ +PrivacyUrl: https://aws.amazon.com/cn/privacy/ +PackageUrl: https://aws.amazon.com/cn/cli/ +CopyrightUrl: https://aws.amazon.com/cn/agreement/ +ShortDescription: Amazon Web Services 的通用命令行界面 +Description: AWS 命令行界面(AWS CLI)是一种开源工具,让您能够使用命令行 Shell 中的命令与 AWS 服务进行交互。AWS CLI 让您只需极少的配置,就能从终端程序的命令提示符中运行命令,以实施与基于浏览器的 AWS 管理控制台提供的功能等效的命令。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Amazon/AWSCLI/2.34.19/Amazon.AWSCLI.yaml b/manifests/a/Amazon/AWSCLI/2.34.19/Amazon.AWSCLI.yaml new file mode 100644 index 000000000000..e3294f2ed148 --- /dev/null +++ b/manifests/a/Amazon/AWSCLI/2.34.19/Amazon.AWSCLI.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: Amazon.AWSCLI +PackageVersion: 2.34.19 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From d4203ee9821001a3cbaf63b6d0c0ebed6628a9d2 Mon Sep 17 00:00:00 2001 From: Lucas Trzesniewski Date: Fri, 27 Mar 2026 22:30:00 +0100 Subject: [PATCH 092/162] New version: Atuinsh.Atuin version 18.13.6 (#353054) --- .../18.13.6/Atuinsh.Atuin.installer.yaml | 23 +++++ .../18.13.6/Atuinsh.Atuin.locale.en-US.yaml | 91 +++++++++++++++++++ .../Atuinsh/Atuin/18.13.6/Atuinsh.Atuin.yaml | 8 ++ 3 files changed, 122 insertions(+) create mode 100644 manifests/a/Atuinsh/Atuin/18.13.6/Atuinsh.Atuin.installer.yaml create mode 100644 manifests/a/Atuinsh/Atuin/18.13.6/Atuinsh.Atuin.locale.en-US.yaml create mode 100644 manifests/a/Atuinsh/Atuin/18.13.6/Atuinsh.Atuin.yaml diff --git a/manifests/a/Atuinsh/Atuin/18.13.6/Atuinsh.Atuin.installer.yaml b/manifests/a/Atuinsh/Atuin/18.13.6/Atuinsh.Atuin.installer.yaml new file mode 100644 index 000000000000..b9f7e1d25475 --- /dev/null +++ b/manifests/a/Atuinsh/Atuin/18.13.6/Atuinsh.Atuin.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: Atuinsh.Atuin +PackageVersion: 18.13.6 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: atuin.exe + PortableCommandAlias: atuin +InstallModes: +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- atuin +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/atuinsh/atuin/releases/download/v18.13.6/atuin-x86_64-pc-windows-msvc.zip + InstallerSha256: C0FDE67C1E83CA8E65FD62BA8B30518830A3EB0D3949739E5BC7282B56F97470 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/Atuinsh/Atuin/18.13.6/Atuinsh.Atuin.locale.en-US.yaml b/manifests/a/Atuinsh/Atuin/18.13.6/Atuinsh.Atuin.locale.en-US.yaml new file mode 100644 index 000000000000..502ba2db6d94 --- /dev/null +++ b/manifests/a/Atuinsh/Atuin/18.13.6/Atuinsh.Atuin.locale.en-US.yaml @@ -0,0 +1,91 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Atuinsh.Atuin +PackageVersion: 18.13.6 +PackageLocale: en-US +Publisher: Atuin +PublisherUrl: https://atuin.sh/ +PublisherSupportUrl: https://github.com/atuinsh/atuin/issues +Author: Ellie Huxtable +PackageName: Atuin +PackageUrl: https://github.com/atuinsh/atuin +License: MIT +LicenseUrl: https://github.com/atuinsh/atuin/blob/HEAD/LICENSE +Copyright: Ellie Huxtable +ShortDescription: ✨ Magical shell history +Description: Atuin replaces your existing shell history with a SQLite database, and records additional context for your commands. +Moniker: atuin +Tags: +- history +- powershell +- rust +- shell +ReleaseNotes: |- + Release Notes + Bug Fixes + - (powershell) Handle non-FileSystem drives (#3353) + - Remove unnecessary arboard/image-data default feature (#3345) + - Use printf to append fish shell init block (#3346) + - Set WorkingDirectory in PowerShell Invoke-AtuinSearch (#3351) + Features + - Use eye-declare for more performant and flexible AI TUI (#3343) + Miscellaneous Tasks + - (ci) Switch most workflows to depot ci (#3352) + atuin 18.13.6 + Install atuin 18.13.6 + Install prebuilt binaries via shell script + curl --proto '=https' --tlsv1.2 -LsSf https://github.com/atuinsh/atuin/releases/download/v18.13.6/atuin-installer.sh | sh + Install prebuilt binaries via powershell script + powershell -ExecutionPolicy Bypass -c "irm https://github.com/atuinsh/atuin/releases/download/v18.13.6/atuin-installer.ps1 | iex" + Download atuin 18.13.6 + ────────────────────────────────────────────┬───────────────────┬───────────── + File │Platform │Checksum + ────────────────────────────────────────────┼───────────────────┼───────────── + atuin-aarch64-apple-darwin.tar.gz │Apple Silicon macOS│checksum + ────────────────────────────────────────────┼───────────────────┼───────────── + atuin-x86_64-pc-windows-msvc.zip │x64 Windows │checksum + ────────────────────────────────────────────┼───────────────────┼───────────── + atuin-aarch64-unknown-linux-gnu.tar.gz │ARM64 Linux │checksum + ────────────────────────────────────────────┼───────────────────┼───────────── + atuin-x86_64-unknown-linux-gnu.tar.gz │x64 Linux │checksum + ────────────────────────────────────────────┼───────────────────┼───────────── + atuin-aarch64-unknown-linux-musl.tar.gz │ARM64 MUSL Linux │checksum + ────────────────────────────────────────────┼───────────────────┼───────────── + atuin-x86_64-unknown-linux-musl.tar.gz │x64 MUSL Linux │checksum + ────────────────────────────────────────────┴───────────────────┴───────────── + Verifying GitHub Artifact Attestations + The artifacts in this release have attestations generated with GitHub Artifact Attestations. These can be verified by using the GitHub CLI: + gh attestation verify --repo atuinsh/atuin + You can also download the attestation from GitHub and verify against that directly: + gh attestation verify --bundle + atuin-server 18.13.6 + Install atuin-server 18.13.6 + Install prebuilt binaries via shell script + curl --proto '=https' --tlsv1.2 -LsSf https://github.com/atuinsh/atuin/releases/download/v18.13.6/atuin-server-installer.sh | sh + Install prebuilt binaries via powershell script + powershell -ExecutionPolicy Bypass -c "irm https://github.com/atuinsh/atuin/releases/download/v18.13.6/atuin-server-installer.ps1 | iex" + Download atuin-server 18.13.6 + ───────────────────────────────────────────────────┬───────────────────┬───────────── + File │Platform │Checksum + ───────────────────────────────────────────────────┼───────────────────┼───────────── + atuin-server-aarch64-apple-darwin.tar.gz │Apple Silicon macOS│checksum + ───────────────────────────────────────────────────┼───────────────────┼───────────── + atuin-server-x86_64-pc-windows-msvc.zip │x64 Windows │checksum + ───────────────────────────────────────────────────┼───────────────────┼───────────── + atuin-server-aarch64-unknown-linux-gnu.tar.gz │ARM64 Linux │checksum + ───────────────────────────────────────────────────┼───────────────────┼───────────── + atuin-server-x86_64-unknown-linux-gnu.tar.gz │x64 Linux │checksum + ───────────────────────────────────────────────────┼───────────────────┼───────────── + atuin-server-aarch64-unknown-linux-musl.tar.gz │ARM64 MUSL Linux │checksum + ───────────────────────────────────────────────────┼───────────────────┼───────────── + atuin-server-x86_64-unknown-linux-musl.tar.gz │x64 MUSL Linux │checksum + ───────────────────────────────────────────────────┴───────────────────┴───────────── + Verifying GitHub Artifact Attestations + The artifacts in this release have attestations generated with GitHub Artifact Attestations. These can be verified by using the GitHub CLI: + gh attestation verify --repo atuinsh/atuin + You can also download the attestation from GitHub and verify against that directly: + gh attestation verify --bundle +ReleaseNotesUrl: https://github.com/atuinsh/atuin/releases/tag/v18.13.6 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Atuinsh/Atuin/18.13.6/Atuinsh.Atuin.yaml b/manifests/a/Atuinsh/Atuin/18.13.6/Atuinsh.Atuin.yaml new file mode 100644 index 000000000000..aa0f98b7e4b2 --- /dev/null +++ b/manifests/a/Atuinsh/Atuin/18.13.6/Atuinsh.Atuin.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: Atuinsh.Atuin +PackageVersion: 18.13.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 7a5f8c5d2e953e15c18ef884fcdd6d8f938cdf2b Mon Sep 17 00:00:00 2001 From: leic4u <32786903+leic4u@users.noreply.github.com> Date: Sat, 28 Mar 2026 05:30:19 +0800 Subject: [PATCH 093/162] New package: GamePP.GamePPLite version 6.1.41.120 (#351707) --- .../GamePP.GamePPLite.installer.yaml | 21 +++++++++++++++++++ .../GamePP.GamePPLite.locale.zh-CN.yaml | 21 +++++++++++++++++++ .../6.1.41.120/GamePP.GamePPLite.yaml | 8 +++++++ 3 files changed, 50 insertions(+) create mode 100644 manifests/g/GamePP/GamePPLite/6.1.41.120/GamePP.GamePPLite.installer.yaml create mode 100644 manifests/g/GamePP/GamePPLite/6.1.41.120/GamePP.GamePPLite.locale.zh-CN.yaml create mode 100644 manifests/g/GamePP/GamePPLite/6.1.41.120/GamePP.GamePPLite.yaml diff --git a/manifests/g/GamePP/GamePPLite/6.1.41.120/GamePP.GamePPLite.installer.yaml b/manifests/g/GamePP/GamePPLite/6.1.41.120/GamePP.GamePPLite.installer.yaml new file mode 100644 index 000000000000..80cb79a35a12 --- /dev/null +++ b/manifests/g/GamePP/GamePPLite/6.1.41.120/GamePP.GamePPLite.installer.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GamePP.GamePPLite +PackageVersion: 6.1.41.120 +InstallerType: exe +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /silent + SilentWithProgress: /silent +UpgradeBehavior: install +ReleaseDate: 2026-01-20 +Installers: +- Architecture: x86 + InstallerUrl: https://dllite.gamepp.com/download/GamePPLite_Setup.exe + InstallerSha256: AC91F500B67FD05C3237E37FF37B9B0BDED475336842F1B12F4D98E400CB67D3 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/GamePP/GamePPLite/6.1.41.120/GamePP.GamePPLite.locale.zh-CN.yaml b/manifests/g/GamePP/GamePPLite/6.1.41.120/GamePP.GamePPLite.locale.zh-CN.yaml new file mode 100644 index 000000000000..d02392406a24 --- /dev/null +++ b/manifests/g/GamePP/GamePPLite/6.1.41.120/GamePP.GamePPLite.locale.zh-CN.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GamePP.GamePPLite +PackageVersion: 6.1.41.120 +PackageLocale: zh-CN +Publisher: 成都游加佳科技有限公司 +PublisherUrl: https://gamepp.com/about.html +PublisherSupportUrl: https://gamepp.com/support.html +Author: 成都格姆皮皮科技有限公司 +PackageName: 游戏加加轻量版 +PackageUrl: https://gamepp.com/download.html +License: Proprietary +LicenseUrl: https://gamepp.com/terms-of-use.html +Copyright: Copyright(c) GamePP.com. All rights reserved +ShortDescription: 游戏加加为您提供实时硬件监控、深度性能评测与AI智能游戏画质,带给您全新电脑性能和游戏体验 +Tags: +- 硬件监控 +ReleaseNotesUrl: https://gamepp.com/log.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GamePP/GamePPLite/6.1.41.120/GamePP.GamePPLite.yaml b/manifests/g/GamePP/GamePPLite/6.1.41.120/GamePP.GamePPLite.yaml new file mode 100644 index 000000000000..51cf21063619 --- /dev/null +++ b/manifests/g/GamePP/GamePPLite/6.1.41.120/GamePP.GamePPLite.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: GamePP.GamePPLite +PackageVersion: 6.1.41.120 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 From 4d23087d6f308cb992e44abceaa36b60c900c2d7 Mon Sep 17 00:00:00 2001 From: axpnet <45786925+axpnet@users.noreply.github.com> Date: Fri, 27 Mar 2026 22:31:16 +0100 Subject: [PATCH 094/162] New version: axpnet.AeroFTP version 3.1.5 (#353061) --- .../3.1.5/axpnet.AeroFTP.installer.yaml | 36 +++++++++ .../3.1.5/axpnet.AeroFTP.locale.en-US.yaml | 79 +++++++++++++++++++ .../axpnet/AeroFTP/3.1.5/axpnet.AeroFTP.yaml | 8 ++ 3 files changed, 123 insertions(+) create mode 100644 manifests/a/axpnet/AeroFTP/3.1.5/axpnet.AeroFTP.installer.yaml create mode 100644 manifests/a/axpnet/AeroFTP/3.1.5/axpnet.AeroFTP.locale.en-US.yaml create mode 100644 manifests/a/axpnet/AeroFTP/3.1.5/axpnet.AeroFTP.yaml diff --git a/manifests/a/axpnet/AeroFTP/3.1.5/axpnet.AeroFTP.installer.yaml b/manifests/a/axpnet/AeroFTP/3.1.5/axpnet.AeroFTP.installer.yaml new file mode 100644 index 000000000000..4644900dc235 --- /dev/null +++ b/manifests/a/axpnet/AeroFTP/3.1.5/axpnet.AeroFTP.installer.yaml @@ -0,0 +1,36 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: axpnet.AeroFTP +PackageVersion: 3.1.5 +InstallerLocale: en-US +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/axpdev-lab/aeroftp/releases/download/v3.1.5/AeroFTP_3.1.5_x64-setup.exe + InstallerSha256: 1FB0E6CDFB7284B3A93ACA6F5E95BC8E7BC9FF1169F999FA172530D96342342B + InstallerSwitches: + Silent: /S + SilentWithProgress: /S + ProductCode: AeroFTP + AppsAndFeaturesEntries: + - Publisher: aeroftp + ProductCode: AeroFTP + InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\AeroFTP' +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/axpdev-lab/aeroftp/releases/download/v3.1.5/AeroFTP_3.1.5_x64_en-US.msi + InstallerSha256: 2DB80B40F76D667B74337E9F6198166B2A3ED6BD145C73BF9FAD4110C3AC6007 + ProductCode: '{8751F446-B3D7-48B8-93FD-61058A275F95}' + AppsAndFeaturesEntries: + - Publisher: aeroftp + ProductCode: '{8751F446-B3D7-48B8-93FD-61058A275F95}' + UpgradeCode: '{3A660390-AA69-5CCD-A202-013C64158D37}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/AeroFTP' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/axpnet/AeroFTP/3.1.5/axpnet.AeroFTP.locale.en-US.yaml b/manifests/a/axpnet/AeroFTP/3.1.5/axpnet.AeroFTP.locale.en-US.yaml new file mode 100644 index 000000000000..72982d7ea9d6 --- /dev/null +++ b/manifests/a/axpnet/AeroFTP/3.1.5/axpnet.AeroFTP.locale.en-US.yaml @@ -0,0 +1,79 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: axpnet.AeroFTP +PackageVersion: 3.1.5 +PackageLocale: en-US +Publisher: axpnet +PublisherUrl: https://github.com/axpnet +PublisherSupportUrl: https://github.com/axpnet/aeroftp/issues +Author: axpnet +PackageName: AeroFTP +PackageUrl: https://github.com/axpnet/aeroftp +License: GPL-3.0 +LicenseUrl: https://github.com/axpdev-lab/aeroftp/blob/HEAD/LICENSE +ShortDescription: A modern, multi-protocol file manager and FTP client with integrated AI, cloud sync, and military-grade encryption. +Description: |- + AeroFTP is an open-source, multi-protocol file manager built with Tauri 2 (Rust + React 18 + TypeScript). + It supports 16 protocols (FTP, FTPS, SFTP, WebDAV, S3, Google Drive, Dropbox, OneDrive, MEGA, Box, pCloud, Azure Blob, 4shared, Filen, Zoho WorkDrive, and Cryptomator vaults), + features an AI assistant with 45 tools and 15 LLM providers, military-grade encrypted vaults (AES-256-GCM-SIV + Argon2id), + bidirectional real-time sync, a built-in code editor, SSH terminal, and media player with visualizers. + Available in 47 languages with 4 themes. +Moniker: aeroftp +Tags: +- cloud-storage +- encryption +- file-manager +- file-transfer +- ftp +- ftp-client +- multi-protocol +- rust +- s3 +- sftp +- sync +- tauri +- webdav +ReleaseNotes: |- + [3.1.5] - 2026-03-27 + AeroAgent Hardening — APPENDIX-A Execution & Security Audit + Full execution of the AeroAgent evolution plan (APPENDIX-A): 6 areas implemented end-to-end, validated by independent security audit. 19 findings identified, 17 resolved — including 4 HIGH severity. + Added + - Prompt caching Anthropic: cache_control: { type: "ephemeral" } on system prompt, cache creation/read token metrics propagated to UI with cost savings display + - Tool result caching: Per-session in-memory cache with deterministic key (tool + args + context + remote_server), 3-tier TTL (3s/10s/20s), nuclear invalidation on mutations, lazy GC with 128-session LRU cap + - Structured transfer plans: New generate_transfer_plan tool with JSON schema, TransferPlanReview UI component with per-operation checkboxes, dependsOn dependency graph with topological execution and failure propagation across levels + - CLI/GUI parity & MCP hardening: Real tool-aware agent loop in CLI, MCP tools/list and tools/call derived from CLI dispatcher, recursive path validation, shared deny-list constants between CLI and MCP + - Agent memory SQLite: New agent_memory_db.rs backend with structured schema, store/search/delete commands, token-scored retrieval, 90-day lazy decay (6h interval, persisted), 500 entry-per-project cap, backend prompt injection sanitization, deduplication + - Voice input local: New speech.rs with whisper.cpp backend, on-demand model download with SHA-256 integrity verification, WAV mono 16kHz validation, local audio recording, 3-state UX (idle/listening/transcribing), non-blocking transcription + Changed + - Tool pipeline failure propagation: Pipeline now tracks failed tools and skips dependents with transitive propagation — no more cascading errors when a prerequisite fails + - Tool approval cache scoping: ToolApproval and BatchToolApproval now forward sessionId for correct cache isolation + - Cache key includes remote server context: Cache key disambiguated by active server connection, preventing cross-server result leakage + - Public documentation synchronized with validated behavior: CLI, AeroAgent, GitHub integration, and credential-isolation docs now avoid stale command/protocol counts, clarify profile-backed provider support (including 4shared and Drime), document provider-dependent quota reporting, and align GitHub commit semantics with current REST + GraphQL behavior + - Appendix-C CLI closure documented with final FTP/FTPS outcome: Added final closure dossier covering C1-C4 status, multi-provider audit conclusions, and the final FTP/FTPS alignment between GUI and CLI + Fixed + - macOS frozen UI on launch: Removed App Sandbox from entitlements.plist for direct distribution — without Apple Developer signature, sandbox blocks WebKit from loading frontend. Added missing JIT and library validation entitlements required for WebKit. Closes #62 + - CLI shell_execute meta-char bypass: Added shell metacharacter blocking (pipe, semicolon, backtick, $, &, parens, braces, newlines) to CLI shell execution, closing trivial deny-list bypass via pipes or subshells + - CLI shell_execute working directory not validated: Now validates working directory against deny-list before use — prevents operating in sensitive directories + - CLI shell_execute deny-list expanded: Extended from 17 to 39 patterns (added sudo, crontab, systemctl, mount, fdisk, passwd, eval, shred, etc.) + - CLI local_trash/batch_rename/stat_batch path validation: All three tools now validate each individual path, closing deny-list bypass via MCP + - MCP argument validation incomplete: Added output_path, path_a, path_b, project_path to validated parameters, plus recursive validation of nested JSON structures + - Deny-list discrepancy CLI vs MCP: Unified into shared constants + - Agent memory unlimited storage: Capped at 500 entries per project with capacity enforcement before INSERT + - Agent memory prompt injection via CLI: Backend sanitization applied before SQL INSERT, not just in frontend + - Whisper model download without integrity check: SHA-256 pinning on model download, verified before atomic rename. Orphan temp file cleanup on all error paths + - Transfer plan stale cache: Plans are always generated fresh (removed from cache whitelist) + - FTP CLI recursive/find/stat regressions closed: put -r now pre-creates nested remote directories in parent-first order, FTP find uses real glob matching, and FTP stat no longer emits duplicated entry.path values from MLST/MLSD responses + - FTPS CLI security semantics aligned with GUI: Removed automatic insecure retry after certificate verification failures; live validation on saved Aruba profile aeroftp.app now fails closed with hostname mismatch unless invalid/self-signed certificate acceptance is explicitly enabled + Security (Independent Audit — 19 findings, 17 resolved) + - Independent security audit: 4 HIGH, 7 MEDIUM, 8 LOW findings across 6 areas — all HIGH resolved + - Post-audit hardening verified by second independent review pass + - macOS entitlements restructured for safe direct distribution without Apple code signing + - 8 security fixes across CLI/MCP path validation, shell execution, memory storage, and model integrity + Downloads: + - Windows: .msi installer, .exe, or .zip portable (no installation required) + - macOS: .dmg disk image + - Linux: .deb, .rpm, .snap, or .AppImage +ReleaseNotesUrl: https://github.com/axpdev-lab/aeroftp/releases/tag/v3.1.5 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/axpnet/AeroFTP/3.1.5/axpnet.AeroFTP.yaml b/manifests/a/axpnet/AeroFTP/3.1.5/axpnet.AeroFTP.yaml new file mode 100644 index 000000000000..a3b451459938 --- /dev/null +++ b/manifests/a/axpnet/AeroFTP/3.1.5/axpnet.AeroFTP.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: axpnet.AeroFTP +PackageVersion: 3.1.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 281f1cffb5c2b59535f400568be7988c4df69428 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, 27 Mar 2026 22:32:34 +0100 Subject: [PATCH 095/162] New version: GiantPinkRobots.Varia version 2026.3.27 (#353064) --- .../GiantPinkRobots.Varia.installer.yaml | 21 +++++++++++++ .../GiantPinkRobots.Varia.locale.en-US.yaml | 31 +++++++++++++++++++ .../2026.3.27/GiantPinkRobots.Varia.yaml | 8 +++++ 3 files changed, 60 insertions(+) create mode 100644 manifests/g/GiantPinkRobots/Varia/2026.3.27/GiantPinkRobots.Varia.installer.yaml create mode 100644 manifests/g/GiantPinkRobots/Varia/2026.3.27/GiantPinkRobots.Varia.locale.en-US.yaml create mode 100644 manifests/g/GiantPinkRobots/Varia/2026.3.27/GiantPinkRobots.Varia.yaml diff --git a/manifests/g/GiantPinkRobots/Varia/2026.3.27/GiantPinkRobots.Varia.installer.yaml b/manifests/g/GiantPinkRobots/Varia/2026.3.27/GiantPinkRobots.Varia.installer.yaml new file mode 100644 index 000000000000..29eec8e72e0a --- /dev/null +++ b/manifests/g/GiantPinkRobots/Varia/2026.3.27/GiantPinkRobots.Varia.installer.yaml @@ -0,0 +1,21 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GiantPinkRobots.Varia +PackageVersion: 2026.3.27 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +ProductCode: '{F2017E34-C494-42DB-9A2C-022CFB2C970C}_is1' +ReleaseDate: 2026-03-27 +AppsAndFeaturesEntries: +- ProductCode: '{F2017E34-C494-42DB-9A2C-022CFB2C970C}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Varia' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/giantpinkrobots/varia/releases/download/v2026.3.27/varia-windows-setup-amd64.exe + InstallerSha256: 012A8C1DD0F6100C7FA851B031A537437CEFBA5CC452903CA27DC80B3475AAEA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/GiantPinkRobots/Varia/2026.3.27/GiantPinkRobots.Varia.locale.en-US.yaml b/manifests/g/GiantPinkRobots/Varia/2026.3.27/GiantPinkRobots.Varia.locale.en-US.yaml new file mode 100644 index 000000000000..c3774c073969 --- /dev/null +++ b/manifests/g/GiantPinkRobots/Varia/2026.3.27/GiantPinkRobots.Varia.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GiantPinkRobots.Varia +PackageVersion: 2026.3.27 +PackageLocale: en-US +Publisher: Giant Pink Robots! +PublisherUrl: https://github.com/giantpinkrobots +PublisherSupportUrl: https://github.com/giantpinkrobots/varia/issues +PackageName: Varia +PackageUrl: https://github.com/giantpinkrobots/varia +License: MPL-2.0 +LicenseUrl: https://github.com/giantpinkrobots/varia/blob/HEAD/LICENSE +ShortDescription: Download manager based on aria2. +Description: |- + Varia is a simple download manager. It uses the amazing aria2 to handle the downloads. + It supports basic functionality like continuing incomplete downloads from the previous session upon startup, pausing/cancelling all downloads at once, setting a speed limit, authentication with a username/password, setting the simultaneous download amount and setting the download directory. +Moniker: Varia +Tags: +- aria2 +- downloadmanager +- gtk4 +- libadwaita +- yt-dlp +ReleaseNotes: |- + - Ability to download playlists through the same Video/Audio functionality + - Ability to select individual files and folders to download through torrenting + - Option to dynamically send browser cookies through the browser extension upon each download (separate from cookies.txt file import support) +ReleaseNotesUrl: https://github.com/giantpinkrobots/varia/releases/tag/v2026.3.27 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GiantPinkRobots/Varia/2026.3.27/GiantPinkRobots.Varia.yaml b/manifests/g/GiantPinkRobots/Varia/2026.3.27/GiantPinkRobots.Varia.yaml new file mode 100644 index 000000000000..5952628c205a --- /dev/null +++ b/manifests/g/GiantPinkRobots/Varia/2026.3.27/GiantPinkRobots.Varia.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: GiantPinkRobots.Varia +PackageVersion: 2026.3.27 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From a47cf038988494f531363e0eb3bfd9976071b0f5 Mon Sep 17 00:00:00 2001 From: Gijs Reijn Date: Fri, 27 Mar 2026 22:38:17 +0100 Subject: [PATCH 096/162] New package: OpenDsc.Resources.Portable version 0.5.1 (#352891) --- .../OpenDsc.Resources.Portable.installer.yaml | 14 +++++++++++ ...enDsc.Resources.Portable.locale.en-US.yaml | 24 +++++++++++++++++++ .../0.5.1/OpenDsc.Resources.Portable.yaml | 7 ++++++ 3 files changed, 45 insertions(+) create mode 100644 manifests/o/OpenDsc/Resources/Portable/0.5.1/OpenDsc.Resources.Portable.installer.yaml create mode 100644 manifests/o/OpenDsc/Resources/Portable/0.5.1/OpenDsc.Resources.Portable.locale.en-US.yaml create mode 100644 manifests/o/OpenDsc/Resources/Portable/0.5.1/OpenDsc.Resources.Portable.yaml diff --git a/manifests/o/OpenDsc/Resources/Portable/0.5.1/OpenDsc.Resources.Portable.installer.yaml b/manifests/o/OpenDsc/Resources/Portable/0.5.1/OpenDsc.Resources.Portable.installer.yaml new file mode 100644 index 000000000000..55b6be6d52cd --- /dev/null +++ b/manifests/o/OpenDsc/Resources/Portable/0.5.1/OpenDsc.Resources.Portable.installer.yaml @@ -0,0 +1,14 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: OpenDsc.Resources.Portable +PackageVersion: 0.5.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: OpenDsc.Resources.exe +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/opendsc/opendsc/releases/download/v0.5.1/OpenDSC.Resources.Windows.Portable-0.5.1.zip + InstallerSha256: 91B5C65D56C1A092E86521AD09AA18D7CC269E1932F69EAD177DEDC4C7D3D362 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenDsc/Resources/Portable/0.5.1/OpenDsc.Resources.Portable.locale.en-US.yaml b/manifests/o/OpenDsc/Resources/Portable/0.5.1/OpenDsc.Resources.Portable.locale.en-US.yaml new file mode 100644 index 000000000000..65583032d457 --- /dev/null +++ b/manifests/o/OpenDsc/Resources/Portable/0.5.1/OpenDsc.Resources.Portable.locale.en-US.yaml @@ -0,0 +1,24 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: OpenDsc.Resources.Portable +PackageVersion: 0.5.1 +PackageLocale: en-US +Publisher: OpenDsc +PublisherUrl: https://github.com/opendsc +PublisherSupportUrl: https://github.com/opendsc/opendsc/issues +PackageName: OpenDsc Resources Portable +PackageUrl: https://github.com/opendsc/opendsc +License: MIT +LicenseUrl: https://github.com/opendsc/opendsc/blob/main/LICENSE +ShortDescription: A comprehensive set of built-in DSC resources for Windows and cross-platform management (portable edition). +Description: |- + OpenDsc Resources Portable provides a comprehensive set of built-in DSC v3 resources for managing Windows and cross-platform systems. This is the portable (self-contained) edition that does not require a separate .NET runtime installation. Includes resources for managing environment variables, local groups, services, scheduled tasks, user accounts, user rights, shortcuts, optional features, security policies, file system ACLs, SQL Server, files, directories, symbolic links, JSON values, XML elements, and ZIP archives. +Tags: +- dsc +- configuration-management +- infrastructure-as-code +- portable +- windows +ReleaseNotesUrl: https://github.com/opendsc/opendsc/releases/tag/v0.5.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenDsc/Resources/Portable/0.5.1/OpenDsc.Resources.Portable.yaml b/manifests/o/OpenDsc/Resources/Portable/0.5.1/OpenDsc.Resources.Portable.yaml new file mode 100644 index 000000000000..5a6129125831 --- /dev/null +++ b/manifests/o/OpenDsc/Resources/Portable/0.5.1/OpenDsc.Resources.Portable.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: OpenDsc.Resources.Portable +PackageVersion: 0.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 7ba85b1582fcc7f7980622e2736a34a27f300736 Mon Sep 17 00:00:00 2001 From: Resistor Date: Fri, 27 Mar 2026 22:48:19 +0100 Subject: [PATCH 097/162] New package: TONresistor.TONBrowser version 1.5.3 (#352395) --- .../TONresistor.TONBrowser.installer.yaml | 15 +++++++++++++++ .../TONresistor.TONBrowser.locale.en-US.yaml | 19 +++++++++++++++++++ .../1.5.3/TONresistor.TONBrowser.yaml | 6 ++++++ 3 files changed, 40 insertions(+) create mode 100644 manifests/t/TONresistor/TONBrowser/1.5.3/TONresistor.TONBrowser.installer.yaml create mode 100644 manifests/t/TONresistor/TONBrowser/1.5.3/TONresistor.TONBrowser.locale.en-US.yaml create mode 100644 manifests/t/TONresistor/TONBrowser/1.5.3/TONresistor.TONBrowser.yaml diff --git a/manifests/t/TONresistor/TONBrowser/1.5.3/TONresistor.TONBrowser.installer.yaml b/manifests/t/TONresistor/TONBrowser/1.5.3/TONresistor.TONBrowser.installer.yaml new file mode 100644 index 000000000000..50a708a7bcc8 --- /dev/null +++ b/manifests/t/TONresistor/TONBrowser/1.5.3/TONresistor.TONBrowser.installer.yaml @@ -0,0 +1,15 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: TONresistor.TONBrowser +PackageVersion: 1.5.3 +InstallerType: nullsoft +Scope: user +InstallModes: + - silent + - silentWithProgress +UpgradeBehavior: install +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/TONresistor/Tonnet-Browser/releases/download/v1.5.3/TON.Browser.Setup.1.5.3.exe + InstallerSha256: 7daf857194fba15b00298fef7db2c7a6a9177db8eb365b9ea34c02c306fee4df +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/TONresistor/TONBrowser/1.5.3/TONresistor.TONBrowser.locale.en-US.yaml b/manifests/t/TONresistor/TONBrowser/1.5.3/TONresistor.TONBrowser.locale.en-US.yaml new file mode 100644 index 000000000000..be0ec610e855 --- /dev/null +++ b/manifests/t/TONresistor/TONBrowser/1.5.3/TONresistor.TONBrowser.locale.en-US.yaml @@ -0,0 +1,19 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: TONresistor.TONBrowser +PackageVersion: 1.5.3 +PackageLocale: en-US +Publisher: TON Browser Team +PublisherUrl: https://github.com/TONresistor +PackageName: TON Browser +PackageUrl: https://github.com/TONresistor/Tonnet-Browser +License: MIT +LicenseUrl: https://github.com/TONresistor/Tonnet-Browser/blob/main/LICENSE +ShortDescription: Native browser for the TON network +Tags: + - browser + - ton + - blockchain + - web3 + - privacy +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/TONresistor/TONBrowser/1.5.3/TONresistor.TONBrowser.yaml b/manifests/t/TONresistor/TONBrowser/1.5.3/TONresistor.TONBrowser.yaml new file mode 100644 index 000000000000..797a24be5cf7 --- /dev/null +++ b/manifests/t/TONresistor/TONBrowser/1.5.3/TONresistor.TONBrowser.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: TONresistor.TONBrowser +PackageVersion: 1.5.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From a8221ed5c851403560abbf3d30024531469e45af Mon Sep 17 00:00:00 2001 From: Jason Whittington Date: Fri, 27 Mar 2026 14:48:40 -0700 Subject: [PATCH 098/162] New package: jawhitti.INTERCAL64 version 2.0.0 (#352372) --- .../2.0.0/jawhitti.INTERCAL64.installer.yaml | 16 ++++++++++++++ .../jawhitti.INTERCAL64.locale.en-US.yaml | 21 +++++++++++++++++++ .../INTERCAL64/2.0.0/jawhitti.INTERCAL64.yaml | 6 ++++++ 3 files changed, 43 insertions(+) create mode 100644 manifests/j/jawhitti/INTERCAL64/2.0.0/jawhitti.INTERCAL64.installer.yaml create mode 100644 manifests/j/jawhitti/INTERCAL64/2.0.0/jawhitti.INTERCAL64.locale.en-US.yaml create mode 100644 manifests/j/jawhitti/INTERCAL64/2.0.0/jawhitti.INTERCAL64.yaml diff --git a/manifests/j/jawhitti/INTERCAL64/2.0.0/jawhitti.INTERCAL64.installer.yaml b/manifests/j/jawhitti/INTERCAL64/2.0.0/jawhitti.INTERCAL64.installer.yaml new file mode 100644 index 000000000000..fb435b9277ab --- /dev/null +++ b/manifests/j/jawhitti/INTERCAL64/2.0.0/jawhitti.INTERCAL64.installer.yaml @@ -0,0 +1,16 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +PackageIdentifier: jawhitti.INTERCAL64 +PackageVersion: 2.0.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: + - RelativeFilePath: bin\churn.exe + PortableCommandAlias: churn + - RelativeFilePath: bin\intercal64-dap.exe + PortableCommandAlias: intercal64-dap +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/jawhitti/INTERCAL64/releases/download/v2.0.0/intercal64-v2.0.0-win-x64.zip + InstallerSha256: 74ADCD5A2EA2A2A807D5F2DD642C3EF46F64B0F09AA9D88F62CBA3ACBD4F7ECC +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/j/jawhitti/INTERCAL64/2.0.0/jawhitti.INTERCAL64.locale.en-US.yaml b/manifests/j/jawhitti/INTERCAL64/2.0.0/jawhitti.INTERCAL64.locale.en-US.yaml new file mode 100644 index 000000000000..77aa1eb9f083 --- /dev/null +++ b/manifests/j/jawhitti/INTERCAL64/2.0.0/jawhitti.INTERCAL64.locale.en-US.yaml @@ -0,0 +1,21 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: jawhitti.INTERCAL64 +PackageVersion: 2.0.0 +PackageLocale: en-US +Publisher: jawhitti +PublisherUrl: https://github.com/jawhitti +PackageName: INTERCAL-64 +PackageUrl: https://github.com/jawhitti/INTERCAL64 +License: MIT +ShortDescription: "INTERCAL-64: a 64-bit INTERCAL compiler and runtime" +Description: |- + The biggest update to INTERCAL in over 25 years. 64-bit arithmetic, a complete + system library in pure INTERCAL, a real debugger in VS Code, and a compiler named + churn. Old dog. New ticks. +Tags: + - intercal + - compiler + - esoteric + - programming-language +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/j/jawhitti/INTERCAL64/2.0.0/jawhitti.INTERCAL64.yaml b/manifests/j/jawhitti/INTERCAL64/2.0.0/jawhitti.INTERCAL64.yaml new file mode 100644 index 000000000000..a5e0bfbd5d24 --- /dev/null +++ b/manifests/j/jawhitti/INTERCAL64/2.0.0/jawhitti.INTERCAL64.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +PackageIdentifier: jawhitti.INTERCAL64 +PackageVersion: 2.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From 5caa1ee961cf6fbdbefb74793728d6d3687dac64 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 06:03:50 +0800 Subject: [PATCH 099/162] New version: Microsoft.Teams.Free version 26072.401.4488.5256 (#353005) --- .../Microsoft.Teams.Free.installer.yaml | 27 ++++++++++++++ .../Microsoft.Teams.Free.locale.en-US.yaml | 37 +++++++++++++++++++ .../Microsoft.Teams.Free.locale.zh-CN.yaml | 36 ++++++++++++++++++ .../Microsoft.Teams.Free.yaml | 8 ++++ 4 files changed, 108 insertions(+) create mode 100644 manifests/m/Microsoft/Teams/Free/26072.401.4488.5256/Microsoft.Teams.Free.installer.yaml create mode 100644 manifests/m/Microsoft/Teams/Free/26072.401.4488.5256/Microsoft.Teams.Free.locale.en-US.yaml create mode 100644 manifests/m/Microsoft/Teams/Free/26072.401.4488.5256/Microsoft.Teams.Free.locale.zh-CN.yaml create mode 100644 manifests/m/Microsoft/Teams/Free/26072.401.4488.5256/Microsoft.Teams.Free.yaml diff --git a/manifests/m/Microsoft/Teams/Free/26072.401.4488.5256/Microsoft.Teams.Free.installer.yaml b/manifests/m/Microsoft/Teams/Free/26072.401.4488.5256/Microsoft.Teams.Free.installer.yaml new file mode 100644 index 000000000000..68c82107dcdf --- /dev/null +++ b/manifests/m/Microsoft/Teams/Free/26072.401.4488.5256/Microsoft.Teams.Free.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: Microsoft.Teams.Free +PackageVersion: 26072.401.4488.5256 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: msix +Scope: user +UpgradeBehavior: install +PackageFamilyName: MicrosoftTeams_8wekyb3d8bbwe +Installers: +- Architecture: x86 + InstallerUrl: https://statics.teams.cdn.live.net/production-windows-x86/26072.401.4488.5256/MicrosoftTeams-x86.msix + InstallerSha256: 00073F527AEFAC4708D9A0F02D2FABFE42CDC8D9DEF9943DD08109BF9C890E02 + SignatureSha256: 12510ADC8B51EB130E0040E57E066DF0A0DD6D5CC13DB722AE92089DC5032476 +- Architecture: x64 + InstallerUrl: https://statics.teams.cdn.live.net/production-windows-x64/26072.401.4488.5256/MicrosoftTeams-x64.msix + InstallerSha256: 6AB763B85356845163C6D9E38B45E49E4E59F0EBC6C98600962A3C3E8F3658AB + SignatureSha256: 654120BC50DEF6C6CE9A17F7334FF51342708F001018A41C12807CB35D179490 +- Architecture: arm64 + InstallerUrl: https://statics.teams.cdn.live.net/production-windows-arm64/26072.401.4488.5256/MicrosoftTeams-arm64.msix + InstallerSha256: 1DED47A9B9D0FE9C699FFB09CBCC9F9D8340B0BE5D28F7D404AD5710F805290E + SignatureSha256: 78F8DB098E0E1DB5396B17F38AA59EE843161237F86CFA259037C8ACE3FBF338 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/Teams/Free/26072.401.4488.5256/Microsoft.Teams.Free.locale.en-US.yaml b/manifests/m/Microsoft/Teams/Free/26072.401.4488.5256/Microsoft.Teams.Free.locale.en-US.yaml new file mode 100644 index 000000000000..d8fccd848e80 --- /dev/null +++ b/manifests/m/Microsoft/Teams/Free/26072.401.4488.5256/Microsoft.Teams.Free.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.Teams.Free +PackageVersion: 26072.401.4488.5256 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/ +PublisherSupportUrl: https://support.microsoft.com/teams +PrivacyUrl: https://privacy.microsoft.com/privacystatement +Author: Microsoft Corporation +PackageName: Microsoft Teams +PackageUrl: https://www.microsoft.com/microsoft-teams/group-chat-software +License: Proprietary +LicenseUrl: https://www.microsoft.com/legal/terms-of-use +Copyright: (c) Microsoft Corporation. All rights reserved. +CopyrightUrl: https://www.microsoft.com/legal/intellectualproperty/trademarks +ShortDescription: Collaborate more effectively with a faster, simpler, smarter, and more flexible Teams. +Description: Working together is easier with Microsoft Teams. Tools and files are always available in one place that's designed to help you connect naturally, stay organized and bring ideas to life. +Tags: +- call +- calling +- chat +- collaborate +- collaboration +- conferencing +- meet +- meeting +- team +- teams +- video +- video-conferencing +- voice +- voip +- webinar +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/Teams/Free/26072.401.4488.5256/Microsoft.Teams.Free.locale.zh-CN.yaml b/manifests/m/Microsoft/Teams/Free/26072.401.4488.5256/Microsoft.Teams.Free.locale.zh-CN.yaml new file mode 100644 index 000000000000..374e5ed0aa92 --- /dev/null +++ b/manifests/m/Microsoft/Teams/Free/26072.401.4488.5256/Microsoft.Teams.Free.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.Teams.Free +PackageVersion: 26072.401.4488.5256 +PackageLocale: zh-CN +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/ +PublisherSupportUrl: https://support.microsoft.com/zh-cn/teams +PrivacyUrl: https://privacy.microsoft.com/zh-cn/privacystatement +Author: Microsoft Corporation +PackageName: Microsoft Teams +PackageUrl: https://www.microsoft.com/zh-cn/microsoft-teams/group-chat-software +License: 专有软件 +LicenseUrl: https://www.microsoft.com/legal/terms-of-use +Copyright: (c) Microsoft Corporation. All rights reserved. +CopyrightUrl: https://www.microsoft.com/legal/intellectualproperty/trademarks +ShortDescription: 使用更快、更简单、更智能和更灵活的 Teams,更有效地进行协作。 +Description: Microsoft Teams 让协作更轻松。所有工具和文件都整合在一个位置,旨在帮助你轻松自如地建立联系、保持有序并将想法付诸于实践。 +Tags: +- teams +- voip +- 会议 +- 协作 +- 协同 +- 团队 +- 开会 +- 电话 +- 研讨会 +- 视频 +- 视频会议 +- 聊天 +- 语音 +- 通话 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/Teams/Free/26072.401.4488.5256/Microsoft.Teams.Free.yaml b/manifests/m/Microsoft/Teams/Free/26072.401.4488.5256/Microsoft.Teams.Free.yaml new file mode 100644 index 000000000000..8078fda7d8fe --- /dev/null +++ b/manifests/m/Microsoft/Teams/Free/26072.401.4488.5256/Microsoft.Teams.Free.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: Microsoft.Teams.Free +PackageVersion: 26072.401.4488.5256 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From bae169ecbbf6094938553f7534433ce619e828a9 Mon Sep 17 00:00:00 2001 From: UnownPlain Date: Fri, 27 Mar 2026 18:05:09 -0400 Subject: [PATCH 100/162] New version: JetBrains.dotPeek version 2025.3.4 (#353062) --- .../2025.3.4/JetBrains.dotPeek.installer.yaml | 28 +++++++++++++++++++ .../JetBrains.dotPeek.locale.en-US.yaml | 20 +++++++++++++ .../dotPeek/2025.3.4/JetBrains.dotPeek.yaml | 8 ++++++ 3 files changed, 56 insertions(+) create mode 100644 manifests/j/JetBrains/dotPeek/2025.3.4/JetBrains.dotPeek.installer.yaml create mode 100644 manifests/j/JetBrains/dotPeek/2025.3.4/JetBrains.dotPeek.locale.en-US.yaml create mode 100644 manifests/j/JetBrains/dotPeek/2025.3.4/JetBrains.dotPeek.yaml diff --git a/manifests/j/JetBrains/dotPeek/2025.3.4/JetBrains.dotPeek.installer.yaml b/manifests/j/JetBrains/dotPeek/2025.3.4/JetBrains.dotPeek.installer.yaml new file mode 100644 index 000000000000..bae9e4cd9989 --- /dev/null +++ b/manifests/j/JetBrains/dotPeek/2025.3.4/JetBrains.dotPeek.installer.yaml @@ -0,0 +1,28 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: JetBrains.dotPeek +PackageVersion: 2025.3.4 +InstallerType: exe +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /Silent=True + SilentWithProgress: /Silent=True + Log: /LogFile="" +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://download.jetbrains.com/resharper/dotUltimate.2025.3.4/JetBrains.dotPeek.2025.3.4.web.exe + InstallerSha256: C3C826DEA87C4037BD3083D5655015BFFE1AC1A91778B70E742439DEF4261D8D +- Architecture: x86 + Scope: machine + InstallerUrl: https://download.jetbrains.com/resharper/dotUltimate.2025.3.4/JetBrains.dotPeek.2025.3.4.web.exe + InstallerSha256: C3C826DEA87C4037BD3083D5655015BFFE1AC1A91778B70E742439DEF4261D8D + InstallerSwitches: + Custom: /PerMachine=True + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/dotPeek/2025.3.4/JetBrains.dotPeek.locale.en-US.yaml b/manifests/j/JetBrains/dotPeek/2025.3.4/JetBrains.dotPeek.locale.en-US.yaml new file mode 100644 index 000000000000..0ecd6a55de68 --- /dev/null +++ b/manifests/j/JetBrains/dotPeek/2025.3.4/JetBrains.dotPeek.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: JetBrains.dotPeek +PackageVersion: 2025.3.4 +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 dotPeek +PackageUrl: https://www.jetbrains.com/profiler/ +License: Proprietary +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2025 JetBrains s.r.o. +ShortDescription: .NET performance profiler +PurchaseUrl: https://www.jetbrains.com/store/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/dotPeek/2025.3.4/JetBrains.dotPeek.yaml b/manifests/j/JetBrains/dotPeek/2025.3.4/JetBrains.dotPeek.yaml new file mode 100644 index 000000000000..54f54975d968 --- /dev/null +++ b/manifests/j/JetBrains/dotPeek/2025.3.4/JetBrains.dotPeek.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: JetBrains.dotPeek +PackageVersion: 2025.3.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 2bb770e438cdd4ab4a86511bfcec2ac2024d1b6e Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 06:06:25 +0800 Subject: [PATCH 101/162] New version: KDE.Filelight version 26.03.90 (26.04-2056) (#353066) --- .../26.03.90/KDE.Filelight.installer.yaml | 23 +++++++++++ .../26.03.90/KDE.Filelight.locale.en-US.yaml | 38 +++++++++++++++++++ .../26.03.90/KDE.Filelight.locale.zh-CN.yaml | 28 ++++++++++++++ .../KDE/Filelight/26.03.90/KDE.Filelight.yaml | 8 ++++ 4 files changed, 97 insertions(+) create mode 100644 manifests/k/KDE/Filelight/26.03.90/KDE.Filelight.installer.yaml create mode 100644 manifests/k/KDE/Filelight/26.03.90/KDE.Filelight.locale.en-US.yaml create mode 100644 manifests/k/KDE/Filelight/26.03.90/KDE.Filelight.locale.zh-CN.yaml create mode 100644 manifests/k/KDE/Filelight/26.03.90/KDE.Filelight.yaml diff --git a/manifests/k/KDE/Filelight/26.03.90/KDE.Filelight.installer.yaml b/manifests/k/KDE/Filelight/26.03.90/KDE.Filelight.installer.yaml new file mode 100644 index 000000000000..e8955c6f870b --- /dev/null +++ b/manifests/k/KDE/Filelight/26.03.90/KDE.Filelight.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.Filelight +PackageVersion: 26.03.90 +InstallerType: nullsoft +UpgradeBehavior: install +ProductCode: Filelight +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://cdn.kde.org/ci-builds/utilities/filelight/release-26.04/windows/filelight-release_26.04-2056-windows-cl-msvc2022-x86_64.exe + InstallerSha256: EAA1CCBAF6087F2A237F2D0B4B2D5C8F9359FB73C186E06C3962AC9C9CDB9C6C + InstallerSwitches: + Custom: /CurrentUser +- Architecture: x64 + Scope: machine + InstallerUrl: https://cdn.kde.org/ci-builds/utilities/filelight/release-26.04/windows/filelight-release_26.04-2056-windows-cl-msvc2022-x86_64.exe + InstallerSha256: EAA1CCBAF6087F2A237F2D0B4B2D5C8F9359FB73C186E06C3962AC9C9CDB9C6C + InstallerSwitches: + Custom: /AllUsers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/k/KDE/Filelight/26.03.90/KDE.Filelight.locale.en-US.yaml b/manifests/k/KDE/Filelight/26.03.90/KDE.Filelight.locale.en-US.yaml new file mode 100644 index 000000000000..7e5f7216d044 --- /dev/null +++ b/manifests/k/KDE/Filelight/26.03.90/KDE.Filelight.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: KDE.Filelight +PackageVersion: 26.03.90 +PackageLocale: en-US +Publisher: KDE e.V. +PublisherUrl: https://kde.org/ +PublisherSupportUrl: https://kde.org/support/ +PrivacyUrl: https://kde.org/privacypolicy/ +Author: KDE e.V. +PackageName: Filelight +PackageUrl: https://apps.kde.org/filelight/ +License: GPL-2.0-or-later +LicenseUrl: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html +Copyright: |- + (C)2006 Max Howell + (C)2008-2014 Martin Sandsmark + (C)2017-2026 Harald Sitter +ShortDescription: Disk Usage Statistics +Description: |- + Filelight is an application to visualize the disk usage on your computer by showing folders using an easy-to-understand view of concentric rings. Filelight makes it simple to free up space! + Features: + - Scan local, remote, or removable disks + - View detailed information about files and folders + - Delete files or folders that are taking up too much space + - Integration into the Dolphin, Konqueror, and Krusader file managers + - Configurable color schemes +Tags: +- disk-analyzer +- file-scanner +- space-analyzer +- storage-scanner +Documentations: +- DocumentLabel: Handbook + DocumentUrl: https://docs.kde.org/?application=filelight +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/k/KDE/Filelight/26.03.90/KDE.Filelight.locale.zh-CN.yaml b/manifests/k/KDE/Filelight/26.03.90/KDE.Filelight.locale.zh-CN.yaml new file mode 100644 index 000000000000..21d6e73d82ea --- /dev/null +++ b/manifests/k/KDE/Filelight/26.03.90/KDE.Filelight.locale.zh-CN.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: KDE.Filelight +PackageVersion: 26.03.90 +PackageLocale: zh-CN +PublisherUrl: https://kde.org/zh-cn/ +PublisherSupportUrl: https://kde.org/zh-cn/support/ +PackageUrl: https://apps.kde.org/zh-cn/filelight/ +ShortDescription: 磁盘占用查看器 +Description: |- + Filelight 是一款以图形化方式显示电脑磁盘使用情况的应用程序。它通过多层同心圆示意图来显示文件夹结构,易于理解。Filelight 让释放存储空间变得简单易行! + 功能: + - 扫描本地、远程或可移动磁盘 + - 查看文件和文件夹的详细信息 + - 删除占用过多存储空间的文件和文件夹 + - 与 Dolphin、Konqueror 和 Krusader 等文件管理器集成使用 + - 可自定义的配色方案 +Tags: +- 存储扫描器 +- 文件扫描器 +- 磁盘分析器 +- 空间分析器 +Documentations: +- DocumentLabel: 手册 + DocumentUrl: https://docs.kde.org/?application=filelight +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/k/KDE/Filelight/26.03.90/KDE.Filelight.yaml b/manifests/k/KDE/Filelight/26.03.90/KDE.Filelight.yaml new file mode 100644 index 000000000000..f4b59e4e6bdf --- /dev/null +++ b/manifests/k/KDE/Filelight/26.03.90/KDE.Filelight.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.Filelight +PackageVersion: 26.03.90 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From e5f2bc6c911e17e68fd9f48e22414f79f6be0d13 Mon Sep 17 00:00:00 2001 From: upintheairsheep <43690204+upintheairsheep@users.noreply.github.com> Date: Fri, 27 Mar 2026 15:22:16 -0700 Subject: [PATCH 102/162] New package: QQ.RobloxStudioCN version 1.6.2.7020633 (#352893) --- .../QQ.RobloxStudioCN.installer.yaml | 15 +++++++++++++++ .../QQ.RobloxStudioCN.locale.en-US.yaml | 13 +++++++++++++ .../1.6.2.7020633/QQ.RobloxStudioCN.yaml | 8 ++++++++ 3 files changed, 36 insertions(+) create mode 100644 manifests/q/QQ/RobloxStudioCN/1.6.2.7020633/QQ.RobloxStudioCN.installer.yaml create mode 100644 manifests/q/QQ/RobloxStudioCN/1.6.2.7020633/QQ.RobloxStudioCN.locale.en-US.yaml create mode 100644 manifests/q/QQ/RobloxStudioCN/1.6.2.7020633/QQ.RobloxStudioCN.yaml diff --git a/manifests/q/QQ/RobloxStudioCN/1.6.2.7020633/QQ.RobloxStudioCN.installer.yaml b/manifests/q/QQ/RobloxStudioCN/1.6.2.7020633/QQ.RobloxStudioCN.installer.yaml new file mode 100644 index 000000000000..a41cd37e9117 --- /dev/null +++ b/manifests/q/QQ/RobloxStudioCN/1.6.2.7020633/QQ.RobloxStudioCN.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: QQ.RobloxStudioCN +PackageVersion: 1.6.2.7020633 +InstallerType: exe +InstallerSwitches: + Silent: /S + SilentWithProgress: /s +Installers: +- Architecture: x86 + InstallerUrl: https://setup.c.robloxdev.cn/cjv/RobloxStudioInstallerCJV.exe + InstallerSha256: 6418C4A6F7969066EC97A1DFB7BEDD5A284DC6FEA4C179DF2C29ACA26165DB46 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/q/QQ/RobloxStudioCN/1.6.2.7020633/QQ.RobloxStudioCN.locale.en-US.yaml b/manifests/q/QQ/RobloxStudioCN/1.6.2.7020633/QQ.RobloxStudioCN.locale.en-US.yaml new file mode 100644 index 000000000000..70292ddd813b --- /dev/null +++ b/manifests/q/QQ/RobloxStudioCN/1.6.2.7020633/QQ.RobloxStudioCN.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: QQ.RobloxStudioCN +PackageVersion: 1.6.2.7020633 +PackageLocale: en-US +Publisher: Roblox Corporation (China), QQ +PackageName: Roblox Studio (PRC) +License: Proprietary +Copyright: Copyright © 2020 Roblox Corporation. All rights reserved. +ShortDescription: 使用我们免费的沉浸式创作引擎,创作出你想象得到的 一切!你也可以在这里和全球优秀的创作者交流。 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/q/QQ/RobloxStudioCN/1.6.2.7020633/QQ.RobloxStudioCN.yaml b/manifests/q/QQ/RobloxStudioCN/1.6.2.7020633/QQ.RobloxStudioCN.yaml new file mode 100644 index 000000000000..f017028efb79 --- /dev/null +++ b/manifests/q/QQ/RobloxStudioCN/1.6.2.7020633/QQ.RobloxStudioCN.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: QQ.RobloxStudioCN +PackageVersion: 1.6.2.7020633 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 300d7a0f0dccb519b3d04a427d140af533b79db8 Mon Sep 17 00:00:00 2001 From: copilot-cli-winget-bot Date: Fri, 27 Mar 2026 18:26:25 -0400 Subject: [PATCH 103/162] GitHub.Copilot.Prerelease version v1.0.13-1 (#353071) --- .../GitHub.Copilot.Prerelease.installer.yaml | 23 +++++++++++++++ ...itHub.Copilot.Prerelease.locale.en-US.yaml | 29 +++++++++++++++++++ .../v1.0.13-1/GitHub.Copilot.Prerelease.yaml | 8 +++++ 3 files changed, 60 insertions(+) create mode 100644 manifests/g/GitHub/Copilot/Prerelease/v1.0.13-1/GitHub.Copilot.Prerelease.installer.yaml create mode 100644 manifests/g/GitHub/Copilot/Prerelease/v1.0.13-1/GitHub.Copilot.Prerelease.locale.en-US.yaml create mode 100644 manifests/g/GitHub/Copilot/Prerelease/v1.0.13-1/GitHub.Copilot.Prerelease.yaml diff --git a/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-1/GitHub.Copilot.Prerelease.installer.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-1/GitHub.Copilot.Prerelease.installer.yaml new file mode 100644 index 000000000000..1df8f08c3cda --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-1/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.13-1 +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.13-1/copilot-win32-x64.zip + InstallerSha256: EF67B94BDC0639DB817E317874317D30F455B37506A7CED0AD9C4EE9A6579019 +- Architecture: arm64 + InstallerUrl: https://github.com/github/copilot-cli/releases/download/v1.0.13-1/copilot-win32-arm64.zip + InstallerSha256: D36C8E9599C8E54DA0698812245186AC28E0D2D596FFC48702047F301C51B335 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-27 diff --git a/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-1/GitHub.Copilot.Prerelease.locale.en-US.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-1/GitHub.Copilot.Prerelease.locale.en-US.yaml new file mode 100644 index 000000000000..9f1ad74f5a2e --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-1/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.13-1 +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.13-1 +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.13-1/GitHub.Copilot.Prerelease.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-1/GitHub.Copilot.Prerelease.yaml new file mode 100644 index 000000000000..a3f16d4893c4 --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-1/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.13-1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 604ee8eee4d925074cad2048a3980f299ac70b5a Mon Sep 17 00:00:00 2001 From: leic4u <32786903+leic4u@users.noreply.github.com> Date: Sat, 28 Mar 2026 06:32:14 +0800 Subject: [PATCH 104/162] New package: 1sj.rrysj version 3.1.4 (#352292) --- .../1sj/rrysj/3.1.4/1sj.rrysj.installer.yaml | 29 +++++++++++++++++++ .../rrysj/3.1.4/1sj.rrysj.locale.zh-CN.yaml | 22 ++++++++++++++ manifests/1/1sj/rrysj/3.1.4/1sj.rrysj.yaml | 8 +++++ 3 files changed, 59 insertions(+) create mode 100644 manifests/1/1sj/rrysj/3.1.4/1sj.rrysj.installer.yaml create mode 100644 manifests/1/1sj/rrysj/3.1.4/1sj.rrysj.locale.zh-CN.yaml create mode 100644 manifests/1/1sj/rrysj/3.1.4/1sj.rrysj.yaml diff --git a/manifests/1/1sj/rrysj/3.1.4/1sj.rrysj.installer.yaml b/manifests/1/1sj/rrysj/3.1.4/1sj.rrysj.installer.yaml new file mode 100644 index 000000000000..e5bc1e75e1cd --- /dev/null +++ b/manifests/1/1sj/rrysj/3.1.4/1sj.rrysj.installer.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: 1sj.rrysj +PackageVersion: 3.1.4 +InstallerType: exe +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /silent + SilentWithProgress: /silent +UpgradeBehavior: install +ProductCode: '{8EB86E9F-9120-43CF-9D1B-2810CD854BCD}_is1' +ReleaseDate: 2024-07-01 +AppsAndFeaturesEntries: +- DisplayName: ysj 3.1.4 + ProductCode: '{8EB86E9F-9120-43CF-9D1B-2810CD854BCD}_is1' +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + InstallerUrl: https://api.1sj.tv/mainpage/downloadProgram?type=3 + InstallerSha256: 10F20E104669CC1F89847449A020CFAEB487DD369853EACA43E8F4EF2596D370 +- Architecture: x64 + InstallerUrl: https://api.1sj.tv/mainpage/downloadProgram?type=5 + InstallerSha256: 3972966C1C97B92DDCC4BCB9C2AA4CDA0BE5A37AC6AB9FB238672450BA09E11E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/1/1sj/rrysj/3.1.4/1sj.rrysj.locale.zh-CN.yaml b/manifests/1/1sj/rrysj/3.1.4/1sj.rrysj.locale.zh-CN.yaml new file mode 100644 index 000000000000..2be00250ddf6 --- /dev/null +++ b/manifests/1/1sj/rrysj/3.1.4/1sj.rrysj.locale.zh-CN.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: 1sj.rrysj +PackageVersion: 3.1.4 +PackageLocale: zh-CN +Publisher: 武汉译满天下科技有限公司 +PublisherUrl: https://www.1sj.tv/ +PublisherSupportUrl: https://www.1sj.tv/html/help/index.html +Author: RRYSJ +PackageName: 人人译视界 +PackageUrl: https://www.1sj.tv/html/support/down-load.html +License: Proprietary +Copyright: Copyright © 2017-2023 武汉译满天下科技有限公司 +ShortDescription: 一个省心省力的字幕编辑 + 翻译 + 视频后期制作工具 +Moniker: ysj +Tags: +- encode +- subtitle +- translate +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/1/1sj/rrysj/3.1.4/1sj.rrysj.yaml b/manifests/1/1sj/rrysj/3.1.4/1sj.rrysj.yaml new file mode 100644 index 000000000000..5eacc3e9ad18 --- /dev/null +++ b/manifests/1/1sj/rrysj/3.1.4/1sj.rrysj.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: 1sj.rrysj +PackageVersion: 3.1.4 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 From 13f5c135557290976ec87cb899d63b798b760d4b Mon Sep 17 00:00:00 2001 From: rizuki Date: Sat, 28 Mar 2026 05:34:46 +0700 Subject: [PATCH 105/162] New package: rizukirr.Muslimtify version 0.2.0 (#352896) --- .../0.2.0/rizukirr.Muslimtify.installer.yaml | 13 ++++++++ .../rizukirr.Muslimtify.locale.en-US.yaml | 31 +++++++++++++++++++ .../Muslimtify/0.2.0/rizukirr.Muslimtify.yaml | 8 +++++ 3 files changed, 52 insertions(+) create mode 100644 manifests/r/rizukirr/Muslimtify/0.2.0/rizukirr.Muslimtify.installer.yaml create mode 100644 manifests/r/rizukirr/Muslimtify/0.2.0/rizukirr.Muslimtify.locale.en-US.yaml create mode 100644 manifests/r/rizukirr/Muslimtify/0.2.0/rizukirr.Muslimtify.yaml diff --git a/manifests/r/rizukirr/Muslimtify/0.2.0/rizukirr.Muslimtify.installer.yaml b/manifests/r/rizukirr/Muslimtify/0.2.0/rizukirr.Muslimtify.installer.yaml new file mode 100644 index 000000000000..a826d5cbe621 --- /dev/null +++ b/manifests/r/rizukirr/Muslimtify/0.2.0/rizukirr.Muslimtify.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: rizukirr.Muslimtify +PackageVersion: 0.2.0 +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/rizukirr/muslimtify/releases/download/v0.2.0/muslimtify-0.2.0-setup.exe + InstallerSha256: 275163C607690CE42A978B7558363753E8922F21E58CCE93DFDCAFD232B90814 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-27 diff --git a/manifests/r/rizukirr/Muslimtify/0.2.0/rizukirr.Muslimtify.locale.en-US.yaml b/manifests/r/rizukirr/Muslimtify/0.2.0/rizukirr.Muslimtify.locale.en-US.yaml new file mode 100644 index 000000000000..ec7a2ba8e25d --- /dev/null +++ b/manifests/r/rizukirr/Muslimtify/0.2.0/rizukirr.Muslimtify.locale.en-US.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: rizukirr.Muslimtify +PackageVersion: 0.2.0 +PackageLocale: en-US +Publisher: rizukirr +PublisherUrl: https://github.com/rizukirr +PublisherSupportUrl: https://github.com/rizukirr/muslimtify/issues +PackageName: Muslimtify +PackageUrl: https://github.com/rizukirr/muslimtify +License: MIT +ShortDescription: An Islamic prayer time notification daemon for Windows +Tags: +- c-language +- cross-platform +- daemon +- linux +- muslim-prayer-times +- muslims-prayer +- notification +- systemd +- windows +- windows-app +- windows-desktop +ReleaseNotesUrl: https://github.com/rizukirr/muslimtify/releases/tag/v0.2.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/rizukirr/muslimtify/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/rizukirr/Muslimtify/0.2.0/rizukirr.Muslimtify.yaml b/manifests/r/rizukirr/Muslimtify/0.2.0/rizukirr.Muslimtify.yaml new file mode 100644 index 000000000000..3ef43c4e56a4 --- /dev/null +++ b/manifests/r/rizukirr/Muslimtify/0.2.0/rizukirr.Muslimtify.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: rizukirr.Muslimtify +PackageVersion: 0.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From ba73852e5e2d4d72be7b628ec2b163dc2e9b028a Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 06:39:33 +0800 Subject: [PATCH 106/162] New version: Microsoft.XMLNotepad version 2.9.0.20 (#353079) --- .../Microsoft.XMLNotepad.installer.yaml | 39 +++++++++++++++++++ .../Microsoft.XMLNotepad.locale.en-US.yaml | 33 ++++++++++++++++ .../Microsoft.XMLNotepad.locale.zh-CN.yaml | 18 +++++++++ .../2.9.0.20/Microsoft.XMLNotepad.yaml | 8 ++++ 4 files changed, 98 insertions(+) create mode 100644 manifests/m/Microsoft/XMLNotepad/2.9.0.20/Microsoft.XMLNotepad.installer.yaml create mode 100644 manifests/m/Microsoft/XMLNotepad/2.9.0.20/Microsoft.XMLNotepad.locale.en-US.yaml create mode 100644 manifests/m/Microsoft/XMLNotepad/2.9.0.20/Microsoft.XMLNotepad.locale.zh-CN.yaml create mode 100644 manifests/m/Microsoft/XMLNotepad/2.9.0.20/Microsoft.XMLNotepad.yaml diff --git a/manifests/m/Microsoft/XMLNotepad/2.9.0.20/Microsoft.XMLNotepad.installer.yaml b/manifests/m/Microsoft/XMLNotepad/2.9.0.20/Microsoft.XMLNotepad.installer.yaml new file mode 100644 index 000000000000..0ed29b828ff6 --- /dev/null +++ b/manifests/m/Microsoft/XMLNotepad/2.9.0.20/Microsoft.XMLNotepad.installer.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.XMLNotepad +PackageVersion: 2.9.0.20 +UpgradeBehavior: install +FileExtensions: +- xml +ReleaseDate: 2026-03-27 +Installers: +- Platform: + - Windows.Desktop + - Windows.Universal + MinimumOSVersion: 10.0.17763.0 + Architecture: neutral + InstallerType: msix + InstallerUrl: https://github.com/microsoft/XmlNotepad/releases/download/2.9.0.20/XmlNotepadPackage_2.9.0.20_AnyCPU.msixbundle + InstallerSha256: 8C29EDEEC3673DFEE498F19E0F21D88ABC6501A8EA956A6CDBDCAA98953FB38D + SignatureSha256: 2B597D8487F8C271B3A27A9492EBCB2C121B3B0D65E71FC5E69E89C5ED8C4A86 + PackageFamilyName: 43906ChrisLovett.XmlNotepad_hndwmj480pefj +- InstallerLocale: en-US + Architecture: x86 + InstallerType: zip + NestedInstallerType: wix + NestedInstallerFiles: + - RelativeFilePath: XmlNotepadSetup.msi + InstallerUrl: https://github.com/microsoft/XmlNotepad/releases/download/2.9.0.20/XmlNotepadSetup.zip + InstallerSha256: 06B7CB9BA0A9542B4CED52A1759E4BCE962A0C9962C9CDC3B65908A6EC82BF84 + InstallerSwitches: + InstallLocation: APPINSTALLROOTDIR="" + ProductCode: '{163CEC45-8F02-40DB-AB86-8B9FE98B86A5}' + AppsAndFeaturesEntries: + - DisplayName: XmlNotepad + Publisher: Lovett Software + DisplayVersion: 2.9.0.20 + ProductCode: '{163CEC45-8F02-40DB-AB86-8B9FE98B86A5}' + UpgradeCode: '{14C1B5E8-3198-4AF2-B4BC-351017A109D3}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/XMLNotepad/2.9.0.20/Microsoft.XMLNotepad.locale.en-US.yaml b/manifests/m/Microsoft/XMLNotepad/2.9.0.20/Microsoft.XMLNotepad.locale.en-US.yaml new file mode 100644 index 000000000000..dd1fd9f6f7f4 --- /dev/null +++ b/manifests/m/Microsoft/XMLNotepad/2.9.0.20/Microsoft.XMLNotepad.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: Microsoft.XMLNotepad +PackageVersion: 2.9.0.20 +PackageLocale: en-US +Publisher: Chris Lovett +PublisherUrl: https://github.com/microsoft/XmlNotepad +PublisherSupportUrl: https://github.com/microsoft/XmlNotepad/issues +PrivacyUrl: https://privacy.microsoft.com/privacystatement +Author: Chris Lovett +PackageName: XmlNotepad +PackageUrl: https://microsoft.github.io/XmlNotepad/ +License: MIT +LicenseUrl: https://github.com/microsoft/XmlNotepad/blob/HEAD/LICENSE +Copyright: © 2026 Microsoft Corporation. All Rights Reserved. +CopyrightUrl: https://www.microsoft.com/legal/intellectualproperty/trademarks +ShortDescription: XML Notepad provides a simple intuitive User Interface for browsing and editing XML documents. +Description: XML Notepad is the result of a promise Chris Lovett made to a friend at Microsoft. The original XML Notepad shipped in back in 1998, written by Murray Low in C++. Later on it fell behind in support for XML standards and, because we didn't have time to fix it, we pulled the downloader. But Murray apparently did such a nice job that MSDN was inundated with requests to put the notepad back up, so they asked for a replacement. +Moniker: xmlnotepad +Tags: +- extensible-markup-language +- xml +- xml-editor +- xml-files +- xml-statistics +ReleaseNotes: Fix issue security advisory on DTD processing. Make default Ignore DTD option True, which is more secure. +ReleaseNotesUrl: https://github.com/microsoft/XmlNotepad/releases/tag/2.9.0.20 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/microsoft/XmlNotepad/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/XMLNotepad/2.9.0.20/Microsoft.XMLNotepad.locale.zh-CN.yaml b/manifests/m/Microsoft/XMLNotepad/2.9.0.20/Microsoft.XMLNotepad.locale.zh-CN.yaml new file mode 100644 index 000000000000..3dbbacefbd9d --- /dev/null +++ b/manifests/m/Microsoft/XMLNotepad/2.9.0.20/Microsoft.XMLNotepad.locale.zh-CN.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: Microsoft.XMLNotepad +PackageVersion: 2.9.0.20 +PackageLocale: zh-CN +PrivacyUrl: https://privacy.microsoft.com/zh-cn/privacystatement +ShortDescription: XML Notepad 为浏览和编辑 XML 文档提供了一个简单直观的用户界面。 +Description: XML Notepad 源自 Chris Lovett 对一位微软的朋友的承诺。最初的 XML Notepad 由 Murray Low 用 C++ 编写,于 1998 年推出。后来,它在支持 XML 标准方面落后了,由于我们没有时间来修复它,所以就撤下了下载程序。但 Murray 的工作非常出色,以至于 MSDN 收到了大量恢复请求,因此他们要求有一个替代品。 +Tags: +- xml +- xml文件 +- xml统计 +- xml编辑器 +- 可扩展标记语言 +ReleaseNotesUrl: https://github.com/microsoft/XmlNotepad/releases/tag/2.9.0.20 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/XMLNotepad/2.9.0.20/Microsoft.XMLNotepad.yaml b/manifests/m/Microsoft/XMLNotepad/2.9.0.20/Microsoft.XMLNotepad.yaml new file mode 100644 index 000000000000..5ab4b19ad1d9 --- /dev/null +++ b/manifests/m/Microsoft/XMLNotepad/2.9.0.20/Microsoft.XMLNotepad.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: Microsoft.XMLNotepad +PackageVersion: 2.9.0.20 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From f8f23e00166c4a17ece250881aa047208776d0be Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 06:41:00 +0800 Subject: [PATCH 107/162] New version: RubyInstallerTeam.Ruby.3.2 version 3.2.11-1 (#353081) --- .../RubyInstallerTeam.Ruby.3.2.installer.yaml | 53 +++++++++++++++++++ ...byInstallerTeam.Ruby.3.2.locale.en-US.yaml | 34 ++++++++++++ ...byInstallerTeam.Ruby.3.2.locale.zh-CN.yaml | 15 ++++++ .../3.2.11-1/RubyInstallerTeam.Ruby.3.2.yaml | 8 +++ 4 files changed, 110 insertions(+) create mode 100644 manifests/r/RubyInstallerTeam/Ruby/3/2/3.2.11-1/RubyInstallerTeam.Ruby.3.2.installer.yaml create mode 100644 manifests/r/RubyInstallerTeam/Ruby/3/2/3.2.11-1/RubyInstallerTeam.Ruby.3.2.locale.en-US.yaml create mode 100644 manifests/r/RubyInstallerTeam/Ruby/3/2/3.2.11-1/RubyInstallerTeam.Ruby.3.2.locale.zh-CN.yaml create mode 100644 manifests/r/RubyInstallerTeam/Ruby/3/2/3.2.11-1/RubyInstallerTeam.Ruby.3.2.yaml diff --git a/manifests/r/RubyInstallerTeam/Ruby/3/2/3.2.11-1/RubyInstallerTeam.Ruby.3.2.installer.yaml b/manifests/r/RubyInstallerTeam/Ruby/3/2/3.2.11-1/RubyInstallerTeam.Ruby.3.2.installer.yaml new file mode 100644 index 000000000000..dc42210ff97f --- /dev/null +++ b/manifests/r/RubyInstallerTeam/Ruby/3/2/3.2.11-1/RubyInstallerTeam.Ruby.3.2.installer.yaml @@ -0,0 +1,53 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: RubyInstallerTeam.Ruby.3.2 +PackageVersion: 3.2.11-1 +InstallerType: inno +UpgradeBehavior: install +Commands: +- ruby +- rubyw +FileExtensions: +- rb +- rbw +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-3.2.11-1/rubyinstaller-3.2.11-1-x86.exe + InstallerSha256: E0713F410B875A113D45C979EB8CB9A4A8851091421F821E64C3FC65E03F025F + InstallerSwitches: + Custom: /CURRENTUSER + ProductCode: RubyInstaller-3.2-i386-mingw32_is1 + AppsAndFeaturesEntries: + - DisplayName: Ruby 3.2.11-1-x86 +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-3.2.11-1/rubyinstaller-3.2.11-1-x86.exe + InstallerSha256: E0713F410B875A113D45C979EB8CB9A4A8851091421F821E64C3FC65E03F025F + InstallerSwitches: + Custom: /ALLUSERS + ProductCode: RubyInstaller-3.2-i386-mingw32_is1 + AppsAndFeaturesEntries: + - DisplayName: Ruby 3.2.11-1-x86 +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-3.2.11-1/rubyinstaller-3.2.11-1-x64.exe + InstallerSha256: 4FA87EC631885FF70AAC503BFF7BBCDD8BD08483A357EA4B0CEE14644FE1A902 + InstallerSwitches: + Custom: /CURRENTUSER + ProductCode: RubyInstaller-3.2-x64-mingw-ucrt_is1 + AppsAndFeaturesEntries: + - DisplayName: Ruby 3.2.11-1-x64 +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-3.2.11-1/rubyinstaller-3.2.11-1-x64.exe + InstallerSha256: 4FA87EC631885FF70AAC503BFF7BBCDD8BD08483A357EA4B0CEE14644FE1A902 + InstallerSwitches: + Custom: /ALLUSERS + ProductCode: RubyInstaller-3.2-x64-mingw-ucrt_is1 + AppsAndFeaturesEntries: + - DisplayName: Ruby 3.2.11-1-x64 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/RubyInstallerTeam/Ruby/3/2/3.2.11-1/RubyInstallerTeam.Ruby.3.2.locale.en-US.yaml b/manifests/r/RubyInstallerTeam/Ruby/3/2/3.2.11-1/RubyInstallerTeam.Ruby.3.2.locale.en-US.yaml new file mode 100644 index 000000000000..c2e9d16e14b0 --- /dev/null +++ b/manifests/r/RubyInstallerTeam/Ruby/3/2/3.2.11-1/RubyInstallerTeam.Ruby.3.2.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: RubyInstallerTeam.Ruby.3.2 +PackageVersion: 3.2.11-1 +PackageLocale: en-US +Publisher: RubyInstaller Team +PublisherUrl: https://rubyinstaller.org/ +PublisherSupportUrl: https://github.com/oneclick/rubyinstaller2/issues +PackageName: Ruby 3.2 +PackageUrl: https://rubyinstaller.org/downloads/ +License: BSD-3-Clause +LicenseUrl: https://github.com/oneclick/rubyinstaller2/blob/HEAD/LICENSE.txt +Copyright: Copyright (c) 2007-2026, RubyInstaller Team. All rights reserved. +ShortDescription: The Ruby language execution environment +Description: The RubyInstaller project provides a self-contained Windows-based installer that includes a Ruby-language execution environment and a baseline set of required RubyGems and extensions. +Moniker: ruby3-2 +Tags: +- language +- programming +- programming-language +- ruby +ReleaseNotes: |- + Added + - Add more text to the startmenu buttons and more color to outputs. + Changed + - Update to ruby-3.2.11, see release notes. + - Update the SSL CA certificate list. +ReleaseNotesUrl: https://github.com/oneclick/rubyinstaller2/releases/tag/RubyInstaller-3.2.11-1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/oneclick/rubyinstaller2/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RubyInstallerTeam/Ruby/3/2/3.2.11-1/RubyInstallerTeam.Ruby.3.2.locale.zh-CN.yaml b/manifests/r/RubyInstallerTeam/Ruby/3/2/3.2.11-1/RubyInstallerTeam.Ruby.3.2.locale.zh-CN.yaml new file mode 100644 index 000000000000..f4df82afb10a --- /dev/null +++ b/manifests/r/RubyInstallerTeam/Ruby/3/2/3.2.11-1/RubyInstallerTeam.Ruby.3.2.locale.zh-CN.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: RubyInstallerTeam.Ruby.3.2 +PackageVersion: 3.2.11-1 +PackageLocale: zh-CN +ShortDescription: Ruby 语言运行环境 +Description: RubyInstaller 项目提供一个独立的基于 Windows 的安装包,其中包含 Ruby 语言的运行环境,以及一组基本所需的 RubyGems 和扩展。 +Tags: +- ruby +- 编程 +- 编程语言 +- 语言 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RubyInstallerTeam/Ruby/3/2/3.2.11-1/RubyInstallerTeam.Ruby.3.2.yaml b/manifests/r/RubyInstallerTeam/Ruby/3/2/3.2.11-1/RubyInstallerTeam.Ruby.3.2.yaml new file mode 100644 index 000000000000..74e8bcaf1772 --- /dev/null +++ b/manifests/r/RubyInstallerTeam/Ruby/3/2/3.2.11-1/RubyInstallerTeam.Ruby.3.2.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: RubyInstallerTeam.Ruby.3.2 +PackageVersion: 3.2.11-1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 1b6c04c5bd9a34c055d428f83610aeaca22eb1f5 Mon Sep 17 00:00:00 2001 From: Igor Abade Date: Fri, 27 Mar 2026 15:52:24 -0700 Subject: [PATCH 108/162] TfsCmdlets_2.10.0+4172.10 (#353072) --- .../2.10.0/Igoravl.TfsCmdlets.installer.yaml | 21 ++++++++++++ .../Igoravl.TfsCmdlets.locale.en-US.yaml | 32 +++++++++++++++++++ .../TfsCmdlets/2.10.0/Igoravl.TfsCmdlets.yaml | 8 +++++ 3 files changed, 61 insertions(+) create mode 100644 manifests/i/Igoravl/TfsCmdlets/2.10.0/Igoravl.TfsCmdlets.installer.yaml create mode 100644 manifests/i/Igoravl/TfsCmdlets/2.10.0/Igoravl.TfsCmdlets.locale.en-US.yaml create mode 100644 manifests/i/Igoravl/TfsCmdlets/2.10.0/Igoravl.TfsCmdlets.yaml diff --git a/manifests/i/Igoravl/TfsCmdlets/2.10.0/Igoravl.TfsCmdlets.installer.yaml b/manifests/i/Igoravl/TfsCmdlets/2.10.0/Igoravl.TfsCmdlets.installer.yaml new file mode 100644 index 000000000000..fc2b3f015080 --- /dev/null +++ b/manifests/i/Igoravl/TfsCmdlets/2.10.0/Igoravl.TfsCmdlets.installer.yaml @@ -0,0 +1,21 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.0.0.schema.json + +PackageIdentifier: Igoravl.TfsCmdlets +PackageVersion: 2.10.0 +MinimumOSVersion: 10.0.0.0 +InstallModes: +- interactive +- silent +- silentWithProgress +Installers: +- InstallerLocale: en-US + Architecture: x64 + InstallerType: wix + Scope: user + InstallerUrl: https://github.com/igoravl/TfsCmdlets/releases/download/v2.10.0%2B4172.10/TfsCmdlets-2.10.0.msi + InstallerSha256: E1B56102A43DE707F8B60BE008B6E29C8479803D6CB7EAA4D1242252469305B0 + ProductCode: "{38A74962-08B8-4939-8F45-6CFA886A6CC3}" + UpgradeBehavior: install +ManifestType: installer +ManifestVersion: 1.6.0 + diff --git a/manifests/i/Igoravl/TfsCmdlets/2.10.0/Igoravl.TfsCmdlets.locale.en-US.yaml b/manifests/i/Igoravl/TfsCmdlets/2.10.0/Igoravl.TfsCmdlets.locale.en-US.yaml new file mode 100644 index 000000000000..c4987d9e2691 --- /dev/null +++ b/manifests/i/Igoravl/TfsCmdlets/2.10.0/Igoravl.TfsCmdlets.locale.en-US.yaml @@ -0,0 +1,32 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.0.0.schema.json + +PackageIdentifier: Igoravl.TfsCmdlets +PackageVersion: 2.10.0 +PackageLocale: en-US +Publisher: Igor Abade V. Leite +PublisherUrl: https://github.com/igoravl/TfsCmdlets +PublisherSupportUrl: https://github.com/igoravl/TfsCmdlets/issues +#PrivacyUrl: +Author: Igor Abade V. Leite +PackageName: TfsCmdlets +PackageUrl: https://tfscmdlets.dev/ +License: MIT +LicenseUrl: https://github.com/igoravl/TfsCmdlets/blob/main/LICENSE.md +Copyright: Copyright (c) Igor Abade V. Leite +#CopyrightUrl: +ShortDescription: PowerShell Cmdlets for Azure DevOps and Team Foundation Server +Description: TfsCmdlets is a PowerShell module which provides many commands to simplify automated interaction with Azure DevOps (Server & Services) and Team Foundation Server. +Moniker: tfscmdlets +Tags: +- tfscmdlets +- tfs +- vsts +- powershell +- azure +- azuredevops +- devops +- alm +- teamfoundationserver +ManifestType: defaultLocale +ManifestVersion: 1.6.0 + diff --git a/manifests/i/Igoravl/TfsCmdlets/2.10.0/Igoravl.TfsCmdlets.yaml b/manifests/i/Igoravl/TfsCmdlets/2.10.0/Igoravl.TfsCmdlets.yaml new file mode 100644 index 000000000000..dfee8d2fb61e --- /dev/null +++ b/manifests/i/Igoravl/TfsCmdlets/2.10.0/Igoravl.TfsCmdlets.yaml @@ -0,0 +1,8 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.0.0.schema.json + +PackageIdentifier: Igoravl.TfsCmdlets +PackageVersion: 2.10.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 + From 4582298b4147d5eb0cf2a56a73bdd86bb893fa07 Mon Sep 17 00:00:00 2001 From: Andrew Nelson Date: Fri, 27 Mar 2026 15:55:59 -0700 Subject: [PATCH 109/162] New package: Orthogonal.APM version 0.1.0 (#348892) --- .../APM/0.1.0/Orthogonal.APM.installer.yaml | 15 +++++++++++++ .../0.1.0/Orthogonal.APM.locale.en-US.yaml | 22 +++++++++++++++++++ .../Orthogonal/APM/0.1.0/Orthogonal.APM.yaml | 8 +++++++ 3 files changed, 45 insertions(+) create mode 100644 manifests/o/Orthogonal/APM/0.1.0/Orthogonal.APM.installer.yaml create mode 100644 manifests/o/Orthogonal/APM/0.1.0/Orthogonal.APM.locale.en-US.yaml create mode 100644 manifests/o/Orthogonal/APM/0.1.0/Orthogonal.APM.yaml diff --git a/manifests/o/Orthogonal/APM/0.1.0/Orthogonal.APM.installer.yaml b/manifests/o/Orthogonal/APM/0.1.0/Orthogonal.APM.installer.yaml new file mode 100644 index 000000000000..15988964f0d9 --- /dev/null +++ b/manifests/o/Orthogonal/APM/0.1.0/Orthogonal.APM.installer.yaml @@ -0,0 +1,15 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Orthogonal.APM +PackageVersion: 0.1.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: + - RelativeFilePath: apm.exe + PortableCommandAlias: apm +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/orthogonalhq/apm/releases/download/v0.1.0/apm-v0.1.0-x86_64-pc-windows-msvc.zip + InstallerSha256: F2245AB76A5D3EF8A813416E9A2C98A107FB83C1E5E15B545E6420F771919484 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/o/Orthogonal/APM/0.1.0/Orthogonal.APM.locale.en-US.yaml b/manifests/o/Orthogonal/APM/0.1.0/Orthogonal.APM.locale.en-US.yaml new file mode 100644 index 000000000000..2fb07a09eba5 --- /dev/null +++ b/manifests/o/Orthogonal/APM/0.1.0/Orthogonal.APM.locale.en-US.yaml @@ -0,0 +1,22 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Orthogonal.APM +PackageVersion: 0.1.0 +PackageLocale: en-US +Publisher: Orthogonal +PublisherUrl: https://orthogonal.dev +PackageName: APM +PackageUrl: https://apm.orthg.nl +License: MIT +LicenseUrl: https://github.com/orthogonalhq/apm/blob/main/LICENSE +ShortDescription: Agent Package Manager — a package manager for agent skills +Description: APM lets you discover, install, and share SKILL.md packages across 30+ agent products including Claude Code, Cursor, Gemini CLI, VS Code Copilot, and more. +Tags: + - ai + - agent + - package-manager + - cli + - skills +ReleaseNotesUrl: https://github.com/orthogonalhq/apm/releases/tag/v0.1.0 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/o/Orthogonal/APM/0.1.0/Orthogonal.APM.yaml b/manifests/o/Orthogonal/APM/0.1.0/Orthogonal.APM.yaml new file mode 100644 index 000000000000..5f91015744ba --- /dev/null +++ b/manifests/o/Orthogonal/APM/0.1.0/Orthogonal.APM.yaml @@ -0,0 +1,8 @@ +# Created using winget CLI +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Orthogonal.APM +PackageVersion: 0.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 From 94281c43f8ecc6bf437158f93ffd6ef55ad01531 Mon Sep 17 00:00:00 2001 From: Muhammad Hassan <88657151+miangee21@users.noreply.github.com> Date: Sat, 28 Mar 2026 03:57:08 +0500 Subject: [PATCH 110/162] New package: Ciphra.Ciphra version 0.1.1 (#353032) --- .../Ciphra/0.1.1/Ciphra.Ciphra.installer.yaml | 19 ++++++++++++ .../0.1.1/Ciphra.Ciphra.locale.en-US.yaml | 29 +++++++++++++++++++ .../c/Ciphra/Ciphra/0.1.1/Ciphra.Ciphra.yaml | 8 +++++ 3 files changed, 56 insertions(+) create mode 100644 manifests/c/Ciphra/Ciphra/0.1.1/Ciphra.Ciphra.installer.yaml create mode 100644 manifests/c/Ciphra/Ciphra/0.1.1/Ciphra.Ciphra.locale.en-US.yaml create mode 100644 manifests/c/Ciphra/Ciphra/0.1.1/Ciphra.Ciphra.yaml diff --git a/manifests/c/Ciphra/Ciphra/0.1.1/Ciphra.Ciphra.installer.yaml b/manifests/c/Ciphra/Ciphra/0.1.1/Ciphra.Ciphra.installer.yaml new file mode 100644 index 000000000000..7bc7c5d8d013 --- /dev/null +++ b/manifests/c/Ciphra/Ciphra/0.1.1/Ciphra.Ciphra.installer.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Ciphra.Ciphra +PackageVersion: 0.1.1 +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/miangee21/Ciphra/releases/download/v0.1.1/Ciphra_0.1.1_x64_en-US.msi + InstallerSha256: E75DEC2C6FE3DF1999CA47CC18120D64D3803D267CEFDEF22E08EC4BF0CABE93 + ProductCode: '{26F4863D-1064-454C-93E6-37198F6B8DBE}' +ManifestType: installer +ManifestVersion: 1.6.0 \ No newline at end of file diff --git a/manifests/c/Ciphra/Ciphra/0.1.1/Ciphra.Ciphra.locale.en-US.yaml b/manifests/c/Ciphra/Ciphra/0.1.1/Ciphra.Ciphra.locale.en-US.yaml new file mode 100644 index 000000000000..ae73e99fb56e --- /dev/null +++ b/manifests/c/Ciphra/Ciphra/0.1.1/Ciphra.Ciphra.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Ciphra.Ciphra +PackageVersion: 0.1.1 +PackageLocale: en-US +Publisher: Ciphra +PublisherUrl: https://github.com/miangee21 +PublisherSupportUrl: https://github.com/miangee21/Ciphra/issues +Author: Muhammad Hassan +PackageName: Ciphra +PackageUrl: https://github.com/miangee21/Ciphra +License: MIT +LicenseUrl: https://github.com/miangee21/Ciphra/blob/master/LICENSE +Copyright: Copyright (c) 2026 Muhammad Hassan +ShortDescription: A zero-knowledge encrypted workspace for your documents, notes, and files. +Description: |- + Ciphra is a private, zero-knowledge encrypted desktop application built with Tauri and Convex. + Every single byte of your data — documents, folder names, file names, images, and PDFs — is encrypted on your device using AES-256-GCM before it ever leaves to the cloud. + It features a BIP39 12-word mnemonic authentication, a rich text editor, secure media viewer, custom folder systems, app lock, and seamless auto-updates. +Tags: +- encryption +- privacy +- workspace +- notes +- tauri +- security +ManifestType: defaultLocale +ManifestVersion: 1.6.0 \ No newline at end of file diff --git a/manifests/c/Ciphra/Ciphra/0.1.1/Ciphra.Ciphra.yaml b/manifests/c/Ciphra/Ciphra/0.1.1/Ciphra.Ciphra.yaml new file mode 100644 index 000000000000..56827b4e3ef8 --- /dev/null +++ b/manifests/c/Ciphra/Ciphra/0.1.1/Ciphra.Ciphra.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Ciphra.Ciphra +PackageVersion: 0.1.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 \ No newline at end of file From 54a8985c5b2c50e166dce25482b45e69c0bcc8de Mon Sep 17 00:00:00 2001 From: Santiago Biali Date: Fri, 27 Mar 2026 19:59:44 -0300 Subject: [PATCH 111/162] ReceitaFederaldoBrasil.ReceitanetBX version 1.9.26 (#353040) --- ...itaFederaldoBrasil.ReceitanetBX.installer.yaml | 15 +++++++++++++++ ...FederaldoBrasil.ReceitanetBX.locale.pt-BR.yaml | 12 ++++++++++++ .../ReceitaFederaldoBrasil.ReceitanetBX.yaml | 8 ++++++++ 3 files changed, 35 insertions(+) create mode 100644 manifests/r/ReceitaFederaldoBrasil/ReceitanetBX/1.9.26/ReceitaFederaldoBrasil.ReceitanetBX.installer.yaml create mode 100644 manifests/r/ReceitaFederaldoBrasil/ReceitanetBX/1.9.26/ReceitaFederaldoBrasil.ReceitanetBX.locale.pt-BR.yaml create mode 100644 manifests/r/ReceitaFederaldoBrasil/ReceitanetBX/1.9.26/ReceitaFederaldoBrasil.ReceitanetBX.yaml diff --git a/manifests/r/ReceitaFederaldoBrasil/ReceitanetBX/1.9.26/ReceitaFederaldoBrasil.ReceitanetBX.installer.yaml b/manifests/r/ReceitaFederaldoBrasil/ReceitanetBX/1.9.26/ReceitaFederaldoBrasil.ReceitanetBX.installer.yaml new file mode 100644 index 000000000000..3129edccb5bd --- /dev/null +++ b/manifests/r/ReceitaFederaldoBrasil/ReceitanetBX/1.9.26/ReceitaFederaldoBrasil.ReceitanetBX.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ReceitaFederaldoBrasil.ReceitanetBX +PackageVersion: 1.9.26 +InstallerType: exe +InstallerSwitches: + Silent: /mode silent + SilentWithProgress: /mode silent +Installers: +- Architecture: x64 + InstallerUrl: https://servicos.receita.fazenda.gov.br/publico/programas/ReceitanetBX/ReceitanetBX-1.9.26-x64.exe + InstallerSha256: C85E776ED78AA3AA03D35A5D5813F637461640B1144A8E143A8E84D8566EA716 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/ReceitaFederaldoBrasil/ReceitanetBX/1.9.26/ReceitaFederaldoBrasil.ReceitanetBX.locale.pt-BR.yaml b/manifests/r/ReceitaFederaldoBrasil/ReceitanetBX/1.9.26/ReceitaFederaldoBrasil.ReceitanetBX.locale.pt-BR.yaml new file mode 100644 index 000000000000..6de144d6e762 --- /dev/null +++ b/manifests/r/ReceitaFederaldoBrasil/ReceitanetBX/1.9.26/ReceitaFederaldoBrasil.ReceitanetBX.locale.pt-BR.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: ReceitaFederaldoBrasil.ReceitanetBX +PackageVersion: 1.9.26 +PackageLocale: pt-BR +Publisher: Receita Federal do Brasil +PackageName: Receitanet BX +License: Public +ShortDescription: Instalador do Receitanet BX 1.9.26 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/ReceitaFederaldoBrasil/ReceitanetBX/1.9.26/ReceitaFederaldoBrasil.ReceitanetBX.yaml b/manifests/r/ReceitaFederaldoBrasil/ReceitanetBX/1.9.26/ReceitaFederaldoBrasil.ReceitanetBX.yaml new file mode 100644 index 000000000000..b1a5a6134a61 --- /dev/null +++ b/manifests/r/ReceitaFederaldoBrasil/ReceitanetBX/1.9.26/ReceitaFederaldoBrasil.ReceitanetBX.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: ReceitaFederaldoBrasil.ReceitanetBX +PackageVersion: 1.9.26 +DefaultLocale: pt-BR +ManifestType: version +ManifestVersion: 1.12.0 From f997f299e0c0c37ed8eb66cac9e0c97a38c4d9ed Mon Sep 17 00:00:00 2001 From: DaMn good B0t <143536629+damn-good-b0t@users.noreply.github.com> Date: Sat, 28 Mar 2026 00:12:24 +0100 Subject: [PATCH 112/162] New version: ChiaNetwork.GUIforChiaBlockchain version 2.7.0 (#352778) --- ...etwork.GUIforChiaBlockchain.installer.yaml | 24 ++++++++ ...ork.GUIforChiaBlockchain.locale.en-US.yaml | 55 +++++++++++++++++++ .../ChiaNetwork.GUIforChiaBlockchain.yaml | 8 +++ 3 files changed, 87 insertions(+) create mode 100644 manifests/c/ChiaNetwork/GUIforChiaBlockchain/2.7.0/ChiaNetwork.GUIforChiaBlockchain.installer.yaml create mode 100644 manifests/c/ChiaNetwork/GUIforChiaBlockchain/2.7.0/ChiaNetwork.GUIforChiaBlockchain.locale.en-US.yaml create mode 100644 manifests/c/ChiaNetwork/GUIforChiaBlockchain/2.7.0/ChiaNetwork.GUIforChiaBlockchain.yaml diff --git a/manifests/c/ChiaNetwork/GUIforChiaBlockchain/2.7.0/ChiaNetwork.GUIforChiaBlockchain.installer.yaml b/manifests/c/ChiaNetwork/GUIforChiaBlockchain/2.7.0/ChiaNetwork.GUIforChiaBlockchain.installer.yaml new file mode 100644 index 000000000000..64b02ffae6a4 --- /dev/null +++ b/manifests/c/ChiaNetwork/GUIforChiaBlockchain/2.7.0/ChiaNetwork.GUIforChiaBlockchain.installer.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ChiaNetwork.GUIforChiaBlockchain +PackageVersion: 2.7.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: user +InstallModes: +- silent +UpgradeBehavior: install +ProductCode: 7546d2a2-b277-520a-ae9b-05b070d68f58 +ReleaseDate: 2026-03-26 +AppsAndFeaturesEntries: +- DisplayName: Chia 2.7.0 + ProductCode: 7546d2a2-b277-520a-ae9b-05b070d68f58 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Chia-Network/chia-blockchain/releases/download/2.7.0/ChiaSetup-2.7.0.exe + InstallerSha256: 224CEFC84D9757AE166EE666669401E87EDFAF4463049C1DC0FE9C1942432E8F +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/ChiaNetwork/GUIforChiaBlockchain/2.7.0/ChiaNetwork.GUIforChiaBlockchain.locale.en-US.yaml b/manifests/c/ChiaNetwork/GUIforChiaBlockchain/2.7.0/ChiaNetwork.GUIforChiaBlockchain.locale.en-US.yaml new file mode 100644 index 000000000000..cc734171bbf2 --- /dev/null +++ b/manifests/c/ChiaNetwork/GUIforChiaBlockchain/2.7.0/ChiaNetwork.GUIforChiaBlockchain.locale.en-US.yaml @@ -0,0 +1,55 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ChiaNetwork.GUIforChiaBlockchain +PackageVersion: 2.7.0 +PackageLocale: en-US +Publisher: Chia Network +PublisherUrl: https://github.com/Chia-Network/chia-blockchain +PublisherSupportUrl: https://github.com/Chia-Network/chia-blockchain/issues +Author: Chia Network +PackageName: Chia +PackageUrl: https://www.chia.net/ +License: Apache-2.0 +LicenseUrl: https://github.com/Chia-Network/chia-blockchain/blob/HEAD/LICENSE +Copyright: Copyright 2021 Chia Network +CopyrightUrl: https://raw.githubusercontent.com/Chia-Network/chia-blockchain/main/LICENSE +ShortDescription: Chia blockchain python implementation (full node, farmer, harvester, timelord, and wallet) +Description: Chia is a modern cryptocurrency built from scratch, designed to be efficient, decentralized, and secure. +Tags: +- blockchain +- blockchain-network +- chaia +- chia-blockchain +- farmer +- full-node +- harvesters +- peer +- proof-of-space +- proof-of-time +- timelord +- vdf +- wallets +ReleaseNotes: |- + 2.7.0 Chia blockchain 2026-3-26 + What's Changed + Added + - Remote Wallet and new RPC calls + Changed + - Numerous hardening measures and soft fork: Please read our blog post for more information + https://www.chia.net/2026/03/26/chia-2-7-0-combatting-the-ai-siege/ + - Make the mempool a bit more defensive on slow machines + - Harden connection handling and message validation in WSChiaConnection + - Improve register_for_coin_updates + - Early check of proof of space in a few places + - Ignore unsolicited RespondTransaction + - Mempool spend limit + - Harden Streamable.from_bytes() to raise ValueError on unconsumed trailing bytes + - Bump chia_rs to 0.41.1 + Fixed + - Fix timelord to skip processing after failed VDF proof validation + - Apply client_timeout to all DataLayer plugin HTTP calls + - DataLayer hardening related to DAT file downloading +ReleaseNotesUrl: https://github.com/Chia-Network/chia-blockchain/releases/tag/2.7.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/ChiaNetwork/GUIforChiaBlockchain/2.7.0/ChiaNetwork.GUIforChiaBlockchain.yaml b/manifests/c/ChiaNetwork/GUIforChiaBlockchain/2.7.0/ChiaNetwork.GUIforChiaBlockchain.yaml new file mode 100644 index 000000000000..09b90508c11e --- /dev/null +++ b/manifests/c/ChiaNetwork/GUIforChiaBlockchain/2.7.0/ChiaNetwork.GUIforChiaBlockchain.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: ChiaNetwork.GUIforChiaBlockchain +PackageVersion: 2.7.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 91fa768c43b80d098b384ff060836cf11ea93536 Mon Sep 17 00:00:00 2001 From: leic4u <32786903+leic4u@users.noreply.github.com> Date: Sat, 28 Mar 2026 07:13:16 +0800 Subject: [PATCH 113/162] New package: GamePP.GamePP version 5.6.28.119 (#351706) --- .../5.6.28.119/GamePP.GamePP.installer.yaml | 21 +++++++++++++++++++ .../GamePP.GamePP.locale.zh-CN.yaml | 21 +++++++++++++++++++ .../GamePP/5.6.28.119/GamePP.GamePP.yaml | 8 +++++++ 3 files changed, 50 insertions(+) create mode 100644 manifests/g/GamePP/GamePP/5.6.28.119/GamePP.GamePP.installer.yaml create mode 100644 manifests/g/GamePP/GamePP/5.6.28.119/GamePP.GamePP.locale.zh-CN.yaml create mode 100644 manifests/g/GamePP/GamePP/5.6.28.119/GamePP.GamePP.yaml diff --git a/manifests/g/GamePP/GamePP/5.6.28.119/GamePP.GamePP.installer.yaml b/manifests/g/GamePP/GamePP/5.6.28.119/GamePP.GamePP.installer.yaml new file mode 100644 index 000000000000..2a964f35d3cb --- /dev/null +++ b/manifests/g/GamePP/GamePP/5.6.28.119/GamePP.GamePP.installer.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GamePP.GamePP +PackageVersion: 5.6.28.119 +InstallerType: exe +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /silent + SilentWithProgress: /silent +UpgradeBehavior: install +ReleaseDate: 2026-01-19 +Installers: +- Architecture: x86 + InstallerUrl: https://dl.gamepp.com/global/GamePP_International.exe + InstallerSha256: 5F788AE79080E5407E267430E60994B01BECCF60A93B4ED12CF142171D895A74 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/GamePP/GamePP/5.6.28.119/GamePP.GamePP.locale.zh-CN.yaml b/manifests/g/GamePP/GamePP/5.6.28.119/GamePP.GamePP.locale.zh-CN.yaml new file mode 100644 index 000000000000..0383150f6128 --- /dev/null +++ b/manifests/g/GamePP/GamePP/5.6.28.119/GamePP.GamePP.locale.zh-CN.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GamePP.GamePP +PackageVersion: 5.6.28.119 +PackageLocale: zh-CN +Publisher: 成都游加佳科技有限公司 +PublisherUrl: https://gamepp.com/about.html +PublisherSupportUrl: https://gamepp.com/support.html +Author: 成都格姆皮皮科技有限公司 +PackageName: 游戏加加 +PackageUrl: https://gamepp.com/download.html +License: Proprietary +LicenseUrl: https://gamepp.com/terms-of-use.html +Copyright: Copyright(c) GamePP.com. All rights reserved +ShortDescription: 游戏加加为您提供实时硬件监控、深度性能评测与AI智能游戏画质,带给您全新电脑性能和游戏体验 +Tags: +- 硬件监控 +ReleaseNotesUrl: https://gamepp.com/log.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GamePP/GamePP/5.6.28.119/GamePP.GamePP.yaml b/manifests/g/GamePP/GamePP/5.6.28.119/GamePP.GamePP.yaml new file mode 100644 index 000000000000..d0b7619b8e89 --- /dev/null +++ b/manifests/g/GamePP/GamePP/5.6.28.119/GamePP.GamePP.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: GamePP.GamePP +PackageVersion: 5.6.28.119 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 From 524ad6e30c4ac45e87116bb121b137b9175fbeff Mon Sep 17 00:00:00 2001 From: DaMn good B0t <143536629+damn-good-b0t@users.noreply.github.com> Date: Sat, 28 Mar 2026 00:13:39 +0100 Subject: [PATCH 114/162] Add version: Google.FirebaseCLI version 15.12.0 (#353073) --- .../15.12.0/Google.FirebaseCLI.installer.yaml | 17 ++++++++++ .../Google.FirebaseCLI.locale.en-US.yaml | 31 +++++++++++++++++++ .../15.12.0/Google.FirebaseCLI.yaml | 8 +++++ 3 files changed, 56 insertions(+) create mode 100644 manifests/g/Google/FirebaseCLI/15.12.0/Google.FirebaseCLI.installer.yaml create mode 100644 manifests/g/Google/FirebaseCLI/15.12.0/Google.FirebaseCLI.locale.en-US.yaml create mode 100644 manifests/g/Google/FirebaseCLI/15.12.0/Google.FirebaseCLI.yaml diff --git a/manifests/g/Google/FirebaseCLI/15.12.0/Google.FirebaseCLI.installer.yaml b/manifests/g/Google/FirebaseCLI/15.12.0/Google.FirebaseCLI.installer.yaml new file mode 100644 index 000000000000..d7b3ef28d0f8 --- /dev/null +++ b/manifests/g/Google/FirebaseCLI/15.12.0/Google.FirebaseCLI.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Google.FirebaseCLI +PackageVersion: 15.12.0 +InstallerType: portable +InstallModes: +- silent +Commands: +- firebase +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/firebase/firebase-tools/releases/download/v15.12.0/firebase-tools-win.exe + InstallerSha256: 31393096B14B202836C6A57F35BD56DE1FD5B8B7F7D8E5B549EC5D8080464483 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/Google/FirebaseCLI/15.12.0/Google.FirebaseCLI.locale.en-US.yaml b/manifests/g/Google/FirebaseCLI/15.12.0/Google.FirebaseCLI.locale.en-US.yaml new file mode 100644 index 000000000000..8d03ab9c3274 --- /dev/null +++ b/manifests/g/Google/FirebaseCLI/15.12.0/Google.FirebaseCLI.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Google.FirebaseCLI +PackageVersion: 15.12.0 +PackageLocale: en-US +Publisher: Google +PublisherUrl: https://firebase.google.com/ +PublisherSupportUrl: https://firebase.google.com/support +PrivacyUrl: https://policies.google.com/privacy +Author: Firebase contributors +PackageName: Firebase CLI Tools +PackageUrl: https://github.com/firebase/firebase-tools +License: MIT +LicenseUrl: https://github.com/firebase/firebase-tools/blob/HEAD/LICENSE +Copyright: Copyright (c) Firebase +CopyrightUrl: https://github.com/firebase/firebase-tools/blob/master/LICENSE +ShortDescription: The Firebase CLI Tools can be used to test, manage, and deploy your Firebase project from the command line. +Moniker: firebase-cli +Tags: +- firebase +- firebase-cli +- firebase-tools +ReleaseNotes: |- + - Moved MCP server firebase-debug.log to ~/.cache/firebase/firebase-debug.log. (#9982) + - Added a prompt to firebase init to install Agent Skills for Firebase. + - Updated the Firebase Data Connect local toolkit to v3.3.1, which includes the following changes: (#10190) + - [added] Support for configuring client-side caching in connector.yaml / generate section +ReleaseNotesUrl: https://github.com/firebase/firebase-tools/releases/tag/v15.12.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/Google/FirebaseCLI/15.12.0/Google.FirebaseCLI.yaml b/manifests/g/Google/FirebaseCLI/15.12.0/Google.FirebaseCLI.yaml new file mode 100644 index 000000000000..ffb4f77dba6a --- /dev/null +++ b/manifests/g/Google/FirebaseCLI/15.12.0/Google.FirebaseCLI.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: Google.FirebaseCLI +PackageVersion: 15.12.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 15f276b3dd1ed5346f55c7200a8cf3cc114e09c9 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 07:14:59 +0800 Subject: [PATCH 115/162] New version: libjpeg-turbo.libjpeg-turbo.GCC version 3.1.4.1 (#353076) --- ...peg-turbo.libjpeg-turbo.GCC.installer.yaml | 31 ++++++++++++++ ...-turbo.libjpeg-turbo.GCC.locale.en-US.yaml | 40 +++++++++++++++++++ ...-turbo.libjpeg-turbo.GCC.locale.zh-CN.yaml | 26 ++++++++++++ .../libjpeg-turbo.libjpeg-turbo.GCC.yaml | 8 ++++ 4 files changed, 105 insertions(+) create mode 100644 manifests/l/libjpeg-turbo/libjpeg-turbo/GCC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.GCC.installer.yaml create mode 100644 manifests/l/libjpeg-turbo/libjpeg-turbo/GCC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.GCC.locale.en-US.yaml create mode 100644 manifests/l/libjpeg-turbo/libjpeg-turbo/GCC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.GCC.locale.zh-CN.yaml create mode 100644 manifests/l/libjpeg-turbo/libjpeg-turbo/GCC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.GCC.yaml diff --git a/manifests/l/libjpeg-turbo/libjpeg-turbo/GCC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.GCC.installer.yaml b/manifests/l/libjpeg-turbo/libjpeg-turbo/GCC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.GCC.installer.yaml new file mode 100644 index 000000000000..e85db9df4026 --- /dev/null +++ b/manifests/l/libjpeg-turbo/libjpeg-turbo/GCC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.GCC.installer.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: libjpeg-turbo.libjpeg-turbo.GCC +PackageVersion: 3.1.4.1 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: uninstallPrevious +Commands: +- cjpeg +- djpeg +- jpegtran +- rdjpgcom +- tjbench +- wrjpgcom +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/libjpeg-turbo/libjpeg-turbo/releases/download/3.1.4.1/libjpeg-turbo-3.1.4.1-gcc-x86.exe + InstallerSha256: 347BC5ACF65928FE5E8ABEACC897F73FFFF3BDBA1B327B473D31DA10DB629174 + ProductCode: libjpeg-turbo-gcc 3.1.4.1 + AppsAndFeaturesEntries: + - DisplayName: libjpeg-turbo SDK v3.1.4.1 for GCC +- Architecture: x64 + InstallerUrl: https://github.com/libjpeg-turbo/libjpeg-turbo/releases/download/3.1.4.1/libjpeg-turbo-3.1.4.1-gcc-x64.exe + InstallerSha256: FC65BD7B101F063A6CDD74F620A5F1757AE8ECE04CBEB45B2F55371DA99B8859 + ProductCode: libjpeg-turbo-gcc64 3.1.4.1 + AppsAndFeaturesEntries: + - DisplayName: libjpeg-turbo SDK v3.1.4.1 for GCC 64-bit +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/libjpeg-turbo/libjpeg-turbo/GCC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.GCC.locale.en-US.yaml b/manifests/l/libjpeg-turbo/libjpeg-turbo/GCC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.GCC.locale.en-US.yaml new file mode 100644 index 000000000000..e14f66d0ba06 --- /dev/null +++ b/manifests/l/libjpeg-turbo/libjpeg-turbo/GCC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.GCC.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: libjpeg-turbo.libjpeg-turbo.GCC +PackageVersion: 3.1.4.1 +PackageLocale: en-US +Publisher: libjpeg-turbo +PublisherUrl: https://libjpeg-turbo.org/ +PublisherSupportUrl: https://github.com/libjpeg-turbo/libjpeg-turbo/issues +Author: Darrell Commander +PackageName: libjpeg-turbo SDK for GCC +PackageUrl: https://libjpeg-turbo.org/ +License: IJG license, Modified (3-clause) BSD License and zlib License +LicenseUrl: https://github.com/libjpeg-turbo/libjpeg-turbo/blob/main/LICENSE.md +Copyright: Copyright (C)2009-2026 D. R. Commander. All Rights Reserved. +ShortDescription: SIMD-accelerated libjpeg-compatible JPEG codec library +Description: libjpeg-turbo is a JPEG image codec that uses SIMD instructions (MMX, SSE2, NEON, AltiVec) to accelerate baseline JPEG compression and decompression on x86, x86-64, ARM, and PowerPC systems. On such systems, libjpeg-turbo is generally 2-6x as fast as libjpeg, all else being equal. On other types of systems, libjpeg-turbo can still outperform libjpeg by a significant amount, by virtue of its highly-optimized Huffman coding routines. In many cases, the performance of libjpeg-turbo rivals that of proprietary high-speed JPEG codecs. +Tags: +- jpeg +- libjpeg +ReleaseNotes: |- + Significant changes relative to 3.1.4: + 1. Fixed multiple issues, some long-standing and some that were regressions introduced in 3.1.4, that made the CMake package config files non-relocatable and broke the --prefix option to cmake --install. + Significant changes relative to 3.1.3: + 1. Fixed an issue in the TurboJPEG 2.x compatibility wrapper whereby, if a calling program attempted to decompress a lossless JPEG image using tjDecompress2() with decompression scaling, the decompressed image was unexpectedly unscaled. This could have led to a buffer overrun if the caller allocated the packed-pixel destination buffer based on the assumption that the decompressed image would be scaled down. + 2. The SIMD dispatchers now use getauxval() or elf_aux_info(), if available, to detect support for Neon and AltiVec instructions on AArch32 and PowerPC Linux, Android, and *BSD systems. + 3. Hardened the libjpeg API against hypothetical applications that may erroneously set one of the exposed quantization table values to 0 just before calling jpeg_start_compress(). (This would never happen in a correctly-written program, because jpeg_add_quant_table() clamps all values less than 1.) + 4. Fixed a division-by-zero error that occurred when attempting to use the jpegtran -drop option with a specially-crafted malformed drop image (specifically an image in which one or more of the quantization table values was 0.) + 5. Fixed an issue in the TurboJPEG API library's data destination manager that manifested as: + - a memory leak that occurred if a pre-allocated JPEG destination buffer was passed to tj3Compress*() or tj3Transform(), TJPARAM_NOREALLOC was unset, and it was necessary for the library to re-allocate the buffer to accommodate the destination image, and + - a potential caller double free that occurred if pre-allocated JPEG destination buffers were passed to tj3Transform(), multiple lossless transform operations were performed, and it was necessary for the library to re-allocate the second buffer to accommodate the second destination image. + 6. Fixed an issue in tj3Transform() whereby, if TJPARAM_SAVEMARKERS was set to 2 or 4, TJXOPT_COPYNONE was not specified, an ICC profile was extracted from the source image, and another ICC profile was associated with the TurboJPEG instance using tj3SetICCProfile(), both profiles were embedded in the destination image. The documented API behavior is for TJXOPT_COPYNONE to take precedence over TJPARAM_SAVEMARKERS and for TJPARAM_SAVEMARKERS to take precedence over the associated ICC profile. Thus, tj3Transform() now ignores the associated ICC profile unless TJXOPT_COPYNONE is specified or TJPARAM_SAVEMARKERS is set to something other than 2 or 4. + 7. Fixed an oversight in the libjpeg API whereby, if a calling application manually set cinfo.Ss (the predictor selection value) to a value less than 1 or greater than 7 after calling jpeg_enable_lossless() and prior to calling jpeg_start_compress(), an incorrect (all white) lossless JPEG image was silently generated. + 8. Further hardened the TurboJPEG Java API against hypothetical applications that may erroneously pass huge values to one of the compression, YUV encoding, decompression, YUV decoding, or packed-pixel image I/O methods, leading to signed integer overflow in the JNI wrapper's buffer size checks that rendered those checks ineffective. +ReleaseNotesUrl: https://github.com/libjpeg-turbo/libjpeg-turbo/releases/tag/3.1.4.1 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://libjpeg-turbo.org/Documentation/Documentation +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/libjpeg-turbo/libjpeg-turbo/GCC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.GCC.locale.zh-CN.yaml b/manifests/l/libjpeg-turbo/libjpeg-turbo/GCC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.GCC.locale.zh-CN.yaml new file mode 100644 index 000000000000..189077d6bd11 --- /dev/null +++ b/manifests/l/libjpeg-turbo/libjpeg-turbo/GCC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.GCC.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: libjpeg-turbo.libjpeg-turbo.GCC +PackageVersion: 3.1.4.1 +PackageLocale: zh-CN +Publisher: libjpeg-turbo +PublisherUrl: https://libjpeg-turbo.org/ +PublisherSupportUrl: https://github.com/libjpeg-turbo/libjpeg-turbo/issues +Author: Darrell Commander +PackageName: libjpeg-turbo SDK for GCC +PackageUrl: https://libjpeg-turbo.org/ +License: IJG 许可证、修改的 (3-clause) BSD 许可证和 zlib 许可证 +LicenseUrl: https://github.com/libjpeg-turbo/libjpeg-turbo/blob/main/LICENSE.md +Copyright: Copyright (C)2009-2026 D. R. Commander. All Rights Reserved. +ShortDescription: 使用 SIMD 加速、兼容 libjpeg 的 JPEG 编解码库 +Description: libjpeg-turbo 是一个 JPEG 图像编解码器,使用 SIMD 指令(MMX、SSE2、NEON、AltiVec)来加速 x86、x86-64、ARM、PowerPC 系统上的基准 JPEG 压缩和解压缩。在这些系统上,其它条件相同,libjpeg-turbo 的速度通常是 libjpeg 的 2~6 倍。在其它类型的系统上,凭借其高度优化的 Huffman 编码程序,libjpeg-turbo 依然可以比 libjpeg 快很多。在大多数情况下,libjpeg-turbo 的性能可与专有的高速 JPEG 编解码器相媲美。 +Tags: +- jpeg +- libjpeg +ReleaseNotesUrl: https://github.com/libjpeg-turbo/libjpeg-turbo/releases/tag/3.1.4.1 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://libjpeg-turbo.org/Documentation/Documentation +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/libjpeg-turbo/libjpeg-turbo/GCC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.GCC.yaml b/manifests/l/libjpeg-turbo/libjpeg-turbo/GCC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.GCC.yaml new file mode 100644 index 000000000000..f74394aa9ff9 --- /dev/null +++ b/manifests/l/libjpeg-turbo/libjpeg-turbo/GCC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.GCC.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: libjpeg-turbo.libjpeg-turbo.GCC +PackageVersion: 3.1.4.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 257aeabbae47e20d786f7aaceb0e1363cc846b1d Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 07:16:14 +0800 Subject: [PATCH 116/162] New version: LuisPater.CLIProxyAPI version 6.9.4 (#353078) --- .../LuisPater.CLIProxyAPI.installer.yaml | 18 ++++++++ .../LuisPater.CLIProxyAPI.locale.en-US.yaml | 42 +++++++++++++++++++ .../LuisPater.CLIProxyAPI.locale.zh-CN.yaml | 24 +++++++++++ .../6.9.4/LuisPater.CLIProxyAPI.yaml | 8 ++++ 4 files changed, 92 insertions(+) create mode 100644 manifests/l/LuisPater/CLIProxyAPI/6.9.4/LuisPater.CLIProxyAPI.installer.yaml create mode 100644 manifests/l/LuisPater/CLIProxyAPI/6.9.4/LuisPater.CLIProxyAPI.locale.en-US.yaml create mode 100644 manifests/l/LuisPater/CLIProxyAPI/6.9.4/LuisPater.CLIProxyAPI.locale.zh-CN.yaml create mode 100644 manifests/l/LuisPater/CLIProxyAPI/6.9.4/LuisPater.CLIProxyAPI.yaml diff --git a/manifests/l/LuisPater/CLIProxyAPI/6.9.4/LuisPater.CLIProxyAPI.installer.yaml b/manifests/l/LuisPater/CLIProxyAPI/6.9.4/LuisPater.CLIProxyAPI.installer.yaml new file mode 100644 index 000000000000..fa39c036139c --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/6.9.4/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: 6.9.4 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: cli-proxy-api.exe +Commands: +- cli-proxy-api +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/router-for-me/CLIProxyAPI/releases/download/v6.9.4/CLIProxyAPI_6.9.4_windows_amd64.zip + InstallerSha256: 7D5EFA755644CEB67B3217342938A8B5213263AE0AA81F62FA4CDAD90A555791 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/6.9.4/LuisPater.CLIProxyAPI.locale.en-US.yaml b/manifests/l/LuisPater/CLIProxyAPI/6.9.4/LuisPater.CLIProxyAPI.locale.en-US.yaml new file mode 100644 index 000000000000..03aa9e1732d2 --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/6.9.4/LuisPater.CLIProxyAPI.locale.en-US.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 6.9.4 +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 + - 8144ffd5c8e3575e8f7b7b5a03093a363b2e6b07 Merge pull request #2370 from B3o/add-bmoplus-sponsor + - 6b45d311ecd2851d6e80bda8c70d0bbc21fd6d95 add BmoPlus sponsorship banners to READMEs + - 70c90687fd6570b6f6f4b0b30a32c880a6ff1853 docs(readme): fix formatting in BmoPlus sponsorship section of Chinese README + - 7dccc7ba2f5fb84508211f0f941b06d599facb65 docs(readme): remove redundant whitespace in BmoPlus sponsorship section of Chinese README + - 10b824fcac9c8e68100d51e765989647782e656a fix(security): validate auth file names to prevent unsafe input +ReleaseNotesUrl: https://github.com/router-for-me/CLIProxyAPI/releases/tag/v6.9.4 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/6.9.4/LuisPater.CLIProxyAPI.locale.zh-CN.yaml b/manifests/l/LuisPater/CLIProxyAPI/6.9.4/LuisPater.CLIProxyAPI.locale.zh-CN.yaml new file mode 100644 index 000000000000..7e717cd23960 --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/6.9.4/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: 6.9.4 +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/6.9.4/LuisPater.CLIProxyAPI.yaml b/manifests/l/LuisPater/CLIProxyAPI/6.9.4/LuisPater.CLIProxyAPI.yaml new file mode 100644 index 000000000000..56e8410b9631 --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/6.9.4/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: 6.9.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 69bf48419cbc8e3321c4b1efd5f988524d32bd91 Mon Sep 17 00:00:00 2001 From: matchmycolor <124382317+matchmycolor@users.noreply.github.com> Date: Sat, 28 Mar 2026 00:17:19 +0100 Subject: [PATCH 117/162] New version: matchmycolor.ColibriBeta version 26.1.0.16449 (#353080) --- .../matchmycolor.ColibriBeta.installer.yaml | 6 +++--- .../matchmycolor.ColibriBeta.locale.en-US.yaml | 2 +- .../matchmycolor.ColibriBeta.yaml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) rename manifests/m/matchmycolor/ColibriBeta/{26.1.0.16444 => 26.1.0.16449}/matchmycolor.ColibriBeta.installer.yaml (79%) rename manifests/m/matchmycolor/ColibriBeta/{26.1.0.16444 => 26.1.0.16449}/matchmycolor.ColibriBeta.locale.en-US.yaml (95%) rename manifests/m/matchmycolor/ColibriBeta/{26.1.0.16444 => 26.1.0.16449}/matchmycolor.ColibriBeta.yaml (86%) diff --git a/manifests/m/matchmycolor/ColibriBeta/26.1.0.16444/matchmycolor.ColibriBeta.installer.yaml b/manifests/m/matchmycolor/ColibriBeta/26.1.0.16449/matchmycolor.ColibriBeta.installer.yaml similarity index 79% rename from manifests/m/matchmycolor/ColibriBeta/26.1.0.16444/matchmycolor.ColibriBeta.installer.yaml rename to manifests/m/matchmycolor/ColibriBeta/26.1.0.16449/matchmycolor.ColibriBeta.installer.yaml index c42781a32786..e1d8e1bf01aa 100644 --- a/manifests/m/matchmycolor/ColibriBeta/26.1.0.16444/matchmycolor.ColibriBeta.installer.yaml +++ b/manifests/m/matchmycolor/ColibriBeta/26.1.0.16449/matchmycolor.ColibriBeta.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: matchmycolor.ColibriBeta -PackageVersion: 26.1.0.16444 +PackageVersion: 26.1.0.16449 InstallerType: exe InstallerSwitches: Silent: /s @@ -14,7 +14,7 @@ Dependencies: - PackageIdentifier: Microsoft.VCRedist.2015+.x86 Installers: - Architecture: x86 - InstallerUrl: https://cdn.matchmycolor.com/colibri/26.1.0/Colibri_26.1.0-beta.2017.exe - InstallerSha256: 8F5A5A095769BB27B6F5BDFF5EFC422EE1CBAA312D75E4C6FC39BE4A19DA9541 + InstallerUrl: https://cdn.matchmycolor.com/colibri/26.1.0/Colibri_26.1.0-beta.2022.exe + InstallerSha256: 1753C8608743B87123838D906A0D4E13D1B8C04244F05FC81E44D1DA8C601959 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/m/matchmycolor/ColibriBeta/26.1.0.16444/matchmycolor.ColibriBeta.locale.en-US.yaml b/manifests/m/matchmycolor/ColibriBeta/26.1.0.16449/matchmycolor.ColibriBeta.locale.en-US.yaml similarity index 95% rename from manifests/m/matchmycolor/ColibriBeta/26.1.0.16444/matchmycolor.ColibriBeta.locale.en-US.yaml rename to manifests/m/matchmycolor/ColibriBeta/26.1.0.16449/matchmycolor.ColibriBeta.locale.en-US.yaml index 92f5815b463f..9c88bfca4584 100644 --- a/manifests/m/matchmycolor/ColibriBeta/26.1.0.16444/matchmycolor.ColibriBeta.locale.en-US.yaml +++ b/manifests/m/matchmycolor/ColibriBeta/26.1.0.16449/matchmycolor.ColibriBeta.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: matchmycolor.ColibriBeta -PackageVersion: 26.1.0.16444 +PackageVersion: 26.1.0.16449 PackageLocale: en-US Publisher: matchmycolor PublisherUrl: https://www.matchmycolor.com/ diff --git a/manifests/m/matchmycolor/ColibriBeta/26.1.0.16444/matchmycolor.ColibriBeta.yaml b/manifests/m/matchmycolor/ColibriBeta/26.1.0.16449/matchmycolor.ColibriBeta.yaml similarity index 86% rename from manifests/m/matchmycolor/ColibriBeta/26.1.0.16444/matchmycolor.ColibriBeta.yaml rename to manifests/m/matchmycolor/ColibriBeta/26.1.0.16449/matchmycolor.ColibriBeta.yaml index 8e921c1d2518..7ec3144ea341 100644 --- a/manifests/m/matchmycolor/ColibriBeta/26.1.0.16444/matchmycolor.ColibriBeta.yaml +++ b/manifests/m/matchmycolor/ColibriBeta/26.1.0.16449/matchmycolor.ColibriBeta.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: matchmycolor.ColibriBeta -PackageVersion: 26.1.0.16444 +PackageVersion: 26.1.0.16449 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 From 7646ee4ff95a83638ba81388f3cb6aab5adef00d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=96nder=20=E2=9A=A1?= Date: Sat, 28 Mar 2026 02:24:45 +0300 Subject: [PATCH 118/162] New package: Microsoft.MediaCreationTool.Windows10 version 22H2 (#353070) Co-authored-by: Claude Opus 4.6 --- ...MediaCreationTool.Windows10.installer.yaml | 19 +++++++++++ ...iaCreationTool.Windows10.locale.en-US.yaml | 33 +++++++++++++++++++ ...iaCreationTool.Windows10.locale.tr-TR.yaml | 32 ++++++++++++++++++ ...Microsoft.MediaCreationTool.Windows10.yaml | 8 +++++ 4 files changed, 92 insertions(+) create mode 100644 manifests/m/Microsoft/MediaCreationTool/Windows10/22H2/Microsoft.MediaCreationTool.Windows10.installer.yaml create mode 100644 manifests/m/Microsoft/MediaCreationTool/Windows10/22H2/Microsoft.MediaCreationTool.Windows10.locale.en-US.yaml create mode 100644 manifests/m/Microsoft/MediaCreationTool/Windows10/22H2/Microsoft.MediaCreationTool.Windows10.locale.tr-TR.yaml create mode 100644 manifests/m/Microsoft/MediaCreationTool/Windows10/22H2/Microsoft.MediaCreationTool.Windows10.yaml diff --git a/manifests/m/Microsoft/MediaCreationTool/Windows10/22H2/Microsoft.MediaCreationTool.Windows10.installer.yaml b/manifests/m/Microsoft/MediaCreationTool/Windows10/22H2/Microsoft.MediaCreationTool.Windows10.installer.yaml new file mode 100644 index 000000000000..9a6e49953406 --- /dev/null +++ b/manifests/m/Microsoft/MediaCreationTool/Windows10/22H2/Microsoft.MediaCreationTool.Windows10.installer.yaml @@ -0,0 +1,19 @@ +# Created using winget CLI +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.MediaCreationTool.Windows10 +PackageVersion: 22H2 +Platform: + - Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: portable +Commands: + - MediaCreationTool10 +Installers: + - Architecture: x86 + InstallerUrl: https://download.microsoft.com/download/9/e/a/9eac306f-d134-4609-9c58-35d1638c2363/MediaCreationTool_22H2.exe + InstallerSha256: 690C8A63769D444FAD47B7DDECEE7F24C9333AA735D0BD46587D0DF5CF15CDE5 + AppsAndFeaturesEntries: + - DisplayName: Windows 10 Media Creation Tool +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/MediaCreationTool/Windows10/22H2/Microsoft.MediaCreationTool.Windows10.locale.en-US.yaml b/manifests/m/Microsoft/MediaCreationTool/Windows10/22H2/Microsoft.MediaCreationTool.Windows10.locale.en-US.yaml new file mode 100644 index 000000000000..da0ff89d8938 --- /dev/null +++ b/manifests/m/Microsoft/MediaCreationTool/Windows10/22H2/Microsoft.MediaCreationTool.Windows10.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using winget CLI +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.MediaCreationTool.Windows10 +PackageVersion: 22H2 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com +PublisherSupportUrl: https://support.microsoft.com +PrivacyUrl: https://privacy.microsoft.com +Author: Microsoft Corporation +PackageName: Windows 10 Media Creation Tool +PackageUrl: https://www.microsoft.com/software-download/windows10 +License: Proprietary +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +CopyrightUrl: https://www.microsoft.com/en-us/legal/intellectualproperty/copyright +ShortDescription: Create Windows 10 installation media (USB flash drive, DVD, or ISO file). +Description: |- + The Windows 10 Media Creation Tool allows you to download Windows 10 and create + installation media using a USB flash drive or DVD. You can also use it to upgrade + your current PC to Windows 10 or create an ISO file for later use. +Moniker: win10mct +Tags: + - installer + - media-creation + - windows + - windows-10 + - usb + - iso +ReleaseNotes: Windows 10 version 22H2 +ReleaseNotesUrl: https://learn.microsoft.com/en-us/windows/release-health/status-windows-10-22h2 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/MediaCreationTool/Windows10/22H2/Microsoft.MediaCreationTool.Windows10.locale.tr-TR.yaml b/manifests/m/Microsoft/MediaCreationTool/Windows10/22H2/Microsoft.MediaCreationTool.Windows10.locale.tr-TR.yaml new file mode 100644 index 000000000000..2afa72967273 --- /dev/null +++ b/manifests/m/Microsoft/MediaCreationTool/Windows10/22H2/Microsoft.MediaCreationTool.Windows10.locale.tr-TR.yaml @@ -0,0 +1,32 @@ +# Created using winget CLI +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json + +PackageIdentifier: Microsoft.MediaCreationTool.Windows10 +PackageVersion: 22H2 +PackageLocale: tr-TR +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/tr-tr +PublisherSupportUrl: https://support.microsoft.com/tr-tr +PrivacyUrl: https://privacy.microsoft.com/tr-tr +Author: Microsoft Corporation +PackageName: Windows 10 Medya Oluşturma Aracı +PackageUrl: https://www.microsoft.com/tr-tr/software-download/windows10 +License: Tescilli +Copyright: Telif Hakkı (c) Microsoft Corporation. Tüm hakları saklıdır. +ShortDescription: Windows 10 yükleme medyası oluşturun (USB flash sürücü, DVD veya ISO dosyası). +Description: |- + Windows 10 Medya Oluşturma Aracı, Windows 10'u indirmenize ve bir USB flash sürücü + veya DVD kullanarak yükleme medyası oluşturmanıza olanak tanır. Ayrıca mevcut + bilgisayarınızı Windows 10'a yükseltmek veya daha sonra kullanmak üzere bir ISO + dosyası oluşturmak için de kullanabilirsiniz. +Tags: + - yükleyici + - medya-oluşturma + - windows + - windows-10 + - usb + - iso +ReleaseNotes: Windows 10 sürüm 22H2 +ReleaseNotesUrl: https://learn.microsoft.com/tr-tr/windows/release-health/status-windows-10-22h2 +ManifestType: locale +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/MediaCreationTool/Windows10/22H2/Microsoft.MediaCreationTool.Windows10.yaml b/manifests/m/Microsoft/MediaCreationTool/Windows10/22H2/Microsoft.MediaCreationTool.Windows10.yaml new file mode 100644 index 000000000000..c4ca507d160a --- /dev/null +++ b/manifests/m/Microsoft/MediaCreationTool/Windows10/22H2/Microsoft.MediaCreationTool.Windows10.yaml @@ -0,0 +1,8 @@ +# Created using winget CLI +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.MediaCreationTool.Windows10 +PackageVersion: 22H2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 From 5981a35d14991ed3064e5f468faa9d68e2d4f817 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9D=A4=E6=98=AF=E7=BA=B1=E9=9B=BE=E9=85=B1=E5=93=9F?= =?UTF-8?q?=EF=BD=9E?= <49941141+Dragon1573@users.noreply.github.com> Date: Sat, 28 Mar 2026 07:40:13 +0800 Subject: [PATCH 119/162] New package: FxSound.FxSound.Beta version 1.2.8.0 (#353031) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: ❤是纱雾酱哟~ <49941141+Dragon1573@users.noreply.github.com> --- .../FxSound.FxSound.Beta.installer.yaml | 71 +++++++++++++++++++ .../FxSound.FxSound.Beta.locale.en-US.yaml | 40 +++++++++++ .../Beta/1.2.8.0/FxSound.FxSound.Beta.yaml | 8 +++ 3 files changed, 119 insertions(+) create mode 100644 manifests/f/FxSound/FxSound/Beta/1.2.8.0/FxSound.FxSound.Beta.installer.yaml create mode 100644 manifests/f/FxSound/FxSound/Beta/1.2.8.0/FxSound.FxSound.Beta.locale.en-US.yaml create mode 100644 manifests/f/FxSound/FxSound/Beta/1.2.8.0/FxSound.FxSound.Beta.yaml diff --git a/manifests/f/FxSound/FxSound/Beta/1.2.8.0/FxSound.FxSound.Beta.installer.yaml b/manifests/f/FxSound/FxSound/Beta/1.2.8.0/FxSound.FxSound.Beta.installer.yaml new file mode 100644 index 000000000000..8f58bf2f704c --- /dev/null +++ b/manifests/f/FxSound/FxSound/Beta/1.2.8.0/FxSound.FxSound.Beta.installer.yaml @@ -0,0 +1,71 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: FxSound.FxSound.Beta +PackageVersion: 1.2.8.0 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /exenoui /quiet /norestart + SilentWithProgress: /exenoui /passive /norestart + InstallLocation: APPDIR="" + Log: /log "" +ExpectedReturnCodes: +- InstallerReturnCode: -1 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 1 + ReturnResponse: invalidParameter +- InstallerReturnCode: 87 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1601 + ReturnResponse: contactSupport +- InstallerReturnCode: 1602 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress +- InstallerReturnCode: 1623 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1625 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1628 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1633 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1638 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: 1639 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1640 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated +- InstallerReturnCode: 1643 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1644 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1649 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1650 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1654 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish +UpgradeBehavior: install +ReleaseDate: 2026-03-19 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/fxsound2/fxsound-app/releases/download/beta/fxsound_setup.exe + InstallerSha256: AA753AF599BF0E99708416DA5343CB901E45B65BB9FFB4765B10F756FDF20B13 +- Architecture: x64 + InstallerUrl: https://github.com/fxsound2/fxsound-app/releases/download/beta/fxsound_setup.exe + InstallerSha256: AA753AF599BF0E99708416DA5343CB901E45B65BB9FFB4765B10F756FDF20B13 +- Architecture: arm64 + InstallerUrl: https://github.com/fxsound2/fxsound-app/releases/download/beta/fxsound_setup.arm64.exe + InstallerSha256: 5AA9CD84B32DB81811CCA44D972CA3C422F1D4FC977213C7D20E1FD4300C3FED +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/f/FxSound/FxSound/Beta/1.2.8.0/FxSound.FxSound.Beta.locale.en-US.yaml b/manifests/f/FxSound/FxSound/Beta/1.2.8.0/FxSound.FxSound.Beta.locale.en-US.yaml new file mode 100644 index 000000000000..089458a2fad9 --- /dev/null +++ b/manifests/f/FxSound/FxSound/Beta/1.2.8.0/FxSound.FxSound.Beta.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: FxSound.FxSound.Beta +PackageVersion: 1.2.8.0 +PackageLocale: en-US +Publisher: FxSound LLC +PublisherUrl: https://github.com/fxsound2 +PublisherSupportUrl: https://github.com/fxsound2/fxsound-app/issues +Author: FxSound LLC +PackageName: FxSound +PackageUrl: https://github.com/fxsound2/fxsound-app +License: AGPL-3.0 +LicenseUrl: https://github.com/fxsound2/fxsound-app/blob/main/LICENSE +Copyright: Copyright (C) 2026 FxSound LLC +ShortDescription: FxSound application and DSP source code +Description: > + FxSound is a digital audio program built for Windows PC's. The background processing, built on a + high-fidelity audio engine, acts as a sort of digital soundcard for your system. This means that + your signals will have the clean passthrough when FxSound is active. There are active effects for + shaping and boosting your sound's volume, timbre, and equalization included on top of this clean + processing, allowing you to customize and enhance your sound. +Tags: +- audio +- equalizer +- sound +ReleaseNotes: |- + 1. Fixed the bug which caused blank text on theme change + 2. Fixes in giving control to system audio when FxSound is off. Now output device can be changed in FxSound and OS when FxSound is off. + 3. Fixed the device preference list persistence issue and repetition of device names. + 4. Slovenian language support added + 5. Changed Save/Cancel to Yes/No in preset save prompt + 6. Changed +0 to 0 in EQ gain + 1. Priority can be set to output devices + 2. Output devices can be associated with a preset + 3. Fixed a bug which caused incorrect text being displayed after changing the theme and relaunching + the application +ReleaseNotesUrl: https://github.com/fxsound2/fxsound-app/releases/tag/beta +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/FxSound/FxSound/Beta/1.2.8.0/FxSound.FxSound.Beta.yaml b/manifests/f/FxSound/FxSound/Beta/1.2.8.0/FxSound.FxSound.Beta.yaml new file mode 100644 index 000000000000..898f3684edc7 --- /dev/null +++ b/manifests/f/FxSound/FxSound/Beta/1.2.8.0/FxSound.FxSound.Beta.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: FxSound.FxSound.Beta +PackageVersion: 1.2.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From b506fc373623c11fd1a06e745e93230f41d17a4e Mon Sep 17 00:00:00 2001 From: Johnny Shaw Date: Fri, 27 Mar 2026 19:48:19 -0400 Subject: [PATCH 120/162] New version: WinsiderSS.SystemInformer.Canary version 4.0.26085.2356 (#352809) --- ...derSS.SystemInformer.Canary.installer.yaml | 25 +++++++++++++ ...SS.SystemInformer.Canary.locale.en-US.yaml | 37 +++++++++++++++++++ .../WinsiderSS.SystemInformer.Canary.yaml | 8 ++++ 3 files changed, 70 insertions(+) create mode 100644 manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26085.2356/WinsiderSS.SystemInformer.Canary.installer.yaml create mode 100644 manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26085.2356/WinsiderSS.SystemInformer.Canary.locale.en-US.yaml create mode 100644 manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26085.2356/WinsiderSS.SystemInformer.Canary.yaml diff --git a/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26085.2356/WinsiderSS.SystemInformer.Canary.installer.yaml b/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26085.2356/WinsiderSS.SystemInformer.Canary.installer.yaml new file mode 100644 index 000000000000..ee6dfcc96a78 --- /dev/null +++ b/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26085.2356/WinsiderSS.SystemInformer.Canary.installer.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: WinsiderSS.SystemInformer.Canary +PackageVersion: 4.0.26085.2356 +InstallerType: exe +Scope: machine +InstallModes: +- silent +- silentWithProgress +- interactive +InstallerSwitches: + Silent: -install -silent + SilentWithProgress: -install -silent + Interactive: -install + Upgrade: -update -silent +ProductCode: SystemInformer-Canary +ElevationRequirement: elevatesSelf +Installers: +- Architecture: neutral + InstallerUrl: https://github.com/winsiderss/si-builds/releases/download/4.0.26085.2356/systeminformer-build-canary-setup.exe + InstallerSha256: 6246E7E00685BA0EEC5E810C2F9839EF3E47D6A0E9A91978BB610B2E3897A059 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-26 diff --git a/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26085.2356/WinsiderSS.SystemInformer.Canary.locale.en-US.yaml b/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26085.2356/WinsiderSS.SystemInformer.Canary.locale.en-US.yaml new file mode 100644 index 000000000000..bea5e57b71cb --- /dev/null +++ b/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26085.2356/WinsiderSS.SystemInformer.Canary.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: WinsiderSS.SystemInformer.Canary +PackageVersion: 4.0.26085.2356 +PackageLocale: en-US +Publisher: Winsider Seminars & Solutions, Inc. +PublisherUrl: https://windows-internals.com/ +PublisherSupportUrl: https://github.com/winsiderss/systeminformer/issues +PackageName: System Informer (Canary) +PackageUrl: https://system-informer.com/ +License: MIT License +LicenseUrl: https://github.com/winsiderss/systeminformer/blob/master/LICENSE.txt +Copyright: Copyright (c) Winsider Seminars & Solutions, Inc. All rights reserved. +CopyrightUrl: https://github.com/winsiderss/systeminformer/blob/master/COPYRIGHT.txt +ShortDescription: System Informer is a free, powerful, multi-purpose tool that helps you monitor system resources, debug software and detect malware. +Moniker: systeminformer-canary +Tags: +- windows +- debugger +- security +- benchmarking +- process-manager +- performance +- monitor +- monitoring +- realtime +- administrator +- process-monitor +- performance-tuning +- profiling +- monitor-performance +- performance-monitoring +- system-monitor +ReleaseNotesUrl: https://github.com/winsiderss/si-builds/releases/tag/4.0.26085.2356 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26085.2356/WinsiderSS.SystemInformer.Canary.yaml b/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26085.2356/WinsiderSS.SystemInformer.Canary.yaml new file mode 100644 index 000000000000..d5696383fc74 --- /dev/null +++ b/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26085.2356/WinsiderSS.SystemInformer.Canary.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: WinsiderSS.SystemInformer.Canary +PackageVersion: 4.0.26085.2356 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From d2b35aaf95fd60fb6c49ba1020327ef0baeb4528 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 07:49:23 +0800 Subject: [PATCH 121/162] New version: DifferentAI.OpenWork version 0.11.195 (#353086) --- .../DifferentAI.OpenWork.installer.yaml | 20 ++++++++ .../DifferentAI.OpenWork.locale.en-US.yaml | 47 +++++++++++++++++++ .../DifferentAI.OpenWork.locale.zh-CN.yaml | 24 ++++++++++ .../0.11.195/DifferentAI.OpenWork.yaml | 8 ++++ 4 files changed, 99 insertions(+) create mode 100644 manifests/d/DifferentAI/OpenWork/0.11.195/DifferentAI.OpenWork.installer.yaml create mode 100644 manifests/d/DifferentAI/OpenWork/0.11.195/DifferentAI.OpenWork.locale.en-US.yaml create mode 100644 manifests/d/DifferentAI/OpenWork/0.11.195/DifferentAI.OpenWork.locale.zh-CN.yaml create mode 100644 manifests/d/DifferentAI/OpenWork/0.11.195/DifferentAI.OpenWork.yaml diff --git a/manifests/d/DifferentAI/OpenWork/0.11.195/DifferentAI.OpenWork.installer.yaml b/manifests/d/DifferentAI/OpenWork/0.11.195/DifferentAI.OpenWork.installer.yaml new file mode 100644 index 000000000000..0c0b7a5716ef --- /dev/null +++ b/manifests/d/DifferentAI/OpenWork/0.11.195/DifferentAI.OpenWork.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: DifferentAI.OpenWork +PackageVersion: 0.11.195 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +ProductCode: '{A2D4A8FF-31B2-4987-ACB8-230D13E02F33}' +ReleaseDate: 2026-03-27 +AppsAndFeaturesEntries: +- UpgradeCode: '{2A300FB5-FA81-5886-A03C-B8C20DF4E74B}' +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/different-ai/openwork/releases/download/v0.11.195/openwork-desktop-windows-x64.msi + InstallerSha256: D07581E76EEA8D9F7C4DCFA54485C3AA61304F6916B138E18A127442F34C15A7 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DifferentAI/OpenWork/0.11.195/DifferentAI.OpenWork.locale.en-US.yaml b/manifests/d/DifferentAI/OpenWork/0.11.195/DifferentAI.OpenWork.locale.en-US.yaml new file mode 100644 index 000000000000..053ddf913613 --- /dev/null +++ b/manifests/d/DifferentAI/OpenWork/0.11.195/DifferentAI.OpenWork.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: DifferentAI.OpenWork +PackageVersion: 0.11.195 +PackageLocale: en-US +Publisher: differentai +PublisherUrl: https://openwork.software/ +PublisherSupportUrl: https://github.com/different-ai/openwork/issues +Author: Different AI +PackageName: OpenWork +PackageUrl: https://openwork.software/ +License: MIT +LicenseUrl: https://github.com/different-ai/openwork/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Different AI +ShortDescription: An open-source alternative to Claude Cowork, powered by OpenCode +Description: |- + OpenWork is an extensible, open-source “Claude Work” style system for knowledge workers. + It’s a native desktop app that runs OpenCode under the hood, but presents it as a clean, guided workflow: + - pick a workspace + - start a run + - watch progress + plan updates + - approve permissions when needed + - reuse what works (templates + skills) + The goal: make “agentic work” feel like a product, not a terminal. +Tags: +- agent +- agentic +- ai +- large-language-model +- llm +- opencode +ReleaseNotes: |- + Highlights + - Refined Den dashboard and organization flows, including smoother onboarding, cleaner worker connect actions, and reduced polling jank. + - Improved desktop session UX with compact conversation quick action, persistent default model handling, and clearer update badge visibility. + Fixes & polish + - Stabilized remote workspace binding and OpenWork link token handling across app and Den surfaces. + - Tuned app cloud settings and share template inputs to better match the latest UI direction. + - Added local-host workspace creation reliability improvements. + Packaging / ops + - Bumped all package versions to 0.11.195, refreshed lockfiles, and updated AUR packaging metadata. + Compare: + https://github.com/different-ai/openwork/compare/v0.11.194...v0.11.195 +ReleaseNotesUrl: https://github.com/different-ai/openwork/releases/tag/v0.11.195 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DifferentAI/OpenWork/0.11.195/DifferentAI.OpenWork.locale.zh-CN.yaml b/manifests/d/DifferentAI/OpenWork/0.11.195/DifferentAI.OpenWork.locale.zh-CN.yaml new file mode 100644 index 000000000000..d7c69238256b --- /dev/null +++ b/manifests/d/DifferentAI/OpenWork/0.11.195/DifferentAI.OpenWork.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: DifferentAI.OpenWork +PackageVersion: 0.11.195 +PackageLocale: zh-CN +ShortDescription: 由 OpenCode 驱动的 Claude Cowork 开源替代方案 +Description: |- + OpenWork 是一个可扩展的开源“Claude Work”风格系统,专为知识工作者设计。 + 它是一款原生桌面应用程序,底层运行 OpenCode,但以简洁、引导式的工作流呈现: + - 选择一个工作区 + - 开始执行任务 + - 查看进度并规划更新 + - 在需要时批准权限 + - 复用有效内容(模板 + 技能) + 目标:让“自主智能式工作”感觉像一个产品,而不是一个终端。 +Tags: +- opencode +- 人工智能 +- 大语言模型 +- 智能体 +- 自主智能 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DifferentAI/OpenWork/0.11.195/DifferentAI.OpenWork.yaml b/manifests/d/DifferentAI/OpenWork/0.11.195/DifferentAI.OpenWork.yaml new file mode 100644 index 000000000000..2d31e95890c1 --- /dev/null +++ b/manifests/d/DifferentAI/OpenWork/0.11.195/DifferentAI.OpenWork.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: DifferentAI.OpenWork +PackageVersion: 0.11.195 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From fd4705647151f32bdb5c189190e93fd35a45f859 Mon Sep 17 00:00:00 2001 From: Ryan Date: Sat, 28 Mar 2026 08:20:39 +0800 Subject: [PATCH 122/162] New version: ViRb3.wgcf version 2.2.30 (#352645) --- .../wgcf/2.2.30/ViRb3.wgcf.installer.yaml | 24 ++++++++++++++ .../wgcf/2.2.30/ViRb3.wgcf.locale.en-US.yaml | 32 +++++++++++++++++++ manifests/v/ViRb3/wgcf/2.2.30/ViRb3.wgcf.yaml | 8 +++++ 3 files changed, 64 insertions(+) create mode 100644 manifests/v/ViRb3/wgcf/2.2.30/ViRb3.wgcf.installer.yaml create mode 100644 manifests/v/ViRb3/wgcf/2.2.30/ViRb3.wgcf.locale.en-US.yaml create mode 100644 manifests/v/ViRb3/wgcf/2.2.30/ViRb3.wgcf.yaml diff --git a/manifests/v/ViRb3/wgcf/2.2.30/ViRb3.wgcf.installer.yaml b/manifests/v/ViRb3/wgcf/2.2.30/ViRb3.wgcf.installer.yaml new file mode 100644 index 000000000000..404807dc39e9 --- /dev/null +++ b/manifests/v/ViRb3/wgcf/2.2.30/ViRb3.wgcf.installer.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ViRb3.wgcf +PackageVersion: 2.2.30 +InstallerType: portable +Commands: +- wgcf +ReleaseDate: 2026-01-07 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/ViRb3/wgcf/releases/download/v2.2.30/wgcf_2.2.30_windows_386.exe + InstallerSha256: D7CE4E617B4DF9EC2D7FE0063442F5882CA623FD4C716F06A9B88BF85F809BF0 +- Architecture: x64 + InstallerUrl: https://github.com/ViRb3/wgcf/releases/download/v2.2.30/wgcf_2.2.30_windows_amd64.exe + InstallerSha256: A4439DC6CF18CE482CA0D6E264427D6D2CA17237666DCFD64E15FA48E1147DE2 +- Architecture: arm64 + InstallerUrl: https://github.com/ViRb3/wgcf/releases/download/v2.2.30/wgcf_2.2.30_windows_arm64.exe + InstallerSha256: FCE97DA7B45CB3C46B35F966C3FCFEF01D21A274E0AA194B039D282854B4DEF5 +- Architecture: arm + InstallerUrl: https://github.com/ViRb3/wgcf/releases/download/v2.2.30/wgcf_2.2.30_windows_armv7.exe + InstallerSha256: FCD48BCAEE4F7310DF0F7F937A44657B70EF329D342BB8A0EBFC592F5821A1B9 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/v/ViRb3/wgcf/2.2.30/ViRb3.wgcf.locale.en-US.yaml b/manifests/v/ViRb3/wgcf/2.2.30/ViRb3.wgcf.locale.en-US.yaml new file mode 100644 index 000000000000..d7aa29026779 --- /dev/null +++ b/manifests/v/ViRb3/wgcf/2.2.30/ViRb3.wgcf.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ViRb3.wgcf +PackageVersion: 2.2.30 +PackageLocale: en-US +Publisher: ViRb3 +PublisherUrl: https://github.com/ViRb3 +PublisherSupportUrl: https://github.com/ViRb3/wgcf/issues +PackageName: wgcf +PackageUrl: https://github.com/ViRb3/wgcf +License: MIT +LicenseUrl: https://github.com/ViRb3/wgcf/blob/HEAD/LICENSE +ShortDescription: Cross-platform, unofficial CLI for Cloudflare Warp +Tags: +- client +- cloudflare +- plus +- security +- vpn +- warp +- wireguard +ReleaseNotes: |- + 2.2.30 (2026-01-07) + Bug Fixes + - bump deps (6e1d960) +ReleaseNotesUrl: https://github.com/ViRb3/wgcf/releases/tag/v2.2.30 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/ViRb3/wgcf/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/v/ViRb3/wgcf/2.2.30/ViRb3.wgcf.yaml b/manifests/v/ViRb3/wgcf/2.2.30/ViRb3.wgcf.yaml new file mode 100644 index 000000000000..289730f83fa6 --- /dev/null +++ b/manifests/v/ViRb3/wgcf/2.2.30/ViRb3.wgcf.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: ViRb3.wgcf +PackageVersion: 2.2.30 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 221aa8ca6b34f344d3f38c87c6203e83776943a9 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 08:21:50 +0800 Subject: [PATCH 123/162] New version: BioSilico.EssayWriter version 4.2.0009 (4.2.9) (#352650) --- .../BioSilico.EssayWriter.installer.yaml | 77 +++++++++++++++++++ .../BioSilico.EssayWriter.locale.en-US.yaml | 42 ++++++++++ .../BioSilico.EssayWriter.locale.zh-CN.yaml | 14 ++++ .../4.2.0009/BioSilico.EssayWriter.yaml | 8 ++ 4 files changed, 141 insertions(+) create mode 100644 manifests/b/BioSilico/EssayWriter/4.2.0009/BioSilico.EssayWriter.installer.yaml create mode 100644 manifests/b/BioSilico/EssayWriter/4.2.0009/BioSilico.EssayWriter.locale.en-US.yaml create mode 100644 manifests/b/BioSilico/EssayWriter/4.2.0009/BioSilico.EssayWriter.locale.zh-CN.yaml create mode 100644 manifests/b/BioSilico/EssayWriter/4.2.0009/BioSilico.EssayWriter.yaml diff --git a/manifests/b/BioSilico/EssayWriter/4.2.0009/BioSilico.EssayWriter.installer.yaml b/manifests/b/BioSilico/EssayWriter/4.2.0009/BioSilico.EssayWriter.installer.yaml new file mode 100644 index 000000000000..f96fc2fc2b8b --- /dev/null +++ b/manifests/b/BioSilico/EssayWriter/4.2.0009/BioSilico.EssayWriter.installer.yaml @@ -0,0 +1,77 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: BioSilico.EssayWriter +PackageVersion: 4.2.0009 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /S /V/quiet /V/norestart + SilentWithProgress: /S /V/passive /V/norestart + InstallLocation: /V"INSTALLDIR=""""" + Log: /V"/log """"" +ExpectedReturnCodes: +- InstallerReturnCode: -1 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 1 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1150 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1201 + ReturnResponse: diskFull +- InstallerReturnCode: 1203 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1601 + ReturnResponse: contactSupport +- InstallerReturnCode: 1602 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress +- InstallerReturnCode: 1623 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1625 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1628 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1633 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1638 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: 1639 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated +- InstallerReturnCode: 1640 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1643 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1644 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1649 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1650 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1654 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish +FileExtensions: +- ewd +- ewdx +- ewt +- ewtx +ProductCode: '{2D813B20-66F5-4B1D-9B95-192F5ED15F2B}' +ReleaseDate: 2026-03-26 +AppsAndFeaturesEntries: +- UpgradeCode: '{7B56AD06-676C-4F47-B00A-10A68ADA61BE}' + InstallerType: msi +Installers: +- Architecture: x64 + InstallerUrl: https://download.fasteressays.com/4.2.0009/windows/setup_essaywriter_4_2_0009.exe + InstallerSha256: B917653BB36F70C362783547AFCF64F4A33D899DDAD37AC082BDADDB6F0D0BC4 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/BioSilico/EssayWriter/4.2.0009/BioSilico.EssayWriter.locale.en-US.yaml b/manifests/b/BioSilico/EssayWriter/4.2.0009/BioSilico.EssayWriter.locale.en-US.yaml new file mode 100644 index 000000000000..c51d2fe88494 --- /dev/null +++ b/manifests/b/BioSilico/EssayWriter/4.2.0009/BioSilico.EssayWriter.locale.en-US.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: BioSilico.EssayWriter +PackageVersion: 4.2.0009 +PackageLocale: en-US +Publisher: BioSilico +PublisherUrl: https://www.biosilico.com/ +PublisherSupportUrl: https://support.biosilico.com/ +PrivacyUrl: https://www.biosilico.com/privacy-policy/ +Author: BioSilico Limited +PackageName: EssayWriter +PackageUrl: https://support.biosilico.com/portal/kb/articles/download-essay-writer-5-1-2023 +License: Proprietary +LicenseUrl: https://www.biosilico.com/wp-content/uploads/2023/12/End-User-Agreement.pdf +Copyright: Copyright © 2026, BioSilico Limited. All rights reserved. +CopyrightUrl: https://www.biosilico.com/wp-content/uploads/2023/12/End-User-Agreement.pdf +ShortDescription: Essay Writer is a writing tool for students, it is designed to improve organising and writing skills in an easy-to-use and accessible format. +Tags: +- mind-map +- mind-mapping +- mindmap +- writing +ReleaseNotes: |- + Which editions are affected? + 1. All editions: IdeaMapper Desktop Cloud, IdeaMapperPro, IdeaMapperK12, IdeaMapperHigherEd and EssayWriter. + How to get this release? + 1. For desktop installations: Go to https://ideamapper.com, follow HelpDesk and download links for your platform, download the installer file, then install. The previous version will be upgraded. + 2. For the webapp: Clear the browser cache, then go to https://webapp.ideamapper.com, and log in with the same credentials. + What’s New? + - Text ideas can now be "joined" and "split". To join: right-click on an idea which has only text ideas connected and select "join". The sub-ideas are then added to the main idea and deleted. To split: right-click on a text idea which has no sub-ideas and select "split". + - In addition to automatic ordering idea maps can now also be manually ordered. + - Import and export of "Markdown" files (*.md) into idea maps. + Bug Fixes? + - Fixes a potential program crash when a link was created twice. + - Fixes an issue with an extra space added for the author for the in-text reference when using Harvard Style bibliography. + - For IdeaMapperPro, fixes an issue when using Ollama as local AI LLM engine. + - Minor fixes. +ReleaseNotesUrl: https://support.biosilico.com/portal/kb/articles/version-4-2-0009 +PurchaseUrl: https://www.essaywritersoftware.com/buy-now/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/BioSilico/EssayWriter/4.2.0009/BioSilico.EssayWriter.locale.zh-CN.yaml b/manifests/b/BioSilico/EssayWriter/4.2.0009/BioSilico.EssayWriter.locale.zh-CN.yaml new file mode 100644 index 000000000000..18c2f223b435 --- /dev/null +++ b/manifests/b/BioSilico/EssayWriter/4.2.0009/BioSilico.EssayWriter.locale.zh-CN.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: BioSilico.EssayWriter +PackageVersion: 4.2.0009 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: Essay Writer 是一款面向学生的写作工具,旨在通过简单易用的操作界面帮助学生提升文章组织与写作能力。 +Tags: +- 写作 +- 思维导图 +- 脑图 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/BioSilico/EssayWriter/4.2.0009/BioSilico.EssayWriter.yaml b/manifests/b/BioSilico/EssayWriter/4.2.0009/BioSilico.EssayWriter.yaml new file mode 100644 index 000000000000..19a99102a660 --- /dev/null +++ b/manifests/b/BioSilico/EssayWriter/4.2.0009/BioSilico.EssayWriter.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: BioSilico.EssayWriter +PackageVersion: 4.2.0009 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From e9ea13cc5e6fd8f03d2e9bcf42ee230f2c865e25 Mon Sep 17 00:00:00 2001 From: Brandon Williams Date: Fri, 27 Mar 2026 17:22:54 -0700 Subject: [PATCH 124/162] Update willibrandon.dotsider-mcp to 0.7.0 (#353036) --- .../willibrandon.dotsider-mcp.installer.yaml | 27 ++++++++++++++ ...illibrandon.dotsider-mcp.locale.en-US.yaml | 35 +++++++++++++++++++ .../0.7.0/willibrandon.dotsider-mcp.yaml | 8 +++++ 3 files changed, 70 insertions(+) create mode 100644 manifests/w/willibrandon/dotsider-mcp/0.7.0/willibrandon.dotsider-mcp.installer.yaml create mode 100644 manifests/w/willibrandon/dotsider-mcp/0.7.0/willibrandon.dotsider-mcp.locale.en-US.yaml create mode 100644 manifests/w/willibrandon/dotsider-mcp/0.7.0/willibrandon.dotsider-mcp.yaml diff --git a/manifests/w/willibrandon/dotsider-mcp/0.7.0/willibrandon.dotsider-mcp.installer.yaml b/manifests/w/willibrandon/dotsider-mcp/0.7.0/willibrandon.dotsider-mcp.installer.yaml new file mode 100644 index 000000000000..ec93a12d76b9 --- /dev/null +++ b/manifests/w/willibrandon/dotsider-mcp/0.7.0/willibrandon.dotsider-mcp.installer.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: willibrandon.dotsider-mcp +PackageVersion: 0.7.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.18362.0 +InstallerType: msi +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/willibrandon/dotsider/releases/download/v0.7.0/dotsider-mcp-win-x64.msi + InstallerSha256: 1DDF62103E96C41499557BE0514C5DC2657CD1A1BA100189F243EB1BCD397279 + ProductCode: '{897646D6-6891-44C3-B489-A82D98D0129E}' +- Architecture: arm64 + InstallerUrl: https://github.com/willibrandon/dotsider/releases/download/v0.7.0/dotsider-mcp-win-arm64.msi + InstallerSha256: EF6D1EF08ED29AE8A74BD4450CA71732FBF1D42CFC27AFE7381446F5D09E6050 + ProductCode: '{63529EC1-BF60-475E-8AC2-8C70BDD1B906}' +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-27 diff --git a/manifests/w/willibrandon/dotsider-mcp/0.7.0/willibrandon.dotsider-mcp.locale.en-US.yaml b/manifests/w/willibrandon/dotsider-mcp/0.7.0/willibrandon.dotsider-mcp.locale.en-US.yaml new file mode 100644 index 000000000000..ab30ceede8f6 --- /dev/null +++ b/manifests/w/willibrandon/dotsider-mcp/0.7.0/willibrandon.dotsider-mcp.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: willibrandon.dotsider-mcp +PackageVersion: 0.7.0 +PackageLocale: en-US +Publisher: willibrandon +PublisherUrl: https://github.com/willibrandon +PublisherSupportUrl: https://github.com/willibrandon/dotsider/issues +PackageName: dotsider-mcp +PackageUrl: https://github.com/willibrandon/dotsider +License: MIT +LicenseUrl: https://github.com/willibrandon/dotsider/blob/main/LICENSE +ShortDescription: MCP server for AI-assisted .NET assembly analysis +Description: |- + dotsider-mcp is a standalone Model Context Protocol server that exposes + dotsider's .NET assembly analysis engine to AI coding assistants like + Claude Code, VS Code Copilot, and others. It provides 28 tools for + assembly analysis, IL disassembly, metadata inspection, dependency graphs, + size analysis, string extraction, diffing, and runtime tracing. +Tags: +- dotnet +- assembly +- mcp +- ai +- analysis +- il +- metadata +- devtools +ReleaseNotesUrl: https://github.com/willibrandon/dotsider/releases/tag/v0.7.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/willibrandon/dotsider/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/willibrandon/dotsider-mcp/0.7.0/willibrandon.dotsider-mcp.yaml b/manifests/w/willibrandon/dotsider-mcp/0.7.0/willibrandon.dotsider-mcp.yaml new file mode 100644 index 000000000000..993c6e647efa --- /dev/null +++ b/manifests/w/willibrandon/dotsider-mcp/0.7.0/willibrandon.dotsider-mcp.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: willibrandon.dotsider-mcp +PackageVersion: 0.7.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From ed987cbfc0bc9960e4c55730f5b837b7e0284f01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= <31723128+kris6673@users.noreply.github.com> Date: Sat, 28 Mar 2026 01:23:52 +0100 Subject: [PATCH 125/162] New version: Livebook.Livebook version 0.19.6 (#353063) --- .../0.19.6/Livebook.Livebook.installer.yaml | 26 +++++++++++++++ .../Livebook.Livebook.locale.en-US.yaml | 33 +++++++++++++++++++ .../Livebook/0.19.6/Livebook.Livebook.yaml | 8 +++++ 3 files changed, 67 insertions(+) create mode 100644 manifests/l/Livebook/Livebook/0.19.6/Livebook.Livebook.installer.yaml create mode 100644 manifests/l/Livebook/Livebook/0.19.6/Livebook.Livebook.locale.en-US.yaml create mode 100644 manifests/l/Livebook/Livebook/0.19.6/Livebook.Livebook.yaml diff --git a/manifests/l/Livebook/Livebook/0.19.6/Livebook.Livebook.installer.yaml b/manifests/l/Livebook/Livebook/0.19.6/Livebook.Livebook.installer.yaml new file mode 100644 index 000000000000..b6aa0081710e --- /dev/null +++ b/manifests/l/Livebook/Livebook/0.19.6/Livebook.Livebook.installer.yaml @@ -0,0 +1,26 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Livebook.Livebook +PackageVersion: 0.19.6 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Silent: /S +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: Livebook +ReleaseDate: 2026-03-27 +AppsAndFeaturesEntries: +- Publisher: livebook + ProductCode: Livebook +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\Livebook' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/livebook-dev/livebook/releases/download/v0.19.6/Livebook-windows-x64.exe + InstallerSha256: 9D75C8E6E75883EE27DD9D5E1DE88EB3DD80BE0436AE95D0CDD612D7A442BD7A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/Livebook/Livebook/0.19.6/Livebook.Livebook.locale.en-US.yaml b/manifests/l/Livebook/Livebook/0.19.6/Livebook.Livebook.locale.en-US.yaml new file mode 100644 index 000000000000..943e41da3351 --- /dev/null +++ b/manifests/l/Livebook/Livebook/0.19.6/Livebook.Livebook.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Livebook.Livebook +PackageVersion: 0.19.6 +PackageLocale: en-US +Publisher: Livebook +PublisherUrl: https://github.com/livebook-dev +PublisherSupportUrl: https://github.com/livebook-dev/livebook/issues +PackageName: Livebook +PackageUrl: https://github.com/livebook-dev/livebook +License: Apache-2.0 +LicenseUrl: https://github.com/livebook-dev/livebook/blob/HEAD/LICENSE +ShortDescription: Automate code & data workflows with interactive Elixir notebooks +Tags: +- charts +- collaborative +- distributed-computing +- elixir +- liveview +- markdown +- math +- notebooks +- phoenix +- realtime +- visualization +ReleaseNotes: |- + Fixed + - Some smart cells getting cleared on notebook /dev/sync (#3161) + - Reauthentication failures when accessing Livebook Teams apps (#3164) +ReleaseNotesUrl: https://github.com/livebook-dev/livebook/releases/tag/v0.19.6 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/Livebook/Livebook/0.19.6/Livebook.Livebook.yaml b/manifests/l/Livebook/Livebook/0.19.6/Livebook.Livebook.yaml new file mode 100644 index 000000000000..1804c67c0bd7 --- /dev/null +++ b/manifests/l/Livebook/Livebook/0.19.6/Livebook.Livebook.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Livebook.Livebook +PackageVersion: 0.19.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 88321ec0131e2b5a51f038288a24ae45899d7eb2 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 08:24:54 +0800 Subject: [PATCH 126/162] New version: MoeruAI.AIRI version 0.9.0-alpha.28 (#353068) --- .../MoeruAI.AIRI.installer.yaml | 19 ++++++++++++ .../MoeruAI.AIRI.locale.en-US.yaml | 30 +++++++++++++++++++ .../MoeruAI.AIRI.locale.zh-CN.yaml | 15 ++++++++++ .../AIRI/0.9.0-alpha.28/MoeruAI.AIRI.yaml | 8 +++++ 4 files changed, 72 insertions(+) create mode 100644 manifests/m/MoeruAI/AIRI/0.9.0-alpha.28/MoeruAI.AIRI.installer.yaml create mode 100644 manifests/m/MoeruAI/AIRI/0.9.0-alpha.28/MoeruAI.AIRI.locale.en-US.yaml create mode 100644 manifests/m/MoeruAI/AIRI/0.9.0-alpha.28/MoeruAI.AIRI.locale.zh-CN.yaml create mode 100644 manifests/m/MoeruAI/AIRI/0.9.0-alpha.28/MoeruAI.AIRI.yaml diff --git a/manifests/m/MoeruAI/AIRI/0.9.0-alpha.28/MoeruAI.AIRI.installer.yaml b/manifests/m/MoeruAI/AIRI/0.9.0-alpha.28/MoeruAI.AIRI.installer.yaml new file mode 100644 index 000000000000..d95b0a1f5d2d --- /dev/null +++ b/manifests/m/MoeruAI/AIRI/0.9.0-alpha.28/MoeruAI.AIRI.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: MoeruAI.AIRI +PackageVersion: 0.9.0-alpha.28 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: AIRI +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/moeru-ai/airi/releases/download/v0.9.0-alpha.28/AIRI-0.9.0-alpha.28-windows-x64-setup.exe + InstallerSha256: AE0AF53271612D8FAB47ABA0016D00A0BDC6F4E352D690AEFAC597BE02CCBD96 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/MoeruAI/AIRI/0.9.0-alpha.28/MoeruAI.AIRI.locale.en-US.yaml b/manifests/m/MoeruAI/AIRI/0.9.0-alpha.28/MoeruAI.AIRI.locale.en-US.yaml new file mode 100644 index 000000000000..e467a1991d3d --- /dev/null +++ b/manifests/m/MoeruAI/AIRI/0.9.0-alpha.28/MoeruAI.AIRI.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: MoeruAI.AIRI +PackageVersion: 0.9.0-alpha.28 +PackageLocale: en-US +Publisher: moeru +PublisherUrl: https://moeru.ai/ +PublisherSupportUrl: https://github.com/moeru-ai/airi/issues +PackageName: AIRI +PackageUrl: https://airi.moeru.ai/docs/ +License: MIT +LicenseUrl: https://github.com/moeru-ai/airi/blob/HEAD/LICENSE +Copyright: © Moeru AI 2026 +ShortDescription: Re-creating Neuro-sama, a container of souls of AI waifu / virtual characters to bring them into our worlds. +Tags: +- ai +- live2d +- vtuber +ReleaseNotes: |- + New Contributors + - @areong made their first contribution in https://github.com/moeru-ai/airi/pull/1483 + 🐞 Bug Fixes + - docs: Links to other doc pages - by @areong in https://github.com/moeru-ai/airi/issues/1483 (79b95) + - stage-layouts,stage-tamagotchi: Staled chat message state, conflicted chat store race write - by @nekomeowww (9d983) + - stage-tamagotchi: Incorrect state managed for tamagotchi (desktop) hearing module - by @nekomeowww (2a9ae) + View changes on GitHub +ReleaseNotesUrl: https://github.com/moeru-ai/airi/releases/tag/v0.9.0-alpha.28 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MoeruAI/AIRI/0.9.0-alpha.28/MoeruAI.AIRI.locale.zh-CN.yaml b/manifests/m/MoeruAI/AIRI/0.9.0-alpha.28/MoeruAI.AIRI.locale.zh-CN.yaml new file mode 100644 index 000000000000..62a9a8e9c9bf --- /dev/null +++ b/manifests/m/MoeruAI/AIRI/0.9.0-alpha.28/MoeruAI.AIRI.locale.zh-CN.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: MoeruAI.AIRI +PackageVersion: 0.9.0-alpha.28 +PackageLocale: zh-CN +PackageUrl: https://airi.moeru.ai/docs/zh-Hans/ +ShortDescription: 模型驱动的灵魂容器,什么都能做一点的桌宠:让 Neuro-sama 这样的虚拟伴侣也成为我们世界中的一份子吧! +Tags: +- live2d +- 人工智能 +- 皮套人 +- 虚拟主播 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MoeruAI/AIRI/0.9.0-alpha.28/MoeruAI.AIRI.yaml b/manifests/m/MoeruAI/AIRI/0.9.0-alpha.28/MoeruAI.AIRI.yaml new file mode 100644 index 000000000000..e52549beb300 --- /dev/null +++ b/manifests/m/MoeruAI/AIRI/0.9.0-alpha.28/MoeruAI.AIRI.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: MoeruAI.AIRI +PackageVersion: 0.9.0-alpha.28 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From e1dc101d0d40a818b2ba2a7bbf6a62d4b2c99442 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 08:25:53 +0800 Subject: [PATCH 127/162] New version: libjpeg-turbo.libjpeg-turbo.VC version 3.1.4.1 (#353077) --- ...jpeg-turbo.libjpeg-turbo.VC.installer.yaml | 37 +++++++++++++++++ ...g-turbo.libjpeg-turbo.VC.locale.en-US.yaml | 40 +++++++++++++++++++ ...g-turbo.libjpeg-turbo.VC.locale.zh-CN.yaml | 26 ++++++++++++ .../libjpeg-turbo.libjpeg-turbo.VC.yaml | 8 ++++ 4 files changed, 111 insertions(+) create mode 100644 manifests/l/libjpeg-turbo/libjpeg-turbo/VC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.VC.installer.yaml create mode 100644 manifests/l/libjpeg-turbo/libjpeg-turbo/VC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.VC.locale.en-US.yaml create mode 100644 manifests/l/libjpeg-turbo/libjpeg-turbo/VC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.VC.locale.zh-CN.yaml create mode 100644 manifests/l/libjpeg-turbo/libjpeg-turbo/VC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.VC.yaml diff --git a/manifests/l/libjpeg-turbo/libjpeg-turbo/VC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.VC.installer.yaml b/manifests/l/libjpeg-turbo/libjpeg-turbo/VC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.VC.installer.yaml new file mode 100644 index 000000000000..c9ccf11b30a0 --- /dev/null +++ b/manifests/l/libjpeg-turbo/libjpeg-turbo/VC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.VC.installer.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: libjpeg-turbo.libjpeg-turbo.VC +PackageVersion: 3.1.4.1 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: uninstallPrevious +Commands: +- cjpeg +- djpeg +- jpegtran +- rdjpgcom +- tjbench +- wrjpgcom +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/libjpeg-turbo/libjpeg-turbo/releases/download/3.1.4.1/libjpeg-turbo-3.1.4.1-vc-x86.exe + InstallerSha256: 92562AE82075A91C63371EC18FD7B285E87B775CCBC5ACEA5839BF410CEB175F + ProductCode: libjpeg-turbo 3.1.4.1 + AppsAndFeaturesEntries: + - DisplayName: libjpeg-turbo SDK v3.1.4.1 for Visual C++ +- Architecture: x64 + InstallerUrl: https://github.com/libjpeg-turbo/libjpeg-turbo/releases/download/3.1.4.1/libjpeg-turbo-3.1.4.1-vc-x64.exe + InstallerSha256: 2BB347F106473C12635BDD414B1F289DE9F4D6DEA4A496D3F9DD212DB9EDA0DC + ProductCode: libjpeg-turbo64 3.1.4.1 + AppsAndFeaturesEntries: + - DisplayName: libjpeg-turbo SDK v3.1.4.1 for Visual C++ 64-bit +- Architecture: arm64 + InstallerUrl: https://github.com/libjpeg-turbo/libjpeg-turbo/releases/download/3.1.4.1/libjpeg-turbo-3.1.4.1-vc-arm64.exe + InstallerSha256: BC5F251FC80C96160AB0EA72EBDBC0CDF203AA7C957B044CBA36DAA4BFAE376C + ProductCode: libjpeg-turbo64 3.1.4.1 + AppsAndFeaturesEntries: + - DisplayName: libjpeg-turbo SDK v3.1.4.1 for Visual C++ 64-bit +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/libjpeg-turbo/libjpeg-turbo/VC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.VC.locale.en-US.yaml b/manifests/l/libjpeg-turbo/libjpeg-turbo/VC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.VC.locale.en-US.yaml new file mode 100644 index 000000000000..a7d6df6fee0c --- /dev/null +++ b/manifests/l/libjpeg-turbo/libjpeg-turbo/VC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.VC.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: libjpeg-turbo.libjpeg-turbo.VC +PackageVersion: 3.1.4.1 +PackageLocale: en-US +Publisher: libjpeg-turbo +PublisherUrl: https://libjpeg-turbo.org/ +PublisherSupportUrl: https://github.com/libjpeg-turbo/libjpeg-turbo/issues +Author: Darrell Commander +PackageName: libjpeg-turbo SDK for Visual C++ +PackageUrl: https://libjpeg-turbo.org/ +License: IJG license, Modified (3-clause) BSD License and zlib License +LicenseUrl: https://github.com/libjpeg-turbo/libjpeg-turbo/blob/main/LICENSE.md +Copyright: Copyright (C)2009-2026 D. R. Commander. All Rights Reserved. +ShortDescription: SIMD-accelerated libjpeg-compatible JPEG codec library +Description: libjpeg-turbo is a JPEG image codec that uses SIMD instructions (MMX, SSE2, NEON, AltiVec) to accelerate baseline JPEG compression and decompression on x86, x86-64, ARM, and PowerPC systems. On such systems, libjpeg-turbo is generally 2-6x as fast as libjpeg, all else being equal. On other types of systems, libjpeg-turbo can still outperform libjpeg by a significant amount, by virtue of its highly-optimized Huffman coding routines. In many cases, the performance of libjpeg-turbo rivals that of proprietary high-speed JPEG codecs. +Tags: +- jpeg +- libjpeg +ReleaseNotes: |- + Significant changes relative to 3.1.4: + 1. Fixed multiple issues, some long-standing and some that were regressions introduced in 3.1.4, that made the CMake package config files non-relocatable and broke the --prefix option to cmake --install. + Significant changes relative to 3.1.3: + 1. Fixed an issue in the TurboJPEG 2.x compatibility wrapper whereby, if a calling program attempted to decompress a lossless JPEG image using tjDecompress2() with decompression scaling, the decompressed image was unexpectedly unscaled. This could have led to a buffer overrun if the caller allocated the packed-pixel destination buffer based on the assumption that the decompressed image would be scaled down. + 2. The SIMD dispatchers now use getauxval() or elf_aux_info(), if available, to detect support for Neon and AltiVec instructions on AArch32 and PowerPC Linux, Android, and *BSD systems. + 3. Hardened the libjpeg API against hypothetical applications that may erroneously set one of the exposed quantization table values to 0 just before calling jpeg_start_compress(). (This would never happen in a correctly-written program, because jpeg_add_quant_table() clamps all values less than 1.) + 4. Fixed a division-by-zero error that occurred when attempting to use the jpegtran -drop option with a specially-crafted malformed drop image (specifically an image in which one or more of the quantization table values was 0.) + 5. Fixed an issue in the TurboJPEG API library's data destination manager that manifested as: + - a memory leak that occurred if a pre-allocated JPEG destination buffer was passed to tj3Compress*() or tj3Transform(), TJPARAM_NOREALLOC was unset, and it was necessary for the library to re-allocate the buffer to accommodate the destination image, and + - a potential caller double free that occurred if pre-allocated JPEG destination buffers were passed to tj3Transform(), multiple lossless transform operations were performed, and it was necessary for the library to re-allocate the second buffer to accommodate the second destination image. + 6. Fixed an issue in tj3Transform() whereby, if TJPARAM_SAVEMARKERS was set to 2 or 4, TJXOPT_COPYNONE was not specified, an ICC profile was extracted from the source image, and another ICC profile was associated with the TurboJPEG instance using tj3SetICCProfile(), both profiles were embedded in the destination image. The documented API behavior is for TJXOPT_COPYNONE to take precedence over TJPARAM_SAVEMARKERS and for TJPARAM_SAVEMARKERS to take precedence over the associated ICC profile. Thus, tj3Transform() now ignores the associated ICC profile unless TJXOPT_COPYNONE is specified or TJPARAM_SAVEMARKERS is set to something other than 2 or 4. + 7. Fixed an oversight in the libjpeg API whereby, if a calling application manually set cinfo.Ss (the predictor selection value) to a value less than 1 or greater than 7 after calling jpeg_enable_lossless() and prior to calling jpeg_start_compress(), an incorrect (all white) lossless JPEG image was silently generated. + 8. Further hardened the TurboJPEG Java API against hypothetical applications that may erroneously pass huge values to one of the compression, YUV encoding, decompression, YUV decoding, or packed-pixel image I/O methods, leading to signed integer overflow in the JNI wrapper's buffer size checks that rendered those checks ineffective. +ReleaseNotesUrl: https://github.com/libjpeg-turbo/libjpeg-turbo/releases/tag/3.1.4.1 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://libjpeg-turbo.org/Documentation/Documentation +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/libjpeg-turbo/libjpeg-turbo/VC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.VC.locale.zh-CN.yaml b/manifests/l/libjpeg-turbo/libjpeg-turbo/VC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.VC.locale.zh-CN.yaml new file mode 100644 index 000000000000..238bbcb531c4 --- /dev/null +++ b/manifests/l/libjpeg-turbo/libjpeg-turbo/VC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.VC.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: libjpeg-turbo.libjpeg-turbo.VC +PackageVersion: 3.1.4.1 +PackageLocale: zh-CN +Publisher: libjpeg-turbo +PublisherUrl: https://libjpeg-turbo.org/ +PublisherSupportUrl: https://github.com/libjpeg-turbo/libjpeg-turbo/issues +Author: Darrell Commander +PackageName: libjpeg-turbo SDK for Visual C++ +PackageUrl: https://libjpeg-turbo.org/ +License: IJG 许可证、修改的 (3-clause) BSD 许可证和 zlib 许可证 +LicenseUrl: https://github.com/libjpeg-turbo/libjpeg-turbo/blob/main/LICENSE.md +Copyright: Copyright (C)2009-2026 D. R. Commander. All Rights Reserved. +ShortDescription: 使用 SIMD 加速、兼容 libjpeg 的 JPEG 编解码库 +Description: libjpeg-turbo 是一个 JPEG 图像编解码器,使用 SIMD 指令(MMX、SSE2、NEON、AltiVec)来加速 x86、x86-64、ARM、PowerPC 系统上的基准 JPEG 压缩和解压缩。在这些系统上,其它条件相同,libjpeg-turbo 的速度通常是 libjpeg 的 2~6 倍。在其它类型的系统上,凭借其高度优化的 Huffman 编码程序,libjpeg-turbo 依然可以比 libjpeg 快很多。在大多数情况下,libjpeg-turbo 的性能可与专有的高速 JPEG 编解码器相媲美。 +Tags: +- jpeg +- libjpeg +ReleaseNotesUrl: https://github.com/libjpeg-turbo/libjpeg-turbo/releases/tag/3.1.4.1 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://libjpeg-turbo.org/Documentation/Documentation +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/libjpeg-turbo/libjpeg-turbo/VC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.VC.yaml b/manifests/l/libjpeg-turbo/libjpeg-turbo/VC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.VC.yaml new file mode 100644 index 000000000000..0877c5dc1801 --- /dev/null +++ b/manifests/l/libjpeg-turbo/libjpeg-turbo/VC/3.1.4.1/libjpeg-turbo.libjpeg-turbo.VC.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: libjpeg-turbo.libjpeg-turbo.VC +PackageVersion: 3.1.4.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From d4a867a0360fc191d1646c078861cdb11f99f61a Mon Sep 17 00:00:00 2001 From: PckgrBot <119904223+PckgrBot@users.noreply.github.com> Date: Sat, 28 Mar 2026 10:27:06 +1000 Subject: [PATCH 128/162] New version: IDMComputerSolutions,Inc.UltraEdit version 32.2.0.21 (#353087) --- ...uterSolutions,Inc.UltraEdit.installer.yaml | 54 +++++++++++++++++++ ...rSolutions,Inc.UltraEdit.locale.en-US.yaml | 27 ++++++++++ .../IDMComputerSolutions,Inc.UltraEdit.yaml | 8 +++ 3 files changed, 89 insertions(+) create mode 100644 manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.21/IDMComputerSolutions,Inc.UltraEdit.installer.yaml create mode 100644 manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.21/IDMComputerSolutions,Inc.UltraEdit.locale.en-US.yaml create mode 100644 manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.21/IDMComputerSolutions,Inc.UltraEdit.yaml diff --git a/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.21/IDMComputerSolutions,Inc.UltraEdit.installer.yaml b/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.21/IDMComputerSolutions,Inc.UltraEdit.installer.yaml new file mode 100644 index 000000000000..52a285ca56dd --- /dev/null +++ b/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.21/IDMComputerSolutions,Inc.UltraEdit.installer.yaml @@ -0,0 +1,54 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: IDMComputerSolutions,Inc.UltraEdit +PackageVersion: 32.2.0.21 +InstallerType: exe +InstallerSwitches: + Silent: /S /SUPPRESSMSGBOXES + SilentWithProgress: /S /SUPPRESSMSGBOXES +ProductCode: '{AFFE5F64-3248-41E9-96AE-8B475F6EFAB3}' +ReleaseDate: 2026-03-25 +Installers: +- InstallerLocale: zh-TW + Architecture: x64 + InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_chinese_64.exe + InstallerSha256: 385331866571531FE27C94F5E8418BCC839BA9DA21333EF37962EFB2D8B833BD +- InstallerLocale: zh-CN + Architecture: x64 + InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_chinese_64.exe + InstallerSha256: 385331866571531FE27C94F5E8418BCC839BA9DA21333EF37962EFB2D8B833BD +- InstallerLocale: pt-BR + Architecture: x64 + InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_chinese_64.exe + InstallerSha256: 385331866571531FE27C94F5E8418BCC839BA9DA21333EF37962EFB2D8B833BD +- InstallerLocale: ko-KR + Architecture: x64 + InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_chinese_64.exe + InstallerSha256: 385331866571531FE27C94F5E8418BCC839BA9DA21333EF37962EFB2D8B833BD +- InstallerLocale: ja-JP + Architecture: x64 + InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_chinese_64.exe + InstallerSha256: 385331866571531FE27C94F5E8418BCC839BA9DA21333EF37962EFB2D8B833BD +- InstallerLocale: it-IT + Architecture: x64 + InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_chinese_64.exe + InstallerSha256: 385331866571531FE27C94F5E8418BCC839BA9DA21333EF37962EFB2D8B833BD +- InstallerLocale: fr-FR + Architecture: x64 + InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_chinese_64.exe + InstallerSha256: 385331866571531FE27C94F5E8418BCC839BA9DA21333EF37962EFB2D8B833BD +- InstallerLocale: es-ES + Architecture: x64 + InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_chinese_64.exe + InstallerSha256: 385331866571531FE27C94F5E8418BCC839BA9DA21333EF37962EFB2D8B833BD +- InstallerLocale: en-US + Architecture: x64 + InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_chinese_64.exe + InstallerSha256: 385331866571531FE27C94F5E8418BCC839BA9DA21333EF37962EFB2D8B833BD +- InstallerLocale: de-DE + Architecture: x64 + InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_chinese_64.exe + InstallerSha256: 385331866571531FE27C94F5E8418BCC839BA9DA21333EF37962EFB2D8B833BD +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.21/IDMComputerSolutions,Inc.UltraEdit.locale.en-US.yaml b/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.21/IDMComputerSolutions,Inc.UltraEdit.locale.en-US.yaml new file mode 100644 index 000000000000..3bd1d89539fd --- /dev/null +++ b/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.21/IDMComputerSolutions,Inc.UltraEdit.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: IDMComputerSolutions,Inc.UltraEdit +PackageVersion: 32.2.0.21 +PackageLocale: en-US +Publisher: IDM Computer Solutions, Inc. +PublisherUrl: https://www.ultraedit.com/company/about-us/ +PublisherSupportUrl: https://www.ultraedit.com/products/ultraedit/licenses-and-faqs/ +PrivacyUrl: https://www.ideracorp.com/Legal/PrivacyShield +Author: Ian D. Mead +PackageName: UltraEdit +PackageUrl: https://www.ultraedit.com/downloads/ultraedit-download-thank-you/ +License: Proprietary +LicenseUrl: https://www.ideracorp.com/legal/UltraEdit +Copyright: © Copyright 2025, All Rights Reserved +CopyrightUrl: https://www.ultraedit.com/#:~:text=%C2%A9%20Copyright%202025%2C%20All%20Rights%20Reserved +ShortDescription: UltraEdit is the most flexible, powerful, and secure text editor. +Description: | + UltraEdit is the powerful text editor built for developers, data wranglers, and IT pros handling large files and complex tasks. +Moniker: ultraedit +PurchaseUrl: https://www.ultraedit.com/pricing +Documentations: +- DocumentLabel: UltraEdit text editor wiki + DocumentUrl: https://wiki.ultraedit.com/Main_Page +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.21/IDMComputerSolutions,Inc.UltraEdit.yaml b/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.21/IDMComputerSolutions,Inc.UltraEdit.yaml new file mode 100644 index 000000000000..56b02587a402 --- /dev/null +++ b/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.21/IDMComputerSolutions,Inc.UltraEdit.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: IDMComputerSolutions,Inc.UltraEdit +PackageVersion: 32.2.0.21 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 6ed3d304f1ed0d3b3be341503ea4fa9a8586fbf8 Mon Sep 17 00:00:00 2001 From: matchmycolor <124382317+matchmycolor@users.noreply.github.com> Date: Sat, 28 Mar 2026 01:28:31 +0100 Subject: [PATCH 129/162] New version: matchmycolor.ColibriAlpha version 26.2.0.16741 (#353090) --- .../matchmycolor.ColibriAlpha.installer.yaml | 6 +++--- .../matchmycolor.ColibriAlpha.locale.en-US.yaml | 2 +- .../matchmycolor.ColibriAlpha.yaml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) rename manifests/m/matchmycolor/ColibriAlpha/{26.2.0.16733 => 26.2.0.16741}/matchmycolor.ColibriAlpha.installer.yaml (79%) rename manifests/m/matchmycolor/ColibriAlpha/{26.2.0.16733 => 26.2.0.16741}/matchmycolor.ColibriAlpha.locale.en-US.yaml (95%) rename manifests/m/matchmycolor/ColibriAlpha/{26.2.0.16733 => 26.2.0.16741}/matchmycolor.ColibriAlpha.yaml (86%) diff --git a/manifests/m/matchmycolor/ColibriAlpha/26.2.0.16733/matchmycolor.ColibriAlpha.installer.yaml b/manifests/m/matchmycolor/ColibriAlpha/26.2.0.16741/matchmycolor.ColibriAlpha.installer.yaml similarity index 79% rename from manifests/m/matchmycolor/ColibriAlpha/26.2.0.16733/matchmycolor.ColibriAlpha.installer.yaml rename to manifests/m/matchmycolor/ColibriAlpha/26.2.0.16741/matchmycolor.ColibriAlpha.installer.yaml index b8e770c68554..e9cb82dba0de 100644 --- a/manifests/m/matchmycolor/ColibriAlpha/26.2.0.16733/matchmycolor.ColibriAlpha.installer.yaml +++ b/manifests/m/matchmycolor/ColibriAlpha/26.2.0.16741/matchmycolor.ColibriAlpha.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: matchmycolor.ColibriAlpha -PackageVersion: 26.2.0.16733 +PackageVersion: 26.2.0.16741 InstallerType: exe InstallerSwitches: Silent: /s @@ -14,7 +14,7 @@ Dependencies: - PackageIdentifier: Microsoft.VCRedist.2015+.x86 Installers: - Architecture: x86 - InstallerUrl: https://cdn.matchmycolor.com/colibri/26.2.0/Colibri_26.2.0-alpha.406.exe - InstallerSha256: 177CC0E6A2267EFC05EFF0BC56C6AFC51871DED0AA93A6B729AB31F3EABA9033 + InstallerUrl: https://cdn.matchmycolor.com/colibri/26.2.0/Colibri_26.2.0-alpha.414.exe + InstallerSha256: 26763024D4C71A6FDFCF216A0ED341841E2E3CD37FC2D18E97D69C0A2A33CB32 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/m/matchmycolor/ColibriAlpha/26.2.0.16733/matchmycolor.ColibriAlpha.locale.en-US.yaml b/manifests/m/matchmycolor/ColibriAlpha/26.2.0.16741/matchmycolor.ColibriAlpha.locale.en-US.yaml similarity index 95% rename from manifests/m/matchmycolor/ColibriAlpha/26.2.0.16733/matchmycolor.ColibriAlpha.locale.en-US.yaml rename to manifests/m/matchmycolor/ColibriAlpha/26.2.0.16741/matchmycolor.ColibriAlpha.locale.en-US.yaml index 3db217e8eea9..76e0487dd3e3 100644 --- a/manifests/m/matchmycolor/ColibriAlpha/26.2.0.16733/matchmycolor.ColibriAlpha.locale.en-US.yaml +++ b/manifests/m/matchmycolor/ColibriAlpha/26.2.0.16741/matchmycolor.ColibriAlpha.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: matchmycolor.ColibriAlpha -PackageVersion: 26.2.0.16733 +PackageVersion: 26.2.0.16741 PackageLocale: en-US Publisher: matchmycolor PublisherUrl: https://www.matchmycolor.com/ diff --git a/manifests/m/matchmycolor/ColibriAlpha/26.2.0.16733/matchmycolor.ColibriAlpha.yaml b/manifests/m/matchmycolor/ColibriAlpha/26.2.0.16741/matchmycolor.ColibriAlpha.yaml similarity index 86% rename from manifests/m/matchmycolor/ColibriAlpha/26.2.0.16733/matchmycolor.ColibriAlpha.yaml rename to manifests/m/matchmycolor/ColibriAlpha/26.2.0.16741/matchmycolor.ColibriAlpha.yaml index 990a3f32f057..744fb146c046 100644 --- a/manifests/m/matchmycolor/ColibriAlpha/26.2.0.16733/matchmycolor.ColibriAlpha.yaml +++ b/manifests/m/matchmycolor/ColibriAlpha/26.2.0.16741/matchmycolor.ColibriAlpha.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: matchmycolor.ColibriAlpha -PackageVersion: 26.2.0.16733 +PackageVersion: 26.2.0.16741 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 From 84b5dde25efdff3a0513521ca1a2cad12bd8594c Mon Sep 17 00:00:00 2001 From: Francesco <137506210+flick9000@users.noreply.github.com> Date: Sat, 28 Mar 2026 01:29:39 +0100 Subject: [PATCH 130/162] New version: flick9000.WinScript version 2.1.4 (#353094) --- .../2.1.4/flick9000.WinScript.installer.yaml | 13 ++++++++ .../flick9000.WinScript.locale.en-US.yaml | 33 +++++++++++++++++++ .../WinScript/2.1.4/flick9000.WinScript.yaml | 8 +++++ 3 files changed, 54 insertions(+) create mode 100644 manifests/f/flick9000/WinScript/2.1.4/flick9000.WinScript.installer.yaml create mode 100644 manifests/f/flick9000/WinScript/2.1.4/flick9000.WinScript.locale.en-US.yaml create mode 100644 manifests/f/flick9000/WinScript/2.1.4/flick9000.WinScript.yaml diff --git a/manifests/f/flick9000/WinScript/2.1.4/flick9000.WinScript.installer.yaml b/manifests/f/flick9000/WinScript/2.1.4/flick9000.WinScript.installer.yaml new file mode 100644 index 000000000000..46aafaf53f59 --- /dev/null +++ b/manifests/f/flick9000/WinScript/2.1.4/flick9000.WinScript.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: flick9000.WinScript +PackageVersion: 2.1.4 +InstallerType: nullsoft +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/flick9000/winscript/releases/download/v2.1.4/winscript-installer.exe + InstallerSha256: D85AA8B4C413CA2320431B5F3E702E9AAC9287A35B49B2EB8AC1C82BE28D8C3A +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-27 diff --git a/manifests/f/flick9000/WinScript/2.1.4/flick9000.WinScript.locale.en-US.yaml b/manifests/f/flick9000/WinScript/2.1.4/flick9000.WinScript.locale.en-US.yaml new file mode 100644 index 000000000000..407fa06f6783 --- /dev/null +++ b/manifests/f/flick9000/WinScript/2.1.4/flick9000.WinScript.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: flick9000.WinScript +PackageVersion: 2.1.4 +PackageLocale: en-US +Publisher: flick9000 +PublisherUrl: https://github.com/flick9000 +PublisherSupportUrl: https://github.com/flick9000/winscript/issues +PackageName: WinScript +PackageUrl: https://github.com/flick9000/winscript +License: GPL-3.0 +ShortDescription: Open-source tool to build your Windows 10/11 script from scratch. It includes debloat, privacy, performance & app installing scripts. +Tags: +- bloatware +- debloat +- debloater +- install-script +- installer-script +- optimize +- privacy +- privacy-tools +- script +- security +- security-tools +- telemetry +- tweaks +- windows +- windows-10 +- windows-11 +ReleaseNotesUrl: https://github.com/flick9000/winscript/releases/tag/v2.1.4 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/flick9000/WinScript/2.1.4/flick9000.WinScript.yaml b/manifests/f/flick9000/WinScript/2.1.4/flick9000.WinScript.yaml new file mode 100644 index 000000000000..1d9204097d91 --- /dev/null +++ b/manifests/f/flick9000/WinScript/2.1.4/flick9000.WinScript.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: flick9000.WinScript +PackageVersion: 2.1.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 1a2e250b4d27e27cf4a4b16a8f027b3372721f7d Mon Sep 17 00:00:00 2001 From: UnownBot Date: Fri, 27 Mar 2026 21:00:33 -0400 Subject: [PATCH 131/162] New version: astral-sh.ty version 0.0.26 (#352654) --- .../ty/0.0.26/astral-sh.ty.installer.yaml | 36 +++++++++++++ .../ty/0.0.26/astral-sh.ty.locale.en-US.yaml | 52 +++++++++++++++++++ .../a/astral-sh/ty/0.0.26/astral-sh.ty.yaml | 8 +++ 3 files changed, 96 insertions(+) create mode 100644 manifests/a/astral-sh/ty/0.0.26/astral-sh.ty.installer.yaml create mode 100644 manifests/a/astral-sh/ty/0.0.26/astral-sh.ty.locale.en-US.yaml create mode 100644 manifests/a/astral-sh/ty/0.0.26/astral-sh.ty.yaml diff --git a/manifests/a/astral-sh/ty/0.0.26/astral-sh.ty.installer.yaml b/manifests/a/astral-sh/ty/0.0.26/astral-sh.ty.installer.yaml new file mode 100644 index 000000000000..4177e80909b0 --- /dev/null +++ b/manifests/a/astral-sh/ty/0.0.26/astral-sh.ty.installer.yaml @@ -0,0 +1,36 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: astral-sh.ty +PackageVersion: 0.0.26 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ty.exe +InstallModes: +- silent +UpgradeBehavior: install +Commands: +- ty +ReleaseDate: 2026-03-26 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/astral-sh/ty/releases/download/0.0.26/ty-i686-pc-windows-msvc.zip + InstallerSha256: 41E3C6D3D58F8F4BC67A04D9A501E835A67500E91A74D6E05854DE0553A50D2C + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + InstallerUrl: https://github.com/astral-sh/ty/releases/download/0.0.26/ty-x86_64-pc-windows-msvc.zip + InstallerSha256: 6390BC2612318F12FFA3170490B64E98AAC67193316E0FF7F7F46B79C6EFF7AB + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/astral-sh/ty/releases/download/0.0.26/ty-aarch64-pc-windows-msvc.zip + InstallerSha256: C0C68C271768457822D4524D1B1CC46147E41BABBFDA724AED9A59D83133432B + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/astral-sh/ty/0.0.26/astral-sh.ty.locale.en-US.yaml b/manifests/a/astral-sh/ty/0.0.26/astral-sh.ty.locale.en-US.yaml new file mode 100644 index 000000000000..6b62f29fd02f --- /dev/null +++ b/manifests/a/astral-sh/ty/0.0.26/astral-sh.ty.locale.en-US.yaml @@ -0,0 +1,52 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: astral-sh.ty +PackageVersion: 0.0.26 +PackageLocale: en-US +Publisher: Astral Software Inc. +PublisherUrl: https://astral.sh/ +PublisherSupportUrl: https://github.com/astral-sh/ty/issues +Author: Astral Software Inc. +PackageName: ty +PackageUrl: https://github.com/astral-sh/ty +License: MIT +LicenseUrl: https://github.com/astral-sh/ty/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025 Astral Software Inc. +CopyrightUrl: https://github.com/astral-sh/ty/blob/HEAD/LICENSE +ShortDescription: An extremely fast Python type checker and language server, written in Rust. +Moniker: ty +Tags: +- python +ReleaseNotes: |- + Bug fixes + - Prevent "too many cycle iteration" panics in more situations (#24061) + - Fix false positives and false negatives when unpacking a union of tuples into a function call (#23298) + + Core type checking + - Add support for typing.Concatenate (#23689) + - Validate the return type of generator functions (#24026) + - Support dataclass field converters (#23088) + - Disallow Self in metaclass and static methods (#23231) + - Improve call inference for keyword-only dict() (#24103) + - Respect non-explicitly defined dataclass_transform params (#24170) + - Unconditionally silence diagnostics in unreachable code (#24179) + - Respect terminal-function-call narrowing in global scope (#23245) + + Performance + - Fix performance regression for narrowing on a larger Literal type(#24185) + + Contributors + - @sharkdp + - @Glyphack + - @charliermarsh + - @mtshiba + - @dhruvmanila + - @carljm + - @choucavalier +ReleaseNotesUrl: https://github.com/astral-sh/ty/releases/tag/0.0.26 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.astral.sh/ty/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/astral-sh/ty/0.0.26/astral-sh.ty.yaml b/manifests/a/astral-sh/ty/0.0.26/astral-sh.ty.yaml new file mode 100644 index 000000000000..67e01519e7cc --- /dev/null +++ b/manifests/a/astral-sh/ty/0.0.26/astral-sh.ty.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: astral-sh.ty +PackageVersion: 0.0.26 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 8be9ecb01bd55d3bd8713a7837cc9fe6e53e3612 Mon Sep 17 00:00:00 2001 From: ibbytheboss <146304310+ibbytheboss@users.noreply.github.com> Date: Fri, 27 Mar 2026 20:02:01 -0500 Subject: [PATCH 132/162] New version: TheInferenceGrid.grid version 0.3.5 (#352810) --- .../TheInferenceGrid.grid.installer.yaml | 20 +++++++++++++++++++ .../TheInferenceGrid.grid.locale.en-US.yaml | 19 ++++++++++++++++++ .../grid/0.3.5/TheInferenceGrid.grid.yaml | 8 ++++++++ 3 files changed, 47 insertions(+) create mode 100644 manifests/t/TheInferenceGrid/grid/0.3.5/TheInferenceGrid.grid.installer.yaml create mode 100644 manifests/t/TheInferenceGrid/grid/0.3.5/TheInferenceGrid.grid.locale.en-US.yaml create mode 100644 manifests/t/TheInferenceGrid/grid/0.3.5/TheInferenceGrid.grid.yaml diff --git a/manifests/t/TheInferenceGrid/grid/0.3.5/TheInferenceGrid.grid.installer.yaml b/manifests/t/TheInferenceGrid/grid/0.3.5/TheInferenceGrid.grid.installer.yaml new file mode 100644 index 000000000000..514556b097e5 --- /dev/null +++ b/manifests/t/TheInferenceGrid/grid/0.3.5/TheInferenceGrid.grid.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: TheInferenceGrid.grid +PackageVersion: 0.3.5 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: grid.exe + PortableCommandAlias: grid +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/The-AI-Grid/grid-cli/releases/download/v0.3.5/grid_0.3.5_windows_amd64.zip + InstallerSha256: 2F5C68AF7442F7B326DD497043899523C9ED7BB3B62113C00059BDC277E68618 +- Architecture: arm64 + InstallerUrl: https://github.com/The-AI-Grid/grid-cli/releases/download/v0.3.5/grid_0.3.5_windows_arm64.zip + InstallerSha256: 90F1DD723C99C669B4AD43C321FFD117B6DA46423483009024202C818C54088F +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-26 diff --git a/manifests/t/TheInferenceGrid/grid/0.3.5/TheInferenceGrid.grid.locale.en-US.yaml b/manifests/t/TheInferenceGrid/grid/0.3.5/TheInferenceGrid.grid.locale.en-US.yaml new file mode 100644 index 000000000000..77403ee16489 --- /dev/null +++ b/manifests/t/TheInferenceGrid/grid/0.3.5/TheInferenceGrid.grid.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: TheInferenceGrid.grid +PackageVersion: 0.3.5 +PackageLocale: en-US +Publisher: The Inference Grid +PublisherUrl: https://github.com/The-AI-Grid +PublisherSupportUrl: https://github.com/The-AI-Grid/grid-cli/issues +PackageName: grid +PackageUrl: https://github.com/The-AI-Grid/grid-cli +License: Proprietary +ShortDescription: CLI for The Grid - global inference clearinghouse for compute +ReleaseNotesUrl: https://github.com/The-AI-Grid/grid-cli/releases/tag/v0.3.5 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/The-AI-Grid/grid-cli/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/TheInferenceGrid/grid/0.3.5/TheInferenceGrid.grid.yaml b/manifests/t/TheInferenceGrid/grid/0.3.5/TheInferenceGrid.grid.yaml new file mode 100644 index 000000000000..ba8de2b8e9af --- /dev/null +++ b/manifests/t/TheInferenceGrid/grid/0.3.5/TheInferenceGrid.grid.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: TheInferenceGrid.grid +PackageVersion: 0.3.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From d33b5ae574742ccb1ee7dcfc212c762c2af7d14c Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 09:02:57 +0800 Subject: [PATCH 133/162] New version: ElementLabs.LMStudio version 0.4.8+1 (0.4.8-1) (#352819) --- .../ElementLabs.LMStudio.installer.yaml | 39 ++++++++++++++++++ .../ElementLabs.LMStudio.locale.en-US.yaml | 41 +++++++++++++++++++ .../ElementLabs.LMStudio.locale.zh-CN.yaml | 25 +++++++++++ .../0.4.8+1/ElementLabs.LMStudio.yaml | 8 ++++ 4 files changed, 113 insertions(+) create mode 100644 manifests/e/ElementLabs/LMStudio/0.4.8+1/ElementLabs.LMStudio.installer.yaml create mode 100644 manifests/e/ElementLabs/LMStudio/0.4.8+1/ElementLabs.LMStudio.locale.en-US.yaml create mode 100644 manifests/e/ElementLabs/LMStudio/0.4.8+1/ElementLabs.LMStudio.locale.zh-CN.yaml create mode 100644 manifests/e/ElementLabs/LMStudio/0.4.8+1/ElementLabs.LMStudio.yaml diff --git a/manifests/e/ElementLabs/LMStudio/0.4.8+1/ElementLabs.LMStudio.installer.yaml b/manifests/e/ElementLabs/LMStudio/0.4.8+1/ElementLabs.LMStudio.installer.yaml new file mode 100644 index 000000000000..2f40e940107e --- /dev/null +++ b/manifests/e/ElementLabs/LMStudio/0.4.8+1/ElementLabs.LMStudio.installer.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ElementLabs.LMStudio +PackageVersion: 0.4.8+1 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- lmstudio +ProductCode: c6dbe996-22a9-5998-b542-7abe33da3b83 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://installers.lmstudio.ai/win32/x64/0.4.8-1/LM-Studio-0.4.8-1-x64.exe + InstallerSha256: A109B8CDBF76965F9B8074B79B4374A6910F68C09CE603E33AB7ABC31A677673 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://installers.lmstudio.ai/win32/x64/0.4.8-1/LM-Studio-0.4.8-1-x64.exe + InstallerSha256: A109B8CDBF76965F9B8074B79B4374A6910F68C09CE603E33AB7ABC31A677673 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: user + InstallerUrl: https://installers.lmstudio.ai/win32/arm64/0.4.8-1/LM-Studio-0.4.8-1-arm64.exe + InstallerSha256: CF16741FA39B52E6425CE72BD568E5F1F38A79351F3A178517E7D1141B1028CE + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://installers.lmstudio.ai/win32/arm64/0.4.8-1/LM-Studio-0.4.8-1-arm64.exe + InstallerSha256: CF16741FA39B52E6425CE72BD568E5F1F38A79351F3A178517E7D1141B1028CE + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/e/ElementLabs/LMStudio/0.4.8+1/ElementLabs.LMStudio.locale.en-US.yaml b/manifests/e/ElementLabs/LMStudio/0.4.8+1/ElementLabs.LMStudio.locale.en-US.yaml new file mode 100644 index 000000000000..dc4a04e31d6c --- /dev/null +++ b/manifests/e/ElementLabs/LMStudio/0.4.8+1/ElementLabs.LMStudio.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ElementLabs.LMStudio +PackageVersion: 0.4.8+1 +PackageLocale: en-US +Publisher: LM Studio +PublisherUrl: https://lmstudio.ai/ +Author: Element Labs, Inc. +PackageName: LM Studio +PackageUrl: https://lmstudio.ai/ +License: Freeware +LicenseUrl: https://lmstudio.ai/terms +Copyright: © LM Studio 2023 - 2026 +CopyrightUrl: https://lmstudio.ai/terms +ShortDescription: Discover, download, and run local LLMs +Description: LM Studio is an easy to use desktop app for experimenting with local and open-source Large Language Models (LLMs). The LM Studio cross platform desktop app allows you to download and run any ggml-compatible model from Hugging Face, and provides a simple yet powerful model configuration and inferencing UI. The app leverages your GPU when possible. +Tags: +- ai +- chatbot +- deepseek +- gemma +- kimi +- large-language-model +- llama +- llm +- mistral +- qwen +ReleaseNotes: |- + - Add support for reasoning_effort and reasoning_tokens in OpenAI-compatible v1/chat/completions + - Adds a reasoning field to the /api/v1/models API response, indicating each model's supported reasoning capabilities/REST configuration options learn more + - Fixed a bug where Insert in chat input would sometimes not work after toggling assistant and user mode + - Fixed a bug where surrounding spaces in tool call parameters would be stripped for models that uses XML/XML-like tool call formats + - [CUDA] Fixed issue where some VRAM would not be deallocated under certain conditions + - Fixes a bug where setting reasoning to low when using Nemotron 3 Super via the /api/v1/chat or OpenAI-compatible /v1/responses API would error out +ReleaseNotesUrl: https://lmstudio.ai/blog +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://lmstudio.ai/docs/welcome +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/e/ElementLabs/LMStudio/0.4.8+1/ElementLabs.LMStudio.locale.zh-CN.yaml b/manifests/e/ElementLabs/LMStudio/0.4.8+1/ElementLabs.LMStudio.locale.zh-CN.yaml new file mode 100644 index 000000000000..036d27b7096f --- /dev/null +++ b/manifests/e/ElementLabs/LMStudio/0.4.8+1/ElementLabs.LMStudio.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: ElementLabs.LMStudio +PackageVersion: 0.4.8+1 +PackageLocale: zh-CN +License: 免费软件 +ShortDescription: 发现、下载和运行本地大语言模型 +Description: LM Studio 是一款易用的桌面应用,用于对本地开源大语言模型(LLM)进行实验。LM Studio 跨平台桌面应用允许您从 Hugging Face 下载并运行任何兼容 ggml 的模型,并提供简单而强大的模型配置和推理用户界面。该应用程序尽可能利用 GPU。 +Tags: +- gemma +- kimi +- llama +- llm +- mistral +- 人工智能 +- 大语言模型 +- 深度求索 +- 聊天机器人 +- 通义千问 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://lmstudio.ai/docs/welcome +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/e/ElementLabs/LMStudio/0.4.8+1/ElementLabs.LMStudio.yaml b/manifests/e/ElementLabs/LMStudio/0.4.8+1/ElementLabs.LMStudio.yaml new file mode 100644 index 000000000000..131b45ff99f3 --- /dev/null +++ b/manifests/e/ElementLabs/LMStudio/0.4.8+1/ElementLabs.LMStudio.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: ElementLabs.LMStudio +PackageVersion: 0.4.8+1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From dc65ff6514e92519d8df0857c3b15710d53ef4da Mon Sep 17 00:00:00 2001 From: PckgrBot <119904223+PckgrBot@users.noreply.github.com> Date: Sat, 28 Mar 2026 11:03:51 +1000 Subject: [PATCH 134/162] New version: Microsoft.Edge version 146.0.3856.84 (#352830) --- .../Microsoft.Edge.installer.yaml | 43 +++++++++++++++++++ .../Microsoft.Edge.locale.en-US.yaml | 28 ++++++++++++ .../Microsoft.Edge.locale.nb-NO.yaml | 21 +++++++++ .../Edge/146.0.3856.84/Microsoft.Edge.yaml | 8 ++++ 4 files changed, 100 insertions(+) create mode 100644 manifests/m/Microsoft/Edge/146.0.3856.84/Microsoft.Edge.installer.yaml create mode 100644 manifests/m/Microsoft/Edge/146.0.3856.84/Microsoft.Edge.locale.en-US.yaml create mode 100644 manifests/m/Microsoft/Edge/146.0.3856.84/Microsoft.Edge.locale.nb-NO.yaml create mode 100644 manifests/m/Microsoft/Edge/146.0.3856.84/Microsoft.Edge.yaml diff --git a/manifests/m/Microsoft/Edge/146.0.3856.84/Microsoft.Edge.installer.yaml b/manifests/m/Microsoft/Edge/146.0.3856.84/Microsoft.Edge.installer.yaml new file mode 100644 index 000000000000..713535a7b3ef --- /dev/null +++ b/manifests/m/Microsoft/Edge/146.0.3856.84/Microsoft.Edge.installer.yaml @@ -0,0 +1,43 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.Edge +PackageVersion: 146.0.3856.84 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: msi +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- msedge +Protocols: +- http +- https +FileExtensions: +- crx +- htm +- html +- pdf +- url +AppsAndFeaturesEntries: +- UpgradeCode: '{883C2625-37F7-357F-A0F4-DFAF391B2B9C}' +Installers: +- Architecture: x86 + InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/34c9c33c-ac31-45f4-9957-4944f6561fa6/MicrosoftEdgeEnterpriseX86.msi + InstallerSha256: 423C50BD48C80CF330365C31DB49255E309014915DDF2332910B0F91AF82F5A2 + ProductCode: '{CEEC0DAC-C628-38CC-ACF8-B3F072E914C4}' +- Architecture: x64 + InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/cbd65e96-0e75-421d-8359-f219338e6ce2/MicrosoftEdgeEnterpriseX64.msi + InstallerSha256: A29F10581E9A284058EB77AE5B5E72292C6C0D15CC9AA03769EB901EDFD3C067 + ProductCode: '{97669614-1724-3231-8E47-8E87B05517B0}' +- Architecture: arm64 + InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/d706396c-b9ee-4ea3-acc2-a10e6961e743/MicrosoftEdgeEnterpriseARM64.msi + InstallerSha256: 950F93D1644F7E388A8591BA81B3489D7FEA27BDF8AFFF79F21926C6043A4AC4 + ProductCode: '{29344C62-A046-3790-B1A7-F86D1591863B}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/Edge/146.0.3856.84/Microsoft.Edge.locale.en-US.yaml b/manifests/m/Microsoft/Edge/146.0.3856.84/Microsoft.Edge.locale.en-US.yaml new file mode 100644 index 000000000000..5854cd6c71b0 --- /dev/null +++ b/manifests/m/Microsoft/Edge/146.0.3856.84/Microsoft.Edge.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.Edge +PackageVersion: 146.0.3856.84 +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/146.0.3856.84/Microsoft.Edge.locale.nb-NO.yaml b/manifests/m/Microsoft/Edge/146.0.3856.84/Microsoft.Edge.locale.nb-NO.yaml new file mode 100644 index 000000000000..70b56b3bee8c --- /dev/null +++ b/manifests/m/Microsoft/Edge/146.0.3856.84/Microsoft.Edge.locale.nb-NO.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.Edge +PackageVersion: 146.0.3856.84 +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/146.0.3856.84/Microsoft.Edge.yaml b/manifests/m/Microsoft/Edge/146.0.3856.84/Microsoft.Edge.yaml new file mode 100644 index 000000000000..0dbebe97fbc6 --- /dev/null +++ b/manifests/m/Microsoft/Edge/146.0.3856.84/Microsoft.Edge.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.Edge +PackageVersion: 146.0.3856.84 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 26876622f03b480d5899aa3a31eebe4796d086b3 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 09:05:00 +0800 Subject: [PATCH 135/162] New version: RightNow-AI.OpenFang version 0.5.3 (#352852) --- .../0.5.3/RightNow-AI.OpenFang.installer.yaml | 27 ++++++++ .../RightNow-AI.OpenFang.locale.en-US.yaml | 66 +++++++++++++++++++ .../RightNow-AI.OpenFang.locale.zh-CN.yaml | 22 +++++++ .../OpenFang/0.5.3/RightNow-AI.OpenFang.yaml | 8 +++ 4 files changed, 123 insertions(+) create mode 100644 manifests/r/RightNow-AI/OpenFang/0.5.3/RightNow-AI.OpenFang.installer.yaml create mode 100644 manifests/r/RightNow-AI/OpenFang/0.5.3/RightNow-AI.OpenFang.locale.en-US.yaml create mode 100644 manifests/r/RightNow-AI/OpenFang/0.5.3/RightNow-AI.OpenFang.locale.zh-CN.yaml create mode 100644 manifests/r/RightNow-AI/OpenFang/0.5.3/RightNow-AI.OpenFang.yaml diff --git a/manifests/r/RightNow-AI/OpenFang/0.5.3/RightNow-AI.OpenFang.installer.yaml b/manifests/r/RightNow-AI/OpenFang/0.5.3/RightNow-AI.OpenFang.installer.yaml new file mode 100644 index 000000000000..db7b29465246 --- /dev/null +++ b/manifests/r/RightNow-AI/OpenFang/0.5.3/RightNow-AI.OpenFang.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: RightNow-AI.OpenFang +PackageVersion: 0.5.3 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: openfang.exe +Commands: +- openfang +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/RightNow-AI/openfang/releases/download/v0.5.3/openfang-x86_64-pc-windows-msvc.zip + InstallerSha256: B1351318F88DCA49BEFD2979DE817D6A4CCAD5DA7EEB8F2B222D6F57ED7BEA3A + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/RightNow-AI/openfang/releases/download/v0.5.3/openfang-aarch64-pc-windows-msvc.zip + InstallerSha256: 151D0778404527E3671FA37B69F1348D927D3B4340234A0BF6906897685FD32A + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/RightNow-AI/OpenFang/0.5.3/RightNow-AI.OpenFang.locale.en-US.yaml b/manifests/r/RightNow-AI/OpenFang/0.5.3/RightNow-AI.OpenFang.locale.en-US.yaml new file mode 100644 index 000000000000..13435433215c --- /dev/null +++ b/manifests/r/RightNow-AI/OpenFang/0.5.3/RightNow-AI.OpenFang.locale.en-US.yaml @@ -0,0 +1,66 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: RightNow-AI.OpenFang +PackageVersion: 0.5.3 +PackageLocale: en-US +Publisher: RightNow AI, Inc. +PublisherUrl: https://www.rightnowai.co/ +PublisherSupportUrl: https://github.com/RightNow-AI/openfang/issues +PrivacyUrl: https://www.rightnowai.co/privacy-policy +Author: RightNow AI, Inc. +PackageName: OpenFang +PackageUrl: https://www.openfang.sh/ +License: MIT +LicenseUrl: https://github.com/RightNow-AI/openfang/blob/HEAD/LICENSE-MIT +Copyright: Copyright (c) 2026 OpenFang Contributors +ShortDescription: Open-source Agent Operating System +Description: |- + OpenFang is an open-source Agent Operating System — not a chatbot framework, not a Python wrapper around an LLM, not a "multi-agent orchestrator." It is a full operating system for autonomous agents, built from scratch in Rust. + Traditional agent frameworks wait for you to type something. OpenFang runs autonomous agents that work for you — on schedules, 24/7, building knowledge graphs, monitoring targets, generating leads, managing your social media, and reporting results to your dashboard. +Tags: +- agent +- agentic +- ai +- chatbot +- claw +- large-language-model +- llm +ReleaseNotes: |- + What's Changed + This release resolves 19 bugs across runtime, kernel, CLI, Web UI, and hands — all verified with live daemon testing. + Runtime & Drivers + - #834 Remove 3 decommissioned Groq models (gemma2-9b-it, llama-3.2-1b/3b-preview) + - #805 Ollama streaming parser handles both reasoning_content and reasoning fields + - #845 Model fallback chain retries with fallback_models on ModelNotFound (404) + - #785 Gemini streaming SSE parser handles \r\n line endings — fixes infinite empty retry loop + - #774 tool_use.input always normalized to JSON object — fixes Anthropic API "invalid dictionary" errors + - #856 Custom model names preserved — user-defined models take priority over builtins (vLLM, etc.) + Kernel & Heartbeat + - #844 Heartbeat skips idle agents that never received a message — no more crash-recover loops + - #848 Hand continuous interval changed from 60s to 3600s — prevents credit waste + - #851/#808 Global ~/.openfang/skills/ loaded for all agents; workspace skills properly override globals + CLI + - #826 openfang doctor reports all_ok=false when provider key is rejected (401/403) + - #823 doctor --json outputs clean JSON to stdout, tracing to stderr, BrokenPipe handled + - #825 Doctor surfaces blocked workspace skills count in injection scan (no more false "all clean") + - #828 skill install detects Git URLs (https://, git@) and clones before installing + Web Dashboard + - #767 Workflows page scrollable (flex layout fix) + - #802 Model dropdown handles object options — no more [object Object] for Ollama + - #816 Spawn wizard provider dropdown loads dynamically from /api/providers (43 providers) + - #770 Chat streaming renders in real-time (Alpine.js splice reactivity + stale WS guard) + WebSocket & API + - #836 Tool events include id field for concurrent call correlation + Hands + - #820 Browser Hand checks python3 before python — works on modern Linux distros + Stats + - 2,186+ tests passing, zero clippy warnings + - All fixes verified with live daemon testing + Full Changelog: https://github.com/RightNow-AI/openfang/compare/v0.5.1...v0.5.3 +ReleaseNotesUrl: https://github.com/RightNow-AI/openfang/releases/tag/v0.5.3 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://www.openfang.sh/docs +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RightNow-AI/OpenFang/0.5.3/RightNow-AI.OpenFang.locale.zh-CN.yaml b/manifests/r/RightNow-AI/OpenFang/0.5.3/RightNow-AI.OpenFang.locale.zh-CN.yaml new file mode 100644 index 000000000000..77db6a2a6b60 --- /dev/null +++ b/manifests/r/RightNow-AI/OpenFang/0.5.3/RightNow-AI.OpenFang.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: RightNow-AI.OpenFang +PackageVersion: 0.5.3 +PackageLocale: zh-CN +ShortDescription: 开源智能体操作系统 +Description: |- + OpenFang 是一个开源的智能体操作系统——不是聊天机器人框架,不是围绕大语言模型的 Python 包装器,也不是“多智能体协调器”。它是一个从零开始用 Rust 构建的完整自主智能体操作系统。 + 传统的智能体框架需要等待你输入指令。而 OpenFang 运行的自主智能体可以持续为你工作——按计划全天候运行,构建知识图谱、监控目标、生成线索、管理社交媒体,并将结果汇报到你的仪表盘。 +Tags: +- 人工智能 +- 大语言模型 +- 智能体 +- 聊天机器人 +- 自主智能 +- 龙虾 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://www.openfang.sh/docs +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RightNow-AI/OpenFang/0.5.3/RightNow-AI.OpenFang.yaml b/manifests/r/RightNow-AI/OpenFang/0.5.3/RightNow-AI.OpenFang.yaml new file mode 100644 index 000000000000..c4953c6f5c64 --- /dev/null +++ b/manifests/r/RightNow-AI/OpenFang/0.5.3/RightNow-AI.OpenFang.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: RightNow-AI.OpenFang +PackageVersion: 0.5.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 937168968f1f2b6fccbb629e061ce771fe4c4c58 Mon Sep 17 00:00:00 2001 From: Baptiste Augrain Date: Sat, 28 Mar 2026 02:06:05 +0100 Subject: [PATCH 136/162] New version: VSCodium.VSCodium.Insiders version 1.112.02066 (#352864) --- .../VSCodium.VSCodium.Insiders.installer.yaml | 56 +++++++ ...Codium.VSCodium.Insiders.locale.en-US.yaml | 138 ++++++++++++++++++ .../VSCodium.VSCodium.Insiders.yaml | 8 + 3 files changed, 202 insertions(+) create mode 100644 manifests/v/VSCodium/VSCodium/Insiders/1.112.02066/VSCodium.VSCodium.Insiders.installer.yaml create mode 100644 manifests/v/VSCodium/VSCodium/Insiders/1.112.02066/VSCodium.VSCodium.Insiders.locale.en-US.yaml create mode 100644 manifests/v/VSCodium/VSCodium/Insiders/1.112.02066/VSCodium.VSCodium.Insiders.yaml diff --git a/manifests/v/VSCodium/VSCodium/Insiders/1.112.02066/VSCodium.VSCodium.Insiders.installer.yaml b/manifests/v/VSCodium/VSCodium/Insiders/1.112.02066/VSCodium.VSCodium.Insiders.installer.yaml new file mode 100644 index 000000000000..513dfa2115ba --- /dev/null +++ b/manifests/v/VSCodium/VSCodium/Insiders/1.112.02066/VSCodium.VSCodium.Insiders.installer.yaml @@ -0,0 +1,56 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: VSCodium.VSCodium.Insiders +PackageVersion: 1.112.02066 +InstallerLocale: en-US +InstallerType: inno +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/VSCodium/vscodium-insiders/releases/download/1.112.02066-insider/VSCodiumUserSetup-x64-1.112.02066-insider.exe + InstallerSha256: F08F9DD0A17B326A871E040BDB3E64F9A663EF58879D93F7307EE184387FDFC9 + ProductCode: '{20F79D0D-A9AC-4220-9A81-CE675FFB6B41}_is1' + AppsAndFeaturesEntries: + - DisplayName: VSCodium Insiders (User) + ProductCode: '{20F79D0D-A9AC-4220-9A81-CE675FFB6B41}_is1' + InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\Programs\VSCodium Insiders' +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/VSCodium/vscodium-insiders/releases/download/1.112.02066-insider/VSCodiumSetup-x64-1.112.02066-insider.exe + InstallerSha256: 450AA2214C1247A969D4E744B4E1A965E86AFB39B383F56A061C7968000EF7CC + ProductCode: '{B2E0DDB2-120E-4D34-9F7E-8C688FF839A2}_is1' + AppsAndFeaturesEntries: + - ProductCode: '{B2E0DDB2-120E-4D34-9F7E-8C688FF839A2}_is1' + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\VSCodium Insiders' +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/VSCodium/vscodium-insiders/releases/download/1.112.02066-insider/VSCodiumUserSetup-arm64-1.112.02066-insider.exe + InstallerSha256: BDA29C72B59D2C8E08A294A12679344A728CC4753A0C1AAA1842CA525576D167 + ProductCode: '{2E362F92-14EA-455A-9ABD-3E656BBBFE71}_is1' + AppsAndFeaturesEntries: + - DisplayName: VSCodium Insiders (User) + ProductCode: '{2E362F92-14EA-455A-9ABD-3E656BBBFE71}_is1' + InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\Programs\VSCodium Insiders' +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/VSCodium/vscodium-insiders/releases/download/1.112.02066-insider/VSCodiumSetup-arm64-1.112.02066-insider.exe + InstallerSha256: 9C5C4717478607D405F7FB8720D33A4D44E32B47ADFD47ECDB932ECE9C0AE078 + ProductCode: '{44721278-64C6-4513-BC45-D48E07830599}_is1' + AppsAndFeaturesEntries: + - ProductCode: '{44721278-64C6-4513-BC45-D48E07830599}_is1' + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\VSCodium Insiders' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/v/VSCodium/VSCodium/Insiders/1.112.02066/VSCodium.VSCodium.Insiders.locale.en-US.yaml b/manifests/v/VSCodium/VSCodium/Insiders/1.112.02066/VSCodium.VSCodium.Insiders.locale.en-US.yaml new file mode 100644 index 000000000000..4616d019b194 --- /dev/null +++ b/manifests/v/VSCodium/VSCodium/Insiders/1.112.02066/VSCodium.VSCodium.Insiders.locale.en-US.yaml @@ -0,0 +1,138 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: VSCodium.VSCodium.Insiders +PackageVersion: 1.112.02066 +PackageLocale: en-US +Publisher: VSCodium +PublisherUrl: https://github.com/VSCodium/vscodium +PublisherSupportUrl: https://github.com/VSCodium/vscodium/issues +Author: VSCodium +PackageName: VSCodium Insiders +PackageUrl: https://vscodium.com/ +License: MIT +LicenseUrl: https://github.com/VSCodium/vscodium-insiders/blob/HEAD/LICENSE +Copyright: Copyright (c) 2022 VSCodium Team +CopyrightUrl: https://github.com/VSCodium/vscodium/blob/master/LICENSE +ShortDescription: VSCodium is a community-driven, freely-licensed and telemetry-free rebuilt of Microsoft's Visual Studio Code Insiders. +Description: |- + VSCodium is a community-driven, freely-licensed and telemetry-free rebuilt of Microsoft's Visual Studio Code Insiders. + VSCodium is a powerful IDE which runs on your desktop and is available for Windows, macOS and Linux. +Tags: +- cross-platform +- editor +- foss +- ide +- javascript +- open-source +- typescript +- vscode +ReleaseNotes: |- + update vscode to 07ff9d6178ede9a1bd12ad3399074d726ebe6e43 + x86 64bits + ───────┬───────────────────────┬─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + Windows│User Installer │VSCodiumUserSetup-x64-1.112.02066-insider.exe + ├───────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + │System Installer │VSCodiumSetup-x64-1.112.02066-insider.exe + ├───────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + │.zip │VSCodium-win32-x64-1.112.02066-insider.zip + ├───────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + │.msi - updates enabled │VSCodium-x64-1.112.02066-insider.msi + ├───────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + │.msi - updates disabled│VSCodium-x64-updates-disabled-1.112.02066-insider.msi + ├───────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + │Remote Host │vscodium-reh-win32-x64-1.112.02066-insider.tar.gz + ├───────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + │Web Host │vscodium-reh-web-win32-x64-1.112.02066-insider.tar.gz + ├───────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + │CLI │vscodium-cli-win32-x64-1.112.02066-insider.tar.gz + ───────┼───────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + macOS │.dmg │VSCodium.x64.1.112.02066-insider.dmg + ├───────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + │.zip │VSCodium-darwin-x64-1.112.02066-insider.zip + ├───────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + │Remote Host │vscodium-reh-darwin-x64-1.112.02066.-insider.tar.gz + ├───────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + │Web Host │vscodium-reh-web-darwin-x64-1.112.02066-insider.tar.gz + ├───────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + │CLI │vscodium-cli-darwin-x64-1.112.02066-insider.tar.gz + ───────┼───────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + Linux │.deb │codium-insiders_1.112.02066_amd64.deb + ├───────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + │.rpm │codium-insiders-1.112.02066-el8.x86_64.rpm + ├───────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + │.tar.gz │VSCodium-linux-x64-1.112.02066-insider.tar.gz + ├───────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + │AppImage │VSCodium-Insiders-1.112.02066.glibc2.30-x86_64.AppImage + │ │VSCodium-Insiders-1.112.02066.glibc2.30-x86_64.AppImage.zsync + ├───────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + │Snap │codium-insiders_1.112.02066_amd64.snap + ├───────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + │Remote Host │vscodium-reh-linux-x64-1.112.02066-insider.tar.gz + ├───────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + │Web Host │vscodium-reh-web-linux-x64-1.112.02066-insider.tar.gz + ├───────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + │CLI │vscodium-cli-linux-x64-1.112.02066-insider.tar.gz + ───────┼───────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + Alpine │Remote Host │vscodium-reh-alpine-x64-1.112.02066-insider.tar.gz + ├───────────────────────┼─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + │Web Host │vscodium-reh-web-alpine-x64-1.112.02066-insider.tar.gz + ───────┴───────────────────────┴─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── + ARM 64bits + ───────┬────────────────┬───────────────────────────────────────────────────────────── + Windows│User Installer │VSCodiumUserSetup-arm64-1.112.02066-insider.exe + ├────────────────┼───────────────────────────────────────────────────────────── + │System Installer│VSCodiumSetup-arm64-1.112.02066-insider.exe + ├────────────────┼───────────────────────────────────────────────────────────── + │.zip │VSCodium-win32-arm64-1.112.02066-insider.zip + ├────────────────┼───────────────────────────────────────────────────────────── + │CLI │vscodium-cli-win32-arm64-1.112.02066-insider.tar.gz + ───────┼────────────────┼───────────────────────────────────────────────────────────── + macOS │.dmg │VSCodium.arm64.1.112.02066-insider.dmg + ├────────────────┼───────────────────────────────────────────────────────────── + │.zip │VSCodium-darwin-arm64-1.112.02066-insider.zip + ├────────────────┼───────────────────────────────────────────────────────────── + │Remote Host │vscodium-reh-darwin-arm64-1.112.02066-insider.tar.gz + ├────────────────┼───────────────────────────────────────────────────────────── + │Web Host │vscodium-reh-web-darwin-arm64-1.112.02066-insider.tar.gz + ├────────────────┼───────────────────────────────────────────────────────────── + │CLI │vscodium-cli-darwin-arm64-1.112.02066-insider.tar.gz + ───────┼────────────────┼───────────────────────────────────────────────────────────── + Linux │.deb │codium-insiders_1.112.02066_arm64.deb + ├────────────────┼───────────────────────────────────────────────────────────── + │.rpm │codium-insiders-1.112.02066-el8.aarch64.rpm + ├────────────────┼───────────────────────────────────────────────────────────── + │.tar.gz │VSCodium-linux-arm64-1.112.02066-insider.tar.gz + ├────────────────┼───────────────────────────────────────────────────────────── + │Snap │codium-insiders_1.112.02066_arm64.snap + ├────────────────┼───────────────────────────────────────────────────────────── + │Remote Host │vscodium-reh-linux-arm64-1.112.02066-insider.tar.gz + ├────────────────┼───────────────────────────────────────────────────────────── + │Web Host │vscodium-reh-web-linux-arm64-1.112.02066-insider.tar.gz + ├────────────────┼───────────────────────────────────────────────────────────── + │CLI │vscodium-cli-linux-arm64-1.112.02066-insider.tar.gz + ───────┼────────────────┼───────────────────────────────────────────────────────────── + Alpine │Remote Host │vscodium-reh-alpine-arm64-1.112.02066-insider.tar.gz + ├────────────────┼───────────────────────────────────────────────────────────── + │Web Host │vscodium-reh-web-alpine-arm64-1.112.02066-insider.tar.gz + ───────┴────────────────┴───────────────────────────────────────────────────────────── + ARM 32bits + ─────┬───────────┬──────────────────────────────────────────────────────────── + Linux│.deb │codium-insiders_1.112.02066_armhf.deb + ├───────────┼──────────────────────────────────────────────────────────── + │.rpm │codium-insiders-1.112.02066-el8.armv7hl.rpm + ├───────────┼──────────────────────────────────────────────────────────── + │.tar.gz │VSCodium-linux-armhf-1.112.02066-insider.tar.gz + ├───────────┼──────────────────────────────────────────────────────────── + │Remote Host│vscodium-reh-linux-armhf-1.112.02066-insider.tar.gz + ├───────────┼──────────────────────────────────────────────────────────── + │Web Host │vscodium-reh-web-linux-armhf-1.112.02066-insider.tar.gz + ├───────────┼──────────────────────────────────────────────────────────── + │CLI │vscodium-cli-linux-armhf-1.112.02066-insider.tar.gz + ─────┴───────────┴──────────────────────────────────────────────────────────── + PPC 64bits + ─────┬───────────┬────────────────────────────────────────────────────────────── + Linux│.tar.gz │VSCodium-linux-ppc64le-1.112.02066-insider.tar.gz +ReleaseNotesUrl: https://github.com/VSCodium/vscodium-insiders/releases/tag/1.112.02066-insider +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/v/VSCodium/VSCodium/Insiders/1.112.02066/VSCodium.VSCodium.Insiders.yaml b/manifests/v/VSCodium/VSCodium/Insiders/1.112.02066/VSCodium.VSCodium.Insiders.yaml new file mode 100644 index 000000000000..b363a1ed90f1 --- /dev/null +++ b/manifests/v/VSCodium/VSCodium/Insiders/1.112.02066/VSCodium.VSCodium.Insiders.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: VSCodium.VSCodium.Insiders +PackageVersion: 1.112.02066 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 2c5a25feee58235d0030b80a44dabf7629826502 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 09:07:22 +0800 Subject: [PATCH 137/162] New version: ByteDance.Doubao version 2.4.7 (#352868) --- .../2.4.7/ByteDance.Doubao.installer.yaml | 23 +++++++++++++++++ .../2.4.7/ByteDance.Doubao.locale.en-US.yaml | 22 ++++++++++++++++ .../2.4.7/ByteDance.Doubao.locale.zh-CN.yaml | 25 +++++++++++++++++++ .../Doubao/2.4.7/ByteDance.Doubao.yaml | 8 ++++++ 4 files changed, 78 insertions(+) create mode 100644 manifests/b/ByteDance/Doubao/2.4.7/ByteDance.Doubao.installer.yaml create mode 100644 manifests/b/ByteDance/Doubao/2.4.7/ByteDance.Doubao.locale.en-US.yaml create mode 100644 manifests/b/ByteDance/Doubao/2.4.7/ByteDance.Doubao.locale.zh-CN.yaml create mode 100644 manifests/b/ByteDance/Doubao/2.4.7/ByteDance.Doubao.yaml diff --git a/manifests/b/ByteDance/Doubao/2.4.7/ByteDance.Doubao.installer.yaml b/manifests/b/ByteDance/Doubao/2.4.7/ByteDance.Doubao.installer.yaml new file mode 100644 index 000000000000..ba3a0042f82c --- /dev/null +++ b/manifests/b/ByteDance/Doubao/2.4.7/ByteDance.Doubao.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: ByteDance.Doubao +PackageVersion: 2.4.7 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --command=quiet_install + SilentWithProgress: --command=quiet_install + InstallLocation: --target_dir="" + Log: --log_dir="" +UpgradeBehavior: install +ProductCode: Doubao +Installers: +- Architecture: x64 + InstallerUrl: https://lf-flow-web-cdn.doubao.com/obj/flow-doubao/doubao_pc/2.4.7/Doubao_installer_2.4.7.exe + InstallerSha256: E857DBC95E7AD281CF455A3593F31EA1615C9B7C13A27E0824FE2B4D4F1F726F +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/Doubao/2.4.7/ByteDance.Doubao.locale.en-US.yaml b/manifests/b/ByteDance/Doubao/2.4.7/ByteDance.Doubao.locale.en-US.yaml new file mode 100644 index 000000000000..a66b03a63a72 --- /dev/null +++ b/manifests/b/ByteDance/Doubao/2.4.7/ByteDance.Doubao.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ByteDance.Doubao +PackageVersion: 2.4.7 +PackageLocale: en-US +Publisher: Beijing Chuntian Zhiyun Technology Co., Ltd. +PublisherUrl: https://www.doubao.com/ +PrivacyUrl: https://www.doubao.com/legal/privacy +Author: Beijing Chuntian Zhiyun Technology Co., Ltd. +PackageName: 豆包 +PackageUrl: https://www.doubao.com/ +License: Freeware +LicenseUrl: https://www.doubao.com/legal/terms +Copyright: Copyright 2026 The Doubao Authors. All rights reserved. +ShortDescription: Doubao is your intelligent AI chatting assistant and versatile tool, assisting in writing, translating, companion and programming. Doubao can answer questions, provide inspiration, assist in creation, and chat about any topic you are interested in. +Tags: +- ai +- ai-chat +- chat-ai +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/Doubao/2.4.7/ByteDance.Doubao.locale.zh-CN.yaml b/manifests/b/ByteDance/Doubao/2.4.7/ByteDance.Doubao.locale.zh-CN.yaml new file mode 100644 index 000000000000..f47de9f3e8a3 --- /dev/null +++ b/manifests/b/ByteDance/Doubao/2.4.7/ByteDance.Doubao.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: ByteDance.Doubao +PackageVersion: 2.4.7 +PackageLocale: zh-CN +Publisher: Beijing Chuntian Zhiyun Technology Co., Ltd. +PublisherUrl: https://www.doubao.com/ +PrivacyUrl: https://www.doubao.com/legal/privacy +Author: 北京春田知韵科技有限公司 +PackageName: 豆包 +PackageUrl: https://www.doubao.com/ +License: 免费软件 +LicenseUrl: https://www.doubao.com/legal/terms +Copyright: 版权所有 2026 The 豆包 Authors。保留所有权利。 +ShortDescription: 豆包是你的 AI 聊天智能对话问答助手,写作文案翻译情感陪伴编程全能工具。豆包为你答疑解惑,提供灵感,辅助创作,也可以和你畅聊任何你感兴趣的话题。 +Tags: +- ai +- ai对话 +- ai聊天 +ReleaseNotes: |- + 生成的PPT可以快捷在浏览器打开 + 修复了一些体验问题 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/Doubao/2.4.7/ByteDance.Doubao.yaml b/manifests/b/ByteDance/Doubao/2.4.7/ByteDance.Doubao.yaml new file mode 100644 index 000000000000..b77ef35cff4c --- /dev/null +++ b/manifests/b/ByteDance/Doubao/2.4.7/ByteDance.Doubao.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.Doubao +PackageVersion: 2.4.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 92952cd55ecead7578bcd3dbc9ae31b16b23e40c Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 09:08:58 +0800 Subject: [PATCH 138/162] New version: Anthropic.Claude version 1.1.9134 (#352879) --- .../1.1.9134/Anthropic.Claude.installer.yaml | 66 +++++++++++++++++++ .../Anthropic.Claude.locale.en-US.yaml | 22 +++++++ .../Anthropic.Claude.locale.zh-CN.yaml | 15 +++++ .../Claude/1.1.9134/Anthropic.Claude.yaml | 8 +++ 4 files changed, 111 insertions(+) create mode 100644 manifests/a/Anthropic/Claude/1.1.9134/Anthropic.Claude.installer.yaml create mode 100644 manifests/a/Anthropic/Claude/1.1.9134/Anthropic.Claude.locale.en-US.yaml create mode 100644 manifests/a/Anthropic/Claude/1.1.9134/Anthropic.Claude.locale.zh-CN.yaml create mode 100644 manifests/a/Anthropic/Claude/1.1.9134/Anthropic.Claude.yaml diff --git a/manifests/a/Anthropic/Claude/1.1.9134/Anthropic.Claude.installer.yaml b/manifests/a/Anthropic/Claude/1.1.9134/Anthropic.Claude.installer.yaml new file mode 100644 index 000000000000..3ac0d379e95d --- /dev/null +++ b/manifests/a/Anthropic/Claude/1.1.9134/Anthropic.Claude.installer.yaml @@ -0,0 +1,66 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Anthropic.Claude +PackageVersion: 1.1.9134 +Protocols: +- claude +Installers: +- Architecture: x64 + InstallerType: exe + Scope: user + InstallerUrl: https://downloads.claude.ai/releases/win32/x64/1.1.9134/Claude-87a63a530ffde53c132fa8e81bb53b2238e0c4e5.exe + InstallerSha256: E125D1A62626014A10658F354F255E42BDF7985C13ED3FCA03A597BE384AEFBC + InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + UpgradeBehavior: install + ProductCode: AnthropicClaude + AppsAndFeaturesEntries: + - Publisher: Anthropic PBC +- Architecture: arm64 + InstallerType: exe + Scope: user + InstallerUrl: https://downloads.claude.ai/releases/win32/arm64/1.1.9134/Claude-87a63a530ffde53c132fa8e81bb53b2238e0c4e5.exe + InstallerSha256: FB70D10D8A4C812D014ADB27555CB5D6781B58B00FE56746E9770185A4019EF4 + InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + UpgradeBehavior: install + ProductCode: AnthropicClaude + AppsAndFeaturesEntries: + - Publisher: Anthropic PBC +- Platform: + - Windows.Desktop + MinimumOSVersion: 10.0.18362.0 + Architecture: x64 + InstallerType: msix + InstallerUrl: https://downloads.claude.ai/releases/win32/x64/1.1.9134/Claude-87a63a530ffde53c132fa8e81bb53b2238e0c4e5.msix + InstallerSha256: 6D222206AD9E62A7280F54B79772A2662AB8178A3EF0FD8EC78894D70DF6DFF2 + SignatureSha256: 9B0B250E95B2D121797E5DF49318B6741FAC0A2229DDC8DF53FEDC8269598A6A + PackageFamilyName: Claude_pzs8sxrjxfjjc + Capabilities: + - internetClient + RestrictedCapabilities: + - localSystemServices + - packagedServices + - runFullTrust + - unvirtualizedResources +- Platform: + - Windows.Desktop + MinimumOSVersion: 10.0.18362.0 + Architecture: arm64 + InstallerType: msix + InstallerUrl: https://downloads.claude.ai/releases/win32/arm64/1.1.9134/Claude-87a63a530ffde53c132fa8e81bb53b2238e0c4e5.msix + InstallerSha256: 25A542F84880923E879772F3AC235E3E97624876CFAF323A20AC1B9EDD282134 + SignatureSha256: F088FC470B723BA2027CC3CC637173575F73F4E90D71AFEA401D47D816A723E0 + PackageFamilyName: Claude_pzs8sxrjxfjjc + Capabilities: + - internetClient + RestrictedCapabilities: + - localSystemServices + - packagedServices + - runFullTrust + - unvirtualizedResources +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/Anthropic/Claude/1.1.9134/Anthropic.Claude.locale.en-US.yaml b/manifests/a/Anthropic/Claude/1.1.9134/Anthropic.Claude.locale.en-US.yaml new file mode 100644 index 000000000000..8af907a9d1b1 --- /dev/null +++ b/manifests/a/Anthropic/Claude/1.1.9134/Anthropic.Claude.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Anthropic.Claude +PackageVersion: 1.1.9134 +PackageLocale: en-US +Publisher: Anthropic, PBC +PublisherSupportUrl: https://docs.google.com/document/d/11rLWQYaReoZrRaoyPU3_gbgmDgLOKBVjEa-lvPDiWXE/edit +Author: Anthropic PBC +PackageName: Claude +License: Proprietary +Copyright: © 2026 Anthropic PBC +ShortDescription: Your AI partner on desktop. Fast, focused, and designed for deep work. +Moniker: claude +Tags: +- ai +- chatbot +- large-language-model +- llm +PurchaseUrl: https://www.anthropic.com/pricing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Anthropic/Claude/1.1.9134/Anthropic.Claude.locale.zh-CN.yaml b/manifests/a/Anthropic/Claude/1.1.9134/Anthropic.Claude.locale.zh-CN.yaml new file mode 100644 index 000000000000..ab8f7cc8ee23 --- /dev/null +++ b/manifests/a/Anthropic/Claude/1.1.9134/Anthropic.Claude.locale.zh-CN.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Anthropic.Claude +PackageVersion: 1.1.9134 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 您电脑上的 AI 伙伴。快速、专注,专为深度工作而设计。 +Tags: +- llm +- 人工智能 +- 大语言模型 +- 聊天机器人 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Anthropic/Claude/1.1.9134/Anthropic.Claude.yaml b/manifests/a/Anthropic/Claude/1.1.9134/Anthropic.Claude.yaml new file mode 100644 index 000000000000..f1a442892625 --- /dev/null +++ b/manifests/a/Anthropic/Claude/1.1.9134/Anthropic.Claude.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Anthropic.Claude +PackageVersion: 1.1.9134 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From def5b2e65a4c01812dbabd96594e1884ee850dff Mon Sep 17 00:00:00 2001 From: Jens Reimann Date: Sat, 28 Mar 2026 02:10:12 +0100 Subject: [PATCH 139/162] New version: ctron.oidc version 0.7.2 (#352903) --- .../oidc/0.7.2/ctron.oidc.installer.yaml | 24 +++++++++++++++++++ .../oidc/0.7.2/ctron.oidc.locale.en-US.yaml | 16 +++++++++++++ manifests/c/ctron/oidc/0.7.2/ctron.oidc.yaml | 8 +++++++ 3 files changed, 48 insertions(+) create mode 100644 manifests/c/ctron/oidc/0.7.2/ctron.oidc.installer.yaml create mode 100644 manifests/c/ctron/oidc/0.7.2/ctron.oidc.locale.en-US.yaml create mode 100644 manifests/c/ctron/oidc/0.7.2/ctron.oidc.yaml diff --git a/manifests/c/ctron/oidc/0.7.2/ctron.oidc.installer.yaml b/manifests/c/ctron/oidc/0.7.2/ctron.oidc.installer.yaml new file mode 100644 index 000000000000..e721dfd38e58 --- /dev/null +++ b/manifests/c/ctron/oidc/0.7.2/ctron.oidc.installer.yaml @@ -0,0 +1,24 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ctron.oidc +PackageVersion: 0.7.2 +InstallerType: portable +Commands: +- oidc +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ctron/oidc-cli/releases/download/v0.7.2/oidc-x86_64-pc-windows-msvc.exe + InstallerSha256: 86DFDF0CD636C3E3CB86A172B3B55ABC5892F091BB035736017A6867F5F07840 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/ctron/oidc-cli/releases/download/v0.7.2/oidc-aarch64-pc-windows-msvc.exe + InstallerSha256: 59A87B3FCC8473E9A51703CD4B6A4A94B734D0CE6AAAB1658227930FA0540118 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/ctron/oidc/0.7.2/ctron.oidc.locale.en-US.yaml b/manifests/c/ctron/oidc/0.7.2/ctron.oidc.locale.en-US.yaml new file mode 100644 index 000000000000..b81477f41060 --- /dev/null +++ b/manifests/c/ctron/oidc/0.7.2/ctron.oidc.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ctron.oidc +PackageVersion: 0.7.2 +PackageLocale: en-US +Publisher: Jens Reimann +PublisherUrl: https://github.com/ctron +PublisherSupportUrl: https://github.com/ctron/oidc-cli/issues +PackageName: OIDC command line client +PackageUrl: https://github.com/ctron/oidc-cli +License: Apache-2.0 +LicenseUrl: https://github.com/ctron/oidc-cli/blob/HEAD/LICENSE +ShortDescription: An OIDC command line client +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/ctron/oidc/0.7.2/ctron.oidc.yaml b/manifests/c/ctron/oidc/0.7.2/ctron.oidc.yaml new file mode 100644 index 000000000000..e5cf9d83cb5e --- /dev/null +++ b/manifests/c/ctron/oidc/0.7.2/ctron.oidc.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: ctron.oidc +PackageVersion: 0.7.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 01f80016ffd9f61ffac1fb1bdcdb591f3bca3115 Mon Sep 17 00:00:00 2001 From: Lutz Roeder Date: Fri, 27 Mar 2026 18:11:20 -0700 Subject: [PATCH 140/162] Update Netron to 8.9.7 (#352904) --- .../8.9.7/LutzRoeder.Netron.installer.yaml | 98 +++++++++++++++++++ .../8.9.7/LutzRoeder.Netron.locale.en-US.yaml | 22 +++++ .../Netron/8.9.7/LutzRoeder.Netron.yaml | 6 ++ 3 files changed, 126 insertions(+) create mode 100644 manifests/l/LutzRoeder/Netron/8.9.7/LutzRoeder.Netron.installer.yaml create mode 100644 manifests/l/LutzRoeder/Netron/8.9.7/LutzRoeder.Netron.locale.en-US.yaml create mode 100644 manifests/l/LutzRoeder/Netron/8.9.7/LutzRoeder.Netron.yaml diff --git a/manifests/l/LutzRoeder/Netron/8.9.7/LutzRoeder.Netron.installer.yaml b/manifests/l/LutzRoeder/Netron/8.9.7/LutzRoeder.Netron.installer.yaml new file mode 100644 index 000000000000..7cbde75c8980 --- /dev/null +++ b/manifests/l/LutzRoeder/Netron/8.9.7/LutzRoeder.Netron.installer.yaml @@ -0,0 +1,98 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +PackageIdentifier: LutzRoeder.Netron +PackageVersion: 8.9.7 +Platform: +- Windows.Desktop +InstallModes: +- silent +- silentWithProgress +Installers: +- Architecture: x86 + Scope: user + InstallerType: nullsoft + InstallerUrl: https://github.com/lutzroeder/netron/releases/download/v8.9.7/Netron-Setup-8.9.7.exe + InstallerSha256: 96D04E6ADB3C297784E57CF7BBF96F02D8D4BDCD35342BD4FFD30F41D7A31D47 + InstallerLocale: en-US + InstallerSwitches: + Custom: /NORESTART + UpgradeBehavior: install +- Architecture: arm64 + Scope: user + InstallerType: nullsoft + InstallerUrl: https://github.com/lutzroeder/netron/releases/download/v8.9.7/Netron-Setup-8.9.7.exe + InstallerSha256: 96D04E6ADB3C297784E57CF7BBF96F02D8D4BDCD35342BD4FFD30F41D7A31D47 + InstallerLocale: en-US + InstallerSwitches: + Custom: /NORESTART + UpgradeBehavior: install +FileExtensions: +- armnn +- caffemodel +- circle +- ckpt +- cmf +- dlc +- dnn +- espdl +- gguf +- h5 +- hd5 +- hdf5 +- hn +- jax_export +- jax_exported +- kann +- keras +- kgraph +- kmodel +- lite +- mar +- maxviz +- meta +- mge +- mlir +- mlirbc +- mlmodel +- mlnet +- mlpackage +- mnn +- model +- nb +- ngf +- nn +- nnp +- npy +- npz +- om +- onnx +- ort +- paddle +- param +- pb +- pbtxt +- pdiparams +- pdmodel +- pdopt +- pdparams +- pickle +- pkl +- prototxt +- pt +- pt2 +- pte +- pth +- ptl +- rknn +- safetensors +- t7 +- tfl +- tflite +- tm +- tmfile +- tnnproto +- torchscript +- tosa +- uff +- xmodel +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/l/LutzRoeder/Netron/8.9.7/LutzRoeder.Netron.locale.en-US.yaml b/manifests/l/LutzRoeder/Netron/8.9.7/LutzRoeder.Netron.locale.en-US.yaml new file mode 100644 index 000000000000..507508c4f133 --- /dev/null +++ b/manifests/l/LutzRoeder/Netron/8.9.7/LutzRoeder.Netron.locale.en-US.yaml @@ -0,0 +1,22 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: LutzRoeder.Netron +PackageVersion: 8.9.7 +PackageName: Netron +PackageLocale: en-US +PackageUrl: https://github.com/lutzroeder/netron +Publisher: Lutz Roeder +PublisherUrl: https://github.com/lutzroeder/netron +PublisherSupportUrl: https://github.com/lutzroeder/netron/issues +Author: Lutz Roeder +License: MIT +Copyright: Copyright (c) Lutz Roeder +CopyrightUrl: https://github.com/lutzroeder/netron/blob/main/LICENSE +ShortDescription: Visualizer for neural network, deep learning, and machine learning models +Description: Visualizer for neural network, deep learning, and machine learning models +Moniker: netron +Tags: +- machine-learning +- deep-learning +- neural-network +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/l/LutzRoeder/Netron/8.9.7/LutzRoeder.Netron.yaml b/manifests/l/LutzRoeder/Netron/8.9.7/LutzRoeder.Netron.yaml new file mode 100644 index 000000000000..73bf299388aa --- /dev/null +++ b/manifests/l/LutzRoeder/Netron/8.9.7/LutzRoeder.Netron.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +PackageIdentifier: LutzRoeder.Netron +PackageVersion: 8.9.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 From 67edcd80bc8294bcf3bcd774ba9566f82c2ec499 Mon Sep 17 00:00:00 2001 From: Zhenfu Shi Date: Sat, 28 Mar 2026 12:12:27 +1100 Subject: [PATCH 141/162] New version: XiaoYouChR.GhostDownloader version 3.8.1 (#353033) --- .../XiaoYouChR.GhostDownloader.installer.yaml | 31 +++++++++++++++ ...aoYouChR.GhostDownloader.locale.en-US.yaml | 38 +++++++++++++++++++ .../3.8.1/XiaoYouChR.GhostDownloader.yaml | 8 ++++ 3 files changed, 77 insertions(+) create mode 100644 manifests/x/XiaoYouChR/GhostDownloader/3.8.1/XiaoYouChR.GhostDownloader.installer.yaml create mode 100644 manifests/x/XiaoYouChR/GhostDownloader/3.8.1/XiaoYouChR.GhostDownloader.locale.en-US.yaml create mode 100644 manifests/x/XiaoYouChR/GhostDownloader/3.8.1/XiaoYouChR.GhostDownloader.yaml diff --git a/manifests/x/XiaoYouChR/GhostDownloader/3.8.1/XiaoYouChR.GhostDownloader.installer.yaml b/manifests/x/XiaoYouChR/GhostDownloader/3.8.1/XiaoYouChR.GhostDownloader.installer.yaml new file mode 100644 index 000000000000..384be8f06077 --- /dev/null +++ b/manifests/x/XiaoYouChR/GhostDownloader/3.8.1/XiaoYouChR.GhostDownloader.installer.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: XiaoYouChR.GhostDownloader +PackageVersion: 3.8.1 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- /SUPPRESSMSGBOXES +- /VERYSILENT +ProductCode: '{C7E5C3F5-8579-4C76-BC5F-2D18D82FD9B8}_is1' +AppsAndFeaturesEntries: +- ProductCode: '{C7E5C3F5-8579-4C76-BC5F-2D18D82FD9B8}_is1' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Ghost Downloader' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/XiaoYouChR/Ghost-Downloader-3/releases/download/v3.8.1/Ghost-Downloader-v3.8.1-Windows-x86_64-Setup.exe + InstallerSha256: DC1833361A1D439E4213FB1135697F4A47ACCE68F0CDA19E119C44E0EB00CE21 +- Architecture: arm64 + InstallerUrl: https://github.com/XiaoYouChR/Ghost-Downloader-3/releases/download/v3.8.1/Ghost-Downloader-v3.8.1-Windows-arm64-Setup.exe + InstallerSha256: 28CC574C052F784505025F51BB265692FBEC512F1ABE95A48C0B24AB0139E1F9 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-27 diff --git a/manifests/x/XiaoYouChR/GhostDownloader/3.8.1/XiaoYouChR.GhostDownloader.locale.en-US.yaml b/manifests/x/XiaoYouChR/GhostDownloader/3.8.1/XiaoYouChR.GhostDownloader.locale.en-US.yaml new file mode 100644 index 000000000000..3ffa817390be --- /dev/null +++ b/manifests/x/XiaoYouChR/GhostDownloader/3.8.1/XiaoYouChR.GhostDownloader.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: XiaoYouChR.GhostDownloader +PackageVersion: 3.8.1 +PackageLocale: en-US +Publisher: XiaoYouChR +PublisherUrl: https://github.com/XiaoYouChR +PublisherSupportUrl: https://www.gd3.top/ +Author: XiaoYouChR +PackageName: Ghost Downloader +PackageUrl: https://github.com/XiaoYouChR/Ghost-Downloader-3/releases/latest +License: GPL-3.0 +LicenseUrl: https://github.com/XiaoYouChR/Ghost-Downloader-3/blob/HEAD/LICENSE +Copyright: Copyright (c) XiaoYouChR +CopyrightUrl: https://github.com/XiaoYouChR/Ghost-Downloader-3/blob/main/LICENSE +ShortDescription: AI-powered next-generation cross-platform multithreaded downloader. +Description: A cross-platform fluent-design AI-boost multi-threaded downloader built with Python. +Moniker: gd3 +Tags: +- async +- asyncio +- cross-platform +- downloader +- gui +- multithreading +- pyqt +- pyside6 +- python +- qt +- software +- streaming +ReleaseNotesUrl: https://github.com/XiaoYouChR/Ghost-Downloader-3/releases/tag/v3.8.1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/XiaoYouChR/Ghost-Downloader-3/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/x/XiaoYouChR/GhostDownloader/3.8.1/XiaoYouChR.GhostDownloader.yaml b/manifests/x/XiaoYouChR/GhostDownloader/3.8.1/XiaoYouChR.GhostDownloader.yaml new file mode 100644 index 000000000000..e775bb0bac52 --- /dev/null +++ b/manifests/x/XiaoYouChR/GhostDownloader/3.8.1/XiaoYouChR.GhostDownloader.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: XiaoYouChR.GhostDownloader +PackageVersion: 3.8.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From a89658c9fa5e6580b1b12036a79243261cac9579 Mon Sep 17 00:00:00 2001 From: Jordan Coin Jackson Date: Fri, 27 Mar 2026 21:13:38 -0400 Subject: [PATCH 142/162] New version: JordanCoin.codemap 4.1.2 (#353093) Co-authored-by: goreleaserbot --- .../4.1.2/JordanCoin.codemap.installer.yaml | 18 +++++++++++++ .../JordanCoin.codemap.locale.en-US.yaml | 26 +++++++++++++++++++ .../codemap/4.1.2/JordanCoin.codemap.yaml | 7 +++++ 3 files changed, 51 insertions(+) create mode 100644 manifests/j/JordanCoin/codemap/4.1.2/JordanCoin.codemap.installer.yaml create mode 100644 manifests/j/JordanCoin/codemap/4.1.2/JordanCoin.codemap.locale.en-US.yaml create mode 100644 manifests/j/JordanCoin/codemap/4.1.2/JordanCoin.codemap.yaml diff --git a/manifests/j/JordanCoin/codemap/4.1.2/JordanCoin.codemap.installer.yaml b/manifests/j/JordanCoin/codemap/4.1.2/JordanCoin.codemap.installer.yaml new file mode 100644 index 000000000000..b0cff4851686 --- /dev/null +++ b/manifests/j/JordanCoin/codemap/4.1.2/JordanCoin.codemap.installer.yaml @@ -0,0 +1,18 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: JordanCoin.codemap +PackageVersion: 4.1.2 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-03-27" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: codemap.exe + PortableCommandAlias: codemap + InstallerUrl: https://github.com/JordanCoin/codemap/releases/download/v4.1.2/codemap_4.1.2_windows_amd64.zip + InstallerSha256: 295ca3dee7cd90cb71a3540dc434cba0add295eb17bd8015508ae37175f679ef + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/JordanCoin/codemap/4.1.2/JordanCoin.codemap.locale.en-US.yaml b/manifests/j/JordanCoin/codemap/4.1.2/JordanCoin.codemap.locale.en-US.yaml new file mode 100644 index 000000000000..1a5bc5358f06 --- /dev/null +++ b/manifests/j/JordanCoin/codemap/4.1.2/JordanCoin.codemap.locale.en-US.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: JordanCoin.codemap +PackageVersion: 4.1.2 +PackageLocale: en-US +Publisher: JordanCoin +PublisherUrl: https://github.com/JordanCoin +PublisherSupportUrl: https://github.com/JordanCoin/codemap/issues +PackageName: codemap +PackageUrl: https://github.com/JordanCoin/codemap +License: MIT +LicenseUrl: https://github.com/JordanCoin/codemap/blob/main/LICENSE +ShortDescription: Generate a brain map of your codebase for LLM context +Description: | + codemap generates a compact, structured "brain map" of your codebase + that LLMs can instantly understand. One command gives instant + architectural context without burning tokens. +Moniker: codemap +Tags: + - cli + - developer-tools + - ai + - llm + - code-analysis +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JordanCoin/codemap/4.1.2/JordanCoin.codemap.yaml b/manifests/j/JordanCoin/codemap/4.1.2/JordanCoin.codemap.yaml new file mode 100644 index 000000000000..425dcf4816be --- /dev/null +++ b/manifests/j/JordanCoin/codemap/4.1.2/JordanCoin.codemap.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: JordanCoin.codemap +PackageVersion: 4.1.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 0545f36127cf242081d040f35ffddb5680881bc2 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 09:14:49 +0800 Subject: [PATCH 143/162] Update: Servo.Servo.Nightly version 1.0 (2026-03-27) (#353098) --- .../Servo/Nightly/1.0/Servo.Servo.Nightly.installer.yaml | 8 ++++---- .../Nightly/1.0/Servo.Servo.Nightly.locale.en-US.yaml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.installer.yaml b/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.installer.yaml index ee0e32c9311d..53ee107a515c 100644 --- a/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.installer.yaml +++ b/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.installer.yaml @@ -8,13 +8,13 @@ Scope: machine Protocols: - http - https -ProductCode: '{b4792c6e-3e24-4c92-9826-91b9fd408212}' -ReleaseDate: 2026-03-26 +ProductCode: '{701d3ccb-0e33-4d81-b1e1-4db33974ebfb}' +ReleaseDate: 2026-03-27 AppsAndFeaturesEntries: - DisplayName: ServoShell Installers: - Architecture: x64 - InstallerUrl: https://github.com/servo/servo-nightly-builds/releases/download/2026-03-26/servo-x86_64-windows-msvc.exe - InstallerSha256: 06DEDDBE88A6E96F102B3141DBC00607000427F362B55A727F83CFC6E19DF259 + InstallerUrl: https://github.com/servo/servo-nightly-builds/releases/download/2026-03-27/servo-x86_64-windows-msvc.exe + InstallerSha256: 2035DDD715A96E075723F54F2FB839D203EA9679D5F74420B809508F721DAC22 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.locale.en-US.yaml b/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.locale.en-US.yaml index 869d0d9ebb4d..14046cf8acce 100644 --- a/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.locale.en-US.yaml +++ b/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.locale.en-US.yaml @@ -19,8 +19,8 @@ Tags: - web - web-browser - webpage -ReleaseNotes: Nightly build based on servo/servo@2ee93de65d13a1c00f158d3b1c48280c398c0047 -ReleaseNotesUrl: https://github.com/servo/servo-nightly-builds/releases/tag/2026-03-26 +ReleaseNotes: Nightly build based on servo/servo@f7876c3db8d8703f8bea39516b5ed4b5b74a09b8 +ReleaseNotesUrl: https://github.com/servo/servo-nightly-builds/releases/tag/2026-03-27 Documentations: - DocumentLabel: Wiki DocumentUrl: https://github.com/servo/servo/wiki From 795335a035666034057091f747fdc79746e7593d Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sat, 28 Mar 2026 09:45:42 +0800 Subject: [PATCH 144/162] Fix: AMD.LemonadeServer version 10.0.1 (#352419) --- .../AMD/LemonadeServer/10.0.1/AMD.LemonadeServer.installer.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/manifests/a/AMD/LemonadeServer/10.0.1/AMD.LemonadeServer.installer.yaml b/manifests/a/AMD/LemonadeServer/10.0.1/AMD.LemonadeServer.installer.yaml index 11c3a90de323..cdbda9bfa7fd 100644 --- a/manifests/a/AMD/LemonadeServer/10.0.1/AMD.LemonadeServer.installer.yaml +++ b/manifests/a/AMD/LemonadeServer/10.0.1/AMD.LemonadeServer.installer.yaml @@ -3,9 +3,7 @@ PackageIdentifier: AMD.LemonadeServer PackageVersion: 10.0.1 -InstallerLocale: en-US InstallerType: wix -Scope: user InstallerSwitches: InstallLocation: INSTALLDIR="" ProductCode: '{C67B54BD-3FC7-4103-B059-2DA25B568955}' From b76d8db2d208f8a8f8077079eef1d345e43da1b0 Mon Sep 17 00:00:00 2001 From: Charlie Chen <56779163+SpecterShell@users.noreply.github.com> Date: Sat, 28 Mar 2026 09:46:36 +0800 Subject: [PATCH 145/162] ReleaseNotes: Amazon.SSMAgent version 3.3.4108.0 (#352428) --- .../SSMAgent/3.3.4108.0/Amazon.SSMAgent.installer.yaml | 1 + .../SSMAgent/3.3.4108.0/Amazon.SSMAgent.locale.en-US.yaml | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/manifests/a/Amazon/SSMAgent/3.3.4108.0/Amazon.SSMAgent.installer.yaml b/manifests/a/Amazon/SSMAgent/3.3.4108.0/Amazon.SSMAgent.installer.yaml index a2df4385b86c..40013acc7324 100644 --- a/manifests/a/Amazon/SSMAgent/3.3.4108.0/Amazon.SSMAgent.installer.yaml +++ b/manifests/a/Amazon/SSMAgent/3.3.4108.0/Amazon.SSMAgent.installer.yaml @@ -7,6 +7,7 @@ InstallerType: burn Scope: machine UpgradeBehavior: install ProductCode: '{e847e092-94a8-40a0-95c9-87544ea61c3e}' +ReleaseDate: 2026-03-23 AppsAndFeaturesEntries: - UpgradeCode: '{D66D03A7-CA16-4C0C-B5B2-520F22AE5448}' Installers: diff --git a/manifests/a/Amazon/SSMAgent/3.3.4108.0/Amazon.SSMAgent.locale.en-US.yaml b/manifests/a/Amazon/SSMAgent/3.3.4108.0/Amazon.SSMAgent.locale.en-US.yaml index acc40be423e3..cd50c7336b7d 100644 --- a/manifests/a/Amazon/SSMAgent/3.3.4108.0/Amazon.SSMAgent.locale.en-US.yaml +++ b/manifests/a/Amazon/SSMAgent/3.3.4108.0/Amazon.SSMAgent.locale.en-US.yaml @@ -20,6 +20,9 @@ Description: |- If you monitor traffic, you will see that your managed nodes communicate with ssmmessages.* endpoints and possibly ec2messages.* endpoints. For more information, see Reference: ec2messages, ssmmessages, and other API operations. For information about porting SSM Agent logs to Amazon CloudWatch Logs, see Logging and monitoring in AWS Systems Manager. Tags: - aws -ReleaseNotesUrl: https://github.com/aws/amazon-ssm-agent/releases/tag/v3.3.3050.0 +ReleaseNotes: |- + - Disable Go 1.25 container-aware GOMAXPROCS to prevent holding cgroup file descriptors open + - Upgrade Go version to 1.25.8 +ReleaseNotesUrl: https://github.com/aws/amazon-ssm-agent/releases/tag/3.3.4108.0 ManifestType: defaultLocale ManifestVersion: 1.12.0 From 925c7225d73d877c3de93967ef9b6c633a64c8d6 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 09:47:46 +0800 Subject: [PATCH 146/162] New version: Google.Chrome.Dev version 148.0.7753.0 (#352668) --- .../Google.Chrome.Dev.installer.yaml | 10 +++++----- .../Google.Chrome.Dev.locale.en-US.yaml | 2 +- .../Google.Chrome.Dev.locale.nb-NO.yaml | 2 +- .../Google.Chrome.Dev.locale.zh-CN.yaml | 2 +- .../Google.Chrome.Dev.yaml | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) rename manifests/g/Google/Chrome/Dev/{148.0.7743.0 => 148.0.7753.0}/Google.Chrome.Dev.installer.yaml (71%) rename manifests/g/Google/Chrome/Dev/{148.0.7743.0 => 148.0.7753.0}/Google.Chrome.Dev.locale.en-US.yaml (97%) rename manifests/g/Google/Chrome/Dev/{148.0.7743.0 => 148.0.7753.0}/Google.Chrome.Dev.locale.nb-NO.yaml (97%) rename manifests/g/Google/Chrome/Dev/{148.0.7743.0 => 148.0.7753.0}/Google.Chrome.Dev.locale.zh-CN.yaml (97%) rename manifests/g/Google/Chrome/Dev/{148.0.7743.0 => 148.0.7753.0}/Google.Chrome.Dev.yaml (89%) diff --git a/manifests/g/Google/Chrome/Dev/148.0.7743.0/Google.Chrome.Dev.installer.yaml b/manifests/g/Google/Chrome/Dev/148.0.7753.0/Google.Chrome.Dev.installer.yaml similarity index 71% rename from manifests/g/Google/Chrome/Dev/148.0.7743.0/Google.Chrome.Dev.installer.yaml rename to manifests/g/Google/Chrome/Dev/148.0.7753.0/Google.Chrome.Dev.installer.yaml index 26761c99707e..a364a9581a09 100644 --- a/manifests/g/Google/Chrome/Dev/148.0.7743.0/Google.Chrome.Dev.installer.yaml +++ b/manifests/g/Google/Chrome/Dev/148.0.7753.0/Google.Chrome.Dev.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Google.Chrome.Dev -PackageVersion: 148.0.7743.0 +PackageVersion: 148.0.7753.0 InstallerType: wix Scope: machine UpgradeBehavior: install @@ -28,11 +28,11 @@ ElevationRequirement: elevatesSelf Installers: - Architecture: x86 InstallerUrl: https://dl.google.com/dl/chrome/install/dev/googlechromedevstandaloneenterprise.msi - InstallerSha256: 1552DBAE52C5A42AD41A5DAAAB1E9DA09F6FF21B0BD5E099C600AFD195F26B1E - ProductCode: '{66022778-670F-396D-ACC8-CFE0ABEFC3D4}' + InstallerSha256: C4465C8F62D4C3A4C2AFED6647ED4D475613E6C9D692F2A63FF2B0F0AB2EF0C9 + ProductCode: '{6E66E528-9F74-3138-9BE9-6669FCAAD198}' - Architecture: x64 InstallerUrl: https://dl.google.com/dl/chrome/install/dev/googlechromedevstandaloneenterprise64.msi - InstallerSha256: AB7EB9A2856442C4BFB120E243DC487899B584EE821DE1200A51E7DE57CB0A5A - ProductCode: '{8E13E428-5AA2-348F-9808-9F09FED4BD31}' + InstallerSha256: C32D78E2B79C3B2C60EF8A0B82026C17E1C78559B4F47EF84F8E626334F0D5BC + ProductCode: '{A6492BB4-5B97-3681-B800-F727B1FBE5A2}' ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/g/Google/Chrome/Dev/148.0.7743.0/Google.Chrome.Dev.locale.en-US.yaml b/manifests/g/Google/Chrome/Dev/148.0.7753.0/Google.Chrome.Dev.locale.en-US.yaml similarity index 97% rename from manifests/g/Google/Chrome/Dev/148.0.7743.0/Google.Chrome.Dev.locale.en-US.yaml rename to manifests/g/Google/Chrome/Dev/148.0.7753.0/Google.Chrome.Dev.locale.en-US.yaml index 7d4a90905ce4..503e2c0b5b0a 100644 --- a/manifests/g/Google/Chrome/Dev/148.0.7743.0/Google.Chrome.Dev.locale.en-US.yaml +++ b/manifests/g/Google/Chrome/Dev/148.0.7753.0/Google.Chrome.Dev.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Google.Chrome.Dev -PackageVersion: 148.0.7743.0 +PackageVersion: 148.0.7753.0 PackageLocale: en-US Publisher: Google LLC PublisherUrl: https://www.google.com/ diff --git a/manifests/g/Google/Chrome/Dev/148.0.7743.0/Google.Chrome.Dev.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Dev/148.0.7753.0/Google.Chrome.Dev.locale.nb-NO.yaml similarity index 97% rename from manifests/g/Google/Chrome/Dev/148.0.7743.0/Google.Chrome.Dev.locale.nb-NO.yaml rename to manifests/g/Google/Chrome/Dev/148.0.7753.0/Google.Chrome.Dev.locale.nb-NO.yaml index 36d397f37d58..9915c4f7ffa1 100644 --- a/manifests/g/Google/Chrome/Dev/148.0.7743.0/Google.Chrome.Dev.locale.nb-NO.yaml +++ b/manifests/g/Google/Chrome/Dev/148.0.7753.0/Google.Chrome.Dev.locale.nb-NO.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Google.Chrome.Dev -PackageVersion: 148.0.7743.0 +PackageVersion: 148.0.7753.0 PackageLocale: nb-NO Publisher: Google LLC PublisherUrl: https://www.google.com/ diff --git a/manifests/g/Google/Chrome/Dev/148.0.7743.0/Google.Chrome.Dev.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Dev/148.0.7753.0/Google.Chrome.Dev.locale.zh-CN.yaml similarity index 97% rename from manifests/g/Google/Chrome/Dev/148.0.7743.0/Google.Chrome.Dev.locale.zh-CN.yaml rename to manifests/g/Google/Chrome/Dev/148.0.7753.0/Google.Chrome.Dev.locale.zh-CN.yaml index 1880184d5c92..f873b3fee392 100644 --- a/manifests/g/Google/Chrome/Dev/148.0.7743.0/Google.Chrome.Dev.locale.zh-CN.yaml +++ b/manifests/g/Google/Chrome/Dev/148.0.7753.0/Google.Chrome.Dev.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Google.Chrome.Dev -PackageVersion: 148.0.7743.0 +PackageVersion: 148.0.7753.0 PackageLocale: zh-CN Publisher: Google LLC PublisherUrl: https://www.google.com/ diff --git a/manifests/g/Google/Chrome/Dev/148.0.7743.0/Google.Chrome.Dev.yaml b/manifests/g/Google/Chrome/Dev/148.0.7753.0/Google.Chrome.Dev.yaml similarity index 89% rename from manifests/g/Google/Chrome/Dev/148.0.7743.0/Google.Chrome.Dev.yaml rename to manifests/g/Google/Chrome/Dev/148.0.7753.0/Google.Chrome.Dev.yaml index ee6c79520a8a..26122a31da90 100644 --- a/manifests/g/Google/Chrome/Dev/148.0.7743.0/Google.Chrome.Dev.yaml +++ b/manifests/g/Google/Chrome/Dev/148.0.7753.0/Google.Chrome.Dev.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Google.Chrome.Dev -PackageVersion: 148.0.7743.0 +PackageVersion: 148.0.7753.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 From 9deca7e4b87a68a2b7e52f7fe8b479c08ac38a69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20Kj=C3=A6rg=C3=A5rd?= <31723128+kris6673@users.noreply.github.com> Date: Sat, 28 Mar 2026 02:48:49 +0100 Subject: [PATCH 147/162] New version: LinuxContainers.Incus version 6.23.0 (#352905) --- .../LinuxContainers.Incus.installer.yaml | 18 ++++ .../LinuxContainers.Incus.locale.en-US.yaml | 98 +++++++++++++++++++ .../Incus/6.23.0/LinuxContainers.Incus.yaml | 8 ++ 3 files changed, 124 insertions(+) create mode 100644 manifests/l/LinuxContainers/Incus/6.23.0/LinuxContainers.Incus.installer.yaml create mode 100644 manifests/l/LinuxContainers/Incus/6.23.0/LinuxContainers.Incus.locale.en-US.yaml create mode 100644 manifests/l/LinuxContainers/Incus/6.23.0/LinuxContainers.Incus.yaml diff --git a/manifests/l/LinuxContainers/Incus/6.23.0/LinuxContainers.Incus.installer.yaml b/manifests/l/LinuxContainers/Incus/6.23.0/LinuxContainers.Incus.installer.yaml new file mode 100644 index 000000000000..4dbe9766ab85 --- /dev/null +++ b/manifests/l/LinuxContainers/Incus/6.23.0/LinuxContainers.Incus.installer.yaml @@ -0,0 +1,18 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: LinuxContainers.Incus +PackageVersion: 6.23.0 +InstallerType: portable +Commands: +- incus +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/lxc/incus/releases/download/v6.23.0/bin.windows.incus.x86_64.exe + InstallerSha256: DCD29A291FEBB0A01202E8BA196BFEE28AFD96FC5D9940E6F45FDF29C23D76A6 +- Architecture: arm64 + InstallerUrl: https://github.com/lxc/incus/releases/download/v6.23.0/bin.windows.incus.aarch64.exe + InstallerSha256: E6C55B545972327FC805417E480013AB2C2DA3C93BF6B735BEFE9FF2A897D620 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/LinuxContainers/Incus/6.23.0/LinuxContainers.Incus.locale.en-US.yaml b/manifests/l/LinuxContainers/Incus/6.23.0/LinuxContainers.Incus.locale.en-US.yaml new file mode 100644 index 000000000000..0642685cc475 --- /dev/null +++ b/manifests/l/LinuxContainers/Incus/6.23.0/LinuxContainers.Incus.locale.en-US.yaml @@ -0,0 +1,98 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: LinuxContainers.Incus +PackageVersion: 6.23.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 + - Allow custom volume snapshot create/delete when attached to running instance by @presztak in #2989 + - shared/cliconfig: Add lock to prevent panic by @stgraber in #2991 + - incusd/endpoints/starttls: Report correct ServerName by @stgraber in #2993 + - generate-database: fix linter complaints by @J0nasDotDev in #2995 + - build(deps): bump actions/upload-artifact from 6 to 7 by @dependabot[bot] in #2996 + - firewall: fix linter complaints by @J0nasDotDev in #2997 + - OVN add ipv4.dhcp.gateway + allow none value by @JulesdeCube in #2990 + - server sys: fix linter complaints by @J0nasDotDev in #2999 + - server project: fix linter complaints by @J0nasDotDev in #2998 + - server util: fix linter complaints by @J0nasDotDev in #3000 + - incusd/instance/lxc: Add /usr/bin/init to OCI PID1 list by @stgraber in #3001 + - server seccomp: fix linter complaints by @J0nasDotDev in #3002 + - server migration: fix linter complaints by @J0nasDotDev in #3003 + - server task: fix linter complaints by @J0nasDotDev in #3004 + - Add an instance repair API by @stgraber in #3008 + - Implement new parser for CLI client by @bensmrs in #3007 + - Translations update from Hosted Weblate by @weblate in #3009 + - incusd/operations: Fix missing Unlock by @stgraber in #3012 + - Translations update from Hosted Weblate by @weblate in #3013 + - incusd/metrics: Increase node-exporter timeout to 5s by @stgraber in #3015 + - Translations update from Hosted Weblate by @weblate in #3019 + - Mixed bugfixes by @stgraber in #3020 + - Add support for instance-agent events by @0xk1f0 in #3026 + - NIC improvements by @bensmrs in #3024 + - incus/usage: Defer remote connection by @bensmrs in #3028 + - Fix linter reported issues by @stgraber in #3022 + - Add FreeBSD agent by @bensmrs in #3029 + - Translations update from Hosted Weblate by @weblate in #3031 + - Fix ZFS test failures by @stgraber in #3027 + - incus: fix log in sftpRecursiveMkdir by @J0nasDotDev in #3032 + - Translations update from Hosted Weblate by @weblate in #3034 + - devcontainer: update Go version and pipx install command by @0xk1f0 in #3035 + - Translations update from Hosted Weblate by @weblate in #3038 + - incus/cluster: Fix default column layout in help text by @urbalazs in #3041 + - incus: Fix indent on --sub-commands by @stgraber in #3042 + - Add initial support for dependent volumes by @presztak in #3025 + - Introduce goreleaser by @stgraber in #3044 + - incusd/daemon: Allow internal and os API during startup by @stgraber in #3045 + - Diverse agent fixes by @bensmrs in #3051 + - Restrict security.shared to raw custom block volumes on lvmcluster by @presztak in #3053 + - incus: Print newly-created snapshot name if unspecified by @J0nasDotDev in #3039 + - incus/info: Allow querying alternative log files by @stgraber in #3052 + - Simplify config subvolume naming by using static "instance" prefix by @presztak in #3050 + - Add colors to the CLI client by @bensmrs in #3058 + - HTTP hardening by @stgraber in #3067 + - Add support for migrating dependent volumes with instances by @presztak in #3057 + - Fix issues with logs volume by @stgraber in #3063 + - Harden certificate updates by @stgraber in #3068 + - Few tweaks around CLI colors by @bensmrs in #3065 + - Add LZ4 compression by @bensmrs in #3071 + - Add project resource and limit metrics by @Adevixxx in #3021 + - incus-migrate: Fix OVA handling within os.Root by @stgraber in #3072 + - incus-migrate: Allow importing OVAs from URLs by @bensmrs in #3073 + - incusd/seccomp: Limit the new mount API system calls we block by @stgraber in #3070 + - incus/usage: Fix edge case by @bensmrs in #3080 + - Update dependencies by @stgraber in #3078 + - Cleanup and harden the OIDC allowed_subnets claim by @stgraber in #3079 + - Translations update from Hosted Weblate by @weblate in #3082 + - doc: Remove config-options page by @bensmrs in #3083 + - Refactor live migration - extract common logic by @presztak in #3085 + - Add cp-like flags to pull commands by @bensmrs in #3086 + - Prevent setting the 'snapshots.XYZ' keys on dependent volumes by @presztak in #3087 + - incusd/instances_post: Add extra validation during backup import by @stgraber in #3088 + - Translations update from Hosted Weblate by @weblate in #3090 + - Add support for live migration of dependent disks by @presztak in #3089 + - Add image.requirements.cdrom_cloud_init key by @bensmrs in #3091 + - Translations update from Hosted Weblate by @weblate in #3094 + - Fix some security issues by @stgraber in #3092 + - Small fixes and refactorings by @stgraber in #3095 + - Pre-release bugfixes by @stgraber in #3096 + New Contributors + - @JulesdeCube made their first contribution in #2990 + - @urbalazs made their first contribution in #3041 + - @Adevixxx made their first contribution in #3021 + Full Changelog: v6.22.0...v6.23.0 +ReleaseNotesUrl: https://github.com/lxc/incus/releases/tag/v6.23.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LinuxContainers/Incus/6.23.0/LinuxContainers.Incus.yaml b/manifests/l/LinuxContainers/Incus/6.23.0/LinuxContainers.Incus.yaml new file mode 100644 index 000000000000..785f7dc6d3e0 --- /dev/null +++ b/manifests/l/LinuxContainers/Incus/6.23.0/LinuxContainers.Incus.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: LinuxContainers.Incus +PackageVersion: 6.23.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 383ac921f17cd2e46e324f6d0a3269523930f314 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 09:49:49 +0800 Subject: [PATCH 148/162] New version: AppByTroye.KoodoReader version 2.3.1 (#352916) --- .../AppByTroye.KoodoReader.installer.yaml | 48 +++++++++++ .../AppByTroye.KoodoReader.locale.en-US.yaml | 80 +++++++++++++++++++ .../AppByTroye.KoodoReader.locale.zh-CN.yaml | 73 +++++++++++++++++ .../2.3.1/AppByTroye.KoodoReader.yaml | 8 ++ 4 files changed, 209 insertions(+) create mode 100644 manifests/a/AppByTroye/KoodoReader/2.3.1/AppByTroye.KoodoReader.installer.yaml create mode 100644 manifests/a/AppByTroye/KoodoReader/2.3.1/AppByTroye.KoodoReader.locale.en-US.yaml create mode 100644 manifests/a/AppByTroye/KoodoReader/2.3.1/AppByTroye.KoodoReader.locale.zh-CN.yaml create mode 100644 manifests/a/AppByTroye/KoodoReader/2.3.1/AppByTroye.KoodoReader.yaml diff --git a/manifests/a/AppByTroye/KoodoReader/2.3.1/AppByTroye.KoodoReader.installer.yaml b/manifests/a/AppByTroye/KoodoReader/2.3.1/AppByTroye.KoodoReader.installer.yaml new file mode 100644 index 000000000000..596e95fab525 --- /dev/null +++ b/manifests/a/AppByTroye/KoodoReader/2.3.1/AppByTroye.KoodoReader.installer.yaml @@ -0,0 +1,48 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: AppByTroye.KoodoReader +PackageVersion: 2.3.1 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +FileExtensions: +- azw +- azw3 +- cb7 +- cbr +- cbt +- cbz +- epub +- fb2 +- mobi +- pdf +ProductCode: 233610fa-2bda-5a09-a37b-75e0bafa7920 +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://dl.koodoreader.com/v2.3.1/Koodo-Reader-2.3.1-x64.exe + InstallerSha256: 82CC05C530B68A7E710C4785A9CC5C9654735D48694E6006D81B737D3188C508 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://dl.koodoreader.com/v2.3.1/Koodo-Reader-2.3.1-x64.exe + InstallerSha256: 82CC05C530B68A7E710C4785A9CC5C9654735D48694E6006D81B737D3188C508 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: user + InstallerUrl: https://dl.koodoreader.com/v2.3.1/Koodo-Reader-2.3.1-arm64.exe + InstallerSha256: 9B79F5B2BA89DAF7C6830425C467EFCEF8326EAD98BED2A38647F456B344B2FF + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://dl.koodoreader.com/v2.3.1/Koodo-Reader-2.3.1-arm64.exe + InstallerSha256: 9B79F5B2BA89DAF7C6830425C467EFCEF8326EAD98BED2A38647F456B344B2FF + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/AppByTroye/KoodoReader/2.3.1/AppByTroye.KoodoReader.locale.en-US.yaml b/manifests/a/AppByTroye/KoodoReader/2.3.1/AppByTroye.KoodoReader.locale.en-US.yaml new file mode 100644 index 000000000000..300db9eb3b5f --- /dev/null +++ b/manifests/a/AppByTroye/KoodoReader/2.3.1/AppByTroye.KoodoReader.locale.en-US.yaml @@ -0,0 +1,80 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: AppByTroye.KoodoReader +PackageVersion: 2.3.1 +PackageLocale: en-US +Publisher: App by Troye +PublisherUrl: https://www.koodoreader.com/ +PublisherSupportUrl: https://www.koodoreader.com/en/support +PrivacyUrl: https://www.koodoreader.com/en/privacy +Author: Troye +PackageName: Koodo Reader +PackageUrl: https://www.koodoreader.com/ +License: AGPL-3.0 +LicenseUrl: https://github.com/koodo-reader/koodo-reader/blob/HEAD/LICENSE +Copyright: © 2026 App by Troye. All rights reserved. +CopyrightUrl: https://www.koodoreader.com/en/term +ShortDescription: All-in-one ebook reader +Description: Koodo Reader is an all-in-one eBook reader for Windows, macOS, Linux, and the web, supporting over 15 formats. +Moniker: koodoreader +Tags: +- ebook +- ebook-reader +- epub +- pdf +- reader +ReleaseNotes: |- + Highlights 🎖️ + All of our translation, dictionary, and TTS plugins are now officially open source. You can use the examples and tutorials we provide to develop your own plugins. Repository and plugin tutorials: koodo-reader/plugins: Plugins list for Koodo Reader + New Features + - Support for exporting highlights and notes to PDF and HTML formats + - The TTS feature now opens in a separate window and includes new controls for pause, previous sentence, and next sentence. Click the TTS button in the bottom-right corner of the book + - For security reasons, JavaScript execution within books is disabled by default. You can manually enable it in the reading options panel on the right + - Added current time and reading progress to the book header + - Added 7 app theme colors and support for custom app themes + - All translation, dictionary, and TTS plugins are now built into the app; no need to access the documentation to obtain them + - Added shortcut keys for searching within the book (Ctrl + F) and opening the table of contents (Ctrl + B) + - Support for setting a default bookshelf; the app will automatically switch to this bookshelf upon launch. Go to Settings > General + - Support for vertical text layout. Go to the Reading Options panel on the right > Text Direction + - Added border feature. When enabled, a border will appear around the book. Go to the Reading Options panel on the right to enable it + - Support for exporting book covers. Right-click on the book > More Actions + - Added hyphenation feature. Go to the Reading Options panel on the right to enable it + - Added “Allow Orphan and Widow Lines” feature. Go to the Reading Options panel on the right to enable it + - Added AI Encyclopedia feature. Results will be displayed in the dictionary window after each lookup + - Added Deepl, Azure Translation, and Amazon Translation plugins to the translation tools. You will need to configure your API key + - Added Azure TTS and Amazon Polly to the TTS plugins. You will need to configure your API key + - When you hover your mouse over a note in a book, the note’s content will automatically be displayed + - AI Voice now includes 559 new human voices from Azure, increasing the number of supported languages to 91. Due to the high cost of Azure TTS, usage quotas are consumed 5 times faster than Kokoro 82M + - Added an option in Settings to delete a book’s original file when deleting the book. Go to Settings > General + - You can now edit book covers and descriptions. Right-click on the book and select “Edit Book” + - UI detail optimizations + - (Mobile) The number of languages supported by AI translation has increased to 90 + - (Mobile) Downloaded featured fonts are now automatically applied; no manual setup is required + - (Mobile) For security reasons, JavaScript execution within books is disabled by default. To enable it, go to Settings in the Reading menu + - (Mobile) Vertical text layout is now supported; enable it in the Settings under the Reading menu + - (Mobile) A hyphenation feature has been added; enable it in the Settings under the Reading menu + - (Mobile) A feature allowing orphaned and widowed lines has been added; enable it in the Settings under the Reading menu + - (Mobile) An AI Encyclopedia feature has been added; results will be displayed in the dictionary window after each lookup + - (Mobile) AI Text-to-Speech now includes 559 new human voices from Azure, increasing the number of supported languages to 82. Due to the high cost of Azure TTS, the rate at which Azure TTS quotas are consumed is 5 times that of Kokoro 82M. + Fixes + - Fixed an issue where TTS plugins like ChatTTS would repeatedly send a single sentence when audio generation took a long time. + - Fixed an issue where adding a data source resulted in an error after redeeming a code in certain cases + - (Mobile) Fixed an issue where adding a book caused a synchronization error when using Docker as the data source + - (Mobile) Fixed an issue where adding a data source resulted in an error after redeeming a code in certain cases + - (Mobile) Fixed an issue where reading progress was not recorded for some books + - (Mobile) Fixed an issue where the TTS feature would crash on some Oppo and OnePlus devices + - (Mobile) Fixed an issue where reading progress was not automatically synced after exiting reading via a gesture + - (Mobile) Fixed an issue where AI voice was not working on iOS 17 or lower + - (Mobile) Fixed an issue where page turning via volume keys did not work on iOS 26 + - (Mobile) Fixed an issue where already downloaded fonts could be downloaded again + [!NOTE] + This version has been selected as the stable release candidate. It should work fine in most cases. If you have any concerns, please download the previous stable version + [!TIP] + You can also download the installation package for this version from the our self-hosted mirror. +ReleaseNotesUrl: https://github.com/koodo-reader/koodo-reader/releases/tag/v2.3.1 +Documentations: +- DocumentLabel: Document + DocumentUrl: https://www.koodoreader.com/en/document +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/AppByTroye/KoodoReader/2.3.1/AppByTroye.KoodoReader.locale.zh-CN.yaml b/manifests/a/AppByTroye/KoodoReader/2.3.1/AppByTroye.KoodoReader.locale.zh-CN.yaml new file mode 100644 index 000000000000..6d59feda1c0e --- /dev/null +++ b/manifests/a/AppByTroye/KoodoReader/2.3.1/AppByTroye.KoodoReader.locale.zh-CN.yaml @@ -0,0 +1,73 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: AppByTroye.KoodoReader +PackageVersion: 2.3.1 +PackageLocale: zh-CN +PublisherUrl: https://www.koodoreader.com/zh +PublisherSupportUrl: https://www.koodoreader.com/zh/support +PrivacyUrl: https://www.koodoreader.com/zh/privacy +PackageUrl: https://www.koodoreader.com/zh +CopyrightUrl: https://www.koodoreader.com/zh/term +ShortDescription: 开源电子阅读解决方案 +Description: Koodo Reader 是一个开源的电子书阅读器,支持多达 15 种主流电子书格式,内置笔记、高亮、翻译功能,助力高效书籍阅读和学习。 +Tags: +- epub +- pdf +- 电子书 +- 电子书阅读器 +- 阅读器 +ReleaseNotes: |- + 亮点 🎖️ + 我们所有的翻译、词典、听书插件已经正式开源,您可以根据我们提供的示例和教程编写自己的插件。仓库地址和插件教程:koodo-reader/plugins: Plugins list for Koodo Reader + 新增 + - 支持导出笔记高亮为 PDF 和 HTML 格式 + - 现在听书功能将在一个单独窗口中展示,并新增暂停,上一句,下一句功能,请点击图书右下角的听书按钮 + - 出于安全原因,默认禁用图书中的 JS 代码执行,您可以在右侧阅读选项面板中手动启用 + - 图书页眉新增当前时间和阅读进度 + - 新增 7 个应用主题色,并支持自定义应用主题色 + - 现在所有的翻译、词典、听书插件将内置在应用中,无需前往帮助文档获取 + - 新增书中搜索(Ctrl + F)和打开目录(Ctrl + B)的快捷键 + - 支持设置默认书架,打开应用之后将自动切换到该书架,请前往设置-通用 + - 支持文字竖排,请前往右侧阅读选项面板-文字方向 + - 新增板框功能,开启之后将在图书周围展示板框,请前往右侧阅读选项面板开启 + - 支持导出图书封面,请在图书上右键-更多操作 + - 新增启用连字符功能,请前往右侧阅读选项面板开启 + - 新增允许孤行和寡行功能,请前往右侧阅读选项面板开启 + - 新增 AI 百科功能,每次查词之后将在词典窗口中展示 + - 翻译插件新增 Deepl,Azure 翻译和 Amazon 翻译插件,需要您自行配置 API Key + - 听书插件新增 Azure TTS 和 Amazon Polly,需要您自行配置 API Key + - 当您在书中笔记上悬停鼠标时,将自动展示笔记的内容 + - AI 语音新增 559 个来自 Azure 的真人语音,支持的语言数量增加到 82 门,由于 Azure TTS 高昂的成本,使用 Azure TTS 的额度消耗速度是 Kokoro 82M 的 5 倍 + - 设置新增删除图书之后同时删除图书的原始文件,请前往设置-通用 + - 支持修改图书封面和描述,请在图书上右键-编辑图书 + - UI 细节优化 + -(移动版)AI 翻译支持的语言数量增加到 94 门 + -(移动版)现在下载精选字体后将自动应用,您无需手动设置 + -(移动版)支持文字竖排,请在阅读菜单的设置中开启 + -(移动版)新增启用连字符功能,请在阅读菜单的设置中开启 + -(移动版)新增允许孤行和寡行功能,请在阅读菜单的设置中开启 + -(移动版)新增 AI 百科功能,每次查词之后将在词典窗口中展示 + -(移动版)AI 语音新增 559 个来自 Azure 的真人语音,支持的语言数量增加到 82 门,由于 Azure TTS 高昂的成本,使用 Azure TTS 的额度消耗速度是 Kokoro 82M 的 5 倍 + 修复 + - 修复 ChatTTS 等听书插件当音频生成时间较长时,出现重复发送单个句子的问题 + - 修复部分图书无法记录阅读进度的问题 + -(移动版)修复使用 Docker 作为数据源,添加图书之后同步报错的问题 + -(移动版)修复部分情况下使用兑换码之后,添加数据源报错的问题 + -(移动版)修复部分图书无法记录阅读进度的问题 + -(移动版)修复安卓上使用 Koodo Reader 作为图书打开方式之后的报错 + -(移动版)修复部分 Oppo 和 OnePlus 设备上听书功能闪退的问题 + -(移动版)修复使用手势退出阅读之后,不自动同步的问题 + -(移动版)修复 iOS 17 上 AI 语音无法使用的问题 + -(移动版)修复 iOS 26 上音量键翻页失效的问题 + -(移动版)修复已经下载的字体可以重复下载的问题 + [!NOTE] + 此版本由于功能已经稳定,bug 也基本修复,被选为下个稳定版候选。如果您对此有任何顾虑,可以下载上一个稳定版. + [!TIP] + 我们还提供了高速下载镜像,您也可以从 自托管镜像 下载此版本的安装包 +ReleaseNotesUrl: https://github.com/koodo-reader/koodo-reader/releases/tag/v2.3.1 +Documentations: +- DocumentLabel: 帮助文档 + DocumentUrl: https://www.koodoreader.com/zh/document +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/a/AppByTroye/KoodoReader/2.3.1/AppByTroye.KoodoReader.yaml b/manifests/a/AppByTroye/KoodoReader/2.3.1/AppByTroye.KoodoReader.yaml new file mode 100644 index 000000000000..f36a8c77319b --- /dev/null +++ b/manifests/a/AppByTroye/KoodoReader/2.3.1/AppByTroye.KoodoReader.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: AppByTroye.KoodoReader +PackageVersion: 2.3.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 7b645447bb18c8073a0c8bd84aac807a597c2dd7 Mon Sep 17 00:00:00 2001 From: UnownBot Date: Fri, 27 Mar 2026 21:50:42 -0400 Subject: [PATCH 149/162] New version: Zen-Team.Zen-Browser version 1.19.4b (#352923) --- .../Zen-Team.Zen-Browser.installer.yaml | 45 ++++++++++++++ .../Zen-Team.Zen-Browser.locale.en-US.yaml | 61 +++++++++++++++++++ .../1.19.4b/Zen-Team.Zen-Browser.yaml | 8 +++ 3 files changed, 114 insertions(+) create mode 100644 manifests/z/Zen-Team/Zen-Browser/1.19.4b/Zen-Team.Zen-Browser.installer.yaml create mode 100644 manifests/z/Zen-Team/Zen-Browser/1.19.4b/Zen-Team.Zen-Browser.locale.en-US.yaml create mode 100644 manifests/z/Zen-Team/Zen-Browser/1.19.4b/Zen-Team.Zen-Browser.yaml diff --git a/manifests/z/Zen-Team/Zen-Browser/1.19.4b/Zen-Team.Zen-Browser.installer.yaml b/manifests/z/Zen-Team/Zen-Browser/1.19.4b/Zen-Team.Zen-Browser.installer.yaml new file mode 100644 index 000000000000..01c4f55666b7 --- /dev/null +++ b/manifests/z/Zen-Team/Zen-Browser/1.19.4b/Zen-Team.Zen-Browser.installer.yaml @@ -0,0 +1,45 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Zen-Team.Zen-Browser +PackageVersion: 1.19.4b +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" + Custom: /DesktopShortcut=false +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Zen Browser +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/zen-browser/desktop/releases/download/1.19.4b/zen.installer.exe + InstallerSha256: 690C377B933D2F67B1ADB18BFCCB5265BB7D0859E889719D5DF5E97DD75C3675 + AppsAndFeaturesEntries: + - DisplayName: Zen Browser (x64 en-US) +- Architecture: arm64 + InstallerUrl: https://github.com/zen-browser/desktop/releases/download/1.19.4b/zen.installer-arm64.exe + InstallerSha256: BB8C238E054F49324E50FA1A4753DC03B882FEB6DEB5A9B53FD0E63B0B5268DC + AppsAndFeaturesEntries: + - DisplayName: Zen Browser (AArch64 en-US) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/z/Zen-Team/Zen-Browser/1.19.4b/Zen-Team.Zen-Browser.locale.en-US.yaml b/manifests/z/Zen-Team/Zen-Browser/1.19.4b/Zen-Team.Zen-Browser.locale.en-US.yaml new file mode 100644 index 000000000000..e51de7c72860 --- /dev/null +++ b/manifests/z/Zen-Team/Zen-Browser/1.19.4b/Zen-Team.Zen-Browser.locale.en-US.yaml @@ -0,0 +1,61 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Zen-Team.Zen-Browser +PackageVersion: 1.19.4b +PackageLocale: en-US +Publisher: Zen OSS Team +PublisherUrl: https://zen-browser.app/ +PublisherSupportUrl: https://github.com/zen-browser/desktop/issues +PrivacyUrl: https://zen-browser.app/privacy-policy/ +PackageName: Zen Browser +PackageUrl: https://zen-browser.app/ +License: MPL-2.0 +LicenseUrl: https://github.com/zen-browser/desktop/blob/HEAD/LICENSE +Copyright: Zen OSS Team +ShortDescription: Zen is the best way to browse the web. Beautifully designed, privacy-focused, and packed with features. We care about your experience, not your data. +Moniker: zen-browser +Tags: +- arc +- arc-browser +- firefox +- firefox-based +- firefox-browser +- gecko +- internet +- web +- web-browser +- zen +ReleaseNotes: |- + Zen Stable Release + + Security + Various security fixes + + New Features + - Updated to Firefox 149.0 + - Optimized the performance glance and its animations, making it more responsive and smoother than before. + - Added a 'Un-split tabs' context menu item when right-clicking on a tab inside a split view to quickly un-split it. + - Many PDF files will now load significantly faster thanks to hardware acceleration. + - Zen now automatically blocks notifications and permanently revokes permissions for any website flagged as malicious by SafeBrowsing. This prevents unsafe sites from sending background notifications to users, commonly used for ads, spam or phishing. + - The WebRender layer compositor is now enabled on Windows, reducing power usage during full-screen video playback and improving WebGL/WebGPU performance. + + Fixes + - Fixed background grain not showing properly (#12765) + - Fixed not being able to switch spaces with scroll actions (#12816) + - Fixed closing blank windows when asking for confirmation (#12922) + - Increased robustness of HTTP/3 upload performance for unstable network conditions. + - Other minor bug fixes and improvements. + + Changes + - Live folders will now perform a refresh when waking up the computer to make sure the content is up to date. + - On Linux, Zen will now default to the XDG portal file picker if available, rather than the GTK3 one, which is usually better integrated with the user's desktop environment, and more powerful. + - On Windows, Zen will use the modern Windows.Devices.Geolocation API for geolocation instead of Windows 7 location API. +ReleaseNotesUrl: https://zen-browser.app/release-notes/#1.19.4b +Documentations: +- DocumentLabel: About + DocumentUrl: https://zen-browser.app/about/ +- DocumentLabel: Documentation + DocumentUrl: https://docs.zen-browser.app/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/z/Zen-Team/Zen-Browser/1.19.4b/Zen-Team.Zen-Browser.yaml b/manifests/z/Zen-Team/Zen-Browser/1.19.4b/Zen-Team.Zen-Browser.yaml new file mode 100644 index 000000000000..6553e1a22cf4 --- /dev/null +++ b/manifests/z/Zen-Team/Zen-Browser/1.19.4b/Zen-Team.Zen-Browser.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: Zen-Team.Zen-Browser +PackageVersion: 1.19.4b +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 72b47f412c5cdf3ad8fb520b800a7aec4a5163df Mon Sep 17 00:00:00 2001 From: Tom Plant Date: Sat, 28 Mar 2026 12:51:34 +1100 Subject: [PATCH 150/162] New version: D2L.BMX version 3.2.1 (#352925) --- .../d/D2L/BMX/3.2.1/D2L.BMX.installer.yaml | 20 +++++++++ .../d/D2L/BMX/3.2.1/D2L.BMX.locale.en-US.yaml | 41 +++++++++++++++++++ manifests/d/D2L/BMX/3.2.1/D2L.BMX.yaml | 8 ++++ 3 files changed, 69 insertions(+) create mode 100644 manifests/d/D2L/BMX/3.2.1/D2L.BMX.installer.yaml create mode 100644 manifests/d/D2L/BMX/3.2.1/D2L.BMX.locale.en-US.yaml create mode 100644 manifests/d/D2L/BMX/3.2.1/D2L.BMX.yaml diff --git a/manifests/d/D2L/BMX/3.2.1/D2L.BMX.installer.yaml b/manifests/d/D2L/BMX/3.2.1/D2L.BMX.installer.yaml new file mode 100644 index 000000000000..4c81baebcaa7 --- /dev/null +++ b/manifests/d/D2L/BMX/3.2.1/D2L.BMX.installer.yaml @@ -0,0 +1,20 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: D2L.BMX +PackageVersion: 3.2.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: bmx.exe + PortableCommandAlias: bmx +ReleaseDate: 2025-08-21 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Brightspace/bmx/releases/download/v3.2.1/bmx-win-x64.zip + InstallerSha256: CDD2DA525591125E8738261DFBD47F7D50B6A16EAB85A29C06F70D4429532551 +- Architecture: arm64 + InstallerUrl: https://github.com/Brightspace/bmx/releases/download/v3.2.1/bmx-win-arm64.zip + InstallerSha256: D8B264A2EA919196CD9DA6B493735EC91A99668299F881442BAF1D88978C72E4 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/D2L/BMX/3.2.1/D2L.BMX.locale.en-US.yaml b/manifests/d/D2L/BMX/3.2.1/D2L.BMX.locale.en-US.yaml new file mode 100644 index 000000000000..b19e7aa77ddd --- /dev/null +++ b/manifests/d/D2L/BMX/3.2.1/D2L.BMX.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: D2L.BMX +PackageVersion: 3.2.1 +PackageLocale: en-US +Publisher: D2L +PublisherUrl: https://github.com/Brightspace +PublisherSupportUrl: https://github.com/Brightspace/bmx/issues +PackageName: BMX +PackageUrl: https://github.com/Brightspace/bmx +License: Apache-2.0 +LicenseUrl: https://github.com/Brightspace/bmx/blob/HEAD/LICENSE +ShortDescription: BMX provides API access to your AWS accounts using existing Okta credentials. +Tags: +- aws +- iam +- okta +- vulcan +ReleaseNotes: |- + What's Changed + - add passwordless auth section to README by @cfbao in #496 + - Use spectre.console lib to manage ANSI escape code by @AnimalXing in #497 + - move versioning logic into csproj & simplify build commands by @cfbao in #498 + - write all informational messages to stderr by @cfbao in #499 + - add more debug logs for passwordless auth by @cfbao in #500 + - longer timeout for first page load during passwordless auth by @cfbao in #501 + - build for Linux ARM64 in CI by @cfbao in #502 + - add back Version environment variable in CI by @cfbao in #503 + - Remove PR size labeler workflow (unused) by @boarnoah in #504 + - add winget manifest and updating doc by @gord5500 in #505 + - use new SLNX format by @boarnoah in #506 + - Add AWS_PROFILE env var to readme by @eKoopmans in #507 + - update puppeteersharp by @gord5500 in #510 + New Contributors + - @AnimalXing made their first contribution in #497 + - @eKoopmans made their first contribution in #507 + Full Changelog: v3.2.0...v3.2.1 +ReleaseNotesUrl: https://github.com/Brightspace/bmx/releases/tag/v3.2.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/D2L/BMX/3.2.1/D2L.BMX.yaml b/manifests/d/D2L/BMX/3.2.1/D2L.BMX.yaml new file mode 100644 index 000000000000..9cf7ec067622 --- /dev/null +++ b/manifests/d/D2L/BMX/3.2.1/D2L.BMX.yaml @@ -0,0 +1,8 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: D2L.BMX +PackageVersion: 3.2.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From e3c73cfa1b7c0984d7e8db5a07e10dfbab8cb863 Mon Sep 17 00:00:00 2001 From: Tom Plant Date: Sat, 28 Mar 2026 12:52:28 +1100 Subject: [PATCH 151/162] New version: ahmetb.kubens version 0.11.0 (#352926) --- .../0.11.0/ahmetb.kubens.installer.yaml | 26 +++++++++++++++ .../0.11.0/ahmetb.kubens.locale.en-US.yaml | 32 +++++++++++++++++++ .../a/ahmetb/kubens/0.11.0/ahmetb.kubens.yaml | 8 +++++ 3 files changed, 66 insertions(+) create mode 100644 manifests/a/ahmetb/kubens/0.11.0/ahmetb.kubens.installer.yaml create mode 100644 manifests/a/ahmetb/kubens/0.11.0/ahmetb.kubens.locale.en-US.yaml create mode 100644 manifests/a/ahmetb/kubens/0.11.0/ahmetb.kubens.yaml diff --git a/manifests/a/ahmetb/kubens/0.11.0/ahmetb.kubens.installer.yaml b/manifests/a/ahmetb/kubens/0.11.0/ahmetb.kubens.installer.yaml new file mode 100644 index 000000000000..f42b137ec6f1 --- /dev/null +++ b/manifests/a/ahmetb/kubens/0.11.0/ahmetb.kubens.installer.yaml @@ -0,0 +1,26 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ahmetb.kubens +PackageVersion: 0.11.0 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: kubens.exe + PortableCommandAlias: kubens +Commands: +- kubens +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ahmetb/kubectx/releases/download/v0.11.0/kubens_v0.11.0_windows_x86_64.zip + InstallerSha256: AA10DACA6CE321377D61A7E9534911DF9EEE42A0B6E198000757F8D1E8D0A480 +- Architecture: arm + InstallerUrl: https://github.com/ahmetb/kubectx/releases/download/v0.11.0/kubens_v0.11.0_windows_armv7.zip + InstallerSha256: 7E90F027A0DC7C1DC332DCB6DFDCACB408871C2AA8A8B295BE9095B010BA3D95 +- Architecture: arm64 + InstallerUrl: https://github.com/ahmetb/kubectx/releases/download/v0.11.0/kubens_v0.11.0_windows_arm64.zip + InstallerSha256: 8D801FC38965A08488678763B92AAD537086F00768CE8A7527E416E797870E0D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/ahmetb/kubens/0.11.0/ahmetb.kubens.locale.en-US.yaml b/manifests/a/ahmetb/kubens/0.11.0/ahmetb.kubens.locale.en-US.yaml new file mode 100644 index 000000000000..cab9dbf0eacc --- /dev/null +++ b/manifests/a/ahmetb/kubens/0.11.0/ahmetb.kubens.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ahmetb.kubens +PackageVersion: 0.11.0 +PackageLocale: en-US +Publisher: Ahmet Alp Balkan +PublisherUrl: https://ahmet.im/ +PublisherSupportUrl: https://github.com/ahmetb/kubectx/issues +Author: Ahmet Alp Balkan +PackageName: kubens +PackageUrl: https://github.com/ahmetb/kubectx +License: Apache-2.0 +LicenseUrl: https://github.com/ahmetb/kubectx/blob/HEAD/LICENSE +ShortDescription: Faster way to switch between namespaces in kubectl +Description: kubens is a tool to switch between Kubernetes namespaces (and configure them for kubectl) easily. +Moniker: kubens +Tags: +- cli +- devops-tools +- golang +- kubectl +- kubectl-plugins +- kubernetes +- kubernetes-clusters +- portable +ReleaseNotes: |- + Changelog + - feature: kubectx -r launches a read-only shell where only edits to the cluster via kubectl are prevented. Demo: https://x.com/ahmetb/status/2036830308587241971 +ReleaseNotesUrl: https://github.com/ahmetb/kubectx/releases/tag/v0.11.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/ahmetb/kubens/0.11.0/ahmetb.kubens.yaml b/manifests/a/ahmetb/kubens/0.11.0/ahmetb.kubens.yaml new file mode 100644 index 000000000000..d241e651ad0e --- /dev/null +++ b/manifests/a/ahmetb/kubens/0.11.0/ahmetb.kubens.yaml @@ -0,0 +1,8 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: ahmetb.kubens +PackageVersion: 0.11.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 67ab1554c85086a75d98547c6c4b1ab20f250c50 Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 09:53:24 +0800 Subject: [PATCH 152/162] New version: Discord.Discord.Canary.arm64 version 1.0.215 (#352941) --- ...iscord.Discord.Canary.arm64.installer.yaml | 20 +++++++++++ ...ord.Discord.Canary.arm64.locale.en-US.yaml | 33 +++++++++++++++++++ ...ord.Discord.Canary.arm64.locale.zh-CN.yaml | 19 +++++++++++ .../1.0.215/Discord.Discord.Canary.arm64.yaml | 8 +++++ 4 files changed, 80 insertions(+) create mode 100644 manifests/d/Discord/Discord/Canary/arm64/1.0.215/Discord.Discord.Canary.arm64.installer.yaml create mode 100644 manifests/d/Discord/Discord/Canary/arm64/1.0.215/Discord.Discord.Canary.arm64.locale.en-US.yaml create mode 100644 manifests/d/Discord/Discord/Canary/arm64/1.0.215/Discord.Discord.Canary.arm64.locale.zh-CN.yaml create mode 100644 manifests/d/Discord/Discord/Canary/arm64/1.0.215/Discord.Discord.Canary.arm64.yaml diff --git a/manifests/d/Discord/Discord/Canary/arm64/1.0.215/Discord.Discord.Canary.arm64.installer.yaml b/manifests/d/Discord/Discord/Canary/arm64/1.0.215/Discord.Discord.Canary.arm64.installer.yaml new file mode 100644 index 000000000000..69dee5114c3b --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/arm64/1.0.215/Discord.Discord.Canary.arm64.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: Discord.Discord.Canary.arm64 +PackageVersion: 1.0.215 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Protocols: +- discord +ProductCode: DiscordCanary +Installers: +- Architecture: arm64 + InstallerUrl: https://canary.dl2.discordapp.net/distro/app/canary/win/arm64/1.0.215/DiscordCanarySetup.exe + InstallerSha256: B0B00B9D292112EEE434984414657A3C7FE9835ADC50639B622927BE97CC7553 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/arm64/1.0.215/Discord.Discord.Canary.arm64.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/arm64/1.0.215/Discord.Discord.Canary.arm64.locale.en-US.yaml new file mode 100644 index 000000000000..4b4094492475 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/arm64/1.0.215/Discord.Discord.Canary.arm64.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: Discord.Discord.Canary.arm64 +PackageVersion: 1.0.215 +PackageLocale: en-US +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Canary (arm64) +PackageUrl: https://discord.com/download +License: Proprietary +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2026 Discord Inc. All rights reserved. +ShortDescription: Your Place to Talk and Hang Out +Description: |- + Discord is the easiest way to talk over voice, video, and text. + Talk, chat, hang out, and stay close with your friends and communities. +Moniker: discord-canary +Tags: +- chat +- community +- gaming +- hang-out +- talk +- video +- voice +- voice-chat +PurchaseUrl: https://discord.com/nitro +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/arm64/1.0.215/Discord.Discord.Canary.arm64.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/arm64/1.0.215/Discord.Discord.Canary.arm64.locale.zh-CN.yaml new file mode 100644 index 000000000000..6bbdb71ba3e8 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/arm64/1.0.215/Discord.Discord.Canary.arm64.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary.arm64 +PackageVersion: 1.0.215 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 玩耍聊天的地方 +Description: |- + Discord 是最简单易用的通讯工具,兼具语音、视频以及文字信息功能。 + 您可以聊聊天,拉拉家常,一起玩耍,与好友和社区保持紧密联系。 +Tags: +- 开黑 +- 游戏 +- 聊天 +- 语音 +- 语音聊天 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/arm64/1.0.215/Discord.Discord.Canary.arm64.yaml b/manifests/d/Discord/Discord/Canary/arm64/1.0.215/Discord.Discord.Canary.arm64.yaml new file mode 100644 index 000000000000..d79b73b1b355 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/arm64/1.0.215/Discord.Discord.Canary.arm64.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: Discord.Discord.Canary.arm64 +PackageVersion: 1.0.215 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From e9ee7bbdf0cf7815b2622b9469aebdb27e24f86b Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 09:54:19 +0800 Subject: [PATCH 153/162] New version: Posit.RStudio version 2026.01.2+418 (#353096) --- .../Posit.RStudio.installer.yaml | 43 +++++++++++++++++++ .../Posit.RStudio.locale.en-US.yaml | 32 ++++++++++++++ .../Posit.RStudio.locale.zh-CN.yaml | 18 ++++++++ .../RStudio/2026.01.2+418/Posit.RStudio.yaml | 8 ++++ 4 files changed, 101 insertions(+) create mode 100644 manifests/p/Posit/RStudio/2026.01.2+418/Posit.RStudio.installer.yaml create mode 100644 manifests/p/Posit/RStudio/2026.01.2+418/Posit.RStudio.locale.en-US.yaml create mode 100644 manifests/p/Posit/RStudio/2026.01.2+418/Posit.RStudio.locale.zh-CN.yaml create mode 100644 manifests/p/Posit/RStudio/2026.01.2+418/Posit.RStudio.yaml diff --git a/manifests/p/Posit/RStudio/2026.01.2+418/Posit.RStudio.installer.yaml b/manifests/p/Posit/RStudio/2026.01.2+418/Posit.RStudio.installer.yaml new file mode 100644 index 000000000000..f30b008c20d1 --- /dev/null +++ b/manifests/p/Posit/RStudio/2026.01.2+418/Posit.RStudio.installer.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Posit.RStudio +PackageVersion: 2026.01.2+418 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +FileExtensions: +- c +- cpp +- css +- h +- hpp +- js +- markdown +- md +- mdtxt +- qmd +- r +- rd +- rda +- rdata +- rdprsp +- rhtml +- rmarkdown +- rmd +- rnw +- rpres +- rproj +- tex +Dependencies: + PackageDependencies: + - PackageIdentifier: RProject.R + MinimumVersion: 3.3.0 +ProductCode: RStudio +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://download1.rstudio.org/electron/windows/RStudio-2026.01.2-418.exe + InstallerSha256: 7CF2C07079EBDAC14097CA25EF9F7E8243B07E7B0B3ECC82D8549E7EC95A8C4F +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/Posit/RStudio/2026.01.2+418/Posit.RStudio.locale.en-US.yaml b/manifests/p/Posit/RStudio/2026.01.2+418/Posit.RStudio.locale.en-US.yaml new file mode 100644 index 000000000000..eab6b0d45b04 --- /dev/null +++ b/manifests/p/Posit/RStudio/2026.01.2+418/Posit.RStudio.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: Posit.RStudio +PackageVersion: 2026.01.2+418 +PackageLocale: en-US +Publisher: Posit Software +PublisherUrl: https://posit.co/ +PublisherSupportUrl: https://posit.co/support/ +PrivacyUrl: https://posit.co/about/privacy-policy/ +Author: Posit Software, PBC +PackageName: RStudio +PackageUrl: https://posit.co/products/open-source/rstudio/ +License: AGPL-3.0 +LicenseUrl: https://github.com/rstudio/rstudio/blob/main/COPYING +Copyright: © 2009-2026 Posit Software, PBC +CopyrightUrl: https://posit.co/about/trademark-guidelines/ +ShortDescription: RStudio is an integrated development environment (IDE) for R. +Description: RStudio is an integrated development environment (IDE) for R. It includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management. +Moniker: rstudio +Tags: +- ide +- r +- rstats +- statistics +- stats +ReleaseNotesUrl: https://docs.posit.co/ide/news/ +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://docs.posit.co/ide/user/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/Posit/RStudio/2026.01.2+418/Posit.RStudio.locale.zh-CN.yaml b/manifests/p/Posit/RStudio/2026.01.2+418/Posit.RStudio.locale.zh-CN.yaml new file mode 100644 index 000000000000..cbe15e4af42b --- /dev/null +++ b/manifests/p/Posit/RStudio/2026.01.2+418/Posit.RStudio.locale.zh-CN.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: Posit.RStudio +PackageVersion: 2026.01.2+418 +PackageLocale: zh-CN +ShortDescription: RStudio 是 R 的集成开发环境(IDE)。 +Description: RStudio 是 R 的集成开发环境(IDE),包含一个控制台、支持直接执行代码的语法高亮编辑器,以及用于绘图、历史、调试和工作区管理的工具。 +Tags: +- ide +- r +- r语言 +- 统计 +Documentations: +- DocumentLabel: 用户手册 + DocumentUrl: https://docs.posit.co/ide/user/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/p/Posit/RStudio/2026.01.2+418/Posit.RStudio.yaml b/manifests/p/Posit/RStudio/2026.01.2+418/Posit.RStudio.yaml new file mode 100644 index 000000000000..970693aa8a0e --- /dev/null +++ b/manifests/p/Posit/RStudio/2026.01.2+418/Posit.RStudio.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: Posit.RStudio +PackageVersion: 2026.01.2+418 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 214be11d8880572fcae3438c82e157e4d3e85097 Mon Sep 17 00:00:00 2001 From: Dvd-Znf Date: Sat, 28 Mar 2026 02:55:12 +0100 Subject: [PATCH 154/162] New version: mostlygeek.llama-swap version 199 (#353100) --- .../199/mostlygeek.llama-swap.installer.yaml | 17 +++++++++ .../mostlygeek.llama-swap.locale.en-US.yaml | 37 +++++++++++++++++++ .../llama-swap/199/mostlygeek.llama-swap.yaml | 8 ++++ 3 files changed, 62 insertions(+) create mode 100644 manifests/m/mostlygeek/llama-swap/199/mostlygeek.llama-swap.installer.yaml create mode 100644 manifests/m/mostlygeek/llama-swap/199/mostlygeek.llama-swap.locale.en-US.yaml create mode 100644 manifests/m/mostlygeek/llama-swap/199/mostlygeek.llama-swap.yaml diff --git a/manifests/m/mostlygeek/llama-swap/199/mostlygeek.llama-swap.installer.yaml b/manifests/m/mostlygeek/llama-swap/199/mostlygeek.llama-swap.installer.yaml new file mode 100644 index 000000000000..567ea6dbe810 --- /dev/null +++ b/manifests/m/mostlygeek/llama-swap/199/mostlygeek.llama-swap.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: mostlygeek.llama-swap +PackageVersion: '199' +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: llama-swap.exe +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2026-03-25 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/mostlygeek/llama-swap/releases/download/v199/llama-swap_199_windows_amd64.zip + InstallerSha256: B2A3E72D30AC1EA43E33F6274758052C7A694FBEFD7AF934EF85A86187536A6A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/mostlygeek/llama-swap/199/mostlygeek.llama-swap.locale.en-US.yaml b/manifests/m/mostlygeek/llama-swap/199/mostlygeek.llama-swap.locale.en-US.yaml new file mode 100644 index 000000000000..178af8994dc3 --- /dev/null +++ b/manifests/m/mostlygeek/llama-swap/199/mostlygeek.llama-swap.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: mostlygeek.llama-swap +PackageVersion: '199' +PackageLocale: en-US +Publisher: mostlygeek +PublisherUrl: https://mostlygeek.com/ +PublisherSupportUrl: https://github.com/mostlygeek/llama-swap/issues +PackageName: llama-swap +PackageUrl: https://github.com/mostlygeek/llama-swap +License: MIT +LicenseUrl: https://github.com/mostlygeek/llama-swap/blob/HEAD/LICENSE.md +Copyright: Copyright (c) 2024 Benson Wong +ShortDescription: Model swapping for llama.cpp +Description: llama-swap is a light weight, transparent proxy server that provides automatic model swapping to llama.cpp's server. +Moniker: llama-swap +Tags: +- golang +- llama +- llamacpp +- localllama +- localllm +- openai +- openai-api +- vllm +ReleaseNotes: |- + Changelog + - 8fabc75 docker/unified: vulkan build fixes (#600) + - e5e7391 .github,docker/unified: include vulkan build (#599) + - 2c282dc .github,docker/unified: improve caching and fix bugs (#598) + - 916d13f .github/workflows,docker/unified: add cuda based unified container (#597) + - a3725e7 Update go.mod to 1.26.1 (#593) + - 15bd55d proxy, ui-svelte: add /sdapi/v1 endpoint support (#587) +ReleaseNotesUrl: https://github.com/mostlygeek/llama-swap/releases/tag/v199 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/mostlygeek/llama-swap/199/mostlygeek.llama-swap.yaml b/manifests/m/mostlygeek/llama-swap/199/mostlygeek.llama-swap.yaml new file mode 100644 index 000000000000..1bac92c4e7a3 --- /dev/null +++ b/manifests/m/mostlygeek/llama-swap/199/mostlygeek.llama-swap.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: mostlygeek.llama-swap +PackageVersion: '199' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 47488bb4c21c5a06f30a6154634965b69e02b244 Mon Sep 17 00:00:00 2001 From: Dvd-Znf Date: Sat, 28 Mar 2026 02:56:07 +0100 Subject: [PATCH 155/162] New version: mikf.gallery-dl.Nightly version 2026.03.27 (#353101) --- .../mikf.gallery-dl.Nightly.installer.yaml | 12 ++++++------ .../mikf.gallery-dl.Nightly.locale.en-US.yaml | 6 +++--- .../mikf.gallery-dl.Nightly.yaml | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) rename manifests/m/mikf/gallery-dl/Nightly/{2026.03.03 => 2026.03.27}/mikf.gallery-dl.Nightly.installer.yaml (67%) rename manifests/m/mikf/gallery-dl/Nightly/{2026.03.03 => 2026.03.27}/mikf.gallery-dl.Nightly.locale.en-US.yaml (90%) rename manifests/m/mikf/gallery-dl/Nightly/{2026.03.03 => 2026.03.27}/mikf.gallery-dl.Nightly.yaml (86%) diff --git a/manifests/m/mikf/gallery-dl/Nightly/2026.03.03/mikf.gallery-dl.Nightly.installer.yaml b/manifests/m/mikf/gallery-dl/Nightly/2026.03.27/mikf.gallery-dl.Nightly.installer.yaml similarity index 67% rename from manifests/m/mikf/gallery-dl/Nightly/2026.03.03/mikf.gallery-dl.Nightly.installer.yaml rename to manifests/m/mikf/gallery-dl/Nightly/2026.03.27/mikf.gallery-dl.Nightly.installer.yaml index f4613562b3b3..0e902d441c79 100644 --- a/manifests/m/mikf/gallery-dl/Nightly/2026.03.03/mikf.gallery-dl.Nightly.installer.yaml +++ b/manifests/m/mikf/gallery-dl/Nightly/2026.03.27/mikf.gallery-dl.Nightly.installer.yaml @@ -2,24 +2,24 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: mikf.gallery-dl.Nightly -PackageVersion: 2026.03.03 +PackageVersion: 2026.03.27 InstallerType: portable InstallModes: - interactive - silent - silentWithProgress UpgradeBehavior: install -ReleaseDate: 2026-03-03 +ReleaseDate: 2026-03-27 Installers: - Architecture: x86 - InstallerUrl: https://github.com/gdl-org/builds/releases/download/2026.03.03/gallery-dl_windows_x86.exe - InstallerSha256: A6C9F87CAE6D361108EB2782F408728E282FA0910C0EC99A44665C163772C467 + InstallerUrl: https://github.com/gdl-org/builds/releases/download/2026.03.27/gallery-dl_windows_x86.exe + InstallerSha256: 96154E35B399CADF7A627B8F4CE2BFD29791E44E6873FC7443BA8B11A279CE79 Dependencies: PackageDependencies: - PackageIdentifier: Microsoft.VCRedist.2015+.x86 - Architecture: x64 - InstallerUrl: https://github.com/gdl-org/builds/releases/download/2026.03.03/gallery-dl_windows.exe - InstallerSha256: 8183B362589D90B4607A9A6FB451BC9AFB26355E41FE1163EA7ACE66993ACC47 + InstallerUrl: https://github.com/gdl-org/builds/releases/download/2026.03.27/gallery-dl_windows.exe + InstallerSha256: CFAD19CAA642AFE74EFE57C7E931D718A4457E75BF3CAEED462F5403C7768226 Dependencies: PackageDependencies: - PackageIdentifier: Microsoft.VCRedist.2015+.x64 diff --git a/manifests/m/mikf/gallery-dl/Nightly/2026.03.03/mikf.gallery-dl.Nightly.locale.en-US.yaml b/manifests/m/mikf/gallery-dl/Nightly/2026.03.27/mikf.gallery-dl.Nightly.locale.en-US.yaml similarity index 90% rename from manifests/m/mikf/gallery-dl/Nightly/2026.03.03/mikf.gallery-dl.Nightly.locale.en-US.yaml rename to manifests/m/mikf/gallery-dl/Nightly/2026.03.27/mikf.gallery-dl.Nightly.locale.en-US.yaml index 95ad3eea716d..ab235ceaae17 100644 --- a/manifests/m/mikf/gallery-dl/Nightly/2026.03.03/mikf.gallery-dl.Nightly.locale.en-US.yaml +++ b/manifests/m/mikf/gallery-dl/Nightly/2026.03.27/mikf.gallery-dl.Nightly.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: mikf.gallery-dl.Nightly -PackageVersion: 2026.03.03 +PackageVersion: 2026.03.27 PackageLocale: en-US Publisher: Mike Fährmann PublisherUrl: https://github.com/mikf @@ -27,7 +27,7 @@ Tags: - pixiv - tumblr - twitter -ReleaseNotes: mikf/gallery-dl@7e07528 -ReleaseNotesUrl: https://github.com/gdl-org/builds/releases/tag/2026.03.03 +ReleaseNotes: mikf/gallery-dl@ae7a315 +ReleaseNotesUrl: https://github.com/gdl-org/builds/releases/tag/2026.03.27 ManifestType: defaultLocale ManifestVersion: 1.12.0 diff --git a/manifests/m/mikf/gallery-dl/Nightly/2026.03.03/mikf.gallery-dl.Nightly.yaml b/manifests/m/mikf/gallery-dl/Nightly/2026.03.27/mikf.gallery-dl.Nightly.yaml similarity index 86% rename from manifests/m/mikf/gallery-dl/Nightly/2026.03.03/mikf.gallery-dl.Nightly.yaml rename to manifests/m/mikf/gallery-dl/Nightly/2026.03.27/mikf.gallery-dl.Nightly.yaml index 17184cf9755f..f7c9c4bb13b0 100644 --- a/manifests/m/mikf/gallery-dl/Nightly/2026.03.03/mikf.gallery-dl.Nightly.yaml +++ b/manifests/m/mikf/gallery-dl/Nightly/2026.03.27/mikf.gallery-dl.Nightly.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: mikf.gallery-dl.Nightly -PackageVersion: 2026.03.03 +PackageVersion: 2026.03.27 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 From adbea55002774147b40bf3e6c7a90508157f0d2c Mon Sep 17 00:00:00 2001 From: Christian Brabandt Date: Sat, 28 Mar 2026 02:57:02 +0100 Subject: [PATCH 156/162] New version: vim.vim.nightly version 9.2.0261 (#353102) --- .../9.2.0261/vim.vim.nightly.installer.yaml | 34 ++++++++++ .../vim.vim.nightly.locale.en-US.yaml | 65 +++++++++++++++++++ .../vim/nightly/9.2.0261/vim.vim.nightly.yaml | 8 +++ 3 files changed, 107 insertions(+) create mode 100644 manifests/v/vim/vim/nightly/9.2.0261/vim.vim.nightly.installer.yaml create mode 100644 manifests/v/vim/vim/nightly/9.2.0261/vim.vim.nightly.locale.en-US.yaml create mode 100644 manifests/v/vim/vim/nightly/9.2.0261/vim.vim.nightly.yaml diff --git a/manifests/v/vim/vim/nightly/9.2.0261/vim.vim.nightly.installer.yaml b/manifests/v/vim/vim/nightly/9.2.0261/vim.vim.nightly.installer.yaml new file mode 100644 index 000000000000..de676efe0d79 --- /dev/null +++ b/manifests/v/vim/vim/nightly/9.2.0261/vim.vim.nightly.installer.yaml @@ -0,0 +1,34 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: vim.vim.nightly +PackageVersion: 9.2.0261 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Commands: +- diff +- gvim +- tee +- vim +- xxd +ProductCode: Vim 9.2 +ReleaseDate: 2026-03-27 +ElevationRequirement: elevationRequired +InstallationMetadata: + DefaultInstallLocation: '%VIM%' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/vim/vim-win32-installer/releases/download/v9.2.0261/gvim_9.2.0261_x86.exe + InstallerSha256: 6CD5BDA89CE97AB4BC55C43B91DBCC71C3CD51813468D07AF3E8560BD522C67B +- Architecture: x64 + InstallerUrl: https://github.com/vim/vim-win32-installer/releases/download/v9.2.0261/gvim_9.2.0261_x64.exe + InstallerSha256: FA0E6EA5DA674E3142BCCE3AD63C993445125DF15C46C6F05A0B75E29272D5C8 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/v/vim/vim/nightly/9.2.0261/vim.vim.nightly.locale.en-US.yaml b/manifests/v/vim/vim/nightly/9.2.0261/vim.vim.nightly.locale.en-US.yaml new file mode 100644 index 000000000000..956dc2dfe00b --- /dev/null +++ b/manifests/v/vim/vim/nightly/9.2.0261/vim.vim.nightly.locale.en-US.yaml @@ -0,0 +1,65 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: vim.vim.nightly +PackageVersion: 9.2.0261 +PackageLocale: en-US +Publisher: Bram Moolenaar et al. +PublisherUrl: https://github.com/vim/vim-win32-installer +PublisherSupportUrl: https://github.com/vim/vim-win32-installer/issues +Author: Bram Moolenaar et al. +PackageName: Vim +PackageUrl: https://www.vim.org/ +License: Copyright (C) 1991-2020 Bram Moolenaar [Bram@vim.org] - Charityware / GNU GPL compatible +LicenseUrl: https://github.com/vim/vim-win32-installer#license--copyright +Copyright: Copyright (C) 1991-2020 Bram Moolenaar [Bram@vim.org] +CopyrightUrl: https://github.com/vim/vim-win32-installer#license--copyright +ShortDescription: Vim is a highly configurable text editor built to make creating and changing any kind of text very efficient +Moniker: vim +Tags: +- code-editor +- g-vim +- gvim +- text-editing +- text-editor +- tool +- utility +- vi +ReleaseNotes: |- + v9.2.0261 + Nightly Vim Windows build snapshots (more information). + If you do not know what to use, use the 32bit installer (use the signed one, if available). + Signed releases will occasionally be provided on a best effort approach. + Changes: + - 9.2.0262: invalid lnum when pasting text copied blockwise + - 9.2.0261: terminal: redraws are slow + Files: + 🔓 Unsigned Files: + - gvim_9.2.0261_x86.exe + 32-bit installer (If you don't know what to use, use this one) + - gvim_9.2.0261_x64.exe + 64-bit installer + - gvim_9.2.0261_arm64.exe + ARM 64-bit installer + - gvim_9.2.0261_x86.zip + 32-bit zip archive + - gvim_9.2.0261_x64.zip + 64-bit zip archive + - gvim_9.2.0261_arm64.zip + ARM 64-bit zip archive + - gvim_9.2.0261_x86_pdb.zip + pdb files for debugging the corresponding 32-bit executable + - gvim_9.2.0261_x64_pdb.zip + pdb files for debugging the corresponding 64-bit executable + Interface Information + - Strawberry Perl 5.38 + - LuaBinaries 5.4 + - Python 2.7 + - Python3 3.8 or later + - Racket 8.7 (BC) + - RubyInstaller 3.4 + - libsodium 1.0.19 + See the README for detail. +ReleaseNotesUrl: https://github.com/vim/vim-win32-installer/releases/tag/v9.2.0261 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/v/vim/vim/nightly/9.2.0261/vim.vim.nightly.yaml b/manifests/v/vim/vim/nightly/9.2.0261/vim.vim.nightly.yaml new file mode 100644 index 000000000000..7aae6a318c7d --- /dev/null +++ b/manifests/v/vim/vim/nightly/9.2.0261/vim.vim.nightly.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: vim.vim.nightly +PackageVersion: 9.2.0261 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From b955f41bb72401073b1e65a0845b3e13757b2bdc Mon Sep 17 00:00:00 2001 From: spectopo <175387142+spectopo@users.noreply.github.com> Date: Sat, 28 Mar 2026 10:28:19 +0800 Subject: [PATCH 157/162] Update: KDE.Blinken version 26.07.70 (762) (#352406) --- .../k/KDE/Blinken/26.07.70/KDE.Blinken.installer.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/manifests/k/KDE/Blinken/26.07.70/KDE.Blinken.installer.yaml b/manifests/k/KDE/Blinken/26.07.70/KDE.Blinken.installer.yaml index d96bc747b0df..cbcd9775ecf8 100644 --- a/manifests/k/KDE/Blinken/26.07.70/KDE.Blinken.installer.yaml +++ b/manifests/k/KDE/Blinken/26.07.70/KDE.Blinken.installer.yaml @@ -9,14 +9,14 @@ ProductCode: Blinken Installers: - Architecture: x64 Scope: user - InstallerUrl: https://cdn.kde.org/ci-builds/education/blinken/master/windows/blinken-master-757-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 92A3F98FC489F90A2842BF55D46D8CDFD6DD14078808A56D6B72E9AE59FD1D6A + InstallerUrl: https://cdn.kde.org/ci-builds/education/blinken/master/windows/blinken-master-762-windows-cl-msvc2022-x86_64.exe + InstallerSha256: CDB78879818749D2F0699FB0BFDD70B8D71C1CA3DDC53BAE42D6DA941A9F8E0E InstallerSwitches: Custom: /CurrentUser - Architecture: x64 Scope: machine - InstallerUrl: https://cdn.kde.org/ci-builds/education/blinken/master/windows/blinken-master-757-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 92A3F98FC489F90A2842BF55D46D8CDFD6DD14078808A56D6B72E9AE59FD1D6A + InstallerUrl: https://cdn.kde.org/ci-builds/education/blinken/master/windows/blinken-master-762-windows-cl-msvc2022-x86_64.exe + InstallerSha256: CDB78879818749D2F0699FB0BFDD70B8D71C1CA3DDC53BAE42D6DA941A9F8E0E InstallerSwitches: Custom: /AllUsers ManifestType: installer From fcea54b5795248552c5d1da2d9c203b0c3fd69b6 Mon Sep 17 00:00:00 2001 From: Tom Plant Date: Sat, 28 Mar 2026 13:29:16 +1100 Subject: [PATCH 158/162] New version: EQAditu.AdvancedCombatTracker version 3.8.5.288 (#352929) --- ...Aditu.AdvancedCombatTracker.installer.yaml | 29 +++++++++++++++++ ...tu.AdvancedCombatTracker.locale.en-US.yaml | 31 +++++++++++++++++++ .../EQAditu.AdvancedCombatTracker.yaml | 8 +++++ 3 files changed, 68 insertions(+) create mode 100644 manifests/e/EQAditu/AdvancedCombatTracker/3.8.5.288/EQAditu.AdvancedCombatTracker.installer.yaml create mode 100644 manifests/e/EQAditu/AdvancedCombatTracker/3.8.5.288/EQAditu.AdvancedCombatTracker.locale.en-US.yaml create mode 100644 manifests/e/EQAditu/AdvancedCombatTracker/3.8.5.288/EQAditu.AdvancedCombatTracker.yaml diff --git a/manifests/e/EQAditu/AdvancedCombatTracker/3.8.5.288/EQAditu.AdvancedCombatTracker.installer.yaml b/manifests/e/EQAditu/AdvancedCombatTracker/3.8.5.288/EQAditu.AdvancedCombatTracker.installer.yaml new file mode 100644 index 000000000000..8813fd555765 --- /dev/null +++ b/manifests/e/EQAditu/AdvancedCombatTracker/3.8.5.288/EQAditu.AdvancedCombatTracker.installer.yaml @@ -0,0 +1,29 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: EQAditu.AdvancedCombatTracker +PackageVersion: 3.8.5.288 +ProductCode: Advanced Combat Tracker +ReleaseDate: 2026-02-15 +AppsAndFeaturesEntries: +- DisplayName: Advanced Combat Tracker (remove only) + DisplayVersion: 3.8.5.288 + ProductCode: Advanced Combat Tracker +Installers: +- Architecture: x86 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Advanced Combat Tracker.exe + InstallerUrl: https://github.com/EQAditu/AdvancedCombatTracker/releases/download/3.8.5.288/ACTv3.zip + InstallerSha256: 1A0CA91375D79DAF3D2CBBB2920C90DBC40F3BE2421CDC6765D93E27BF25E4B0 +- InstallerLocale: en-US + Architecture: x86 + InstallerType: nullsoft + Scope: machine + InstallerUrl: https://github.com/EQAditu/AdvancedCombatTracker/releases/download/3.8.5.288/ACTv3-Setup.exe + InstallerSha256: 84014544BC8838D7C87640555678C9F38E2F1BBF57960CA4A429ADA03BFC0F42 + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\Advanced Combat Tracker' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/e/EQAditu/AdvancedCombatTracker/3.8.5.288/EQAditu.AdvancedCombatTracker.locale.en-US.yaml b/manifests/e/EQAditu/AdvancedCombatTracker/3.8.5.288/EQAditu.AdvancedCombatTracker.locale.en-US.yaml new file mode 100644 index 000000000000..c49e246651fe --- /dev/null +++ b/manifests/e/EQAditu/AdvancedCombatTracker/3.8.5.288/EQAditu.AdvancedCombatTracker.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: EQAditu.AdvancedCombatTracker +PackageVersion: 3.8.5.288 +PackageLocale: en-US +Publisher: EQAditu +PublisherUrl: https://advancedcombattracker.com/ +PublisherSupportUrl: https://forums.advancedcombattracker.com/ +PrivacyUrl: https://advancedcombattracker.com/privacy.php +PackageName: Advanced Combat Tracker +PackageUrl: https://advancedcombattracker.com/ +License: Proprietary +Copyright: Copyright (C) 2022 EQAditu +ShortDescription: A real-time MMO log parser. +Tags: +- act +- advanced-combat-tracker +- ffxiv-act +- mmo +- parser +ReleaseNotes: |- + Downloads + Added a workaround for 409 download errors for affected users of certain VPNs or ISPs. If you are affected and cannot temporarily use a different internet connection for ACT, use the setup from GitHub to update ACT. + Theming/Colors + Fixed the search bar in the Options tab to properly apply font coloring to matching settings. -- Fixed a bug that would fail to apply some settings for dark theme presets when the user was in a locale where commas and decimal points are swapped. This only affects Luminance Offset and Saturation Offset when the preset buttons are pressed. + Miscellaneous + Fresh install defaults use FFXIV-centric settings; the Startup Wizard will always/still apply game appropriate settings when directed. Fixed a possible crash when the config is missing and ACT attempts to direct the user to use config backups. Added some debug info for the window out of bounds warning. +ReleaseNotesUrl: https://github.com/EQAditu/AdvancedCombatTracker/releases/tag/3.8.5.288 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/e/EQAditu/AdvancedCombatTracker/3.8.5.288/EQAditu.AdvancedCombatTracker.yaml b/manifests/e/EQAditu/AdvancedCombatTracker/3.8.5.288/EQAditu.AdvancedCombatTracker.yaml new file mode 100644 index 000000000000..6a7f37d97594 --- /dev/null +++ b/manifests/e/EQAditu/AdvancedCombatTracker/3.8.5.288/EQAditu.AdvancedCombatTracker.yaml @@ -0,0 +1,8 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: EQAditu.AdvancedCombatTracker +PackageVersion: 3.8.5.288 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 35457a11319bebbbb0b1648afd52ee0c2456f19a Mon Sep 17 00:00:00 2001 From: PckgrBot <119904223+PckgrBot@users.noreply.github.com> Date: Sat, 28 Mar 2026 12:30:09 +1000 Subject: [PATCH 159/162] New version: Dropbox.Dropbox version 246.3.3482 (#353107) --- .../246.3.3482/Dropbox.Dropbox.installer.yaml | 20 +++++++++++++ .../Dropbox.Dropbox.locale.en-US.yaml | 28 +++++++++++++++++++ .../Dropbox/246.3.3482/Dropbox.Dropbox.yaml | 8 ++++++ 3 files changed, 56 insertions(+) create mode 100644 manifests/d/Dropbox/Dropbox/246.3.3482/Dropbox.Dropbox.installer.yaml create mode 100644 manifests/d/Dropbox/Dropbox/246.3.3482/Dropbox.Dropbox.locale.en-US.yaml create mode 100644 manifests/d/Dropbox/Dropbox/246.3.3482/Dropbox.Dropbox.yaml diff --git a/manifests/d/Dropbox/Dropbox/246.3.3482/Dropbox.Dropbox.installer.yaml b/manifests/d/Dropbox/Dropbox/246.3.3482/Dropbox.Dropbox.installer.yaml new file mode 100644 index 000000000000..9d17a1b5d9ac --- /dev/null +++ b/manifests/d/Dropbox/Dropbox/246.3.3482/Dropbox.Dropbox.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Dropbox.Dropbox +PackageVersion: 246.3.3482 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20246.3.3482%20Offline%20Installer.x86.exe + InstallerSha256: E6C83B8116E34067F34E78D8830B6E6CB184BF4CE04D378652BCC14D2DE08202 +- Architecture: x64 + InstallerUrl: https://edge.dropboxstatic.com/dbx-releng/client/Dropbox%20246.3.3482%20Offline%20Installer.x64.exe + InstallerSha256: C6231004957D3A1DC6959B1DD6DA9A9F6DBE6A657CB8524ED5CFCA1FCCE63DB0 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/Dropbox/Dropbox/246.3.3482/Dropbox.Dropbox.locale.en-US.yaml b/manifests/d/Dropbox/Dropbox/246.3.3482/Dropbox.Dropbox.locale.en-US.yaml new file mode 100644 index 000000000000..c0661e5c7383 --- /dev/null +++ b/manifests/d/Dropbox/Dropbox/246.3.3482/Dropbox.Dropbox.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: Dropbox.Dropbox +PackageVersion: 246.3.3482 +PackageLocale: en-US +Publisher: Dropbox, Inc. +PublisherUrl: https://www.dropbox.com/ +PublisherSupportUrl: https://help.dropbox.com/ +PrivacyUrl: https://www.dropbox.com/privacy +Author: Dropbox, Inc. +PackageName: Dropbox +PackageUrl: https://www.dropbox.com/ +License: Combined GPLv2 and proprietary software +LicenseUrl: https://www.dropbox.com/terms +Copyright: Copyright (c) Dropbox, Inc. +CopyrightUrl: https://www.dropbox.com/terms +ShortDescription: Organize all your team's content, tune out distractions, and get everyone coordinated with the world's first smart workspace. +Moniker: dropbox +Tags: +- cloud +- dropbox +- files +- online +- pictures +- storage +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Dropbox/Dropbox/246.3.3482/Dropbox.Dropbox.yaml b/manifests/d/Dropbox/Dropbox/246.3.3482/Dropbox.Dropbox.yaml new file mode 100644 index 000000000000..fcb6bc579046 --- /dev/null +++ b/manifests/d/Dropbox/Dropbox/246.3.3482/Dropbox.Dropbox.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: Dropbox.Dropbox +PackageVersion: 246.3.3482 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 From 35d3ce1329f1184e4014998427b968290ff9aeb7 Mon Sep 17 00:00:00 2001 From: KarbitsCode <107671693+KarbitsCode@users.noreply.github.com> Date: Sat, 28 Mar 2026 10:31:04 +0800 Subject: [PATCH 160/162] Modify: IObit.SmartDefrag version 11.2.0.472 (#353109) --- .../SmartDefrag/11.2.0.472/IObit.SmartDefrag.installer.yaml | 6 +++--- .../11.2.0.472/IObit.SmartDefrag.locale.en-US.yaml | 2 +- .../i/IObit/SmartDefrag/11.2.0.472/IObit.SmartDefrag.yaml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/manifests/i/IObit/SmartDefrag/11.2.0.472/IObit.SmartDefrag.installer.yaml b/manifests/i/IObit/SmartDefrag/11.2.0.472/IObit.SmartDefrag.installer.yaml index 9542434b9210..2f17c36e85e8 100644 --- a/manifests/i/IObit/SmartDefrag/11.2.0.472/IObit.SmartDefrag.installer.yaml +++ b/manifests/i/IObit/SmartDefrag/11.2.0.472/IObit.SmartDefrag.installer.yaml @@ -1,4 +1,4 @@ -# Created using wingetcreate 1.10.3.0 +# Created using wingetcreate 1.12.8.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: IObit.SmartDefrag @@ -24,7 +24,7 @@ ElevationRequirement: elevatesSelf Installers: - Architecture: x86 InstallerUrl: https://cdn.iobit.com/dl/smart-defrag-setup.exe - InstallerSha256: C0F4B55B51642365E87A774EE3F4586B49FE3E71CDEDEFFB23DF8A1F5A64ED3D + InstallerSha256: 32A36FCE42830C552542053BC3D8099BD8354C8CBE79C3713A4C49F366A23B19 ManifestType: installer ManifestVersion: 1.10.0 -ReleaseDate: 2026-01-06 +ReleaseDate: 2026-03-27 diff --git a/manifests/i/IObit/SmartDefrag/11.2.0.472/IObit.SmartDefrag.locale.en-US.yaml b/manifests/i/IObit/SmartDefrag/11.2.0.472/IObit.SmartDefrag.locale.en-US.yaml index 1776a98cd11c..807ff59bb3e8 100644 --- a/manifests/i/IObit/SmartDefrag/11.2.0.472/IObit.SmartDefrag.locale.en-US.yaml +++ b/manifests/i/IObit/SmartDefrag/11.2.0.472/IObit.SmartDefrag.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created using wingetcreate 1.10.3.0 +# Created using wingetcreate 1.12.8.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: IObit.SmartDefrag diff --git a/manifests/i/IObit/SmartDefrag/11.2.0.472/IObit.SmartDefrag.yaml b/manifests/i/IObit/SmartDefrag/11.2.0.472/IObit.SmartDefrag.yaml index 8bf5e2922178..e82540714624 100644 --- a/manifests/i/IObit/SmartDefrag/11.2.0.472/IObit.SmartDefrag.yaml +++ b/manifests/i/IObit/SmartDefrag/11.2.0.472/IObit.SmartDefrag.yaml @@ -1,4 +1,4 @@ -# Created using wingetcreate 1.10.3.0 +# Created using wingetcreate 1.12.8.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: IObit.SmartDefrag From f17766c291bd83ca5c102ba77138e05f42b4f473 Mon Sep 17 00:00:00 2001 From: Chandan Bhagat Date: Sat, 28 Mar 2026 02:31:57 +0000 Subject: [PATCH 161/162] New version: thechandanbhagat.alter version 0.8.0 (#353110) Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .../thechandanbhagat.alter.installer.yaml | 23 +++++++++++ .../thechandanbhagat.alter.locale.en-US.yaml | 41 +++++++++++++++++++ .../alter/0.8.0/thechandanbhagat.alter.yaml | 8 ++++ 3 files changed, 72 insertions(+) create mode 100644 manifests/t/thechandanbhagat/alter/0.8.0/thechandanbhagat.alter.installer.yaml create mode 100644 manifests/t/thechandanbhagat/alter/0.8.0/thechandanbhagat.alter.locale.en-US.yaml create mode 100644 manifests/t/thechandanbhagat/alter/0.8.0/thechandanbhagat.alter.yaml diff --git a/manifests/t/thechandanbhagat/alter/0.8.0/thechandanbhagat.alter.installer.yaml b/manifests/t/thechandanbhagat/alter/0.8.0/thechandanbhagat.alter.installer.yaml new file mode 100644 index 000000000000..7ba286e77da0 --- /dev/null +++ b/manifests/t/thechandanbhagat/alter/0.8.0/thechandanbhagat.alter.installer.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: thechandanbhagat.alter +PackageVersion: 0.8.0 +MinimumOSVersion: 10.0.17763.0 +InstallerType: inno +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- + SilentWithProgress: /SILENT /SUPPRESSMSGBOXES /NORESTART /SP- +Commands: +- alter +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/thechandanbhagat/alter-pm/releases/download/v0.8.0/alter-0.8.0-windows-x64-setup.exe + InstallerSha256: FAF4F1F8420F778DE4086C869C6A6BE55E0736937D6148998A9DB183900C6D18 +ReleaseDate: 2026-03-24 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/t/thechandanbhagat/alter/0.8.0/thechandanbhagat.alter.locale.en-US.yaml b/manifests/t/thechandanbhagat/alter/0.8.0/thechandanbhagat.alter.locale.en-US.yaml new file mode 100644 index 000000000000..ce3e3013b158 --- /dev/null +++ b/manifests/t/thechandanbhagat/alter/0.8.0/thechandanbhagat.alter.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: thechandanbhagat.alter +PackageVersion: 0.8.0 +PackageLocale: en-US +Publisher: thechandanbhagat +PublisherUrl: https://github.com/thechandanbhagat +PublisherSupportUrl: https://github.com/thechandanbhagat/alter-pm/issues +PackageName: alter +PackageUrl: https://github.com/thechandanbhagat/alter-pm +License: MIT +LicenseUrl: https://github.com/thechandanbhagat/alter-pm/blob/main/LICENSE +ShortDescription: A process manager for your developers — run and manage any application +Description: |- + alter is a single-binary process manager inspired by PM2, built for Windows-first developers. + Run and manage any application — Python, Node.js, Go, Rust, .NET, PHP — from a single CLI with: + - Auto-restart with exponential backoff on crash + - Watch mode (restart on file changes) + - Namespaces for grouping and bulk-controlling processes + - Live log streaming in terminal and browser + - Real-time web dashboard at http://localhost:2999/ + - Notifications via Slack, Discord, Microsoft Teams, and webhook + - State persistence (save/restore across reboots) + - Ecosystem config via TOML or JSON + - Full REST API + - No console window popups on Windows (CREATE_NO_WINDOW) +Moniker: alter +Tags: +- process-manager +- pm2 +- cli +- rust +- daemon +- devtools +ReleaseNotesUrl: https://github.com/thechandanbhagat/alter-pm/releases/tag/v0.8.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/thechandanbhagat/alter-pm/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/t/thechandanbhagat/alter/0.8.0/thechandanbhagat.alter.yaml b/manifests/t/thechandanbhagat/alter/0.8.0/thechandanbhagat.alter.yaml new file mode 100644 index 000000000000..7dc5dc50f0ae --- /dev/null +++ b/manifests/t/thechandanbhagat/alter/0.8.0/thechandanbhagat.alter.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: thechandanbhagat.alter +PackageVersion: 0.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 From 7c3a9aea5559c14538e5f9f48dc1093ca6ca918a Mon Sep 17 00:00:00 2001 From: KarbitsCode <107671693+KarbitsCode@users.noreply.github.com> Date: Sat, 28 Mar 2026 10:32:50 +0800 Subject: [PATCH 162/162] VovSoft.ClipboardReader version 1.4.0.0 (#353115) --- .../VovSoft.ClipboardReader.installer.yaml | 12 ++++++------ .../VovSoft.ClipboardReader.locale.en-US.yaml | 8 ++++---- .../VovSoft.ClipboardReader.yaml | 8 ++++---- 3 files changed, 14 insertions(+), 14 deletions(-) rename manifests/v/VovSoft/ClipboardReader/{1.3.0.0 => 1.4.0.0}/VovSoft.ClipboardReader.installer.yaml (70%) rename manifests/v/VovSoft/ClipboardReader/{1.3.0.0 => 1.4.0.0}/VovSoft.ClipboardReader.locale.en-US.yaml (92%) rename manifests/v/VovSoft/ClipboardReader/{1.3.0.0 => 1.4.0.0}/VovSoft.ClipboardReader.yaml (55%) diff --git a/manifests/v/VovSoft/ClipboardReader/1.3.0.0/VovSoft.ClipboardReader.installer.yaml b/manifests/v/VovSoft/ClipboardReader/1.4.0.0/VovSoft.ClipboardReader.installer.yaml similarity index 70% rename from manifests/v/VovSoft/ClipboardReader/1.3.0.0/VovSoft.ClipboardReader.installer.yaml rename to manifests/v/VovSoft/ClipboardReader/1.4.0.0/VovSoft.ClipboardReader.installer.yaml index a961224f3623..268aa42a2555 100644 --- a/manifests/v/VovSoft/ClipboardReader/1.3.0.0/VovSoft.ClipboardReader.installer.yaml +++ b/manifests/v/VovSoft/ClipboardReader/1.4.0.0/VovSoft.ClipboardReader.installer.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: VovSoft.ClipboardReader -PackageVersion: 1.3.0.0 +PackageVersion: 1.4.0.0 InstallerLocale: en-US InstallerType: inno Scope: machine @@ -20,7 +20,7 @@ InstallationMetadata: Installers: - Architecture: x86 InstallerUrl: https://files.vovsoft.com/clipboard-reader.exe - InstallerSha256: AB6999EC82F0919FD8DBAE9356B292CFD794483403A4B0D9C3D81C2C3EA56656 + InstallerSha256: B62008D00EA9DE3442E650D8298A0433802E5DC83646EE46781DE023D15376E5 ManifestType: installer -ManifestVersion: 1.10.0 -ReleaseDate: 2025-02-21 +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-27 diff --git a/manifests/v/VovSoft/ClipboardReader/1.3.0.0/VovSoft.ClipboardReader.locale.en-US.yaml b/manifests/v/VovSoft/ClipboardReader/1.4.0.0/VovSoft.ClipboardReader.locale.en-US.yaml similarity index 92% rename from manifests/v/VovSoft/ClipboardReader/1.3.0.0/VovSoft.ClipboardReader.locale.en-US.yaml rename to manifests/v/VovSoft/ClipboardReader/1.4.0.0/VovSoft.ClipboardReader.locale.en-US.yaml index af470bc3a1be..4c59ac57b150 100644 --- a/manifests/v/VovSoft/ClipboardReader/1.3.0.0/VovSoft.ClipboardReader.locale.en-US.yaml +++ b/manifests/v/VovSoft/ClipboardReader/1.4.0.0/VovSoft.ClipboardReader.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: VovSoft.ClipboardReader -PackageVersion: 1.3.0.0 +PackageVersion: 1.4.0.0 PackageLocale: en-US Publisher: VOVSOFT PublisherUrl: https://vovsoft.com/ @@ -33,4 +33,4 @@ Documentations: - DocumentLabel: Clipboard Reader Help DocumentUrl: https://vovsoft.com/help/clipboard-reader/ ManifestType: defaultLocale -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/v/VovSoft/ClipboardReader/1.3.0.0/VovSoft.ClipboardReader.yaml b/manifests/v/VovSoft/ClipboardReader/1.4.0.0/VovSoft.ClipboardReader.yaml similarity index 55% rename from manifests/v/VovSoft/ClipboardReader/1.3.0.0/VovSoft.ClipboardReader.yaml rename to manifests/v/VovSoft/ClipboardReader/1.4.0.0/VovSoft.ClipboardReader.yaml index 49b1047a8750..7408f1054f41 100644 --- a/manifests/v/VovSoft/ClipboardReader/1.3.0.0/VovSoft.ClipboardReader.yaml +++ b/manifests/v/VovSoft/ClipboardReader/1.4.0.0/VovSoft.ClipboardReader.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: VovSoft.ClipboardReader -PackageVersion: 1.3.0.0 +PackageVersion: 1.4.0.0 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0