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 diff --git a/manifests/a/AcaciaAve/HUD/1.0.086.2/AcaciaAve.HUD.installer.yaml b/manifests/a/AcaciaAve/HUD/1.0.086.2/AcaciaAve.HUD.installer.yaml new file mode 100644 index 000000000000..e0b4b688b229 --- /dev/null +++ b/manifests/a/AcaciaAve/HUD/1.0.086.2/AcaciaAve.HUD.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: AcaciaAve.HUD +PackageVersion: 1.0.086.2 +InstallerLocale: en-US +InstallerType: msi +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: '{764CD916-9C11-4901-A65A-8EC1757E43CF}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/acaciaavellc/Heads-Up-Display/releases/download/v1.0.086.2/AcaciaAve-HUD-Personal-x64.msi + InstallerSha256: C8927656E89542287BA275059C6A2668944FD56F29FDBAAB06EA79D890AE5D95 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-27 diff --git a/manifests/a/AcaciaAve/HUD/1.0.086.2/AcaciaAve.HUD.locale.en-US.yaml b/manifests/a/AcaciaAve/HUD/1.0.086.2/AcaciaAve.HUD.locale.en-US.yaml new file mode 100644 index 000000000000..7023b3ddf457 --- /dev/null +++ b/manifests/a/AcaciaAve/HUD/1.0.086.2/AcaciaAve.HUD.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: AcaciaAve.HUD +PackageVersion: 1.0.086.2 +PackageLocale: en-US +Publisher: Acacia Avenue LLC +PublisherUrl: https://www.acaciaave.com +PublisherSupportUrl: https://github.com/acaciaavellc/Heads-Up-Display/issues +PrivacyUrl: https://www.acaciaave.com/privacy-policy.html +PackageName: Heads-Up Display +PackageUrl: https://www.acaciaave.com/hud-personal.html +License: Proprietary +LicenseUrl: https://www.acaciaave.com/hud-personal.html +Copyright: Copyright (c) 2026 Acacia Avenue LLC +ShortDescription: Persistent classification banner for Windows desktops +Description: |- + Heads-Up Display (HUD) is a lightweight, always-on classification banner for Windows. + It provides a persistent visual indicator of the current system classification state, + designed for use in government, defense, and enterprise environments where users must + maintain constant awareness of the sensitivity level of the data they are handling. + HUD Personal is free for personal and evaluation use. +Tags: +- classification +- banner +- security +- government +- defense +- netbanner +ReleaseNotesUrl: https://github.com/acaciaavellc/Heads-Up-Display/releases/tag/v1.0.086.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/AcaciaAve/HUD/1.0.086.2/AcaciaAve.HUD.yaml b/manifests/a/AcaciaAve/HUD/1.0.086.2/AcaciaAve.HUD.yaml new file mode 100644 index 000000000000..708cd96fa3b0 --- /dev/null +++ b/manifests/a/AcaciaAve/HUD/1.0.086.2/AcaciaAve.HUD.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: AcaciaAve.HUD +PackageVersion: 1.0.086.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/AdventDevelopmentInc/Kudu/1.21.0/AdventDevelopmentInc.Kudu.installer.yaml b/manifests/a/AdventDevelopmentInc/Kudu/1.21.0/AdventDevelopmentInc.Kudu.installer.yaml new file mode 100644 index 000000000000..54c94fde475b --- /dev/null +++ b/manifests/a/AdventDevelopmentInc/Kudu/1.21.0/AdventDevelopmentInc.Kudu.installer.yaml @@ -0,0 +1,21 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: AdventDevelopmentInc.Kudu +PackageVersion: 1.21.0 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +ProductCode: 99d553c9-ffb4-5437-be2b-e5cf46a6d687 +AppsAndFeaturesEntries: +- DisplayName: Kudu 1.15.0 + Publisher: Kudu Contributors + ProductCode: 99d553c9-ffb4-5437-be2b-e5cf46a6d687 +ElevationRequirement: elevationRequired +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/AdventDevInc/kudu/releases/download/v1.21.0/Kudu-Setup-1.21.0.exe + InstallerSha256: E2C7C178A45054D70B7D32E8B0B13964134CCC1DCDE4E8D22766F5A47D983564 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-23 diff --git a/manifests/a/AdventDevelopmentInc/Kudu/1.21.0/AdventDevelopmentInc.Kudu.locale.en-US.yaml b/manifests/a/AdventDevelopmentInc/Kudu/1.21.0/AdventDevelopmentInc.Kudu.locale.en-US.yaml new file mode 100644 index 000000000000..08e7c78f5c03 --- /dev/null +++ b/manifests/a/AdventDevelopmentInc/Kudu/1.21.0/AdventDevelopmentInc.Kudu.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: AdventDevelopmentInc.Kudu +PackageVersion: 1.21.0 +PackageLocale: en-US +Publisher: Advent Development, Inc. +PublisherUrl: https://github.com/AdventDevInc +PublisherSupportUrl: https://github.com/AdventDevInc/kudu/issues +PackageName: Kudu +PackageUrl: https://github.com/AdventDevInc/kudu +License: MIT +LicenseUrl: https://github.com/AdventDevInc/kudu/blob/HEAD/LICENSE +Copyright: Copyright © 2024 Kudu Contributors +ShortDescription: A modern, open-source system cleaner for Windows, macOS, and Linux +Tags: +- ccleaner-alternative +- cleaner +- free +- hardening +- kudu +- linux-cleaner +- mac-cleaner +- malware-detection +- open-source +- pc-optimization +- performance +- privacy +- scanner +- security +- startup-manager +- system-cleaner +ReleaseNotesUrl: https://github.com/AdventDevInc/kudu/releases/tag/v1.21.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/AdventDevelopmentInc/Kudu/1.21.0/AdventDevelopmentInc.Kudu.yaml b/manifests/a/AdventDevelopmentInc/Kudu/1.21.0/AdventDevelopmentInc.Kudu.yaml new file mode 100644 index 000000000000..7a0f2c6ad0a5 --- /dev/null +++ b/manifests/a/AdventDevelopmentInc/Kudu/1.21.0/AdventDevelopmentInc.Kudu.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: AdventDevelopmentInc.Kudu +PackageVersion: 1.21.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/Avidemux/Avidemux/2.8.1/Avidemux.Avidemux.installer.yaml b/manifests/a/Avidemux/Avidemux/2.8.1/Avidemux.Avidemux.installer.yaml new file mode 100644 index 000000000000..a961487144b6 --- /dev/null +++ b/manifests/a/Avidemux/Avidemux/2.8.1/Avidemux.Avidemux.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: Avidemux.Avidemux +PackageVersion: 2.8.1 +Platform: +- Windows.Desktop +InstallerType: nullsoft +InstallModes: +- interactive +- silent +InstallerSuccessCodes: +- 1223 +UpgradeBehavior: install +ProductCode: Avidemux 2.8 - 64 bits (64-bit) +ReleaseDate: 2022-09-21 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/mean00/avidemux2/releases/download/2.8.1/Avidemux_2.8.1.VC%2B%2B.64bits.exe + InstallerSha256: DD962BC788D7D955B04E163E7E1A6620B573ADC379BF2EA2A2C25585782B4DCA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/Avidemux/Avidemux/2.8.1/Avidemux.Avidemux.locale.en-US.yaml b/manifests/a/Avidemux/Avidemux/2.8.1/Avidemux.Avidemux.locale.en-US.yaml new file mode 100644 index 000000000000..9c50e20a23b7 --- /dev/null +++ b/manifests/a/Avidemux/Avidemux/2.8.1/Avidemux.Avidemux.locale.en-US.yaml @@ -0,0 +1,74 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Avidemux.Avidemux +PackageVersion: 2.8.1 +PackageLocale: en-US +Publisher: Avidemux +PublisherUrl: https://avidemux.sourceforge.net/ +Author: Avidemux +PackageName: Avidemux +PackageUrl: https://avidemux.sourceforge.net/ +License: GPL-2.0 +LicenseUrl: https://github.com/mean00/avidemux2/blob/HEAD/License.txt +CopyrightUrl: https://github.com/mean00/avidemux2/blob/master/License.txt +ShortDescription: Avidemux is a simple platform video editor for Linux, Windows and Mac OS X. +Description: |- + Avidemux is a free video editor designed for simple cutting, filtering and encoding tasks. + It supports many file types, including AVI, DVD compatible MPEG files, MP4 and ASF, using a variety of codecs. + Tasks can be automated using projects, job queue and powerful scripting capabilities. +Moniker: avidemux +Tags: +- admin +- cross-platform +- cutting +- editor +- encoding +- filtering +- foss +- multimedia +- video +- video-editor +ReleaseNotes: |- + New Features + New HiDPI compatible button set + Fast method to add partial filters via CTRL+F shortcut + Audio department improvements + custom frame rate change (audio stretch with pitch control) + configurable compressor (DRC) + 3-band equalizer + independent channel gain options + independent channel delay options + channel remap options + new downmix options: stereo headphone and headphone virtual surround + audio track configuration up to 32 tracks + volume setting is saved upon exit + Light and dark theme options in View menu + Option to remember selected resize method in "Resize", "Fit to size" and "Zoom" filters + New filter: 3D LUT + New filter: Decimate + New filter: Arbitrary Rotate + New video encoder: VideoToolbox HEVC ("ffVTEncHEVC", macOS only) + Other Enhancements + HDR tonemapping performance and quality improvements + Extended file info + Rotating mouse wheel over buttons to seek by 60 seconds cycles through 1/2/4/60 seconds seek modes + Support for decoding 8-bit VP9 in hardware via DXVA2 on Windows and via VDPAU on Linux with graphics cards featuring a VP9 decoder + Buttons to seek to selection start (A) and end (B) in on-the-fly video filter preview + Logo image in "Add logo" video filter configuration dialog is now scalable, can be repositioned by dragging + By default, on-the-fly preview in video filter configuration dialogs is now rendered using OpenGL to improve performance in HiDPI conditions + Bugfixes + Crash on copy to clipboard if selection extends to the end of video, a regression introduced in v2.8.0 + Crashes in "Resample FPS" video filter with motion interpolation enabled + Crash on finishing encoding with the vp9 encoder + Avidemux falling victim to a crash in VA-API driver triggered by probing on application startup on Linux with some recent hardware + Crash loading MPEG-TS or MPEG-PS file with MPEG-1 video track and HW decoder via VDPAU enabled + Wrong number of channels or wrong channel layout with some E-AC3 streams + Reduced contrast and desaturated colors in loaded BMP images + Selection starting at zero and ending at the last picture of video cannot be deleted + Disabling B-frames breaks VideoToolbox HW encoder (macOS only) + Miscellaneous + Bundled FFmpeg libraries have been updated to 4.4.2 release. +ReleaseNotesUrl: https://github.com/mean00/avidemux2/releases/tag/2.8.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Avidemux/Avidemux/2.8.1/Avidemux.Avidemux.yaml b/manifests/a/Avidemux/Avidemux/2.8.1/Avidemux.Avidemux.yaml new file mode 100644 index 000000000000..c2eedb1d2e77 --- /dev/null +++ b/manifests/a/Avidemux/Avidemux/2.8.1/Avidemux.Avidemux.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: Avidemux.Avidemux +PackageVersion: 2.8.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.installer.yaml b/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.installer.yaml new file mode 100644 index 000000000000..7c65a84182f5 --- /dev/null +++ b/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.installer.yaml @@ -0,0 +1,24 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: aiclientproxy.ProxyCast +PackageVersion: 0.97.0 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +ProductCode: Lime +ReleaseDate: 2026-03-27 +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\Lime' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/limecloud/lime/releases/download/v0.97.0/Lime_0.97.0_x64-offline-setup.exe + InstallerSha256: 7E068A461265C69642E684B1FEE700DFA3257994068A309244821883BA1A3F57 + AppsAndFeaturesEntries: + - DisplayName: Lime + Publisher: lime + DisplayVersion: 0.97.0 + ProductCode: Lime +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.locale.en-US.yaml b/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.locale.en-US.yaml new file mode 100644 index 000000000000..a57f7b43b3d2 --- /dev/null +++ b/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.locale.en-US.yaml @@ -0,0 +1,17 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: aiclientproxy.ProxyCast +PackageVersion: 0.97.0 +PackageLocale: en-US +License: Freeware +ShortDescription: A desktop application based on Tauri that converts credentials from AI clients such as Kiro, Gemini CLI, and Qwen into standard OpenAI/Claude compatible APIs. +Tags: +- ai +- chatbot +- large-language-model +- llm +- proxy +ReleaseNotesUrl: https://github.com/limecloud/lime/releases/tag/v0.97.0 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.locale.zh-CN.yaml b/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.locale.zh-CN.yaml new file mode 100644 index 000000000000..ddcb4f58a76d --- /dev/null +++ b/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.locale.zh-CN.yaml @@ -0,0 +1,51 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: aiclientproxy.ProxyCast +PackageVersion: 0.97.0 +PackageLocale: zh-CN +Publisher: proxycast +PublisherUrl: https://limecloud.github.io/lime/ +PublisherSupportUrl: https://github.com/aiclientproxy/proxycast/issues +PackageName: ProxyCast +PackageUrl: https://limecloud.github.io/lime/ +License: 免费软件 +ShortDescription: 一款基于 Tauri 的桌面应用,将 Kiro、Gemini CLI、Qwen 等 AI 客户端凭证转换为标准 OpenAI/Claude 兼容 API +Tags: +- 人工智能 +- 代理 +- 大语言模型 +- 聊天机器人 +ReleaseNotes: |- + Lime v0.97.0 + ✨ 主要更新 + - Harness 导出链路补齐四类制品:处理工作台与统一运行时接通 handoff bundle、evidence pack、replay case、analysis handoff 导出,支持 pending request 重放、外部诊断交接和问题复盘闭环 + - Replay Eval / Nightly 骨架进入 current 主线:仓库新增 docs/test/harness-evals.*、固定 replay fixture、harness-eval-runner、harness-eval-trend-report、harness-replay-promote 与 nightly workflow,把 replay 样本、grader 合同和趋势摘要收口到统一入口 + - Service Skill 到 Automation 的落地链路更完整:Home Shell、Workspace 与自动化设置页现在可以直接从服务技能创建本地 automation job,保留技能与任务关联,并回填 workspace/content 上下文 + - Browser Runtime 站点采集继续收口:站点采集工作台补齐推荐适配器、资料自动选择、目录状态展示和结果回写当前内容/项目的主链,优先复用已连接 Chrome 的真实登录态 + - Agent Chat 提交流程与处理面板继续瘦身:slash skill、selected team、session/runtime steady-state 与 Harness 状态面板的交互拆分重组,关键回归测试同步补齐 + ⚠️ 兼容性说明 + - 正式发布仍由 v* tag 触发 .github/workflows/release.yml;RELEASE_NOTES.md 会直接作为 GitHub Release 正文 + - 本地如果启用了 .cargo/config.toml 的 Aster 覆盖,请确认它指向的是干净的 v0.22.0 仓库;GitHub Release runner 不会带本地绝对路径覆盖 + - 站点适配器与 Browser Runtime 冒烟现在默认依赖已就绪的 DevBridge、浏览器资料和服务端同步目录;发布到目标环境前请确认对应控制面与 Browser Bridge 状态可用 + - Harness 新增 handoff/evidence/replay/analysis 导出后,会在工作区 .lime/harness/sessions//... 下沉淀更多制品;如有路径清理策略,请同步评估磁盘与归档规则 + 🔗 依赖同步 + - 应用版本已同步提升到 v0.97.0,覆盖 package.json、src-tauri/Cargo.toml、src-tauri/tauri.conf.json、src-tauri/tauri.conf.headless.json 与 src-tauri/Cargo.lock + - 当前仓库声明的 aster-rust 依赖仍为 v0.22.0;本地覆盖仓库已核对为干净 v0.22.0 状态 + - src-tauri/Cargo.lock 已随本次 Rust 校验刷新,确保工作区 crate 的版本快照与 0.97.0 对齐 + 🧪 测试 + - 发布前执行:npm run verify:app-version + - 发布前执行:npm run lint + - 发布前执行:npm run test:contracts + - 发布前执行:cargo fmt --manifest-path src-tauri/Cargo.toml --all + - 发布前执行:CARGO_TARGET_DIR=/tmp/lime-target-v0.97.0 cargo test --manifest-path src-tauri/Cargo.toml + - 发布前执行:CARGO_TARGET_DIR=/tmp/lime-target-v0.97.0 cargo clippy --manifest-path src-tauri/Cargo.toml + - 发布前执行:CARGO_TARGET_DIR=/tmp/lime-target-v0.97.0 npm run verify:gui-smoke -- --timeout-ms 480000 + - 格式状态:已执行 cargo fmt --manifest-path src-tauri/Cargo.toml --all + 📝 文档 + - 发布说明已切换到 v0.97.0,供 GitHub Release 工作流直接读取 + - Harness eval / 工程质量 / 命令边界与 GUI 冒烟相关文档已在当前工作区同步演进 + 完整变更: v0.96.0...v0.97.0 +ReleaseNotesUrl: https://github.com/limecloud/lime/releases/tag/v0.97.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.yaml b/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.yaml new file mode 100644 index 000000000000..88c6209b9b42 --- /dev/null +++ b/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.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: aiclientproxy.ProxyCast +PackageVersion: 0.97.0 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/amitmerchant1990/electron-markdownify/1.2.0/amitmerchant1990.electron-markdownify.installer.yaml b/manifests/a/amitmerchant1990/electron-markdownify/1.2.0/amitmerchant1990.electron-markdownify.installer.yaml new file mode 100644 index 000000000000..d2039ad632f4 --- /dev/null +++ b/manifests/a/amitmerchant1990/electron-markdownify/1.2.0/amitmerchant1990.electron-markdownify.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: amitmerchant1990.electron-markdownify +PackageVersion: 1.2.0 +InstallerType: zip +NestedInstallerType: portable +ReleaseDate: 2021-12-08 +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: Markdownify-win32-ia32/Markdownify.exe + InstallerUrl: https://github.com/amitmerchant1990/electron-markdownify/releases/download/v1.2.0/Markdownify-win32-ia32.zip + InstallerSha256: 2CB21911D4963E79966676DD81664BBD91FC189A618373B3B43362608BDE825E +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: Markdownify-win32-x64/Markdownify.exe + Scope: machine + InstallerUrl: https://github.com/amitmerchant1990/electron-markdownify/releases/download/v1.2.0/Markdownify-win32-x64.zip + InstallerSha256: 3CE9BDE30044CCC2844C54F1CED7303CFF6D059DACACCB380C3DEFBA2EDF8AF4 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/amitmerchant1990/electron-markdownify/1.2.0/amitmerchant1990.electron-markdownify.locale.en-US.yaml b/manifests/a/amitmerchant1990/electron-markdownify/1.2.0/amitmerchant1990.electron-markdownify.locale.en-US.yaml new file mode 100644 index 000000000000..15913c7ab839 --- /dev/null +++ b/manifests/a/amitmerchant1990/electron-markdownify/1.2.0/amitmerchant1990.electron-markdownify.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: amitmerchant1990.electron-markdownify +PackageVersion: 1.2.0 +PackageLocale: en-US +Publisher: Amit Merchant +PublisherUrl: https://github.com/amitmerchant1990 +PublisherSupportUrl: https://github.com/amitmerchant1990/electron-markdownify/issues +PackageName: Markdownify +PackageUrl: https://github.com/amitmerchant1990/electron-markdownify +License: MIT +LicenseUrl: https://github.com/amitmerchant1990/electron-markdownify/blob/HEAD/LICENSE.md +ShortDescription: A minimal Markdown editor desktop app +Tags: +- desktop +- editor +- electron +- emoji +- hacktoberfest +- javascript +- jquery +- livepreview +- markdown +- markdownify +- nodejs +ReleaseNotes: |- + - Migrated to Electron v1.4.1 + - Added code block highlighting + - Updated to latest version of marked + - Implemented sync-scrolling + - Fixed minor issues +ReleaseNotesUrl: https://github.com/amitmerchant1990/electron-markdownify/releases/tag/v1.2.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/amitmerchant1990/electron-markdownify/1.2.0/amitmerchant1990.electron-markdownify.yaml b/manifests/a/amitmerchant1990/electron-markdownify/1.2.0/amitmerchant1990.electron-markdownify.yaml new file mode 100644 index 000000000000..cb5c4fd96974 --- /dev/null +++ b/manifests/a/amitmerchant1990/electron-markdownify/1.2.0/amitmerchant1990.electron-markdownify.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: amitmerchant1990.electron-markdownify +PackageVersion: 1.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/audiveris/org/Audiveris/5.10.2/audiveris.org.Audiveris.installer.yaml b/manifests/a/audiveris/org/Audiveris/5.10.2/audiveris.org.Audiveris.installer.yaml new file mode 100644 index 000000000000..feba35ce1358 --- /dev/null +++ b/manifests/a/audiveris/org/Audiveris/5.10.2/audiveris.org.Audiveris.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: audiveris.org.Audiveris +PackageVersion: 5.10.2 +InstallerLocale: en-US +InstallerType: wix +ProductCode: '{43302F62-B1D7-3B3A-93A0-7C6C7A5D6F6F}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Audiveris/audiveris/releases/download/5.10.2/Audiveris-5.10.2-windows-x86_64.msi + InstallerSha256: F321CBBFCE3BE0BEB292129B76532373877A0586DD784977691B2DEDDC7D2F84 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-27 diff --git a/manifests/a/audiveris/org/Audiveris/5.10.2/audiveris.org.Audiveris.locale.en-US.yaml b/manifests/a/audiveris/org/Audiveris/5.10.2/audiveris.org.Audiveris.locale.en-US.yaml new file mode 100644 index 000000000000..700b79d90827 --- /dev/null +++ b/manifests/a/audiveris/org/Audiveris/5.10.2/audiveris.org.Audiveris.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: audiveris.org.Audiveris +PackageVersion: 5.10.2 +PackageLocale: en-US +Publisher: audiveris.org +PublisherUrl: https://github.com/Audiveris +PublisherSupportUrl: https://github.com/Audiveris/audiveris/issues +PackageName: Audiveris +PackageUrl: https://github.com/Audiveris/audiveris +License: AGPLv3 +ShortDescription: Optical Music Recognition +Tags: +- java +- open-source +- optical-music-recognition +ReleaseNotesUrl: https://github.com/Audiveris/audiveris/releases/tag/5.10.2 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/Audiveris/audiveris/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/audiveris/org/Audiveris/5.10.2/audiveris.org.Audiveris.yaml b/manifests/a/audiveris/org/Audiveris/5.10.2/audiveris.org.Audiveris.yaml new file mode 100644 index 000000000000..6a48c64fc6ff --- /dev/null +++ b/manifests/a/audiveris/org/Audiveris/5.10.2/audiveris.org.Audiveris.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: audiveris.org.Audiveris +PackageVersion: 5.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/BrowserStack/BrowserStackLocal/3.7.2/BrowserStack.BrowserStackLocal.installer.yaml b/manifests/b/BrowserStack/BrowserStackLocal/3.7.3/BrowserStack.BrowserStackLocal.installer.yaml similarity index 76% rename from manifests/b/BrowserStack/BrowserStackLocal/3.7.2/BrowserStack.BrowserStackLocal.installer.yaml rename to manifests/b/BrowserStack/BrowserStackLocal/3.7.3/BrowserStack.BrowserStackLocal.installer.yaml index 2a5b82215796..705bff4e0e69 100644 --- a/manifests/b/BrowserStack/BrowserStackLocal/3.7.2/BrowserStack.BrowserStackLocal.installer.yaml +++ b/manifests/b/BrowserStack/BrowserStackLocal/3.7.3/BrowserStack.BrowserStackLocal.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: BrowserStack.BrowserStackLocal -PackageVersion: 3.7.2 +PackageVersion: 3.7.3 InstallerType: wix Scope: machine InstallerSwitches: @@ -10,13 +10,13 @@ InstallerSwitches: UpgradeBehavior: install Protocols: - browserstackapp -ProductCode: '{8B8A9E32-1F43-4124-8037-58326D90A867}' -ReleaseDate: 2026-02-10 +ProductCode: '{D7A4EAD1-AB92-4E07-B9A6-1150D57160B7}' +ReleaseDate: 2026-03-27 AppsAndFeaturesEntries: - UpgradeCode: '{35BE732C-8869-4038-8527-0A3176F19243}' Installers: - Architecture: x64 InstallerUrl: https://www.browserstack.com/local-testing/downloads/native-app/BrowserStackLocal.msi - InstallerSha256: 3888AE570DBA796A899B874B708D6B18059000FA7EE0BEAD4D854A1513EADBB5 + InstallerSha256: 43B0BFA07D12A2F90EE468C15212B0B917D10FA92038DC7DEE6775BD2B1951B8 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/b/BrowserStack/BrowserStackLocal/3.7.2/BrowserStack.BrowserStackLocal.locale.en-US.yaml b/manifests/b/BrowserStack/BrowserStackLocal/3.7.3/BrowserStack.BrowserStackLocal.locale.en-US.yaml similarity index 97% rename from manifests/b/BrowserStack/BrowserStackLocal/3.7.2/BrowserStack.BrowserStackLocal.locale.en-US.yaml rename to manifests/b/BrowserStack/BrowserStackLocal/3.7.3/BrowserStack.BrowserStackLocal.locale.en-US.yaml index 17434ee59681..048b12d800a3 100644 --- a/manifests/b/BrowserStack/BrowserStackLocal/3.7.2/BrowserStack.BrowserStackLocal.locale.en-US.yaml +++ b/manifests/b/BrowserStack/BrowserStackLocal/3.7.3/BrowserStack.BrowserStackLocal.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: BrowserStack.BrowserStackLocal -PackageVersion: 3.7.2 +PackageVersion: 3.7.3 PackageLocale: en-US Publisher: BrowserStack PublisherUrl: https://www.browserstack.com/ diff --git a/manifests/b/BrowserStack/BrowserStackLocal/3.7.2/BrowserStack.BrowserStackLocal.locale.zh-CN.yaml b/manifests/b/BrowserStack/BrowserStackLocal/3.7.3/BrowserStack.BrowserStackLocal.locale.zh-CN.yaml similarity index 95% rename from manifests/b/BrowserStack/BrowserStackLocal/3.7.2/BrowserStack.BrowserStackLocal.locale.zh-CN.yaml rename to manifests/b/BrowserStack/BrowserStackLocal/3.7.3/BrowserStack.BrowserStackLocal.locale.zh-CN.yaml index 61fc776d196b..74a64a96081a 100644 --- a/manifests/b/BrowserStack/BrowserStackLocal/3.7.2/BrowserStack.BrowserStackLocal.locale.zh-CN.yaml +++ b/manifests/b/BrowserStack/BrowserStackLocal/3.7.3/BrowserStack.BrowserStackLocal.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: BrowserStack.BrowserStackLocal -PackageVersion: 3.7.2 +PackageVersion: 3.7.3 PackageLocale: zh-CN License: 专有软件 ShortDescription: Local Testing 帮助您大规模测试正在开发的网络和移动应用程序,而无需将其托管在公共暂存环境中。 diff --git a/manifests/b/BrowserStack/BrowserStackLocal/3.7.2/BrowserStack.BrowserStackLocal.yaml b/manifests/b/BrowserStack/BrowserStackLocal/3.7.3/BrowserStack.BrowserStackLocal.yaml similarity index 91% rename from manifests/b/BrowserStack/BrowserStackLocal/3.7.2/BrowserStack.BrowserStackLocal.yaml rename to manifests/b/BrowserStack/BrowserStackLocal/3.7.3/BrowserStack.BrowserStackLocal.yaml index a5ce4ca983a8..b06d722e25c0 100644 --- a/manifests/b/BrowserStack/BrowserStackLocal/3.7.2/BrowserStack.BrowserStackLocal.yaml +++ b/manifests/b/BrowserStack/BrowserStackLocal/3.7.3/BrowserStack.BrowserStackLocal.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: BrowserStack.BrowserStackLocal -PackageVersion: 3.7.2 +PackageVersion: 3.7.3 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/b/babalae/BetterGI/0.59.1/babalae.BetterGI.installer.yaml b/manifests/b/babalae/BetterGI/0.59.1/babalae.BetterGI.installer.yaml new file mode 100644 index 000000000000..35e25fb6f421 --- /dev/null +++ b/manifests/b/babalae/BetterGI/0.59.1/babalae.BetterGI.installer.yaml @@ -0,0 +1,18 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: babalae.BetterGI +PackageVersion: 0.59.1 +InstallerType: exe +InstallerSwitches: + Silent: -S + SilentWithProgress: -I + InstallLocation: -D "" +UpgradeBehavior: install +ReleaseDate: 2026-03-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/babalae/better-genshin-impact/releases/download/0.59.1/BetterGI.Install.0.59.1.exe + InstallerSha256: 45D69F0225ACA432518F388F515973F9CCA88329DEC4DC0816A06FEAE77606F7 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/babalae/BetterGI/0.59.1/babalae.BetterGI.locale.en-US.yaml b/manifests/b/babalae/BetterGI/0.59.1/babalae.BetterGI.locale.en-US.yaml new file mode 100644 index 000000000000..be17c5ec1ba3 --- /dev/null +++ b/manifests/b/babalae/BetterGI/0.59.1/babalae.BetterGI.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: babalae.BetterGI +PackageVersion: 0.59.1 +PackageLocale: en-US +Publisher: 辉鸭蛋 +PublisherUrl: https://www.huiyadan.com/ +PublisherSupportUrl: https://github.com/babalae/better-genshin-impact/issues +Author: 辉鸭蛋 +PackageName: BetterGI +PackageUrl: https://github.com/babalae/better-genshin-impact +License: GNU General Public License v3.0 +LicenseUrl: https://github.com/babalae/better-genshin-impact/blob/main/LICENSE +Copyright: Copyright (c) 辉鸭蛋 +ShortDescription: BetterGI · UI Automation Testing Tools For Genshin Impact +Description: 📦BetterGI · UI Automation Testing Tools For Genshin Impact +Tags: +- auto-fish +- auto-skip +- automatic +- genius-invokation-tcg +- genshin +- genshin-impact +ReleaseNotesUrl: https://github.com/babalae/better-genshin-impact/releases/tag/0.59.1 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/babalae/BetterGI/0.59.1/babalae.BetterGI.locale.zh-CN.yaml b/manifests/b/babalae/BetterGI/0.59.1/babalae.BetterGI.locale.zh-CN.yaml new file mode 100644 index 000000000000..5dcee7484911 --- /dev/null +++ b/manifests/b/babalae/BetterGI/0.59.1/babalae.BetterGI.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: babalae.BetterGI +PackageVersion: 0.59.1 +PackageLocale: zh-CN +Publisher: 辉鸭蛋 +PublisherUrl: https://www.huiyadan.com/ +PublisherSupportUrl: https://github.com/babalae/better-genshin-impact/issues +Author: 辉鸭蛋 +PackageName: 更好的原神 +PackageUrl: https://github.com/babalae/better-genshin-impact +License: GPL-3.0 +LicenseUrl: https://github.com/babalae/better-genshin-impact/blob/HEAD/LICENSE +Copyright: Copyright (c) 辉鸭蛋 +ShortDescription: BetterGI · 更好的原神, 一个基于计算机视觉技术,意图让原神变的更好的项目。 +Description: 📦BetterGI · 更好的原神 - 自动拾取 | 自动剧情 | 全自动钓鱼(AI) | 全自动七圣召唤 | 自动伐木 | 自动刷本 | 自动采集 +Moniker: BetterGI +Tags: +- 七圣召唤 +- 原神 +- 工具箱 +- 游戏 +- 自动化 +- 自动技能 +- 自动拾取 +- 自动采集 +- 自动钓鱼 +ReleaseNotes: |- + - 回滚快捷传送支持自动点击按钮的功能 #1599 + - 自动烹饪支持满熟练度自动停止任务 #2958 + - JS脚本文件夹支持文件重命名功能 (#2960) @Hijiwos + - 地图追踪添加不切换队伍配置,在自动地脉花功能上使用 #2955 @ddaodan +ReleaseNotesUrl: https://github.com/babalae/better-genshin-impact/releases/tag/0.59.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/babalae/BetterGI/0.59.1/babalae.BetterGI.yaml b/manifests/b/babalae/BetterGI/0.59.1/babalae.BetterGI.yaml new file mode 100644 index 000000000000..726ad8554209 --- /dev/null +++ b/manifests/b/babalae/BetterGI/0.59.1/babalae.BetterGI.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: babalae.BetterGI +PackageVersion: 0.59.1 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/bronya0/Kafka-King/0.30/bronya0.Kafka-King.installer.yaml b/manifests/b/bronya0/Kafka-King/0.30/bronya0.Kafka-King.installer.yaml new file mode 100644 index 000000000000..2c40f7592f9d --- /dev/null +++ b/manifests/b/bronya0/Kafka-King/0.30/bronya0.Kafka-King.installer.yaml @@ -0,0 +1,17 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: bronya0.Kafka-King +PackageVersion: '0.30' +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: Kafka-King/Kafka-King-v0.30.exe + PortableCommandAlias: Kafka-King +ReleaseDate: 2024-10-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Bronya0/Kafka-King/releases/download/v0.30/Kafka-King-v0.30-windows-amd64.zip + InstallerSha256: 7E6FF5C3132D8CF83DB90BA745B7CB158FB4BA4128BF3FA27F1C4F2DA3ABCDD6 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/bronya0/Kafka-King/0.30/bronya0.Kafka-King.locale.zh-CN.yaml b/manifests/b/bronya0/Kafka-King/0.30/bronya0.Kafka-King.locale.zh-CN.yaml new file mode 100644 index 000000000000..e57fa729a844 --- /dev/null +++ b/manifests/b/bronya0/Kafka-King/0.30/bronya0.Kafka-King.locale.zh-CN.yaml @@ -0,0 +1,35 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: bronya0.Kafka-King +PackageVersion: '0.30' +PackageLocale: zh-CN +Publisher: bronya0 +PublisherUrl: https://github.com/Bronya0 +PublisherSupportUrl: https://github.com/Bronya0/Kafka-King/issues +PackageName: Kafka-King +PackageUrl: https://github.com/Bronya0/Kafka-King +License: Apache-2.0 +LicenseUrl: https://github.com/Bronya0/Kafka-King/blob/HEAD/LICENSE +ShortDescription: A modern and practical kafka GUI client | 一个现代、实用的kafka界面客户端。 +Tags: +- gui +- kafka +- kafka-client +- kafka-clients +- kafka-connector +- kafka-gui +- kafka-gui-client +- kafkagui +- wails +- wails-app +- wails2 +ReleaseNotes: |- + 1、代理通信协议增加SSL、SASL SSL支持 + 2、重构打包逻辑 + 3、sasl身份验证机制支持PLAIN、GSSAPI、OAUTHBEARER、SCRAM-SHA-256、SCRAM-SHA-512 + > tips:网速不好的可以去qq群下载:964440643 + > 2024.10月15号之前下载的v0.30的版本有bug,需要重新下载 +ReleaseNotesUrl: https://github.com/Bronya0/Kafka-King/releases/tag/v0.30 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/bronya0/Kafka-King/0.30/bronya0.Kafka-King.yaml b/manifests/b/bronya0/Kafka-King/0.30/bronya0.Kafka-King.yaml new file mode 100644 index 000000000000..ecc827611395 --- /dev/null +++ b/manifests/b/bronya0/Kafka-King/0.30/bronya0.Kafka-King.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: bronya0.Kafka-King +PackageVersion: '0.30' +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/CodeZeno/ClaudeCodeUsageMonitor/1.2.9/CodeZeno.ClaudeCodeUsageMonitor.installer.yaml b/manifests/c/CodeZeno/ClaudeCodeUsageMonitor/1.2.9/CodeZeno.ClaudeCodeUsageMonitor.installer.yaml new file mode 100644 index 000000000000..1c44c576ad92 --- /dev/null +++ b/manifests/c/CodeZeno/ClaudeCodeUsageMonitor/1.2.9/CodeZeno.ClaudeCodeUsageMonitor.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: CodeZeno.ClaudeCodeUsageMonitor +PackageVersion: 1.2.9 +InstallerType: portable +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/CodeZeno/Claude-Code-Usage-Monitor/releases/download/v1.2.9/claude-code-usage-monitor.exe + InstallerSha256: 06EA585D3BA03C81FBDA65DC614150FCFD9793D2C80C23159AB537B0A2ADE186 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-27 diff --git a/manifests/c/CodeZeno/ClaudeCodeUsageMonitor/1.2.9/CodeZeno.ClaudeCodeUsageMonitor.locale.en-US.yaml b/manifests/c/CodeZeno/ClaudeCodeUsageMonitor/1.2.9/CodeZeno.ClaudeCodeUsageMonitor.locale.en-US.yaml new file mode 100644 index 000000000000..5b5813dc651d --- /dev/null +++ b/manifests/c/CodeZeno/ClaudeCodeUsageMonitor/1.2.9/CodeZeno.ClaudeCodeUsageMonitor.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: CodeZeno.ClaudeCodeUsageMonitor +PackageVersion: 1.2.9 +PackageLocale: en-US +Publisher: Code Zeno Pty Ltd +PublisherUrl: https://github.com/CodeZeno +PublisherSupportUrl: https://github.com/CodeZeno/Claude-Code-Usage-Monitor/issues +PackageName: Claude Code Usage Monitor +PackageUrl: https://github.com/CodeZeno/Claude-Code-Usage-Monitor +License: MIT License +Copyright: Copyright (C) 2026 Code Zeno Pty Ltd +ShortDescription: Windows taskbar widget for monitoring Claude Code usage and rate limits +ReleaseNotesUrl: https://github.com/CodeZeno/Claude-Code-Usage-Monitor/releases/tag/v1.2.9 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/CodeZeno/Claude-Code-Usage-Monitor/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/CodeZeno/ClaudeCodeUsageMonitor/1.2.9/CodeZeno.ClaudeCodeUsageMonitor.yaml b/manifests/c/CodeZeno/ClaudeCodeUsageMonitor/1.2.9/CodeZeno.ClaudeCodeUsageMonitor.yaml new file mode 100644 index 000000000000..de69ceb059d2 --- /dev/null +++ b/manifests/c/CodeZeno/ClaudeCodeUsageMonitor/1.2.9/CodeZeno.ClaudeCodeUsageMonitor.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: CodeZeno.ClaudeCodeUsageMonitor +PackageVersion: 1.2.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/DaouTech/DaouMessenger/4.3.0/DaouTech.DaouMessenger.installer.yaml b/manifests/d/DaouTech/DaouMessenger/4.3.0/DaouTech.DaouMessenger.installer.yaml new file mode 100644 index 000000000000..d81c6973adba --- /dev/null +++ b/manifests/d/DaouTech/DaouMessenger/4.3.0/DaouTech.DaouMessenger.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: DaouTech.DaouMessenger +PackageVersion: 4.3.0 +InstallerType: nullsoft +AppsAndFeaturesEntries: +- Publisher: Do.swLab + ProductCode: 95c2261c-e088-5746-82be-9168a9a90499 +Installers: +- Architecture: x64 + InstallerUrl: https://storage.googleapis.com/prod-portal-update-center-repo/4.3.0/DaouMessenger%204.0%20Setup%204.3.0.exe + InstallerSha256: 3C17405CDA7694EE0CFEAC64FD239A1B5097C58CE266B14855B0F90DE95EDBA5 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DaouTech/DaouMessenger/4.3.0/DaouTech.DaouMessenger.locale.en-US.yaml b/manifests/d/DaouTech/DaouMessenger/4.3.0/DaouTech.DaouMessenger.locale.en-US.yaml new file mode 100644 index 000000000000..d7c72ecda047 --- /dev/null +++ b/manifests/d/DaouTech/DaouMessenger/4.3.0/DaouTech.DaouMessenger.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: DaouTech.DaouMessenger +PackageVersion: 4.3.0 +PackageLocale: en-US +Publisher: Daou Tech Inc. +PublisherUrl: https://www.daou.co.kr/ +PublisherSupportUrl: https://care.daouoffice.co.kr/ +PrivacyUrl: https://daouoffice.com/privacy.jsp +PackageName: Daou Messenger +PackageUrl: https://daouoffice.com/ +License: Proprietary +Copyright: (c) DAOU Tech INC. All rights reserved. +ShortDescription: Desktop Messenger for Daou Office +Moniker: daou-messenger +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DaouTech/DaouMessenger/4.3.0/DaouTech.DaouMessenger.yaml b/manifests/d/DaouTech/DaouMessenger/4.3.0/DaouTech.DaouMessenger.yaml new file mode 100644 index 000000000000..96ad504fe038 --- /dev/null +++ b/manifests/d/DaouTech/DaouMessenger/4.3.0/DaouTech.DaouMessenger.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: DaouTech.DaouMessenger +PackageVersion: 4.3.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/Datadog/Agent/7.77.1.1/Datadog.Agent.installer.yaml b/manifests/d/Datadog/Agent/7.77.1.1/Datadog.Agent.installer.yaml new file mode 100644 index 000000000000..0e2ca6cc906f --- /dev/null +++ b/manifests/d/Datadog/Agent/7.77.1.1/Datadog.Agent.installer.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Datadog.Agent +PackageVersion: 7.77.1.1 +InstallerLocale: en-US +InstallerType: msi +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /qn + SilentWithProgress: /qb + Custom: /norestart OVERRIDE_INSTALLATION_METHOD=winget +ProductCode: '{20118999-41AC-48DF-AA25-1FE4DE09FF29}' +Installers: +- Architecture: x64 + InstallerUrl: https://s3.amazonaws.com/ddagent-windows-stable/ddagent-cli-7.77.1.msi + InstallerSha256: E1D23C15E40E8C46730A348CF996E8D356BCF229A14AEE03754696FFC487C9F6 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/d/Datadog/Agent/7.77.1.1/Datadog.Agent.locale.en-US.yaml b/manifests/d/Datadog/Agent/7.77.1.1/Datadog.Agent.locale.en-US.yaml new file mode 100644 index 000000000000..f9f5bb676f96 --- /dev/null +++ b/manifests/d/Datadog/Agent/7.77.1.1/Datadog.Agent.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Datadog.Agent +PackageVersion: 7.77.1.1 +PackageLocale: en-US +Publisher: Datadog, Inc. +PublisherUrl: https://docs.datadoghq.com/ +PublisherSupportUrl: https://www.datadoghq.com/support/ +PrivacyUrl: https://www.datadoghq.com/legal/privacy/ +Author: Datadog +PackageName: Datadog Agent +License: Apache-2.0 +LicenseUrl: https://github.com/DataDog/datadog-agent/blob/master/LICENSE +Copyright: Copyright Datadog, Inc. +ShortDescription: Datadog helps you monitor your infrastructure and application +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/d/Datadog/Agent/7.77.1.1/Datadog.Agent.yaml b/manifests/d/Datadog/Agent/7.77.1.1/Datadog.Agent.yaml new file mode 100644 index 000000000000..34fb6ead25ae --- /dev/null +++ b/manifests/d/Datadog/Agent/7.77.1.1/Datadog.Agent.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: Datadog.Agent +PackageVersion: 7.77.1.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 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 diff --git a/manifests/d/Discord/Discord/Canary/1.0.884/Discord.Discord.Canary.installer.yaml b/manifests/d/Discord/Discord/Canary/1.0.884/Discord.Discord.Canary.installer.yaml new file mode 100644 index 000000000000..2f363cc1ac23 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.884/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.884 +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.884/DiscordCanarySetup.exe + InstallerSha256: 744576588ABF45053F176989555F35DA8E439FAB3E425DD0BAA4B97976F6C03A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.884/Discord.Discord.Canary.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/1.0.884/Discord.Discord.Canary.locale.en-US.yaml new file mode 100644 index 000000000000..11e6ac5674e8 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.884/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.884 +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.884/Discord.Discord.Canary.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/1.0.884/Discord.Discord.Canary.locale.zh-CN.yaml new file mode 100644 index 000000000000..6b082187dfea --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.884/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.884 +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.884/Discord.Discord.Canary.yaml b/manifests/d/Discord/Discord/Canary/1.0.884/Discord.Discord.Canary.yaml new file mode 100644 index 000000000000..b9d85f275789 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.884/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.884 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/Docker/Cagent/v1.29.0/Docker.Cagent.installer.yaml b/manifests/d/Docker/Cagent/v1.29.0/Docker.Cagent.installer.yaml deleted file mode 100644 index 594b6004518b..000000000000 --- a/manifests/d/Docker/Cagent/v1.29.0/Docker.Cagent.installer.yaml +++ /dev/null @@ -1,18 +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: Docker.Cagent -PackageVersion: v1.29.0 -InstallerType: portable -Commands: -- cagent -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/docker/cagent/releases/download/v1.29.0/cagent-windows-amd64.exe - InstallerSha256: 6E87B2DD222BC42AC5B32EF4862C2C625FBF8F2E2AD23731C1CB0A0A908272BD -- Architecture: arm64 - InstallerUrl: https://github.com/docker/cagent/releases/download/v1.29.0/cagent-windows-arm64.exe - InstallerSha256: 421D945F67BFA060E863239339E203EB31AE2EDCC4AAEF02AA4B7E23CD4E5C92 -ManifestType: installer -ManifestVersion: 1.10.0 -ReleaseDate: 2026-03-03 diff --git a/manifests/d/Docker/Cagent/v1.29.0/Docker.Cagent.locale.en-US.yaml b/manifests/d/Docker/Cagent/v1.29.0/Docker.Cagent.locale.en-US.yaml deleted file mode 100644 index 8d7272f52d30..000000000000 --- a/manifests/d/Docker/Cagent/v1.29.0/Docker.Cagent.locale.en-US.yaml +++ /dev/null @@ -1,19 +0,0 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Docker.Cagent -PackageVersion: v1.29.0 -PackageLocale: en-US -Publisher: Docker -PublisherUrl: https://github.com/docker -PublisherSupportUrl: https://github.com/docker/cagent/issues -PackageName: Cagent -PackageUrl: https://github.com/docker/cagent -License: Apache-2.0 -ShortDescription: Agent Builder and Runtime by Docker Engineering -Tags: -- agents -- ai -ReleaseNotesUrl: https://github.com/docker/cagent/releases/tag/v1.29.0 -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/d/Docker/DockerDesktop/4.66.0/Docker.DockerDesktop.installer.yaml b/manifests/d/Docker/DockerDesktop/4.66.0/Docker.DockerDesktop.installer.yaml new file mode 100644 index 000000000000..50ea03e36abb --- /dev/null +++ b/manifests/d/Docker/DockerDesktop/4.66.0/Docker.DockerDesktop.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: Docker.DockerDesktop +PackageVersion: 4.66.0 +InstallerLocale: en-US +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: install --quiet + SilentWithProgress: install --quiet +UpgradeBehavior: install +ReleaseDate: 2026-03-23 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://desktop.docker.com/win/main/amd64/222299/Docker%20Desktop%20Installer.exe + InstallerSha256: 5AFCAE8C49CA69F42213E0FA0FF8BBAE46B8B7DDFDD3158B7F270A4C6F90A599 +- Architecture: arm64 + InstallerUrl: https://desktop.docker.com/win/main/arm64/222299/Docker%20Desktop%20Installer.exe + InstallerSha256: 8FBC72CF9DA3D40F60B000DFCA99ED595C725BDB7F2CD3B4D9D3919FF5BC781B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/Docker/DockerDesktop/4.66.0/Docker.DockerDesktop.locale.en-US.yaml b/manifests/d/Docker/DockerDesktop/4.66.0/Docker.DockerDesktop.locale.en-US.yaml new file mode 100644 index 000000000000..d1eafd19e6e3 --- /dev/null +++ b/manifests/d/Docker/DockerDesktop/4.66.0/Docker.DockerDesktop.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: Docker.DockerDesktop +PackageVersion: 4.66.0 +PackageLocale: en-US +Publisher: Docker Inc. +PublisherUrl: https://www.docker.com/ +PublisherSupportUrl: https://www.docker.com/support +PrivacyUrl: https://www.docker.com/legal/privacy +Author: Docker Inc. +PackageName: Docker Desktop +PackageUrl: https://www.docker.com/products/docker-desktop +License: Proprietary +LicenseUrl: https://www.docker.com/legal/docker-subscription-service-agreement +Copyright: Copyright © 2015-2024 Docker Inc. All rights reserved. +CopyrightUrl: https://www.docker.com/legal/docker-subscription-service-agreement +ShortDescription: Docker Desktop is an application for macOS and Windows machines for the building and sharing of containerized applications. +Description: Docker Desktop is an application for macOS and Windows machines for the building and sharing of containerized applications. Access Docker Desktop and follow the guided onboarding to build your first containerized application in minutes. +Moniker: docker +Tags: +- container +- containerization +- develop +- virtualization +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Docker/DockerDesktop/4.66.0/Docker.DockerDesktop.locale.zh-CN.yaml b/manifests/d/Docker/DockerDesktop/4.66.0/Docker.DockerDesktop.locale.zh-CN.yaml new file mode 100644 index 000000000000..262f1d272ecb --- /dev/null +++ b/manifests/d/Docker/DockerDesktop/4.66.0/Docker.DockerDesktop.locale.zh-CN.yaml @@ -0,0 +1,26 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Docker.DockerDesktop +PackageVersion: 4.66.0 +PackageLocale: zh-CN +Publisher: Docker Inc. +PublisherUrl: https://www.docker.com/ +PublisherSupportUrl: https://www.docker.com/support +PrivacyUrl: https://www.docker.com/legal/privacy +Author: Docker Inc. +PackageName: Docker Desktop +PackageUrl: https://www.docker.com/products/docker-desktop +License: 专有软件 +LicenseUrl: https://www.docker.com/legal/docker-subscription-service-agreement +Copyright: 版权所有 © 2015-2024 Docker Inc. 保留所有权利。 +CopyrightUrl: https://www.docker.com/legal/docker-subscription-service-agreement +ShortDescription: Docker Desktop 是一款适用于 macOS 和 Windows 设备的应用程序,用于构建和共享容器化应用程序。 +Description: Docker Desktop 是一款适用于 macOS 和 Windows 设备的应用程序,用于构建和共享容器化应用程序。访问 Docker Desktop 并按照指导入门,几分钟内就能构建你的第一个容器化应用程序。 +Tags: +- 容器 +- 容器化 +- 开发 +- 虚拟化 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Docker/DockerDesktop/4.66.0/Docker.DockerDesktop.yaml b/manifests/d/Docker/DockerDesktop/4.66.0/Docker.DockerDesktop.yaml new file mode 100644 index 000000000000..a02829f96d5f --- /dev/null +++ b/manifests/d/Docker/DockerDesktop/4.66.0/Docker.DockerDesktop.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: Docker.DockerDesktop +PackageVersion: 4.66.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/DynamoRIO/DynamoRIO/11.91.20531/DynamoRIO.DynamoRIO.installer.yaml b/manifests/d/DynamoRIO/DynamoRIO/11.91.20531/DynamoRIO.DynamoRIO.installer.yaml new file mode 100644 index 000000000000..be96a2773b78 --- /dev/null +++ b/manifests/d/DynamoRIO/DynamoRIO/11.91.20531/DynamoRIO.DynamoRIO.installer.yaml @@ -0,0 +1,47 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: DynamoRIO.DynamoRIO +PackageVersion: 11.91.20531 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: DynamoRIO-Windows-11.91.20531/bin32/ldmp.exe + PortableCommandAlias: ldmp +- RelativeFilePath: DynamoRIO-Windows-11.91.20531/bin64/DRcontrol.exe + PortableCommandAlias: DRcontrol +- RelativeFilePath: DynamoRIO-Windows-11.91.20531/bin64/DRkill.exe + PortableCommandAlias: DRkill +- RelativeFilePath: DynamoRIO-Windows-11.91.20531/bin64/DRload.exe + PortableCommandAlias: DRload +- RelativeFilePath: DynamoRIO-Windows-11.91.20531/bin64/DRstats.exe + PortableCommandAlias: DRstats +- RelativeFilePath: DynamoRIO-Windows-11.91.20531/bin64/DRview.exe + PortableCommandAlias: DRview +- RelativeFilePath: DynamoRIO-Windows-11.91.20531/bin64/balloon.exe + PortableCommandAlias: balloon +- RelativeFilePath: DynamoRIO-Windows-11.91.20531/bin64/closewnd.exe + PortableCommandAlias: closewnd +- RelativeFilePath: DynamoRIO-Windows-11.91.20531/bin64/create_process.exe + PortableCommandAlias: create_process +- RelativeFilePath: DynamoRIO-Windows-11.91.20531/bin64/drconfig.exe + PortableCommandAlias: drconfig +- RelativeFilePath: DynamoRIO-Windows-11.91.20531/bin64/drdisas.exe + PortableCommandAlias: drdisas +- RelativeFilePath: DynamoRIO-Windows-11.91.20531/bin64/drinject.exe + PortableCommandAlias: drinject +- RelativeFilePath: DynamoRIO-Windows-11.91.20531/bin64/drrun.exe + PortableCommandAlias: drrun +- RelativeFilePath: DynamoRIO-Windows-11.91.20531/bin64/dummy.exe + PortableCommandAlias: dummy +- RelativeFilePath: DynamoRIO-Windows-11.91.20531/bin64/svccntrl.exe + PortableCommandAlias: svccntrl +- RelativeFilePath: DynamoRIO-Windows-11.91.20531/bin64/winstats.exe + PortableCommandAlias: winstats +ReleaseDate: 2026-03-21 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/DynamoRIO/dynamorio/releases/download/cronbuild-11.91.20531/DynamoRIO-Windows-11.91.20531.zip + InstallerSha256: 64A02D0B6546A4CDF60065F067FBD62AB5DAAA8F1CDD62AD4335E0FC9D8BED4B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DynamoRIO/DynamoRIO/11.91.20531/DynamoRIO.DynamoRIO.locale.en-US.yaml b/manifests/d/DynamoRIO/DynamoRIO/11.91.20531/DynamoRIO.DynamoRIO.locale.en-US.yaml new file mode 100644 index 000000000000..b156dc28d64f --- /dev/null +++ b/manifests/d/DynamoRIO/DynamoRIO/11.91.20531/DynamoRIO.DynamoRIO.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: DynamoRIO.DynamoRIO +PackageVersion: 11.91.20531 +PackageLocale: en-US +Publisher: DynamoRIO +PublisherUrl: https://github.com/DynamoRIO +PublisherSupportUrl: https://github.com/DynamoRIO/dynamorio/issues +PackageName: DynamoRIO +PackageUrl: https://github.com/DynamoRIO/dynamorio +License: BSD-3-Clause-Clear +LicenseUrl: https://github.com/DynamoRIO/dynamorio/blob/HEAD/License.txt +ShortDescription: DynamoRIO is a runtime code manipulation system that supports code transformations on any part of a program, while it executes. +Tags: +- analysis-framework +- binary-analysis +- cache-simulator +- dynamorio +- instrumentation +- linux +- profiling +- simulator +- toolkit +- windows +ReleaseNotes: Auto-generated periodic build. +ReleaseNotesUrl: https://github.com/DynamoRIO/dynamorio/releases/tag/cronbuild-11.91.20531 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DynamoRIO/DynamoRIO/11.91.20531/DynamoRIO.DynamoRIO.yaml b/manifests/d/DynamoRIO/DynamoRIO/11.91.20531/DynamoRIO.DynamoRIO.yaml new file mode 100644 index 000000000000..4eec014b832b --- /dev/null +++ b/manifests/d/DynamoRIO/DynamoRIO/11.91.20531/DynamoRIO.DynamoRIO.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: DynamoRIO.DynamoRIO +PackageVersion: 11.91.20531 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/dRofus/dRofus/2.17.10.0/dRofus.dRofus.installer.yaml b/manifests/d/dRofus/dRofus/2.17.10.0/dRofus.dRofus.installer.yaml new file mode 100644 index 000000000000..d6db61235cd7 --- /dev/null +++ b/manifests/d/dRofus/dRofus/2.17.10.0/dRofus.dRofus.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: dRofus.dRofus +PackageVersion: 2.17.10.0 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +Protocols: +- drofus +ProductCode: '{CD93769E-4F65-4974-8C8A-40661173462F}' +AppsAndFeaturesEntries: +- UpgradeCode: '{937B2BBC-8903-4F61-91F2-11D4F445CE7C}' +Installers: +- Architecture: x64 + InstallerUrl: https://deploy.drofus.com/stable/drofus-setup-2.17.10.msi + InstallerSha256: A1BFCB545DD71CBCC5C726C05BBC6B6472141BBD53CB0B9F18B8F845E94CF95E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/dRofus/dRofus/2.17.10.0/dRofus.dRofus.locale.en-US.yaml b/manifests/d/dRofus/dRofus/2.17.10.0/dRofus.dRofus.locale.en-US.yaml new file mode 100644 index 000000000000..3ea1d940a858 --- /dev/null +++ b/manifests/d/dRofus/dRofus/2.17.10.0/dRofus.dRofus.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: dRofus.dRofus +PackageVersion: 2.17.10.0 +PackageLocale: en-US +Publisher: dRofus AS +PublisherUrl: https://www.drofus.com/ +PublisherSupportUrl: https://support.drofus.com/support/home +PrivacyUrl: https://www.drofus.com/privacy-policy +Author: dRofus AS +PackageName: dRofus +PackageUrl: https://www.drofus.com/download +License: Proprietary +ShortDescription: The leading planning and data management tool for the global building industry +Description: |- + dRofus is a unique planning, data management and BIM collaboration tool that provides all stakeholders with extensive workflow support and access to building information throughout the building lifecycle. + Unlike any other planning tool on the market, dRofus was developed directly on behalf of public building owners. Capturing client requirements (EIR), validating design solutions (BIM) against client requirements, management of public standards and equipment planning are core features in the software. + dRofus has strong ArchiCAD, Revit and IFC integration with bi-directional data sync capabilities. + Model data from each discipline is captured, together with planning data, non-geometric data and documents, in a centralized database accessible to all project stakeholders via the dRofus desktop client and dRofus Web. + Typically, stakeholders produce data using different software programs that have different data schemas, with different filetypes, distributed across multiple servers, located in multiple different locations - and often this data is not re-usable by others. + This is why dRofus has become an essential tool for BIM projects - we consolidate disparate data sets and convert them into project information, insight and intelligence accessible to all project stakeholders. +Tags: +- bim +ReleaseNotesUrl: https://www.drofus.com/release-notes +Documentations: +- DocumentLabel: User Guides + DocumentUrl: https://help.drofus.com/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/dRofus/dRofus/2.17.10.0/dRofus.dRofus.locale.zh-CN.yaml b/manifests/d/dRofus/dRofus/2.17.10.0/dRofus.dRofus.locale.zh-CN.yaml new file mode 100644 index 000000000000..4e4608b30f94 --- /dev/null +++ b/manifests/d/dRofus/dRofus/2.17.10.0/dRofus.dRofus.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: dRofus.dRofus +PackageVersion: 2.17.10.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 全球建筑行业领先的规划与数据管理工具 +Description: |- + dRofus 是一款独特的规划、数据管理与 BIM 协作工具,为所有利益相关方提供贯穿建筑全生命周期的工作流支持及建筑信息访问。 + 与其他市面规划工具不同,dRofus 直接受公共建筑业主委托开发。其核心功能包括:客户需求采集(EIR)、基于客户需求的设计方案验证(BIM)、公共标准管理以及设备规划。 + dRofus 与 ArchiCAD、Revit 和 IFC 深度集成,支持双向数据同步。各专业模型数据、规划数据、非几何数据及文档均存储于中央数据库,所有项目成员可通过 dRofus 桌面客户端和 Web 端实时访问。 + 传统工作模式中,利益相关方使用不同软件生成异构数据——这些数据遵循不同架构、存储为不同格式、分散于多台服务器、位于不同地理位置,且往往无法被他人复用。 + 正因如此,dRofus 已成为 BIM 项目不可或缺的工具:我们将碎片化数据集整合转化为可共享的项目信息、洞察与智能,赋能所有项目参与者。 +Documentations: +- DocumentLabel: 用户指南 + DocumentUrl: https://help.drofus.com/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/dRofus/dRofus/2.17.10.0/dRofus.dRofus.yaml b/manifests/d/dRofus/dRofus/2.17.10.0/dRofus.dRofus.yaml new file mode 100644 index 000000000000..7af4ab8303d7 --- /dev/null +++ b/manifests/d/dRofus/dRofus/2.17.10.0/dRofus.dRofus.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: dRofus.dRofus +PackageVersion: 2.17.10.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/dvcrn/markright/1.0.0/dvcrn.markright.installer.yaml b/manifests/d/dvcrn/markright/1.0.0/dvcrn.markright.installer.yaml new file mode 100644 index 000000000000..2d93bf5dde46 --- /dev/null +++ b/manifests/d/dvcrn/markright/1.0.0/dvcrn.markright.installer.yaml @@ -0,0 +1,41 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: dvcrn.markright +PackageVersion: 1.0.0 +InstallModes: +- interactive +- silent +FileExtensions: +- md +ReleaseDate: 2025-12-05 +Installers: +- InstallerLocale: en-US + Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/dvcrn/markright/releases/download/1.0.0/MarkRight_1.0.0_x64-setup.exe + InstallerSha256: BFA00BD1F2580FDC8020879B7DF8967BF45DA033108E995453E6ECC147CB49A0 + ProductCode: MarkRight + AppsAndFeaturesEntries: + - Publisher: d + ProductCode: MarkRight + InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\MarkRight' +- InstallerLocale: en-US + Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/dvcrn/markright/releases/download/1.0.0/MarkRight_1.0.0_x64_en-US.msi + InstallerSha256: 0091C166217C2D34FF8D8D0FAA2E229D4E77D6B993D8F5D4AD75774FEF5FD08E + ProductCode: '{322F1BA7-27A4-4A5E-A45E-5BD7013C8DB1}' + AppsAndFeaturesEntries: + - DisplayName: MarkRight + Publisher: d + DisplayVersion: 1.0.0 + ProductCode: '{322F1BA7-27A4-4A5E-A45E-5BD7013C8DB1}' + UpgradeCode: '{E8BF499E-768C-547C-B791-75352738801E}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/MarkRight' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/dvcrn/markright/1.0.0/dvcrn.markright.locale.en-US.yaml b/manifests/d/dvcrn/markright/1.0.0/dvcrn.markright.locale.en-US.yaml new file mode 100644 index 000000000000..b8e10b9e17a1 --- /dev/null +++ b/manifests/d/dvcrn/markright/1.0.0/dvcrn.markright.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: dvcrn.markright +PackageVersion: 1.0.0 +PackageLocale: en-US +Publisher: dvcrn +PublisherUrl: https://github.com/dvcrn/markright +PublisherSupportUrl: https://github.com/dvcrn/markright/issues +Author: dvcrn +PackageName: MarkRight +PackageUrl: https://github.com/dvcrn/markright +License: GPL-3.0 +LicenseUrl: https://github.com/dvcrn/markright/blob/HEAD/LICENSE +Copyright: Copyright (C) 2007 Free Software Foundation, Inc. +CopyrightUrl: https://raw.githubusercontent.com/dvcrn/markright/0.1.11/LICENSE +ShortDescription: a minimalistic github flavored markdown editor +Moniker: markright +Tags: +- editor +- electron +- github +- markdown +ReleaseNotes: |- + What's Changed + Full modernization of MarkRight: + - Tauri instead of Electron + - New logo + - Update cljs, clojure, shadow-cljs + - Replace Om with Reagent + - Replace NPM with Bun + - Remove Bower + - Use Mise for deps + - Notarize and sign macOS version +ReleaseNotesUrl: https://github.com/dvcrn/markright/releases/tag/1.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/dvcrn/markright/1.0.0/dvcrn.markright.yaml b/manifests/d/dvcrn/markright/1.0.0/dvcrn.markright.yaml new file mode 100644 index 000000000000..4d737051e583 --- /dev/null +++ b/manifests/d/dvcrn/markright/1.0.0/dvcrn.markright.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: dvcrn.markright +PackageVersion: 1.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/dzonder/sshells/0.1.5/dzonder.sshells.installer.yaml b/manifests/d/dzonder/sshells/0.1.5/dzonder.sshells.installer.yaml new file mode 100644 index 000000000000..a5f15c1d4cba --- /dev/null +++ b/manifests/d/dzonder/sshells/0.1.5/dzonder.sshells.installer.yaml @@ -0,0 +1,17 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: dzonder.sshells +PackageVersion: 0.1.5 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: sshells.exe-v0.1.5-x86_64-pc-windows-msvc/sshells.exe + PortableCommandAlias: sshells +ReleaseDate: 2025-09-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/dzonder/sshells/releases/download/v0.1.5/sshells.exe-v0.1.5-x86_64-pc-windows-msvc.zip + InstallerSha256: 9D6349C7C22E8FFD20BF050C9D98EEDC556F29BE7B07F79A1F7EC63D732A8082 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/dzonder/sshells/0.1.5/dzonder.sshells.locale.en-US.yaml b/manifests/d/dzonder/sshells/0.1.5/dzonder.sshells.locale.en-US.yaml new file mode 100644 index 000000000000..2eca50f229de --- /dev/null +++ b/manifests/d/dzonder/sshells/0.1.5/dzonder.sshells.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: dzonder.sshells +PackageVersion: 0.1.5 +PackageLocale: en-US +Publisher: dzonder +PublisherUrl: https://dzonder.net/ +PublisherSupportUrl: https://github.com/dzonder/sshells/issues +PackageName: SSHells +PackageUrl: https://github.com/dzonder/sshells +License: MIT +LicenseUrl: https://github.com/dzonder/sshells/blob/HEAD/LICENSE +ShortDescription: Simple utility for picking OpenSSH shell on Windows after establishing SSH connection +Moniker: sshells +Tags: +- openssh +- shell +- ssh +- tools +- windows +ReleaseNotesUrl: https://github.com/dzonder/sshells/releases/tag/v0.1.5 +InstallationNotes: https://github.com/dzonder/sshells/blob/master/README.md +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/dzonder/sshells/0.1.5/dzonder.sshells.yaml b/manifests/d/dzonder/sshells/0.1.5/dzonder.sshells.yaml new file mode 100644 index 000000000000..c91fe2b528e3 --- /dev/null +++ b/manifests/d/dzonder/sshells/0.1.5/dzonder.sshells.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: dzonder.sshells +PackageVersion: 0.1.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/e/Elgato/WaveLink/3.0.3.2592/Elgato.WaveLink.installer.yaml b/manifests/e/Elgato/WaveLink/3.0.3.2592/Elgato.WaveLink.installer.yaml new file mode 100644 index 000000000000..169cfa78e51d --- /dev/null +++ b/manifests/e/Elgato/WaveLink/3.0.3.2592/Elgato.WaveLink.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: Elgato.WaveLink +PackageVersion: 3.0.3.2592 +Platform: +- Windows.Desktop +- Windows.Universal +MinimumOSVersion: 10.0.22000.0 +InstallerType: msix +Commands: +- Elgato.WaveLink +Protocols: +- wavelink +FileExtensions: +- wavelink +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.WindowsAppRuntime.1.8 + - PackageIdentifier: Microsoft.VCLibs.Desktop.14 +PackageFamilyName: Elgato.WaveLink_g54w8ztgkx496 +RestrictedCapabilities: +- packageManagement +- packageQuery +- runFullTrust +Installers: +- Architecture: x64 + InstallerUrl: https://edge.elgato.com/egc/windows/ewlw/3.0.3/Elgato.WaveLink_3.0.3.2592_x64.msix + InstallerSha256: AC6B580318CEA18D30E6853C2362B3434F5634BA3B75A3A608623CF5597E6190 + SignatureSha256: 61E2E5C378D6AD13F6864BCE4992E990CD0A891EC9BD1F4109B38136B3FA108A +- Architecture: arm64 + InstallerUrl: https://edge.elgato.com/egc/windows/ewlw/3.0.3/Elgato.WaveLink_3.0.3.2592_arm64.msix + InstallerSha256: 6F9C0F18862C0A176F4A8692FAB956B2F49E97859EF114AE3AF22FAF61D0B4CC + SignatureSha256: 5B9C0DDE372C555A60E2EF6722DF68E9DFC186A18B66F2FF2C587918DE7F070B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/e/Elgato/WaveLink/3.0.3.2592/Elgato.WaveLink.locale.en-US.yaml b/manifests/e/Elgato/WaveLink/3.0.3.2592/Elgato.WaveLink.locale.en-US.yaml new file mode 100644 index 000000000000..dae680efd70e --- /dev/null +++ b/manifests/e/Elgato/WaveLink/3.0.3.2592/Elgato.WaveLink.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: Elgato.WaveLink +PackageVersion: 3.0.3.2592 +PackageLocale: en-US +Publisher: Corsair Memory, Inc. +PublisherUrl: https://www.elgato.com/ +PublisherSupportUrl: https://help.elgato.com/ +PrivacyUrl: https://www.elgato.com/s/privacy-policy +Author: Corsair Memory Inc. +PackageName: Elgato Wave Link +PackageUrl: https://www.elgato.com/s/downloads +License: Proprietary +LicenseUrl: https://www.elgato.com/s/terms-of-use +Copyright: © 2019-2026 Corsair Memory, Inc. All rights reserved. +ShortDescription: Wave Link gives you ultimate control of your Twitch stream, YouTube video or podcast audio. +Moniker: wavelink +Tags: +- audio +- broadcast +- mic +- stream +- wavelink +ReleaseNotes: |- + What's new in Wave Link 3.0.3? + This hotfix addresses further stability issues, including crashes when closing routed applications and a freeze related to audio device notifications. + 🛠️ Fixes & performance improvements + - Fixed an issue where disabling a VST effect was not taking effect on Wave and external input channels + - Improved stability when closing a routed application + - Fixed a freeze that could occur when the volume or mute state of an audio device was changed outside of Wave Link + + Want to share feedback on Wave Link 3.0.3? Connect with us: + - Leave a comment on our Subreddit + - Chat with fellow community members on Discord + - Hit up @elgato on X + - Discover more on Explorer + - Contact our Support Team +ReleaseNotesUrl: https://edge.elgato.com/egc/wl_content/releasenotes/3.0.3_Release.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/e/Elgato/WaveLink/3.0.3.2592/Elgato.WaveLink.locale.zh-CN.yaml b/manifests/e/Elgato/WaveLink/3.0.3.2592/Elgato.WaveLink.locale.zh-CN.yaml new file mode 100644 index 000000000000..87644e5142c2 --- /dev/null +++ b/manifests/e/Elgato/WaveLink/3.0.3.2592/Elgato.WaveLink.locale.zh-CN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Elgato.WaveLink +PackageVersion: 3.0.3.2592 +PackageLocale: zh-CN +PublisherUrl: https://www.elgato.com/cn/zh +PrivacyUrl: https://www.elgato.com/cn/zh/s/privacy-policy +PackageUrl: https://www.elgato.com/cn/zh/s/downloads +License: 专有软件 +LicenseUrl: https://www.elgato.com/cn/zh/s/terms-of-use +ShortDescription: Wave Link 帮助您完全掌控您的 Twitch 直播、YouTube 视频或播客音频。 +Tags: +- wavelink +- 串流 +- 直播 +- 音频 +- 麦克风 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/e/Elgato/WaveLink/3.0.3.2592/Elgato.WaveLink.yaml b/manifests/e/Elgato/WaveLink/3.0.3.2592/Elgato.WaveLink.yaml new file mode 100644 index 000000000000..01cbf4d046ea --- /dev/null +++ b/manifests/e/Elgato/WaveLink/3.0.3.2592/Elgato.WaveLink.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: Elgato.WaveLink +PackageVersion: 3.0.3.2592 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/e/ElyPrismLauncher/ElyPrismLauncher/10.0.5/ElyPrismLauncher.ElyPrismLauncher.installer.yaml b/manifests/e/ElyPrismLauncher/ElyPrismLauncher/10.0.5/ElyPrismLauncher.ElyPrismLauncher.installer.yaml new file mode 100644 index 000000000000..b9a0878d24a9 --- /dev/null +++ b/manifests/e/ElyPrismLauncher/ElyPrismLauncher/10.0.5/ElyPrismLauncher.ElyPrismLauncher.installer.yaml @@ -0,0 +1,58 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ElyPrismLauncher.ElyPrismLauncher +PackageVersion: 10.0.5 +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ReleaseDate: 2026-02-15 +Installers: +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: elyprismlauncher.exe + InstallerUrl: https://github.com/ElyPrismLauncher/Launcher/releases/download/10.0.5/ElyPrismLauncher-Windows-MSVC-Portable-10.0.5.zip + InstallerSha256: 0D8AEB73654F1E104E6E28994BF9C746B5720CDB9C01684ABFA9B86EBC41F541 +- Architecture: arm64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: elyprismlauncher.exe + InstallerUrl: https://github.com/ElyPrismLauncher/Launcher/releases/download/10.0.5/ElyPrismLauncher-Windows-MSVC-arm64-Portable-10.0.5.zip + InstallerSha256: 74917A51691242C47FF21E9C6B202A0BA98FAF035E6C7C5231ABE3C4DB8859B5 +- InstallerLocale: en-US + Architecture: x86 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/ElyPrismLauncher/Launcher/releases/download/10.0.5/ElyPrismLauncher-Windows-MSVC-Setup-10.0.5.exe + InstallerSha256: B446E852456512F3743B4B0025795EDBFD7510BCA9E1DD30204CDEB20C032496 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + ProductCode: ElyPrismLauncher + AppsAndFeaturesEntries: + - Publisher: ElyPrismLauncher Contributors + ProductCode: ElyPrismLauncher + InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\Programs\ElyPrismLauncher' +- InstallerLocale: en-US + Architecture: arm64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/ElyPrismLauncher/Launcher/releases/download/10.0.5/ElyPrismLauncher-Windows-MSVC-arm64-Setup-10.0.5.exe + InstallerSha256: 04725F8211EB763A250CA2366A461D4ACA7EA295FE523133648A0ED5A4A45B57 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 + ProductCode: ElyPrismLauncher + AppsAndFeaturesEntries: + - Publisher: ElyPrismLauncher Contributors + ProductCode: ElyPrismLauncher + InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\Programs\ElyPrismLauncher' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/e/ElyPrismLauncher/ElyPrismLauncher/10.0.5/ElyPrismLauncher.ElyPrismLauncher.locale.en-US.yaml b/manifests/e/ElyPrismLauncher/ElyPrismLauncher/10.0.5/ElyPrismLauncher.ElyPrismLauncher.locale.en-US.yaml new file mode 100644 index 000000000000..a337936cb28e --- /dev/null +++ b/manifests/e/ElyPrismLauncher/ElyPrismLauncher/10.0.5/ElyPrismLauncher.ElyPrismLauncher.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created with Devicie using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ElyPrismLauncher.ElyPrismLauncher +PackageVersion: 10.0.5 +PackageLocale: en-US +Publisher: ElyPrismLauncher +PublisherUrl: https://elyprismlauncher.github.io/ +PublisherSupportUrl: https://github.com/ElyPrismLauncher/ElyPrismLauncher/issues +Author: ElyPrismLauncher Contributors +PackageName: ElyPrismLauncher +PackageUrl: https://github.com/ElyPrismLauncher/ElyPrismLauncher +License: GPL-3.0 +LicenseUrl: https://github.com/ElyPrismLauncher/Launcher/blob/HEAD/LICENSE +Copyright: © 2022-2025 Prism Launcher Contributors\n© 2021-2022 PolyMC Contributors\n© 2012-2021 MultiMC Contributors +CopyrightUrl: https://github.com/ElyPrismLauncher/ElyPrismLauncher/blob/develop/COPYING.md +ShortDescription: This fork of Prism Launcher adds integrated support for Ely.by accounts. +Tags: +- authlib-injector +- elyby +- launcher +- minecraft +- multimc +- multimc5 +- polymc +- prismlauncher +ReleaseNotes: |- + See Prism Launcher changelogs: + 10.0.5 + If you're not sure what to download on Windows, click ElyPrismLauncher-Windows-MSVC-Setup-10.0.5.exe + Flatpak users can install the launcher and its repository with this command (add --user if needed): flatpak install https://elyprismlauncher.github.io/flatpak/elyprismlauncher.flatpakref) + If you're encountering problems downloading metadata, such as Component metadata update task failed, set Metadata Server in Settings -> Services to https://elyprismlauncher.github.io/meta/v1 +ReleaseNotesUrl: https://github.com/ElyPrismLauncher/Launcher/releases/tag/10.0.5 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/e/ElyPrismLauncher/ElyPrismLauncher/10.0.5/ElyPrismLauncher.ElyPrismLauncher.yaml b/manifests/e/ElyPrismLauncher/ElyPrismLauncher/10.0.5/ElyPrismLauncher.ElyPrismLauncher.yaml new file mode 100644 index 000000000000..aa5d093942e2 --- /dev/null +++ b/manifests/e/ElyPrismLauncher/ElyPrismLauncher/10.0.5/ElyPrismLauncher.ElyPrismLauncher.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: ElyPrismLauncher.ElyPrismLauncher +PackageVersion: 10.0.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/e/edde746/Plezy/1.29.0/edde746.Plezy.installer.yaml b/manifests/e/edde746/Plezy/1.29.0/edde746.Plezy.installer.yaml new file mode 100644 index 000000000000..a7cbecd4eb7e --- /dev/null +++ b/manifests/e/edde746/Plezy/1.29.0/edde746.Plezy.installer.yaml @@ -0,0 +1,30 @@ +# 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: edde746.Plezy +PackageVersion: 1.29.0 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Custom: /WINGET=1 /NORUN=1 +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: '{4213385e-f7be-4f2b-95f9-54082a28bb8f}_is1' +ReleaseDate: 2026-03-23 +AppsAndFeaturesEntries: +- ProductCode: '{4213385e-f7be-4f2b-95f9-54082a28bb8f}_is1' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Plezy' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/edde746/plezy/releases/download/1.29.0/plezy-windows-installer.exe + InstallerSha256: A3BF599A136B693F55FC2C44C87954F0089E721355473262FC21DC96756C8D0D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/e/edde746/Plezy/1.29.0/edde746.Plezy.locale.en-US.yaml b/manifests/e/edde746/Plezy/1.29.0/edde746.Plezy.locale.en-US.yaml new file mode 100644 index 000000000000..04d6d8c47d45 --- /dev/null +++ b/manifests/e/edde746/Plezy/1.29.0/edde746.Plezy.locale.en-US.yaml @@ -0,0 +1,48 @@ +# 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: edde746.Plezy +PackageVersion: 1.29.0 +PackageLocale: en-US +Publisher: edde746 +PublisherUrl: https://github.com/edde746 +PublisherSupportUrl: https://github.com/edde746/plezy/issues +Author: edde746 +PackageName: Plezy +PackageUrl: https://github.com/edde746/plezy +License: GPL-3.0 +LicenseUrl: https://github.com/edde746/plezy/blob/HEAD/LICENSE +ShortDescription: A media streaming client for Plex +Tags: +- media +- player +- plex +- streaming +- video +ReleaseNotes: |- + Added + - Screen lock + - Rewind on resume setting + Fixed + - Live TV channels for non-admin users + - External subtitles on Android mpv + - Disable impeller on Tensor/NVIDIA GPUs + - Disable PiP on Android TV + - Profile select back button bypass + - Match content frame rate + - Linux titlebar height on non-GNOME DEs + - Overlay sheet position, scroll-to-selected in bottom sheets + - PiP aspect ratio after ExoPlayer→mpv fallback + - CPU usage when paused and backgrounded on macOS + - PiP background thread layout crash + - Background isolate shutdown on iOS + - Race conditions in mpv dispose and track manager + - Track selection and external subs after mpv fallback + - Subtitle track selection bugs + Improved + - Reduce hub section vertical spacing + - Switch to libmpv-android fork, fixing ANR + Full Changelog: 1.28.0...1.29.0 +ReleaseNotesUrl: https://github.com/edde746/plezy/releases/tag/1.29.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/e/edde746/Plezy/1.29.0/edde746.Plezy.yaml b/manifests/e/edde746/Plezy/1.29.0/edde746.Plezy.yaml new file mode 100644 index 000000000000..40954902556b --- /dev/null +++ b/manifests/e/edde746/Plezy/1.29.0/edde746.Plezy.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: edde746.Plezy +PackageVersion: 1.29.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 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 diff --git a/manifests/f/FilesCommunity/FilesPreview/4.0.37.0/FilesCommunity.FilesPreview.installer.yaml b/manifests/f/FilesCommunity/FilesPreview/4.0.37.0/FilesCommunity.FilesPreview.installer.yaml new file mode 100644 index 000000000000..42aa18f1fc76 --- /dev/null +++ b/manifests/f/FilesCommunity/FilesPreview/4.0.37.0/FilesCommunity.FilesPreview.installer.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: FilesCommunity.FilesPreview +PackageVersion: 4.0.37.0 +MinimumOSVersion: 10.0.19041.0 +InstallerType: msix +InstallModes: +- silent +- silentWithProgress +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.WindowsAppRuntime.1.8 + - PackageIdentifier: Microsoft.VCLibs.Desktop.14 +PackageFamilyName: FilesPreview_1y0xx7n9077q4 +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.files.community/files/preview/Files.Package_4.0.37.0_Test/Files.Package_4.0.37.0_x64_arm64.msixbundle + InstallerSha256: da692181332ea1d46f151c04d5d6460fbd3ae274ff1088b96a88f92c9d8bf039 +- Architecture: arm64 + InstallerUrl: https://cdn.files.community/files/preview/Files.Package_4.0.37.0_Test/Files.Package_4.0.37.0_x64_arm64.msixbundle + InstallerSha256: da692181332ea1d46f151c04d5d6460fbd3ae274ff1088b96a88f92c9d8bf039 +ManifestType: installer +ManifestVersion: 1.6.0 +ReleaseDate: 2026-03-24 diff --git a/manifests/f/FilesCommunity/FilesPreview/4.0.37.0/FilesCommunity.FilesPreview.locale.en-US.yaml b/manifests/f/FilesCommunity/FilesPreview/4.0.37.0/FilesCommunity.FilesPreview.locale.en-US.yaml new file mode 100644 index 000000000000..5e0ba61e4d43 --- /dev/null +++ b/manifests/f/FilesCommunity/FilesPreview/4.0.37.0/FilesCommunity.FilesPreview.locale.en-US.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: FilesCommunity.FilesPreview +PackageVersion: 4.0.37.0 +PackageLocale: en-US +Publisher: Files Community +PublisherUrl: https://files.community +PackageName: Files - Preview +PackageUrl: https://github.com/files-community/Files +License: MIT +LicenseUrl: https://github.com/files-community/Files/blob/main/LICENSE +ShortDescription: A modern file manager that helps users organize their files and folders +Moniker: filespreview +ReleaseNotesUrl: https://files.community/blog/posts/v4-0-37 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/f/FilesCommunity/FilesPreview/4.0.37.0/FilesCommunity.FilesPreview.yaml b/manifests/f/FilesCommunity/FilesPreview/4.0.37.0/FilesCommunity.FilesPreview.yaml new file mode 100644 index 000000000000..4c7ebee4d49b --- /dev/null +++ b/manifests/f/FilesCommunity/FilesPreview/4.0.37.0/FilesCommunity.FilesPreview.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: FilesCommunity.FilesPreview +PackageVersion: 4.0.37.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/g/GitTower/GitFlowNext/1.0.0/GitTower.GitFlowNext.installer.yaml b/manifests/g/GitTower/GitFlowNext/1.0.0/GitTower.GitFlowNext.installer.yaml new file mode 100644 index 000000000000..e758b17e4b29 --- /dev/null +++ b/manifests/g/GitTower/GitFlowNext/1.0.0/GitTower.GitFlowNext.installer.yaml @@ -0,0 +1,26 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GitTower.GitFlowNext +PackageVersion: 1.0.0 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +Commands: + - git-flow +ReleaseDate: 2026-02-08 +Installers: + - Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: git-flow-v1.0.0-windows-386.exe + PortableCommandAlias: git-flow.exe + InstallerUrl: https://github.com/gittower/git-flow-next/releases/download/v1.0.0/git-flow-next-v1.0.0-windows-386.zip + InstallerSha256: 5863EA1723077AFA8578AB9860637467EF30749FADC4AA370B1D16A055CD62F3 + - Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: git-flow-v1.0.0-windows-amd64.exe + PortableCommandAlias: git-flow.exe + InstallerUrl: https://github.com/gittower/git-flow-next/releases/download/v1.0.0/git-flow-next-v1.0.0-windows-amd64.zip + InstallerSha256: CA0CCB362D3AEDDF88287241E7D62544378675C84ACA2A41864D7868C957EA0A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/GitTower/GitFlowNext/1.0.0/GitTower.GitFlowNext.locale.en-US.yaml b/manifests/g/GitTower/GitFlowNext/1.0.0/GitTower.GitFlowNext.locale.en-US.yaml new file mode 100644 index 000000000000..0b734373b11b --- /dev/null +++ b/manifests/g/GitTower/GitFlowNext/1.0.0/GitTower.GitFlowNext.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GitTower.GitFlowNext +PackageVersion: 1.0.0 +PackageLocale: en-US +Publisher: GitTower +PublisherUrl: https://github.com/gittower +PublisherSupportUrl: https://github.com/gittower/git-flow-next/issues +Author: GitTower +PackageName: GitTower GitFlowNext +PackageUrl: https://github.com/gittower/git-flow-next +License: BSD 2-Clause +LicenseUrl: https://github.com/gittower/git-flow-next/blob/v1.0.0/LICENSE +Copyright: Copyright (c) 2024, git-flow-next contributors +ShortDescription: A modern reimplementation of git-flow. +Description: |- + A modern reimplementation of git-flow in Go that offers greater flexibility + while maintaining backward compatibility with the original git-flow and git-flow-avh. +Moniker: git-flow +Tags: + - git + - git-flow + - git-flow-next + - gitflow +ReleaseNotes: |- + Added + - --no-verify option for finish command to skip git hooks during merge + - --merge-message and --update-message options for finish command with placeholder support + - Git config support for merge message options (gitflow..finish.mergeMessage, gitflow..finish.updateMessage) + - Configuration scope flags for init command (--local, --global, --system, --file) + - --force option for init command to allow reconfiguration + - Remote sync check before finish to ensure local branch is up-to-date with remote + Changed + - Default fetch behavior changed to true for finish command + Fixed + - Hooks now receive correct positional arguments + Installation + See the installation instructions in the README. + Checksums + SHA-256 checksums for the release artifacts are available in the checksums.txt file. +ReleaseNotesUrl: https://github.com/gittower/git-flow-next/releases/tag/v1.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GitTower/GitFlowNext/1.0.0/GitTower.GitFlowNext.yaml b/manifests/g/GitTower/GitFlowNext/1.0.0/GitTower.GitFlowNext.yaml new file mode 100644 index 000000000000..869dc30a35ab --- /dev/null +++ b/manifests/g/GitTower/GitFlowNext/1.0.0/GitTower.GitFlowNext.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: GitTower.GitFlowNext +PackageVersion: 1.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/ggml/llamacpp/b8496/ggml.llamacpp.installer.yaml b/manifests/g/ggml/llamacpp/b8496/ggml.llamacpp.installer.yaml new file mode 100644 index 000000000000..c0706888ea83 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b8496/ggml.llamacpp.installer.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b8496 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: llama-batched-bench.exe +- RelativeFilePath: llama-bench.exe +- RelativeFilePath: llama-cli.exe +- RelativeFilePath: llama-gguf-split.exe +- RelativeFilePath: llama-imatrix.exe +- RelativeFilePath: llama-mtmd-cli.exe +- RelativeFilePath: llama-perplexity.exe +- RelativeFilePath: llama-quantize.exe +- RelativeFilePath: llama-server.exe +- RelativeFilePath: llama-tokenize.exe +- RelativeFilePath: llama-tts.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2026-03-24 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ggml-org/llama.cpp/releases/download/b8496/llama-b8496-bin-win-vulkan-x64.zip + InstallerSha256: 7F0EDB6CC1AA2549F1259E1A010E89BE680BF103F7B4A1D80DC5DAFFCBB6C624 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/ggml/llamacpp/b8496/ggml.llamacpp.locale.en-US.yaml b/manifests/g/ggml/llamacpp/b8496/ggml.llamacpp.locale.en-US.yaml new file mode 100644 index 000000000000..bfc19426803a --- /dev/null +++ b/manifests/g/ggml/llamacpp/b8496/ggml.llamacpp.locale.en-US.yaml @@ -0,0 +1,48 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b8496 +PackageLocale: en-US +Publisher: ggml +PublisherUrl: https://github.com/ggml-org +PublisherSupportUrl: https://github.com/ggml-org/llama.cpp/issues +PackageName: llama.cpp +PackageUrl: https://github.com/ggml-org/llama.cpp +License: MIT +LicenseUrl: https://github.com/ggml-org/llama.cpp/blob/HEAD/LICENSE +ShortDescription: LLM inference in C/C++ +Tags: +- ggml +- llama +ReleaseNotes: |- + common : replace wrap_for_generation with a prefix convenience function and fix gpt-oss (#20912) + macOS/iOS: + - macOS Apple Silicon (arm64) + - macOS Intel (x64) + - iOS XCFramework + Linux: + - Ubuntu x64 (CPU) + - Ubuntu x64 (Vulkan) + - Ubuntu x64 (ROCm 7.2) + - Ubuntu s390x (CPU) + - Ubuntu x64 (OpenVINO) + Windows: + - Windows x64 (CPU) + - Windows arm64 (CPU) + - Windows x64 (CUDA 12) - CUDA 12.4 DLLs + - Windows x64 (CUDA 13) - CUDA 13.1 DLLs + - Windows x64 (Vulkan) + - Windows x64 (SYCL) + - Windows x64 (HIP) + openEuler: + - openEuler x86 (310p) + - openEuler x86 (910b, ACL Graph) + - openEuler aarch64 (310p) + - openEuler aarch64 (910b, ACL Graph) +ReleaseNotesUrl: https://github.com/ggml-org/llama.cpp/releases/tag/b8496 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/ggml-org/llama.cpp/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/ggml/llamacpp/b8496/ggml.llamacpp.yaml b/manifests/g/ggml/llamacpp/b8496/ggml.llamacpp.yaml new file mode 100644 index 000000000000..54962f226d0e --- /dev/null +++ b/manifests/g/ggml/llamacpp/b8496/ggml.llamacpp.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b8496 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/h/HarbourMasters/ShipofHarkinian/9.2.0/HarbourMasters.ShipofHarkinian.installer.yaml b/manifests/h/HarbourMasters/ShipofHarkinian/9.2.0/HarbourMasters.ShipofHarkinian.installer.yaml new file mode 100644 index 000000000000..5dd9f4e29249 --- /dev/null +++ b/manifests/h/HarbourMasters/ShipofHarkinian/9.2.0/HarbourMasters.ShipofHarkinian.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: HarbourMasters.ShipofHarkinian +PackageVersion: 9.2.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: soh.exe +UpgradeBehavior: install +ReleaseDate: 2026-03-22 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/HarbourMasters/Shipwright/releases/download/9.2.0/SoH-Ackbar-Alpha-Win64.zip + InstallerSha256: 482F2AF731A208F0FE7E016329B6614575EFDD11B3CE0E8F372EB61F85F39FD8 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/HarbourMasters/ShipofHarkinian/9.2.0/HarbourMasters.ShipofHarkinian.locale.en-US.yaml b/manifests/h/HarbourMasters/ShipofHarkinian/9.2.0/HarbourMasters.ShipofHarkinian.locale.en-US.yaml new file mode 100644 index 000000000000..1233fbd21237 --- /dev/null +++ b/manifests/h/HarbourMasters/ShipofHarkinian/9.2.0/HarbourMasters.ShipofHarkinian.locale.en-US.yaml @@ -0,0 +1,174 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: HarbourMasters.ShipofHarkinian +PackageVersion: 9.2.0 +PackageLocale: en-US +Publisher: Harbour Masters +PublisherUrl: https://www.shipofharkinian.com/ +PublisherSupportUrl: https://www.shipofharkinian.com/faq +Author: Harbour Masters +PackageName: Ship of Harkinian +PackageUrl: https://www.shipofharkinian.com/ +License: Unknown +Copyright: © Harbour Masters +ShortDescription: 'A source port of the 1998 Nintendo 64 game The Legend of Zelda: Ocarina of Time.' +Tags: +- ocarina-of-time +- source-port +- zelda +ReleaseNotes: |- + Download + Windows Linux / Steam Deck macOS + Setup Guide + https://www.shipofharkinian.com/setup-guide + Changes + The team has been hard at work continuing to clean up the code to use hooks & refactoring logic for future work. + This quiet release only brings small features like Anchor to play online with friends. Even if you aren’t playing with friends, join the global room while you are playing solo and you’ll be able to see all other players in the global room without the inventory & world syncing features enabled in normal rooms! See the Network tab for more information + Two new accessibility options: remove sandstorm in Haunted Wasteland, remove wobble effect in Jabu Jabu + New enhancements: Arrow cycling, remote bombchu, decouple Z-targeting lock-on from switching targets + Mods can now modify equipment models without having to include Link's hands + Randomizer Changes + Fairysanity improvements: can catch checks with bottle, gossip stone fairy checks are instantly collected + Pots now have CMC. Size option has been removed from CSMC. Chest CMC has been updated with more categories + Medallion Locked Trials bar door to trials until their medallion is collected + Progressive Bombchu Bags are now an option, with a capacity of 20/30/50 + Several new shuffles with integration to view in Quest Status on pause menu with C-up: + - Shuffle Bean Souls. Adds 10 souls for each of the 10 bean patches. Implemented alongside option to start with beans planted + - Shuffle Masks + - Shuffle Crawl + - Shuffle Grab. Adds a progressive upgrade before Goron Bracelet + - Shuffle Climb + - Shuffle Speak. Adds 6 jabber nuts which must be collected to initiate Speak command with the 6 races Deku, Gerudo, Goron, Hylian, Kokiri, & Zora. Kaepora Gaebora is wise enough to speak all 6 tongues + - Shuffle Open Chest. For the memes + - Shuffle Ganon's Tower. Adds Ganon's Tower into the boss entrances pool + - Bushsanity. Adds checks for walking through bushes in Hyrule Field & Zora's Fountain + - Shuffle Roc's Feather + What's Changed + - Modularize Floor Switches fix hook by @JordanLongstaff in #5870 + - Modularize scene-specific Dirt Path fix by @JordanLongstaff in #5871 + - Modularize Reset Navi Timer hook by @JordanLongstaff in #5872 + - Shuffle Fairy - Gossip stone fairy improvement by @aMannus in #5890 + - Copper -> Dev 10/29 by @Malkierian in #5901 + - refactor ice cavern by @serprex in #5661 + - Copper -> Develop 11/6 by @Malkierian in #5927 + - Add merge strategy for preset sections by @garrettjoecox in #5935 + - Various hooks in preparation for anchor by @garrettjoecox in #5929 + - Stop creating timesplits file on init, and gitignore it by @garrettjoecox in #5933 + - Modularize Mirrored World mode hook by @JordanLongstaff in #5930 + - Modularize custom skeleton hooks by @JordanLongstaff in #5931 + - Modularize boss defeat timestamp hook by @JordanLongstaff in #5886 + - Tweaks to ENABLE_REMOTE_CONTROL usage & sail hooks by @garrettjoecox in #5928 + - Fix menu path reassignment by @garrettjoecox in #5949 + - Refactor BotW logic by @Pepper0ni in #5649 + - refactor shadow logic by @serprex in #5650 + - Fix seed generation issue with shadow logic refactor by @Pepper0ni in #5957 + - Refactor zoras river logic by @Pepper0ni in #5907 + - Load metadata without LoadFile() on startup by @Malkierian in #5817 + - Modularize permanent loss mod hooks by @JordanLongstaff in #5948 + - Anchor by @garrettjoecox in #4910 + - Copper -> Develop 11/14 by @Malkierian in #5961 + - Copper -> Dev fix (#5962) by @Malkierian in #5963 + - Fix Boot With Networking Disabled by @Malkierian in #5964 + - Use OE for storing client ID, remove remaining game state touch point in network thread by @garrettjoecox in #5969 + - refactor gtg by @serprex in #5662 + - Added new trick by @PABessero in #5972 + - Modularize Hurt Container mode hook by @JordanLongstaff in #5874 + - Modularize equipment hand patch hooks by @JordanLongstaff in #5876 + - A bit of cleanup on multiple hooks by @JordanLongstaff in #5879 + - Anchor additions/fixes by @garrettjoecox in #5999 + - Fix logic gf by @TheLynk in #6003 + - Check tracker improvements by @garrettjoecox in #6000 + - Modularize Hyper Enemies hook by @JordanLongstaff in #5968 + - hookify cosmetics editor by @serprex in #5900 + - Better Debug Warp: Remember Link's Age and Day/Night Settings by @nclok1405 in #5981 + - Add Expand All/Collapse All buttons to Hook Debugger by @nclok1405 in #6002 + - Apply ImGui scaling when using presets by @JordanLongstaff in #5991 + - Improvements to Custom Kaleido Menu by @leggettc18 in #5997 + - Stop hiding key counts with skeleton key, and grant all keys by @garrettjoecox in #5932 + - Disable Screen Flash for Finishing Blow option by @nclok1405 in #5988 + - Add in Progressive Bombchu Bags by @leggettc18 in #5836 + - Fix miss in previous hookify cosmetics editor PR by @serprex in #6006 + - refactor: split out location_access/root, & combine ammo events by @serprex in #5821 + - refactor deku tree by @serprex in #5854 + - refactor ganon's castle by @serprex in #5664 + - refactor dodongo's cavern by @serprex in #5855 + - Refactor Forest by @serprex in #5673 + - Fix rupee overflow in StartingItemGive by @garrettjoecox in #6039 + - Reverted removal of 'ClearItemLocations' to fix #6036 by @jeromkiller in #6044 + - Fix mixed up chest names in shadow MQ falling spikes room by @serprex in #6047 + - refactor windmill by @serprex in #6027 + - Fairysanity: allow using bottle by @serprex in #6021 + - RT_BIG_SKULLTULA_PAUSE_LIFT by @serprex in #6014 + - RT_WATER_IRON_BOOTS_LEDGE_GRAB by @serprex in #6009 + - Add Gerudo Fighter to Enemy Randomizer by @nclok1405 in #6005 + - RT_ICE_STALAGMITE_CLIP, RT_ICE_STALAGMITE_HOOKSHOT by @serprex in #5909 + - bushsanity by @serprex in #5941 + - more perm flags by @serprex in #5676 + - Add GetCheckPrice by @xxAtrain223 in #5718 + - Fix custom tunics not updating on scene change by @aMannus in #6026 + - Convert "Big Four" hook register functions to init functions by @JordanLongstaff in #5984 + - [Enhancement] Unequip C-items by @OtherBlue in #6043 + - Shuffle Bean Souls by @serprex in #5833 + - RT_GTG_LAVA_JUMP by @serprex in #5987 + - Add missing extension trick to Shadow MQ, bombing spirit trial switch, & add non-combat giant knife logic by @serprex in #5983 + - Back-port fixes from holiday build by @garrettjoecox in #6060 + - Bump LUS by @garrettjoecox in #6061 + - Add support for warp points in the dev tools, as well as a boot to warp point option by @garrettjoecox in #6037 + - Make Custom Tunic Local by @Jepvid in #6065 + - Remove Here Parameter and Rename to AnyAgeTime by @xxAtrain223 in #5714 + - refactor jabu by @serprex in #5671 + - Combine mq/vanilla flame wall skip tricks, include child skipping wall in MQ lobby by @serprex in #5814 + - File Select More Info Update by @Pepe20129 in #5998 + - Integrate Randomizer Window into Modern Menu Properly by @leggettc18 in #6017 + - shuffle scrubs: use object extensions by @serprex in #5853 + - Combine check identity structs into CheckIdentity by @serprex in #5852 + - Fix issue when syncing skipped checks by @garrettjoecox in #6068 + - Add "firstInput" stat for RTA Timing and repurposed the "fileCreatedAt" stat for seeding. by @Glought in #6070 + - Rando: Add Triforce Hunt GBK setting by @Sirius902 in #5739 + - Add the ability to Randomize Music and Sound Effects and Cosmetrics based on Rando File Seed. by @Glought in #5970 + - Medallion Locked Trials by @serprex in #6046 + - Add option for Navi to hint location of boss key at boss doors by @serprex in #6058 + - Fix syncing bombchuUpgradeLevel by @garrettjoecox in #6071 + - AnyAgeTime Entrance Rando Fix by @xxAtrain223 in #6073 + - fix compiler warnings by @serprex in #6072 + - jabu mq: fix copy paste error, rename MQ_EAST_ROOM to MQ_NEAR_BOSS_ROOM by @serprex in #6074 + - Fix an assert and va_arg linux crash by @Pepper0ni in #6075 + - randomizer: bring back item pool options by @serprex in #6076 + - Refactor fire v2 by @Pepper0ni in #5868 + - refactor water by @serprex in #5916 + - Medallion Locked Trials: logic by @serprex in #6077 + - Spirit refactor to handle reverse entry by @Pepper0ni in #5456 + - RT_GV_CHILD_TENT, RT_GV_CHILD_CUCCO_JUMP, RT_GF_CHILD_SKIP_WASTELAND_GATE, RT_GF_ADULT_SKIP_WASTELAND_GATE by @serprex in #5823 + - rando menu: bring back shuffle grass by @serprex in #6079 + - Add an option to disable Autosave Notification by @nclok1405 in #6081 + - Remove pseudo RGs: RG_EPONA, RG_SCARECROW, RG_DISTANT_SCARECROW by @serprex in #6078 + - Add Boomerang as a way to get the LW water rupees by @Pepper0ni in #6082 + - rando menu: fix shop price options by @serprex in #6080 + - Alt equipment - The Triology by @Jepvid in #6062 + - Allow Enemy Randomizer in Debug Save by @nclok1405 in #5841 + - Add "File Number" to Save Editor by @nclok1405 in #5860 + - bean souls: prevent skulltula spawning from bugs by @serprex in #6084 + - Disable Fixed Camera Enhancement by @Jameriquiah in #6083 + - Refactor GenerateItemPool and Ice Trap settings by @Pepper0ni in #5773 + - Fix check name conflict by @garrettjoecox in #6087 + - Update CSMC to CMC and update chests to other shuffles by @Jepvid in #6085 + - Add some NTSC Player Name decoding in Save Editor by @nclok1405 in #5867 + - Add back Junk-category by @Jepvid in #6091 + - Add modal to teach player about presets by @aMannus in #5903 + - water logic: fix name typo, add hover boots across reverse basement jet pit by @serprex in #6092 + - RT_HOVER_BOOST_SIMPLE with recoil by @serprex in #5910 + - Enable Battle Music for Leever option + Modularize EnemyBGMDisable by @nclok1405 in #5985 + - beans: fix generation for starting with planted beans by @serprex in #6099 + - RT_BARINADE_POTS by @serprex in #6102 + - [Enhancement] Arrow Cycle by @mckinlee in #6105 + - disable fixed camera fix by @Jameriquiah in #6106 + - remove unused chest assets by @serprex in #6090 + - deku tree outside boss room logic fixes by @serprex in #6088 + - combobox: use ordered maps to avoid dropdown having non-determinisitic ordering by @serprex in #6101 + - RT_UNINTUITIVE_JUMPS by @serprex in #6107 + - mod_menu: fix overflow error by @serprex in #6111 + - [Bug Fix] Fix Boss Key Ice Trap Models Crash by @Patrick12115 in #6116 +ReleaseNotesUrl: https://github.com/HarbourMasters/Shipwright/releases/tag/9.2.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/HarbourMasters/ShipofHarkinian/9.2.0/HarbourMasters.ShipofHarkinian.yaml b/manifests/h/HarbourMasters/ShipofHarkinian/9.2.0/HarbourMasters.ShipofHarkinian.yaml new file mode 100644 index 000000000000..5669fb7b61c1 --- /dev/null +++ b/manifests/h/HarbourMasters/ShipofHarkinian/9.2.0/HarbourMasters.ShipofHarkinian.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: HarbourMasters.ShipofHarkinian +PackageVersion: 9.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.8.16/Hitalin.NoteDeck.installer.yaml b/manifests/h/Hitalin/NoteDeck/0.8.16/Hitalin.NoteDeck.installer.yaml new file mode 100644 index 000000000000..3966f517d1d5 --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.16/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.16 +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.16/NoteDeck-0.8.16-windows-x64-setup.exe + InstallerSha256: 0ADC8C62448D0B986239C325448492C27740991638758F4A403660395596FECA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.8.16/Hitalin.NoteDeck.locale.en-US.yaml b/manifests/h/Hitalin/NoteDeck/0.8.16/Hitalin.NoteDeck.locale.en-US.yaml new file mode 100644 index 000000000000..b0f1aee3827c --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.16/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.16 +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.16/Hitalin.NoteDeck.locale.ja-JP.yaml b/manifests/h/Hitalin/NoteDeck/0.8.16/Hitalin.NoteDeck.locale.ja-JP.yaml new file mode 100644 index 000000000000..3df48ec9e73a --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.16/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.16 +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.16 by @hitalin in #245 + Full Changelog: v0.8.15...v0.8.16 +ReleaseNotesUrl: https://github.com/hitalin/notedeck/releases/tag/v0.8.16 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.8.16/Hitalin.NoteDeck.yaml b/manifests/h/Hitalin/NoteDeck/0.8.16/Hitalin.NoteDeck.yaml new file mode 100644 index 000000000000..95ec450afd91 --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.16/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.16 +DefaultLocale: ja-JP +ManifestType: version +ManifestVersion: 1.12.0 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 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 diff --git a/manifests/i/IJHack/QtPass/1.5.0/IJHack.QtPass.installer.yaml b/manifests/i/IJHack/QtPass/1.5.0/IJHack.QtPass.installer.yaml new file mode 100644 index 000000000000..ca997e118fdf --- /dev/null +++ b/manifests/i/IJHack/QtPass/1.5.0/IJHack.QtPass.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: IJHack.QtPass +PackageVersion: 1.5.0 +MinimumOSVersion: 10.0.0.0 +InstallerType: inno +InstallModes: +- interactive +- silent +- silentWithProgress +ProductCode: '{C64A2871-0C42-4A90-9071-D84DC30563BF}_is1' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/IJHack/QtPass/releases/download/v1.5.0/qtpass-1.5.0.exe + InstallerSha256: AD0F9B709AC99BC14CC0650AAF22FDC7EAA09615964A1D40F5A1F0AF524920BC +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IJHack/QtPass/1.5.0/IJHack.QtPass.locale.en-US.yaml b/manifests/i/IJHack/QtPass/1.5.0/IJHack.QtPass.locale.en-US.yaml new file mode 100644 index 000000000000..ec41c6f16cf0 --- /dev/null +++ b/manifests/i/IJHack/QtPass/1.5.0/IJHack.QtPass.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: IJHack.QtPass +PackageVersion: 1.5.0 +PackageLocale: en-US +Publisher: IJhack +PublisherUrl: https://qtpass.org/ +PublisherSupportUrl: https://github.com/IJHack/QtPass/issues +PackageName: QtPass +License: GPL-3.0 +ShortDescription: A multi-platform GUI for pass, the standard unix password manager. +Tags: +- cross-platform +- pass +- password +- password-manager +- qt +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IJHack/QtPass/1.5.0/IJHack.QtPass.yaml b/manifests/i/IJHack/QtPass/1.5.0/IJHack.QtPass.yaml new file mode 100644 index 000000000000..c9e7ae9662cc --- /dev/null +++ b/manifests/i/IJHack/QtPass/1.5.0/IJHack.QtPass.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: IJHack.QtPass +PackageVersion: 1.5.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/IJHack/QtPass/1.5.1/IJHack.QtPass.installer.yaml b/manifests/i/IJHack/QtPass/1.5.1/IJHack.QtPass.installer.yaml new file mode 100644 index 000000000000..1e68891fdb7e --- /dev/null +++ b/manifests/i/IJHack/QtPass/1.5.1/IJHack.QtPass.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: IJHack.QtPass +PackageVersion: 1.5.1 +MinimumOSVersion: 10.0.0.0 +InstallerType: inno +InstallModes: +- interactive +- silent +- silentWithProgress +ProductCode: '{C64A2871-0C42-4A90-9071-D84DC30563BF}_is1' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/IJHack/QtPass/releases/download/v1.5.1/qtpass-1.5.1.exe + InstallerSha256: F8457A971DA97CCBCE1ACC787D73905F028C37EACE3359FC463CB50EA07DDF42 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IJHack/QtPass/1.5.1/IJHack.QtPass.locale.en-US.yaml b/manifests/i/IJHack/QtPass/1.5.1/IJHack.QtPass.locale.en-US.yaml new file mode 100644 index 000000000000..df99bff35927 --- /dev/null +++ b/manifests/i/IJHack/QtPass/1.5.1/IJHack.QtPass.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: IJHack.QtPass +PackageVersion: 1.5.1 +PackageLocale: en-US +Publisher: IJhack +PublisherUrl: https://qtpass.org/ +PublisherSupportUrl: https://github.com/IJHack/QtPass/issues +PackageName: QtPass +License: GPL-3.0 +ShortDescription: A multi-platform GUI for pass, the standard unix password manager. +Tags: +- cross-platform +- pass +- password +- password-manager +- qt +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IJHack/QtPass/1.5.1/IJHack.QtPass.yaml b/manifests/i/IJHack/QtPass/1.5.1/IJHack.QtPass.yaml new file mode 100644 index 000000000000..07e1bfed0951 --- /dev/null +++ b/manifests/i/IJHack/QtPass/1.5.1/IJHack.QtPass.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: IJHack.QtPass +PackageVersion: 1.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/IndigoByte/DrExplain/7.0.1374/IndigoByte.DrExplain.installer.yaml b/manifests/i/IndigoByte/DrExplain/7.0.1374/IndigoByte.DrExplain.installer.yaml new file mode 100644 index 000000000000..64bbd80d8550 --- /dev/null +++ b/manifests/i/IndigoByte/DrExplain/7.0.1374/IndigoByte.DrExplain.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: IndigoByte.DrExplain +PackageVersion: 7.0.1374 +Platform: +- Windows.Desktop +MinimumOSVersion: "6.1" +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +FileExtensions: +- gui +- doc +- docx +- rtf +- chm +- hlp +- html +- txt +- xml +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.drexplain.com/drexplain_7_0_1374.exe + InstallerSha256: 7577B5BE0B0D7544FA83D57B0D5874916778958160AB327EE19D8064452D131E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IndigoByte/DrExplain/7.0.1374/IndigoByte.DrExplain.locale.en-US.yaml b/manifests/i/IndigoByte/DrExplain/7.0.1374/IndigoByte.DrExplain.locale.en-US.yaml new file mode 100644 index 000000000000..559e6bbfaa5d --- /dev/null +++ b/manifests/i/IndigoByte/DrExplain/7.0.1374/IndigoByte.DrExplain.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: IndigoByte.DrExplain +PackageVersion: 7.0.1374 +PackageLocale: en-US +Publisher: Indigo Byte Systems, LLC +PublisherSupportUrl: https://www.drexplain.com/support/ +PrivacyUrl: https://www.drexplain.com/privacy.php +Author: Indigo Byte Systems, LLC +PackageName: Dr.Explain +PackageUrl: https://www.drexplain.com/ +License: Proprietary +LicenseUrl: https://www.drexplain.com/help/license.php +Copyright: Copyright (c) Indigo Byte Systems, LLC, 2004-2026. All rights reserved. +ShortDescription: Help authoring tool to quickly create online manuals, help files, user guides and documentation. +Moniker: drexplain +Tags: +- manual +- online-manuals +- help +- help-files +- online-help +- guide +- user-guides +- documentation +- hat +- html +- chm +- pdf +- docx +- rtf +- hlp +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IndigoByte/DrExplain/7.0.1374/IndigoByte.DrExplain.yaml b/manifests/i/IndigoByte/DrExplain/7.0.1374/IndigoByte.DrExplain.yaml new file mode 100644 index 000000000000..f45e38f9970a --- /dev/null +++ b/manifests/i/IndigoByte/DrExplain/7.0.1374/IndigoByte.DrExplain.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: IndigoByte.DrExplain +PackageVersion: 7.0.1374 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/iTop/iTopEasyDesktop/4.1.1.274/iTop.iTopEasyDesktop.locale.en-US.yaml b/manifests/i/iTop/iTopEasyDesktop/4.1.1.274/iTop.iTopEasyDesktop.locale.en-US.yaml deleted file mode 100644 index 7d8643e6d640..000000000000 --- a/manifests/i/iTop/iTopEasyDesktop/4.1.1.274/iTop.iTopEasyDesktop.locale.en-US.yaml +++ /dev/null @@ -1,43 +0,0 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: iTop.iTopEasyDesktop -PackageVersion: 4.1.1.274 -PackageLocale: en-US -Publisher: iTop Inc. -PublisherUrl: https://www.itopvpn.com/ -PublisherSupportUrl: https://www.itopvpn.com/support/ -PrivacyUrl: https://www.itopvpn.com/privacy/ -PackageName: iTop Easy Desktop -PackageUrl: https://www.itopvpn.com/itop-easy-desktop/ -License: Freeware -LicenseUrl: https://www.itopvpn.com/eula/ -Copyright: Copyright © iTop Inc. All rights reserved. -CopyrightUrl: https://www.itopvpn.com/terms/ -ShortDescription: Free Desktop Organizer and Lively Wallpapers - iTop Easy Desktop -ReleaseNotes: |- - v4.1 (2026-01-29) - - [AI Assistant] Meet your brand-new desktop AI PawPal —your loyal little companion, always by your side! - - Wanders freely across your desktop and windows, just like a real kitty - - Fun interactions to beat boredom—try moving, clicking, or dragging your mouse to play with her! - - Sweet, thoughtful reminders for all your important stuff - - Chat with her anytime you want—she's always ready to listen - - [Boxes] Improved List Mode to support right-click to select displayed columns (Default: Name, Date modified, Type, and Size) - - [Boxes] Improved Tab Mode to support automatically switching to the target tab when moving files into it - - [Boxes] Optimized High DPI display to make boxes always match your DPI settings - - [Wallpapers] Newly supported to click the avatar to browse all wallpapers uploaded by this user - - [Wallpapers] Added maximum storage settings and supported auto-cleanup for local wallpapers - - [Personalization] Simplified operation to restore to the default settings with one click - - [AI Assistant] Upgraded Search to allow adjusting its position by simply dragging the search box - - [AI Assistant] Added save location prompts and one-click access to the screenshot folder - - Fixed known issues -PurchaseUrl: https://www.itopvpn.com/store/ -Documentations: -- DocumentLabel: Blog - DocumentUrl: https://www.itopvpn.com/blog/ -- DocumentLabel: FAQ - DocumentUrl: https://www.itopvpn.com/faqs/ -- DocumentLabel: User Manual - DocumentUrl: https://www.itopvpn.com/user-manual/ied/ -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/i/iTop/iTopEasyDesktop/4.1.1.274/iTop.iTopEasyDesktop.installer.yaml b/manifests/i/iTop/iTopEasyDesktop/4.2.1.311/iTop.iTopEasyDesktop.installer.yaml similarity index 63% rename from manifests/i/iTop/iTopEasyDesktop/4.1.1.274/iTop.iTopEasyDesktop.installer.yaml rename to manifests/i/iTop/iTopEasyDesktop/4.2.1.311/iTop.iTopEasyDesktop.installer.yaml index d6eeeab3306e..ce6b554f438b 100644 --- a/manifests/i/iTop/iTopEasyDesktop/4.1.1.274/iTop.iTopEasyDesktop.installer.yaml +++ b/manifests/i/iTop/iTopEasyDesktop/4.2.1.311/iTop.iTopEasyDesktop.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: iTop.iTopEasyDesktop -PackageVersion: 4.1.1.274 +PackageVersion: 4.2.1.311 InstallerLocale: en-US InstallerType: inno ProductCode: iTop Easy Desktop_is1 @@ -12,7 +12,7 @@ ElevationRequirement: elevatesSelf Installers: - Architecture: x64 InstallerUrl: https://download.itopupdate.com/dl/itop-easy-desktop-setup.exe - InstallerSha256: B2DD22EC6622AFBCE4BF80AA1D2EB56C1BC5EF5E05841745882C04E8517891CB + InstallerSha256: 85A676E2EA6CA8DD52D37929F5DC4326728B7A70C3E2BEEC3EE87D01D6C84899 ManifestType: installer -ManifestVersion: 1.10.0 -ReleaseDate: 2026-02-03 +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-27 diff --git a/manifests/i/iTop/iTopEasyDesktop/4.2.1.311/iTop.iTopEasyDesktop.locale.en-US.yaml b/manifests/i/iTop/iTopEasyDesktop/4.2.1.311/iTop.iTopEasyDesktop.locale.en-US.yaml new file mode 100644 index 000000000000..53663c879870 --- /dev/null +++ b/manifests/i/iTop/iTopEasyDesktop/4.2.1.311/iTop.iTopEasyDesktop.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: iTop.iTopEasyDesktop +PackageVersion: 4.2.1.311 +PackageLocale: en-US +Publisher: iTop Inc. +PublisherUrl: https://www.itopvpn.com/ +PublisherSupportUrl: https://www.itopvpn.com/support/ +PrivacyUrl: https://www.itopvpn.com/privacy/ +PackageName: iTop Easy Desktop +PackageUrl: https://www.itopvpn.com/itop-easy-desktop/ +License: Freeware +LicenseUrl: https://www.itopvpn.com/eula/ +Copyright: Copyright © iTop Inc. All rights reserved. +CopyrightUrl: https://www.itopvpn.com/terms/ +ShortDescription: Free Desktop Organizer and Lively Wallpapers - iTop Easy Desktop +ReleaseNotes: |- + v4.2 (2026-03-27) + - [Box] Optimized layout logic for smarter detection and auto-adjustment of desktop changes + - [Box] Added support for common shortcut operations, such as copying (Ctrl + drag icon) and creating shortcuts (Alt + drag icon) + - [Wallpapers] Added multi-monitor support: set separate static wallpapers to differentiate work and personal spaces + - [Personalization] Newly added Desktop Icons settings, including background color, border color, transparency, and more + - [Personalization] Added two new Vivi-themed mouse styles + - [Widgets] iNotes now supports title editing for easier note labeling + - Streamlined application installation for a faster setup + - General performance improvements and bug fixes +PurchaseUrl: https://www.itopvpn.com/store/ +Documentations: +- DocumentLabel: Blog + DocumentUrl: https://www.itopvpn.com/blog/ +- DocumentLabel: FAQ + DocumentUrl: https://www.itopvpn.com/faqs/ +- DocumentLabel: User Manual + DocumentUrl: https://www.itopvpn.com/user-manual/ied/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/iTop/iTopEasyDesktop/4.2.1.311/iTop.iTopEasyDesktop.yaml b/manifests/i/iTop/iTopEasyDesktop/4.2.1.311/iTop.iTopEasyDesktop.yaml new file mode 100644 index 000000000000..a645472ff263 --- /dev/null +++ b/manifests/i/iTop/iTopEasyDesktop/4.2.1.311/iTop.iTopEasyDesktop.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: iTop.iTopEasyDesktop +PackageVersion: 4.2.1.311 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/CLion/2026.1/JetBrains.CLion.installer.yaml b/manifests/j/JetBrains/CLion/2026.1/JetBrains.CLion.installer.yaml new file mode 100644 index 000000000000..cf49713cba80 --- /dev/null +++ b/manifests/j/JetBrains/CLion/2026.1/JetBrains.CLion.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: JetBrains.CLion +PackageVersion: "2026.1" +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +FileExtensions: +- c +- cpp +- cxx +- h +- hpp +- hxx +- ipr +ProductCode: CLion 2026.1 +ReleaseDate: 2026-03-26 +AppsAndFeaturesEntries: +- DisplayVersion: 261.22158.273 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.jetbrains.com/cpp/CLion-2026.1.exe + InstallerSha256: FB8B65030A1A7D0155D9935E57B2E0CFD01C3710954D3FBFD2CA79B485EC2B50 +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/cpp/CLion-2026.1.exe + InstallerSha256: FB8B65030A1A7D0155D9935E57B2E0CFD01C3710954D3FBFD2CA79B485EC2B50 + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://download.jetbrains.com/cpp/CLion-2026.1-aarch64.exe + InstallerSha256: F2CE0B3364AA04014A9181BFC78BD96415FC5FF45F42D8B517A129C4B0BEEB00 +- Architecture: arm64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/cpp/CLion-2026.1-aarch64.exe + InstallerSha256: F2CE0B3364AA04014A9181BFC78BD96415FC5FF45F42D8B517A129C4B0BEEB00 + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/CLion/2026.1/JetBrains.CLion.locale.en-US.yaml b/manifests/j/JetBrains/CLion/2026.1/JetBrains.CLion.locale.en-US.yaml new file mode 100644 index 000000000000..bfa8548eb247 --- /dev/null +++ b/manifests/j/JetBrains/CLion/2026.1/JetBrains.CLion.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: JetBrains.CLion +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: CLion +PackageUrl: https://www.jetbrains.com/clion/ +License: Proprietary +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2026 JetBrains s.r.o. +ShortDescription: A cross-platform IDE for C and C++ +Description: A powerful IDE from JetBrains helps you develop in C and C++ on Linux, macOS and Windows. +Moniker: clion +Tags: +- c +- c++ +- code +- coding +- cpp +- develop +- development +- ide +- programming +ReleaseNotes: |- + CLion 2026.1 is now available, turning the IDE into an open environment for your AI workflows. It also offers an improved editor experience and support for custom project formats, DAP debugging via TCP, and Git worktrees. Here are the highlights: + - In addition to Junie, Claude Agent, and most recently Codex, CLion now lets you work with more AI agents directly in the AI chat. You can choose from agents, such as GitHub Copilot, Cursor, and many others supported via the Agent Client Protocol (ACP). + - You can now use the c_cpp_properties.json file to easily set up or fine-tune code insight for all types of projects – including those based on unsupported project formats – and for non-project files, too. This feature also simplifies migration from VS Code for users who already work with C/C++ properties, making the transition to CLion even smoother. + - The IDE can now provide full code insight for external projects defined in the CMake ExternalProject_Add() section. CLion loads these projects as part of the primary CMake project. + - We’ve added support for TCP connections to DAP debuggers. This gives you a wider range of DAP debuggers to work with, including those that only work via TCP. You can now also choose between Launch and Attach mode, depending on which one your DAP debugger requires. + - The CLion for Bazel plugin now supports configuration transitions, a foundational step toward better handling of multi-architecture projects. You can now also experiment with Starlark directly using the built-in REPL and try a first version of the execution log parser for performance analysis in CLion. + - All four major unit test frameworks – GoogleTest, Catch2, Boost.Test, and doctest – are now fully supported for Meson projects. + - CLion now supports the latest C and C++ features, including the #embed preprocessor directive and the bfloat16_t, float16_t, and float128_t floating-point types. The language engine also offers new code inspections to help you write code more efficiently. + - The editor has received visual enhancements, making everyday coding more pleasant. The caret now moves and blinks smoothly, while line selections feature rounded corners for a more modern look. + - You can now work on multiple Git branches simultaneously and eliminate branch-switching delays. This is extremely useful for agentic development when you need to run multiple tasks in parallel. + Read our blog post to learn more about all the key updates and improvements. + Try this build, share your feedback, and report any issues to our issue tracker. +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/CPP-A-230654474 +PurchaseUrl: https://www.jetbrains.com/clion/buy/ +Documentations: +- DocumentLabel: Learn CLion + DocumentUrl: https://www.jetbrains.com/clion/learn/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/CLion/2026.1/JetBrains.CLion.locale.zh-CN.yaml b/manifests/j/JetBrains/CLion/2026.1/JetBrains.CLion.locale.zh-CN.yaml new file mode 100644 index 000000000000..4e4d33c03446 --- /dev/null +++ b/manifests/j/JetBrains/CLion/2026.1/JetBrains.CLion.locale.zh-CN.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: JetBrains.CLion +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/clion/ +License: 专有软件 +ShortDescription: C 和 C++ 跨平台 IDE +Description: JetBrains 出品的强大 IDE 帮助您在 Linux、macOS 和 Windows 上进行 C 和 C++ 开发。 +Tags: +- c +- c++ +- cpp +- 代码 +- 开发 +- 编程 +- 集成开发环境 +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/CPP-A-230654474 +PurchaseUrl: https://www.jetbrains.com/zh-cn/clion/buy/ +Documentations: +- DocumentLabel: 学习 CLion + DocumentUrl: https://www.jetbrains.com/zh-cn/clion/learn/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/CLion/2026.1/JetBrains.CLion.yaml b/manifests/j/JetBrains/CLion/2026.1/JetBrains.CLion.yaml new file mode 100644 index 000000000000..69ed3350c38a --- /dev/null +++ b/manifests/j/JetBrains/CLion/2026.1/JetBrains.CLion.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.CLion +PackageVersion: "2026.1" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/ReSharper/2025.3.4/JetBrains.ReSharper.installer.yaml b/manifests/j/JetBrains/ReSharper/2025.3.4/JetBrains.ReSharper.installer.yaml new file mode 100644 index 000000000000..6c3c829b12b7 --- /dev/null +++ b/manifests/j/JetBrains/ReSharper/2025.3.4/JetBrains.ReSharper.installer.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: JetBrains.ReSharper +PackageVersion: 2025.3.4 +InstallerType: exe +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /Silent=True + SilentWithProgress: /Silent=True + Log: /LogFile="" +UpgradeBehavior: install +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.jetbrains.com/resharper/dotUltimate.2025.3.4/JetBrains.ReSharper.2025.3.4.web.exe + InstallerSha256: 613EB5A0A148A47DBFE78094332C7DC28F054F68F5B88C51464D53328F5167A2 +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/resharper/dotUltimate.2025.3.4/JetBrains.ReSharper.2025.3.4.web.exe + InstallerSha256: 613EB5A0A148A47DBFE78094332C7DC28F054F68F5B88C51464D53328F5167A2 + InstallerSwitches: + Custom: /PerMachine=True + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/ReSharper/2025.3.4/JetBrains.ReSharper.locale.en-US.yaml b/manifests/j/JetBrains/ReSharper/2025.3.4/JetBrains.ReSharper.locale.en-US.yaml new file mode 100644 index 000000000000..2d38f25d568d --- /dev/null +++ b/manifests/j/JetBrains/ReSharper/2025.3.4/JetBrains.ReSharper.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.ReSharper +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 ReSharper +PackageUrl: https://www.jetbrains.com/resharper/ +License: Proprietary +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2026 JetBrains s.r.o. +ShortDescription: The Visual Studio Extension for .NET Developers +Moniker: resharper +Tags: +- .net +- c# +- csharp +- develop +- development +- dotnet +ReleaseNotes: |- + ReSharper 2025.3.4 + This update comes with the following fixes: + - Pressing Tab with Visual Studio IntelliSense enabled now selects the current completion item instead of expanding a live template. [RSRP-503035] + - Code completion now correctly applies the selected suggestion when pressing Tab instead of moving the caret. [RSRP-503189] + - ReSharper now works correctly with .slnx solutions that include Advanced Installer projects. [RSRP-502401] + + For the complete list of issues resolved, please refer to our issue tracker. +ReleaseNotesUrl: https://youtrack.jetbrains.com/issues?q=Project:%20RSRP,%20RSCPP,%20dotTrace,%20dotMemory,%20dotCover,%20dotPeek,%20Profiler,%20DPA%20Available%20in:%202025.3.4* +PurchaseUrl: https://www.jetbrains.com/store/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/ReSharper/2025.3.4/JetBrains.ReSharper.locale.zh-CN.yaml b/manifests/j/JetBrains/ReSharper/2025.3.4/JetBrains.ReSharper.locale.zh-CN.yaml new file mode 100644 index 000000000000..fd1bc4ab0a6f --- /dev/null +++ b/manifests/j/JetBrains/ReSharper/2025.3.4/JetBrains.ReSharper.locale.zh-CN.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: JetBrains.ReSharper +PackageVersion: 2025.3.4 +PackageLocale: zh-CN +Publisher: JetBrains s.r.o. +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: JetBrains ReSharper +PackageUrl: https://www.jetbrains.com/zh-cn/resharper/ +License: 专有软件 +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2026 JetBrains s.r.o. +ShortDescription: 适用于 .NET 开发者的 Visual Studio 扩展程序 +Tags: +- .net +- c# +- csharp +- dotnet +- 开发 +ReleaseNotesUrl: https://youtrack.jetbrains.com/issues?q=Project:%20RSRP,%20RSCPP,%20dotTrace,%20dotMemory,%20dotCover,%20dotPeek,%20Profiler,%20DPA%20Available%20in:%202025.3.4* +PurchaseUrl: https://www.jetbrains.com/zh-cn/store/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/ReSharper/2025.3.4/JetBrains.ReSharper.yaml b/manifests/j/JetBrains/ReSharper/2025.3.4/JetBrains.ReSharper.yaml new file mode 100644 index 000000000000..1927ac934a6a --- /dev/null +++ b/manifests/j/JetBrains/ReSharper/2025.3.4/JetBrains.ReSharper.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.ReSharper +PackageVersion: 2025.3.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/RubyMine/2026.1/JetBrains.RubyMine.installer.yaml b/manifests/j/JetBrains/RubyMine/2026.1/JetBrains.RubyMine.installer.yaml new file mode 100644 index 000000000000..7096e515a548 --- /dev/null +++ b/manifests/j/JetBrains/RubyMine/2026.1/JetBrains.RubyMine.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.RubyMine +PackageVersion: "2026.1" +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +FileExtensions: +- ipr +ProductCode: RubyMine 2026.1 +ReleaseDate: 2026-03-26 +AppsAndFeaturesEntries: +- DisplayVersion: 261.22158.284 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.jetbrains.com/ruby/RubyMine-2026.1.exe + InstallerSha256: A9A04FA1E9B8A9295F704A47608D3FEBE2F9B077E5F09ECAE876ACA2F579F3DB +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/ruby/RubyMine-2026.1.exe + InstallerSha256: A9A04FA1E9B8A9295F704A47608D3FEBE2F9B077E5F09ECAE876ACA2F579F3DB + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://download.jetbrains.com/ruby/RubyMine-2026.1-aarch64.exe + InstallerSha256: A403A81F826D808F3DA6FD303DA8C7DEDD291D284AA777BFF10AC2EE2E8C7B1F +- Architecture: arm64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/ruby/RubyMine-2026.1-aarch64.exe + InstallerSha256: A403A81F826D808F3DA6FD303DA8C7DEDD291D284AA777BFF10AC2EE2E8C7B1F + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/RubyMine/2026.1/JetBrains.RubyMine.locale.en-US.yaml b/manifests/j/JetBrains/RubyMine/2026.1/JetBrains.RubyMine.locale.en-US.yaml new file mode 100644 index 000000000000..ebf6112ac500 --- /dev/null +++ b/manifests/j/JetBrains/RubyMine/2026.1/JetBrains.RubyMine.locale.en-US.yaml @@ -0,0 +1,50 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: JetBrains.RubyMine +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: RubyMine +PackageUrl: https://www.jetbrains.com/ruby/ +License: Proprietary +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2026 JetBrains s.r.o. +ShortDescription: Empowering Ruby Developers +Description: Cross-platform Ruby on Rails IDE with first-class support for Ruby-related technologies. +Moniker: rubymine +Tags: +- code +- coding +- develop +- development +- ide +- programming +- rails +- ror +- ruby +- ruby-on-rails +ReleaseNotes: |- + RubyMine 2026.1 Is Out! + Fixes and improvements: + - Support for local variables passed via render in Rails 8.1 layouts: RUBY-34673 + - Support for Rails deprecated associations: RUBY-34419 + - Support for virtual columns from PostgreSQL 18 (or later versions) in Rails projects: RUBY-34775 + - Option to enable enhanced code insight features powered by new language modeling engine: RUBY-35147 + - Folding for .new constructor parameters: RUBY-32537 + - Diff view for RSpec and minitest tests: RUBY-35114, RUBY-35112 + - Automatic Ruby interpreter selection for new projects based on configuration files: RUBY-33258 + - Option to move deleted files to the system trash instead of permanently removing them: IJPL-2151 + - Option to delete remote branches after merging GitHub pull requests: IJPL-74161 + For the full list of closed issues, refer to the release notes. +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/RUBY-A-220365339 +PurchaseUrl: https://www.jetbrains.com/ruby/buy/ +Documentations: +- DocumentLabel: Learn RubyMine + DocumentUrl: https://www.jetbrains.com/ruby/learn/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/RubyMine/2026.1/JetBrains.RubyMine.locale.zh-CN.yaml b/manifests/j/JetBrains/RubyMine/2026.1/JetBrains.RubyMine.locale.zh-CN.yaml new file mode 100644 index 000000000000..b9fb7faa8a78 --- /dev/null +++ b/manifests/j/JetBrains/RubyMine/2026.1/JetBrains.RubyMine.locale.zh-CN.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: JetBrains.RubyMine +PackageVersion: "2026.1" +PackageLocale: zh-CN +Publisher: JetBrains s.r.o. +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: RubyMine +PackageUrl: https://www.jetbrains.com/zh-cn/ruby/ +License: 专有软件 +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2026 JetBrains s.r.o. +ShortDescription: 为 Ruby 开发者赋能 +Description: 跨平台 Ruby on Rails IDE,对 Ruby 相关技术提供了出色支持。 +Tags: +- rails +- ror +- ruby +- ruby-on-rails +- 代码 +- 开发 +- 编程 +- 集成开发环境 +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/RUBY-A-220365339 +PurchaseUrl: https://www.jetbrains.com/zh-cn/ruby/buy/ +Documentations: +- DocumentLabel: 学习 RubyMine + DocumentUrl: https://www.jetbrains.com/zh-cn/ruby/learn/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/RubyMine/2026.1/JetBrains.RubyMine.yaml b/manifests/j/JetBrains/RubyMine/2026.1/JetBrains.RubyMine.yaml new file mode 100644 index 000000000000..6b3af085fb38 --- /dev/null +++ b/manifests/j/JetBrains/RubyMine/2026.1/JetBrains.RubyMine.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.RubyMine +PackageVersion: "2026.1" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/dotTrace/2025.3.4/JetBrains.dotTrace.installer.yaml b/manifests/j/JetBrains/dotTrace/2025.3.4/JetBrains.dotTrace.installer.yaml new file mode 100644 index 000000000000..e18ddabf9766 --- /dev/null +++ b/manifests/j/JetBrains/dotTrace/2025.3.4/JetBrains.dotTrace.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: JetBrains.dotTrace +PackageVersion: 2025.3.4 +InstallerType: exe +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /Silent=True + SilentWithProgress: /Silent=True + Log: /LogFile="" +FileExtensions: +- dtp +- dtt +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.jetbrains.com/resharper/dotUltimate.2025.3.4/JetBrains.dotTrace.2025.3.4.web.exe + InstallerSha256: 8D88AA793DED9417C9E831570B15085430FCFC08D4B3B0A6DCE794FCC1A065B1 +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/resharper/dotUltimate.2025.3.4/JetBrains.dotTrace.2025.3.4.web.exe + InstallerSha256: 8D88AA793DED9417C9E831570B15085430FCFC08D4B3B0A6DCE794FCC1A065B1 + InstallerSwitches: + Custom: /PerMachine=True + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/dotTrace/2025.3.4/JetBrains.dotTrace.locale.en-US.yaml b/manifests/j/JetBrains/dotTrace/2025.3.4/JetBrains.dotTrace.locale.en-US.yaml new file mode 100644 index 000000000000..5f9333b65646 --- /dev/null +++ b/manifests/j/JetBrains/dotTrace/2025.3.4/JetBrains.dotTrace.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: JetBrains.dotTrace +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 dotTrace +PackageUrl: https://www.jetbrains.com/profiler/ +License: Proprietary +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2026 JetBrains s.r.o. +ShortDescription: .NET performance profiler +Description: dotTrace helps you detect performance bottlenecks in a variety of .NET and .NET Core applications. +Tags: +- .net +- c# +- csharp +- develop +- development +- dotnet +- dottrace +ReleaseNotes: |- + ReSharper 2025.3.4 + This update comes with the following fixes: + - Pressing Tab with Visual Studio IntelliSense enabled now selects the current completion item instead of expanding a live template. [RSRP-503035] + - Code completion now correctly applies the selected suggestion when pressing Tab instead of moving the caret. [RSRP-503189] + - ReSharper now works correctly with .slnx solutions that include Advanced Installer projects. [RSRP-502401] + + For the complete list of issues resolved, please refer to our issue tracker. +ReleaseNotesUrl: https://youtrack.jetbrains.com/issues?q=Project:%20RSRP,%20RSCPP,%20dotTrace,%20dotMemory,%20dotCover,%20dotPeek,%20Profiler,%20DPA%20Available%20in:%202025.3.4* +PurchaseUrl: https://www.jetbrains.com/store/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/dotTrace/2025.3.4/JetBrains.dotTrace.locale.zh-CN.yaml b/manifests/j/JetBrains/dotTrace/2025.3.4/JetBrains.dotTrace.locale.zh-CN.yaml new file mode 100644 index 000000000000..3c98c809da23 --- /dev/null +++ b/manifests/j/JetBrains/dotTrace/2025.3.4/JetBrains.dotTrace.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: JetBrains.dotTrace +PackageVersion: 2025.3.4 +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/profiler/ +License: 专有软件 +ShortDescription: .NET 性能分析器 +Description: dotTrace 可以帮助您检测各种 .NET 和 .NET Core 应用程序的性能瓶颈。 +Tags: +- .net +- c# +- csharp +- dotnet +- dottrace +- 开发 +ReleaseNotesUrl: https://youtrack.jetbrains.com/issues?q=Project:%20RSRP,%20RSCPP,%20dotTrace,%20dotMemory,%20dotCover,%20dotPeek,%20Profiler,%20DPA%20Available%20in:%202025.3.4* +PurchaseUrl: https://www.jetbrains.com/zh-cn/store/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/dotTrace/2025.3.4/JetBrains.dotTrace.yaml b/manifests/j/JetBrains/dotTrace/2025.3.4/JetBrains.dotTrace.yaml new file mode 100644 index 000000000000..81c88f4c4cb1 --- /dev/null +++ b/manifests/j/JetBrains/dotTrace/2025.3.4/JetBrains.dotTrace.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.dotTrace +PackageVersion: 2025.3.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/j/jdx/mise/2026.3.16/jdx.mise.installer.yaml b/manifests/j/jdx/mise/2026.3.16/jdx.mise.installer.yaml new file mode 100644 index 000000000000..feb5adaa841a --- /dev/null +++ b/manifests/j/jdx/mise/2026.3.16/jdx.mise.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: jdx.mise +PackageVersion: 2026.3.16 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: mise/bin/mise-shim.exe +- RelativeFilePath: mise/bin/mise.exe +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2026-03-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/jdx/mise/releases/download/v2026.3.16/mise-v2026.3.16-windows-x64.zip + InstallerSha256: A7B6AAA23804418799D5D33E77E1D08144FEC0EFADCC38D138B68EAA214080F5 +- Architecture: arm64 + InstallerUrl: https://github.com/jdx/mise/releases/download/v2026.3.16/mise-v2026.3.16-windows-arm64.zip + InstallerSha256: F6293578BAE263614C8AF6C1664BD4C28F741F902F45BCBDAD922BEE6D04D7E6 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/jdx/mise/2026.3.16/jdx.mise.locale.en-US.yaml b/manifests/j/jdx/mise/2026.3.16/jdx.mise.locale.en-US.yaml new file mode 100644 index 000000000000..f9a37d7bc8fe --- /dev/null +++ b/manifests/j/jdx/mise/2026.3.16/jdx.mise.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: jdx.mise +PackageVersion: 2026.3.16 +PackageLocale: en-US +Publisher: jdx +PublisherUrl: https://jdx.dev/ +PublisherSupportUrl: https://github.com/jdx/mise +Author: jdx +PackageName: mise-en-place +PackageUrl: https://mise.jdx.dev/ +License: MIT +LicenseUrl: https://github.com/jdx/mise/blob/HEAD/LICENSE +ShortDescription: Dev tools, env vars, tasks +Moniker: mise +ReleaseNotes: |- + A small patch release that fixes mise install --locked making unnecessary GitHub Releases API calls even when the lockfile already contains pre-resolved URLs and checksums. + Fixed + - mise install --locked no longer makes unnecessary GitHub API calls -- The aqua backend's cosign verification path was unconditionally downloading checksum files via the GitHub Releases API, even when cosign was disabled in settings or the package had no cosign configuration. This caused mise install --locked to fail in restricted network environments despite the lockfile having everything needed to install offline. The fix checks settings.aqua.cosign and whether the package actually has cosign configured before attempting any download. #8753 by @jdx + Full Changelog: v2026.3.15...v2026.3.16 +ReleaseNotesUrl: https://github.com/jdx/mise/releases/tag/v2026.3.16 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/jdx/mise/2026.3.16/jdx.mise.yaml b/manifests/j/jdx/mise/2026.3.16/jdx.mise.yaml new file mode 100644 index 000000000000..f57c994343da --- /dev/null +++ b/manifests/j/jdx/mise/2026.3.16/jdx.mise.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: jdx.mise +PackageVersion: 2026.3.16 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/k/KinichiAnjuMakino/unifocl/2.5.1/KinichiAnjuMakino.unifocl.installer.yaml b/manifests/k/KinichiAnjuMakino/unifocl/2.5.1/KinichiAnjuMakino.unifocl.installer.yaml new file mode 100644 index 000000000000..bd3cfc311dff --- /dev/null +++ b/manifests/k/KinichiAnjuMakino/unifocl/2.5.1/KinichiAnjuMakino.unifocl.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: KinichiAnjuMakino.unifocl +PackageVersion: 2.5.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: unifocl.exe + PortableCommandAlias: unifocl +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Kiankinakomochi/unifocl/releases/download/v2.5.1/unifocl-2.5.1-win-x64.zip + InstallerSha256: DB51D1D97403FE65DE2620BC684A1F4454D4AC597A84CBD238D107AF822A6213 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-27 diff --git a/manifests/k/KinichiAnjuMakino/unifocl/2.5.1/KinichiAnjuMakino.unifocl.locale.en-US.yaml b/manifests/k/KinichiAnjuMakino/unifocl/2.5.1/KinichiAnjuMakino.unifocl.locale.en-US.yaml new file mode 100644 index 000000000000..72b07c9b5646 --- /dev/null +++ b/manifests/k/KinichiAnjuMakino/unifocl/2.5.1/KinichiAnjuMakino.unifocl.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: KinichiAnjuMakino.unifocl +PackageVersion: 2.5.1 +PackageLocale: en-US +Publisher: Kinichi Anju Makino +PublisherUrl: https://github.com/Kiankinakomochi +PublisherSupportUrl: https://github.com/Kiankinakomochi/unifocl/issues +PackageName: unifocl +PackageUrl: https://github.com/Kiankinakomochi/unifocl +License: Apache-2.0 License +ShortDescription: A CLI/TUI operations layer for Unity, enabling deterministic project interaction for developers and AI agents without the Editor. +ReleaseNotesUrl: https://github.com/Kiankinakomochi/unifocl/releases/tag/v2.5.1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/Kiankinakomochi/unifocl/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/k/KinichiAnjuMakino/unifocl/2.5.1/KinichiAnjuMakino.unifocl.yaml b/manifests/k/KinichiAnjuMakino/unifocl/2.5.1/KinichiAnjuMakino.unifocl.yaml new file mode 100644 index 000000000000..fdab00466c3c --- /dev/null +++ b/manifests/k/KinichiAnjuMakino/unifocl/2.5.1/KinichiAnjuMakino.unifocl.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: KinichiAnjuMakino.unifocl +PackageVersion: 2.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/Learnpulse/Screenpresso/2.2.9.0/Learnpulse.Screenpresso.installer.yaml b/manifests/l/Learnpulse/Screenpresso/2.2.9.0/Learnpulse.Screenpresso.installer.yaml new file mode 100644 index 000000000000..59b0968bb6fc --- /dev/null +++ b/manifests/l/Learnpulse/Screenpresso/2.2.9.0/Learnpulse.Screenpresso.installer.yaml @@ -0,0 +1,46 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Learnpulse.Screenpresso +PackageVersion: 2.2.9.0 +UpgradeBehavior: install +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerType: exe + Scope: user + InstallerUrl: https://www.screenpresso.com/binaries/releases/v2-2-09-000/dotnet47/Screenpresso.exe + InstallerSha256: 59E53F855D2A98205381A72CE833D8C2C7270ADC059438BD23538CED02D95642 + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: deploy --install --quiet + SilentWithProgress: deploy --install --quiet + Interactive: deploy --install + ProductCode: Screenpresso +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://www.screenpresso.com/binaries/releases/v2-2-09-000/dotnet47/Screenpresso.exe + InstallerSha256: 59E53F855D2A98205381A72CE833D8C2C7270ADC059438BD23538CED02D95642 + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: deploy --install --quiet + SilentWithProgress: deploy --install --quiet + Interactive: deploy --install + Custom: --programfiles + ProductCode: Screenpresso +- Architecture: x64 + InstallerType: msi + Scope: machine + InstallerUrl: https://www.screenpresso.com/binaries/releases/v2-2-09-000/dotnet47/ScreenpressoSetup.msi + InstallerSha256: 7CB536D8CA544B57377C4D04159EFE592F0A2C2F8A9EC94915232CF0E0873284 + ProductCode: '{9438e68f-0c7b-49a9-971e-21d4d8322e9b}' + AppsAndFeaturesEntries: + - ProductCode: '{9438e68f-0c7b-49a9-971e-21d4d8322e9b}' + UpgradeCode: '{35D6B64D-DD12-4513-B273-1D630B56E451}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/Learnpulse/Screenpresso/2.2.9.0/Learnpulse.Screenpresso.locale.de-DE.yaml b/manifests/l/Learnpulse/Screenpresso/2.2.9.0/Learnpulse.Screenpresso.locale.de-DE.yaml new file mode 100644 index 000000000000..440457c0b85f --- /dev/null +++ b/manifests/l/Learnpulse/Screenpresso/2.2.9.0/Learnpulse.Screenpresso.locale.de-DE.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: Learnpulse.Screenpresso +PackageVersion: 2.2.9.0 +PackageLocale: de-DE +Publisher: Learnpulse +PublisherUrl: https://www.screenpresso.com/ +PublisherSupportUrl: https://www.screenpresso.com/de/support/ +PrivacyUrl: https://www.screenpresso.com/de/datenschutz-bestimmungen/ +Author: Learnpulse SAS +PackageName: Screenpresso +PackageUrl: https://www.screenpresso.com/de/ +License: Proprietär +LicenseUrl: https://www.screenpresso.com/de/softwarelizenzvertrag +Copyright: Copyright © Learnpulse 2026 +CopyrightUrl: https://www.screenpresso.com/de/softwarelizenzvertrag +ShortDescription: Screenpresso erfasst Ihren Desktop für Ihre Schulungsdokumente, gemeinsame Designarbeit, IT-Fehlerberichte und mehr. +Description: Screenpresso erfasst Ihren Desktop für Ihre Schulungsdokumente, gemeinsame Designarbeit, IT-Fehlerberichte und mehr. Screenpresso ist ein leichtgewichtiges Bildschirmerfassungs-Tool mit integriertem Bildeditor, Benutzerhandbuch-Generator und Teilen-Optionen. +Tags: +- aufnahme +- bildschirmaufnahme +- bildschirmfotos +- screenshot +- videoaufnahme +ReleaseNotesUrl: https://www.screenpresso.com/de/softwareveroffentlichung/screenpresso-2-2-9/ +PurchaseUrl: https://www.screenpresso.com/de/preise/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/Learnpulse/Screenpresso/2.2.9.0/Learnpulse.Screenpresso.locale.en-US.yaml b/manifests/l/Learnpulse/Screenpresso/2.2.9.0/Learnpulse.Screenpresso.locale.en-US.yaml new file mode 100644 index 000000000000..048714a8f771 --- /dev/null +++ b/manifests/l/Learnpulse/Screenpresso/2.2.9.0/Learnpulse.Screenpresso.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Learnpulse.Screenpresso +PackageVersion: 2.2.9.0 +PackageLocale: en-US +Publisher: Learnpulse +PublisherUrl: https://www.screenpresso.com/ +PublisherSupportUrl: https://www.screenpresso.com/support/ +PrivacyUrl: https://www.screenpresso.com/privacy-policy/ +Author: Learnpulse SAS +PackageName: Screenpresso +PackageUrl: https://www.screenpresso.com/ +License: Proprietary +LicenseUrl: https://www.screenpresso.com/software-license-agreement/ +Copyright: Copyright © Learnpulse 2026 +CopyrightUrl: https://www.screenpresso.com/software-license-agreement/ +ShortDescription: Image and Video screen capture +Description: Screenpresso captures your desktop (screenshots and HD videos) for your training documents, collaborative design work, IT bug reports, and more… +Moniker: screenpresso +Tags: +- capture +- recording +- screencapture +- screenshot +- videocapture +ReleaseNotes: Small bug fixes. +ReleaseNotesUrl: https://www.screenpresso.com/releases/screenpresso-2-2-9/ +PurchaseUrl: https://www.screenpresso.com/pricing/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/Learnpulse/Screenpresso/2.2.9.0/Learnpulse.Screenpresso.locale.fr-FR.yaml b/manifests/l/Learnpulse/Screenpresso/2.2.9.0/Learnpulse.Screenpresso.locale.fr-FR.yaml new file mode 100644 index 000000000000..c8669a5cf340 --- /dev/null +++ b/manifests/l/Learnpulse/Screenpresso/2.2.9.0/Learnpulse.Screenpresso.locale.fr-FR.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: Learnpulse.Screenpresso +PackageVersion: 2.2.9.0 +PackageLocale: fr-FR +Publisher: Learnpulse +PublisherUrl: https://www.screenpresso.com/ +PublisherSupportUrl: https://www.screenpresso.com/fr/support/ +PrivacyUrl: https://www.screenpresso.com/fr/politique-de-confidentialite/ +Author: Learnpulse SAS +PackageName: Screenpresso +PackageUrl: https://www.screenpresso.com/fr/ +License: Propriétaire +LicenseUrl: https://www.screenpresso.com/fr/contrat-de-licence/ +Copyright: Copyright © Learnpulse 2026 +CopyrightUrl: https://www.screenpresso.com/fr/contrat-de-licence/ +ShortDescription: Capture d’écran en image et vidéo +Description: Screenpresso capture votre bureau Windows (en images et en vidéos HD) pour vos documents, tutoriels, maquettes, travaux collaboratifs, vos rapports de bogues et bien plus… +Tags: +- capture +- enregistrement +- screencapture +- screenshot +- videocapture +ReleaseNotesUrl: https://www.screenpresso.com/fr/versions/screenpresso-2-2-9/ +PurchaseUrl: https://www.screenpresso.com/fr/tarifs/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/Learnpulse/Screenpresso/2.2.9.0/Learnpulse.Screenpresso.locale.zh-CN.yaml b/manifests/l/Learnpulse/Screenpresso/2.2.9.0/Learnpulse.Screenpresso.locale.zh-CN.yaml new file mode 100644 index 000000000000..b33daa5e1aab --- /dev/null +++ b/manifests/l/Learnpulse/Screenpresso/2.2.9.0/Learnpulse.Screenpresso.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: Learnpulse.Screenpresso +PackageVersion: 2.2.9.0 +PackageLocale: zh-CN +Publisher: Learnpulse +PublisherUrl: https://www.screenpresso.com/ +PublisherSupportUrl: https://www.screenpresso.com/support/ +PrivacyUrl: https://www.screenpresso.com/privacy-policy/ +Author: Learnpulse SAS +PackageName: Screenpresso +PackageUrl: https://www.screenpresso.com/ +License: 专有软件 +LicenseUrl: https://www.screenpresso.com/software-license-agreement/ +Copyright: Copyright © Learnpulse 2026 +CopyrightUrl: https://www.screenpresso.com/software-license-agreement/ +ShortDescription: 截屏和录屏 +Description: Screenpresso 可捕获您的桌面(屏幕截图和高清视频),用于培训文档、协同设计工作、IT 错误报告等... +Tags: +- 录制 +- 录屏 +- 截图 +- 截屏 +- 捕获 +PurchaseUrl: https://www.screenpresso.com/pricing/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/Learnpulse/Screenpresso/2.2.9.0/Learnpulse.Screenpresso.yaml b/manifests/l/Learnpulse/Screenpresso/2.2.9.0/Learnpulse.Screenpresso.yaml new file mode 100644 index 000000000000..f440e78aa08f --- /dev/null +++ b/manifests/l/Learnpulse/Screenpresso/2.2.9.0/Learnpulse.Screenpresso.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: Learnpulse.Screenpresso +PackageVersion: 2.2.9.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/LobeHub/LobeHub/2.1.47/LobeHub.LobeHub.installer.yaml b/manifests/l/LobeHub/LobeHub/2.1.47/LobeHub.LobeHub.installer.yaml new file mode 100644 index 000000000000..47a299731b1c --- /dev/null +++ b/manifests/l/LobeHub/LobeHub/2.1.47/LobeHub.LobeHub.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: LobeHub.LobeHub +PackageVersion: 2.1.47 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 2076975c-e569-5439-b1ad-ecff760e8dd0 +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/lobehub/lobehub/releases/download/v2.1.47/LobeHub-2.1.47-setup.exe + InstallerSha256: E2F113AD2399444F0C1EA97A826DC5584BF689F0F1B92481108E5CAFFC2BF8A7 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/lobehub/lobehub/releases/download/v2.1.47/LobeHub-2.1.47-setup.exe + InstallerSha256: E2F113AD2399444F0C1EA97A826DC5584BF689F0F1B92481108E5CAFFC2BF8A7 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/LobeHub/LobeHub/2.1.47/LobeHub.LobeHub.locale.en-US.yaml b/manifests/l/LobeHub/LobeHub/2.1.47/LobeHub.LobeHub.locale.en-US.yaml new file mode 100644 index 000000000000..15793760e9bb --- /dev/null +++ b/manifests/l/LobeHub/LobeHub/2.1.47/LobeHub.LobeHub.locale.en-US.yaml @@ -0,0 +1,94 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: LobeHub.LobeHub +PackageVersion: 2.1.47 +PackageLocale: en-US +Publisher: LobeHub +PublisherUrl: https://lobehub.com/ +PublisherSupportUrl: https://github.com/lobehub/lobe-chat/issues +PrivacyUrl: https://lobehub.com/privacy +Author: LobeHub LLC +PackageName: LobeHub-Beta +PackageUrl: https://github.com/lobehub/lobe-chat +License: Apache-2.0 +LicenseUrl: https://github.com/lobehub/lobe-chat/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026/06/17 - current LobeHub LLC. All rights reserved. +CopyrightUrl: https://lobehub.com/terms +ShortDescription: An open-source, modern-design AI chat framework. Supports Multi AI Providers (OpenAI / Claude 4 / Gemini / Ollama / DeepSeek / Qwen), Knowledge Base (file upload / knowledge management / RAG), Multi-Modals (Plugins/Artifacts) and Thinking. +Tags: +- ai +- chatbot +- chatgpt +- claude +- deepseek +- doubao +- gemini +- kimi +- large-language-model +- llama +- llm +- mistral +- ollama +- qwen +- rag +ReleaseNotes: |- + This release was automatically published from PR #13330. + Changes + See PR description: https://github.com/lobehub/lobehub/pull/13330 + Commit Message + 🚀 release: 20260326 + This release includes 91 commits. Key updates are below. + - Agent can now execute background tasks — Agents can perform long-running operations without blocking your conversation. #13289 + - Better error messages — Redesigned error UI across chat and image generation with clearer explanations and recovery options. #13302 + - Smoother topic switching — No more full page reloads when switching topics while an agent is responding. #13309 + - Faster image uploads — Large images are now automatically compressed to 1920px before upload, reducing wait times. #13224 + - Improved knowledge base — Documents are now properly parsed before chunking, improving retrieval accuracy. #13221 + Bot Platform + - WeChat Bot support — You can now connect LobeChat to WeChat, in addition to Discord. #13191 + - Richer bot responses — Bots now support custom markdown rendering and context injection. #13294 + - New bot commands — Added /new to start fresh conversations and /stop to halt generation. #13194 + - Discord stability fixes — Fixed thread creation issues and Redis connection drops. #13228 #13205 + Models & Providers + - GLM-5 is now available in the LobeHub model list. #13189 + - Coding Plan providers — Added support for code planning assistant providers. #13203 + - Tencent Hunyuan 3.0 ImageGen — New image generation model from Tencent. #13166 + - Gemini content handling — Better handling when Gemini blocks content due to safety filters. #13270 + - Claude token limits fixed — Corrected max window tokens for Anthropic Claude models. #13206 + Skills & Tools + - Auto credential injection — Skills can now automatically request and use required credentials. #13124 + - Smarter tool permissions — Built-in tools skip confirmation for safe paths like /tmp. #13232 + - Model switcher improvements — Quick access to provider settings and visual highlight for default model. #13220 + Memory + - Bulk delete memories — You can now delete all memory entries at once. #13161 + - Per-agent memory control — Memory injection now respects individual agent settings. #13265 + Desktop App + - Gateway connection — Desktop app can now connect to LobeHub Gateway for enhanced features. #13234 + - Connection status indicator — See gateway connection status in the titlebar. #13260 + - Settings persistence — Gateway toggle state now persists across app restarts. #13300 + CLI + - API key authentication — CLI now supports API key auth for programmatic access. #13190 + - Shell completion — Tab completion for bash/zsh/fish shells. #13164 + - Man pages — Built-in manual pages for CLI commands. #13200 + Security + - XSS protection — Sanitized search result image titles to prevent script injection. #13303 + - Workflow hardening — Fixed potential shell injection in release automation. #13319 + - Dependency update — Updated nodemailer to address security advisory. #13326 + Bug Fixes + - Fixed skill page not redirecting correctly after import. #13255 #13261 + - Fixed token counting in group chats. #13247 + - Fixed editor not resetting when switching to empty pages. #13229 + - Fixed manual tool toggle not working. #13218 + - Fixed Search1API response parsing. #13207 #13208 + - Fixed mobile topic menus rendering issues. #12477 + - Fixed history count calculation for accurate context. #13051 + - Added missing Turkish translations. #13196 + Credits + Huge thanks to these contributors: + @bakiburakogun @hardy-one @Zhouguanyang @sxjeru @hezhijie0327 @arvinxx @cy948 @CanisMinor @Innei @LiJian @lobehubbot @Neko @rdmclin2 @rivertwilight @tjx666 +ReleaseNotesUrl: https://github.com/lobehub/lobehub/releases/tag/v2.1.47 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://lobehub.com/docs/usage/start +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LobeHub/LobeHub/2.1.47/LobeHub.LobeHub.locale.zh-CN.yaml b/manifests/l/LobeHub/LobeHub/2.1.47/LobeHub.LobeHub.locale.zh-CN.yaml new file mode 100644 index 000000000000..b3d1e1e61ec5 --- /dev/null +++ b/manifests/l/LobeHub/LobeHub/2.1.47/LobeHub.LobeHub.locale.zh-CN.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: LobeHub.LobeHub +PackageVersion: 2.1.47 +PackageLocale: zh-CN +ShortDescription: 一个开源、现代化设计的 AI聊天框架。支持多 AI 供应商(OpenAI/Claude 4/Gemini/Ollama/DeepSeek/Qwen)、知识库(文件上传/知识管理/RAG)、多模态(插件/工件)及思维链功能。 +Tags: +- ai +- chatgpt +- claude +- deepseek +- gemini +- kimi +- llama +- llm +- mistral +- ollama +- rag +- 人工智能 +- 大语言模型 +- 聊天机器人 +- 豆包 +- 通义千问 +ReleaseNotesUrl: https://github.com/lobehub/lobehub/releases/tag/v2.1.47 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://lobehub.com/docs/usage/start +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LobeHub/LobeHub/2.1.47/LobeHub.LobeHub.yaml b/manifests/l/LobeHub/LobeHub/2.1.47/LobeHub.LobeHub.yaml new file mode 100644 index 000000000000..b59ccee9d857 --- /dev/null +++ b/manifests/l/LobeHub/LobeHub/2.1.47/LobeHub.LobeHub.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: LobeHub.LobeHub +PackageVersion: 2.1.47 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/loonghao/vx/0.8.9/loonghao.vx.installer.yaml b/manifests/l/loonghao/vx/0.8.9/loonghao.vx.installer.yaml new file mode 100644 index 000000000000..ac3a2113f7b3 --- /dev/null +++ b/manifests/l/loonghao/vx/0.8.9/loonghao.vx.installer.yaml @@ -0,0 +1,25 @@ +# 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: loonghao.vx +PackageVersion: 0.8.9 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: vx.exe + PortableCommandAlias: vx +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: uninstallPrevious +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/loonghao/vx/releases/download/v0.8.9/vx-x86_64-pc-windows-msvc.zip + InstallerSha256: 44D7820BE475FD770F6F8F22762790EBA6D5E7B395A7F8F8804B7BC34A2459F2 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/loonghao/vx/0.8.9/loonghao.vx.locale.en-US.yaml b/manifests/l/loonghao/vx/0.8.9/loonghao.vx.locale.en-US.yaml new file mode 100644 index 000000000000..65fab2bd64ba --- /dev/null +++ b/manifests/l/loonghao/vx/0.8.9/loonghao.vx.locale.en-US.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: loonghao.vx +PackageVersion: 0.8.9 +PackageLocale: en-US +Publisher: loonghao +PublisherUrl: https://github.com/loonghao +PublisherSupportUrl: https://github.com/loonghao/vx/issues +PackageName: vx +PackageUrl: https://github.com/loonghao/vx +License: MIT +LicenseUrl: https://github.com/loonghao/vx/blob/HEAD/LICENSE +ShortDescription: Universal Development Tool Manager +Description: vx is a universal development tool manager that automatically installs and manages development tools like Node.js, Python, Go, Rust, etc. Zero learning curve - just use familiar commands and vx handles the rest. +Tags: +- cli +- development +- go +- nodejs +- python +- rust +- tool-manager +- version-manager +ReleaseNotes: |- + 0.8.9 (2026-03-26) + Documentation + - improve agent documentation for better AI discoverability (#701) (75eadff) +ReleaseNotesUrl: https://github.com/loonghao/vx/releases/tag/v0.8.9 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/loonghao/vx/0.8.9/loonghao.vx.yaml b/manifests/l/loonghao/vx/0.8.9/loonghao.vx.yaml new file mode 100644 index 000000000000..14bc880a67aa --- /dev/null +++ b/manifests/l/loonghao/vx/0.8.9/loonghao.vx.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: loonghao.vx +PackageVersion: 0.8.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/APM/0.8.6/Microsoft.APM.installer.yaml b/manifests/m/Microsoft/APM/0.8.6/Microsoft.APM.installer.yaml new file mode 100644 index 000000000000..2b73117de164 --- /dev/null +++ b/manifests/m/Microsoft/APM/0.8.6/Microsoft.APM.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: Microsoft.APM +PackageVersion: 0.8.6 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: apm-windows-x86_64/apm.exe + PortableCommandAlias: apm +UpgradeBehavior: install +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/microsoft/apm/releases/download/v0.8.6/apm-windows-x86_64.zip + InstallerSha256: 023FE80FEE7E24C0A9327CBC4EE87707C9608B001CC054238143C14C268551E2 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/APM/0.8.6/Microsoft.APM.locale.en-US.yaml b/manifests/m/Microsoft/APM/0.8.6/Microsoft.APM.locale.en-US.yaml new file mode 100644 index 000000000000..7c7e7d54cfb7 --- /dev/null +++ b/manifests/m/Microsoft/APM/0.8.6/Microsoft.APM.locale.en-US.yaml @@ -0,0 +1,51 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.APM +PackageVersion: 0.8.6 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://github.com/microsoft/apm +PublisherSupportUrl: https://github.com/microsoft/apm/issues +Author: Microsoft Corporation +PackageName: APM – Agent Package Manager +PackageUrl: https://microsoft.github.io/apm/ +License: MIT +LicenseUrl: https://github.com/microsoft/apm/blob/HEAD/LICENSE +Copyright: Copyright (c) Microsoft Corporation +CopyrightUrl: https://github.com/microsoft/apm/blob/HEAD/LICENSE +ShortDescription: The package manager for AI-Native Development. +Description: |- + An open-source, community-driven dependency manager for AI agents. + Think package.json, requirements.txt, or Cargo.toml — but for AI agent configuration. +Moniker: apm +Tags: +- ai-agents +- claude-code +- codex-cli +- context-engineering +- github-copilot +- package-manager +- prompt-engineering +ReleaseNotes: |- + What's Changed + 🔧 Other Changes + - fix: batch bug fixes -- installer fallback, target registry, lockfile idempotency by @danielmeppiel in #456 + - Fix Windows antivirus file-lock errors during apm install by @Copilot in #440 + - fix: allow spaces in ADO repository names when parsing URLs by @PremKumarML in #437 + - fix: gate .claude/commands/ deployment behind integrate_claude flag by @neop26 in #443 + - fix: reject path traversal in SSH URL parsing by @thakoreh in #458 + - fix: exclude bundled OpenSSL libs from Linux binary by @danielmeppiel in #466 + - fix: sort instruction discovery order for deterministic Build IDs across platforms by @Coolomina in #468 + - fix: share AuthResolver across install to prevent duplicate auth popups by @frblondin in #424 + - chore: bump to v0.8.6 by @danielmeppiel in #474 + New Contributors + - @PremKumarML made their first contribution in #437 + - @neop26 made their first contribution in #443 + - @thakoreh made their first contribution in #458 + - @Coolomina made their first contribution in #468 + - @frblondin made their first contribution in #424 + Full Changelog: v0.8.5...v0.8.6 +ReleaseNotesUrl: https://github.com/microsoft/apm/releases/tag/v0.8.6 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/APM/0.8.6/Microsoft.APM.yaml b/manifests/m/Microsoft/APM/0.8.6/Microsoft.APM.yaml new file mode 100644 index 000000000000..5978f141289b --- /dev/null +++ b/manifests/m/Microsoft/APM/0.8.6/Microsoft.APM.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: Microsoft.APM +PackageVersion: 0.8.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.7463/Microsoft.WindowsSDK.10.0.26100.installer.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.7463/Microsoft.WindowsSDK.10.0.26100.installer.yaml new file mode 100644 index 000000000000..1155ef062a71 --- /dev/null +++ b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.7463/Microsoft.WindowsSDK.10.0.26100.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: Microsoft.WindowsSDK.10.0.26100 +PackageVersion: 10.0.26100.7463 +MinimumOSVersion: 10.0.0.0 +InstallerType: burn +InstallerSwitches: + Silent: /q + SilentWithProgress: /q + Log: ' ' +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2025-12-17 +AppsAndFeaturesEntries: +- DisplayVersion: 10.1.26100.7463 + ProductCode: '{90db0dbb-c42e-44f9-aec5-e2af54d0fd74}' + UpgradeCode: '{B80C8C0E-1F1A-366C-A5F4-0009B0CAC392}' + InstallerType: burn +Installers: +- Architecture: x86 + InstallerUrl: https://download.microsoft.com/download/f0e51d69-8ea7-402a-8470-2cc9d08d88ee/KIT_BUNDLE_WINDOWSSDK_MEDIACREATION/winsdksetup.exe + InstallerSha256: 405D00A28732CCE61466A0F32BB02A84D629F491F5C231E22333C38FB7CD86A9 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.7463/Microsoft.WindowsSDK.10.0.26100.locale.en-US.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.7463/Microsoft.WindowsSDK.10.0.26100.locale.en-US.yaml new file mode 100644 index 000000000000..1c05e76be8a3 --- /dev/null +++ b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.7463/Microsoft.WindowsSDK.10.0.26100.locale.en-US.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: Microsoft.WindowsSDK.10.0.26100 +PackageVersion: 10.0.26100.7463 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/en-us/ +PublisherSupportUrl: https://support.microsoft.com/en-us +PrivacyUrl: https://privacy.microsoft.com/en-us/privacystatement +Author: Microsoft Corporation +PackageName: Windows Software Development Kit - Windows 10.0.26100.7463 +PackageUrl: https://learn.microsoft.com/en-us/windows/apps/windows-sdk/downloads +License: Proprietary +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: > + The Windows Software Development Kit (10.0.26100.7463) for Windows 11 provides the latest headers, + libraries, metadata, and tools for building Windows apps. +ReleaseNotesUrl: https://learn.microsoft.com/en-us/windows/apps/windows-sdk/release-notes#build-100261007463 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.7463/Microsoft.WindowsSDK.10.0.26100.yaml b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.7463/Microsoft.WindowsSDK.10.0.26100.yaml new file mode 100644 index 000000000000..ac5690fdff7b --- /dev/null +++ b/manifests/m/Microsoft/WindowsSDK/10/0/26100/10.0.26100.7463/Microsoft.WindowsSDK.10.0.26100.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: Microsoft.WindowsSDK.10.0.26100 +PackageVersion: 10.0.26100.7463 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mihomo-Party/Mihomo-Party/1.9.3/Mihomo-Party.Mihomo-Party.installer.yaml b/manifests/m/Mihomo-Party/Mihomo-Party/1.9.3/Mihomo-Party.Mihomo-Party.installer.yaml new file mode 100644 index 000000000000..5195db34b0d8 --- /dev/null +++ b/manifests/m/Mihomo-Party/Mihomo-Party/1.9.3/Mihomo-Party.Mihomo-Party.installer.yaml @@ -0,0 +1,25 @@ +# 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: Mihomo-Party.Mihomo-Party +PackageVersion: 1.9.3 +InstallerLocale: en-US +InstallerType: nullsoft +ProductCode: dca524c3-c4d3-54b7-891e-e781dd58e37f +ReleaseDate: 2026-03-24 +AppsAndFeaturesEntries: +- DisplayName: Clash Party + Publisher: mihomo-party-org + ProductCode: dca524c3-c4d3-54b7-891e-e781dd58e37f +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/mihomo-party-org/clash-party/releases/download/v1.9.3/clash-party-windows-1.9.3-ia32-setup.exe + InstallerSha256: 651BF413C522D18265FC376B2393FB5F318D9130B83799FA840287464664EE3E +- Architecture: x64 + InstallerUrl: https://github.com/mihomo-party-org/clash-party/releases/download/v1.9.3/clash-party-windows-1.9.3-x64-setup.exe + InstallerSha256: 32D608F010DEEBE0EC8DE2950E66C09D6B35AF309ED7C28F18456BDE1394EEAD +- Architecture: arm64 + InstallerUrl: https://github.com/mihomo-party-org/clash-party/releases/download/v1.9.3/clash-party-windows-1.9.3-arm64-setup.exe + InstallerSha256: 4B6AE6BF77FBF7073BE32A16683478037FAB75240141A03A5B4D063867BCCE24 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mihomo-Party/Mihomo-Party/1.9.3/Mihomo-Party.Mihomo-Party.locale.en-US.yaml b/manifests/m/Mihomo-Party/Mihomo-Party/1.9.3/Mihomo-Party.Mihomo-Party.locale.en-US.yaml new file mode 100644 index 000000000000..baa6f7581e9c --- /dev/null +++ b/manifests/m/Mihomo-Party/Mihomo-Party/1.9.3/Mihomo-Party.Mihomo-Party.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.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mihomo-Party.Mihomo-Party +PackageVersion: 1.9.3 +PackageLocale: en-US +Publisher: Mihomo-Party +PublisherUrl: https://github.com/pompurin404/mihomo-party +PublisherSupportUrl: https://github.com/mihomo-party-org/mihomo-party/issues +Author: Pompurin404 +PackageName: Mihomo-Party +PackageUrl: https://github.com/mihomo-party-org/mihomo-party +License: GPL-3.0 +LicenseUrl: https://github.com/mihomo-party-org/clash-party/blob/HEAD/LICENSE +Copyright: Copyright © 2024 mihomo-party +ShortDescription: Another Mihomo GUI. +Tags: +- clash +- clash-meta +- electron +- mihomo +- mihomo-party +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mihomo-Party/Mihomo-Party/1.9.3/Mihomo-Party.Mihomo-Party.yaml b/manifests/m/Mihomo-Party/Mihomo-Party/1.9.3/Mihomo-Party.Mihomo-Party.yaml new file mode 100644 index 000000000000..b8aebc459445 --- /dev/null +++ b/manifests/m/Mihomo-Party/Mihomo-Party/1.9.3/Mihomo-Party.Mihomo-Party.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: Mihomo-Party.Mihomo-Party +PackageVersion: 1.9.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ro/140.9.0/Mozilla.Firefox.ESR.ro.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/ro/140.9.0/Mozilla.Firefox.ESR.ro.installer.yaml new file mode 100644 index 000000000000..f8d2ba9b751a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ro/140.9.0/Mozilla.Firefox.ESR.ro.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.ro +PackageVersion: 140.9.0 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2026-03-24 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.9.0esr/win32/ro/Firefox%20Setup%20140.9.0esr.exe + InstallerSha256: 94C1ACB334DA42F21BEDCA95102E9463B05EDDF8908AD57A57638917479CEFB8 + ProductCode: Mozilla Firefox 140.9.0 ESR (x86 ro) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.9.0esr/win64/ro/Firefox%20Setup%20140.9.0esr.exe + InstallerSha256: D4865C33E9059CBE7555A490E37D2E5B28500D953D485A937A35D10855549F9E + ProductCode: Mozilla Firefox 140.9.0 ESR (x64 ro) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.9.0esr/win64-aarch64/ro/Firefox%20Setup%20140.9.0esr.exe + InstallerSha256: 4CDB0021B729DC894E949BA08FAB1417DE0CC45D9333BB41E3968F2CDCFBBEED + ProductCode: Mozilla Firefox 140.9.0 ESR (arm64 ro) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ro/140.9.0/Mozilla.Firefox.ESR.ro.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/ro/140.9.0/Mozilla.Firefox.ESR.ro.locale.de-DE.yaml new file mode 100644 index 000000000000..eb68ad9c0568 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ro/140.9.0/Mozilla.Firefox.ESR.ro.locale.de-DE.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: Mozilla.Firefox.ESR.ro +PackageVersion: 140.9.0 +PackageLocale: de-DE +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/websites +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (ro) +PackageUrl: https://www.mozilla.org/de/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Holen Sie sich den Firefox Extended Support Release oder Rapid Release für umfassende Datensicherheit und Datenschutz. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ro/140.9.0/Mozilla.Firefox.ESR.ro.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/ro/140.9.0/Mozilla.Firefox.ESR.ro.locale.en-US.yaml new file mode 100644 index 000000000000..3a2e536e9ec5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ro/140.9.0/Mozilla.Firefox.ESR.ro.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: Mozilla.Firefox.ESR.ro +PackageVersion: 140.9.0 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (ro) +PackageUrl: https://www.mozilla.org/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Get the Firefox Extended Support Release or Rapid Release browser for comprehensive data security and data protection. +Moniker: firefox-esr +Tags: +- browser +- cross-platform +- foss +- gecko +- quantum +- spidermonkey +- web +- web-browser +ReleaseNotes: |- + Version 140.9.0, first offered to ESR channel users on March 24, 2026 + Firefox 140 Extended Support Release (ESR) includes all of the enhancements since Firefox 128, along with many new features to make your enterprise deployments easier and even more flexible. + + Fixed + - Various security fixes. + + Developer +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.9.0/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ro/140.9.0/Mozilla.Firefox.ESR.ro.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/ro/140.9.0/Mozilla.Firefox.ESR.ro.locale.zh-CN.yaml new file mode 100644 index 000000000000..29045abb847b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ro/140.9.0/Mozilla.Firefox.ESR.ro.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: Mozilla.Firefox.ESR.ro +PackageVersion: 140.9.0 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageName: Mozilla Firefox ESR (ro) +PackageUrl: https://www.mozilla.org/zh-CN/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: 下载部署 Firefox 延长支持版或快速发行版,获得全面的信息安全和数据保护。 +Tags: +- mozilla +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ro/140.9.0/Mozilla.Firefox.ESR.ro.yaml b/manifests/m/Mozilla/Firefox/ESR/ro/140.9.0/Mozilla.Firefox.ESR.ro.yaml new file mode 100644 index 000000000000..1abbf49990ed --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ro/140.9.0/Mozilla.Firefox.ESR.ro.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: Mozilla.Firefox.ESR.ro +PackageVersion: 140.9.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/marlocarlo/psmux/3.3.1/marlocarlo.psmux.installer.yaml b/manifests/m/marlocarlo/psmux/3.3.1/marlocarlo.psmux.installer.yaml new file mode 100644 index 000000000000..2e7546010056 --- /dev/null +++ b/manifests/m/marlocarlo/psmux/3.3.1/marlocarlo.psmux.installer.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: marlocarlo.psmux +PackageVersion: 3.3.1 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: psmux.exe + PortableCommandAlias: psmux +- RelativeFilePath: pmux.exe + PortableCommandAlias: pmux +- RelativeFilePath: tmux.exe + PortableCommandAlias: tmux +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/psmux/psmux/releases/download/v3.3.1/psmux-v3.3.1-windows-x64.zip + InstallerSha256: F22D8570DB5D0CDFB3CED7F9A46772BE4703D8AD7A78FE08092371DC77D408C9 +- Architecture: x86 + InstallerUrl: https://github.com/psmux/psmux/releases/download/v3.3.1/psmux-v3.3.1-windows-x86.zip + InstallerSha256: 3732A69CFB32461F845EDDDCF1E061F8CC6FE2D0031768CE3FDD8CC972C290BE +- Architecture: arm64 + InstallerUrl: https://github.com/psmux/psmux/releases/download/v3.3.1/psmux-v3.3.1-windows-arm64.zip + InstallerSha256: CC356C9F0F4162F71662D14A84E609144D639B0C466A81729057000CAEBC8731 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/marlocarlo/psmux/3.3.1/marlocarlo.psmux.locale.en-US.yaml b/manifests/m/marlocarlo/psmux/3.3.1/marlocarlo.psmux.locale.en-US.yaml new file mode 100644 index 000000000000..174155eee824 --- /dev/null +++ b/manifests/m/marlocarlo/psmux/3.3.1/marlocarlo.psmux.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: marlocarlo.psmux +PackageVersion: 3.3.1 +PackageLocale: en-US +Publisher: Josh +PublisherUrl: https://github.com/psmux +PublisherSupportUrl: https://github.com/psmux/psmux/issues +PackageName: psmux +PackageUrl: https://github.com/psmux/psmux +License: MIT +LicenseUrl: https://github.com/psmux/psmux/blob/master/LICENSE +Copyright: Copyright (c) Josh +ShortDescription: Terminal multiplexer for Windows - tmux alternative for PowerShell and Windows Terminal +Description: |- + psmux is a terminal multiplexer for Windows, bringing tmux-style split panes, + multiple windows, sessions, copy mode, mouse support, and a familiar keybinding + model to PowerShell and Windows Terminal. Ships with psmux, pmux, and tmux + aliases for drop-in tmux compatibility. No WSL, no Cygwin — pure Windows. +Moniker: psmux +Tags: +- terminal +- multiplexer +- tmux +- powershell +- windows +- cli +- pane +- session +- pmux +ReleaseNotesUrl: https://github.com/psmux/psmux/releases/tag/v3.3.1 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/marlocarlo/psmux/3.3.1/marlocarlo.psmux.yaml b/manifests/m/marlocarlo/psmux/3.3.1/marlocarlo.psmux.yaml new file mode 100644 index 000000000000..cdb108ce1990 --- /dev/null +++ b/manifests/m/marlocarlo/psmux/3.3.1/marlocarlo.psmux.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: marlocarlo.psmux +PackageVersion: 3.3.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/n/Netbird/Netbird/0.67.1/Netbird.Netbird.installer.yaml b/manifests/n/Netbird/Netbird/0.67.1/Netbird.Netbird.installer.yaml new file mode 100644 index 000000000000..ea70b19800a2 --- /dev/null +++ b/manifests/n/Netbird/Netbird/0.67.1/Netbird.Netbird.installer.yaml @@ -0,0 +1,45 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Netbird.Netbird +PackageVersion: 0.67.1 +Scope: machine +UpgradeBehavior: install +ReleaseDate: 2026-03-26 +Installers: +- Architecture: x64 + InstallerType: wix + InstallerUrl: https://github.com/netbirdio/netbird/releases/download/v0.67.1/netbird_installer_0.67.1_windows_amd64.msi + InstallerSha256: 05910A310FCD5096443EFE595374F0754CF27389FF6D161584956F1B1F526A54 + ProductCode: '{26E70F1F-3B80-4A52-95A0-44C0D54DB237}' + AppsAndFeaturesEntries: + - DisplayVersion: 0.67.1 + ProductCode: '{26E70F1F-3B80-4A52-95A0-44C0D54DB237}' + UpgradeCode: '{6456EC4E-3AD6-4B9B-A2BE-98E81CB21CCF}' +- Architecture: x64 + InstallerType: nullsoft + InstallerUrl: https://github.com/netbirdio/netbird/releases/download/v0.67.1/netbird_installer_0.67.1_windows_amd64.exe + InstallerSha256: B591EBB4A51260BCA3F86493403BACD35BDAC96C0E57778993F9712736DEDC7D + ProductCode: Netbird + AppsAndFeaturesEntries: + - Publisher: Netbird + DisplayVersion: 0.67.1.23592582448 +- Architecture: arm64 + InstallerType: wix + InstallerUrl: https://github.com/netbirdio/netbird/releases/download/v0.67.1/netbird_installer_0.67.1_windows_arm64.msi + InstallerSha256: C08F24BEEF5B93035D37E730D9630DBFBC90B8D05B538E45ED964A9FE122CE99 + ProductCode: '{57C4C237-B5F8-4FC0-B35D-FD3EFDF6E345}' + AppsAndFeaturesEntries: + - DisplayVersion: 0.67.1 + ProductCode: '{57C4C237-B5F8-4FC0-B35D-FD3EFDF6E345}' + UpgradeCode: '{6456EC4E-3AD6-4B9B-A2BE-98E81CB21CCF}' +- Architecture: arm64 + InstallerType: nullsoft + InstallerUrl: https://github.com/netbirdio/netbird/releases/download/v0.67.1/netbird_installer_0.67.1_windows_arm64.exe + InstallerSha256: 0F8FAAA92C60279C20B51A155989814DDC980BF5AE14228B94794B090F7E7D0E + ProductCode: Netbird + AppsAndFeaturesEntries: + - Publisher: Netbird + DisplayVersion: 0.67.1.23592582448 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/Netbird/Netbird/0.67.1/Netbird.Netbird.locale.en-US.yaml b/manifests/n/Netbird/Netbird/0.67.1/Netbird.Netbird.locale.en-US.yaml new file mode 100644 index 000000000000..71e11a1ec03a --- /dev/null +++ b/manifests/n/Netbird/Netbird/0.67.1/Netbird.Netbird.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: Netbird.Netbird +PackageVersion: 0.67.1 +PackageLocale: en-US +Publisher: NetBird GmbH +PublisherUrl: https://netbird.io/ +PublisherSupportUrl: https://github.com/netbirdio/netbird/issues +PrivacyUrl: https://netbird.io/privacy +Author: Wiretrustee UG (haftungsbeschreankt) +PackageName: Netbird +PackageUrl: https://netbird.io/ +License: BSD-3-Clause +LicenseUrl: https://github.com/netbirdio/netbird/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Wiretrustee UG (haftungsbeschränkt) & AUTHORS +CopyrightUrl: https://netbird.io/terms +ShortDescription: Connect your devices into a secure WireGuard®-based overlay network with SSO, MFA and granular access controls. +Description: |- + NetBird combines a configuration-free peer-to-peer private network and a centralized access control system in a single platform, making it easy to create secure private networks for your organization or home. + Connect. NetBird creates a WireGuard-based overlay network that automatically connects your machines over an encrypted tunnel, leaving behind the hassle of opening ports, complex firewall rules, VPN gateways, and so forth. + Secure. NetBird enables secure remote access by applying granular access policies while allowing you to manage them intuitively from a single place. Works universally on any infrastructure. +Moniker: netbird +Tags: +- network +- security +- vpn +- wireguard +ReleaseNotes: |- + What's Changed + - [client] Don't abort debug for command when up/down fails by @lixmal in https://github.com/netbirdio/netbird/pull/5657 + - [misc] Set signing env only if not fork and set license by @mlsmaycon in https://github.com/netbirdio/netbird/pull/5659 + - [management] Omit proxy_protocol from API response when false by @lixmal in https://github.com/netbirdio/netbird/pull/5656 + - [management] Replace JumpCloud SDK with direct HTTP calls by @bcmmbaga in https://github.com/netbirdio/netbird/pull/5591 + - [management] Allow multiple header auths with same header name by @lixmal in https://github.com/netbirdio/netbird/pull/5678 + - [management] Fix DNS label uniqueness check on peer rename by @bcmmbaga in https://github.com/netbirdio/netbird/pull/5679 + - [misc] Replace discontinued LocalStack with MinIO in S3 test by @lixmal in https://github.com/netbirdio/netbird/pull/5680 + - [client] Bump go-m1cpu to v0.2.1 to fix segfault on macOS 26 / M5 chips by @lixmal in https://github.com/netbirdio/netbird/pull/5701 + - [infrastructure] Enable RPM package gpgcheck in install script by @lixmal in https://github.com/netbirdio/netbird/pull/5676 + - [client] Replace iOS DNS IsPrivate heuristic with route checker by @lixmal in https://github.com/netbirdio/netbird/pull/5694 + Full Changelog: https://github.com/netbirdio/netbird/compare/v0.67.0...v0.67.1 +ReleaseNotesUrl: https://github.com/netbirdio/netbird/releases/tag/v0.67.1 +PurchaseUrl: https://netbird.io/pricing +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.netbird.io/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/Netbird/Netbird/0.67.1/Netbird.Netbird.locale.zh-CN.yaml b/manifests/n/Netbird/Netbird/0.67.1/Netbird.Netbird.locale.zh-CN.yaml new file mode 100644 index 000000000000..6af9e0cea69c --- /dev/null +++ b/manifests/n/Netbird/Netbird/0.67.1/Netbird.Netbird.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: Netbird.Netbird +PackageVersion: 0.67.1 +PackageLocale: zh-CN +ShortDescription: 通过 SSO、MFA 和细粒度访问控制,将设备连接到基于 WireGuard® 的安全覆盖网络。 +Description: |- + NetBird 将免配置点对点专用网络和集中式访问控制系统结合在一个平台中,帮助您轻松为组织或家庭创建安全的专用网络。 + 连接:NetBird 创建基于 WireGuard 的覆盖网络,通过加密隧道自动连接您的机器,省去了打开端口、复杂防火墙规则、VPN 网关等麻烦。 + 安全:NetBird 通过应用细粒度的访问策略实现安全的远程访问,同时允许您从一个地方对其进行直观的管理。在任何基础设施上通用。 +Tags: +- vpn +- wireguard +- 安全 +- 网络 +ReleaseNotesUrl: https://github.com/netbirdio/netbird/releases/tag/v0.67.1 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.netbird.io/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/n/Netbird/Netbird/0.67.1/Netbird.Netbird.yaml b/manifests/n/Netbird/Netbird/0.67.1/Netbird.Netbird.yaml new file mode 100644 index 000000000000..46f742b0d999 --- /dev/null +++ b/manifests/n/Netbird/Netbird/0.67.1/Netbird.Netbird.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: Netbird.Netbird +PackageVersion: 0.67.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/o/obot-platform/obot/.validation b/manifests/o/obot-platform/obot/.validation index 463d8bcaccc0..a62e7d68216e 100644 --- a/manifests/o/obot-platform/obot/.validation +++ b/manifests/o/obot-platform/obot/.validation @@ -1 +1 @@ -{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"981aa57c-7ce5-46cc-8402-ec9c7d9f6e51","TestPlan":"Policy-Test-2.7","PackagePath":"manifests/o/obot-platform/obot/v0.18.0","CommitId":"90bf0d74b5dba7fb71d8b03b8e1635189d2ec63a"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file +{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"981aa57c-7ce5-46cc-8402-ec9c7d9f6e51","TestPlan":"Policy-Test-2.7","PackagePath":"manifests/o/obot-platform/obot/v0.18.0","CommitId":"90bf0d74b5dba7fb71d8b03b8e1635189d2ec63a"},{"WaiverId":"4cc06fc5-dfc2-49da-afb0-8643280bdab4","TestPlan":"Policy-Test-2.7","PackagePath":"manifests/o/obot-platform/obot/v0.18.1","CommitId":"d6e8ec97feed5af20da4cd7ffce7b630baf38ded"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/o/obot-platform/obot/v0.18.1/obot-platform.obot.installer.yaml b/manifests/o/obot-platform/obot/v0.18.1/obot-platform.obot.installer.yaml new file mode 100644 index 000000000000..961404efe7df --- /dev/null +++ b/manifests/o/obot-platform/obot/v0.18.1/obot-platform.obot.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: obot-platform.obot +PackageVersion: v0.18.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: obot.exe + PortableCommandAlias: obot +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/obot-platform/obot/releases/download/v0.18.1/obot_v0.18.1_windows_amd64.zip + InstallerSha256: BD206CEAE14622FA5C87AD3135F4FCEF537F078993E38D9CB8A49D2057071958 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-22 diff --git a/manifests/o/obot-platform/obot/v0.18.1/obot-platform.obot.locale.en-US.yaml b/manifests/o/obot-platform/obot/v0.18.1/obot-platform.obot.locale.en-US.yaml new file mode 100644 index 000000000000..9df571ea911c --- /dev/null +++ b/manifests/o/obot-platform/obot/v0.18.1/obot-platform.obot.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: obot-platform.obot +PackageVersion: v0.18.1 +PackageLocale: en-US +Publisher: Acorn Labs, Inc +PublisherUrl: https://github.com/obot-platform +PublisherSupportUrl: https://github.com/obot-platform/obot/issues +PackageName: obot +PackageUrl: https://github.com/obot-platform/obot +License: Apache 2.0 +ShortDescription: Obot is an open source enterprise agent platform. +Tags: +- ai +- mcp +- modelcontextprotocol +ReleaseNotesUrl: https://github.com/obot-platform/obot/releases/tag/v0.18.1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/obot-platform/obot/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/obot-platform/obot/v0.18.1/obot-platform.obot.yaml b/manifests/o/obot-platform/obot/v0.18.1/obot-platform.obot.yaml new file mode 100644 index 000000000000..05dc118ec4bd --- /dev/null +++ b/manifests/o/obot-platform/obot/v0.18.1/obot-platform.obot.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: obot-platform.obot +PackageVersion: v0.18.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/PerryTS/Perry/0.4.23/PerryTS.Perry.installer.yaml b/manifests/p/PerryTS/Perry/0.4.23/PerryTS.Perry.installer.yaml new file mode 100644 index 000000000000..2c5f442189d4 --- /dev/null +++ b/manifests/p/PerryTS/Perry/0.4.23/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.23 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: perry.exe + PortableCommandAlias: perry +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/PerryTS/perry/releases/download/v0.4.23/perry-windows-x86_64.zip + InstallerSha256: 79094C38C4C028BFA05A6A53057FB3ED42709C7ED768581162DD7EBED11E0ADB +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-27 diff --git a/manifests/p/PerryTS/Perry/0.4.23/PerryTS.Perry.locale.en-US.yaml b/manifests/p/PerryTS/Perry/0.4.23/PerryTS.Perry.locale.en-US.yaml new file mode 100644 index 000000000000..7cc24441c611 --- /dev/null +++ b/manifests/p/PerryTS/Perry/0.4.23/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.23 +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.23 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PerryTS/Perry/0.4.23/PerryTS.Perry.yaml b/manifests/p/PerryTS/Perry/0.4.23/PerryTS.Perry.yaml new file mode 100644 index 000000000000..c1910c3c4159 --- /dev/null +++ b/manifests/p/PerryTS/Perry/0.4.23/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.23 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 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 diff --git a/manifests/r/Reqable/Reqable/3.0.40/Reqable.Reqable.installer.yaml b/manifests/r/Reqable/Reqable/3.0.40/Reqable.Reqable.installer.yaml new file mode 100644 index 000000000000..21328f50b024 --- /dev/null +++ b/manifests/r/Reqable/Reqable/3.0.40/Reqable.Reqable.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Reqable.Reqable +PackageVersion: 3.0.40 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- chls +- chlsj +- har +ProductCode: '{64920BD9-D19F-4537-84AA-42BF46FEB27E}_is1' +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/reqable/reqable-app/releases/download/3.0.40/reqable-app-windows-x86_64.exe + InstallerSha256: B2B64CE16F5326CCAD6E88CE6F48B34A31E45FD8820CFE7A4E1BCF17D325E9C3 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/Reqable/Reqable/3.0.40/Reqable.Reqable.locale.en-US.yaml b/manifests/r/Reqable/Reqable/3.0.40/Reqable.Reqable.locale.en-US.yaml new file mode 100644 index 000000000000..91091a41ebaa --- /dev/null +++ b/manifests/r/Reqable/Reqable/3.0.40/Reqable.Reqable.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: Reqable.Reqable +PackageVersion: 3.0.40 +PackageLocale: en-US +Publisher: Reqqable Inc. +PublisherUrl: https://reqable.com/ +PublisherSupportUrl: https://github.com/reqable/reqable-app/issues +PrivacyUrl: https://reqable.com/policy +Author: Reqqable Inc. +PackageName: Reqable +PackageUrl: https://reqable.com/ +License: Proprietary +LicenseUrl: https://reqable.com/policy +Copyright: Copyright (C) 2026 Reqable All rights reserved. +ShortDescription: Advanced API Debugging Proxy +Description: Reqable is a flutter-based, cross-platform app, which enables developers to capture, inspect, and manipulate HTTP(s) requests/responses with ease. Support Windows, macOS, linux, iOS and Android devices. +Tags: +- capture +- debug +- network +- proxy +- request +- response +- traffic +- web +ReleaseNotes: |- + 💪 [OPT] Add SSE option to the traffic quick filter bar. + 💪 [OPT] Rename protocol names in the traffic quick filter bar. + 🐞 [FIX] The bug where the response data in the raw tab did not automatically update. + 🐞 [FIX] A bug in the curl command where the `-no-buffer` option causes import failures. + 🐞 [FIX] The bug where JSONP data with a trailing semicolon was not formatted correctly. + 🐞 [FIX] The bug where unknown applications might flicker in the filter sidebar. + 🐞 [FIX] The bug where the preview data for deleted request query parameters in rewrite rules was incorrect. +ReleaseNotesUrl: https://reqable.com/docs/changelogs/windows/ +PurchaseUrl: https://reqable.com/pricing/ +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://reqable.com/docs/introduction +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/Reqable/Reqable/3.0.40/Reqable.Reqable.locale.zh-CN.yaml b/manifests/r/Reqable/Reqable/3.0.40/Reqable.Reqable.locale.zh-CN.yaml new file mode 100644 index 000000000000..c793360ec20d --- /dev/null +++ b/manifests/r/Reqable/Reqable/3.0.40/Reqable.Reqable.locale.zh-CN.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Reqable.Reqable +PackageVersion: 3.0.40 +PackageLocale: zh-CN +Publisher: Reqqable Inc. +PublisherUrl: https://reqable.com/zh-CN/ +PublisherSupportUrl: https://github.com/reqable/reqable-app/issues +PrivacyUrl: https://reqable.com/zh-CN/policy +Author: 上海日夸宝信息技术有限公司 +PackageName: Reqable +PackageUrl: https://reqable.com/zh-CN/ +License: 专有软件 +LicenseUrl: https://reqable.com/zh-CN/policy +Copyright: Copyright (C) 2026 Reqable All rights reserved. +ShortDescription: 先进 API 生产力工具 +Description: Reqable = Fiddler + Charles + Postman,网络抓包和 API 测试一站化国产解决方案,全平台支持 HTTP1、HTTP2 和 HTTP3(QUIC)。 +Tags: +- 代理 +- 响应 +- 抓包 +- 流量 +- 网络 +- 网页 +- 请求 +- 调试 +ReleaseNotes: |- + 💪【优化】调试快捷筛选栏添加 SSE 选项。 + 💪【优化】重命名调试快捷筛选栏协议名称。 + 🐞【修复】原始标签页响应数据不会自动更新的 bug。 + 🐞【修复】curl 命令中`-no-buffer`选项导致导入失败的 bug。 + 🐞【修复】结尾带分号的 JSONP 数据未能正常格式化 bug。 + 🐞【修复】调试侧边栏中可能出现未知应用跳动的问题。 + 🐞【修复】重写删除请求参数预览数据显示不正确的 bug。 +ReleaseNotesUrl: https://reqable.com/zh-CN/docs/changelogs/windows/ +PurchaseUrl: https://reqable.com/zh-CN/pricing/ +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://reqable.com/zh-CN/docs/introduction +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/r/Reqable/Reqable/3.0.40/Reqable.Reqable.yaml b/manifests/r/Reqable/Reqable/3.0.40/Reqable.Reqable.yaml new file mode 100644 index 000000000000..5ad3a806a8af --- /dev/null +++ b/manifests/r/Reqable/Reqable/3.0.40/Reqable.Reqable.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Reqable.Reqable +PackageVersion: 3.0.40 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/Resolume/Arena/7.25.0.1334/Resolume.Arena.installer.yaml b/manifests/r/Resolume/Arena/7.25.0.1334/Resolume.Arena.installer.yaml new file mode 100644 index 000000000000..9dc004e67ec1 --- /dev/null +++ b/manifests/r/Resolume/Arena/7.25.0.1334/Resolume.Arena.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Resolume.Arena +PackageVersion: 7.25.0.1334 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.10240.0 +InstallerType: inno +Scope: machine +Installers: +- Architecture: x64 + InstallerUrl: https://dd5sgwxv3xok.cloudfront.net/Resolume_Arena_7_25_0_rev_1334_Installer.exe + InstallerSha256: 6F60D122F29E374D7AED33DC77EB5EE20B4F948C3F65030FB5770807F65CA71A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/Resolume/Arena/7.25.0.1334/Resolume.Arena.locale.en-US.yaml b/manifests/r/Resolume/Arena/7.25.0.1334/Resolume.Arena.locale.en-US.yaml new file mode 100644 index 000000000000..8034d9436ccb --- /dev/null +++ b/manifests/r/Resolume/Arena/7.25.0.1334/Resolume.Arena.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: Resolume.Arena +PackageVersion: 7.25.0.1334 +PackageLocale: en-US +Publisher: Resolume +PublisherUrl: https://resolume.com +PublisherSupportUrl: https://resolume.com/support/ +PrivacyUrl: https://resolume.com/privacy +Author: Resolume B.V. +PackageName: Resolume Arena +PackageUrl: https://resolume.com/download +License: Proprietary +Copyright: Copyright ©2001-2026 Resolume B.V. All rights reserved +ShortDescription: Resolume Arena is an Instrument for VJs, AV performers and video artists. +Description: Resolume Arena is an instrument for VJs, AV performers and video artists. Resolume Arena puts all your media and effects right at your fingertips, so you can quickly play and improvise your live visuals. Arena expands on Avenue and has advanced options for projection mapping and blending projectors. Control it from a lighting desk and sync to the DJ via SMPTE timecode. +Moniker: arena +Tags: +- vj +- vj software +- video +- dmx +- artnet +- osc +- midi +- projection mapping +- conference +PurchaseUrl: https://resolume.com/shop/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/Resolume/Arena/7.25.0.1334/Resolume.Arena.yaml b/manifests/r/Resolume/Arena/7.25.0.1334/Resolume.Arena.yaml new file mode 100644 index 000000000000..14a9ace3ffab --- /dev/null +++ b/manifests/r/Resolume/Arena/7.25.0.1334/Resolume.Arena.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: Resolume.Arena +PackageVersion: 7.25.0.1334 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/Resolume/Avenue/7.25.0.1334/Resolume.Avenue.installer.yaml b/manifests/r/Resolume/Avenue/7.25.0.1334/Resolume.Avenue.installer.yaml new file mode 100644 index 000000000000..21cf1dcbf1f5 --- /dev/null +++ b/manifests/r/Resolume/Avenue/7.25.0.1334/Resolume.Avenue.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Resolume.Avenue +PackageVersion: 7.25.0.1334 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.10240.0 +InstallerType: inno +Scope: machine +Installers: +- Architecture: x64 + InstallerUrl: https://dd5sgwxv3xok.cloudfront.net/Resolume_Avenue_7_25_0_rev_1334_Installer.exe + InstallerSha256: BC6F0307936E0F180899B03F38FB16767A642EA0A839D9989473C84C62262749 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/Resolume/Avenue/7.25.0.1334/Resolume.Avenue.locale.en-US.yaml b/manifests/r/Resolume/Avenue/7.25.0.1334/Resolume.Avenue.locale.en-US.yaml new file mode 100644 index 000000000000..e4eb023c8420 --- /dev/null +++ b/manifests/r/Resolume/Avenue/7.25.0.1334/Resolume.Avenue.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: Resolume.Avenue +PackageVersion: 7.25.0.1334 +PackageLocale: en-US +Publisher: Resolume +PublisherUrl: https://resolume.com +PublisherSupportUrl: https://resolume.com/support/ +PrivacyUrl: https://resolume.com/privacy +Author: Resolume B.V. +PackageName: Resolume Avenue +PackageUrl: https://resolume.com/download +License: Proprietary +Copyright: Copyright ©2001-2026 Resolume B.V. All rights reserved +ShortDescription: Resolume Avenue +Description: Resolume Avenue is an instrument for VJs, AV performers and video artists. Avenue puts all your media and effects right at your fingertips, so you can quickly play and improvise your live visuals. +Moniker: avenue +Tags: +- vj +- vj software +- video +- dmx +- artnet +- osc +- midi +- projection mapping +- conference +PurchaseUrl: https://resolume.com/shop/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/Resolume/Avenue/7.25.0.1334/Resolume.Avenue.yaml b/manifests/r/Resolume/Avenue/7.25.0.1334/Resolume.Avenue.yaml new file mode 100644 index 000000000000..8c70512d0ccb --- /dev/null +++ b/manifests/r/Resolume/Avenue/7.25.0.1334/Resolume.Avenue.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: Resolume.Avenue +PackageVersion: 7.25.0.1334 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 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/i/iTop/iTopEasyDesktop/4.1.1.274/iTop.iTopEasyDesktop.yaml b/manifests/r/ReversingLabs/SAFEViewer/1.5.8/ReversingLabs.SAFEViewer.yaml similarity index 58% rename from manifests/i/iTop/iTopEasyDesktop/4.1.1.274/iTop.iTopEasyDesktop.yaml rename to manifests/r/ReversingLabs/SAFEViewer/1.5.8/ReversingLabs.SAFEViewer.yaml index 1d5489eb8dcc..2bb4b649a479 100644 --- a/manifests/i/iTop/iTopEasyDesktop/4.1.1.274/iTop.iTopEasyDesktop.yaml +++ b/manifests/r/ReversingLabs/SAFEViewer/1.5.8/ReversingLabs.SAFEViewer.yaml @@ -1,8 +1,8 @@ -# 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: iTop.iTopEasyDesktop -PackageVersion: 4.1.1.274 +PackageIdentifier: ReversingLabs.SAFEViewer +PackageVersion: 1.5.8 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/s/SabreTools/MPF/3.7.0/SabreTools.MPF.installer.yaml b/manifests/s/SabreTools/MPF/3.7.0/SabreTools.MPF.installer.yaml new file mode 100644 index 000000000000..63f50fdbe081 --- /dev/null +++ b/manifests/s/SabreTools/MPF/3.7.0/SabreTools.MPF.installer.yaml @@ -0,0 +1,26 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: SabreTools.MPF +PackageVersion: 3.7.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: MPF.exe +ReleaseDate: 2026-03-20 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/SabreTools/MPF/releases/download/3.7.0/MPF.UI_3.7.0_net10.0-windows_win-x86_release.zip + InstallerSha256: 1EA0469F5E68F950FF806B45D8C4BB2304C87CC1E1C587EB3074E1FF83FF6C24 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + InstallerUrl: https://github.com/SabreTools/MPF/releases/download/3.7.0/MPF.UI_3.7.0_net10.0-windows_win-x64_release.zip + InstallerSha256: 6A8FAD0B622F708DCFF03098017CFD1909CEBDA96EEB963C23BABA5B6A9B26CF + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/SabreTools/MPF/3.7.0/SabreTools.MPF.locale.en-US.yaml b/manifests/s/SabreTools/MPF/3.7.0/SabreTools.MPF.locale.en-US.yaml new file mode 100644 index 000000000000..0d8c597f31b3 --- /dev/null +++ b/manifests/s/SabreTools/MPF/3.7.0/SabreTools.MPF.locale.en-US.yaml @@ -0,0 +1,134 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: SabreTools.MPF +PackageVersion: 3.7.0 +PackageLocale: en-US +Publisher: SabreTools +PublisherUrl: https://github.com/SabreTools +PublisherSupportUrl: https://github.com/SabreTools/MPF/issues +Author: SabreTools +PackageName: Media Preservation Frontend +PackageUrl: https://github.com/SabreTools/MPF +License: GPL-3.0 +LicenseUrl: https://github.com/SabreTools/MPF/blob/HEAD/LICENSE +Copyright: Copyright (c) Matt Nadareski 2019-2025 +ShortDescription: Redumper/Aaru/DiscImageCreator GUI in C# +Moniker: mpf +Tags: +- media-preservation +- opensource +- portable +ReleaseNotes: |- + UI Builds + Windows x64 - Recommended for all Windows users + Windows x86 - Only needed for older machines + Changelog + - Check for null or empty layerbreak arrays + - Check range-specific values in layerbreak + - Update Redumper to build 671 + - Update Redumper to build 676 (rename asus flags to mediatek) + - Use default media type if not provided + - Update Redumper to build 682 (Dreamcast support) + - Add default subfolder to CLI outputs + - Update DIC to 20260101 + - Update Redumper to build 683 + - Add editorconfig, fix issues + - Add MPRESS to packer filters + - Update RedumpLib to 1.9.1 + - Split path creation in OptionsLoader + - Add unused Dreamdump execution context + - Validate a system is provided for CLI applications + - Log the system being used, in case it came from config + - Extend logging with a new state + - Add currently-unused new options class + - Allow Check and CLI to check for updates on startup + - Check should not default to update checking + - Add save and load for new options type + - Add conversion method from new options type + - Replace Options with SegmentedOptions in most places + - Fix ListConfig feature with new layout + - Move InternalProgram up a level in options, fix XAML + - Fix path assignment from UI + - Reduce reach of original Options type + - Move dictionary logic to new Options object + - Replace original Options object + - Clean up options serialization and ordering + - Add placeholder CLI media info methods + - Further cleanup in Options + - Move dump settings next to execution contexts + - Introduce base dump settings type + - Remove passthrough property on Options + - Move conversion method to options loader + - Move other conversion method to options loader + - Add GP-Install to packer filters + - Update Aaru to 5.4.2 LTS + - Use prefixing protection scan output + - Print error when redump is down + - Support new redumper log for current profile + - Minor commandline program cleanup + - This might take a while... + - Support new redumper changes + - Support more new redumper changes + - Update Redumper to build 699 + - Handle quoted flags, more quoted value types + - Update Redumper to build 700 + - Include BCA in zipped files for Redumper + - Add retry override for MPF.CLI + - Limit BCA read to 64 bytes for Redumper + - Support more Redumper log outputs + - Bytes, not characters + - Add Portuguese translation (Kokasgui) + - Wire up Portuguese translation, fix Redumper enum + - Add Portuguese to UI code + - Update RedumpLib to 1.10.0 + - Fix build because of nullability + - Update Redumper to build 704 + - Fix Redumper publish links + - Specify why this matters at all + - Aaru Linux packages use xz now + - Repair incomplete SS files + - Cleanup of processing code + - Options helper cleanup + - Miscellaneous formatting cleanup + - Fix XGD3 SS validity check + - Update Portuguese translation + - Compress fixed SS + - Only print BCA for nintendo dumps + - Update packages + - Ignore common volume labels + - Attempt to fix image scanning issues + - Parse and process Steam AppIDs and DepotIDs (Bestest) + - Minor cleanup from missed recommendations + - Add Steam filter if specific example exists + - Update Redumper to build 705 + - Inform users of unused commandline inputs + - L̶i̶m̶i̶t̶ ̶p̶o̶s̶t̶-̶d̶u̶m̶p̶ ̶I̶R̶D̶ ̶c̶r̶e̶a̶t̶i̶o̶n̶ ̶t̶o̶ ̶P̶S̶3̶ ̶C̶F̶W̶ + - Revert previous change + - Update LibIRD to 1.0.4 + What's Changed + - Update Redumper to build 671 by @Deterous in #924 + - Update Redumper to build 676 (rename asus flags to mediatek) by @Deterous in #927 + - Update Redumper to build 681 (Dreamcast support) by @Deterous in #930 + - Update Redumper to build 683 by @Deterous in #933 + - Print error when redump is down by @Deterous in #943 + - Support new redumper log for current profile by @Deterous in #947 + - Support new redumper changes by @Deterous in #948 + - Add Portuguese localization by @Kokasgui in #953 + - Update Redumper to build 704 by @Deterous in #954 + - Repair incomplete SS files by @Deterous in #950 + - Fix XGD3 SS validity check by @Deterous in #955 + - Update Portuguese translation by @Kokasgui in #956 + - Compress fixed SS by @Deterous in #957 + - Only print BCA for nintendo dumps by @Deterous in #959 + - Ignore common volume labels by @Deterous in #960 + - Parse and process Steam AppIDs and DepotIDs by @HeroponRikiBestest in #961 + New Contributors + - @Kokasgui made their first contribution in #953 + Full Changelog: 3.6.0...3.7.0 +ReleaseNotesUrl: https://github.com/SabreTools/MPF/releases/tag/3.7.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/SabreTools/MPF/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SabreTools/MPF/3.7.0/SabreTools.MPF.yaml b/manifests/s/SabreTools/MPF/3.7.0/SabreTools.MPF.yaml new file mode 100644 index 000000000000..93c56a98488f --- /dev/null +++ b/manifests/s/SabreTools/MPF/3.7.0/SabreTools.MPF.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: SabreTools.MPF +PackageVersion: 3.7.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/SecondLoop/SecondLoop/1.27.0/SecondLoop.SecondLoop.installer.yaml b/manifests/s/SecondLoop/SecondLoop/1.27.0/SecondLoop.SecondLoop.installer.yaml new file mode 100644 index 000000000000..aba87e891767 --- /dev/null +++ b/manifests/s/SecondLoop/SecondLoop/1.27.0/SecondLoop.SecondLoop.installer.yaml @@ -0,0 +1,25 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: SecondLoop.SecondLoop +PackageVersion: 1.27.0 +InstallerType: msi +UpgradeBehavior: install +InstallModes: + - silent + - silentWithProgress +InstallerSwitches: + Custom: SECONDLOOP_LAUNCH_AFTER_INSTALL=0 +ProductCode: '{7140D788-318B-4642-921C-8B948B90E1EB}' +AppsAndFeaturesEntries: + - DisplayName: SecondLoop + Publisher: SecondLoop + ProductCode: '{7140D788-318B-4642-921C-8B948B90E1EB}' + UpgradeCode: '{8B5A0942-79D3-4B5A-A4E5-3FB906DA63A1}' + InstallerType: msi +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/dale0525/SecondLoop/releases/download/v1.27.0/SecondLoop-win.msi + InstallerSha256: A8F6CA85421F14EBFE1BC531840491D3609B3DE501BEF0E2EFCC65A9324D6A57 + InstallerLocale: en-US +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/s/SecondLoop/SecondLoop/1.27.0/SecondLoop.SecondLoop.locale.en-US.yaml b/manifests/s/SecondLoop/SecondLoop/1.27.0/SecondLoop.SecondLoop.locale.en-US.yaml new file mode 100644 index 000000000000..95cd2bb3909e --- /dev/null +++ b/manifests/s/SecondLoop/SecondLoop/1.27.0/SecondLoop.SecondLoop.locale.en-US.yaml @@ -0,0 +1,23 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: SecondLoop.SecondLoop +PackageVersion: 1.27.0 +PackageLocale: en-US +Publisher: SecondLoop +PublisherUrl: https://secondloop.app +PublisherSupportUrl: https://github.com/dale0525/SecondLoop/issues +Author: SecondLoop +PackageName: SecondLoop +PackageUrl: https://secondloop.app +License: Apache-2.0 +LicenseUrl: https://github.com/dale0525/SecondLoop/blob/main/LICENSE +ShortDescription: Local-first personal AI assistant with long-term memory. +Description: SecondLoop helps you capture, remember, and act with a local-first workflow. +Moniker: secondloop +Tags: + - ai + - notes + - productivity +ReleaseNotesUrl: https://github.com/dale0525/SecondLoop/releases/tag/v1.27.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/s/SecondLoop/SecondLoop/1.27.0/SecondLoop.SecondLoop.yaml b/manifests/s/SecondLoop/SecondLoop/1.27.0/SecondLoop.SecondLoop.yaml new file mode 100644 index 000000000000..5e45e2be0ee8 --- /dev/null +++ b/manifests/s/SecondLoop/SecondLoop/1.27.0/SecondLoop.SecondLoop.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: SecondLoop.SecondLoop +PackageVersion: 1.27.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/t/TASKING/winIDEA/9.21.402/TASKING.winIDEA.installer.yaml b/manifests/t/TASKING/winIDEA/9.21.402/TASKING.winIDEA.installer.yaml new file mode 100644 index 000000000000..751c342e76a1 --- /dev/null +++ b/manifests/t/TASKING/winIDEA/9.21.402/TASKING.winIDEA.installer.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: TASKING.winIDEA +PackageVersion: 9.21.402 +MinimumOSVersion: 10.0.0.0 +UpgradeBehavior: uninstallPrevious +Installers: +- Architecture: x64 + InstallerType: exe + Scope: machine + InstallerUrl: https://www.isystem.com/downloads/winIDEA/setup/winIDEA_x64_9_21_402_256492.exe + InstallerSha256: 57376C896DB745025FC56B5CDB2D8CD11384597FE76D76DC1A2CAA332373827A + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /q + SilentWithProgress: /q + InstallLocation: APPDIR= + ElevationRequirement: elevatesSelf +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: winIDEA.exe + InstallerUrl: https://www.isystem.com/downloads/winIDEA/setup/winIDEA_x64_9_21_402_256492.zip + InstallerSha256: 3CF52EFA9322F5CAB3CF221D87705EFE77E988204409E6DE43C3B2B69D02F2AC + ArchiveBinariesDependOnPath: true +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/t/TASKING/winIDEA/9.21.402/TASKING.winIDEA.locale.en-US.yaml b/manifests/t/TASKING/winIDEA/9.21.402/TASKING.winIDEA.locale.en-US.yaml new file mode 100644 index 000000000000..e16c5f323b4b --- /dev/null +++ b/manifests/t/TASKING/winIDEA/9.21.402/TASKING.winIDEA.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: TASKING.winIDEA +PackageVersion: 9.21.402 +PackageLocale: en-US +Publisher: TASKING +PublisherUrl: https://www.tasking.com/ +PublisherSupportUrl: https://support.tasking.com +PackageName: TASKING winIDEA +PackageUrl: https://www.tasking.com/products/winidea +License: Proprietary +Copyright: Copyright (C) 2024 TASKING +ShortDescription: winIDEA in conjunction with a Hardware debugger or a virtual ECU simulator is an IDE for debugging, testing, and analyzing embedded systems. +Moniker: winIDEA +Tags: +- winidea +- tasking +- isystem +- embedded +- debugging +- microcontroller +- mcu +ReleaseNotesUrl: https://www.isystem.com/downloads/winIDEA/Release-Notes/index.html +PurchaseUrl: https://www.tasking.com/products/buy-now +Documentations: +- DocumentUrl: https://www.isystem.com/downloads/winIDEA/help/index.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Docker/Cagent/v1.29.0/Docker.Cagent.yaml b/manifests/t/TASKING/winIDEA/9.21.402/TASKING.winIDEA.yaml similarity index 74% rename from manifests/d/Docker/Cagent/v1.29.0/Docker.Cagent.yaml rename to manifests/t/TASKING/winIDEA/9.21.402/TASKING.winIDEA.yaml index 8162cc379f06..d83e3b43359f 100644 --- a/manifests/d/Docker/Cagent/v1.29.0/Docker.Cagent.yaml +++ b/manifests/t/TASKING/winIDEA/9.21.402/TASKING.winIDEA.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 -PackageIdentifier: Docker.Cagent -PackageVersion: v1.29.0 +PackageIdentifier: TASKING.winIDEA +PackageVersion: 9.21.402 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/t/TeXstudio/TeXstudio/4.9.3/TeXstudio.TeXstudio.installer.yaml b/manifests/t/TeXstudio/TeXstudio/4.9.3/TeXstudio.TeXstudio.installer.yaml new file mode 100644 index 000000000000..946f1075987d --- /dev/null +++ b/manifests/t/TeXstudio/TeXstudio/4.9.3/TeXstudio.TeXstudio.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: TeXstudio.TeXstudio +PackageVersion: 4.9.3 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: TeXstudio +ReleaseDate: 2026-03-27 +AppsAndFeaturesEntries: +- DisplayName: TeXstudio - TeXstudio is a fully featured LaTeX editor. + ProductCode: TeXstudio +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\texstudio' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/texstudio-org/texstudio/releases/download/4.9.3/texstudio-4.9.3-win-qt6-signed.exe + InstallerSha256: C9FA1275820AC1604039989F66B4798F6FAAFB1E79A3BA014C1C9550214EE7D8 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/TeXstudio/TeXstudio/4.9.3/TeXstudio.TeXstudio.locale.en-US.yaml b/manifests/t/TeXstudio/TeXstudio/4.9.3/TeXstudio.TeXstudio.locale.en-US.yaml new file mode 100644 index 000000000000..ef328db4bd0b --- /dev/null +++ b/manifests/t/TeXstudio/TeXstudio/4.9.3/TeXstudio.TeXstudio.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: TeXstudio.TeXstudio +PackageVersion: 4.9.3 +PackageLocale: en-US +Publisher: Benito van der Zander +PublisherUrl: https://github.com/texstudio-org/texstudio +PublisherSupportUrl: https://github.com/texstudio-org/texstudio/issues +PrivacyUrl: https://www.texstudio.org/legal.html +Author: Benito van der Zander +PackageName: TeXstudio +PackageUrl: https://www.texstudio.org/ +License: GPL-3.0 +LicenseUrl: https://github.com/texstudio-org/texstudio/raw/master/COPYING +CopyrightUrl: https://github.com/texstudio-org/texstudio/raw/master/COPYING +ShortDescription: TeXstudio is a fully featured LaTeX editor. Our goal is to make writing LaTeX documents as easy and comfortable as possible. +Description: |- + TeXstudio is a fully featured LaTeX editor. + Our goal is to make writing LaTeX documents as easy and comfortable as possible. + Some of the outstanding features of TeXstudio are an integrated pdf viewer with (almost) word-level synchronization, live inline preview, advanced syntax-highlighting, live checking of references, citations, latex commands, spelling and grammar. + Find out more at our website. +Tags: +- editor +- ide +- latex +- latex-editor +- tex +- texstudio +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/texstudio-org/texstudio/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/TeXstudio/TeXstudio/4.9.3/TeXstudio.TeXstudio.yaml b/manifests/t/TeXstudio/TeXstudio/4.9.3/TeXstudio.TeXstudio.yaml new file mode 100644 index 000000000000..bd7fe5983fa0 --- /dev/null +++ b/manifests/t/TeXstudio/TeXstudio/4.9.3/TeXstudio.TeXstudio.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: TeXstudio.TeXstudio +PackageVersion: 4.9.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tencent/QClaw/0.1.21/Tencent.QClaw.installer.yaml b/manifests/t/Tencent/QClaw/0.1.21/Tencent.QClaw.installer.yaml new file mode 100644 index 000000000000..58ff80f7d5e2 --- /dev/null +++ b/manifests/t/Tencent/QClaw/0.1.21/Tencent.QClaw.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: Tencent.QClaw +PackageVersion: 0.1.21 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 7f31b88e-3a93-52e3-998b-e3cb65301156 +Installers: +- Architecture: x64 + InstallerUrl: https://package-cdn.qclaw.qq.com/qclaw/win/0.1.21-5001-241/QClaw-Setup-0.1.21-5001-241.exe + InstallerSha256: 52C832D8CFEEFCEADED9C4ED99338EF23DA61F8D0BA84C2408D86FFE653FF47C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tencent/QClaw/0.1.21/Tencent.QClaw.locale.en-US.yaml b/manifests/t/Tencent/QClaw/0.1.21/Tencent.QClaw.locale.en-US.yaml new file mode 100644 index 000000000000..cf9881da1ec1 --- /dev/null +++ b/manifests/t/Tencent/QClaw/0.1.21/Tencent.QClaw.locale.en-US.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: Tencent.QClaw +PackageVersion: 0.1.21 +PackageLocale: en-US +Publisher: Tencent Technology (Shenzhen) Company Limited +Author: Tencent Technology (Shenzhen) Company Limited +License: Proprietary +ShortDescription: Work efficiently anytime, anywhere with Qclaw—just send a WeChat message. +Description: |- + Work efficiently anytime, anywhere with a quick WeChat message—Qclaw has you covered. + [Ready Out of the Box] Automatic deployment, ready to use upon launch. Supports Mac & Windows, comes with premium domestic large language models, and allows switching to custom models. + [Direct WeChat Integration] Chat directly via WeChat for remote control: seamlessly linked to WeChat with zero configuration, enabling AI to work for you remotely anytime, anywhere. + [Rich Ecosystem] Extensive Skills ecosystem: access the Skills marketplace, including ClawHub, GitHub, and more—use Skills on demand. + [Understands Your Intent] Persistent memory, your personal Lobster: remembers your preferences and context, continuously learning to become an AI that understands you better over time. + [Efficient Control] Local deployment for greater office productivity: directly operate files, browsers, and emails—not just chat. +Tags: +- agent +- agentic +- ai +- chatbot +- claw +- large-language-model +- llm +- openclaw +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tencent/QClaw/0.1.21/Tencent.QClaw.locale.zh-CN.yaml b/manifests/t/Tencent/QClaw/0.1.21/Tencent.QClaw.locale.zh-CN.yaml new file mode 100644 index 000000000000..43c38f51f0b4 --- /dev/null +++ b/manifests/t/Tencent/QClaw/0.1.21/Tencent.QClaw.locale.zh-CN.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: Tencent.QClaw +PackageVersion: 0.1.21 +PackageLocale: zh-CN +Publisher: 腾讯科技(深圳)有限公司 +PublisherUrl: https://qclaw.qq.com/ +PrivacyUrl: https://privacy.qq.com/document/preview/4a7ba3f82ff042c1aafbec6e7341d713 +Author: 腾讯科技(深圳)有限公司 +PackageName: QClaw +PackageUrl: https://qclaw.qq.com/ +License: 专有软件 +LicenseUrl: https://rule.tencent.com/rule/202603060002 +Copyright: Copyright © 1998 - 2026 Tencent. All Rights Reserved. +CopyrightUrl: https://rule.tencent.com/rule/202603060002 +ShortDescription: 随时随地,微信一下,Qclaw 帮你高效干活 +Description: |- + 随时随地,微信一下,Qclaw 帮你高效干活 + 【开箱即用】自动部署,打开即用。支持 Mac & Windows,内置国产优质大模型,支持切换自定义模型 + 【微信直联】微信直接对话,远程操控:直接关联微信,零配置,随时随地远程让 AI 干活 + 【丰富生态】丰富 Skills 生态:支持 Skills 市场,如 ClawHub、GitHub 等丰富生态,Skills 随取随用 + 【懂你所想】持续记忆,你的专属龙虾:记住偏好和上下文,持续成长,越来越懂你的 AI + 【高效操控】本地部署,办公更高效:直接操控文件、浏览器、邮件,不是只会聊天 +Tags: +- openclaw +- 人工智能 +- 大语言模型 +- 智能体 +- 聊天机器人 +- 自主智能 +- 龙虾 +ReleaseNotes: |- + v0.1.21版本更新内容: + 1. 稳定性提升与bugfix +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tencent/QClaw/0.1.21/Tencent.QClaw.yaml b/manifests/t/Tencent/QClaw/0.1.21/Tencent.QClaw.yaml new file mode 100644 index 000000000000..f8de07541797 --- /dev/null +++ b/manifests/t/Tencent/QClaw/0.1.21/Tencent.QClaw.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Tencent.QClaw +PackageVersion: 0.1.21 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/t/TheDocumentFoundation/LibreOffice/HelpPack/26.2.2.2/TheDocumentFoundation.LibreOffice.HelpPack.installer.yaml b/manifests/t/TheDocumentFoundation/LibreOffice/HelpPack/26.2.2.2/TheDocumentFoundation.LibreOffice.HelpPack.installer.yaml new file mode 100644 index 000000000000..458cd3d7e555 --- /dev/null +++ b/manifests/t/TheDocumentFoundation/LibreOffice/HelpPack/26.2.2.2/TheDocumentFoundation.LibreOffice.HelpPack.installer.yaml @@ -0,0 +1,1597 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: TheDocumentFoundation.LibreOffice.HelpPack +PackageVersion: 26.2.2.2 +InstallerType: msi +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLLOCATION="" +UpgradeBehavior: install +Installers: +- InstallerLocale: en-US + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_en-US.msi + InstallerSha256: 924BB4444473C21DCB6B14D5BBB4C69F4629D12FDE67787E674D41BD583E0070 + ProductCode: '{1013631B-119E-4341-8B7C-3C61559668E7}' + AppsAndFeaturesEntries: + - ProductCode: '{1013631B-119E-4341-8B7C-3C61559668E7}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: en-US + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_en-US.msi + InstallerSha256: 0738F89526B796DB3A2D8C04D80983C23A6E997EF01990E922FAEBE0EDA38CEE + ProductCode: '{DB717514-9209-43F0-A05E-C3907DCBB925}' + AppsAndFeaturesEntries: + - ProductCode: '{DB717514-9209-43F0-A05E-C3907DCBB925}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: en-US + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_en-US.msi + InstallerSha256: B4FC7CB56358761F8AD8F9435C524E5323B05418845E1F68FAB0FBAE983E6A05 + ProductCode: '{761E8876-5E82-4E77-9599-EC732D15F3A4}' + AppsAndFeaturesEntries: + - ProductCode: '{761E8876-5E82-4E77-9599-EC732D15F3A4}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: am + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_am.msi + InstallerSha256: 210DC87151519486DEBB86D07BCABFC1C0E7A2384D8AF727FE5CE6B4D1BB6EF1 + ProductCode: '{AE053C4E-1F11-4BD3-A79F-7188661A4842}' + AppsAndFeaturesEntries: + - ProductCode: '{AE053C4E-1F11-4BD3-A79F-7188661A4842}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: am + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_am.msi + InstallerSha256: 7B0562AE903536714D45C5411118902014815474780257DF865F3ED26723BCD4 + ProductCode: '{8820307D-361D-4618-BC98-8AFB907E47B9}' + AppsAndFeaturesEntries: + - ProductCode: '{8820307D-361D-4618-BC98-8AFB907E47B9}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: am + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_am.msi + InstallerSha256: 3391355DA1D4410EF1D8CA0EC688FCAAB6759BA80A4EC72B284C0E5587BD7701 + ProductCode: '{0391D4A9-A76D-4883-95C8-87E7F62714D1}' + AppsAndFeaturesEntries: + - ProductCode: '{0391D4A9-A76D-4883-95C8-87E7F62714D1}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: ar + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_ar.msi + InstallerSha256: 87C4D5B1230135A0EC190822846A11FD2163C7D1FDA5D837D3B261C1014A8BD1 + ProductCode: '{07B3247C-B928-47C8-93D3-2744E01B7966}' + AppsAndFeaturesEntries: + - ProductCode: '{07B3247C-B928-47C8-93D3-2744E01B7966}' + UpgradeCode: '{4B19ECA4-EB7B-420E-A2F3-0D456CA1CA3F}' +- InstallerLocale: ar + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_ar.msi + InstallerSha256: 229FD30ED18A15F1A2B8485B3B13FD00780810AD85B05F5D366CBF721D860D5A + ProductCode: '{65F4EB77-98C5-4A05-AB06-D5A14879ABFB}' + AppsAndFeaturesEntries: + - ProductCode: '{65F4EB77-98C5-4A05-AB06-D5A14879ABFB}' + UpgradeCode: '{4B19ECA4-EB7B-420E-A2F3-0D456CA1CA3F}' +- InstallerLocale: ar + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_ar.msi + InstallerSha256: 2207B5E2ABBB0124DD3D5FEDD46E7ADFF9E6EA6C59AB72C1A49ED196EE6263CC + ProductCode: '{4E26C529-C5D2-4D45-B592-2A840847FD5B}' + AppsAndFeaturesEntries: + - ProductCode: '{4E26C529-C5D2-4D45-B592-2A840847FD5B}' + UpgradeCode: '{4B19ECA4-EB7B-420E-A2F3-0D456CA1CA3F}' +- InstallerLocale: ast-ES + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_ast.msi + InstallerSha256: 3586C79007A76588AEBF06C43B1C431A68A22E838A23F6DEAB7BA4AF2CDE9D73 + ProductCode: '{1783B93F-9342-4C8A-8FC2-F34C1B1AA0A3}' + AppsAndFeaturesEntries: + - ProductCode: '{1783B93F-9342-4C8A-8FC2-F34C1B1AA0A3}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: ast-ES + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_ast.msi + InstallerSha256: 324237CC738C5C62C61CD2E4F71C3A074F32F94A53C060BB5EBBC6EA756368E9 + ProductCode: '{0CF99CE7-D1E7-45DE-869F-263A92C92EAC}' + AppsAndFeaturesEntries: + - ProductCode: '{0CF99CE7-D1E7-45DE-869F-263A92C92EAC}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: ast-ES + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_ast.msi + InstallerSha256: C515A994743E9D4668EA9EC8EC37ADE38F709F31A6099D2EFED8FE4F4485E7F5 + ProductCode: '{CD9ED2F6-A1DB-4E04-8B88-04589F2B02D5}' + AppsAndFeaturesEntries: + - ProductCode: '{CD9ED2F6-A1DB-4E04-8B88-04589F2B02D5}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: bg + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_bg.msi + InstallerSha256: 931AE291FF21D3FD857EA3561651F72ABEDDAD3EDB3E2FC98FF539B033C37F6C + ProductCode: '{BAAED799-5E50-43FF-8826-591B2B15CC40}' + AppsAndFeaturesEntries: + - ProductCode: '{BAAED799-5E50-43FF-8826-591B2B15CC40}' + UpgradeCode: '{961EFB5A-0CA0-41E8-8C9C-CB3BA52B73EC}' +- InstallerLocale: bg + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_bg.msi + InstallerSha256: 2AC8F47DA27B789BEB9D79BCAF3BAB608A67260683A30ACA627EE139C139602F + ProductCode: '{22EFDE10-0423-443A-B290-E4CD7CBDF3E0}' + AppsAndFeaturesEntries: + - ProductCode: '{22EFDE10-0423-443A-B290-E4CD7CBDF3E0}' + UpgradeCode: '{961EFB5A-0CA0-41E8-8C9C-CB3BA52B73EC}' +- InstallerLocale: bg + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_bg.msi + InstallerSha256: EDCFA54EA44FDF808BBB9796C9FFCB82209573ABF5B75ED61F276513386578C0 + ProductCode: '{3EF9E153-BD19-4976-81B9-32D406C927E3}' + AppsAndFeaturesEntries: + - ProductCode: '{3EF9E153-BD19-4976-81B9-32D406C927E3}' + UpgradeCode: '{961EFB5A-0CA0-41E8-8C9C-CB3BA52B73EC}' +- InstallerLocale: bn + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_bn.msi + InstallerSha256: 11AA1F39A27F74C5C65F36EDF9FA6F72F4592E6F67D2E68D2BCCF6CA655E196B + ProductCode: '{F9FE48AE-FE9C-4C03-BD74-0A189C950AC4}' + AppsAndFeaturesEntries: + - ProductCode: '{F9FE48AE-FE9C-4C03-BD74-0A189C950AC4}' + UpgradeCode: '{C552DC5D-BAEE-4707-B090-5BC08E01162F}' +- InstallerLocale: bn + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_bn.msi + InstallerSha256: E7BAAF8ADDD89F12DA4133FC2B4BA86A72DAA3EDF841925FF9894E7C2AF49FE3 + ProductCode: '{BB7900D2-C9C0-480C-B120-6A8FBABD0DC6}' + AppsAndFeaturesEntries: + - ProductCode: '{BB7900D2-C9C0-480C-B120-6A8FBABD0DC6}' + UpgradeCode: '{C552DC5D-BAEE-4707-B090-5BC08E01162F}' +- InstallerLocale: bn + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_bn.msi + InstallerSha256: 9D1233897640283E817E97B25739A7B5FA0C76D8525CC3A9F06F15951DEC79C4 + ProductCode: '{C921F307-81A6-410C-BB91-6C65B5676689}' + AppsAndFeaturesEntries: + - ProductCode: '{C921F307-81A6-410C-BB91-6C65B5676689}' + UpgradeCode: '{C552DC5D-BAEE-4707-B090-5BC08E01162F}' +- InstallerLocale: bn-IN + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_bn-IN.msi + InstallerSha256: A5E735A8976B94D182E71E81DBB11204344440C813A16B2A72F46928CF7AFA9B + ProductCode: '{E753B616-C390-4B6F-B57F-F0D7E310D325}' + AppsAndFeaturesEntries: + - ProductCode: '{E753B616-C390-4B6F-B57F-F0D7E310D325}' + UpgradeCode: '{F82875DF-7BFC-4CF1-A7E7-85E5AAD90F07}' +- InstallerLocale: bn-IN + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_bn-IN.msi + InstallerSha256: FF157A23DA94581435B50642B6B89BFAD66976106025B79189560BAC40941648 + ProductCode: '{ECCBD5D0-21C9-48E4-AE16-119F33631015}' + AppsAndFeaturesEntries: + - ProductCode: '{ECCBD5D0-21C9-48E4-AE16-119F33631015}' + UpgradeCode: '{F82875DF-7BFC-4CF1-A7E7-85E5AAD90F07}' +- InstallerLocale: bn-IN + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_bn-IN.msi + InstallerSha256: C3D1C0B11A88C4EADFAD20799B8E580EA06274F404D65D586CF752A5E794A4A3 + ProductCode: '{DE3991DF-ADD7-4CC0-AEE0-C598BCFB67D0}' + AppsAndFeaturesEntries: + - ProductCode: '{DE3991DF-ADD7-4CC0-AEE0-C598BCFB67D0}' + UpgradeCode: '{F82875DF-7BFC-4CF1-A7E7-85E5AAD90F07}' +- InstallerLocale: bo-CN + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_bo.msi + InstallerSha256: C7E66A81BD1334E154F1B3334860AC4E8BDD3E68218631E6A744104CC0AA5E58 + ProductCode: '{BA0C39EE-1118-4BBA-B9A7-175AC6D5FAC3}' + AppsAndFeaturesEntries: + - ProductCode: '{BA0C39EE-1118-4BBA-B9A7-175AC6D5FAC3}' + UpgradeCode: '{C8D912D8-AA2E-47E2-9FEF-62C6580FB93C}' +- InstallerLocale: bo-CN + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_bo.msi + InstallerSha256: 8D73255DB02A1ACE10B9DA2ED7F09C0941BF62C9D7C9294093FF104FF1B2E49E + ProductCode: '{B4AF8299-78F7-4583-B80E-043959F43724}' + AppsAndFeaturesEntries: + - ProductCode: '{B4AF8299-78F7-4583-B80E-043959F43724}' + UpgradeCode: '{C8D912D8-AA2E-47E2-9FEF-62C6580FB93C}' +- InstallerLocale: bo-CN + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_bo.msi + InstallerSha256: 2684AA9DC1A50DED92F04E1321E12B639BA487344A1AF37B2377C913B18880FF + ProductCode: '{AC73EAC2-E629-4E39-A8DF-6FDA16EE4F31}' + AppsAndFeaturesEntries: + - ProductCode: '{AC73EAC2-E629-4E39-A8DF-6FDA16EE4F31}' + UpgradeCode: '{C8D912D8-AA2E-47E2-9FEF-62C6580FB93C}' +- InstallerLocale: bs + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_bs.msi + InstallerSha256: E9B4DAB666AFBAA441BDB690D261817BCEC81E9991D045CC748B26EE7288E505 + ProductCode: '{D0491030-4359-4F9C-B1F0-B8124FA5AAB4}' + AppsAndFeaturesEntries: + - ProductCode: '{D0491030-4359-4F9C-B1F0-B8124FA5AAB4}' + UpgradeCode: '{9F84BC57-8E00-4C27-81AA-5CCB6280A98B}' +- InstallerLocale: bs + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_bs.msi + InstallerSha256: 452EEFB83C88856FF0BB090A4A231D9210CE465B7921776F38DCBF2779E47C11 + ProductCode: '{F7BBA75D-FC19-4137-A929-AAA02013892E}' + AppsAndFeaturesEntries: + - ProductCode: '{F7BBA75D-FC19-4137-A929-AAA02013892E}' + UpgradeCode: '{9F84BC57-8E00-4C27-81AA-5CCB6280A98B}' +- InstallerLocale: bs + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_bs.msi + InstallerSha256: 78503B90DAA89833B67929A24012D0A60A6BB14252797561B74CF4EED59E8625 + ProductCode: '{2B713BC3-E5F8-4429-82F6-C9942E72B899}' + AppsAndFeaturesEntries: + - ProductCode: '{2B713BC3-E5F8-4429-82F6-C9942E72B899}' + UpgradeCode: '{9F84BC57-8E00-4C27-81AA-5CCB6280A98B}' +- InstallerLocale: ca + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_ca.msi + InstallerSha256: 6916DA758D1E59FB538EA2768BCF832084BDDCFBA44E6C6608ECFE1B6A8A8343 + ProductCode: '{C3CF40CB-C8E9-486F-8924-E4E0667B0D87}' + AppsAndFeaturesEntries: + - ProductCode: '{C3CF40CB-C8E9-486F-8924-E4E0667B0D87}' + UpgradeCode: '{63DF72A2-1F4E-456E-A4E1-26342034BC19}' +- InstallerLocale: ca + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_ca.msi + InstallerSha256: 5C4F5DD317FCA2E3CE58D0895B61C3FCD64BFB13BEF1FF8007E939516BB1DB5D + ProductCode: '{A6BC059C-755C-4952-8872-603C376E7B51}' + AppsAndFeaturesEntries: + - ProductCode: '{A6BC059C-755C-4952-8872-603C376E7B51}' + UpgradeCode: '{63DF72A2-1F4E-456E-A4E1-26342034BC19}' +- InstallerLocale: ca + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_ca.msi + InstallerSha256: 94F214D675CCE01E9B0AA19BC5F74654F767EBEED6B5F5E5ECA13A4B662A499F + ProductCode: '{707CF7A9-D9F5-4B62-A963-AC0903C42DE7}' + AppsAndFeaturesEntries: + - ProductCode: '{707CF7A9-D9F5-4B62-A963-AC0903C42DE7}' + UpgradeCode: '{63DF72A2-1F4E-456E-A4E1-26342034BC19}' +- InstallerLocale: ca-ES-VALENCIA + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_ca-valencia.msi + InstallerSha256: 6DA6198A1FF03860BFB6D84750C294DC607A05B6B4801D4A1D438BAE4C736714 + ProductCode: '{65DC0CB6-D1E9-46FE-AB64-E29A2A1DFB68}' + AppsAndFeaturesEntries: + - ProductCode: '{65DC0CB6-D1E9-46FE-AB64-E29A2A1DFB68}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: ca-ES-VALENCIA + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_ca-valencia.msi + InstallerSha256: FBB7820667DB59CBC6434B20B73EF5C1A4EBC771701651C41000CECB7F8AEC2C + ProductCode: '{96481CD1-F7EC-45AC-9299-2B9419CFDD92}' + AppsAndFeaturesEntries: + - ProductCode: '{96481CD1-F7EC-45AC-9299-2B9419CFDD92}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: ca-ES-VALENCIA + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_ca-valencia.msi + InstallerSha256: 552162393E5517DAA6D2A9DA882C415B845BF6268C73F3A44C9164788FE69A22 + ProductCode: '{3AD73C46-C533-4218-BFF2-447541A27EF1}' + AppsAndFeaturesEntries: + - ProductCode: '{3AD73C46-C533-4218-BFF2-447541A27EF1}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: cs + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_cs.msi + InstallerSha256: 56C3F2FE40D563441D5031F089FA2678EDCDAFA059A838CC3409CB44683F213B + ProductCode: '{ABF30525-D9B3-4714-B267-F70996571EA5}' + AppsAndFeaturesEntries: + - ProductCode: '{ABF30525-D9B3-4714-B267-F70996571EA5}' + UpgradeCode: '{A0B8FD56-2D0D-4487-B999-19D32FCF5F56}' +- InstallerLocale: cs + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_cs.msi + InstallerSha256: A3C9F97C92B45E234A22F17318B5010B6D347DADA439ADC09846C6053C50D263 + ProductCode: '{66A7C51B-D51D-4379-B0AF-CD0365962D62}' + AppsAndFeaturesEntries: + - ProductCode: '{66A7C51B-D51D-4379-B0AF-CD0365962D62}' + UpgradeCode: '{A0B8FD56-2D0D-4487-B999-19D32FCF5F56}' +- InstallerLocale: cs + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_cs.msi + InstallerSha256: A67A4B0FB163DFDB6E7C4138BD9A372A54A4A888178F5F10748558A7F7B5A228 + ProductCode: '{657919B8-0D85-42F2-B93F-D8BA5A82028E}' + AppsAndFeaturesEntries: + - ProductCode: '{657919B8-0D85-42F2-B93F-D8BA5A82028E}' + UpgradeCode: '{A0B8FD56-2D0D-4487-B999-19D32FCF5F56}' +- InstallerLocale: da + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_da.msi + InstallerSha256: 67268C96C2D8D6DC500F118C82FADDCA944A22C8C0B5312D4DAF75BE4DB57C5E + ProductCode: '{56385B42-B52E-4F3E-89D2-0C8FFE56A2C6}' + AppsAndFeaturesEntries: + - ProductCode: '{56385B42-B52E-4F3E-89D2-0C8FFE56A2C6}' + UpgradeCode: '{6221C926-E7C7-4122-A3E4-66285ACD0B79}' +- InstallerLocale: da + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_da.msi + InstallerSha256: BB9CA21EAE0E0BDB6E91ED1C6AB174DD7AFAB2C70FF6FD6CC38EF2FA25792995 + ProductCode: '{7FC8F9DC-53CE-4E2E-BADE-00A3C601D515}' + AppsAndFeaturesEntries: + - ProductCode: '{7FC8F9DC-53CE-4E2E-BADE-00A3C601D515}' + UpgradeCode: '{6221C926-E7C7-4122-A3E4-66285ACD0B79}' +- InstallerLocale: da + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_da.msi + InstallerSha256: 7445E08F69D724C56BC764C843E641633C342A0C171E60A752859FE8536DF789 + ProductCode: '{45B39473-69AC-4597-91D9-11819E07AC87}' + AppsAndFeaturesEntries: + - ProductCode: '{45B39473-69AC-4597-91D9-11819E07AC87}' + UpgradeCode: '{6221C926-E7C7-4122-A3E4-66285ACD0B79}' +- InstallerLocale: de + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_de.msi + InstallerSha256: 7C4016E63B7389330B1A1414F5B40FA93DAC04286D9723BDA8DDCA9337139F45 + ProductCode: '{C498E920-F1B5-4C1B-BF67-65B0B4ACE100}' + AppsAndFeaturesEntries: + - ProductCode: '{C498E920-F1B5-4C1B-BF67-65B0B4ACE100}' + UpgradeCode: '{56F769C8-29D9-4DA0-AAC5-6165D0180483}' +- InstallerLocale: de + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_de.msi + InstallerSha256: 70D6353DE8E5826F46963D68C66024F35F1263A2E40DB1CE01109A026CA7463E + ProductCode: '{C1536791-99A7-4C0E-83D6-64DEE765A8A6}' + AppsAndFeaturesEntries: + - ProductCode: '{C1536791-99A7-4C0E-83D6-64DEE765A8A6}' + UpgradeCode: '{56F769C8-29D9-4DA0-AAC5-6165D0180483}' +- InstallerLocale: de + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_de.msi + InstallerSha256: 41009AF2C1679BB96E8692716F5929C11724224F3B26F4DB9180343F341D7541 + ProductCode: '{AE1C9C7F-F7D9-4B1E-BC17-22B1229A2FA4}' + AppsAndFeaturesEntries: + - ProductCode: '{AE1C9C7F-F7D9-4B1E-BC17-22B1229A2FA4}' + UpgradeCode: '{56F769C8-29D9-4DA0-AAC5-6165D0180483}' +- InstallerLocale: dsb + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_dsb.msi + InstallerSha256: D81F83FA3F7BD5BF10B6127CDDA821B18EA65EFBF72F7D312EF24E6DC974DF23 + ProductCode: '{96158417-A9A6-4A64-AAA7-5B13CF97F0AE}' + AppsAndFeaturesEntries: + - ProductCode: '{96158417-A9A6-4A64-AAA7-5B13CF97F0AE}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: dsb + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_dsb.msi + InstallerSha256: E5622FFF0631DF2074A28E1C40CF01EA7776025DDD0AE2558AE7AE130104B99D + ProductCode: '{F544841E-50AC-4E24-83D1-B33C264FEB7D}' + AppsAndFeaturesEntries: + - ProductCode: '{F544841E-50AC-4E24-83D1-B33C264FEB7D}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: dsb + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_dsb.msi + InstallerSha256: 7FEB19E5A7D05C478923D4614104C68F37F6B5987252F02F83D72C59A63C813A + ProductCode: '{93EA3817-7CE0-41C0-9D74-9869CDB4EBAD}' + AppsAndFeaturesEntries: + - ProductCode: '{93EA3817-7CE0-41C0-9D74-9869CDB4EBAD}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: dz + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_dz.msi + InstallerSha256: 2F55BBF39470F2FA4736CF4615D78C85D58076605D2FCD3E0FF8F39CA5D4E3D9 + ProductCode: '{4DE0546A-8A07-4BFA-B49C-0E269F8312BD}' + AppsAndFeaturesEntries: + - ProductCode: '{4DE0546A-8A07-4BFA-B49C-0E269F8312BD}' + UpgradeCode: '{0E79A6B5-D088-4670-ACDF-E0081C9ABFAE}' +- InstallerLocale: dz + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_dz.msi + InstallerSha256: EEBA8B68CE8525068EF04F0C9ED5DD684E3760FC75CB2EA108428D7165195B24 + ProductCode: '{E25DA237-A5A1-40E3-A184-A778F5210EB8}' + AppsAndFeaturesEntries: + - ProductCode: '{E25DA237-A5A1-40E3-A184-A778F5210EB8}' + UpgradeCode: '{0E79A6B5-D088-4670-ACDF-E0081C9ABFAE}' +- InstallerLocale: dz + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_dz.msi + InstallerSha256: F9C77A417930C3B683F7197E47D15FD8E13BCEEF0A4B2820762BB36A11952673 + ProductCode: '{C1B5F107-5136-42C1-9274-19783ED0CB26}' + AppsAndFeaturesEntries: + - ProductCode: '{C1B5F107-5136-42C1-9274-19783ED0CB26}' + UpgradeCode: '{0E79A6B5-D088-4670-ACDF-E0081C9ABFAE}' +- InstallerLocale: el + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_el.msi + InstallerSha256: 6EBB719373B1683D8C7E5FF695634AB4591FD358C28C7BB05457861C4786E9A4 + ProductCode: '{ACB53897-9854-4FA1-B640-A7BCDF2F3F8C}' + AppsAndFeaturesEntries: + - ProductCode: '{ACB53897-9854-4FA1-B640-A7BCDF2F3F8C}' + UpgradeCode: '{1E5DDBF3-B05A-4E78-A496-332C8193F4C8}' +- InstallerLocale: el + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_el.msi + InstallerSha256: FF902210FF4B3E9EFE2F4105BF3882243303D1028518FFDCD40EA9F8CC258268 + ProductCode: '{DB518A66-30F2-4B1C-BCE1-1C7A5311D0D0}' + AppsAndFeaturesEntries: + - ProductCode: '{DB518A66-30F2-4B1C-BCE1-1C7A5311D0D0}' + UpgradeCode: '{1E5DDBF3-B05A-4E78-A496-332C8193F4C8}' +- InstallerLocale: el + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_el.msi + InstallerSha256: B6E39C8DEC3D71BDF72178F23501D56FBCEB624258F7E0E4ED54344AD28CBF37 + ProductCode: '{016691C0-687E-4B61-B5DF-4D50A4FA09AC}' + AppsAndFeaturesEntries: + - ProductCode: '{016691C0-687E-4B61-B5DF-4D50A4FA09AC}' + UpgradeCode: '{1E5DDBF3-B05A-4E78-A496-332C8193F4C8}' +- InstallerLocale: en-GB + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_en-GB.msi + InstallerSha256: 22760C91668275C420B7150EB5F9CAD51058ACB841A699EC57ADE3956EDC8BED + ProductCode: '{596C0342-93AB-4594-8980-FA2B315FE561}' + AppsAndFeaturesEntries: + - ProductCode: '{596C0342-93AB-4594-8980-FA2B315FE561}' + UpgradeCode: '{3EBBFCD8-8009-4D31-AA5E-C1BED7B17A61}' +- InstallerLocale: en-GB + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_en-GB.msi + InstallerSha256: CE1AF5D28FBA2D1E2A638A57C9CAA75FEF692EAC850B2147B319F8D8408B0B09 + ProductCode: '{7DDDC8BF-5C2F-4961-A52A-41FFEE1BBA50}' + AppsAndFeaturesEntries: + - ProductCode: '{7DDDC8BF-5C2F-4961-A52A-41FFEE1BBA50}' + UpgradeCode: '{3EBBFCD8-8009-4D31-AA5E-C1BED7B17A61}' +- InstallerLocale: en-GB + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_en-GB.msi + InstallerSha256: 243D874A989C5F0DC3C6779ED4CC0EFAD603947ED9A43400BF8ABA3CAAC3BE76 + ProductCode: '{2A37B90A-9A7F-4448-BA75-4C3625022F07}' + AppsAndFeaturesEntries: + - ProductCode: '{2A37B90A-9A7F-4448-BA75-4C3625022F07}' + UpgradeCode: '{3EBBFCD8-8009-4D31-AA5E-C1BED7B17A61}' +- InstallerLocale: en-ZA + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_en-ZA.msi + InstallerSha256: A4BEC00004F9390CAF44FC4DD331971651616B23646C6DF02928804EECF928BF + ProductCode: '{F5A29475-BCE7-4E3F-BEA5-D43D74C7F0D6}' + AppsAndFeaturesEntries: + - ProductCode: '{F5A29475-BCE7-4E3F-BEA5-D43D74C7F0D6}' + UpgradeCode: '{764FA135-A8CE-4C79-A5D7-0B413CC9E911}' +- InstallerLocale: en-ZA + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_en-ZA.msi + InstallerSha256: 5977D6D7D7D05A199A5A18BDFA3F599CD8B256D54B989AE7CC2068D8C48EAF22 + ProductCode: '{BBEC6169-0615-4CE2-B415-2486B4C2FB68}' + AppsAndFeaturesEntries: + - ProductCode: '{BBEC6169-0615-4CE2-B415-2486B4C2FB68}' + UpgradeCode: '{764FA135-A8CE-4C79-A5D7-0B413CC9E911}' +- InstallerLocale: en-ZA + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_en-ZA.msi + InstallerSha256: 387FC308D7B081737DF55C63AD781DF37C3147E84989CD68677EBF27635E1A70 + ProductCode: '{9044E382-0C69-4EA5-81D1-A5F8A5B74A40}' + AppsAndFeaturesEntries: + - ProductCode: '{9044E382-0C69-4EA5-81D1-A5F8A5B74A40}' + UpgradeCode: '{764FA135-A8CE-4C79-A5D7-0B413CC9E911}' +- InstallerLocale: eo + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_eo.msi + InstallerSha256: 8719D43BBB0F6B04EA0FA8F3AF33F218C13D87ED632FC4B34C85E6DFA8DD9315 + ProductCode: '{8E10EEC9-A3E6-41F4-9A61-F93B26A2A7F8}' + AppsAndFeaturesEntries: + - ProductCode: '{8E10EEC9-A3E6-41F4-9A61-F93B26A2A7F8}' + UpgradeCode: '{1955D5A5-375E-410F-B84F-9FDB4E6A05E5}' +- InstallerLocale: eo + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_eo.msi + InstallerSha256: 8801EF642BF2B8E8BFA1C7EF00185D3DF19CE827638DAEB0DC2AFFD661159433 + ProductCode: '{623FDC51-E602-45A2-A691-66077800A7ED}' + AppsAndFeaturesEntries: + - ProductCode: '{623FDC51-E602-45A2-A691-66077800A7ED}' + UpgradeCode: '{1955D5A5-375E-410F-B84F-9FDB4E6A05E5}' +- InstallerLocale: eo + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_eo.msi + InstallerSha256: F37888BFEB2F9CF13A4201BCD7AADCE8FCFE38D1B4BC6D827F63967B4D911F68 + ProductCode: '{0F4ADC12-80F7-4226-824E-1F8091791367}' + AppsAndFeaturesEntries: + - ProductCode: '{0F4ADC12-80F7-4226-824E-1F8091791367}' + UpgradeCode: '{1955D5A5-375E-410F-B84F-9FDB4E6A05E5}' +- InstallerLocale: es + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_es.msi + InstallerSha256: 1EEFEF828D78C579CF70EA7BFAB9104E46A51D768B10DA77B8B1D0B36A46D32A + ProductCode: '{564E059E-3142-4D71-8008-939D80F987A4}' + AppsAndFeaturesEntries: + - ProductCode: '{564E059E-3142-4D71-8008-939D80F987A4}' + UpgradeCode: '{4F776850-4235-4E93-847F-C657E04A35AB}' +- InstallerLocale: es + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_es.msi + InstallerSha256: 4B47183A30949690D1CCE01415763CB752C4EBF81B88C392A2513B55EDFEC2B2 + ProductCode: '{7C209A85-7189-41EE-AA5D-E3BC9D0C3113}' + AppsAndFeaturesEntries: + - ProductCode: '{7C209A85-7189-41EE-AA5D-E3BC9D0C3113}' + UpgradeCode: '{4F776850-4235-4E93-847F-C657E04A35AB}' +- InstallerLocale: es + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_es.msi + InstallerSha256: 4B19E7A856599182AFE7EA4E20F13769E7DA02A1B8F7DF87B5766C5663A65453 + ProductCode: '{FD477AC4-456C-45F1-BD0C-F9CE0E3C2BA6}' + AppsAndFeaturesEntries: + - ProductCode: '{FD477AC4-456C-45F1-BD0C-F9CE0E3C2BA6}' + UpgradeCode: '{4F776850-4235-4E93-847F-C657E04A35AB}' +- InstallerLocale: et + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_et.msi + InstallerSha256: C2C6DFD4AEB23CC56425EECE252D6A4B99FB1D63035CF617BF4D4CD6D22483E3 + ProductCode: '{2927828D-E3BC-4A67-B920-FCC6AF3C7A56}' + AppsAndFeaturesEntries: + - ProductCode: '{2927828D-E3BC-4A67-B920-FCC6AF3C7A56}' + UpgradeCode: '{026CD9C5-6B53-421B-89A9-A5933C3E4BA6}' +- InstallerLocale: et + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_et.msi + InstallerSha256: DAD541B87BEC17C208130C815AA627919F928A40E28E8FC056728CA0DDCB53C9 + ProductCode: '{F1E96F08-9C3C-4F26-9388-BEF4497A5E0A}' + AppsAndFeaturesEntries: + - ProductCode: '{F1E96F08-9C3C-4F26-9388-BEF4497A5E0A}' + UpgradeCode: '{026CD9C5-6B53-421B-89A9-A5933C3E4BA6}' +- InstallerLocale: et + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_et.msi + InstallerSha256: 75BAEF89CF8BA9EFFC7B2477C08D54FE36B8E212F1C3F14E193C76D23DBCF659 + ProductCode: '{82387790-C6A0-414F-A6C6-8102B441806E}' + AppsAndFeaturesEntries: + - ProductCode: '{82387790-C6A0-414F-A6C6-8102B441806E}' + UpgradeCode: '{026CD9C5-6B53-421B-89A9-A5933C3E4BA6}' +- InstallerLocale: eu + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_eu.msi + InstallerSha256: 06AE9D0C409B4D5C905922C5DAB32103F12E0C64609AD7AB56CFCFC6D03B5409 + ProductCode: '{5DD0EFAB-176A-4D9A-9D0B-88E22EB66C21}' + AppsAndFeaturesEntries: + - ProductCode: '{5DD0EFAB-176A-4D9A-9D0B-88E22EB66C21}' + UpgradeCode: '{B343946D-65A4-418E-B594-AC7035FDA5C2}' +- InstallerLocale: eu + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_eu.msi + InstallerSha256: F388455F47F6410B0692EF8B8F3E525383F715C3C814744D567262C2AE8F629D + ProductCode: '{CF381F8B-3142-465E-99B9-6FD8F3EDB158}' + AppsAndFeaturesEntries: + - ProductCode: '{CF381F8B-3142-465E-99B9-6FD8F3EDB158}' + UpgradeCode: '{B343946D-65A4-418E-B594-AC7035FDA5C2}' +- InstallerLocale: eu + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_eu.msi + InstallerSha256: 79AD74DDC6132E4F9E33C42EAA0CAB68DCA77B49AF5BB20EC67A265A28D3F2AB + ProductCode: '{A34D12E3-9674-4AAA-9992-BAF596FE40BE}' + AppsAndFeaturesEntries: + - ProductCode: '{A34D12E3-9674-4AAA-9992-BAF596FE40BE}' + UpgradeCode: '{B343946D-65A4-418E-B594-AC7035FDA5C2}' +- InstallerLocale: fi + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_fi.msi + InstallerSha256: DD3E437E96720755B0CA379A80E535E0172C905E40EB3BF7308140C1DC2D9C9D + ProductCode: '{26C0656A-89A4-4966-A334-535E9F42AE33}' + AppsAndFeaturesEntries: + - ProductCode: '{26C0656A-89A4-4966-A334-535E9F42AE33}' + UpgradeCode: '{B26D2BEF-C380-46DD-8206-DD014E51AE7E}' +- InstallerLocale: fi + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_fi.msi + InstallerSha256: 71AE9B11019BD4F881F8334130605AF33DA8F720E543312D8A9DD3A1A50A03A3 + ProductCode: '{1D8950E1-2E76-4D10-BDEB-54E146ED5AF2}' + AppsAndFeaturesEntries: + - ProductCode: '{1D8950E1-2E76-4D10-BDEB-54E146ED5AF2}' + UpgradeCode: '{B26D2BEF-C380-46DD-8206-DD014E51AE7E}' +- InstallerLocale: fi + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_fi.msi + InstallerSha256: A5E8612A4E97111AFB3D85A5520E5CB163C2356CE1657F90619A542800B50738 + ProductCode: '{4943912A-903E-4A79-8D16-A47808BDF4AD}' + AppsAndFeaturesEntries: + - ProductCode: '{4943912A-903E-4A79-8D16-A47808BDF4AD}' + UpgradeCode: '{B26D2BEF-C380-46DD-8206-DD014E51AE7E}' +- InstallerLocale: fr + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_fr.msi + InstallerSha256: 76AC22733716664A638A2961E5B055520FA26827E1DFF079E326D22BB2C0E3B2 + ProductCode: '{0179C661-837C-4E76-83A0-618961B6A771}' + AppsAndFeaturesEntries: + - ProductCode: '{0179C661-837C-4E76-83A0-618961B6A771}' + UpgradeCode: '{D7B9854C-4B88-4AE6-9FF6-7CDD7E8CEB90}' +- InstallerLocale: fr + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_fr.msi + InstallerSha256: B31517E229C5E621FB8F27938D1CFF0A1AF588503EBC531871EE56DB6FBA6B21 + ProductCode: '{6FFE9EDC-012D-402A-B177-34C9C1BD69E6}' + AppsAndFeaturesEntries: + - ProductCode: '{6FFE9EDC-012D-402A-B177-34C9C1BD69E6}' + UpgradeCode: '{D7B9854C-4B88-4AE6-9FF6-7CDD7E8CEB90}' +- InstallerLocale: fr + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_fr.msi + InstallerSha256: 3DDBCCE5F59A40C8864CF6F46DF219ECB0019FEC2D39BF019D4F5F9590019BF2 + ProductCode: '{C7C2351A-1B44-4661-BFF8-4FF682008DA7}' + AppsAndFeaturesEntries: + - ProductCode: '{C7C2351A-1B44-4661-BFF8-4FF682008DA7}' + UpgradeCode: '{D7B9854C-4B88-4AE6-9FF6-7CDD7E8CEB90}' +- InstallerLocale: gl + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_gl.msi + InstallerSha256: 0CED52C2D219B362ABDD2DD9B77EA211A6A70574AF400BD2EF0C729D813DF371 + ProductCode: '{15DD2BE1-CCD2-469C-A043-86B6535340BF}' + AppsAndFeaturesEntries: + - ProductCode: '{15DD2BE1-CCD2-469C-A043-86B6535340BF}' + UpgradeCode: '{56F49C99-23C1-44C6-8EE3-2DCE72391BF8}' +- InstallerLocale: gl + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_gl.msi + InstallerSha256: 08F1E2EFBF296A39B150564CDB56DC53828DE2032272A2B96C9A1C7805975801 + ProductCode: '{5263523D-A5A8-4F16-8C76-DA7C00966746}' + AppsAndFeaturesEntries: + - ProductCode: '{5263523D-A5A8-4F16-8C76-DA7C00966746}' + UpgradeCode: '{56F49C99-23C1-44C6-8EE3-2DCE72391BF8}' +- InstallerLocale: gl + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_gl.msi + InstallerSha256: 7AC92456211C13812C12E68F59C10194F20B23DB9604063AB14C82A58FDED264 + ProductCode: '{7EB1C5BC-3F1E-4956-83F9-B0D40E8C6DD1}' + AppsAndFeaturesEntries: + - ProductCode: '{7EB1C5BC-3F1E-4956-83F9-B0D40E8C6DD1}' + UpgradeCode: '{56F49C99-23C1-44C6-8EE3-2DCE72391BF8}' +- InstallerLocale: gu + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_gu.msi + InstallerSha256: 69B2A3F31687A4CDA774DCE879F5889F34DAF1CBD5EC8C644A4C2FDFEB6D27F4 + ProductCode: '{F8D6A99C-5A92-451D-BACA-880C12A57756}' + AppsAndFeaturesEntries: + - ProductCode: '{F8D6A99C-5A92-451D-BACA-880C12A57756}' + UpgradeCode: '{1B1246FD-B318-49D1-8B5D-9475F55DF033}' +- InstallerLocale: gu + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_gu.msi + InstallerSha256: 429ADF1949E57F2B7DCC8B1B9239C2ACAF543001580596EB828D83271CAF7542 + ProductCode: '{59521A0F-49EF-46F2-A045-5C38EE46CDB6}' + AppsAndFeaturesEntries: + - ProductCode: '{59521A0F-49EF-46F2-A045-5C38EE46CDB6}' + UpgradeCode: '{1B1246FD-B318-49D1-8B5D-9475F55DF033}' +- InstallerLocale: gu + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_gu.msi + InstallerSha256: 0FD58C576AEC11DE4898B53BA0DB5EF645E2422E7B750E9F5DA6E252F80CB261 + ProductCode: '{8CCCFA9C-73F2-4BE3-BC86-066AE2E0CBB0}' + AppsAndFeaturesEntries: + - ProductCode: '{8CCCFA9C-73F2-4BE3-BC86-066AE2E0CBB0}' + UpgradeCode: '{1B1246FD-B318-49D1-8B5D-9475F55DF033}' +- InstallerLocale: he + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_he.msi + InstallerSha256: FF850FB8FB611607B2936061B6C09CF87F7EDDBFE2A34A82CDF38D072FE66AE7 + ProductCode: '{80120430-5636-4EC9-ABC0-46C75B445F1F}' + AppsAndFeaturesEntries: + - ProductCode: '{80120430-5636-4EC9-ABC0-46C75B445F1F}' + UpgradeCode: '{363942BE-A51D-43CE-8F09-2D94DFFDBB2E}' +- InstallerLocale: he + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_he.msi + InstallerSha256: 5E15395400CB5B4524BD2FA6DC5448EFBCBB48F59B0AEDDBFF9A99540ECDFD20 + ProductCode: '{56872A2C-B0FE-48A3-8AF6-011FE41BF910}' + AppsAndFeaturesEntries: + - ProductCode: '{56872A2C-B0FE-48A3-8AF6-011FE41BF910}' + UpgradeCode: '{363942BE-A51D-43CE-8F09-2D94DFFDBB2E}' +- InstallerLocale: he + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_he.msi + InstallerSha256: 977B2E76FC701CAAB485F64F9C7C8ECD6B5D76A375AE8CCD2A0F93DA4BABA6F7 + ProductCode: '{960B7D99-0F61-4068-9C47-764199C64983}' + AppsAndFeaturesEntries: + - ProductCode: '{960B7D99-0F61-4068-9C47-764199C64983}' + UpgradeCode: '{363942BE-A51D-43CE-8F09-2D94DFFDBB2E}' +- InstallerLocale: hi + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_hi.msi + InstallerSha256: D91ECA6A3AEA6064BD07CF5EADF4B96ADD41F7C7560791577133732B440848BD + ProductCode: '{2A6981B0-96F9-49C2-BFEA-9B13D91AC877}' + AppsAndFeaturesEntries: + - ProductCode: '{2A6981B0-96F9-49C2-BFEA-9B13D91AC877}' + UpgradeCode: '{4FFECDE8-8121-43DC-81F7-9FB7C82F24F4}' +- InstallerLocale: hi + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_hi.msi + InstallerSha256: 5C1B750AC2B901A3615F79C199E6611AD917A097E69B62C52B7C16C7B72A7E40 + ProductCode: '{1C48A1C5-E834-4E20-AE67-FA582E903D6C}' + AppsAndFeaturesEntries: + - ProductCode: '{1C48A1C5-E834-4E20-AE67-FA582E903D6C}' + UpgradeCode: '{4FFECDE8-8121-43DC-81F7-9FB7C82F24F4}' +- InstallerLocale: hi + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_hi.msi + InstallerSha256: 39A3F46490079DA577FE136434172F841CC46331B340C067748B8D6C70CA6362 + ProductCode: '{74663E9E-17FD-4FDF-AC1B-31057AB1FF76}' + AppsAndFeaturesEntries: + - ProductCode: '{74663E9E-17FD-4FDF-AC1B-31057AB1FF76}' + UpgradeCode: '{4FFECDE8-8121-43DC-81F7-9FB7C82F24F4}' +- InstallerLocale: hr + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_hr.msi + InstallerSha256: 528DDF6366C72FEFE624597A023B942E3C06F7B2C971E516582507E15EFE3FA8 + ProductCode: '{91BFF28B-B7F8-41AB-9580-A70A1CCE6135}' + AppsAndFeaturesEntries: + - ProductCode: '{91BFF28B-B7F8-41AB-9580-A70A1CCE6135}' + UpgradeCode: '{8BC12666-3F41-43C7-9530-05A5A69A269D}' +- InstallerLocale: hr + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_hr.msi + InstallerSha256: 2F903142E828BA7135B5ED9C7AC6A05EF302F2A50484FBD859E39ED5328D8323 + ProductCode: '{4A6FAD64-25D3-4361-8070-5949671FCBD9}' + AppsAndFeaturesEntries: + - ProductCode: '{4A6FAD64-25D3-4361-8070-5949671FCBD9}' + UpgradeCode: '{8BC12666-3F41-43C7-9530-05A5A69A269D}' +- InstallerLocale: hr + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_hr.msi + InstallerSha256: 1778D8A0072D2EA76E5EA059E681B8137EBA799A3E449BB26B07DE3F056A92BE + ProductCode: '{89E461F4-3217-4899-ABC5-C77D965873FA}' + AppsAndFeaturesEntries: + - ProductCode: '{89E461F4-3217-4899-ABC5-C77D965873FA}' + UpgradeCode: '{8BC12666-3F41-43C7-9530-05A5A69A269D}' +- InstallerLocale: hsb + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_hsb.msi + InstallerSha256: B798B217BB89217CD54CC14FC2F37FADEA44BB1581ED84C27A8282AA973E37F5 + ProductCode: '{246BEA5B-A477-44E7-A0BD-615DCC951828}' + AppsAndFeaturesEntries: + - ProductCode: '{246BEA5B-A477-44E7-A0BD-615DCC951828}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: hsb + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_hsb.msi + InstallerSha256: 6AFA8D672A17B36112CD88B9E6427B823988290594A8F20BECBF01D519650092 + ProductCode: '{9EB20455-21C8-4A51-A45E-179818220513}' + AppsAndFeaturesEntries: + - ProductCode: '{9EB20455-21C8-4A51-A45E-179818220513}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: hsb + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_hsb.msi + InstallerSha256: 2F533C8F2ABDA6ABDAC642EA696B7326527BF933E068FDFA5192B432EC645D83 + ProductCode: '{4C3B2432-A573-4CBA-9D13-FE39D4815F7A}' + AppsAndFeaturesEntries: + - ProductCode: '{4C3B2432-A573-4CBA-9D13-FE39D4815F7A}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: hu + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_hu.msi + InstallerSha256: F7618F646E108E0FF2C9BE22EB9E31A4CE320A9657BAAC5C82A58E7B1E020906 + ProductCode: '{C70C67D5-C716-4548-9E3E-DE1597BBCE83}' + AppsAndFeaturesEntries: + - ProductCode: '{C70C67D5-C716-4548-9E3E-DE1597BBCE83}' + UpgradeCode: '{63C087E6-5AC1-4C87-B663-6CEC4BD57935}' +- InstallerLocale: hu + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_hu.msi + InstallerSha256: 471EAB1A0C1D77C7E283C1D45D04190DA9ABDB0423D7290801FCA53AC4187E24 + ProductCode: '{8AD3699A-BA48-496B-876D-9B3835014128}' + AppsAndFeaturesEntries: + - ProductCode: '{8AD3699A-BA48-496B-876D-9B3835014128}' + UpgradeCode: '{63C087E6-5AC1-4C87-B663-6CEC4BD57935}' +- InstallerLocale: hu + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_hu.msi + InstallerSha256: D3E90700D44EBD6852866C66A785A81783DEC271AE75225FBC8E5BFA42003F73 + ProductCode: '{DABDFE07-7CFA-44F8-8B99-CF7B3EED3E93}' + AppsAndFeaturesEntries: + - ProductCode: '{DABDFE07-7CFA-44F8-8B99-CF7B3EED3E93}' + UpgradeCode: '{63C087E6-5AC1-4C87-B663-6CEC4BD57935}' +- InstallerLocale: id + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_id.msi + InstallerSha256: 40EC1AE95C4517E8F0CD40079A11501FC7B66B4FBDD2F349F513679851928CB7 + ProductCode: '{9E254B09-B2CE-414E-AC4A-A5F634E30420}' + AppsAndFeaturesEntries: + - ProductCode: '{9E254B09-B2CE-414E-AC4A-A5F634E30420}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: id + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_id.msi + InstallerSha256: 02542791FC09AEB0C3F3DEC7D18D0F4A3B534564B8351F31C21F255EB66880F7 + ProductCode: '{2FBF2142-F060-4BA0-B122-62C850F1FEB9}' + AppsAndFeaturesEntries: + - ProductCode: '{2FBF2142-F060-4BA0-B122-62C850F1FEB9}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: id + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_id.msi + InstallerSha256: 8769DBABD791570A5C0284091DBE95F1D1D923BD630E4E58AFE870099F36D8FA + ProductCode: '{C8D02E7D-1A05-4F6D-92F2-9BBE119AADFD}' + AppsAndFeaturesEntries: + - ProductCode: '{C8D02E7D-1A05-4F6D-92F2-9BBE119AADFD}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: is + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_is.msi + InstallerSha256: BFC01908E3F05C9BD9F3604D436341CBE084051C231AFD30ABEC9E7353880984 + ProductCode: '{515BCDF7-E410-4EEE-BB6A-D16835F476CF}' + AppsAndFeaturesEntries: + - ProductCode: '{515BCDF7-E410-4EEE-BB6A-D16835F476CF}' + UpgradeCode: '{AD579FC7-4AFF-46A6-A756-110EC862FD17}' +- InstallerLocale: is + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_is.msi + InstallerSha256: 4330FA43D6739CF063E7EAF1CEA8F65721F21EE737CF31138F158623D43F15CA + ProductCode: '{3CE0594F-C25B-4CE4-8BAB-73FA81368FCF}' + AppsAndFeaturesEntries: + - ProductCode: '{3CE0594F-C25B-4CE4-8BAB-73FA81368FCF}' + UpgradeCode: '{AD579FC7-4AFF-46A6-A756-110EC862FD17}' +- InstallerLocale: is + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_is.msi + InstallerSha256: 06460F8F0DD90F244D35A8E3478C8D2259F09588382A3B745D3DB4450BEA31CF + ProductCode: '{07BC3BE2-0029-46A7-BCDE-03ED7DFB16EA}' + AppsAndFeaturesEntries: + - ProductCode: '{07BC3BE2-0029-46A7-BCDE-03ED7DFB16EA}' + UpgradeCode: '{AD579FC7-4AFF-46A6-A756-110EC862FD17}' +- InstallerLocale: it + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_it.msi + InstallerSha256: 1741BBDD714D26389D917130F24BA4EDE768C9B489BE403B516E593AA8B9F299 + ProductCode: '{D0DC96A6-5BC6-4989-9DEE-253128E2E24B}' + AppsAndFeaturesEntries: + - ProductCode: '{D0DC96A6-5BC6-4989-9DEE-253128E2E24B}' + UpgradeCode: '{E9FFB21F-C41B-4A4C-87D1-885D97FE4D4A}' +- InstallerLocale: it + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_it.msi + InstallerSha256: 61E639D5C5040E958A167115C240F93207650B094AC93F5D6DA2BDE958751DD2 + ProductCode: '{FC73EFF1-8353-4ABB-87D1-1F31AEC50E07}' + AppsAndFeaturesEntries: + - ProductCode: '{FC73EFF1-8353-4ABB-87D1-1F31AEC50E07}' + UpgradeCode: '{E9FFB21F-C41B-4A4C-87D1-885D97FE4D4A}' +- InstallerLocale: it + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_it.msi + InstallerSha256: 34FA0B3716084C3AEEF6F2DD2E4EFCC570ACB6B122AC8599EE499260B312B5DB + ProductCode: '{86A5BB7B-D614-46BB-9101-4962A5882903}' + AppsAndFeaturesEntries: + - ProductCode: '{86A5BB7B-D614-46BB-9101-4962A5882903}' + UpgradeCode: '{E9FFB21F-C41B-4A4C-87D1-885D97FE4D4A}' +- InstallerLocale: ja + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_ja.msi + InstallerSha256: EB71D179278E02827A3201A4917C4C7C20C096FA4C108C466F7B362B994990EC + ProductCode: '{AC4B108A-9A6F-4F51-946D-8F16A7F38450}' + AppsAndFeaturesEntries: + - ProductCode: '{AC4B108A-9A6F-4F51-946D-8F16A7F38450}' + UpgradeCode: '{D5E8AF54-134D-4370-BEF6-62BD3049C516}' +- InstallerLocale: ja + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_ja.msi + InstallerSha256: AB707D8B1C9E474BE04978D921E477E6F72ACBF32730393B56780A5BA3295DC4 + ProductCode: '{F2D28208-3591-468D-834A-5A164213EC76}' + AppsAndFeaturesEntries: + - ProductCode: '{F2D28208-3591-468D-834A-5A164213EC76}' + UpgradeCode: '{D5E8AF54-134D-4370-BEF6-62BD3049C516}' +- InstallerLocale: ja + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_ja.msi + InstallerSha256: 8DA463D5E1FD5051ECC8F15073A337F943827237849B54ABCDF2DE416F129B74 + ProductCode: '{96AE588C-0D03-40C7-9BA2-EB42115F2CE7}' + AppsAndFeaturesEntries: + - ProductCode: '{96AE588C-0D03-40C7-9BA2-EB42115F2CE7}' + UpgradeCode: '{D5E8AF54-134D-4370-BEF6-62BD3049C516}' +- InstallerLocale: ka + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_ka.msi + InstallerSha256: 77623B683A54E538E7D5AEDB64F27A51C89E20300923DB68A750E91E07E8B5FF + ProductCode: '{7B75E6EA-AABF-481A-AD98-87B508546157}' + AppsAndFeaturesEntries: + - ProductCode: '{7B75E6EA-AABF-481A-AD98-87B508546157}' + UpgradeCode: '{5793EE6E-74B2-4965-A790-0C33ACEF75F0}' +- InstallerLocale: ka + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_ka.msi + InstallerSha256: F2619306457E708C6EFE80BCAB7D838183B9B683ACCE4B4ECCC038A6F46B31D8 + ProductCode: '{2FB2D12A-EDC3-4EDB-B35D-8CBCF64D94CB}' + AppsAndFeaturesEntries: + - ProductCode: '{2FB2D12A-EDC3-4EDB-B35D-8CBCF64D94CB}' + UpgradeCode: '{5793EE6E-74B2-4965-A790-0C33ACEF75F0}' +- InstallerLocale: ka + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_ka.msi + InstallerSha256: 7D2040CD6A968759E0D227275156F08CFDD8529E7BC05F0802107E0EE6E653C2 + ProductCode: '{2E9FD8B6-255A-430A-86DF-209D092B721F}' + AppsAndFeaturesEntries: + - ProductCode: '{2E9FD8B6-255A-430A-86DF-209D092B721F}' + UpgradeCode: '{5793EE6E-74B2-4965-A790-0C33ACEF75F0}' +- InstallerLocale: km + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_km.msi + InstallerSha256: F06F7D405D189CA04FF46944FB82954B4552F02DC3260DC9F3B87B1611B3BACA + ProductCode: '{FB88DC98-CC23-4687-AD69-1896A8A16886}' + AppsAndFeaturesEntries: + - ProductCode: '{FB88DC98-CC23-4687-AD69-1896A8A16886}' + UpgradeCode: '{D906DD83-52C5-4B45-A887-DABEED8A6936}' +- InstallerLocale: km + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_km.msi + InstallerSha256: EFB154FA15A24AE3AF6CE8D7360FCC74F599A9B1EE3137D242E4DF35E82C6C18 + ProductCode: '{D8EEAFF3-2864-4509-871C-39DA50B0DB71}' + AppsAndFeaturesEntries: + - ProductCode: '{D8EEAFF3-2864-4509-871C-39DA50B0DB71}' + UpgradeCode: '{D906DD83-52C5-4B45-A887-DABEED8A6936}' +- InstallerLocale: km + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_km.msi + InstallerSha256: 673F3E22757D76E93E756451FC38733FA39D0E5E107271A2D301E953B9819532 + ProductCode: '{8CCC3789-079E-4D31-9286-186784BE2777}' + AppsAndFeaturesEntries: + - ProductCode: '{8CCC3789-079E-4D31-9286-186784BE2777}' + UpgradeCode: '{D906DD83-52C5-4B45-A887-DABEED8A6936}' +- InstallerLocale: ko + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_ko.msi + InstallerSha256: B082B40E573DC9D60BDD81BF5D13ADB4A8CF476D21C718E96DE4C6B0E7F6E87D + ProductCode: '{D092AB7E-BB83-4D47-9E28-D0AAB1B1B697}' + AppsAndFeaturesEntries: + - ProductCode: '{D092AB7E-BB83-4D47-9E28-D0AAB1B1B697}' + UpgradeCode: '{918E7DC4-5641-4FB6-8A98-F3C0CCDFCC2D}' +- InstallerLocale: ko + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_ko.msi + InstallerSha256: B52A286A71956DC0430A5DD8881D90C9BC63517A4FCB4CAEA0B7700CE32DF6BF + ProductCode: '{5EDE6B4D-BA3A-4B99-93F6-00CF119C8289}' + AppsAndFeaturesEntries: + - ProductCode: '{5EDE6B4D-BA3A-4B99-93F6-00CF119C8289}' + UpgradeCode: '{918E7DC4-5641-4FB6-8A98-F3C0CCDFCC2D}' +- InstallerLocale: ko + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_ko.msi + InstallerSha256: 07CD34F8BD7321D32A7D841FD22DBA0CB69D88A9DC1D38AB1ACCCEB85E9DCEF1 + ProductCode: '{1A552D8C-2D46-4A4C-8715-BAD57DBE7BDE}' + AppsAndFeaturesEntries: + - ProductCode: '{1A552D8C-2D46-4A4C-8715-BAD57DBE7BDE}' + UpgradeCode: '{918E7DC4-5641-4FB6-8A98-F3C0CCDFCC2D}' +- InstallerLocale: lo + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_lo.msi + InstallerSha256: 6F9C653EBD887A38505AEC7A002A683D7D0E0A927300DE41F03821F5AEF8A168 + ProductCode: '{8BCF7B88-81E7-4D62-9A48-800734C17341}' + AppsAndFeaturesEntries: + - ProductCode: '{8BCF7B88-81E7-4D62-9A48-800734C17341}' + UpgradeCode: '{25F500C7-E3CA-413A-BB45-F298420533CB}' +- InstallerLocale: lo + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_lo.msi + InstallerSha256: 6D862823CBB16BB51295292A55AB8DE44DC4B7F6B9A1345BE39DF3FAA298ECDB + ProductCode: '{FE00BB8C-A8EE-4638-852C-B788F4E9FA19}' + AppsAndFeaturesEntries: + - ProductCode: '{FE00BB8C-A8EE-4638-852C-B788F4E9FA19}' + UpgradeCode: '{25F500C7-E3CA-413A-BB45-F298420533CB}' +- InstallerLocale: lo + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_lo.msi + InstallerSha256: B35E1C41AB1FBB9363B239487055DF83E7EA928E97A7723D75BD05755F15F57A + ProductCode: '{56801505-BD02-4063-BE7C-28E1DE483A0F}' + AppsAndFeaturesEntries: + - ProductCode: '{56801505-BD02-4063-BE7C-28E1DE483A0F}' + UpgradeCode: '{25F500C7-E3CA-413A-BB45-F298420533CB}' +- InstallerLocale: lt + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_lt.msi + InstallerSha256: 94E93F0332DFE037152D7B601C55F537D3907C7192CBF129248EA7B3D8C039ED + ProductCode: '{E371F924-F56D-4024-BF7B-0731B3926093}' + AppsAndFeaturesEntries: + - ProductCode: '{E371F924-F56D-4024-BF7B-0731B3926093}' + UpgradeCode: '{7D5B38B0-3E15-4F96-AFFE-F8E455CE666B}' +- InstallerLocale: lt + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_lt.msi + InstallerSha256: 3490332064730FAA78D2FB9FE5D2C022A63DA3341AE4F48B943EDEB2401C8EF8 + ProductCode: '{9A3877AB-F739-42C9-82F0-2CFFE5F0AC0C}' + AppsAndFeaturesEntries: + - ProductCode: '{9A3877AB-F739-42C9-82F0-2CFFE5F0AC0C}' + UpgradeCode: '{7D5B38B0-3E15-4F96-AFFE-F8E455CE666B}' +- InstallerLocale: lt + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_lt.msi + InstallerSha256: EEA0F34C4AA32148083247C113B8740C1B0077F04D2FEC9EB7B63060A54733D1 + ProductCode: '{CDFA5FD3-3113-489B-8A30-2BD019FF2F7F}' + AppsAndFeaturesEntries: + - ProductCode: '{CDFA5FD3-3113-489B-8A30-2BD019FF2F7F}' + UpgradeCode: '{7D5B38B0-3E15-4F96-AFFE-F8E455CE666B}' +- InstallerLocale: lv + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_lv.msi + InstallerSha256: 41BCB87F56B3EFFA90CA6683D2E30D4A765BF84332B73DB401A04A186A16FDF1 + ProductCode: '{A61DAC9A-0B74-4492-937B-ACE8E91B5E9B}' + AppsAndFeaturesEntries: + - ProductCode: '{A61DAC9A-0B74-4492-937B-ACE8E91B5E9B}' + UpgradeCode: '{DAC92857-35AC-44E2-BB10-F2F91173128C}' +- InstallerLocale: lv + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_lv.msi + InstallerSha256: ED810591316168FC8B24D9BE3F9B202ACF242FC827FACDFA540FD1C7A9CADCC4 + ProductCode: '{4DC44B30-53BB-4F9B-8418-5C7FE0E45066}' + AppsAndFeaturesEntries: + - ProductCode: '{4DC44B30-53BB-4F9B-8418-5C7FE0E45066}' + UpgradeCode: '{DAC92857-35AC-44E2-BB10-F2F91173128C}' +- InstallerLocale: lv + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_lv.msi + InstallerSha256: 7BF9D940AE7546740E5DADAE76C02D844A2A7A16A0E79A668BA217198B855FD3 + ProductCode: '{1E748945-487B-4C20-BCAF-FDF1D24C639B}' + AppsAndFeaturesEntries: + - ProductCode: '{1E748945-487B-4C20-BCAF-FDF1D24C639B}' + UpgradeCode: '{DAC92857-35AC-44E2-BB10-F2F91173128C}' +- InstallerLocale: mk + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_mk.msi + InstallerSha256: F1791A22A82791D890A7C586BB7A2FCF7757187598538E3A3A31B1FC2E3A8E61 + ProductCode: '{A23519ED-4C01-4DD9-8AFE-B5C8334399EF}' + AppsAndFeaturesEntries: + - ProductCode: '{A23519ED-4C01-4DD9-8AFE-B5C8334399EF}' + UpgradeCode: '{97BD11C0-13A0-416D-AB9A-9128DBEF707A}' +- InstallerLocale: mk + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_mk.msi + InstallerSha256: 8AA931CAC878EAFDC8E6D63FC9A7F200726D4E145926918D66D7472AF8E54056 + ProductCode: '{C1256DE1-7AAA-4458-B789-36CE41647D9C}' + AppsAndFeaturesEntries: + - ProductCode: '{C1256DE1-7AAA-4458-B789-36CE41647D9C}' + UpgradeCode: '{97BD11C0-13A0-416D-AB9A-9128DBEF707A}' +- InstallerLocale: mk + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_mk.msi + InstallerSha256: CCA5517115F6E2883197F6C2364D61088FE823A6B61EB09957258B69BC583D9F + ProductCode: '{C0F8FABE-82EA-462F-B8A0-32D7FF104A46}' + AppsAndFeaturesEntries: + - ProductCode: '{C0F8FABE-82EA-462F-B8A0-32D7FF104A46}' + UpgradeCode: '{97BD11C0-13A0-416D-AB9A-9128DBEF707A}' +- InstallerLocale: nb + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_nb.msi + InstallerSha256: 6EAA1261A605AAFD6049DCE6D85AD1A43438A7B06C8725D8A282049C45400314 + ProductCode: '{D21D6CE3-2292-4689-A475-91AAE2BC457B}' + AppsAndFeaturesEntries: + - ProductCode: '{D21D6CE3-2292-4689-A475-91AAE2BC457B}' + UpgradeCode: '{95CDD114-AB99-47E9-A6CA-C50C7460B1DA}' +- InstallerLocale: nb + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_nb.msi + InstallerSha256: C9B7736CB28E2883F659B019FBDFFD9A1F9DEE7C7A422FA06970950688D09AFB + ProductCode: '{76BC5B85-8105-41E7-BABC-E36A35A80E35}' + AppsAndFeaturesEntries: + - ProductCode: '{76BC5B85-8105-41E7-BABC-E36A35A80E35}' + UpgradeCode: '{95CDD114-AB99-47E9-A6CA-C50C7460B1DA}' +- InstallerLocale: nb + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_nb.msi + InstallerSha256: A8ACFA45F67A01EE2450C31655756EF73C81D9ABE9990FE2C06CA8CFBFA12622 + ProductCode: '{FF864B07-3675-4183-910F-BCF091B4FBD5}' + AppsAndFeaturesEntries: + - ProductCode: '{FF864B07-3675-4183-910F-BCF091B4FBD5}' + UpgradeCode: '{95CDD114-AB99-47E9-A6CA-C50C7460B1DA}' +- InstallerLocale: ne + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_ne.msi + InstallerSha256: F545EEF6622407833E0F32F49CEC13EB922009A86DB07E772502D780FAFD4D01 + ProductCode: '{D297F7B5-3905-4D1E-AC75-40B601AE2F67}' + AppsAndFeaturesEntries: + - ProductCode: '{D297F7B5-3905-4D1E-AC75-40B601AE2F67}' + UpgradeCode: '{B4F43785-36D1-4716-AFCF-894B1AF36C1D}' +- InstallerLocale: ne + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_ne.msi + InstallerSha256: C4EA16FF259059A2AC0B37333AC9BC378B47119A5D6AD0506C617A368127506E + ProductCode: '{9E9C8620-3E7C-4427-92E0-F744F71B39F1}' + AppsAndFeaturesEntries: + - ProductCode: '{9E9C8620-3E7C-4427-92E0-F744F71B39F1}' + UpgradeCode: '{B4F43785-36D1-4716-AFCF-894B1AF36C1D}' +- InstallerLocale: ne + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_ne.msi + InstallerSha256: 9C86F3FADA9F3600C479850825BD68A6AFF5A45A9AF4A637D3C8DE8ACCDBD545 + ProductCode: '{7CA3A1F3-E563-4F21-AFA2-47770EA9C670}' + AppsAndFeaturesEntries: + - ProductCode: '{7CA3A1F3-E563-4F21-AFA2-47770EA9C670}' + UpgradeCode: '{B4F43785-36D1-4716-AFCF-894B1AF36C1D}' +- InstallerLocale: nl + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_nl.msi + InstallerSha256: 7DC42C264CE2F3785B17FAC8FCD7C16B25137E1722714FE980A7478A6EC80BFC + ProductCode: '{BAFE9419-4986-4B40-9417-CB1672BD3CB1}' + AppsAndFeaturesEntries: + - ProductCode: '{BAFE9419-4986-4B40-9417-CB1672BD3CB1}' + UpgradeCode: '{E25D3CC2-AC90-4861-9E9C-DA41B5DF8A03}' +- InstallerLocale: nl + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_nl.msi + InstallerSha256: 103C4C0CA1AF526780059FA426568D9FD89F9E722FF9C7C0DCF6E5CE9D323CD7 + ProductCode: '{2B72080C-C560-4B7F-AB6C-958FEE006B48}' + AppsAndFeaturesEntries: + - ProductCode: '{2B72080C-C560-4B7F-AB6C-958FEE006B48}' + UpgradeCode: '{E25D3CC2-AC90-4861-9E9C-DA41B5DF8A03}' +- InstallerLocale: nl + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_nl.msi + InstallerSha256: 2A61B99D85E3E5FF28A4564694F8729E9ADB0ADF78DF6477B42516510891211B + ProductCode: '{1A32F892-285D-42CC-AB52-80CFC0F25A11}' + AppsAndFeaturesEntries: + - ProductCode: '{1A32F892-285D-42CC-AB52-80CFC0F25A11}' + UpgradeCode: '{E25D3CC2-AC90-4861-9E9C-DA41B5DF8A03}' +- InstallerLocale: nn + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_nn.msi + InstallerSha256: 4F3C03E329960A7EFACBE290116815050E792D92F9DD7C5D30B928A86CAC5EB8 + ProductCode: '{884A2A20-40B3-460B-8439-A1951126C3B3}' + AppsAndFeaturesEntries: + - ProductCode: '{884A2A20-40B3-460B-8439-A1951126C3B3}' + UpgradeCode: '{8D2FABA5-79CD-4109-A274-DEE14E279233}' +- InstallerLocale: nn + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_nn.msi + InstallerSha256: A3A64159B8C9F0F29272DC69B89E39CF2FCC3F9AAC6EF67454BE3CCE492DA703 + ProductCode: '{2AEADF9D-B9EC-43F0-8874-E08A602F6096}' + AppsAndFeaturesEntries: + - ProductCode: '{2AEADF9D-B9EC-43F0-8874-E08A602F6096}' + UpgradeCode: '{8D2FABA5-79CD-4109-A274-DEE14E279233}' +- InstallerLocale: nn + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_nn.msi + InstallerSha256: D85E93F5BD24837F93B9DE9EE549F6E17C9903F6A11BDE215CD104F48332080E + ProductCode: '{3C01CC00-DE72-4CF0-B625-6EC4D9FC92D5}' + AppsAndFeaturesEntries: + - ProductCode: '{3C01CC00-DE72-4CF0-B625-6EC4D9FC92D5}' + UpgradeCode: '{8D2FABA5-79CD-4109-A274-DEE14E279233}' +- InstallerLocale: om + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_om.msi + InstallerSha256: 75A82CEEAD9C87C0420BE342B0A33754359F25EFDA914E6FF29559190290767B + ProductCode: '{65C83249-7C65-4ECB-AAA5-3BDA140AA906}' + AppsAndFeaturesEntries: + - ProductCode: '{65C83249-7C65-4ECB-AAA5-3BDA140AA906}' + UpgradeCode: '{AC220121-97DE-4D37-9554-8877DAF713E6}' +- InstallerLocale: om + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_om.msi + InstallerSha256: D742BEE94771F6438FE780B1BD29179C8C3E474E97353CD80631F7C9364E0D29 + ProductCode: '{1433851D-F76A-4430-863A-7846639C7434}' + AppsAndFeaturesEntries: + - ProductCode: '{1433851D-F76A-4430-863A-7846639C7434}' + UpgradeCode: '{AC220121-97DE-4D37-9554-8877DAF713E6}' +- InstallerLocale: om + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_om.msi + InstallerSha256: B77A8ABD99B1F5BD44455B48CA4DABF28F2E408AF80B64B1783DD247639B23F3 + ProductCode: '{4A165FC7-F44A-40A9-9970-7A3813978D40}' + AppsAndFeaturesEntries: + - ProductCode: '{4A165FC7-F44A-40A9-9970-7A3813978D40}' + UpgradeCode: '{AC220121-97DE-4D37-9554-8877DAF713E6}' +- InstallerLocale: pl + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_pl.msi + InstallerSha256: D6758534029F800286CD62768F69757C5CDD9AB5BA78AE7EAC794BAD92E9D229 + ProductCode: '{43DC1BEE-0A54-43C5-8D01-BAB1DC033B70}' + AppsAndFeaturesEntries: + - ProductCode: '{43DC1BEE-0A54-43C5-8D01-BAB1DC033B70}' + UpgradeCode: '{EF16C1BF-539B-4EEE-91E5-0D44C4B72840}' +- InstallerLocale: pl + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_pl.msi + InstallerSha256: 8A12D9334895DBFCB678F0233EA84F334402DCE8E748C6CD10D298E647C1378D + ProductCode: '{D39F1DEF-0C5E-4521-934B-C3756FBB459F}' + AppsAndFeaturesEntries: + - ProductCode: '{D39F1DEF-0C5E-4521-934B-C3756FBB459F}' + UpgradeCode: '{EF16C1BF-539B-4EEE-91E5-0D44C4B72840}' +- InstallerLocale: pl + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_pl.msi + InstallerSha256: 78B8FE3B87F6318DC54484D6BE46262233AAED1128EB1138EDF7DE6F1170D888 + ProductCode: '{A4329A70-FC90-49D8-BE09-355826618F03}' + AppsAndFeaturesEntries: + - ProductCode: '{A4329A70-FC90-49D8-BE09-355826618F03}' + UpgradeCode: '{EF16C1BF-539B-4EEE-91E5-0D44C4B72840}' +- InstallerLocale: pt + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_pt.msi + InstallerSha256: 76EA45F9CE24D7D6D3FB59A6E4C297C5291E6BEF676890AF8183062FBAD3D3B4 + ProductCode: '{E63A651E-2AD4-41A2-9742-DC8FDEDBCB33}' + AppsAndFeaturesEntries: + - ProductCode: '{E63A651E-2AD4-41A2-9742-DC8FDEDBCB33}' + UpgradeCode: '{EFBDEE97-65AB-4575-B117-976D2EE639D0}' +- InstallerLocale: pt + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_pt.msi + InstallerSha256: 3BD5CDA7997F6F5AEF67D37B8C8D2D1A0466626BC75CB8120C47D07DD5DC5B73 + ProductCode: '{A9927D5B-0F1A-471D-B1C1-43CECBEF414C}' + AppsAndFeaturesEntries: + - ProductCode: '{A9927D5B-0F1A-471D-B1C1-43CECBEF414C}' + UpgradeCode: '{EFBDEE97-65AB-4575-B117-976D2EE639D0}' +- InstallerLocale: pt + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_pt.msi + InstallerSha256: C4A88C88C65D1BB51705686725F75A7F99ED00C507218AA5268F9D4191DEB986 + ProductCode: '{068B6B5C-82C5-48C4-9E71-135E11D68312}' + AppsAndFeaturesEntries: + - ProductCode: '{068B6B5C-82C5-48C4-9E71-135E11D68312}' + UpgradeCode: '{EFBDEE97-65AB-4575-B117-976D2EE639D0}' +- InstallerLocale: pt-BR + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_pt-BR.msi + InstallerSha256: 2981A96A1E800C6068C1E15E2EDA9FBCB4C66822BF680E5F43DE4105D8248A37 + ProductCode: '{B86BF5E4-D10C-4C2E-A77F-9AFD33D156D2}' + AppsAndFeaturesEntries: + - ProductCode: '{B86BF5E4-D10C-4C2E-A77F-9AFD33D156D2}' + UpgradeCode: '{8EE0FF44-307B-4FDC-85F1-EA178C788FA8}' +- InstallerLocale: pt-BR + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_pt-BR.msi + InstallerSha256: 5A710D8360B205C0C1A15A64A269C5AEDA3635A7425410ABED7D584924BCDB10 + ProductCode: '{3080B3ED-296C-41D3-BCA6-B3D581E535DB}' + AppsAndFeaturesEntries: + - ProductCode: '{3080B3ED-296C-41D3-BCA6-B3D581E535DB}' + UpgradeCode: '{8EE0FF44-307B-4FDC-85F1-EA178C788FA8}' +- InstallerLocale: pt-BR + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_pt-BR.msi + InstallerSha256: D878073E1667F7628BA0A2AACA00FBAC3AE95A5FE0C4795B1CCD82CFBD0FC013 + ProductCode: '{B7E693EF-9774-45A7-AC29-161D8FAA9B80}' + AppsAndFeaturesEntries: + - ProductCode: '{B7E693EF-9774-45A7-AC29-161D8FAA9B80}' + UpgradeCode: '{8EE0FF44-307B-4FDC-85F1-EA178C788FA8}' +- InstallerLocale: ro + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_ro.msi + InstallerSha256: 26EB178D214F8A3BB8D0A5A99C757B1919A4B00FFE0F2D9AAAAC4991087D09C8 + ProductCode: '{7FB6883E-0F19-4B31-8C9B-D3196E6264DA}' + AppsAndFeaturesEntries: + - ProductCode: '{7FB6883E-0F19-4B31-8C9B-D3196E6264DA}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: ro + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_ro.msi + InstallerSha256: F531E3754A17F4874E303AABBB50D607166078921BEF0DBE33B8F5C04623A759 + ProductCode: '{5C4BD7BE-0C1A-4626-AF01-5C16C7C1CA9B}' + AppsAndFeaturesEntries: + - ProductCode: '{5C4BD7BE-0C1A-4626-AF01-5C16C7C1CA9B}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: ro + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_ro.msi + InstallerSha256: 2D5D14EA5AE74B1F08B02D3CC61D777A650EBCFB366E184CD63C76EFC7F2CAE8 + ProductCode: '{F26FDDBC-AA37-4208-B877-CBFBA4CA3ECC}' + AppsAndFeaturesEntries: + - ProductCode: '{F26FDDBC-AA37-4208-B877-CBFBA4CA3ECC}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: ru + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_ru.msi + InstallerSha256: 57100A58AFEABF0C6E9F0F1FBC2F9049EFA805ED51D60891267696CBA5BD6E8A + ProductCode: '{745E9E3C-CE9D-4766-9A16-FEC72C4889C7}' + AppsAndFeaturesEntries: + - ProductCode: '{745E9E3C-CE9D-4766-9A16-FEC72C4889C7}' + UpgradeCode: '{2CCF1EF8-A263-4B77-8BDD-92D66B30531F}' +- InstallerLocale: ru + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_ru.msi + InstallerSha256: 6BD2F724ED1FA3775657699E544F24820BFD0D473CF619803C01FECF24B4D6DC + ProductCode: '{1BF18426-E212-42F6-819B-5848B08E0E0C}' + AppsAndFeaturesEntries: + - ProductCode: '{1BF18426-E212-42F6-819B-5848B08E0E0C}' + UpgradeCode: '{2CCF1EF8-A263-4B77-8BDD-92D66B30531F}' +- InstallerLocale: ru + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_ru.msi + InstallerSha256: E20C04A339AB6148EE8F544F2DAD0477AD761A28CE076FCAA3F4B547B7B134C2 + ProductCode: '{0A2F9F79-E9F1-4A46-97C1-43A6BEEFE258}' + AppsAndFeaturesEntries: + - ProductCode: '{0A2F9F79-E9F1-4A46-97C1-43A6BEEFE258}' + UpgradeCode: '{2CCF1EF8-A263-4B77-8BDD-92D66B30531F}' +- InstallerLocale: si + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_si.msi + InstallerSha256: 07456710279277ED64920DC05CC11A3CA558DA19C8043E1F936E7A0C34487051 + ProductCode: '{4380DC69-BE81-46A1-AB73-8D5929C77F5D}' + AppsAndFeaturesEntries: + - ProductCode: '{4380DC69-BE81-46A1-AB73-8D5929C77F5D}' + UpgradeCode: '{49438D51-91A0-4E2C-8415-E48CF3C82DB4}' +- InstallerLocale: si + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_si.msi + InstallerSha256: B00A62F9A85C73DE51FF9D269946CEEEDDDCD77033CFEEF51F443580BB2C578C + ProductCode: '{0C19DE3E-2F19-4827-9F6A-2987F03985AF}' + AppsAndFeaturesEntries: + - ProductCode: '{0C19DE3E-2F19-4827-9F6A-2987F03985AF}' + UpgradeCode: '{49438D51-91A0-4E2C-8415-E48CF3C82DB4}' +- InstallerLocale: si + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_si.msi + InstallerSha256: 6BF1F3EC4007C2B48371180C5F5A124D5FEFDCFC67F6651F9723B198DAF75A00 + ProductCode: '{8B27B6A4-1160-4755-82D9-C9D43D56F7A1}' + AppsAndFeaturesEntries: + - ProductCode: '{8B27B6A4-1160-4755-82D9-C9D43D56F7A1}' + UpgradeCode: '{49438D51-91A0-4E2C-8415-E48CF3C82DB4}' +- InstallerLocale: sk + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_sk.msi + InstallerSha256: B5848C1C0074CED91A9A6A03127F6B3B6B746EB308ECD9E2B532F9E58500E5ED + ProductCode: '{ADE599AC-6547-44D0-832E-BAD827E5C43C}' + AppsAndFeaturesEntries: + - ProductCode: '{ADE599AC-6547-44D0-832E-BAD827E5C43C}' + UpgradeCode: '{31812C7E-CD25-455E-BEDD-F7A5F1E3AA57}' +- InstallerLocale: sk + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_sk.msi + InstallerSha256: EECD5D4888CCD58898C97C59D008B89C30CF5700623319A29861CC02476F2824 + ProductCode: '{52473431-B9C4-4D74-879F-1D89FCBA64D0}' + AppsAndFeaturesEntries: + - ProductCode: '{52473431-B9C4-4D74-879F-1D89FCBA64D0}' + UpgradeCode: '{31812C7E-CD25-455E-BEDD-F7A5F1E3AA57}' +- InstallerLocale: sk + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_sk.msi + InstallerSha256: 8124EC668D27B9870A272982D7D7B06D68B911F7CBFC74B0EDD099401B5247C5 + ProductCode: '{A1DDB491-79CB-46A0-96CF-D02F7BDD24B4}' + AppsAndFeaturesEntries: + - ProductCode: '{A1DDB491-79CB-46A0-96CF-D02F7BDD24B4}' + UpgradeCode: '{31812C7E-CD25-455E-BEDD-F7A5F1E3AA57}' +- InstallerLocale: sl + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_sl.msi + InstallerSha256: 97E3414F01068C4955BB14D2E9728DDD01A3F237254A5DC31CD4843B2B3745F9 + ProductCode: '{283E80B8-22BF-448E-97FA-8AC01444092B}' + AppsAndFeaturesEntries: + - ProductCode: '{283E80B8-22BF-448E-97FA-8AC01444092B}' + UpgradeCode: '{F4B8D208-4566-4C4D-AFA0-3D2729084555}' +- InstallerLocale: sl + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_sl.msi + InstallerSha256: 9C2A6428E6E1E6F232F023293C40A11CBB16294B68B70D221DFE2AAC5EA53B8D + ProductCode: '{88CF5922-F628-4753-B5E2-147410F02318}' + AppsAndFeaturesEntries: + - ProductCode: '{88CF5922-F628-4753-B5E2-147410F02318}' + UpgradeCode: '{F4B8D208-4566-4C4D-AFA0-3D2729084555}' +- InstallerLocale: sl + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_sl.msi + InstallerSha256: 07010730BC0A20C323F5B18E62A9794E135CCD78D709769C7559EE1BECF3C66A + ProductCode: '{98037BB0-7BDF-456D-8FAA-4C1F4ACC4810}' + AppsAndFeaturesEntries: + - ProductCode: '{98037BB0-7BDF-456D-8FAA-4C1F4ACC4810}' + UpgradeCode: '{F4B8D208-4566-4C4D-AFA0-3D2729084555}' +- InstallerLocale: sq + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_sq.msi + InstallerSha256: C260DF96360DFF79F1FC97C53E22BE6DE7FCCFD515C98C3C77177157D500D45D + ProductCode: '{F996246F-775F-4A4D-B08E-FB12F46D9E24}' + AppsAndFeaturesEntries: + - ProductCode: '{F996246F-775F-4A4D-B08E-FB12F46D9E24}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: sq + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_sq.msi + InstallerSha256: 84EE3E9ADB46F540621988455B2431E84C0A840114AE53AFB824FE3853EF6F97 + ProductCode: '{F2F6F3B4-3606-4E97-902F-6E31382360D9}' + AppsAndFeaturesEntries: + - ProductCode: '{F2F6F3B4-3606-4E97-902F-6E31382360D9}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: sq + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_sq.msi + InstallerSha256: 4628F2F01DA6F30B048F557FD28D84ED2ED3B2A863B790580F4101EDE2E59F06 + ProductCode: '{252F01F8-FD0F-43EC-ABFD-B53B95FB7337}' + AppsAndFeaturesEntries: + - ProductCode: '{252F01F8-FD0F-43EC-ABFD-B53B95FB7337}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: sv + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_sv.msi + InstallerSha256: 036C7669DBFC647C6CB27947F1B9E2A792295DF7CD7FF664C7C328EB5B57C326 + ProductCode: '{1D2B39B9-F2D1-44B9-A063-2EB9CFE856A4}' + AppsAndFeaturesEntries: + - ProductCode: '{1D2B39B9-F2D1-44B9-A063-2EB9CFE856A4}' + UpgradeCode: '{234E7342-71BD-4B78-946D-06531FD46FA7}' +- InstallerLocale: sv + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_sv.msi + InstallerSha256: BC63D09031DF05A7EBC591CE44B08866CFDA0AFA4B30F8F78042527263CE333D + ProductCode: '{4FF8914E-D251-43EA-9778-856F65210BA7}' + AppsAndFeaturesEntries: + - ProductCode: '{4FF8914E-D251-43EA-9778-856F65210BA7}' + UpgradeCode: '{234E7342-71BD-4B78-946D-06531FD46FA7}' +- InstallerLocale: sv + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_sv.msi + InstallerSha256: DAB7B4CAA762649C6A57B938B60B2BDC7B0E9D23679BE1E6016BCE2AEF805F17 + ProductCode: '{0C43271D-92A1-4C97-97A8-8AB5E2B1CA2E}' + AppsAndFeaturesEntries: + - ProductCode: '{0C43271D-92A1-4C97-97A8-8AB5E2B1CA2E}' + UpgradeCode: '{234E7342-71BD-4B78-946D-06531FD46FA7}' +- InstallerLocale: ta + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_ta.msi + InstallerSha256: B2C2ACAC400D383B3FC45CAA4345E741438EEE2B57D91064797EDDC974DE4F84 + ProductCode: '{8A15D954-81CD-4EEA-B7F3-70FC5E169058}' + AppsAndFeaturesEntries: + - ProductCode: '{8A15D954-81CD-4EEA-B7F3-70FC5E169058}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: ta + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_ta.msi + InstallerSha256: C20EE514F94F331CADFBA8745953F4164AB3B40FDBFABC456F588EA49F1E2381 + ProductCode: '{71DE5BA3-0407-4F95-94CF-3DCBA15925C3}' + AppsAndFeaturesEntries: + - ProductCode: '{71DE5BA3-0407-4F95-94CF-3DCBA15925C3}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: ta + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_ta.msi + InstallerSha256: 82563B99A17FBBFDEB5952B3DA6C167E9512C7FDB4ED4D8FB6F33C2431DAEFF0 + ProductCode: '{4E08EE16-EB1A-4368-AC43-3116A62B8AE3}' + AppsAndFeaturesEntries: + - ProductCode: '{4E08EE16-EB1A-4368-AC43-3116A62B8AE3}' + UpgradeCode: '{40C2DB8E-E9D6-4451-BE31-DAD1343EC3DF}' +- InstallerLocale: tg-TJ + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_tg.msi + InstallerSha256: E5B7327F05BD24A2100FA2CEABC85E8F218F608F28642B97C9F7542C18D0AA56 + ProductCode: '{1CEDBB83-11B3-4D63-97B0-0F5A9E08A22C}' + AppsAndFeaturesEntries: + - ProductCode: '{1CEDBB83-11B3-4D63-97B0-0F5A9E08A22C}' + UpgradeCode: '{4175B9EA-56CA-4311-9F96-937EABCEA1C8}' +- InstallerLocale: tg-TJ + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_tg.msi + InstallerSha256: EFE0FC3F73E1E60F29453F482395E3F12E5BFA84799A73E8789FEAA169A7ECC2 + ProductCode: '{D474E772-70E2-4F61-A711-D7624B28138A}' + AppsAndFeaturesEntries: + - ProductCode: '{D474E772-70E2-4F61-A711-D7624B28138A}' + UpgradeCode: '{4175B9EA-56CA-4311-9F96-937EABCEA1C8}' +- InstallerLocale: tg-TJ + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_tg.msi + InstallerSha256: F17EA2E93E7004CFD8D864C4F3B71EF937F523FF809B64D110B1B1E57D960842 + ProductCode: '{D983DDD4-D155-40EA-A1AF-5123F06F44F9}' + AppsAndFeaturesEntries: + - ProductCode: '{D983DDD4-D155-40EA-A1AF-5123F06F44F9}' + UpgradeCode: '{4175B9EA-56CA-4311-9F96-937EABCEA1C8}' +- InstallerLocale: tr + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_tr.msi + InstallerSha256: 7B7D632979D992E59F75ABFBF0C0BF25CF27E142F10ED28477AA6BD6A1823092 + ProductCode: '{3C3AD25B-16DE-40B9-BDE8-5BC64492FA5C}' + AppsAndFeaturesEntries: + - ProductCode: '{3C3AD25B-16DE-40B9-BDE8-5BC64492FA5C}' + UpgradeCode: '{AA132C49-A480-4B5D-AAD3-811362B60A42}' +- InstallerLocale: tr + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_tr.msi + InstallerSha256: FB430594F013A8AC4AA93B3175B8D8ACC65356B4D07428CD8BC5D955EA0664D0 + ProductCode: '{1FB49C8E-DA50-411E-BB3C-272149265003}' + AppsAndFeaturesEntries: + - ProductCode: '{1FB49C8E-DA50-411E-BB3C-272149265003}' + UpgradeCode: '{AA132C49-A480-4B5D-AAD3-811362B60A42}' +- InstallerLocale: tr + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_tr.msi + InstallerSha256: 5E010C25B45539C8FA4383E0DC9ACAEC57DCBAAD5BD6F827D18384732FBA9D15 + ProductCode: '{F75D28B3-EE5D-4F3F-984A-88941F7290D8}' + AppsAndFeaturesEntries: + - ProductCode: '{F75D28B3-EE5D-4F3F-984A-88941F7290D8}' + UpgradeCode: '{AA132C49-A480-4B5D-AAD3-811362B60A42}' +- InstallerLocale: ug-CN + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_ug.msi + InstallerSha256: CA15FA603DA02D0DC743E65DF87C7B17BF60B7793D16D30923B96BF92DF3F80C + ProductCode: '{B6BB447E-CD0B-4D1A-A378-DA84A7FD0E43}' + AppsAndFeaturesEntries: + - ProductCode: '{B6BB447E-CD0B-4D1A-A378-DA84A7FD0E43}' + UpgradeCode: '{1D09B009-8003-44FB-B2E1-49387F1112B9}' +- InstallerLocale: ug-CN + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_ug.msi + InstallerSha256: 4550D7759F5C8940596A749E742F1E7B1102B8A715E0934A1B2A2DD61900C3C6 + ProductCode: '{B54B33FA-1F76-420A-9B02-095721B8483D}' + AppsAndFeaturesEntries: + - ProductCode: '{B54B33FA-1F76-420A-9B02-095721B8483D}' + UpgradeCode: '{1D09B009-8003-44FB-B2E1-49387F1112B9}' +- InstallerLocale: ug-CN + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_ug.msi + InstallerSha256: 6A30310670DCA495A406507DB2D571C59AF2AE44818A491EDE750779AF87B713 + ProductCode: '{1F2D802D-13CD-4F8E-9F1F-2DB121729E8F}' + AppsAndFeaturesEntries: + - ProductCode: '{1F2D802D-13CD-4F8E-9F1F-2DB121729E8F}' + UpgradeCode: '{1D09B009-8003-44FB-B2E1-49387F1112B9}' +- InstallerLocale: uk + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_uk.msi + InstallerSha256: B0DAD6B6EFD8DB85C10C85C94D4320EBE30B9C26228B0A4CDA8EC47B97696659 + ProductCode: '{24668580-0DA1-4EF9-A080-D5FC0B06F269}' + AppsAndFeaturesEntries: + - ProductCode: '{24668580-0DA1-4EF9-A080-D5FC0B06F269}' + UpgradeCode: '{52E53AB3-FAE4-4025-9B6F-FA401C9B10AE}' +- InstallerLocale: uk + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_uk.msi + InstallerSha256: 000D29251C704A792C0F4ACFF044227C27B7CE85FA521DAE5AD9DF11D11C0CC5 + ProductCode: '{0724C75E-D060-46DB-8614-890BD6319150}' + AppsAndFeaturesEntries: + - ProductCode: '{0724C75E-D060-46DB-8614-890BD6319150}' + UpgradeCode: '{52E53AB3-FAE4-4025-9B6F-FA401C9B10AE}' +- InstallerLocale: uk + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_uk.msi + InstallerSha256: 38023D146B47EA01E8B609B8160651D2A1FCA961A667290A18B9BBBD4CA07CBD + ProductCode: '{573C2893-3F0C-40ED-989D-7FC761C7FA2F}' + AppsAndFeaturesEntries: + - ProductCode: '{573C2893-3F0C-40ED-989D-7FC761C7FA2F}' + UpgradeCode: '{52E53AB3-FAE4-4025-9B6F-FA401C9B10AE}' +- InstallerLocale: vi + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_vi.msi + InstallerSha256: 9121C067BE5B99079AA447B3335107A35380D6AA7BCE509E81E05EAE3452785C + ProductCode: '{40DD11B7-F048-4D01-B04E-897110EAC5AF}' + AppsAndFeaturesEntries: + - ProductCode: '{40DD11B7-F048-4D01-B04E-897110EAC5AF}' + UpgradeCode: '{67A6C9E2-C285-48E4-A620-40D905E8D3F8}' +- InstallerLocale: vi + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_vi.msi + InstallerSha256: F4A099A197F429E973BBD14A8C9CB27BFD98AF551480C408EDC3BE3A88BD24C5 + ProductCode: '{424E68AD-4DCA-4413-9F75-640E52185DD4}' + AppsAndFeaturesEntries: + - ProductCode: '{424E68AD-4DCA-4413-9F75-640E52185DD4}' + UpgradeCode: '{67A6C9E2-C285-48E4-A620-40D905E8D3F8}' +- InstallerLocale: vi + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_vi.msi + InstallerSha256: 22877D4AFB949BC22A75640DADA4B7081944A75CAC38FEC237B18AEC27BA065E + ProductCode: '{ACF16C44-92E9-4465-938D-78C0E0753E85}' + AppsAndFeaturesEntries: + - ProductCode: '{ACF16C44-92E9-4465-938D-78C0E0753E85}' + UpgradeCode: '{67A6C9E2-C285-48E4-A620-40D905E8D3F8}' +- InstallerLocale: zh-CN + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_zh-CN.msi + InstallerSha256: 738B40736BDF7E819EBCDBA9D21856DFE3EEBBD34DC2BC6CE54299F54D7AA5D3 + ProductCode: '{B33E1C4E-E369-48F6-A8FE-5EDD7368E26C}' + AppsAndFeaturesEntries: + - ProductCode: '{B33E1C4E-E369-48F6-A8FE-5EDD7368E26C}' + UpgradeCode: '{47574572-9963-441B-8A42-0B1A61880608}' +- InstallerLocale: zh-CN + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_zh-CN.msi + InstallerSha256: 3ADC8FA2DFB891EBE98680C1CE2D659E72B56C8F2B3CBF3ACD1F903A5967093E + ProductCode: '{AD10300A-AF35-4849-91E2-9A14A363967B}' + AppsAndFeaturesEntries: + - ProductCode: '{AD10300A-AF35-4849-91E2-9A14A363967B}' + UpgradeCode: '{47574572-9963-441B-8A42-0B1A61880608}' +- InstallerLocale: zh-CN + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_zh-CN.msi + InstallerSha256: 1A459EFE912311843ABBB6478398A8DF5A1AAAF5915FDE1237754397123E1C35 + ProductCode: '{E8583327-B140-4B78-81C1-FC873FDB9B04}' + AppsAndFeaturesEntries: + - ProductCode: '{E8583327-B140-4B78-81C1-FC873FDB9B04}' + UpgradeCode: '{47574572-9963-441B-8A42-0B1A61880608}' +- InstallerLocale: zh-TW + Architecture: x86 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86/LibreOffice_26.2.2.2_Win_x86_helppack_zh-TW.msi + InstallerSha256: F90A31E7976747275E78CC156D54D17F080398C68E7156227234A1C122BBF362 + ProductCode: '{4EF7C940-23BF-4A21-8B39-1C45A134D642}' + AppsAndFeaturesEntries: + - ProductCode: '{4EF7C940-23BF-4A21-8B39-1C45A134D642}' + UpgradeCode: '{6800BE26-76E9-4280-A174-5A952A18E643}' +- InstallerLocale: zh-TW + Architecture: x64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/x86_64/LibreOffice_26.2.2.2_Win_x86-64_helppack_zh-TW.msi + InstallerSha256: 391C437D1B186505F2467C4CFA3C95EC1E2F64CE59BF55BD4AC2F1B316C48DDC + ProductCode: '{FDFD2B65-0783-4249-81AE-8474970FD626}' + AppsAndFeaturesEntries: + - ProductCode: '{FDFD2B65-0783-4249-81AE-8474970FD626}' + UpgradeCode: '{6800BE26-76E9-4280-A174-5A952A18E643}' +- InstallerLocale: zh-TW + Architecture: arm64 + InstallerUrl: https://downloadarchive.documentfoundation.org/libreoffice/old/26.2.2.2/win/aarch64/LibreOffice_26.2.2.2_Win_aarch64_helppack_zh-TW.msi + InstallerSha256: B64D9F9864750BE3929A3537F41383B56F855BEF60DCADC6F2766F174B0D4CBA + ProductCode: '{01ED9C35-0C66-4B0A-AFA7-5A4ED4F55FDA}' + AppsAndFeaturesEntries: + - ProductCode: '{01ED9C35-0C66-4B0A-AFA7-5A4ED4F55FDA}' + UpgradeCode: '{6800BE26-76E9-4280-A174-5A952A18E643}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/TheDocumentFoundation/LibreOffice/HelpPack/26.2.2.2/TheDocumentFoundation.LibreOffice.HelpPack.locale.en-US.yaml b/manifests/t/TheDocumentFoundation/LibreOffice/HelpPack/26.2.2.2/TheDocumentFoundation.LibreOffice.HelpPack.locale.en-US.yaml new file mode 100644 index 000000000000..91c9b761092b --- /dev/null +++ b/manifests/t/TheDocumentFoundation/LibreOffice/HelpPack/26.2.2.2/TheDocumentFoundation.LibreOffice.HelpPack.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.HelpPack +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 Help Pack +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 Help Pack helps you to use LibreOffice. +Moniker: libreoffice-helppack +Tags: +- helppack +- libreoffice +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/TheDocumentFoundation/LibreOffice/HelpPack/26.2.2.2/TheDocumentFoundation.LibreOffice.HelpPack.locale.zh-CN.yaml b/manifests/t/TheDocumentFoundation/LibreOffice/HelpPack/26.2.2.2/TheDocumentFoundation.LibreOffice.HelpPack.locale.zh-CN.yaml new file mode 100644 index 000000000000..f250355389c9 --- /dev/null +++ b/manifests/t/TheDocumentFoundation/LibreOffice/HelpPack/26.2.2.2/TheDocumentFoundation.LibreOffice.HelpPack.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.HelpPack +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 Help Pack +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 离线帮助文档帮助您使用 LibreOffice. +Tags: +- libreoffice +- 帮助 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/t/TheDocumentFoundation/LibreOffice/HelpPack/26.2.2.2/TheDocumentFoundation.LibreOffice.HelpPack.yaml b/manifests/t/TheDocumentFoundation/LibreOffice/HelpPack/26.2.2.2/TheDocumentFoundation.LibreOffice.HelpPack.yaml new file mode 100644 index 000000000000..98d5525a91df --- /dev/null +++ b/manifests/t/TheDocumentFoundation/LibreOffice/HelpPack/26.2.2.2/TheDocumentFoundation.LibreOffice.HelpPack.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.HelpPack +PackageVersion: 26.2.2.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 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 diff --git a/manifests/t/Tutanota/Tutanota/340.260326.1/Tutanota.Tutanota.installer.yaml b/manifests/t/Tutanota/Tutanota/340.260326.1/Tutanota.Tutanota.installer.yaml new file mode 100644 index 000000000000..8bcebdee2d0a --- /dev/null +++ b/manifests/t/Tutanota/Tutanota/340.260326.1/Tutanota.Tutanota.installer.yaml @@ -0,0 +1,27 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Tutanota.Tutanota +PackageVersion: 340.260326.1 +InstallerType: nullsoft +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: 450699d2-1c81-5ee5-aec6-08dddb7af9d7 +ReleaseDate: 2026-03-27 +AppsAndFeaturesEntries: +- DisplayName: Tuta Mail 340.260326.1 + ProductCode: 450699d2-1c81-5ee5-aec6-08dddb7af9d7 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/tutao/tutanota/releases/download/tutanota-desktop-release-340.260326.1/tutanota-desktop-win.exe + InstallerSha256: E89F003BD7179362EE8F6C0816F6B78C169962B97FC229181DF2B06AF4EF5AC6 +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/tutao/tutanota/releases/download/tutanota-desktop-release-340.260326.1/tutanota-desktop-win.exe + InstallerSha256: E89F003BD7179362EE8F6C0816F6B78C169962B97FC229181DF2B06AF4EF5AC6 + ElevationRequirement: elevatesSelf +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tutanota/Tutanota/340.260326.1/Tutanota.Tutanota.locale.en-US.yaml b/manifests/t/Tutanota/Tutanota/340.260326.1/Tutanota.Tutanota.locale.en-US.yaml new file mode 100644 index 000000000000..071e284d5f23 --- /dev/null +++ b/manifests/t/Tutanota/Tutanota/340.260326.1/Tutanota.Tutanota.locale.en-US.yaml @@ -0,0 +1,68 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Tutanota.Tutanota +PackageVersion: 340.260326.1 +PackageLocale: en-US +Publisher: Tutao GmbH +PublisherUrl: https://tuta.com/ +PublisherSupportUrl: https://github.com/tutao/tutanota/issues +Author: Tutao GmbH +PackageName: Tutanota Desktop +PackageUrl: https://github.com/tutao/tutanota +License: GPL-3.0 +LicenseUrl: https://github.com/tutao/tutanota/blob/HEAD/LICENSE.txt +Copyright: Copyright © 2022 Tutao GmbH +ShortDescription: Tutanota is an email client with a strong focus on security and privacy that lets you encrypt emails on all your devices. +Description: |- + Tutanota is the worlds most secure email service, easy to use and private by design. + With end-to-end encryption and 2FA, your emails have never been more secure. + The built-in encryption guarantees that your mailbox belongs to you. + Nobody can decrypt or read your data. +Moniker: tutanota +Tags: +- calendar +- email +- email-client +- encryption +- end-to-end-encryption +- privacy +- private +- secure +ReleaseNotes: |- + What's new + - Update libs #10540 + - Change plans with Drive support #10537 + - Fix DriveMoveItemDialog height #10534 + - Fix font icon sizes #10532 + - drive: improved mime type processing and colorful file icons #10529 + - [build] Update undici to 7.24.4 #10517 + - use new icon naming conventions #10513 + - Various Drive-related improvements #10448 + - Improve blob decryption speed in browser #10434 + - Drive: drag-and-drop improvements #10433 + - Drive: deselect items by clicking on empty space #10319 + - More sensible context menu and action bar entries #10315 + - Drive: Show UserError for copy/move item to Trash #10307 + + Bugfixes + - Older repeating events do not show up in calendar widget #10427 + - Overflowing repeating event doensnt show up on the next #10241 + + Milestone + https://github.com/tutao/tutanota/milestone/423?closed=1 + + Asset Checksums (SHA256) + tutanota-desktop-linux.AppImage: + f50b6207857292d52022d26438875e198b611711adf11b0d94015ff444680048 + tutanota-desktop-win.exe: + e89f003bd7179362ee8f6c0816f6b78c169962b97fc229181df2b06af4ef5ac6 + tutanota-desktop-mac.dmg: + a4c2e5f10d98208a8604e5228515223d834f585464c6757bcd4f8d8c639a789c +ReleaseNotesUrl: https://github.com/tutao/tutanota/releases/tag/tutanota-desktop-release-340.260326.1 +PurchaseUrl: https://tutanota.com/pricing +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://tutanota.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tutanota/Tutanota/340.260326.1/Tutanota.Tutanota.yaml b/manifests/t/Tutanota/Tutanota/340.260326.1/Tutanota.Tutanota.yaml new file mode 100644 index 000000000000..19a0b090603b --- /dev/null +++ b/manifests/t/Tutanota/Tutanota/340.260326.1/Tutanota.Tutanota.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: Tutanota.Tutanota +PackageVersion: 340.260326.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/x/XeniaManager/XeniaManager/3.4.2/XeniaManager.XeniaManager.installer.yaml b/manifests/x/XeniaManager/XeniaManager/3.4.2/XeniaManager.XeniaManager.installer.yaml new file mode 100644 index 000000000000..390e371fd6b7 --- /dev/null +++ b/manifests/x/XeniaManager/XeniaManager/3.4.2/XeniaManager.XeniaManager.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: XeniaManager.XeniaManager +PackageVersion: 3.4.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: XeniaManager.exe +InstallModes: +- silent +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2026-03-22 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/xenia-manager/xenia-manager/releases/download/3.4.2/xenia_manager.zip + InstallerSha256: 3A9CD59933E2D935BF37CB1ED20EBC3F2763330683506043DFD7B50D8230E306 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/x/XeniaManager/XeniaManager/3.4.2/XeniaManager.XeniaManager.locale.en-US.yaml b/manifests/x/XeniaManager/XeniaManager/3.4.2/XeniaManager.XeniaManager.locale.en-US.yaml new file mode 100644 index 000000000000..642f78df5e03 --- /dev/null +++ b/manifests/x/XeniaManager/XeniaManager/3.4.2/XeniaManager.XeniaManager.locale.en-US.yaml @@ -0,0 +1,64 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: XeniaManager.XeniaManager +PackageVersion: 3.4.2 +PackageLocale: en-US +Publisher: Xenia Manager +PublisherUrl: https://github.com/xenia-manager +PublisherSupportUrl: https://github.com/xenia-manager/xenia-manager/issues +PackageName: Xenia Manager +PackageUrl: https://github.com/xenia-manager/xenia-manager +License: BSD-3-Clause +LicenseUrl: https://github.com/xenia-manager/xenia-manager/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025, shazzaam7 +CopyrightUrl: https://github.com/xenia-manager/xenia-manager/blob/main/LICENSE +ShortDescription: Xenia Manager is a tool that tries to make using Xenia Emulator easier. +Description: Xenia Manager is a user-friendly tool designed to simplify the use of the Xenia + Emulator. It streamlines game management, patch installation, and configuration, all through an + intuitive interface. +Tags: +- csharp +- emulation +- modding +- xbox +- xbox360 +- xenia +ReleaseNotes: |- + # 🛠️ Xenia Manager v3.4.2 + + ## 📢Announcement + + This will very likely (unless there's a need for a hotfix) be the last version before the UI update. + After being in development for 2 months, UI update is currently feature complete (Missing NVIDIA + Settings since I want to have a proper library to interact with it, which I plan on adding alongside + AMD Settings in a future update most likely Optimized Settings since that repository will go through + a rework to use .TOML files instead of .JSON, which will help with maintenance and navigation via + keyboard/gamepad which needs more time in the oven, currently there's just a proof of concept that + it works, but needs to be integrated properly) and is in bugfixing stage. Once I merge the PR, + expect the next Experimental release to be new v4.0.0 version with new UI. I have made it compatible + with old v3 version (some settings might reset like Automatic Save Backup since they work a little + bit differently, but it shouldn't require any migration or anything special like that). Feedback + will be appreciated. + + ## 📝 Changelog + + ### ♻️ Refactor & UI Improvements + + - Replaced GitHub API fully to eliminate rate limits (9664029) + + Now it uses old way since the GitHub Raw/GitHub Pages being broken in some regions has been fixed by + GitHub. + + ### 🔧 Maintenance & Chores + + - Updating Libraries (bb69067) + + Updated internal dependencies to newer stable versions to mitigate vulnerabilities. + + ## 🎉 Thank You + + Huge thanks to all contributors. 💛 +ReleaseNotesUrl: https://github.com/xenia-manager/xenia-manager/releases/tag/3.4.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/x/XeniaManager/XeniaManager/3.4.2/XeniaManager.XeniaManager.yaml b/manifests/x/XeniaManager/XeniaManager/3.4.2/XeniaManager.XeniaManager.yaml new file mode 100644 index 000000000000..82c812f70d60 --- /dev/null +++ b/manifests/x/XeniaManager/XeniaManager/3.4.2/XeniaManager.XeniaManager.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: XeniaManager.XeniaManager +PackageVersion: 3.4.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/x/xpipe-io/xpipe/22.0/xpipe-io.xpipe.installer.yaml b/manifests/x/xpipe-io/xpipe/22.0/xpipe-io.xpipe.installer.yaml new file mode 100644 index 000000000000..abb999544865 --- /dev/null +++ b/manifests/x/xpipe-io/xpipe/22.0/xpipe-io.xpipe.installer.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: xpipe-io.xpipe +PackageVersion: "22.0" +InstallerLocale: en-US +InstallerType: wix +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/xpipe-io/xpipe/releases/download/22.0/xpipe-installer-windows-x86_64.msi + InstallerSha256: 3C8E4A17C73C62CF8DBF064DF51F509E36562B9B25129BEDEC14BFC4E31CB1DC +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/xpipe-io/xpipe/releases/download/22.0/xpipe-installer-windows-x86_64.msi + InstallerSha256: 3C8E4A17C73C62CF8DBF064DF51F509E36562B9B25129BEDEC14BFC4E31CB1DC + InstallerSwitches: + Custom: ALLUSERS=1 + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/xpipe-io/xpipe/releases/download/22.0/xpipe-installer-windows-arm64.msi + InstallerSha256: 19F7B2CD1B8995D88997EB46AF9EAA183819330F8AF0AB0D13D4B3E0C2ED9ECC +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/xpipe-io/xpipe/releases/download/22.0/xpipe-installer-windows-arm64.msi + InstallerSha256: 19F7B2CD1B8995D88997EB46AF9EAA183819330F8AF0AB0D13D4B3E0C2ED9ECC + InstallerSwitches: + Custom: ALLUSERS=1 + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2026-03-26 diff --git a/manifests/x/xpipe-io/xpipe/22.0/xpipe-io.xpipe.locale.en-US.yaml b/manifests/x/xpipe-io/xpipe/22.0/xpipe-io.xpipe.locale.en-US.yaml new file mode 100644 index 000000000000..ab6c514f02af --- /dev/null +++ b/manifests/x/xpipe-io/xpipe/22.0/xpipe-io.xpipe.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.10.0.schema.json + +PackageIdentifier: xpipe-io.xpipe +PackageVersion: "22.0" +PackageLocale: en-US +Publisher: XPipe UG (haftungsbeschränkt) +PublisherUrl: https://xpipe.io +PublisherSupportUrl: https://github.com/xpipe-io/xpipe/issues +PrivacyUrl: https://docs.xpipe.io/legal/privacy-policy +Author: crschnick +PackageName: XPipe +PackageUrl: https://github.com/xpipe-io/xpipe +License: Apache License 2.0, Proprietary +LicenseUrl: https://docs.xpipe.io/legal/license +ShortDescription: A brand-new shell connection hub and remote file manager +Description: XPipe is a new type of shell connection hub and remote file manager that allows you to access your entire server infrastructure from your local machine. It works on top of your installed command-line programs and does not require any setup on your remote systems. +Moniker: xpipe +Tags: +- ssh +- docker +- kubernetes +- lxd +- wsl +- remote +ReleaseNotesUrl: https://github.com/xpipe-io/xpipe/releases/tag/22.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/x/xpipe-io/xpipe/22.0/xpipe-io.xpipe.yaml b/manifests/x/xpipe-io/xpipe/22.0/xpipe-io.xpipe.yaml new file mode 100644 index 000000000000..3ef3d96cfbb8 --- /dev/null +++ b/manifests/x/xpipe-io/xpipe/22.0/xpipe-io.xpipe.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: xpipe-io.xpipe +PackageVersion: "22.0" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 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 diff --git a/manifests/z/ZhipuAI/ZCode/0.25.0/ZhipuAI.ZCode.installer.yaml b/manifests/z/ZhipuAI/ZCode/0.25.0/ZhipuAI.ZCode.installer.yaml new file mode 100644 index 000000000000..b78e9cc9e8b1 --- /dev/null +++ b/manifests/z/ZhipuAI/ZCode/0.25.0/ZhipuAI.ZCode.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: ZhipuAI.ZCode +PackageVersion: 0.25.0 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +Protocols: +- zcode +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: Z Code +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.zcode-ai.com/zcode/releases/0.25.0/z-code_0.25.0_x64-setup.exe + InstallerSha256: A0A7DCD063753DE0C4D30E4DFDC686ED753C2131E5B4D81FDA87CE6E2093A96A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/z/ZhipuAI/ZCode/0.25.0/ZhipuAI.ZCode.locale.en-US.yaml b/manifests/z/ZhipuAI/ZCode/0.25.0/ZhipuAI.ZCode.locale.en-US.yaml new file mode 100644 index 000000000000..4c667ca73175 --- /dev/null +++ b/manifests/z/ZhipuAI/ZCode/0.25.0/ZhipuAI.ZCode.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: ZhipuAI.ZCode +PackageVersion: 0.25.0 +PackageLocale: en-US +Publisher: Z.AI +PublisherUrl: https://z.ai/ +Author: Beijing Zhipu Huazhang Technology Co., Ltd. +PackageName: Z Code +PackageUrl: https://zcode-ai.com/ +License: Proprietary +Copyright: © 2026 Z Code. All rights reserved. +ShortDescription: Z Code combines the best AI agents with your existing tools so you can plan, code, review, and deploy without friction. +Description: Z Code is a lightweight AI code editor designed to address the high operational barrier of command-line AI programming tools (such as Claude Code, Codex, Gemini, etc.). By providing a unified and user-friendly visual desktop interface, it seamlessly integrates the capabilities of these Agents, allowing smooth switching and experience across multiple Agent programming tools with just one API key. Additionally, it offers a series of features including secure file version management, efficient code review, task agents, MCP protocol management, and more, delivering you an all-in-one AI-assisted development experience. +Tags: +- agent +- agentic +- ai +- chatbot +- claude-code +- code +- codex +- coding +- gemini-cli +- large-language-model +- llm +- programming +Documentations: +- DocumentLabel: Document + DocumentUrl: https://zhipu-ai.feishu.cn/wiki/VpgrwtBcyiU59zk9fMEcm2sFnee +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/z/ZhipuAI/ZCode/0.25.0/ZhipuAI.ZCode.locale.zh-CN.yaml b/manifests/z/ZhipuAI/ZCode/0.25.0/ZhipuAI.ZCode.locale.zh-CN.yaml new file mode 100644 index 000000000000..93a9d0582312 --- /dev/null +++ b/manifests/z/ZhipuAI/ZCode/0.25.0/ZhipuAI.ZCode.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: ZhipuAI.ZCode +PackageVersion: 0.25.0 +PackageLocale: zh-CN +Author: 北京智谱华章科技有限公司 +License: 专有软件 +ShortDescription: Z Code 将最佳的 AI 代理与您现有的工具相结合,让您能够顺畅地进行规划、编码、审查和部署。 +Description: Z Code 是一款轻量级的 AI 代码编辑器,旨在解决命令行 AI 编程工具(如 Claude Code、Codex、Gemini 等)操作门槛高的问题。它通过提供一个统一、友好的可视化桌面,将这些 Agent 的能力无缝集成,仅使用一个 api key 就能丝滑切换体验多个 Agent 编程工具。此外,还提供安全的文件版本管理、高效代码审查、任务 Agent、MCP 协议管理等一系列特性,为你打造一站式的 AI 辅助开发体验。 +Tags: +- claude-code +- codex +- gemini-cli +- 人工智能 +- 代码 +- 大语言模型 +- 智能体 +- 编程 +- 聊天机器人 +- 自主智能 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://zhipu-ai.feishu.cn/wiki/VpgrwtBcyiU59zk9fMEcm2sFnee +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/z/ZhipuAI/ZCode/0.25.0/ZhipuAI.ZCode.yaml b/manifests/z/ZhipuAI/ZCode/0.25.0/ZhipuAI.ZCode.yaml new file mode 100644 index 000000000000..8cea6157196b --- /dev/null +++ b/manifests/z/ZhipuAI/ZCode/0.25.0/ZhipuAI.ZCode.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: ZhipuAI.ZCode +PackageVersion: 0.25.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/z/Zoho/Mail/1.9.1/Zoho.Mail.installer.yaml b/manifests/z/Zoho/Mail/1.9.1/Zoho.Mail.installer.yaml new file mode 100644 index 000000000000..e9e2bc61753d --- /dev/null +++ b/manifests/z/Zoho/Mail/1.9.1/Zoho.Mail.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: Zoho.Mail +PackageVersion: 1.9.1 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- mailto +ProductCode: 435bda16-99fd-51d0-938d-c156968a2aa4 +ReleaseDate: 2026-03-26 +Installers: +- Architecture: x86 + InstallerUrl: https://downloads.zohocdn.com/zmail-desktop/windows/zoho-mail-desktop-lite-installer-x86-v1.9.1.exe + InstallerSha256: 0D82392F986D441A6C1FE8010914C55B754933A80622063EC5A354E32912D5B0 +- Architecture: x64 + InstallerUrl: https://downloads.zohocdn.com/zmail-desktop/windows/zoho-mail-desktop-lite-installer-x64-v1.9.1.exe + InstallerSha256: 582D9801C45656E6345A4705C05B152E717B269CD793D2361475F9C1893BA7C9 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/z/Zoho/Mail/1.9.1/Zoho.Mail.locale.en-US.yaml b/manifests/z/Zoho/Mail/1.9.1/Zoho.Mail.locale.en-US.yaml new file mode 100644 index 000000000000..80e8557686a9 --- /dev/null +++ b/manifests/z/Zoho/Mail/1.9.1/Zoho.Mail.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Zoho.Mail +PackageVersion: 1.9.1 +PackageLocale: en-US +Publisher: Zoho Mail +PublisherUrl: https://www.zoho.com/mail/ +PublisherSupportUrl: https://www.zoho.com/mail/help/ +PrivacyUrl: https://www.zoho.com/privacy.html +Author: Zoho Corporation Private Limited +PackageName: Zoho Mail - Desktop +PackageUrl: https://www.zoho.com/mail/desktop/ +License: Proprietary +LicenseUrl: https://www.zoho.com/sites/zweb/images/mail/eula.pdf +Copyright: © 2026, Zoho Corporation Pvt. Ltd. All Rights Reserved. +CopyrightUrl: https://www.zoho.com/sites/zweb/images/mail/eula.pdf +ShortDescription: Host your business email on a secure, encrypted, privacy-guaranteed, and ad-free email service, and add a professional touch to every email that goes out. +Tags: +- email +- mail +ReleaseNotesUrl: https://www.zoho.com/mail/whats-new.html +PurchaseUrl: https://www.zoho.com/mail/zohomail-pricing.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/z/Zoho/Mail/1.9.1/Zoho.Mail.locale.zh-CN.yaml b/manifests/z/Zoho/Mail/1.9.1/Zoho.Mail.locale.zh-CN.yaml new file mode 100644 index 000000000000..e4f096b514b9 --- /dev/null +++ b/manifests/z/Zoho/Mail/1.9.1/Zoho.Mail.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: Zoho.Mail +PackageVersion: 1.9.1 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 将您的企业邮箱托管在安全、加密、隐私有保障且无广告的邮件服务上,为每一封发出的邮件增添专业气质。 +Tags: +- 电子邮件 +- 邮件 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/z/Zoho/Mail/1.9.1/Zoho.Mail.yaml b/manifests/z/Zoho/Mail/1.9.1/Zoho.Mail.yaml new file mode 100644 index 000000000000..bd80ede91f5d --- /dev/null +++ b/manifests/z/Zoho/Mail/1.9.1/Zoho.Mail.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: Zoho.Mail +PackageVersion: 1.9.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0