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/Axure/AxureRP/9/9.0.0.3754/Axure.AxureRP.9.installer.yaml b/manifests/a/Axure/AxureRP/9/9.0.0.3754/Axure.AxureRP.9.installer.yaml new file mode 100644 index 000000000000..cb73a9a8eaf0 --- /dev/null +++ b/manifests/a/Axure/AxureRP/9/9.0.0.3754/Axure.AxureRP.9.installer.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Axure.AxureRP.9 +PackageVersion: 9.0.0.3754 +InstallerType: burn +Scope: machine +UpgradeBehavior: install +ReleaseDate: 2025-07-25 +AppsAndFeaturesEntries: +- ProductCode: '{f2447192-e0e7-4ee7-ab62-e63318f7e4b2}' + UpgradeCode: '{EABC6083-8DE4-46B4-89A7-EE2D3A4552B2}' + InstallerType: burn +Installers: +- Architecture: x86 + InstallerUrl: https://axure.cachefly.net/versions/9-0/AxureRP-Setup-3754.exe + InstallerSha256: D41BCB6F8A23C85E657E1EEC3218241D890DFA15A63BE3B7858C93D0B7515FCD +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/Axure/AxureRP/9/9.0.0.3754/Axure.AxureRP.9.locale.en-US.yaml b/manifests/a/Axure/AxureRP/9/9.0.0.3754/Axure.AxureRP.9.locale.en-US.yaml new file mode 100644 index 000000000000..56285647f010 --- /dev/null +++ b/manifests/a/Axure/AxureRP/9/9.0.0.3754/Axure.AxureRP.9.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Axure.AxureRP.9 +PackageVersion: 9.0.0.3754 +PackageLocale: en-US +Publisher: Axure Software Solutions, Inc. +PublisherUrl: https://www.axure.com/ +PublisherSupportUrl: https://www.axure.com/support +Author: Axure Software Solutions, Inc. +PackageName: Axure RP 9 +PackageUrl: https://www.axure.com/release-history/rp9 +License: Proprietary +LicenseUrl: https://www.axure.com/license +Copyright: Copyright (c) Axure Software Solutions, Inc.. All rights reserved. +CopyrightUrl: https://www.axure.com/patents +ShortDescription: Axure RP is the only UX tool that gives UX professionals the power to build realistic, functional prototypes. +Tags: +- prototypes +ReleaseNotesUrl: https://www.axure.com/changelog +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Axure/AxureRP/9/9.0.0.3754/Axure.AxureRP.9.yaml b/manifests/a/Axure/AxureRP/9/9.0.0.3754/Axure.AxureRP.9.yaml new file mode 100644 index 000000000000..7129b8e0ba22 --- /dev/null +++ b/manifests/a/Axure/AxureRP/9/9.0.0.3754/Axure.AxureRP.9.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Axure.AxureRP.9 +PackageVersion: 9.0.0.3754 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/alejoborbo/jj-spice/0.2.2/alejoborbo.jj-spice.installer.yaml b/manifests/a/alejoborbo/jj-spice/0.2.2/alejoborbo.jj-spice.installer.yaml new file mode 100644 index 000000000000..0524e2e38875 --- /dev/null +++ b/manifests/a/alejoborbo/jj-spice/0.2.2/alejoborbo.jj-spice.installer.yaml @@ -0,0 +1,18 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: alejoborbo.jj-spice +PackageVersion: 0.2.2 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-03-27" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: jj-spice.exe + PortableCommandAlias: jj-spice + InstallerUrl: https://github.com/alejoborbo/jj-spice/releases/download/v0.2.2/jj-spice_0.2.2_windows_amd64.zip + InstallerSha256: 0d2bbdc03aa84081636cfb4e7784527d38ae5e1ec3697b71a51cce0bdb3ca6b0 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/alejoborbo/jj-spice/0.2.2/alejoborbo.jj-spice.locale.en-US.yaml b/manifests/a/alejoborbo/jj-spice/0.2.2/alejoborbo.jj-spice.locale.en-US.yaml new file mode 100644 index 000000000000..aedbfc582252 --- /dev/null +++ b/manifests/a/alejoborbo/jj-spice/0.2.2/alejoborbo.jj-spice.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: alejoborbo.jj-spice +PackageVersion: 0.2.2 +PackageLocale: en-US +Publisher: alejoborbo +PublisherUrl: https://github.com/alejoborbo/jj-spice +PackageName: jj-spice +License: Apache-2.0 +ShortDescription: Stacked change requests for Jujutsu VCS +Moniker: jj-spice +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/alejoborbo/jj-spice/0.2.2/alejoborbo.jj-spice.yaml b/manifests/a/alejoborbo/jj-spice/0.2.2/alejoborbo.jj-spice.yaml new file mode 100644 index 000000000000..83205aa1684b --- /dev/null +++ b/manifests/a/alejoborbo/jj-spice/0.2.2/alejoborbo.jj-spice.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: alejoborbo.jj-spice +PackageVersion: 0.2.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/argoproj/argocd/3.3.6/argoproj.argocd.installer.yaml b/manifests/a/argoproj/argocd/3.3.6/argoproj.argocd.installer.yaml new file mode 100644 index 000000000000..94f7d915922e --- /dev/null +++ b/manifests/a/argoproj/argocd/3.3.6/argoproj.argocd.installer.yaml @@ -0,0 +1,18 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: argoproj.argocd +PackageVersion: 3.3.6 +InstallerLocale: en-US +InstallerType: portable +InstallModes: +- silent +Commands: +- argocd +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/argoproj/argo-cd/releases/download/v3.3.6/argocd-windows-amd64.exe + InstallerSha256: EECBE4C1F77E19C58F948ACE8297F4CFAA7418E2A3A722658109B5D501FFE091 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/argoproj/argocd/3.3.6/argoproj.argocd.locale.en-US.yaml b/manifests/a/argoproj/argocd/3.3.6/argoproj.argocd.locale.en-US.yaml new file mode 100644 index 000000000000..39c560380461 --- /dev/null +++ b/manifests/a/argoproj/argocd/3.3.6/argoproj.argocd.locale.en-US.yaml @@ -0,0 +1,42 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: argoproj.argocd +PackageVersion: 3.3.6 +PackageLocale: en-US +Publisher: Argo Project +PublisherUrl: https://argoproj.github.io/ +PublisherSupportUrl: https://github.com/argoproj/argo-cd/issues +Author: Argo Project +PackageName: ArgoCD +PackageUrl: https://github.com/argoproj/argo-cd +License: Apache-2.0 +LicenseUrl: https://github.com/argoproj/argo-cd/blob/HEAD/LICENSE +ShortDescription: A command line tool for communicating with ArgoCD +Moniker: argocd +Tags: +- argocd +- k8s +- kubernetes +ReleaseNotes: |- + Quick Start + Non-HA: + kubectl create namespace argocd + kubectl apply -n argocd --server-side --force-conflicts -f https://raw.githubusercontent.com/argoproj/argo-cd/v3.3.6/manifests/install.yaml + HA: + kubectl create namespace argocd + kubectl apply -n argocd --server-side --force-conflicts -f https://raw.githubusercontent.com/argoproj/argo-cd/v3.3.6/manifests/ha/install.yaml + Release Signatures and Provenance + All Argo CD container images are signed by cosign. A Provenance is generated for container images and CLI binaries which meet the SLSA Level 3 specifications. See the documentation on how to verify. + Release Notes Blog Post + For a detailed breakdown of the key changes and improvements in this release, check out the official blog post + Upgrading + If upgrading from a different minor version, be sure to read the upgrading documentation. + Changelog + Bug fixes + - 4a823fe: fix: controller incorrectly detecting diff during app normalization (cherry-pick #27002 for 3.3) (#27013) (@argo-cd-cherry-pick-bot[bot]) + - c5d7748: fix: wrong installation id returned from cache (cherry-pick #26969 for 3.3) (#27027) (@argo-cd-cherry-pick-bot[bot]) + Full Changelog: v3.3.5...v3.3.6 +ReleaseNotesUrl: https://github.com/argoproj/argo-cd/releases/tag/v3.3.6 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/WHONET/AMRIE/v26.3.26/WHONET.AMRIE.yaml b/manifests/a/argoproj/argocd/3.3.6/argoproj.argocd.yaml similarity index 74% rename from manifests/w/WHONET/AMRIE/v26.3.26/WHONET.AMRIE.yaml rename to manifests/a/argoproj/argocd/3.3.6/argoproj.argocd.yaml index 8ff16af0310f..66897f88fd91 100644 --- a/manifests/w/WHONET/AMRIE/v26.3.26/WHONET.AMRIE.yaml +++ b/manifests/a/argoproj/argocd/3.3.6/argoproj.argocd.yaml @@ -1,8 +1,8 @@ # Created with komac v2.15.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: WHONET.AMRIE -PackageVersion: v26.3.26 +PackageIdentifier: argoproj.argocd +PackageVersion: 3.3.6 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/b/BaldBeardedBuilder/WeatherforCommandPalette/1.0.1.0/BaldBeardedBuilder.WeatherforCommandPalette.installer.yaml b/manifests/b/BaldBeardedBuilder/WeatherforCommandPalette/1.0.1.0/BaldBeardedBuilder.WeatherforCommandPalette.installer.yaml new file mode 100644 index 000000000000..8f845e363e99 --- /dev/null +++ b/manifests/b/BaldBeardedBuilder/WeatherforCommandPalette/1.0.1.0/BaldBeardedBuilder.WeatherforCommandPalette.installer.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: BaldBeardedBuilder.WeatherforCommandPalette +PackageVersion: 1.0.1.0 +Platform: +- Windows.Universal +- Windows.Desktop +MinimumOSVersion: 10.0.19041.0 +InstallerType: msix +PackageFamilyName: BaldBeardedBuilder.WeatherforCommandPalette_8gmfv84wfe0w6 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/michaeljolley/WeatherExtension/releases/download/v1.0.1/WeatherExtension_1.0.1.0_x64.msix + InstallerSha256: CD9ACA4DF852D33C5B3372BF971A983C8161DE167807A4656CA0A60C1F9410A2 + SignatureSha256: D0B0F54464D70AECECEF3441015C423E77E59F3BA71F7FCE431833568200AC55 +- Architecture: arm64 + InstallerUrl: https://github.com/michaeljolley/WeatherExtension/releases/download/v1.0.1/WeatherExtension_1.0.1.0_arm64.msix + InstallerSha256: 79083899BB81A84DF2E52DEB6B4FA78A4E90985EC7E3E3FBB70986DF791EE6EA + SignatureSha256: 975C228097C8E0E8F921DFC8D000CAD4897A57305393FB584248A9761EAAF930 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-20 diff --git a/manifests/b/BaldBeardedBuilder/WeatherforCommandPalette/1.0.1.0/BaldBeardedBuilder.WeatherforCommandPalette.locale.en-US.yaml b/manifests/b/BaldBeardedBuilder/WeatherforCommandPalette/1.0.1.0/BaldBeardedBuilder.WeatherforCommandPalette.locale.en-US.yaml new file mode 100644 index 000000000000..0ccaf96de4df --- /dev/null +++ b/manifests/b/BaldBeardedBuilder/WeatherforCommandPalette/1.0.1.0/BaldBeardedBuilder.WeatherforCommandPalette.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: BaldBeardedBuilder.WeatherforCommandPalette +PackageVersion: 1.0.1.0 +PackageLocale: en-US +Publisher: Bald Bearded Builder +PublisherUrl: https://github.com/michaeljolley +PublisherSupportUrl: https://github.com/michaeljolley/WeatherExtension/issues +PackageName: Weather for Command Palette +PackageUrl: https://github.com/michaeljolley/WeatherExtension +License: MIT +ShortDescription: Weather extension for Microsoft Command Palette +ReleaseNotesUrl: https://github.com/michaeljolley/WeatherExtension/releases/tag/v1.0.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/BaldBeardedBuilder/WeatherforCommandPalette/1.0.1.0/BaldBeardedBuilder.WeatherforCommandPalette.yaml b/manifests/b/BaldBeardedBuilder/WeatherforCommandPalette/1.0.1.0/BaldBeardedBuilder.WeatherforCommandPalette.yaml new file mode 100644 index 000000000000..4a7525098691 --- /dev/null +++ b/manifests/b/BaldBeardedBuilder/WeatherforCommandPalette/1.0.1.0/BaldBeardedBuilder.WeatherforCommandPalette.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: BaldBeardedBuilder.WeatherforCommandPalette +PackageVersion: 1.0.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.installer.yaml b/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.installer.yaml similarity index 82% rename from manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.installer.yaml rename to manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.installer.yaml index 4c98a07eecf5..33ec191b1820 100644 --- a/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.installer.yaml +++ b/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: BitSum.ProcessLasso.Beta -PackageVersion: 18.0.0.45 +PackageVersion: 18.0.0.49 InstallerType: nullsoft Scope: machine UpgradeBehavior: install @@ -12,6 +12,6 @@ InstallationMetadata: Installers: - Architecture: x64 InstallerUrl: https://dl.bitsum.com/files/beta/processlassosetup64.exe - InstallerSha256: F131AB95C89F09CB4C4A935E481D0B935523542FB3DAEC9159D0557CB05790F3 + InstallerSha256: D52305CA087FA636F5A3C38A851ABCF5F7D803DCAE9C8D9915694B02C39337E9 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.locale.en-US.yaml b/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.locale.en-US.yaml similarity index 99% rename from manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.locale.en-US.yaml rename to manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.locale.en-US.yaml index 9d5d2b59a933..a975a80de23e 100644 --- a/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.locale.en-US.yaml +++ b/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: BitSum.ProcessLasso.Beta -PackageVersion: 18.0.0.45 +PackageVersion: 18.0.0.49 PackageLocale: en-US Publisher: Bitsum PublisherUrl: https://bitsum.com/ diff --git a/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml b/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml similarity index 98% rename from manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml rename to manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml index 158d6527b411..b1826d2dfb5d 100644 --- a/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml +++ b/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: BitSum.ProcessLasso.Beta -PackageVersion: 18.0.0.45 +PackageVersion: 18.0.0.49 PackageLocale: zh-CN License: 专有软件 ShortDescription: 实时 CPU 优化和自动化 diff --git a/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.yaml b/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.yaml similarity index 90% rename from manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.yaml rename to manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.yaml index 9e1141b4c57f..5f9c9e693917 100644 --- a/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.45/BitSum.ProcessLasso.Beta.yaml +++ b/manifests/b/BitSum/ProcessLasso/Beta/18.0.0.49/BitSum.ProcessLasso.Beta.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: BitSum.ProcessLasso.Beta -PackageVersion: 18.0.0.45 +PackageVersion: 18.0.0.49 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.installer.yaml b/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.installer.yaml new file mode 100644 index 000000000000..aeef8ac272ca --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.installer.yaml @@ -0,0 +1,86 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Brave.Brave.Nightly +PackageVersion: 146.1.90.72 +InstallerType: exe +ExpectedReturnCodes: +- InstallerReturnCode: -2147219440 + ReturnResponse: cancelledByUser +- InstallerReturnCode: -2147219416 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: -2147218431 + ReturnResponse: invalidParameter +- InstallerReturnCode: -2147024809 + ReturnResponse: invalidParameter +UpgradeBehavior: install +Protocols: +- ftp +- http +- https +- mailto +- tel +FileExtensions: +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: BraveSoftware Brave-Browser-Nightly +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.90.72/BraveBrowserStandaloneSilentNightlySetup32.exe + InstallerSha256: 61506FCCCDF4F65A0744E45169A15E0A116611B59363D46D7FD3D85473F9AE9D + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.90.72/BraveBrowserStandaloneNightlySetup32.exe + InstallerSha256: 10BAB9E2AA7A5A1D3B0F4C2722250CB6F657B4594C40FFF3E40ACB465932A6EC + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + ElevationRequirement: elevationRequired +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.90.72/BraveBrowserStandaloneSilentNightlySetup.exe + InstallerSha256: 5D3CC1073CBB7C1BCC913A1C4805CB5BA62D4B5FC12A42A695EAF8D5EF007A80 + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.90.72/BraveBrowserStandaloneNightlySetup.exe + InstallerSha256: EE10A108FC9737EF8CFE545A74BEDCBD8CE013DD42F391E09E243703FA9F3FE2 + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.90.72/BraveBrowserStandaloneSilentNightlySetupArm64.exe + InstallerSha256: E1B36B4341425DB11F12C39C13215BB0D4952D75FD2D7A5C2F49BCEEF0A609B4 + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.90.72/BraveBrowserStandaloneNightlySetupArm64.exe + InstallerSha256: DDFDE2D887A3448E1717179BB2646C2348BF033CC54E4B3F8F16146949F773CE + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.locale.en-US.yaml b/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.locale.en-US.yaml new file mode 100644 index 000000000000..6fe48c392471 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Brave.Brave.Nightly +PackageVersion: 146.1.90.72 +PackageLocale: en-US +Publisher: Brave Software Inc +PublisherUrl: https://brave.com +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave Nightly +PackageUrl: https://brave.com/download-nightly +License: MPL-2.0 +LicenseUrl: https://github.com/brave/brave-browser/blob/master/LICENSE +Copyright: Copyright © 2026 The Brave Authors. All rights reserved. +CopyrightUrl: https://brave.com/terms-of-use +ShortDescription: Brave Nightly is our testing and development version of Brave. Releases are updated every night. +Description: |- + Nightly is our testing and development version of Brave. + The releases are updated every night and may contain bugs that can result in data loss. + Nightly automatically sends us crash reports when things go wrong. +Tags: +- browser +- chromium +- internet +- privacy +- web +- webpage +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://brave.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.locale.zh-CN.yaml new file mode 100644 index 000000000000..71abe621ee4d --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Brave.Brave.Nightly +PackageVersion: 146.1.90.72 +PackageLocale: zh-CN +Publisher: Brave Software Inc +PublisherUrl: https://brave.com/zh +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave Nightly +PackageUrl: https://brave.com/download-nightly +License: MPL-2.0 +LicenseUrl: https://github.com/brave/brave-browser/blob/master/LICENSE +Copyright: 版权所有2026 Brave Software Inc。保留所有权利。 +CopyrightUrl: https://brave.com/terms-of-use +ShortDescription: Brave Nightly 是 Brave 的测试和开发版本,每天晚上更新。 +Description: Nightly 是 Brave 的测试和开发版本,每天晚上更新,可能包含导致数据丢失的错误。当出现问题时,Nightly 会自动向我们发送崩溃报告。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +- 隐私 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://brave.com/zh/faq +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.yaml b/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.yaml new file mode 100644 index 000000000000..13dd3c70d522 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/146.1.90.72/Brave.Brave.Nightly.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Brave.Brave.Nightly +PackageVersion: 146.1.90.72 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cfx/re/FiveM/2.0.0.25776/Cfx.re.FiveM.installer.yaml b/manifests/c/Cfx/re/FiveM/2.0.0.25776/Cfx.re.FiveM.installer.yaml new file mode 100644 index 000000000000..fe26c80615c0 --- /dev/null +++ b/manifests/c/Cfx/re/FiveM/2.0.0.25776/Cfx.re.FiveM.installer.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Cfx.re.FiveM +PackageVersion: 2.0.0.25776 +InstallerType: exe +Installers: +- Architecture: x64 + InstallerUrl: https://runtime.fivem.net/client/FiveM.exe + InstallerSha256: 3387931FC00AE9BD5FFF9FC8EFE7537960CEF92AAC32133066172F3952FE1ED9 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cfx/re/FiveM/2.0.0.25776/Cfx.re.FiveM.locale.en-US.yaml b/manifests/c/Cfx/re/FiveM/2.0.0.25776/Cfx.re.FiveM.locale.en-US.yaml new file mode 100644 index 000000000000..68bb00c67754 --- /dev/null +++ b/manifests/c/Cfx/re/FiveM/2.0.0.25776/Cfx.re.FiveM.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Cfx.re.FiveM +PackageVersion: 2.0.0.25776 +PackageLocale: en-US +Publisher: Cfx.re +PackageName: FiveM +License: GPL-3.0 +Copyright: (C) 2015-2022 Cfx.re +ShortDescription: FiveM +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cfx/re/FiveM/2.0.0.25776/Cfx.re.FiveM.yaml b/manifests/c/Cfx/re/FiveM/2.0.0.25776/Cfx.re.FiveM.yaml new file mode 100644 index 000000000000..52374343b7fa --- /dev/null +++ b/manifests/c/Cfx/re/FiveM/2.0.0.25776/Cfx.re.FiveM.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Cfx.re.FiveM +PackageVersion: 2.0.0.25776 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cfx/re/RedM/2.0.0.6775/Cfx.re.RedM.installer.yaml b/manifests/c/Cfx/re/RedM/2.0.0.6775/Cfx.re.RedM.installer.yaml new file mode 100644 index 000000000000..89113e1ce713 --- /dev/null +++ b/manifests/c/Cfx/re/RedM/2.0.0.6775/Cfx.re.RedM.installer.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Cfx.re.RedM +PackageVersion: 2.0.0.6775 +InstallerType: exe +Installers: +- Architecture: x64 + InstallerUrl: https://content.cfx.re/mirrors/client_download/RedM.exe + InstallerSha256: 856D3E10185023F759D70396A2ECCA30F8025C85D0FCCFEFA5564DADBDC3FFC4 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cfx/re/RedM/2.0.0.6775/Cfx.re.RedM.locale.en-US.yaml b/manifests/c/Cfx/re/RedM/2.0.0.6775/Cfx.re.RedM.locale.en-US.yaml new file mode 100644 index 000000000000..00cea54d5985 --- /dev/null +++ b/manifests/c/Cfx/re/RedM/2.0.0.6775/Cfx.re.RedM.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Cfx.re.RedM +PackageVersion: 2.0.0.6775 +PackageLocale: en-US +Publisher: Cfx.re +PackageName: RedM +License: GPL-3.0 +Copyright: (C) 2015-2022 Cfx.re +ShortDescription: RedM +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/Cfx/re/RedM/2.0.0.6775/Cfx.re.RedM.yaml b/manifests/c/Cfx/re/RedM/2.0.0.6775/Cfx.re.RedM.yaml new file mode 100644 index 000000000000..7d4cb0cc0198 --- /dev/null +++ b/manifests/c/Cfx/re/RedM/2.0.0.6775/Cfx.re.RedM.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Cfx.re.RedM +PackageVersion: 2.0.0.6775 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.installer.yaml b/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.installer.yaml new file mode 100644 index 000000000000..c9bdf15c1abf --- /dev/null +++ b/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ClawWork.ClawWork +PackageVersion: 0.0.13 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +ProductCode: 5395e3d2-8866-5284-9f7b-073e8b6bc4b5 +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/clawwork-ai/ClawWork/releases/download/v0.0.13/ClawWork-0.0.13-win-x64.exe + InstallerSha256: 2620AC452D8FFD1FFBD78B4754AAB31EB6D3B6BC81F7BA8CCD3BA64D62C8EFEA + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/clawwork-ai/ClawWork/releases/download/v0.0.13/ClawWork-0.0.13-win-x64.exe + InstallerSha256: 2620AC452D8FFD1FFBD78B4754AAB31EB6D3B6BC81F7BA8CCD3BA64D62C8EFEA + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.locale.en-US.yaml b/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.locale.en-US.yaml new file mode 100644 index 000000000000..c829c8144a2b --- /dev/null +++ b/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.locale.en-US.yaml @@ -0,0 +1,78 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ClawWork.ClawWork +PackageVersion: 0.0.13 +PackageLocale: en-US +Publisher: clawwork-ai +PublisherUrl: https://github.com/clawwork-ai +PublisherSupportUrl: https://github.com/clawwork-ai/ClawWork/issues +PackageName: ClawWork +PackageUrl: https://clawwork-ai.github.io/ClawWork/ +License: Apache-2.0 +LicenseUrl: https://github.com/clawwork-ai/ClawWork/blob/HEAD/LICENSE +Copyright: Copyright 2026 ClawWork Contributors +ShortDescription: Connect ClawWork to your own OpenClaw and unlock 10x multi-session productivity. +Description: |- + A desktop workspace for OpenClaw. + Parallel tasks, visible tool activity, and files you can actually find later. + + Why ClawWork + Using OpenClaw through Telegram, Slack, or a plain chat UI works fine for small stuff. It gets annoying once the work stops being simple. + Status disappears into the message stream. Running several tasks means juggling tabs and trying to remember which session was using which model. Files show up in replies, then vanish into history. + ClawWork fixes that by treating each task as its own workspace. You get a desktop UI where tasks stay separate, tool activity is visible while it happens, and output files stay attached to the work that produced them. + + Why it feels better + - Each task runs in its own OpenClaw session, so you can switch between parallel jobs without mixing context. + - Streaming replies, tool call cards, progress, and artifacts live in one place instead of being buried in chat history. + - Gateway, agent, model, and thinking settings are scoped per task. + - Files produced by the agent are saved to a local workspace and stay easy to browse later. + - Risky exec actions can stop for approval before they run. +Tags: +- agent +- agentic +- ai +- chatbot +- claw +- large-language-model +- llm +- openclaw +ReleaseNotes: |- + 🔥 Highlights + - 📱 ClawWork on your phone — Brand-new PWA mobile companion with a native chat experience, swipe gestures, and seamless QR pairing that keeps your desktop connected. + - 🐧 Linux support — First-class Linux builds ship starting this release — AppImage and deb for x64. + - ✨ Visual refresh — Glass panels, glow accents, and ambient gradients give the entire app a polished new look while respecting reduced-motion preferences. + - 🔒 Security hardening — Four fixes close a private key leak, an SSRF bypass, a TOCTOU race, and a path traversal vector in the artifact handler. + ✨ What's New + - 📱 PWA mobile companion — Brand-new mobile web app with native iOS chat experience: OLED dark theme, edge-swipe gestures, drag-to-dismiss bottom sheets, settings panel with 8-language selector, and QR pairing with independent device identity — your desktop stays connected when a phone joins. by @samzong in #183 + - 🎨 Premium design system — Glass surfaces, 3-layer glow effects, ambient gradient orbs, display typography (Instrument Serif), extended motion presets, and CI enforcement rules. All with dark + light theme coverage, prefers-reduced-motion respect, and @supports fallbacks. by @samzong in #200 #201 + - 🐧 Linux desktop builds — AppImage (portable) and deb (Ubuntu/Debian) packages for x64, fully integrated into the CI/CD release pipeline. by @samzong in #174 + 🔒 Security + - Removed private key exposure and raw IPC backdoor from the renderer preload bridge — neither surface had any renderer consumers by @samzong in #184 + - Production-grade SSRF guard with numeric IPv4/IPv6 range checks and DNS pre-resolution, replacing the string-prefix check that missed all RFC 1918 ranges by @samzong in #189 + - Eliminated TOCTOU race in context file path validation by merging validate + read into a single fd-centric atomic operation by @samzong in #185 + - Fixed path traversal vector in artifact handler — replaced naive url.replace('file://', '') with fileURLToPath() by @samzong in #194 + 🐛 Bug Fixes + - Fixed macOS crash on dock re-open — IPC handlers registered inside createWindow() threw on second invocation; centralized window lifecycle via window-manager module by @samzong in #195 + - Fixed PWA status bar color not updating when switching between dark and light themes by @samzong in #192 + - Fixed invisible text in Gateway debug log caused by undefined --text-tertiary CSS variable by @samzong in #193 + - Fixed per-token forced reflow during streaming — replaced scrollToBottom on every token with ResizeObserver; fixed Virtuoso dual scroll context by @samzong in #196 + - Fixed PWA client version stuck at hardcoded 0.1.0 — now injected from package.json at build time by @samzong in #191 + - Fixed PWA i18n gaps — en.json is now the authoritative superset, all defaultValue anti-patterns eliminated, Gateway debug log fully translated across 8 languages by @samzong in #199 + 🔧 Engineering + - Extracted @clawwork/core package with port-based dependency injection — stores, session sync, gateway dispatching, and protocol parsing are now platform-agnostic, enabling future PWA code sharing by @samzong in #178 + - Extracted chat composer service into @clawwork/core — split the 1655-line ChatInput.tsx god component into 9 focused modules by @samzong in #180 + - Added knip for dead code detection, removed 52 dead code items, added Renovate for automated dependency updates and vitest coverage by @samzong in #176 + - Extracted BottomSheet primitive from 3 PWA components, fixing 3 accessibility bugs and adding body scroll lock by @samzong in #186 + - Extracted useOverlay hook — unified portal rendering, ref-counted scroll lock, inert support, and prefers-reduced-motion for all overlays by @samzong in #198 + - Extracted useFocusTrap hook from DrawerLayout and AgentSelector by @samzong in #190 + - Extracted client registry and eliminated composerBridge monkey-patching hack by @samzong in #188 + - Replaced manual base64 encode/decode with ES2025 Uint8Array.toBase64() platform API by @samzong in #197 + - PWA polish: removed type lies (! non-null assertions), dead tsconfig paths, added IndexedDB migration guard, reduced edge-swipe dead zone by @samzong in #187 + 📖 Docs + - Keynote: full 8-language translations and dark/light theme toggle by @samzong in #182 + - Keynote slide polish and toolchain integration focus by @samzong in #179 + - Fixed SPA fallback for GitHub Pages keynote routes by @samzong in #175 +ReleaseNotesUrl: https://github.com/clawwork-ai/ClawWork/releases/tag/v0.0.13 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.locale.zh-CN.yaml b/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.locale.zh-CN.yaml new file mode 100644 index 000000000000..03a46a6c48b0 --- /dev/null +++ b/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.locale.zh-CN.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: ClawWork.ClawWork +PackageVersion: 0.0.13 +PackageLocale: zh-CN +ShortDescription: 将 ClawWork 连接至您自己的 OpenClaw,解锁 10 倍多会话生产力。 +Description: |- + OpenClaw 的桌面工作区。 + 支持并行任务、实时可见的工具活动,以及日后轻松查找的文件。 + + 为何选择 ClawWork + 通过 Telegram、Slack 或普通聊天界面使用 OpenClaw,处理简单任务尚可。但一旦工作变得复杂,体验就会大打折扣。 + 状态信息淹没在消息流中;运行多个任务时,不得不在多个标签页间切换,努力回忆哪个会话使用了哪个模型;文件出现在回复中,随后又消失在历史记录里。 + ClawWork 通过将每个任务视为独立的工作区来解决这一问题。您将获得一个桌面界面:任务彼此隔离,工具活动在执行过程中清晰可见,输出文件始终与生成它们的工作关联在一起。 + + 为何体验更佳 + - 每个任务在独立的 OpenClaw 会话中运行,让您能在并行作业间自由切换而不会混淆上下文。 + - 流式回复、工具调用卡片、进度信息和产出物集中呈现,不再埋没于聊天记录中。 + - 网关、智能体、模型及思维设置均按任务单独配置。 + - 智能体生成的文件保存至本地工作区,便于后续浏览。 + - 高风险的执行操作可在运行前暂停并等待批准。 +Tags: +- openclaw +- 人工智能 +- 大语言模型 +- 智能体 +- 聊天机器人 +- 自主智能 +- 龙虾 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.yaml b/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.yaml similarity index 75% rename from manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.yaml rename to manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.yaml index 402af9a24b33..7f7d6f8e50f6 100644 --- a/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.yaml +++ b/manifests/c/ClawWork/ClawWork/0.0.13/ClawWork.ClawWork.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: CrashPlan.CrashPlan -PackageVersion: 11.9.0.507 +PackageIdentifier: ClawWork.ClawWork +PackageVersion: 0.0.13 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.installer.yaml b/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.installer.yaml new file mode 100644 index 000000000000..b9ee313f6c67 --- /dev/null +++ b/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ColonyLabs.ScribeDesktopCapture +PackageVersion: 6.3.25.0 +InstallerType: msi +InstallerSwitches: + InstallLocation: APPDIR="" +UpgradeBehavior: install +Protocols: +- scribehow +ProductCode: '{2ce37a56-a9bc-4454-80bf-5ee8d4c3e597}' +AppsAndFeaturesEntries: +- UpgradeCode: '{351EF756-3AF5-4117-8697-53AB61427040}' +Installers: +- Architecture: x64 + InstallerUrl: https://colony-labs-public.s3.us-east-2.amazonaws.com/Scribe_6.3.25.msi + InstallerSha256: C1DA77B558AA2C3B2CC6B911A46B7A2F6905D74E023FD9A3722429B45EE2B030 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.locale.en-US.yaml b/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.locale.en-US.yaml new file mode 100644 index 000000000000..880654747027 --- /dev/null +++ b/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ColonyLabs.ScribeDesktopCapture +PackageVersion: 6.3.25.0 +PackageLocale: en-US +Publisher: Colony Labs, Inc +PublisherUrl: https://scribehow.com/ +PublisherSupportUrl: https://support.scribehow.com/ +PrivacyUrl: https://scribehow.com/legal/privacy +Author: Colony Labs, Inc. +PackageName: Scribe +PackageUrl: https://scribehow.com/get-desktop +License: Proprietary +LicenseUrl: https://scribehow.com/legal/terms +Copyright: ©2026-All rights reserved. +CopyrightUrl: https://scribehow.com/legal/terms +ShortDescription: Turn any process into a step-by-step guide, instantly. +Description: Scribe automatically generates how-to guides and serves them to your team when they need them most. +Moniker: scribe +Tags: +- documentation +- steps-recorder +PurchaseUrl: https://scribehow.com/pricing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.locale.zh-CN.yaml b/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.locale.zh-CN.yaml new file mode 100644 index 000000000000..204fdcbc996d --- /dev/null +++ b/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.locale.zh-CN.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: ColonyLabs.ScribeDesktopCapture +PackageVersion: 6.3.25.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 将任何流程转化为分步指南,即刻实现。 +Description: Scribe 自动生成操作指南,并在团队最需要的时刻提供给他们。 +Tags: +- 文档 +- 步骤记录器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.yaml b/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.yaml new file mode 100644 index 000000000000..d08213a2a3d6 --- /dev/null +++ b/manifests/c/ColonyLabs/ScribeDesktopCapture/6.3.25.0/ColonyLabs.ScribeDesktopCapture.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: ColonyLabs.ScribeDesktopCapture +PackageVersion: 6.3.25.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.installer.yaml b/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.installer.yaml deleted file mode 100644 index f506f8ff741b..000000000000 --- a/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.installer.yaml +++ /dev/null @@ -1,21 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: CrashPlan.CrashPlan -PackageVersion: 11.9.0.507 -InstallerType: msi -InstallerSwitches: - InstallLocation: APPDIR="" -UpgradeBehavior: install -Dependencies: - PackageDependencies: - - PackageIdentifier: Microsoft.VCRedist.2015+.x64 -ProductCode: '{AC36A2F6-E39D-43C4-9364-6A404581011E}' -AppsAndFeaturesEntries: -- UpgradeCode: '{113B48D9-4965-4FAA-A583-A61ADAE58355}' -Installers: -- Architecture: x64 - InstallerUrl: https://download.crashplan.com/installs/agent/cloud/11.9.0/507/install/CrashPlan_11.9.0_507_Win64.msi - InstallerSha256: B5F459889D09AF1C0CB37AC3C9AB05792FB9C5D5EEB1A7A01CD168A7C771B422 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.locale.en-US.yaml b/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.locale.en-US.yaml deleted file mode 100644 index d88017241a93..000000000000 --- a/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.locale.en-US.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: CrashPlan.CrashPlan -PackageVersion: 11.9.0.507 -PackageLocale: en-US -Publisher: CrashPlan Group LLC -PublisherUrl: https://www.crashplan.com/ -PublisherSupportUrl: https://support.crashplan.com/ -PrivacyUrl: https://www.crashplan.com/privacy/ -Author: CrashPlan Group LLC -PackageName: CrashPlan -License: Proprietary -LicenseUrl: https://www.crashplan.com/terms-conditions/ -Copyright: © 2026, CrashPlan Group LLC -CopyrightUrl: https://www.crashplan.com/terms-conditions/ -ShortDescription: When you need to recover a file or a version of a file, the CrashPlan app makes it easy to browse, search, and download files from all of the devices on your account. -Tags: -- backup -PurchaseUrl: https://www.crashplan.com/pricing/ -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.locale.zh-CN.yaml b/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.locale.zh-CN.yaml deleted file mode 100644 index 9bbff0428d0b..000000000000 --- a/manifests/c/CrashPlan/CrashPlan/11.9.0.507/CrashPlan.CrashPlan.locale.zh-CN.yaml +++ /dev/null @@ -1,12 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: CrashPlan.CrashPlan -PackageVersion: 11.9.0.507 -PackageLocale: zh-CN -License: 专有软件 -ShortDescription: 当您需要恢复某个文件或文件的某个版本时,CrashPlan 应用让您能够轻松浏览、搜索并下载账户下所有设备中的文件。 -Tags: -- 备份 -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/c/cclavin/pios/1.0.0/cclavin.pios.installer.yaml b/manifests/c/cclavin/pios/1.0.0/cclavin.pios.installer.yaml new file mode 100644 index 000000000000..317842a03e28 --- /dev/null +++ b/manifests/c/cclavin/pios/1.0.0/cclavin.pios.installer.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: cclavin.pios +PackageVersion: 1.0.0 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-03-22" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: pios.exe + PortableCommandAlias: pios + InstallerUrl: https://github.com/cclavin/pios/releases/download/v1.0.0/pios_Windows_x86_64.zip + InstallerSha256: 95e03e130afb239af7faeb913fc86dae2dfa2a8b641ba7ef115e5505cbdb6984 + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: pios.exe + PortableCommandAlias: pios + InstallerUrl: https://github.com/cclavin/pios/releases/download/v1.0.0/pios_Windows_arm64.zip + InstallerSha256: 2509849639fc2be7d4b79806e7dda22bf0689ec7ce2ee2536c05f0263382f9f0 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/cclavin/pios/1.0.0/cclavin.pios.locale.en-US.yaml b/manifests/c/cclavin/pios/1.0.0/cclavin.pios.locale.en-US.yaml new file mode 100644 index 000000000000..746176eb30e6 --- /dev/null +++ b/manifests/c/cclavin/pios/1.0.0/cclavin.pios.locale.en-US.yaml @@ -0,0 +1,13 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: cclavin.pios +PackageVersion: 1.0.0 +PackageLocale: en-US +Publisher: cclavin +PackageName: pios +PackageUrl: https://github.com/cclavin/PIOS +License: MIT +ShortDescription: AI Project Execution Contract CLI +Moniker: pios +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/cclavin/pios/1.0.0/cclavin.pios.yaml b/manifests/c/cclavin/pios/1.0.0/cclavin.pios.yaml new file mode 100644 index 000000000000..2cedc20fb78a --- /dev/null +++ b/manifests/c/cclavin/pios/1.0.0/cclavin.pios.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: cclavin.pios +PackageVersion: 1.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.installer.yaml b/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.installer.yaml new file mode 100644 index 000000000000..5157df243332 --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: codexu.NoteGen +PackageVersion: 0.27.4 +UpgradeBehavior: install +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/codexu/note-gen/releases/download/note-gen-v0.27.4/NoteGen_0.27.4_x64-setup.exe + InstallerSha256: 2153248DC53AC43FC43E2064F95BDC54240E17F5912F59CE4D2A954B165291CB + ProductCode: NoteGen +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/codexu/note-gen/releases/download/note-gen-v0.27.4/NoteGen_0.27.4_x64_en-US.msi + InstallerSha256: C97D2959702EC7D9E8FF078F940315567F0F90A23B8A65B452F5947BC60E5214 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{E2E23176-A393-4150-B75A-0D72E26981CC}' + AppsAndFeaturesEntries: + - UpgradeCode: '{E353DB5D-25D7-5FA9-B7DC-C4BC524A075E}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.locale.en-US.yaml b/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.locale.en-US.yaml new file mode 100644 index 000000000000..93635cc9a0c9 --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.locale.en-US.yaml @@ -0,0 +1,59 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: codexu.NoteGen +PackageVersion: 0.27.4 +PackageLocale: en-US +Publisher: codexu +PublisherUrl: https://github.com/codexu +PublisherSupportUrl: https://github.com/codexu/note-gen/issues +PackageName: NoteGen +PackageUrl: https://github.com/codexu/note-gen +License: MIT +LicenseUrl: https://github.com/codexu/note-gen/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 codexu +ShortDescription: A cross-platform AI note-taking application focused on recording and writing. +Description: |- + NoteGen is a cross-platform AI note-taking application focused on recording and writing, developed based on Tauri. + The core philosophy of NoteGen is to combine recording, writing, and AI, with all three complementing each other. The recording function helps users quickly capture and organize fragmented knowledge. The organization function is the bridge connecting recording and writing, which can organize continuously recorded content into a readable note, assisting users in completing the creation process from scratch. If the AI-organized results cannot meet your requirements, you can use the writing function to refine it yourself. + Recording + Recording methods supported: + 1. 🖥️ Screenshot recording, through which users can quickly capture and record fragmented knowledge, especially in situations where text copying is not possible. + 2. 📄 Text recording, which allows copying text or manually inputting brief content as a record. + 3. 🖼️ Illustration recording, which can be automatically inserted into appropriate positions when generating notes. + 4. 📇 File recording, which recognizes content from PDF, md, html, txt, and other files for text recording. + 5. 🔗 Link recording (to be implemented), using web crawlers for page content recognition and recording. + 6. 📷 Photo recording (to be implemented), similar to illustration recording, calling the camera to record, suitable for future mobile use. + Auxiliary recording: + - 🏷️ Custom tags for better categorization and differentiation of different recording scenarios. + - 🤖 AI conversation, by default associated with records under the current tag, and you can also manually associate it with any article in your writing. + - 📋 Clipboard recognition, which automatically recognizes images or text in the clipboard after you copy them. + - 💾 Organization, when you have completed a series of records, you can try to let AI help you organize them into an article. + Writing + - 🗂 File manager, supporting management of files and folders in local and Github repositories, with unlimited directory levels. + - 📝 Support for WYSIWYG, instant rendering, and split-screen preview modes. + - 📅 Version control, if you enable synchronization, you can trace back to historically uploaded records in the history. + - 🤖 AI assistance, supporting Q&A, continuation, optimization, simplification, translation, and other functions, and you can insert records into any position of the article at any time. + - 🏞️ Image hosting, directly copy and paste images into the Markdown editor, which will automatically upload the image to the image hosting service and convert it to a Markdown image link. + - 🛠️ HTML and Markdown conversion, copying content from browsers will automatically convert it to Markdown format. + Auxiliary + - 📦 Large model support, with multiple built-in large model configurations, supporting customization and easy switching. + - 👁️ OCR, which can assist in recognizing text in images. + - 🏗️ Organization templates, which can be customized for AI to organize different types of content. + - 🔎 Global search, for quickly searching and jumping to specified content. + - 🌃 Image hosting management, for convenient management of image hosting repository content. + - 💎 Themes and appearance, supporting dark theme, and appearance settings for Markdown, code, etc. +Tags: +- ai +- bookmark +- clipping +- favorite +- knowledge +- knowledge-base +- large-language-model +- llm +- mark +- notes +ReleaseNotesUrl: https://github.com/codexu/note-gen/releases/tag/note-gen-v0.27.4 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.locale.zh-CN.yaml b/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.locale.zh-CN.yaml new file mode 100644 index 000000000000..ed558ce3d3bd --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.locale.zh-CN.yaml @@ -0,0 +1,73 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: codexu.NoteGen +PackageVersion: 0.27.4 +PackageLocale: zh-CN +Publisher: codexu +PublisherUrl: https://github.com/codexu +PublisherSupportUrl: https://github.com/codexu/note-gen/issues +PackageName: NoteGen +PackageUrl: https://github.com/codexu/note-gen +License: MIT +LicenseUrl: https://github.com/codexu/note-gen/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 codexu +ShortDescription: 一款专注于记录和写作的跨端 AI 笔记应用。 +Description: |- + NoteGen 是一款专注于记录和写作的跨端 AI 笔记应用,基于 Tauri 开发。 + NoteGen 的核心理念是将记录、写作和 AI 结合使用,三者相辅相成。记录功能可以帮助用户快速捕捉和整理碎片化知识。整理功能是连接记录和写作的桥梁,可将持续记录的内容整理成一篇可读的笔记,辅助用户完成从零到一的创作过程,如果 AI 整理的结果无法满足你的要求,那么你可以使用写作功能自行去完善。 + 记录 + 记录方式支持: + 1. 🖥️ 截图记录,通过截图,用户可以快速捕捉和记录碎片化知识,尤其是在遇到无法进行文本复制的情况下。 + 2. 📄 文本记录,可以复制文本或者手动输入一些简短的内容作为一次记录。 + 3. 🖼️ 插图记录,可以在笔记生成时,自动插入到合适的位置。 + 4. 📇 文件记录,识别 PDF、md、html、txt 等文件内容,进行文字记录。 + 5. 🔗 链接记录(待实现),使用爬虫进行页面内容识别与记录。 + 6. 📷 拍照记录(待实现)功能类似于插图记录,调用相机记录,适合未来移动端。 + 辅助记录: + - 🏷️ 自定义标签,更好地归类和区分不同的记录场景。 + - 🤖 AI 对话,默认关联当前标签下的记录,你也可以手动去关联写作内的任何文章。 + - 📋 剪贴板识别,在你进行图片或文本复制后,会自动识别剪贴板中的图片或文本。 + - 💾 整理,当你已经完成了一系列的记录之后,可以尝试让 AI 帮你整理为一篇文章。 + 写作 + - 🗂 文件管理器,支持本地和 Github 仓库的文件和文件夹的管理,支持无限层级目录。 + - 📝 支持所见即所得、即时渲染、分屏预览三种模式。 + - 📅 版本控制,如果你开启了同步功能,可以在历史记录中回溯历史上传过的记录。 + - 🤖 AI 辅助,支持问答、续写、优化、精简、翻译等功能,且可以随时将记录插入到文章任何位置。 + - 🏞️ 图床,直接复制图片粘贴在 Markdown 编辑器中,将自动将此图片上传至图床,并转换为 Markdown 图片链接。 + - 🛠️ HTML、Markdown 转换,复制浏览器的内容,将自动转换为 Markdown 格式。 + 辅助 + - 📦 大模型支持,内置多种大模型配置,支持自定义,随意切换。 + - 👁️ OCR,可以辅助识别图片内的文字。 + - 🏗️ 整理模板,可自定义模板,方便 AI 对不同类型的内容进行定制化整理。 + - 🔎 全局搜索,可以快速搜索并跳转至指定的内容。 + - 🌃 图床管理,可以方便的管理图床仓库的内容。 + - 💎 主题与外观,支持深色主题,支持 Markdown、代码等外观设置。 +Tags: +- 书摘 +- 书签 +- 人工智能 +- 剪藏 +- 大语言模型 +- 收藏 +- 收藏夹 +- 知识 +- 知识库 +- 笔记 +ReleaseNotes: |- + - feat(#974): AI 支持跨域请求 + - feat: 移动端历史提交记录改为抽屉组件 + - feat: 优化翻译功能,保持与其他 AI 功能交互逻辑一致 + - feat: 优化润色等工具输出时,避免将思考内容写入到笔记中 + - feat: SM.MS 图床替换为 S.EE + - refactor: 重构移动端记录页面顶部布局 + - fix(#1020): 修复移动端无法使用大纲的问题 + - fix(#1012): 修复大纲与编辑器布局冲突 + - fix(#1006): 修复远端文件存在空格时无法正确删除的问题 + - fix(#1019): 修复可能由 slash 命令导致回车被劫持的问题 + - fix(#1018): 修复写作资源路径无效的问题 + - fix(#1017): 修复编辑器图片上传未正确保存路径 + - fix(#1016): 文件夹同步未正确读取用户自定义仓库名称 +ReleaseNotesUrl: https://github.com/codexu/note-gen/releases/tag/note-gen-v0.27.4 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.yaml b/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.yaml new file mode 100644 index 000000000000..d58478339180 --- /dev/null +++ b/manifests/c/codexu/NoteGen/0.27.4/codexu.NoteGen.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: codexu.NoteGen +PackageVersion: 0.27.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/Danfoss/MyDrive/Insight/2.20.0/Danfoss.MyDrive.Insight.installer.yaml b/manifests/d/Danfoss/MyDrive/Insight/2.20.0/Danfoss.MyDrive.Insight.installer.yaml new file mode 100644 index 000000000000..919b12cff8fc --- /dev/null +++ b/manifests/d/Danfoss/MyDrive/Insight/2.20.0/Danfoss.MyDrive.Insight.installer.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Danfoss.MyDrive.Insight +PackageVersion: 2.20.0 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: nullsoft +NestedInstallerFiles: +- RelativeFilePath: MyDrive Insight 2.20.0 Setup.exe +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: MyDrive Insight 2.20.0 +ReleaseDate: 2025-12-17 +AppsAndFeaturesEntries: +- DisplayName: MyDrive Insight 2.20.0 + Publisher: Danfoss Drives + ProductCode: MyDrive Insight 2.20.0 +Installers: +- Architecture: x86 + InstallerUrl: https://datacore.mydrive.danfoss.com/assets/1a46936b-6b64-4854-9637-306d20ea88e2?download + InstallerSha256: 244F58FABBABBE6002FA435ABACBD04421F6C7608AA3A6521AFB9615E076D9CC +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/Danfoss/MyDrive/Insight/2.20.0/Danfoss.MyDrive.Insight.locale.en-US.yaml b/manifests/d/Danfoss/MyDrive/Insight/2.20.0/Danfoss.MyDrive.Insight.locale.en-US.yaml new file mode 100644 index 000000000000..22360427e9be --- /dev/null +++ b/manifests/d/Danfoss/MyDrive/Insight/2.20.0/Danfoss.MyDrive.Insight.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Danfoss.MyDrive.Insight +PackageVersion: 2.20.0 +PackageLocale: en-US +Publisher: Danfoss A/S +PublisherUrl: https://www.danfoss.com/en/about-danfoss/company/ +PublisherSupportUrl: https://www.danfoss.com/en/service-and-support/ +PackageName: MyDrive Insight +PackageUrl: https://suite.mydrive.danfoss.com/content/tools?tags=iC2%20Series&category=all&lang=EN&id=24 +License: Proprietary +Copyright: © 2023 Danfoss A/S All Rights Reserved +ShortDescription: > + With MyDrive Insight you get a pc software tool, saving you time and cost in your daily work by + reducing complexity. +Description: |- + The tool helps to support with commissioning and monitoring. + + Features include: + + - Seamless configuration and commissioning support + - Project management with backup/restore and report generation functionality + - Data-based drives performance insights - device signals, notifications, and drives systems + performance visualizations based on real-time data + - Enhanced configuration through fieldbus customization, and functional safety interface + - Secure communication – no unauthorized access to your system +ReleaseNotesUrl: https://suite.mydrive.danfoss.com/content/tools?tags=iC2%20Series&category=all&id=24&lang=EN&release=open +Documentations: +- DocumentLabel: MyDrive Insight fact sheet + DocumentUrl: https://files.danfoss.com/download/Drives/AM421746728271en_MyDrive_Insight.pdf +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.yaml b/manifests/d/Danfoss/MyDrive/Insight/2.20.0/Danfoss.MyDrive.Insight.yaml similarity index 73% rename from manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.yaml rename to manifests/d/Danfoss/MyDrive/Insight/2.20.0/Danfoss.MyDrive.Insight.yaml index aeb568cadd32..ddf33450811c 100644 --- a/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.yaml +++ b/manifests/d/Danfoss/MyDrive/Insight/2.20.0/Danfoss.MyDrive.Insight.yaml @@ -1,8 +1,8 @@ # Created with komac v2.15.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: RoyalApps.RoyalTS.7 -PackageVersion: 7.4.50306.0 +PackageIdentifier: Danfoss.MyDrive.Insight +PackageVersion: 2.20.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.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.885/Discord.Discord.Canary.installer.yaml b/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.installer.yaml new file mode 100644 index 000000000000..df4fd471b928 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.885 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Protocols: +- discord +ProductCode: DiscordCanary +Installers: +- Architecture: x64 + InstallerUrl: https://canary.dl2.discordapp.net/distro/app/canary/win/x64/1.0.885/DiscordCanarySetup.exe + InstallerSha256: 0700557DDE9AFEB51EA36EEC7EB30520073E229F5FF07A3A93B155A86E430810 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.locale.en-US.yaml new file mode 100644 index 000000000000..e674f447c675 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.885 +PackageLocale: en-US +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Canary +PackageUrl: https://discord.com/download +License: Proprietary +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2026 Discord Inc. All rights reserved. +ShortDescription: Your Place to Talk and Hang Out +Description: |- + Discord is the easiest way to talk over voice, video, and text. + Talk, chat, hang out, and stay close with your friends and communities. +Moniker: discord-canary +Tags: +- chat +- community +- gaming +- hang-out +- talk +- video +- voice +- voice-chat +PurchaseUrl: https://discord.com/nitro +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.locale.zh-CN.yaml new file mode 100644 index 000000000000..d16226a34122 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.885 +PackageLocale: zh-CN +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Canary +PackageUrl: https://discord.com/download +License: 专有软件 +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2026 Discord Inc. All rights reserved. +ShortDescription: 玩耍聊天的地方 +Description: |- + Discord 是最简单易用的通讯工具,兼具语音、视频以及文字信息功能。 + 您可以聊聊天,拉拉家常,一起玩耍,与好友和社区保持紧密联系。 +Tags: +- 开黑 +- 游戏 +- 聊天 +- 语音 +- 语音聊天 +PurchaseUrl: https://discord.com/nitro +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.yaml b/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.yaml new file mode 100644 index 000000000000..a31d9cfd2238 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.885/Discord.Discord.Canary.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.885 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/dandavison/delta/0.19.0/dandavison.delta.installer.yaml b/manifests/d/dandavison/delta/0.19.0/dandavison.delta.installer.yaml new file mode 100644 index 000000000000..7b25ba8c9350 --- /dev/null +++ b/manifests/d/dandavison/delta/0.19.0/dandavison.delta.installer.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: dandavison.delta +PackageVersion: 0.19.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: delta-0.19.0-x86_64-pc-windows-msvc/delta.exe + PortableCommandAlias: delta +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2026-03-20 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/dandavison/delta/releases/download/0.19.0/delta-0.19.0-x86_64-pc-windows-msvc.zip + InstallerSha256: C704699D76DEF630EDFD65BF356E710C28ACD147CA30A4F425762C934E8E107D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/dandavison/delta/0.19.0/dandavison.delta.locale.en-US.yaml b/manifests/d/dandavison/delta/0.19.0/dandavison.delta.locale.en-US.yaml new file mode 100644 index 000000000000..af31051c9fcb --- /dev/null +++ b/manifests/d/dandavison/delta/0.19.0/dandavison.delta.locale.en-US.yaml @@ -0,0 +1,94 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: dandavison.delta +PackageVersion: 0.19.0 +PackageLocale: en-US +Publisher: Dan Davison +PublisherUrl: https://github.com/dandavison +PublisherSupportUrl: https://github.com/dandavison/delta/issues +Author: Dan Davison +PackageName: delta +PackageUrl: https://github.com/dandavison/delta +License: MIT +LicenseUrl: https://github.com/dandavison/delta/blob/master/LICENSE +Copyright: Copyright 2020 Dan Davison +CopyrightUrl: https://github.com/dandavison/delta/blob/master/LICENSE +ShortDescription: A syntax-highlighting pager for git, diff, and grep output +Tags: +- delta +- diff +- git +- git-delta +- pager +- rust +ReleaseNotes: |- + Tons of improvements; thanks very much to all delta contributors. + + This release is missing several binaries due to a bug in the GitHub Actions release workflow. Please + use https://github.com/dandavison/delta/releases/tag/0.19.1 instead. + + ## What's Changed + + - Do not double panic in FakeParentArgs::drop by @dvermd in #1856 + - Improve blame file type detection (#1803) by @dvermd in #1829 + - Use same example config in manual as README by @dandavison in #1879 + - Clarify grep highlighter-related code by @dandavison in #1877 + - Don't set colorMoved in introductory instructions by @dandavison in #1884 + - Recommend zdiff3 merge.conflictStyle by @adamchainz in #1260 + - Add themes weeping-willow, mirthful-willow by @lvdh in #1864 + - CI: switch to macos-13, as 12 will be unsupported soon by @th1000s in #1890 + - Add optional capture-output writer to run_app() by @th1000s in #1889 + - Center-align README content by @dandavison in #1893 + - Redundant Option Checks, Unwrap Safety by @sharma-shray in #1892 + - Add console commands for git configuration by @harmtemolder in #1896 + - Honor pager path when checking less version by @dandavison in #1903 + - Rename some variables by @dandavison in #1904 + - Delete now-unused pricate homebrew formula step from Makefile (III) by @dvermd in #1830 + - Support {host} in hyperlinks by @dandavison in #1901 + - Allow multiple hyperlinks per line by @th1000s in #1909 + - Clippy 1.83 by @th1000s in #1918 + - Support external subcommands: rg, diff, git-show (etc.) by @th1000s in #1769 + - Don't keep subcommand stdout around by @th1000s in #1920 + - hyperlink commit hashes of length 7 as well by @th1000s in #1924 + - clippy 1.84 fix by @th1000s in #1938 + - chore(deps): update git2 to use libgit2 1.9 by @chenrui333 in #1930 + - Suggest minimum bat version in manual by @ernstki in #1941 + - Upgrade unicode-width to v0.1.14 (but still < 0.2.0) by @th1000s in #1937 + - Update terminal-colorsaurus version to 0.4.8 by @rashil2000 in #1936 + - Fix index out of bounds crash for '@@ @@' hunk header by @adamchainz in #1995 + - Tune themes weeping-willow, mirthful-willow by @lvdh in #2011 + - clippy 1.88 fixes by @injust in #2016 + - Fix diff output when a diff ends with a mode change by @th1000s in #2023 + - fix: cargo install git-delta --locked fails on systems with GCC 15 by @tquin in #2007 + - Normalize merge.conflictStyle casing by @injust in #2015 + - Styled zero lines fix by @th1000s in #1916 + - config: add setup instructions for Jujutsu (jj) vcs by @arjunmahishi in #2048 + - all: fix clippy complaints by @charlievieth in #2038 + - Cache the Git remote URL to speed up rendering hyperlinks by @charlievieth in #1940 + - deps: update cc by @ognevny in #2053 + - rg json handling: fix line comment highlighting by @th1000s in #2057 + - Update dirs dependency to version 6 by @musicinmybrain in #2063 + - default line number to 1 for hyperlinks by @schpet in #2061 + - Fix line numbers showing filename when hyperlinks enabled by @tsvikas in #2058 + - less hist file: look at xdg paths by @th1000s in #2065 + - CI: remove x86 apple/macOS by @th1000s in #2074 + - Update bat dependency from 0.24 to 0.26 by @dandavison in #2115 + + ## New Contributors + + - @dvermd made their first contribution in #1856 + - @lvdh made their first contribution in #1864 + - @sharma-shray made their first contribution in #1892 + - @harmtemolder made their first contribution in #1896 + - @ernstki made their first contribution in #1941 + - @tquin made their first contribution in #2007 + - @arjunmahishi made their first contribution in #2048 + - @charlievieth made their first contribution in #2038 + - @ognevny made their first contribution in #2053 + - @musicinmybrain made their first contribution in #2063 + - @schpet made their first contribution in #2061 + - @tsvikas made their first contribution in #2058 +ReleaseNotesUrl: https://github.com/dandavison/delta/releases/tag/0.19.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/dandavison/delta/0.19.0/dandavison.delta.yaml b/manifests/d/dandavison/delta/0.19.0/dandavison.delta.yaml new file mode 100644 index 000000000000..25973d8096f5 --- /dev/null +++ b/manifests/d/dandavison/delta/0.19.0/dandavison.delta.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: dandavison.delta +PackageVersion: 0.19.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.installer.yaml b/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.installer.yaml new file mode 100644 index 000000000000..13c2e39262e9 --- /dev/null +++ b/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.installer.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: deanxv.DoneHub +PackageVersion: 1.20.39 +InstallerType: portable +Commands: +- done-hub +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/deanxv/done-hub/releases/download/v1.20.39/done-hub.exe + InstallerSha256: 572EDC0634DF650E3398057992AC7DFD76EB2D738492D239AF1628468B44B886 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.locale.en-US.yaml b/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.locale.en-US.yaml new file mode 100644 index 000000000000..511f8b66f5fd --- /dev/null +++ b/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: deanxv.DoneHub +PackageVersion: 1.20.39 +PackageLocale: en-US +Publisher: Dean +PublisherUrl: https://github.com/deanxv +PublisherSupportUrl: https://github.com/deanxv/done-hub/issues +PackageName: Done Hub +PackageUrl: https://github.com/deanxv/done-hub +License: Apache-2.0 +LicenseUrl: https://github.com/deanxv/done-hub/blob/HEAD/LICENSE +Copyright: Copyright (C) 2026 deanxv. All rights reserved. +ShortDescription: All in Done Hub service for OpenAI API. +Tags: +- ai +- chatbot +- large-language-model +- llm +- openai-api +ReleaseNotes: |- + What's Changed + Right, so—long time no see. Or maybe not. Whatever, no one really gives a toss anyway, do they? Bet you're thinking, 'Right then, must be a massive update, yeah?' Wrong. Just a bunch of tinkering. That said, I did notice while hammering the thing myself—high concurrency, proper meltdown territory—memory and CPU were having a right old barney. All them base64 requests flying about, routing logic’s a proper mess, serialise this, serialise that, memory's just ballooning like it's got nowhere better to be. Luckily, Claude me stepped in. Sorted a load of memory bollocks under the Gemini router, cut down on the CPU spinning its wheels. If you're running a big ol’ pool of Gemini keys, give this version a spin—might save you a pretty penny on server bills. My Alipay's 13543******. Anyway, that's enough of that. Been slow lately—loads of non-critical bugs I just haven’t had the time for. Fancy lending a hand? Pop by the issues page, maybe I’ll chuck some AI credits your way. Right then, catch you next time. + New Contributors + - @yusnake made their first contribution in https://github.com/deanxv/done-hub/pull/52 +ReleaseNotesUrl: https://github.com/deanxv/done-hub/releases/tag/v1.20.39 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.locale.zh-CN.yaml b/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.locale.zh-CN.yaml new file mode 100644 index 000000000000..f4a04b3ce580 --- /dev/null +++ b/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.locale.zh-CN.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: deanxv.DoneHub +PackageVersion: 1.20.39 +PackageLocale: zh-CN +ShortDescription: 一站式 OpenAI API 聚合服务。 +Tags: +- openai-api +- 人工智能 +- 大语言模型 +- 聊天机器人 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.yaml b/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.yaml new file mode 100644 index 000000000000..74c7d98166b9 --- /dev/null +++ b/manifests/d/deanxv/DoneHub/1.20.39/deanxv.DoneHub.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: deanxv.DoneHub +PackageVersion: 1.20.39 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.installer.yaml b/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.installer.yaml index 4985465f864d..622855205d27 100644 --- a/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.installer.yaml +++ b/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.installer.yaml @@ -1,25 +1,28 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: ElectronicArts.EADesktop -PackageVersion: 13.671.0.6184 -InstallerType: burn -Scope: machine -InstallerSwitches: - InstallLocation: InstallFolder="" -UpgradeBehavior: uninstallPrevious -Protocols: -- ealink -- link2ea -- origin -- origin2 -ProductCode: '{dba59e86-422e-4b29-94be-d0b3a70352bd}' -AppsAndFeaturesEntries: -- ProductCode: '{dba59e86-422e-4b29-94be-d0b3a70352bd}' - UpgradeCode: '{ADF2591E-00D2-4FFF-9BF4-9CCDAE6BDC67}' -Installers: -- Architecture: x64 - InstallerUrl: https://origin-a.akamaihd.net/EA-Desktop-Client-Download/installer-releases/EAappInstaller-13.671.0.6184-4124.exe - InstallerSha256: EC13CADDFA92C7B4EC25042C2796E0B53F777D13DE00F64282C237371711ECA1 -ManifestType: installer -ManifestVersion: 1.12.0 +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ElectronicArts.EADesktop +PackageVersion: 13.671.0.6184 +InstallerType: burn +Scope: machine +InstallerSwitches: + Silent: /passive /norestart + SilentWithProgress: /passive /norestart + InstallLocation: InstallFolder="" + Custom: /norestart +UpgradeBehavior: uninstallPrevious +Protocols: +- ealink +- link2ea +- origin +- origin2 +ProductCode: '{dba59e86-422e-4b29-94be-d0b3a70352bd}' +AppsAndFeaturesEntries: +- ProductCode: '{dba59e86-422e-4b29-94be-d0b3a70352bd}' + UpgradeCode: '{ADF2591E-00D2-4FFF-9BF4-9CCDAE6BDC67}' +Installers: +- Architecture: x86 + InstallerUrl: https://origin-a.akamaihd.net/EA-Desktop-Client-Download/installer-releases/EAappInstaller-13.671.0.6184-4124.exe + InstallerSha256: EC13CADDFA92C7B4EC25042C2796E0B53F777D13DE00F64282C237371711ECA1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.locale.en-US.yaml b/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.locale.en-US.yaml index bb2d4d41b5c4..f88aa7c9a44c 100644 --- a/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.locale.en-US.yaml +++ b/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.locale.en-US.yaml @@ -1,29 +1,29 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: ElectronicArts.EADesktop -PackageVersion: 13.671.0.6184 -PackageLocale: en-US -Publisher: Electronic Arts -PublisherUrl: https://www.ea.com/ -PublisherSupportUrl: https://help.ea.com/ -PrivacyUrl: https://www.ea.com/legal/privacy-and-cookie-policy -Author: Electronic Arts Inc. -PackageName: EA app -PackageUrl: https://www.ea.com/ea-app -License: Proprietary -LicenseUrl: https://tos.ea.com/legalapp/WEBTERMS/US/en/PC/ -Copyright: © 2026 Electronic Arts Inc. -ShortDescription: Play great PC games and connect with your friends, all in one place. -Description: Built on feedback from players like you, the EA Desktop app is the newest iteration of our PC platform. The beta includes new features and overall improvements to power a faster, smarter, more connected desktop app. -Moniker: eaapp -Tags: -- ea -- ea-desktop -- game -- gaming -- launcher -- origin -- store -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ElectronicArts.EADesktop +PackageVersion: 13.671.0.6184 +PackageLocale: en-US +Publisher: Electronic Arts +PublisherUrl: https://www.ea.com/ +PublisherSupportUrl: https://help.ea.com/ +PrivacyUrl: https://www.ea.com/legal/privacy-and-cookie-policy +Author: Electronic Arts Inc. +PackageName: EA app +PackageUrl: https://www.ea.com/ea-app +License: Proprietary +LicenseUrl: https://tos.ea.com/legalapp/WEBTERMS/US/en/PC/ +Copyright: © 2026 Electronic Arts Inc. +ShortDescription: Play great PC games and connect with your friends, all in one place. +Description: Built on feedback from players like you, the EA Desktop app is the newest iteration of our PC platform. The beta includes new features and overall improvements to power a faster, smarter, more connected desktop app. +Moniker: eaapp +Tags: +- ea +- ea-desktop +- game +- gaming +- launcher +- origin +- store +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.locale.zh-CN.yaml b/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.locale.zh-CN.yaml index ee7fd0bd5a5a..2aff54e13f37 100644 --- a/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.locale.zh-CN.yaml +++ b/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.locale.zh-CN.yaml @@ -1,27 +1,27 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: ElectronicArts.EADesktop -PackageVersion: 13.671.0.6184 -PackageLocale: zh-CN -Publisher: Electronic Arts -PublisherUrl: https://www.ea.com/zh-cn -PublisherSupportUrl: https://help.ea.com/ -PrivacyUrl: https://www.ea.com/zh-cn/legal/privacy-and-cookie-policy -Author: Electronic Arts Inc. -PackageName: EA app -PackageUrl: https://www.ea.com/ea-app -License: 专有软件 -LicenseUrl: https://tos.ea.com/legalapp/WEBTERMS/US/sc/PC/ -Copyright: © 2026 Electronic Arts Inc. -ShortDescription: 在一个地方游玩精彩的 PC 游戏并与朋友交流。 -Description: 根据玩家的反馈,我们开发了 EA Desktop 应用程序,作为 PC 平台的最新迭代。测试版包括新功能和整体改进,为更快、更智能、更互联的桌面应用程序提供动力。 -Tags: -- ea -- ea-desktop -- origin -- 启动器 -- 商店 -- 游戏 -ManifestType: locale -ManifestVersion: 1.12.0 +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: ElectronicArts.EADesktop +PackageVersion: 13.671.0.6184 +PackageLocale: zh-CN +Publisher: Electronic Arts +PublisherUrl: https://www.ea.com/zh-cn +PublisherSupportUrl: https://help.ea.com/ +PrivacyUrl: https://www.ea.com/zh-cn/legal/privacy-and-cookie-policy +Author: Electronic Arts Inc. +PackageName: EA app +PackageUrl: https://www.ea.com/ea-app +License: 专有软件 +LicenseUrl: https://tos.ea.com/legalapp/WEBTERMS/US/sc/PC/ +Copyright: © 2026 Electronic Arts Inc. +ShortDescription: 在一个地方游玩精彩的 PC 游戏并与朋友交流。 +Description: 根据玩家的反馈,我们开发了 EA Desktop 应用程序,作为 PC 平台的最新迭代。测试版包括新功能和整体改进,为更快、更智能、更互联的桌面应用程序提供动力。 +Tags: +- ea +- ea-desktop +- origin +- 启动器 +- 商店 +- 游戏 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.yaml b/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.yaml index f864b7a35f48..cfa696bba5c2 100644 --- a/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.yaml +++ b/manifests/e/ElectronicArts/EADesktop/13.671.0.6184/ElectronicArts.EADesktop.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: ElectronicArts.EADesktop -PackageVersion: 13.671.0.6184 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: ElectronicArts.EADesktop +PackageVersion: 13.671.0.6184 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/f/Fanis/ClaudeCodeSwitcher/0.3.0/Fanis.ClaudeCodeSwitcher.installer.yaml b/manifests/f/Fanis/ClaudeCodeSwitcher/0.3.0/Fanis.ClaudeCodeSwitcher.installer.yaml new file mode 100644 index 000000000000..9e388d2d369f --- /dev/null +++ b/manifests/f/Fanis/ClaudeCodeSwitcher/0.3.0/Fanis.ClaudeCodeSwitcher.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Fanis.ClaudeCodeSwitcher +PackageVersion: 0.3.0 +InstallerType: portable +Commands: + - claude-code-switcher +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/fanis/claude-code-switcher/releases/download/0.3.0/claude-code-switcher.exe + InstallerSha256: B168294D2A1C684712F311CBFA61DF7599C2457279D4BC3B6667D681B1A5827C +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/f/Fanis/ClaudeCodeSwitcher/0.3.0/Fanis.ClaudeCodeSwitcher.locale.en-US.yaml b/manifests/f/Fanis/ClaudeCodeSwitcher/0.3.0/Fanis.ClaudeCodeSwitcher.locale.en-US.yaml new file mode 100644 index 000000000000..5323a7dc3d82 --- /dev/null +++ b/manifests/f/Fanis/ClaudeCodeSwitcher/0.3.0/Fanis.ClaudeCodeSwitcher.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Fanis.ClaudeCodeSwitcher +PackageVersion: 0.3.0 +PackageLocale: en-US +Publisher: Fanis Hatzidakis +PackageName: Claude Code Switcher +PackageUrl: https://github.com/fanis/claude-code-switcher +License: PolyForm Internal Use License 1.0.0 +LicenseUrl: https://github.com/fanis/claude-code-switcher/blob/master/LICENCE.md +ShortDescription: Fast native Windows utility for switching between Claude Code projects. +Description: A fast, native Windows utility for switching between Claude Code projects. Shows all your Claude Code projects in a popup dialog sorted by most recently used, with fuzzy search filtering. +Tags: + - claude + - claude-code + - developer-tools + - windows-terminal +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/j/JetBrains/QodanaCLI/2025.3.3/JetBrains.QodanaCLI.yaml b/manifests/f/Fanis/ClaudeCodeSwitcher/0.3.0/Fanis.ClaudeCodeSwitcher.yaml similarity index 60% rename from manifests/j/JetBrains/QodanaCLI/2025.3.3/JetBrains.QodanaCLI.yaml rename to manifests/f/Fanis/ClaudeCodeSwitcher/0.3.0/Fanis.ClaudeCodeSwitcher.yaml index bdec77802c0b..960331e91310 100644 --- a/manifests/j/JetBrains/QodanaCLI/2025.3.3/JetBrains.QodanaCLI.yaml +++ b/manifests/f/Fanis/ClaudeCodeSwitcher/0.3.0/Fanis.ClaudeCodeSwitcher.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.8.0 +# Created using wingetcreate # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json -PackageIdentifier: JetBrains.QodanaCLI -PackageVersion: 2025.3.3 +PackageIdentifier: Fanis.ClaudeCodeSwitcher +PackageVersion: 0.3.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.9.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/Folge/Folge/1.32.0/Folge.Folge.installer.yaml b/manifests/f/Folge/Folge/1.32.0/Folge.Folge.installer.yaml new file mode 100644 index 000000000000..c7b73ffa4ade --- /dev/null +++ b/manifests/f/Folge/Folge/1.32.0/Folge.Folge.installer.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Folge.Folge +PackageVersion: 1.32.0 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: a6386432-8ff6-5fc0-8bfc-252affc43de8 +ReleaseDate: 2026-03-28 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://cdn.folge.me/Folge-1.32.0.exe + InstallerSha256: 12F551623FFC59C2575BB30BE5FC4E0B250A45C1118FAED3C5CF0B55319E55ED + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://cdn.folge.me/Folge-1.32.0.exe + InstallerSha256: 12F551623FFC59C2575BB30BE5FC4E0B250A45C1118FAED3C5CF0B55319E55ED + InstallerSwitches: + Custom: /allusers + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/f/Folge/Folge/1.32.0/Folge.Folge.locale.en-US.yaml b/manifests/f/Folge/Folge/1.32.0/Folge.Folge.locale.en-US.yaml new file mode 100644 index 000000000000..34c9df238db6 --- /dev/null +++ b/manifests/f/Folge/Folge/1.32.0/Folge.Folge.locale.en-US.yaml @@ -0,0 +1,47 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Folge.Folge +PackageVersion: 1.32.0 +PackageLocale: en-US +Publisher: Oleksii Sribnyi +PublisherUrl: https://folge.me/ +PublisherSupportUrl: https://folge.me/help/ +PrivacyUrl: https://folge.me/terms-of-service#privacy +Author: Oleksii Sribnyi +PackageName: Folge +PackageUrl: https://folge.me/download +License: Proprietary +LicenseUrl: https://folge.me/eula +Copyright: Copyright © 2026 Oleksii Sribnyi +CopyrightUrl: https://folge.me/eula +ShortDescription: Easily create step-by-step guides and documentation of any process. +Description: |- + Folge is a desktop tool to capture steps with every click of the mouse, customize screenshots, create annotations, and generate the final guide in HTML, Word Document, PDF, PowerPoint slides, and more. + Main Features are: + - Take screenshots of apps, any selected region, windows or fullscreen. Pause, adjust, and resume. Screenshots with every mouse click or keypress. + - Give each step a name and description. Reorder them, hide them, and add new ones on the fly. Organize guides in projects. + - Exports guides to HTML, PDF, DOC, PPT, JSON, Markdown files ready to share with others. And more formats to come. +Tags: +- guide +ReleaseNotes: |- + 🎁 New Features + - Tooltip V2 – Completely redesigned tooltips with speech bubble and arrow pointer styles, independent tail color and width controls, and configurable border radius. + - Step Number Arrows – Step numbers can now have an optional arrow pointing to a target, with configurable line width, color, and arrowhead size. + - Spotlight – New annotation tool that dims the background and highlights specific areas, with adjustable opacity, border radius, and stroke. + - Magnifier V2 – Redesigned magnifying glass with separate source and display areas, both resizable and movable. + - Custom Watermark – Add a watermark image to exported step images with configurable position, opacity, scale, and padding. + - Apply Styles Across Steps – Apply annotation style changes to all matching annotations across your entire guide in one click. + - Toolbar Submenus – Annotation tools are now organized into groups with expandable submenus for a cleaner toolbar. + ⭐ Improvements + - Pre-capture overlay is now click-through for Active Window and Full Screen modes, allowing you to arrange windows before starting capture. + - Clicked elements metadata parsing greatly improved on Mac. + - Fit-to-zoom now centers the view correctly in Focused View. + - Guide details (title, description) now autosave as you type. + - Export Settings Templates UI improvements. + 🔧 Bug Fixes + - Fixed timer option for simple capture mode. +ReleaseNotesUrl: https://folge.me/changelog +PurchaseUrl: https://folge.me/buy +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/Folge/Folge/1.32.0/Folge.Folge.locale.zh-CN.yaml b/manifests/f/Folge/Folge/1.32.0/Folge.Folge.locale.zh-CN.yaml new file mode 100644 index 000000000000..40f88630cab6 --- /dev/null +++ b/manifests/f/Folge/Folge/1.32.0/Folge.Folge.locale.zh-CN.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Folge.Folge +PackageVersion: 1.32.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 轻松创建任何流程的分步指南和文档。 +Description: |- + Folge 是一款桌面工具,能够通过每次鼠标点击捕捉操作步骤,自定义截图,添加注释,并最终生成 HTML、Word 文档、PDF、PowerPoint 幻灯片等多种格式的指南。 + 主要功能包括: + - 截取应用程序、任意选定区域、窗口或全屏画面。支持暂停、调整和继续操作,每次鼠标点击或按键均可触发截图。 + - 为每个步骤命名并添加描述。可随时重新排序、隐藏或新增步骤,并将指南按项目分类管理。 + - 支持将指南导出为 HTML、PDF、DOC、PPT、JSON、Markdown 等格式,便于分享。未来还将支持更多文件类型。 +Tags: +- 指南 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/f/Folge/Folge/1.32.0/Folge.Folge.yaml b/manifests/f/Folge/Folge/1.32.0/Folge.Folge.yaml new file mode 100644 index 000000000000..ac8138a22b69 --- /dev/null +++ b/manifests/f/Folge/Folge/1.32.0/Folge.Folge.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Folge.Folge +PackageVersion: 1.32.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/f/frequency403/OpenSSHGUI/3.0.1/frequency403.OpenSSHGUI.installer.yaml b/manifests/f/frequency403/OpenSSHGUI/3.0.1/frequency403.OpenSSHGUI.installer.yaml new file mode 100644 index 000000000000..b7c6bbc8a2a7 --- /dev/null +++ b/manifests/f/frequency403/OpenSSHGUI/3.0.1/frequency403.OpenSSHGUI.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: frequency403.OpenSSHGUI +PackageVersion: 3.0.1 +InstallerType: portable +InstallModes: +- silent +UpgradeBehavior: install +ReleaseDate: 2026-03-24 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/frequency403/OpenSSH-GUI/releases/download/v3.0.1/OpenSSH-GUI-win-x64.exe + InstallerSha256: 530F1A91C7EA02C3E376DB946B6052F465A5F7C5A474404B033EAF088C3B6240 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/f/frequency403/OpenSSHGUI/3.0.1/frequency403.OpenSSHGUI.locale.en-US.yaml b/manifests/f/frequency403/OpenSSHGUI/3.0.1/frequency403.OpenSSHGUI.locale.en-US.yaml new file mode 100644 index 000000000000..d9e7280c3ff2 --- /dev/null +++ b/manifests/f/frequency403/OpenSSHGUI/3.0.1/frequency403.OpenSSHGUI.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: frequency403.OpenSSHGUI +PackageVersion: 3.0.1 +PackageLocale: en-US +Publisher: frequency403 +PublisherUrl: https://github.com/frequency403 +PublisherSupportUrl: https://github.com/frequency403/OpenSSH-GUI/issues +Author: Oliver Schantz +PackageName: OpenSSH_GUI +PackageUrl: https://github.com/frequency403/OpenSSH-GUI +License: MIT +LicenseUrl: https://github.com/frequency403/OpenSSH-GUI/blob/HEAD/LICENSE +ShortDescription: A simple GUI front-end for OpenSSH for Windows, Linux and Mac! +Description: Discover OpenSSH-GUI, an intuitive graphical interface for OpenSSH, designed for Windows, Linux, and Mac users. Built entirely in C#, this open-source tool simplifies managing SSH connections, keys, and configurations. +Moniker: opensshgui +ReleaseNotes: |- + What's Changed + - Fix naming errors and startup issues with file readability - Release v3.0.1 by @frequency403 in #19 + - Release/v3.0.1 by @frequency403 in #20 + Full Changelog: v3.0.0...v3.0.1 +ReleaseNotesUrl: https://github.com/frequency403/OpenSSH-GUI/releases/tag/v3.0.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/frequency403/OpenSSHGUI/3.0.1/frequency403.OpenSSHGUI.yaml b/manifests/f/frequency403/OpenSSHGUI/3.0.1/frequency403.OpenSSHGUI.yaml new file mode 100644 index 000000000000..e249973c0505 --- /dev/null +++ b/manifests/f/frequency403/OpenSSHGUI/3.0.1/frequency403.OpenSSHGUI.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: frequency403.OpenSSHGUI +PackageVersion: 3.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/Giancan/AutoGRToolkit/6.0.0.0/Giancan.AutoGRToolkit.installer.yaml b/manifests/g/Giancan/AutoGRToolkit/6.0.0.0/Giancan.AutoGRToolkit.installer.yaml new file mode 100644 index 000000000000..caa8f7a07599 --- /dev/null +++ b/manifests/g/Giancan/AutoGRToolkit/6.0.0.0/Giancan.AutoGRToolkit.installer.yaml @@ -0,0 +1,17 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Giancan.AutoGRToolkit +PackageVersion: 6.0.0.0 +InstallModes: + - silent + - silentWithProgress +Installers: + - Architecture: x86 + InstallerType: inno + InstallerUrl: https://github.com/giancan/AutoGR-Toolkit/releases/download/v6.0/AutoGRT-Setup_v6.0_win-x86.exe + InstallerSha256: 1da4f9319a0d36da185786deca8fcc9d7d51e42b2ffdbcc3401b8621e65418f2 + InstallerSwitches: + Silent: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- + SilentWithProgress: /SILENT /SUPPRESSMSGBOXES /NORESTART /SP- +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/Giancan/AutoGRToolkit/6.0.0.0/Giancan.AutoGRToolkit.locale.en-US.yaml b/manifests/g/Giancan/AutoGRToolkit/6.0.0.0/Giancan.AutoGRToolkit.locale.en-US.yaml new file mode 100644 index 000000000000..e8afef25d314 --- /dev/null +++ b/manifests/g/Giancan/AutoGRToolkit/6.0.0.0/Giancan.AutoGRToolkit.locale.en-US.yaml @@ -0,0 +1,16 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Giancan.AutoGRToolkit +PackageVersion: 6.0.0.0 +PackageLocale: en-US +Publisher: Giancan +PackageName: AutoGR Toolkit +License: Freeware +ShortDescription: Toolkit for automatic image georeferencing and more. +ReleaseNotes: | + - First official GitHub release + - Added automatic update system + - Improved image configuration management +ReleaseNotesUrl: https://github.com/giancan/AutoGR-Toolkit/releases/tag/v6.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/Giancan/AutoGRToolkit/6.0.0.0/Giancan.AutoGRToolkit.yaml b/manifests/g/Giancan/AutoGRToolkit/6.0.0.0/Giancan.AutoGRToolkit.yaml new file mode 100644 index 000000000000..0d573357a4b8 --- /dev/null +++ b/manifests/g/Giancan/AutoGRToolkit/6.0.0.0/Giancan.AutoGRToolkit.yaml @@ -0,0 +1,9 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Giancan.AutoGRToolkit +PackageVersion: 6.0.0.0 +DefaultLocale: en-US +ManifestType: version + +ManifestVersion: 1.12.0 + diff --git a/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-0/GitHub.Copilot.Prerelease.installer.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-0/GitHub.Copilot.Prerelease.installer.yaml new file mode 100644 index 000000000000..f176171bdfcc --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-0/GitHub.Copilot.Prerelease.installer.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GitHub.Copilot.Prerelease +PackageVersion: v1.0.13-0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: copilot.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.PowerShell + MinimumVersion: 7.0.0 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/github/copilot-cli/releases/download/v1.0.13-0/copilot-win32-x64.zip + InstallerSha256: EC3F9BC5CE5E64BA9AB95BF36FDDAE4BAF72B75D94F70005F84B3A15E7B8F96F +- Architecture: arm64 + InstallerUrl: https://github.com/github/copilot-cli/releases/download/v1.0.13-0/copilot-win32-arm64.zip + InstallerSha256: 181B7303DC39E5F852E63CFF9EC33AB3847684D482F87ED0EA7FF3BDE44C1FC9 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-27 diff --git a/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-0/GitHub.Copilot.Prerelease.locale.en-US.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-0/GitHub.Copilot.Prerelease.locale.en-US.yaml new file mode 100644 index 000000000000..d98edf7f0734 --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-0/GitHub.Copilot.Prerelease.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GitHub.Copilot.Prerelease +PackageVersion: v1.0.13-0 +PackageLocale: en-US +Publisher: GitHub, Inc. +PublisherUrl: https://github.com/home/ +PublisherSupportUrl: https://support.github.com/ +PrivacyUrl: https://docs.github.com/site-policy/privacy-policies/github-privacy-statement +PackageName: Copilot CLI (Preview) +PackageUrl: https://github.com/github/copilot-cli +License: Proprietary +LicenseUrl: https://docs.github.com/en/site-policy/github-terms/github-pre-release-license-terms +Copyright: Copyright (c) GitHub 2025. All rights reserved. +CopyrightUrl: https://github.com/github/copilot-cli?tab=License-1-ov-file +ShortDescription: GitHub Copilot CLI brings the power of Copilot coding agent directly to your terminal. +Description: GitHub Copilot CLI brings AI-powered coding assistance directly to your command line, enabling you to build, debug, and understand code through natural language conversations. Powered by the same agentic harness as GitHub's Copilot coding agent, it provides intelligent assistance while staying deeply integrated with your GitHub workflow. +Moniker: copilot-prerelease +Tags: +- cli +- copilot +- github +ReleaseNotesUrl: https://github.com/github/copilot-cli/releases/tag/v1.0.13-0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/github/copilot-cli/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-0/GitHub.Copilot.Prerelease.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-0/GitHub.Copilot.Prerelease.yaml new file mode 100644 index 000000000000..c4ec07a27fc5 --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.13-0/GitHub.Copilot.Prerelease.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: GitHub.Copilot.Prerelease +PackageVersion: v1.0.13-0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/GitHub/cli/2.89.0/GitHub.cli.installer.yaml b/manifests/g/GitHub/cli/2.89.0/GitHub.cli.installer.yaml new file mode 100644 index 000000000000..03bb92300579 --- /dev/null +++ b/manifests/g/GitHub/cli/2.89.0/GitHub.cli.installer.yaml @@ -0,0 +1,45 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GitHub.cli +PackageVersion: 2.89.0 +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- gh +ReleaseDate: 2026-03-26 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/cli/cli/releases/download/v2.89.0/gh_2.89.0_windows_386.msi + InstallerSha256: 0A65FE4A573AEFAF328BB5EB5ECD352A2BFC283382F2F8788A9A76732C272DBA + ProductCode: '{9DA92934-6726-4915-BC09-BEC8553F6885}' + AppsAndFeaturesEntries: + - ProductCode: '{9DA92934-6726-4915-BC09-BEC8553F6885}' + UpgradeCode: '{767EC5D2-C8F0-4912-9901-45E21F59A284}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%/GitHub CLI' +- Architecture: x64 + InstallerUrl: https://github.com/cli/cli/releases/download/v2.89.0/gh_2.89.0_windows_amd64.msi + InstallerSha256: E7461C7D75308A932D7335411A210656223A9675144A5F93E4DAA6734A50DF30 + ProductCode: '{22B1775A-6F83-4BC4-9330-0F10CE026003}' + AppsAndFeaturesEntries: + - ProductCode: '{22B1775A-6F83-4BC4-9330-0F10CE026003}' + UpgradeCode: '{8CFB9531-B959-4E1B-AA2E-4AF0FFCC4AF4}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/GitHub CLI' +- Architecture: arm64 + InstallerUrl: https://github.com/cli/cli/releases/download/v2.89.0/gh_2.89.0_windows_arm64.msi + InstallerSha256: 7E89F25CAD17677A1D682486984226CFB9D259CEADD3861307108E863A1078CC + ProductCode: '{E73C61A6-9AE7-410C-81BC-9E5E6294AE5F}' + AppsAndFeaturesEntries: + - ProductCode: '{E73C61A6-9AE7-410C-81BC-9E5E6294AE5F}' + UpgradeCode: '{5D15E95C-F979-41B0-826C-C33C8CB5A7EB}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/GitHub CLI' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/GitHub/cli/2.89.0/GitHub.cli.locale.en-US.yaml b/manifests/g/GitHub/cli/2.89.0/GitHub.cli.locale.en-US.yaml new file mode 100644 index 000000000000..54798a8f8251 --- /dev/null +++ b/manifests/g/GitHub/cli/2.89.0/GitHub.cli.locale.en-US.yaml @@ -0,0 +1,67 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GitHub.cli +PackageVersion: 2.89.0 +PackageLocale: en-US +Publisher: GitHub, Inc. +PublisherUrl: https://github.com/home/ +PublisherSupportUrl: https://support.github.com/ +PrivacyUrl: https://docs.github.com/site-policy/privacy-policies/github-privacy-statement +PackageName: GitHub CLI +PackageUrl: https://cli.github.com/ +License: MIT +LicenseUrl: https://github.com/cli/cli/blob/HEAD/LICENSE +Copyright: Copyright (c) 2019 GitHub Inc. +CopyrightUrl: https://github.com/cli/cli/blob/v2.63.1/LICENSE +ShortDescription: Take GitHub to the command line +Description: GitHub CLI (gh) is a command-line tool that brings pull requests, issues, GitHub Actions, and other GitHub features to your terminal, so you can do all your work in one place. +Moniker: gh +Tags: +- cli +- command-line +- enterprise +- foss +- git +- github +- open-source +- terminal +- tool +- utility +- workflow +ReleaseNotes: |- + What's Changed + - fix(agent-task): resolve Copilot API URL dynamically by @BagToad in #12956 + - Remove auto-labels from issue templates by @tidy-dev in #12972 + - docs: clarify that gh pr edit --add-reviewer can re-request reviews by @joshjohanning in #13021 + - Record agentic invocations in User-Agent header by @williammartin in #13023 + - Add AGENTS.md by @williammartin in #13024 + - chore(deps): bump google.golang.org/grpc from 1.79.2 to 1.79.3 by @dependabot[bot] in #12963 + - Use login-based assignee mutation on github.com by @BagToad in #13009 + - Fix typo: remove extra space in README.md link by @realMelTuc in #12725 + - chore(deps): bump github.com/google/go-containerregistry from 0.20.7 to 0.21.3 by @dependabot[bot] in #12962 + - fix(issue): avoid fetching unnecessary fields for discovery by @babakks in #12884 + - chore(deps): bump github.com/zalando/go-keyring from 0.2.6 to 0.2.8 by @dependabot[bot] in #13031 + - define err in go func instead of use err defined in outer scope by @Lslightly in #13033 + - Consolidate actor-mode signals into ApiActorsSupported by @BagToad in #13025 + - Align triage.md with current triage process by @tidy-dev in #13030 + - Fix acceptance test failures: git identity, headRepository JSON, obsolete traversal test by @BagToad in #13037 + - chore(deps): bump microsoft/setup-msbuild from 2.0.0 to 3.0.0 by @dependabot[bot] in #13005 + - chore(deps): bump mislav/bump-homebrew-formula-action from 3.6 to 4.1 by @dependabot[bot] in #13004 + - chore(deps): bump azure/login from 2.3.0 to 3.0.0 by @dependabot[bot] in #12951 + - Add experimental huh-only prompter gated by GH_EXPERIMENTAL_PROMPTER by @BagToad in #12859 + + New Contributors + - @joshjohanning made their first contribution in #13021 + - @realMelTuc made their first contribution in #12725 + - @Lslightly made their first contribution in #13033 +ReleaseNotesUrl: https://github.com/cli/cli/releases/tag/v2.89.0 +Documentations: +- DocumentLabel: GitHub Docs + DocumentUrl: https://docs.github.com/github-cli/github-cli/ +- DocumentLabel: Manual + DocumentUrl: https://cli.github.com/manual/ +- DocumentLabel: Repository + DocumentUrl: https://github.com/cli/cli +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GitHub/cli/2.89.0/GitHub.cli.yaml b/manifests/g/GitHub/cli/2.89.0/GitHub.cli.yaml new file mode 100644 index 000000000000..38362b2194c1 --- /dev/null +++ b/manifests/g/GitHub/cli/2.89.0/GitHub.cli.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: GitHub.cli +PackageVersion: 2.89.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/Google/WorkspaceCLI/0.22.1/Google.WorkspaceCLI.installer.yaml b/manifests/g/Google/WorkspaceCLI/0.22.1/Google.WorkspaceCLI.installer.yaml new file mode 100644 index 000000000000..b017f6061e8c --- /dev/null +++ b/manifests/g/Google/WorkspaceCLI/0.22.1/Google.WorkspaceCLI.installer.yaml @@ -0,0 +1,19 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Google.WorkspaceCLI +PackageVersion: 0.22.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: gws.exe + PortableCommandAlias: gws +Commands: +- gws +ReleaseDate: 2026-03-25 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/googleworkspace/cli/releases/download/v0.22.1/google-workspace-cli-x86_64-pc-windows-msvc.zip + InstallerSha256: 5E33F26556DF86411959E0F07CD51CAA87B4EAA413B14A385C9EFD828B5B1739 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/Google/WorkspaceCLI/0.22.1/Google.WorkspaceCLI.locale.en-US.yaml b/manifests/g/Google/WorkspaceCLI/0.22.1/Google.WorkspaceCLI.locale.en-US.yaml new file mode 100644 index 000000000000..d7b74749c568 --- /dev/null +++ b/manifests/g/Google/WorkspaceCLI/0.22.1/Google.WorkspaceCLI.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Google.WorkspaceCLI +PackageVersion: 0.22.1 +PackageLocale: en-US +Publisher: Google LLC +PublisherUrl: https://about.google/ +PublisherSupportUrl: https://github.com/googleworkspace/cli/issues +Author: Google LLC +PackageName: Google Workspace CLI +PackageUrl: https://github.com/googleworkspace/cli +License: Apache-2.0 +LicenseUrl: https://github.com/googleworkspace/cli/blob/HEAD/LICENSE +ShortDescription: One command-line tool for Drive, Gmail, Calendar, Sheets, Docs, Chat, Admin, and more. Dynamically built from Google Discovery Service. Includes AI agent skills. +Moniker: gws +Tags: +- agent-skills +- ai-agent +- automation +- cli +- discovery-api +- gemini-cli-extension +- google-admin +- google-api +- google-calendar +- google-chat +- google-docs +- google-drive +- google-sheets +- google-workspace +- google-workspace-cli +ReleaseNotes: |- + Patch Changes + - 6a45832: Sync generated skills with latest Google Discovery API specs +ReleaseNotesUrl: https://github.com/googleworkspace/cli/releases/tag/v0.22.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/Google/WorkspaceCLI/0.22.1/Google.WorkspaceCLI.yaml b/manifests/g/Google/WorkspaceCLI/0.22.1/Google.WorkspaceCLI.yaml new file mode 100644 index 000000000000..0c990af97375 --- /dev/null +++ b/manifests/g/Google/WorkspaceCLI/0.22.1/Google.WorkspaceCLI.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Google.WorkspaceCLI +PackageVersion: 0.22.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/GordonBeeming/CopilotHere/2026.03.22.463/GordonBeeming.CopilotHere.installer.yaml b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.463/GordonBeeming.CopilotHere.installer.yaml new file mode 100644 index 000000000000..082a55319ed1 --- /dev/null +++ b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.463/GordonBeeming.CopilotHere.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GordonBeeming.CopilotHere +PackageVersion: 2026.03.22.463 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: copilot_here.exe + PortableCommandAlias: copilot_here +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/GordonBeeming/copilot_here/releases/download/cli-v2026.03.22.463-266de0e/copilot_here-win-x64.zip + InstallerSha256: B4A95C5D35ECDC6DA628A662B35693AA7462A107841316AC127FEA498E8E53EA +- Architecture: arm64 + InstallerUrl: https://github.com/GordonBeeming/copilot_here/releases/download/cli-v2026.03.22.463-266de0e/copilot_here-win-arm64.zip + InstallerSha256: 427DB035914C4413DDD7B231CEE170A16BF597C9487A5FAFD6E11151C3C47EFF +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-23 diff --git a/manifests/g/GordonBeeming/CopilotHere/2026.03.22.463/GordonBeeming.CopilotHere.locale.en-US.yaml b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.463/GordonBeeming.CopilotHere.locale.en-US.yaml new file mode 100644 index 000000000000..501f8a7cd864 --- /dev/null +++ b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.463/GordonBeeming.CopilotHere.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GordonBeeming.CopilotHere +PackageVersion: 2026.03.22.463 +PackageLocale: en-US +Publisher: Gordon Beeming +PublisherUrl: https://github.com/GordonBeeming +PublisherSupportUrl: https://github.com/GordonBeeming/copilot_here/issues +PackageName: copilot_here +PackageUrl: https://github.com/GordonBeeming/copilot_here +License: FSL-1.1-MIT +LicenseUrl: https://github.com/GordonBeeming/copilot_here/blob/main/LICENSE +ShortDescription: Run GitHub Copilot CLI in a sandboxed Docker container +Description: |- + copilot_here lets you run GitHub Copilot CLI commands inside a sandboxed Docker container, + keeping your host machine clean and secure. It provides shell function wrappers for Bash, + Zsh, and PowerShell that seamlessly proxy Copilot CLI commands through a containerized environment. +Tags: +- cli +- copilot +- docker +- github +- github-copilot +ReleaseNotesUrl: https://github.com/GordonBeeming/copilot_here/releases/tag/cli-v2026.03.22.463-266de0e +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GordonBeeming/CopilotHere/2026.03.22.463/GordonBeeming.CopilotHere.yaml b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.463/GordonBeeming.CopilotHere.yaml new file mode 100644 index 000000000000..9f0e53916774 --- /dev/null +++ b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.463/GordonBeeming.CopilotHere.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: GordonBeeming.CopilotHere +PackageVersion: 2026.03.22.463 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/GordonBeeming/CopilotHere/2026.03.22.465/GordonBeeming.CopilotHere.installer.yaml b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.465/GordonBeeming.CopilotHere.installer.yaml new file mode 100644 index 000000000000..950dd6db3cf0 --- /dev/null +++ b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.465/GordonBeeming.CopilotHere.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GordonBeeming.CopilotHere +PackageVersion: 2026.03.22.465 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: copilot_here.exe + PortableCommandAlias: copilot_here +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/GordonBeeming/copilot_here/releases/download/cli-v2026.03.22.465-da3103a/copilot_here-win-x64.zip + InstallerSha256: 83D1864E5529D3BCC5A22C81EF400081F3AC07DA7806A19BA9F4A2E372D89E14 +- Architecture: arm64 + InstallerUrl: https://github.com/GordonBeeming/copilot_here/releases/download/cli-v2026.03.22.465-da3103a/copilot_here-win-arm64.zip + InstallerSha256: 2B677453E4DE72FA54E57B0EBCB4CFE4359FA25FDAFD9928E5C283F949ECE160 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-23 diff --git a/manifests/g/GordonBeeming/CopilotHere/2026.03.22.465/GordonBeeming.CopilotHere.locale.en-US.yaml b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.465/GordonBeeming.CopilotHere.locale.en-US.yaml new file mode 100644 index 000000000000..5c067c8b6534 --- /dev/null +++ b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.465/GordonBeeming.CopilotHere.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GordonBeeming.CopilotHere +PackageVersion: 2026.03.22.465 +PackageLocale: en-US +Publisher: Gordon Beeming +PublisherUrl: https://github.com/GordonBeeming +PublisherSupportUrl: https://github.com/GordonBeeming/copilot_here/issues +PackageName: copilot_here +PackageUrl: https://github.com/GordonBeeming/copilot_here +License: FSL-1.1-MIT +LicenseUrl: https://github.com/GordonBeeming/copilot_here/blob/main/LICENSE +ShortDescription: Run GitHub Copilot CLI in a sandboxed Docker container +Description: |- + copilot_here lets you run GitHub Copilot CLI commands inside a sandboxed Docker container, + keeping your host machine clean and secure. It provides shell function wrappers for Bash, + Zsh, and PowerShell that seamlessly proxy Copilot CLI commands through a containerized environment. +Tags: +- cli +- copilot +- docker +- github +- github-copilot +ReleaseNotesUrl: https://github.com/GordonBeeming/copilot_here/releases/tag/cli-v2026.03.22.465-da3103a +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GordonBeeming/CopilotHere/2026.03.22.465/GordonBeeming.CopilotHere.yaml b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.465/GordonBeeming.CopilotHere.yaml new file mode 100644 index 000000000000..37a73d648daf --- /dev/null +++ b/manifests/g/GordonBeeming/CopilotHere/2026.03.22.465/GordonBeeming.CopilotHere.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: GordonBeeming.CopilotHere +PackageVersion: 2026.03.22.465 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/gamigo/WildTangentGamesApp/4.1.1.137/gamigo.WildTangentGamesApp.installer.yaml b/manifests/g/gamigo/WildTangentGamesApp/4.1.1.137/gamigo.WildTangentGamesApp.installer.yaml new file mode 100644 index 000000000000..296beb918e3c --- /dev/null +++ b/manifests/g/gamigo/WildTangentGamesApp/4.1.1.137/gamigo.WildTangentGamesApp.installer.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: gamigo.WildTangentGamesApp +PackageVersion: 4.1.1.137 +InstallerType: exe +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /silent + SilentWithProgress: /silent +UpgradeBehavior: install +ReleaseDate: 2024-02-28 +Installers: +- Architecture: x86 + InstallerUrl: https://stackpathdownload.wildgames.com/Gamesapp/TouchPointInstallers/wildgames/Setup-wildgames.exe + InstallerSha256: F18EA0A86251B57D4B5B8C0173C6945B4EA06B498EC3D20D3C1EEADD9912F569 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/gamigo/WildTangentGamesApp/4.1.1.137/gamigo.WildTangentGamesApp.locale.en-US.yaml b/manifests/g/gamigo/WildTangentGamesApp/4.1.1.137/gamigo.WildTangentGamesApp.locale.en-US.yaml new file mode 100644 index 000000000000..d2785ff9394b --- /dev/null +++ b/manifests/g/gamigo/WildTangentGamesApp/4.1.1.137/gamigo.WildTangentGamesApp.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: gamigo.WildTangentGamesApp +PackageVersion: 4.1.1.137 +PackageLocale: en-US +Publisher: gamigo, Inc. +PublisherUrl: https://company.wildtangent.com/ +# PublisherSupportUrl: https://support.wildtangent.com/hc/en-us +PackageName: Games App touchpoint outer installer +PackageUrl: https://www.wildtangent.com/gamesapp +License: Proprietary (EULA) +LicenseUrl: https://www.wildtangent.com/legal/eula +Copyright: (c) 2026 gamigo Inc All Rights Reserved. +CopyrightUrl: https://www.wildtangent.com/gamesapp#:~:text=All%20Rights%20Reserved +ShortDescription: Play Games Your Way - with the WildTangent Games App +Description: Client launcher for games bought at the WildTangent Games store. +Tags: +- games-store +- hidden-objects +- launcher +- marketplace +- match-3 +- solitaire +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/gamigo/WildTangentGamesApp/4.1.1.137/gamigo.WildTangentGamesApp.yaml b/manifests/g/gamigo/WildTangentGamesApp/4.1.1.137/gamigo.WildTangentGamesApp.yaml new file mode 100644 index 000000000000..5874a0d5b755 --- /dev/null +++ b/manifests/g/gamigo/WildTangentGamesApp/4.1.1.137/gamigo.WildTangentGamesApp.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: gamigo.WildTangentGamesApp +PackageVersion: 4.1.1.137 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 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/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.installer.yaml b/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.installer.yaml new file mode 100644 index 000000000000..756d36c68dbf --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.installer.yaml @@ -0,0 +1,21 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.19 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +ProductCode: NoteDeck +ReleaseDate: 2026-03-27 +AppsAndFeaturesEntries: +- Publisher: notedeck + ProductCode: NoteDeck +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\NoteDeck' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/hitalin/notedeck/releases/download/v0.8.19/NoteDeck-0.8.19-windows-x64-setup.exe + InstallerSha256: D729F4ECF014E1E46722131E57F616FE7D6998C0D471B82182D635A4D970A54A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.locale.en-US.yaml b/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.locale.en-US.yaml new file mode 100644 index 000000000000..0e0446a1b695 --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.19 +PackageLocale: en-US +Publisher: hitalin +PublisherUrl: https://github.com/hitalin +PackageName: NoteDeck +PackageUrl: https://github.com/hitalin/notedeck +License: AGPL-3.0 +LicenseUrl: https://github.com/hitalin/notedeck/blob/main/LICENSE +ShortDescription: A multi-platform deck client for Misskey and its forks +Description: |- + NoteDeck is a deck client for Misskey and its forks. + It provides efficient multi-server timeline viewing with features like local full-text search, + AI integration, and localhost API that are only possible with a native desktop application. +Tags: +- deck +- fediverse +- misskey +- social-media +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.locale.ja-JP.yaml b/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.locale.ja-JP.yaml new file mode 100644 index 000000000000..2d4ea3e9432e --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.locale.ja-JP.yaml @@ -0,0 +1,31 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.19 +PackageLocale: ja-JP +Publisher: hitalin +PublisherUrl: https://github.com/hitalin +PublisherSupportUrl: https://github.com/hitalin/notedeck/issues +PackageName: NoteDeck +PackageUrl: https://github.com/hitalin/notedeck +License: AGPL-3.0 +LicenseUrl: https://github.com/hitalin/notedeck/blob/HEAD/LICENSE +ShortDescription: Misskey とそのフォークに対応したマルチプラットフォーム対応デッキクライアント +Description: |- + NoteDeck は Misskey とそのフォークに対応したデッキクライアントです。 + 複数サーバーのタイムラインを効率よく閲覧でき、ローカル全文検索、AI 統合、localhost API など + デスクトップネイティブならではの機能を備えています。 +Tags: +- deck +- fediverse +- misskey +- social-media +ReleaseNotes: |- + What's Changed + Other Changes + - Release v0.8.19 by @hitalin in #249 + Full Changelog: v0.8.18...v0.8.19 +ReleaseNotesUrl: https://github.com/hitalin/notedeck/releases/tag/v0.8.19 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.yaml b/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.yaml new file mode 100644 index 000000000000..22ad40843ea9 --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.19/Hitalin.NoteDeck.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.19 +DefaultLocale: ja-JP +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.installer.yaml b/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.installer.yaml new file mode 100644 index 000000000000..83e145c0b15c --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.installer.yaml @@ -0,0 +1,21 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.20 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +ProductCode: NoteDeck +ReleaseDate: 2026-03-27 +AppsAndFeaturesEntries: +- Publisher: notedeck + ProductCode: NoteDeck +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\NoteDeck' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/hitalin/notedeck/releases/download/v0.8.20/NoteDeck-0.8.20-windows-x64-setup.exe + InstallerSha256: CEBD40D0B6809FA1ED59AC749DBADE688FDE7785463488D8E76C81171E6648E1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.locale.en-US.yaml b/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.locale.en-US.yaml new file mode 100644 index 000000000000..51cf6696b7eb --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.20 +PackageLocale: en-US +Publisher: hitalin +PublisherUrl: https://github.com/hitalin +PackageName: NoteDeck +PackageUrl: https://github.com/hitalin/notedeck +License: AGPL-3.0 +LicenseUrl: https://github.com/hitalin/notedeck/blob/main/LICENSE +ShortDescription: A multi-platform deck client for Misskey and its forks +Description: |- + NoteDeck is a deck client for Misskey and its forks. + It provides efficient multi-server timeline viewing with features like local full-text search, + AI integration, and localhost API that are only possible with a native desktop application. +Tags: +- deck +- fediverse +- misskey +- social-media +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.locale.ja-JP.yaml b/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.locale.ja-JP.yaml new file mode 100644 index 000000000000..c43d64492d1b --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.locale.ja-JP.yaml @@ -0,0 +1,32 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.20 +PackageLocale: ja-JP +Publisher: hitalin +PublisherUrl: https://github.com/hitalin +PublisherSupportUrl: https://github.com/hitalin/notedeck/issues +PackageName: NoteDeck +PackageUrl: https://github.com/hitalin/notedeck +License: AGPL-3.0 +LicenseUrl: https://github.com/hitalin/notedeck/blob/HEAD/LICENSE +ShortDescription: Misskey とそのフォークに対応したマルチプラットフォーム対応デッキクライアント +Description: |- + NoteDeck は Misskey とそのフォークに対応したデッキクライアントです。 + 複数サーバーのタイムラインを効率よく閲覧でき、ローカル全文検索、AI 統合、localhost API など + デスクトップネイティブならではの機能を備えています。 +Tags: +- deck +- fediverse +- misskey +- social-media +ReleaseNotes: |- + What's Changed + Other Changes + - Release v0.8.20 by @hitalin in #250 + - Release v0.8.20 by @hitalin in #251 + Full Changelog: v0.8.19...v0.8.20 +ReleaseNotesUrl: https://github.com/hitalin/notedeck/releases/tag/v0.8.20 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.yaml b/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.yaml new file mode 100644 index 000000000000..27c338104817 --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/0.8.20/Hitalin.NoteDeck.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 0.8.20 +DefaultLocale: ja-JP +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.14.0/hellodigua.ChatLab.installer.yaml b/manifests/h/hellodigua/ChatLab/0.14.0/hellodigua.ChatLab.installer.yaml new file mode 100644 index 000000000000..188c95e8a657 --- /dev/null +++ b/manifests/h/hellodigua/ChatLab/0.14.0/hellodigua.ChatLab.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: hellodigua.ChatLab +PackageVersion: 0.14.0 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 5c93c6d5-cfd9-53ea-a37a-26c1e3d35c8d +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/hellodigua/ChatLab/releases/download/v0.14.0/ChatLab-0.14.0-setup.exe + InstallerSha256: E287D33146AFAF9492F468F7C64708CA43062811CBB14C32B994D1BB0D9F5071 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/hellodigua/ChatLab/releases/download/v0.14.0/ChatLab-0.14.0-setup.exe + InstallerSha256: E287D33146AFAF9492F468F7C64708CA43062811CBB14C32B994D1BB0D9F5071 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.14.0/hellodigua.ChatLab.locale.en-US.yaml b/manifests/h/hellodigua/ChatLab/0.14.0/hellodigua.ChatLab.locale.en-US.yaml new file mode 100644 index 000000000000..9083a5974ea5 --- /dev/null +++ b/manifests/h/hellodigua/ChatLab/0.14.0/hellodigua.ChatLab.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: hellodigua.ChatLab +PackageVersion: 0.14.0 +PackageLocale: en-US +Publisher: digua +PublisherUrl: https://digua.moe/ +PublisherSupportUrl: https://github.com/hellodigua/ChatLab/issues +PackageName: ChatLab +PackageUrl: https://chatlab.fun/ +License: AGPL-3.0 +LicenseUrl: https://github.com/hellodigua/ChatLab/blob/HEAD/LICENSE +Copyright: Copyright © 2026 ChatLab +ShortDescription: 'A Local-first chat analysis tool: Relive your social memories powered by SQL and AI Agents.' +Description: |- + ChatLab is a free, open-source, and local-first application dedicated to analyzing chat records. Through an AI Agent and a flexible SQL engine, you can freely dissect, query, and even reconstruct your social data. + We refuse to upload your privacy to the cloud; instead, we bring powerful analytics directly to your computer. + Currently supported: Chat record analysis for LINE, WeChat, QQ, WhatsApp, Instagram and Discord. Upcoming support: Messenger, iMessage. + The project is still in early iteration, so there are many bugs and unfinished features. If you encounter any issues, feel free to provide feedback. + Core Features + - 🚀 Ultimate Performance: Utilizing stream computing and multi-threaded parallel architecture, it maintains fluid interaction and response even with millions of chat records. + - 🔒 Privacy Protection: Chat records and configurations are stored in your local database, and all analysis is performed locally (with the exception of AI features). + - 🤖 Intelligent AI Agent: Integrated with 10+ Function Calling tools and supporting dynamic scheduling to deeply excavate interesting insights from chat records. + - 📊 Multi-dimensional Data Visualization: Provides intuitive analysis charts for activity trends, time distribution patterns, member rankings, and more. + - 🧩 Format Standardization: Through a powerful data abstraction layer, it bridges the format differences between various chat applications, allowing any chat records to be analyzed. +Tags: +- chat +- chat-records +ReleaseNotesUrl: https://github.com/hellodigua/ChatLab/releases/tag/v0.14.0 +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://chatlab.fun/usage/how-to-export.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.14.0/hellodigua.ChatLab.locale.zh-CN.yaml b/manifests/h/hellodigua/ChatLab/0.14.0/hellodigua.ChatLab.locale.zh-CN.yaml new file mode 100644 index 000000000000..120748f5149c --- /dev/null +++ b/manifests/h/hellodigua/ChatLab/0.14.0/hellodigua.ChatLab.locale.zh-CN.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: hellodigua.ChatLab +PackageVersion: 0.14.0 +PackageLocale: zh-CN +PackageUrl: https://chatlab.fun/cn/ +ShortDescription: 本地化的聊天记录分析工具,通过 SQL 和 AI Agent 回顾你的社交记忆。 +Description: |- + ChatLab 是一个免费、开源、本地化的,专注于分析聊天记录的应用。通过 AI Agent 和灵活的 SQL 引擎,你可以自由地拆解、查询甚至重构你的社交数据。 + 目前已支持: WhatsApp、LINE、微信、QQ、Discord、Instagram 的聊天记录分析,即将支持: iMessage、Messenger、Kakao Talk。 + 核心特性 + - 🚀 极致性能:使用流式计算与多线程并行架构,就算是百万条级别的聊天记录,依然拥有丝滑交互和响应。 + - 🔒 保护隐私:聊天记录和配置都存在你的本地数据库,所有分析都在本地进行(AI 功能例外)。 + - 🤖 智能 AI Agent:集成 10+ Function Calling 工具,支持动态调度,深度挖掘聊天记录中的更多有趣。 + - 📊 多维数据可视化:提供活跃度趋势、时间规律分布、成员排行等多个维度的直观分析图表。 + - 🧩 格式标准化:通过强大的数据抽象层,抹平不同聊天软件的格式差异,任何聊天记录都能分析。 +Tags: +- 聊天 +- 聊天记录 +ReleaseNotes: |- + What's New + Add API import/export and preset prompts, improve Overview and settings flows, and fix message deduplication, AI conversation flow, and daily trend display. + 更新内容 + 支持通过 API 导入与查询聊天消息,优化总览和设置体验,并修复消息去重、AI 会话与趋势展示等问题。 +ReleaseNotesUrl: https://github.com/hellodigua/ChatLab/releases/tag/v0.9.3 +Documentations: +- DocumentLabel: 用户手册 + DocumentUrl: https://chatlab.fun/cn/usage/how-to-export.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.14.0/hellodigua.ChatLab.yaml b/manifests/h/hellodigua/ChatLab/0.14.0/hellodigua.ChatLab.yaml new file mode 100644 index 000000000000..464119eb5c94 --- /dev/null +++ b/manifests/h/hellodigua/ChatLab/0.14.0/hellodigua.ChatLab.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: hellodigua.ChatLab +PackageVersion: 0.14.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/ImageMagick/Q16-HDRI/7.1.2.17/ImageMagick.Q16-HDRI.installer.yaml b/manifests/i/ImageMagick/Q16-HDRI/7.1.2.17/ImageMagick.Q16-HDRI.installer.yaml deleted file mode 100644 index 5daf259d3b2d..000000000000 --- a/manifests/i/ImageMagick/Q16-HDRI/7.1.2.17/ImageMagick.Q16-HDRI.installer.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: ImageMagick.Q16-HDRI -PackageVersion: 7.1.2.17 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.17763.0 -InstallerType: msix -PackageFamilyName: ImageMagick.Q16-HDRI_b3hnabsze9y3j -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-17/ImageMagick.Q16-HDRI.msixbundle - InstallerSha256: 5319365B557BA1569FBC3E1FA7E7A1E93DE7CDD82D1E3858BDD04FB4B708F4D0 - SignatureSha256: C2D6616C68BC8CF238A961C4AEA62363EFD010B9AEF10D6F1E34DBA767734506 -- Architecture: arm64 - InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-17/ImageMagick.Q16-HDRI.msixbundle - InstallerSha256: 5319365B557BA1569FBC3E1FA7E7A1E93DE7CDD82D1E3858BDD04FB4B708F4D0 - SignatureSha256: C2D6616C68BC8CF238A961C4AEA62363EFD010B9AEF10D6F1E34DBA767734506 -ManifestType: installer -ManifestVersion: 1.10.0 -ReleaseDate: 2026-03-15 diff --git a/manifests/i/ImageMagick/Q16-HDRI/7.1.2.18/ImageMagick.Q16-HDRI.installer.yaml b/manifests/i/ImageMagick/Q16-HDRI/7.1.2.18/ImageMagick.Q16-HDRI.installer.yaml new file mode 100644 index 000000000000..ac9be1d7fa98 --- /dev/null +++ b/manifests/i/ImageMagick/Q16-HDRI/7.1.2.18/ImageMagick.Q16-HDRI.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ImageMagick.Q16-HDRI +PackageVersion: 7.1.2.18 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: msix +PackageFamilyName: ImageMagick.Q16-HDRI_b3hnabsze9y3j +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-18/ImageMagick.Q16-HDRI.msixbundle + InstallerSha256: E8606B27760FEE199C6D4CFF9A922B524079BBF45156A3178F17B88991A8396E + SignatureSha256: 043A85B82E02680A61152A4E42CEFF61B1363518AE2F382EF2681E5DCC53FDBB +- Architecture: arm64 + InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-18/ImageMagick.Q16-HDRI.msixbundle + InstallerSha256: E8606B27760FEE199C6D4CFF9A922B524079BBF45156A3178F17B88991A8396E + SignatureSha256: 043A85B82E02680A61152A4E42CEFF61B1363518AE2F382EF2681E5DCC53FDBB +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-22 diff --git a/manifests/i/ImageMagick/Q16-HDRI/7.1.2.17/ImageMagick.Q16-HDRI.locale.en-US.yaml b/manifests/i/ImageMagick/Q16-HDRI/7.1.2.18/ImageMagick.Q16-HDRI.locale.en-US.yaml similarity index 84% rename from manifests/i/ImageMagick/Q16-HDRI/7.1.2.17/ImageMagick.Q16-HDRI.locale.en-US.yaml rename to manifests/i/ImageMagick/Q16-HDRI/7.1.2.18/ImageMagick.Q16-HDRI.locale.en-US.yaml index 05d7e51c103e..b75ffdc1772b 100644 --- a/manifests/i/ImageMagick/Q16-HDRI/7.1.2.17/ImageMagick.Q16-HDRI.locale.en-US.yaml +++ b/manifests/i/ImageMagick/Q16-HDRI/7.1.2.18/ImageMagick.Q16-HDRI.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: ImageMagick.Q16-HDRI -PackageVersion: 7.1.2.17 +PackageVersion: 7.1.2.18 PackageLocale: en-US Publisher: ImageMagick Studio LLC PublisherUrl: https://github.com/ImageMagick/ImageMagick @@ -20,9 +20,9 @@ Tags: - imagemagick - magick - resize -ReleaseNotesUrl: https://github.com/ImageMagick/ImageMagick/releases/tag/7.1.2-17 +ReleaseNotesUrl: https://github.com/ImageMagick/ImageMagick/releases/tag/7.1.2-18 Documentations: - DocumentLabel: Usage DocumentUrl: https://usage.imagemagick.org/ ManifestType: defaultLocale -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/i/ImageMagick/Q16-HDRI/7.1.2.18/ImageMagick.Q16-HDRI.yaml b/manifests/i/ImageMagick/Q16-HDRI/7.1.2.18/ImageMagick.Q16-HDRI.yaml new file mode 100644 index 000000000000..804e937ec7cf --- /dev/null +++ b/manifests/i/ImageMagick/Q16-HDRI/7.1.2.18/ImageMagick.Q16-HDRI.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: ImageMagick.Q16-HDRI +PackageVersion: 7.1.2.18 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/ImageMagick/Q16/7.1.2.17/ImageMagick.Q16.installer.yaml b/manifests/i/ImageMagick/Q16/7.1.2.17/ImageMagick.Q16.installer.yaml deleted file mode 100644 index e9c1e4672c6c..000000000000 --- a/manifests/i/ImageMagick/Q16/7.1.2.17/ImageMagick.Q16.installer.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: ImageMagick.Q16 -PackageVersion: 7.1.2.17 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.17763.0 -InstallerType: msix -PackageFamilyName: ImageMagick.Q16_b3hnabsze9y3j -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-17/ImageMagick.Q16.msixbundle - InstallerSha256: 12121173157A46FFA2DAB332AF206D6047505EA7AADD237B20F305832DA5894C - SignatureSha256: C7731FF8D7959247D55933C2FCDEBA5BD54DF0C4F5661587C0AFD5037BFE79A3 -- Architecture: arm64 - InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-17/ImageMagick.Q16.msixbundle - InstallerSha256: 12121173157A46FFA2DAB332AF206D6047505EA7AADD237B20F305832DA5894C - SignatureSha256: C7731FF8D7959247D55933C2FCDEBA5BD54DF0C4F5661587C0AFD5037BFE79A3 -ManifestType: installer -ManifestVersion: 1.10.0 -ReleaseDate: 2026-03-15 diff --git a/manifests/i/ImageMagick/Q16/7.1.2.18/ImageMagick.Q16.installer.yaml b/manifests/i/ImageMagick/Q16/7.1.2.18/ImageMagick.Q16.installer.yaml new file mode 100644 index 000000000000..46c5b5b1f5e9 --- /dev/null +++ b/manifests/i/ImageMagick/Q16/7.1.2.18/ImageMagick.Q16.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ImageMagick.Q16 +PackageVersion: 7.1.2.18 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: msix +PackageFamilyName: ImageMagick.Q16_b3hnabsze9y3j +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-18/ImageMagick.Q16.msixbundle + InstallerSha256: 1C0F26AE0ECA2F966B3FFE9CC830E808487ABED133D609A9AB468C4BA7857EFD + SignatureSha256: 1DB007F7CFD3882B11A291FBC3054D8620A43113BEB13D7A4664D005E211FEDD +- Architecture: arm64 + InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-18/ImageMagick.Q16.msixbundle + InstallerSha256: 1C0F26AE0ECA2F966B3FFE9CC830E808487ABED133D609A9AB468C4BA7857EFD + SignatureSha256: 1DB007F7CFD3882B11A291FBC3054D8620A43113BEB13D7A4664D005E211FEDD +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-22 diff --git a/manifests/i/ImageMagick/Q16/7.1.2.17/ImageMagick.Q16.locale.en-US.yaml b/manifests/i/ImageMagick/Q16/7.1.2.18/ImageMagick.Q16.locale.en-US.yaml similarity index 83% rename from manifests/i/ImageMagick/Q16/7.1.2.17/ImageMagick.Q16.locale.en-US.yaml rename to manifests/i/ImageMagick/Q16/7.1.2.18/ImageMagick.Q16.locale.en-US.yaml index 96a4bc93fcd1..65cfd6cd2969 100644 --- a/manifests/i/ImageMagick/Q16/7.1.2.17/ImageMagick.Q16.locale.en-US.yaml +++ b/manifests/i/ImageMagick/Q16/7.1.2.18/ImageMagick.Q16.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: ImageMagick.Q16 -PackageVersion: 7.1.2.17 +PackageVersion: 7.1.2.18 PackageLocale: en-US Publisher: ImageMagick Studio LLC PublisherUrl: https://github.com/ImageMagick/ImageMagick @@ -20,9 +20,9 @@ Tags: - imagemagick - magick - resize -ReleaseNotesUrl: https://github.com/ImageMagick/ImageMagick/releases/tag/7.1.2-17 +ReleaseNotesUrl: https://github.com/ImageMagick/ImageMagick/releases/tag/7.1.2-18 Documentations: - DocumentLabel: Usage DocumentUrl: https://usage.imagemagick.org/ ManifestType: defaultLocale -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/i/ImageMagick/Q16/7.1.2.18/ImageMagick.Q16.yaml b/manifests/i/ImageMagick/Q16/7.1.2.18/ImageMagick.Q16.yaml new file mode 100644 index 000000000000..ea45f1f8749a --- /dev/null +++ b/manifests/i/ImageMagick/Q16/7.1.2.18/ImageMagick.Q16.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: ImageMagick.Q16 +PackageVersion: 7.1.2.18 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/ImageMagick/Q8/7.1.2.17/ImageMagick.Q8.installer.yaml b/manifests/i/ImageMagick/Q8/7.1.2.17/ImageMagick.Q8.installer.yaml deleted file mode 100644 index f6760bff061f..000000000000 --- a/manifests/i/ImageMagick/Q8/7.1.2.17/ImageMagick.Q8.installer.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: ImageMagick.Q8 -PackageVersion: 7.1.2.17 -Platform: -- Windows.Desktop -MinimumOSVersion: 10.0.17763.0 -InstallerType: msix -PackageFamilyName: ImageMagick.Q8_b3hnabsze9y3j -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-17/ImageMagick.Q8.msixbundle - InstallerSha256: AEBDBA571A45BF7EE99D310D6E1F64BE87D0C5833A83AF680CBC066A5FEC884B - SignatureSha256: 80358B20217AEEA458A360798A418D8CD01092808BC674881C542118E292C434 -- Architecture: arm64 - InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-17/ImageMagick.Q8.msixbundle - InstallerSha256: AEBDBA571A45BF7EE99D310D6E1F64BE87D0C5833A83AF680CBC066A5FEC884B - SignatureSha256: 80358B20217AEEA458A360798A418D8CD01092808BC674881C542118E292C434 -ManifestType: installer -ManifestVersion: 1.10.0 -ReleaseDate: 2026-03-15 diff --git a/manifests/i/ImageMagick/Q8/7.1.2.18/ImageMagick.Q8.installer.yaml b/manifests/i/ImageMagick/Q8/7.1.2.18/ImageMagick.Q8.installer.yaml new file mode 100644 index 000000000000..daa7e653649b --- /dev/null +++ b/manifests/i/ImageMagick/Q8/7.1.2.18/ImageMagick.Q8.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ImageMagick.Q8 +PackageVersion: 7.1.2.18 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: msix +PackageFamilyName: ImageMagick.Q8_b3hnabsze9y3j +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-18/ImageMagick.Q8.msixbundle + InstallerSha256: 7006FD9A6AAE9DBC2041401941A6F8C4001064149AEB1A0E653BED2AEFA1D577 + SignatureSha256: 31D4A8AD431FD0689C31B4540083D1EC0B7A41D0E5722911880C4B66FAE3B9AF +- Architecture: arm64 + InstallerUrl: https://github.com/ImageMagick/ImageMagick/releases/download/7.1.2-18/ImageMagick.Q8.msixbundle + InstallerSha256: 7006FD9A6AAE9DBC2041401941A6F8C4001064149AEB1A0E653BED2AEFA1D577 + SignatureSha256: 31D4A8AD431FD0689C31B4540083D1EC0B7A41D0E5722911880C4B66FAE3B9AF +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-22 diff --git a/manifests/i/ImageMagick/Q8/7.1.2.17/ImageMagick.Q8.locale.en-US.yaml b/manifests/i/ImageMagick/Q8/7.1.2.18/ImageMagick.Q8.locale.en-US.yaml similarity index 83% rename from manifests/i/ImageMagick/Q8/7.1.2.17/ImageMagick.Q8.locale.en-US.yaml rename to manifests/i/ImageMagick/Q8/7.1.2.18/ImageMagick.Q8.locale.en-US.yaml index 877997943c3e..f8f9385352a3 100644 --- a/manifests/i/ImageMagick/Q8/7.1.2.17/ImageMagick.Q8.locale.en-US.yaml +++ b/manifests/i/ImageMagick/Q8/7.1.2.18/ImageMagick.Q8.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: ImageMagick.Q8 -PackageVersion: 7.1.2.17 +PackageVersion: 7.1.2.18 PackageLocale: en-US Publisher: ImageMagick Studio LLC PublisherUrl: https://github.com/ImageMagick/ImageMagick @@ -20,9 +20,9 @@ Tags: - imagemagick - magick - resize -ReleaseNotesUrl: https://github.com/ImageMagick/ImageMagick/releases/tag/7.1.2-17 +ReleaseNotesUrl: https://github.com/ImageMagick/ImageMagick/releases/tag/7.1.2-18 Documentations: - DocumentLabel: Usage DocumentUrl: https://usage.imagemagick.org/ ManifestType: defaultLocale -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/i/ImageMagick/Q8/7.1.2.17/ImageMagick.Q8.yaml b/manifests/i/ImageMagick/Q8/7.1.2.18/ImageMagick.Q8.yaml similarity index 53% rename from manifests/i/ImageMagick/Q8/7.1.2.17/ImageMagick.Q8.yaml rename to manifests/i/ImageMagick/Q8/7.1.2.18/ImageMagick.Q8.yaml index 929486fde55e..00496aa2b2ce 100644 --- a/manifests/i/ImageMagick/Q8/7.1.2.17/ImageMagick.Q8.yaml +++ b/manifests/i/ImageMagick/Q8/7.1.2.18/ImageMagick.Q8.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: ImageMagick.Q8 -PackageVersion: 7.1.2.17 +PackageVersion: 7.1.2.18 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.installer.yaml b/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.installer.yaml new file mode 100644 index 000000000000..cd6490b03f96 --- /dev/null +++ b/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.installer.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: IntegrIT.Hackolade +PackageVersion: 8.10.0 +InstallerType: inno +Scope: machine +Protocols: +- hcks +ProductCode: '{6BD03139-BBF4-44E0-ABA3-6D0461958CEC}_is1' +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://s3-eu-west-1.amazonaws.com/hackolade/previous/v8.10.0/Hackolade-win64-setup-signed.exe + InstallerSha256: 95CAA281386C42AC2B7E558E0E5534EEB842016B7644609B7859FEAF2C718179 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.locale.en-US.yaml b/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.locale.en-US.yaml new file mode 100644 index 000000000000..7988bfcd9540 --- /dev/null +++ b/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: IntegrIT.Hackolade +PackageVersion: 8.10.0 +PackageLocale: en-US +Publisher: Hackolade +PublisherUrl: https://hackolade.com/ +PublisherSupportUrl: https://hackolade.com/help/index.html +PrivacyUrl: https://hackolade.com/privacy.html +Author: IntegrIT SA/NV +PackageName: Hackolade +PackageUrl: https://hackolade.com/download.html +License: Proprietary +LicenseUrl: https://hackolade.com/eulas.html +Copyright: Copyright © 2016-2026 Hackolade. All rights reserved. +CopyrightUrl: https://hackolade.com/eulas.html +ShortDescription: Polyglot Data Modeling for SQL and NoSQL databases, APIs, and storage formats +Description: |- + Hackolade Studio is an intuitive yet powerful application to perform the visually data modeling and schema design of many SQL and NoSQL databases, APIS, and storage formats. + Hackolade Studio combines the graphical representation of collections in an Entity Relationship Diagram, with the graphical representation of the JSON Schema definition of each collection in a hierarchical schema view. Together, these graphical representations provide the schema model for data-at-rest and data-in-motion, plus the documentation of that model. The application is specifically designed around the powerful nature of JSON nested sub-objects and denormalization. + The software facilitates the work of, and the dialog between analysts, architects, designers, developers, testers, DBAs, and operators of systems that are based on such technologies. It also can generate schema scripts and documentation in a variety of machine-readable formats (DDLs, JSON Schema, Avro, Parquet, Protobuf, ...) as well as database instances, or human-readable formats such as HTML, Markdown, and PDF reports. + Instead of having to find data structures tacitly described in the application code, the creation of a database model helps to evaluate design options beforehand, think through the implications of different alternatives, and recognize potential hurdles before committing sizable amounts of development effort. A database model helps plan ahead, in order to minimize later rework. In the end, the modeling process accelerates development, increases quality of the application, and reduces execution risks. +Tags: +- database +- db +- modeling +ReleaseNotes: |- + - Tech refresh: replaced electron-store to leverage safeStorage API with Credential Manager (Windows), KeyChain (Mac), and Gnome Keyring or KWallet (Linux) + - PowerDesigner: added support for reverse-engineering Oracle check constraints + - Plugin Manager: streamlined plugin update process to reduce risks of anti-virus interference + - Cassandra: allowed addition or removal of keys as deviations on partition key of a derived entity + - DeltaLake/Databricks: created hardened fallback for reverse-engineering discovery of large tables + - SQLServer: added support for procedures in properties, forward- and reverse-engineering from DDL and instance +ReleaseNotesUrl: https://hackolade.com/versionInfo/ReadMe.txt +PurchaseUrl: https://hackolade.com/pricing.html +Documentations: +- DocumentLabel: Videos + DocumentUrl: https://hackolade.com/videos.html +- DocumentLabel: FAQ + DocumentUrl: https://hackolade.com/help/FAQandtroubleshooting.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.locale.zh-CN.yaml b/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.locale.zh-CN.yaml new file mode 100644 index 000000000000..773e1f0619c6 --- /dev/null +++ b/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.locale.zh-CN.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: IntegrIT.Hackolade +PackageVersion: 8.10.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 涵盖 SQL 与 NoSQL 数据库、API 及存储格式的多语言数据建模 +Description: |- + Hackolade Studio 是一款直观而强大的应用程序,用于对多种 SQL 和 NoSQL 数据库、API 及存储格式进行可视化数据建模与模式设计。 + Hackolade Studio 将实体关系图中集合的图形化表示,与层次化模式视图中每个集合的 JSON Schema 定义图形化表示相结合。这些图形化表示共同构成了静态数据和动态数据的模式模型,并附带该模型的文档说明。该应用专门围绕 JSON 嵌套子对象和非规范化的强大特性进行设计。 + 该软件促进了基于此类技术的系统分析师、架构师、设计师、开发人员、测试人员、数据库管理员和运维人员之间的工作协作与对话。它还能生成多种机器可读格式(DDL、JSON Schema、Avro、Parquet、Protobuf 等)的模式脚本和文档,以及数据库实例;同时支持 HTML、Markdown 和 PDF 报告等人可读格式的输出。 + 通过创建数据库模型,用户无需从应用程序代码中隐式推导数据结构,即可预先评估设计方案、深入思考不同替代方案的影响,并在投入大量开发工作前识别潜在障碍。数据库模型有助于提前规划,从而最大限度减少后期返工。最终,建模过程能加速开发进度、提升应用质量并降低实施风险。 +Tags: +- 建模 +- 数据库 +Documentations: +- DocumentLabel: 视频 + DocumentUrl: https://hackolade.com/videos.html +- DocumentLabel: 常见问题 + DocumentUrl: https://hackolade.com/help/FAQandtroubleshooting.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.yaml b/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.yaml new file mode 100644 index 000000000000..5da47cecb219 --- /dev/null +++ b/manifests/i/IntegrIT/Hackolade/8.10.0/IntegrIT.Hackolade.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: IntegrIT.Hackolade +PackageVersion: 8.10.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.installer.yaml b/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.installer.yaml new file mode 100644 index 000000000000..8e9792cbd438 --- /dev/null +++ b/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.installer.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: JetBrains.Gateway +PackageVersion: "2026.1" +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +Protocols: +- jetbrains-gateway +ProductCode: JetBrains Gateway 2026.1 +ReleaseDate: 2026-03-27 +AppsAndFeaturesEntries: +- DisplayVersion: 261.22158.290 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2026.1.exe + InstallerSha256: D53068F535003C083F592C0B0B801D34A184BD1F7C23E4527DAB82688F7D6F3B +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2026.1.exe + InstallerSha256: D53068F535003C083F592C0B0B801D34A184BD1F7C23E4527DAB82688F7D6F3B + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2026.1-aarch64.exe + InstallerSha256: EFFC8C680EE41ED4CD35F5C4A27B14869F20E0711E262C61DADB338DE5F4DDD9 +- Architecture: arm64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/idea/gateway/JetBrainsGateway-2026.1-aarch64.exe + InstallerSha256: EFFC8C680EE41ED4CD35F5C4A27B14869F20E0711E262C61DADB338DE5F4DDD9 + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.locale.en-US.yaml b/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.locale.en-US.yaml new file mode 100644 index 000000000000..cda164ddfb03 --- /dev/null +++ b/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: JetBrains.Gateway +PackageVersion: "2026.1" +PackageLocale: en-US +Publisher: JetBrains s.r.o. +PublisherUrl: https://www.jetbrains.com/ +PublisherSupportUrl: https://www.jetbrains.com/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: JetBrains Gateway +PackageUrl: https://www.jetbrains.com/remote-development/gateway/ +License: Proprietary +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2026 JetBrains s.r.o. +ShortDescription: Your single entry point to all remote development environments +Moniker: jetbrains-gateway +Tags: +- gateway +- jetbrains +- remote +- remotedev +- ssh +ReleaseNotes: |- + The Gateway 2026.1 is out. What's New in Remote Development 2026.1: + - The Code With Me plugin is now unbundled. + - The plugin manager features various improvements, including new installation and uninstallation options in the context menu, clearer visibility into the state and location of installed plugins, and a smoother plugin installation flow. + - Issues related to the Undo and Mark Modified actions have been fixed. + - Several UI improvements related to Lux technology have been implemented. + - The run configuration UI has been improved, resolving issues with infinite loading and ensuring configuration names display correctly. + - Additional fixes address minor issues with the Search Everywhere window, error highlighting, the Commit window UI, and UI freezes. +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://www.jetbrains.com/help/idea/remote-development-a.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.locale.zh-CN.yaml b/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.locale.zh-CN.yaml new file mode 100644 index 000000000000..cdbf13074d19 --- /dev/null +++ b/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.locale.zh-CN.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: JetBrains.Gateway +PackageVersion: "2026.1" +PackageLocale: zh-CN +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PackageUrl: https://www.jetbrains.com/zh-cn/remote-development/gateway/ +License: 专有软件 +ShortDescription: 所有远程开发环境的单一入口点 +Tags: +- gateway +- jetbrains +- ssh +- 远程 +- 远程开发 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://www.jetbrains.com/help/idea/remote-development-a.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.yaml b/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.yaml new file mode 100644 index 000000000000..ef8128393088 --- /dev/null +++ b/manifests/j/JetBrains/Gateway/2026.1/JetBrains.Gateway.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: JetBrains.Gateway +PackageVersion: "2026.1" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.installer.yaml b/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.installer.yaml new file mode 100644 index 000000000000..83e0197feb5c --- /dev/null +++ b/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.installer.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: JetBrains.PhpStorm +PackageVersion: "2026.1" +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +FileExtensions: +- css +- html +- ipr +- js +- php +- phtml +ProductCode: PhpStorm 2026.1 +ReleaseDate: 2026-03-26 +AppsAndFeaturesEntries: +- DisplayVersion: 261.22158.283 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.jetbrains.com/webide/PhpStorm-2026.1.exe + InstallerSha256: 6429633909C81AB72D55D0C9190244C3329A32C7C53D9364BC3F90780538E1B7 +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/webide/PhpStorm-2026.1.exe + InstallerSha256: 6429633909C81AB72D55D0C9190244C3329A32C7C53D9364BC3F90780538E1B7 + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://download.jetbrains.com/webide/PhpStorm-2026.1-aarch64.exe + InstallerSha256: 7EF9E5689791B473AEDD6F580E98809BC0365546ED15812891E102F275CF6CDF +- Architecture: arm64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/webide/PhpStorm-2026.1-aarch64.exe + InstallerSha256: 7EF9E5689791B473AEDD6F580E98809BC0365546ED15812891E102F275CF6CDF + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.locale.en-US.yaml b/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.locale.en-US.yaml new file mode 100644 index 000000000000..40f58a6cda67 --- /dev/null +++ b/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.locale.en-US.yaml @@ -0,0 +1,56 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: JetBrains.PhpStorm +PackageVersion: "2026.1" +PackageLocale: en-US +Publisher: JetBrains s.r.o. +PublisherUrl: https://www.jetbrains.com/ +PublisherSupportUrl: https://www.jetbrains.com/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: PhpStorm +PackageUrl: https://www.jetbrains.com/phpstorm/ +License: Proprietary +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2026 JetBrains s.r.o. +ShortDescription: Lightning-smart PHP IDE +Description: PhpStorm is a development tool for PHP and Web projects. It’s a perfect PHP IDE for working with Laravel, Symfony, Drupal, WordPress, and other frameworks. +Moniker: phpstorm +Tags: +- code +- coding +- css +- develop +- development +- htm +- html +- ide +- javascript +- js +- php +- programming +- web +- webpage +ReleaseNotes: |- + PhpStorm 2026.1 is now available! + The highlights of this update include: + + - PhpStorm MCP tools. + - An ACP registry of available coding agents. + - Next-edit suggestions. + - Optimized project indexing. + - Support for Laravel Livewire 4, Filament v4, eloquent enhancements, and more. + Explore the full list of the new features on our What's New page. + The full list of changes in PhpStorm 2026.1 is available in the release notes. + + - Download PhpStorm + - Tweet us + - Report bugs to our issue tracker +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/WI-A-231736312 +PurchaseUrl: https://www.jetbrains.com/phpstorm/buy/ +Documentations: +- DocumentLabel: Resources + DocumentUrl: https://www.jetbrains.com/phpstorm/resources/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.locale.zh-CN.yaml b/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.locale.zh-CN.yaml new file mode 100644 index 000000000000..09e97387250d --- /dev/null +++ b/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.locale.zh-CN.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: JetBrains.PhpStorm +PackageVersion: "2026.1" +PackageLocale: zh-CN +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PackageUrl: https://www.jetbrains.com/zh-cn/phpstorm/ +License: 专有软件 +ShortDescription: 高效智能的 PHP IDE +Description: PhpStorm 是一个用于 PHP 和 Web 项目的开发工具。它是一个完美的 PHP IDE,支持 Laravel、Symfony、Drupal、WordPress 等各种主流框架。 +Tags: +- css +- htm +- html +- javascript +- js +- php +- 代码 +- 开发 +- 编程 +- 网页 +- 集成开发环境 +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/WI-A-231736312 +PurchaseUrl: https://www.jetbrains.com/zh-cn/phpstorm/buy/ +Documentations: +- DocumentLabel: 资源 + DocumentUrl: https://www.jetbrains.com/zh-cn/phpstorm/resources/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.yaml b/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.yaml new file mode 100644 index 000000000000..25f694ed9d4b --- /dev/null +++ b/manifests/j/JetBrains/PhpStorm/2026.1/JetBrains.PhpStorm.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: JetBrains.PhpStorm +PackageVersion: "2026.1" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/QodanaCLI/2025.3.3/JetBrains.QodanaCLI.installer.yaml b/manifests/j/JetBrains/QodanaCLI/2025.3.3/JetBrains.QodanaCLI.installer.yaml deleted file mode 100644 index 6dcee6909c6c..000000000000 --- a/manifests/j/JetBrains/QodanaCLI/2025.3.3/JetBrains.QodanaCLI.installer.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Created with komac v2.8.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: JetBrains.QodanaCLI -PackageVersion: 2025.3.3 -InstallerLocale: en-US -InstallerType: zip -NestedInstallerType: portable -NestedInstallerFiles: -- RelativeFilePath: qodana.exe -ReleaseDate: 2026-03-10 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/JetBrains/qodana-cli/releases/download/v2025.3.3/qodana_windows_x86_64.zip - InstallerSha256: C05CEBE5A13C654CCECD86DD83A083291ADC7902984555EAE5A7FF231BCD50BD -- Architecture: arm64 - InstallerUrl: https://github.com/JetBrains/qodana-cli/releases/download/v2025.3.3/qodana_windows_arm64.zip - InstallerSha256: F038DF713DE4E34676A32A19ED4BA182570CE4692A5757D66745955481558554 -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/j/JetBrains/QodanaCLI/2025.3.3/JetBrains.QodanaCLI.locale.en-US.yaml b/manifests/j/JetBrains/QodanaCLI/2025.3.3/JetBrains.QodanaCLI.locale.en-US.yaml deleted file mode 100644 index 3e93acaea108..000000000000 --- a/manifests/j/JetBrains/QodanaCLI/2025.3.3/JetBrains.QodanaCLI.locale.en-US.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Created with komac v2.8.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: JetBrains.QodanaCLI -PackageVersion: 2025.3.3 -PackageLocale: en-US -Publisher: JetBrains s.r.o. -PublisherUrl: https://www.jetbrains.com/ -PublisherSupportUrl: https://www.jetbrains.com/help/qodana/getting-started.html -PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy -Author: JetBrains s.r.o. -PackageName: Qodana CLI -PackageUrl: https://www.jetbrains.com/qodana -License: Apache-2.0 -LicenseUrl: https://github.com/JetBrains/qodana-cli/blob/HEAD/LICENSE -Copyright: Copyright © JetBrains s.r.o. -ShortDescription: Qodana is a simple cross-platform command-line tool to run Qodana linters anywhere with minimum effort required. -Moniker: qodana -Tags: -- code-quality -- code-scanning -- jetbrains -- qodana -ReleaseNotes: "Changelog\n- :bug: QD-13907 Switch GitHub authorization to use GitHub App instead of PAT for releasing (#870)\nInstall\n💡 The Qodana CLI is distributed and run as a binary. The Qodana linters with inspections are Docker Images or, starting from version 2023.2, your local/downloaded by CLI IDE installations (experimental support).\n- To run Qodana with a container (the default mode in CLI), you must have Docker or Podman installed and running locally to support this: https://www.docker.com/get-started, and, if you are using Linux, you should be able to run Docker from the current (non-root) user (https://docs.docker.com/engine/install/linux-postinstall/#manage-docker-as-a-non-root-user)\n- To run Qodana without a container, you must have the IDE installed locally to provide the IDE installation path to the CLI or specify the product code, and CLI will try to download the IDE automatically (experimental support).\n\nmacOS and Linux\nInstall with Homebrew (recommended)\nbrew install jetbrains/utils/qodana\n\nInstall with our installer\ncurl -fsSL https://jb.gg/qodana-cli/install | bash\n\nAlso, you can install nightly or any other version (e.g. v2023.2.9) the following way:\ncurl -fsSL https://jb.gg/qodana-cli/install | bash -s -- nightly\n\nWindows\nInstall with Windows Package Manager (recommended)\nwinget install -e --id JetBrains.QodanaCLI\n\nInstall with Chocolatey\nchoco install qodana\n\nInstall with Scoop\nscoop bucket add jetbrains \nscoop install qodana\n\nAnywhere else\nAlternatively, you can install the latest binary (or the apt/rpm/deb/archlinux package) from this page.Update\nUpdate to the latest version depends on how you choose to install qodana on your machine.Update with Homebrew\nbrew upgrade qodana\n\nUpdate with Scoop\nscoop update qodana\n\nUpdate with Chocolatey\nchoco upgrade qodana\n\nUpdate on Linux and macOS with the installer script\ncurl -fsSL https://jb.gg/qodana-cli/install | bash\n\nAlternatively, you can grab the latest binary (or the apt/rpm/deb package) from this page." -ReleaseNotesUrl: https://github.com/JetBrains/qodana-cli/releases/tag/v2025.3.3 -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/k/keathmilligan/unfk/1.3.0/keathmilligan.unfk.installer.yaml b/manifests/k/keathmilligan/unfk/1.3.0/keathmilligan.unfk.installer.yaml new file mode 100644 index 000000000000..6ff1c964cf60 --- /dev/null +++ b/manifests/k/keathmilligan/unfk/1.3.0/keathmilligan.unfk.installer.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: keathmilligan.unfk +PackageVersion: 1.3.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: + - RelativeFilePath: unfk.exe + PortableCommandAlias: unfk +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/keathmilligan/unfk/releases/download/v1.3.0/unfk-1.3.0-x86_64-pc-windows-msvc.zip + InstallerSha256: EA30BA2EA92402E71CF50A412878731C14711A30178C9D455371FDF127D60A43 + - Architecture: arm64 + InstallerUrl: https://github.com/keathmilligan/unfk/releases/download/v1.3.0/unfk-1.3.0-aarch64-pc-windows-msvc.zip + InstallerSha256: 25A841286DF5A4AA5398D6FB1565256E1FCD0AA353234D5B99A9A15F0B2B1364 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/k/keathmilligan/unfk/1.3.0/keathmilligan.unfk.locale.en-US.yaml b/manifests/k/keathmilligan/unfk/1.3.0/keathmilligan.unfk.locale.en-US.yaml new file mode 100644 index 000000000000..ddfea36dfea7 --- /dev/null +++ b/manifests/k/keathmilligan/unfk/1.3.0/keathmilligan.unfk.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: keathmilligan.unfk +PackageVersion: 1.3.0 +PackageLocale: en-US +Publisher: keathmilligan +PackageName: unfk +License: MIT License +ShortDescription: CLI tool for scanning and correcting formatting and encoding issues across a wide variety of file types +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/i/ImageMagick/Q16/7.1.2.17/ImageMagick.Q16.yaml b/manifests/k/keathmilligan/unfk/1.3.0/keathmilligan.unfk.yaml similarity index 74% rename from manifests/i/ImageMagick/Q16/7.1.2.17/ImageMagick.Q16.yaml rename to manifests/k/keathmilligan/unfk/1.3.0/keathmilligan.unfk.yaml index 26db94019e66..5faea797c4d3 100644 --- a/manifests/i/ImageMagick/Q16/7.1.2.17/ImageMagick.Q16.yaml +++ b/manifests/k/keathmilligan/unfk/1.3.0/keathmilligan.unfk.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: ImageMagick.Q16 -PackageVersion: 7.1.2.17 +PackageIdentifier: keathmilligan.unfk +PackageVersion: 1.3.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/l/LeiGod/LeiGodAcc/11.3.1.5/LeiGod.LeiGodAcc.installer.yaml b/manifests/l/LeiGod/LeiGodAcc/11.3.1.5/LeiGod.LeiGodAcc.installer.yaml index 658b9b381fed..98098bc97034 100644 --- a/manifests/l/LeiGod/LeiGodAcc/11.3.1.5/LeiGod.LeiGodAcc.installer.yaml +++ b/manifests/l/LeiGod/LeiGodAcc/11.3.1.5/LeiGod.LeiGodAcc.installer.yaml @@ -3,14 +3,14 @@ PackageIdentifier: LeiGod.LeiGodAcc PackageVersion: 11.3.1.5 -InstallerType: portable +InstallerType: exe InstallModes: - interactive - silent - silentWithProgress InstallerSwitches: - Silent: /S - SilentWithProgress: /S + Silent: /VERYSILENT + SilentWithProgress: /VERYSILENT UpgradeBehavior: install ReleaseDate: 2026-03-27 Installers: diff --git a/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.installer.yaml b/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.installer.yaml new file mode 100644 index 000000000000..9f1c6f081959 --- /dev/null +++ b/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: leezer3.OpenBVE +PackageVersion: 1.12.1.2 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +ProductCode: '{D617A45D-C2F6-44D1-A85C-CA7FFA91F7FC}_is1' +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/leezer3/OpenBVE/releases/download/1.12.1.2/openBVE-1.12.1.2-setup.exe + InstallerSha256: 8087E8DB7847F2B0E7FE0B6BDE1FB02F5DA505CD6299120A3323F769C6895D0A +- Architecture: x64 + InstallerUrl: https://github.com/leezer3/OpenBVE/releases/download/1.12.1.2/openBVE-1.12.1.2-setup.exe + InstallerSha256: 8087E8DB7847F2B0E7FE0B6BDE1FB02F5DA505CD6299120A3323F769C6895D0A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.locale.en-US.yaml b/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.locale.en-US.yaml new file mode 100644 index 000000000000..09eaff052762 --- /dev/null +++ b/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: leezer3.OpenBVE +PackageVersion: 1.12.1.2 +PackageLocale: en-US +Publisher: The OpenBVE Project +PublisherUrl: https://openbve-project.net/ +PublisherSupportUrl: https://github.com/leezer3/OpenBVE/issues +Author: Christopher Lees +PackageName: openBVE +PackageUrl: https://openbve-project.net/ +License: BSD-2-Clause +LicenseUrl: https://openbve-project.net/copyright/ +Copyright: © 2007 - 2026 The OpenBVE Project, and released into the Public Domain. +ShortDescription: A license-free, open source, free of charge train driving simulator. +Description: |- + OpenBVE is a license-free, open source, free of charge train driving simulator. + This program includes detailed per-car simulation of the brake systems, friction, air resistance, toppling and more. In 3D cabs, the driving experience is augmented with forces that shake your simulated body upon acceleration and braking, as well as in curves. Besides that, OpenBVE features a 3D positional sound system best enjoyed with surround speakers, train exteriors and timetables for the current run. Finally, via the main menu, routes and trains be easily selected to start a new session, the controls can be configured to keyboard or joystick devices, and a variety of options can be selected. + Compared to other simulators of the genre, especially compared to commercial games, OpenBVE has its main focus on realism, not necessarily on user-friendliness. You should be willing to study operational manuals for the routes and trains you want to drive, and will in many cases not get along by just memorizing a few keystrokes. If you can identify with this focus, OpenBVE might be the right simulator for you. +Tags: +- game +- gaming +- metro +- railway +- simulate +- simulation +- simulator +- subway +- train +- underground +ReleaseNotes: |- + Significant Changes: + - Change: Set BVETSHacks after a BVE5 route is loaded, so that train specific fixes are used. + - Change: Update id-ID translation (Aditiya Afrizal) + - Change: Some improvements to Loksim3D object parsing. + - Fix: Issue with couplers in CarXML Convertor. + - Fix: Beacon reciever position incorrect for XML trains. +ReleaseNotesUrl: https://github.com/leezer3/OpenBVE/releases/tag/1.12.1.2 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/leezer3/OpenBVE/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.locale.zh-CN.yaml b/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.locale.zh-CN.yaml new file mode 100644 index 000000000000..ea1a5ac212f7 --- /dev/null +++ b/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.locale.zh-CN.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: leezer3.OpenBVE +PackageVersion: 1.12.1.2 +PackageLocale: zh-CN +ShortDescription: 免许可证、开源、免费的火车驾驶模拟器。 +Description: |- + OpenBVE 是一款免许可证、开源、免费的火车驾驶模拟器。 + 该程序包括制动系统、摩擦、空气阻力、倾覆等每辆车的详细模拟。在三维驾驶室中,加速、制动和转弯时模拟车身的晃动会增强驾驶体验。除此以外,OpenBVE 还配备了 3D 定位声音系统,可通过搭配环绕扬声器、列车外部和当前运行时刻表以体验最佳效果。最后,可以在主菜单轻松选择路线和列车以开始新的会话,可以将键盘或操纵杆设备配置为控制器,同时还有各种选项可选。 + 与其它同类模拟器,尤其是与商业游戏相比,OpenBVE 的重点在于逼真性而不一定是用户友好性。你可能需要研究你所驾驶的路线和列车的操作手册,并且在大多数情况下仅靠记住几个按键是无法完成任务的。如果你能认同这一重点,OpenBVE 可能就是适合你的模拟器。 +Tags: +- 列车 +- 地铁 +- 模拟 +- 模拟器 +- 游戏 +- 火车 +- 轨道交通 +- 铁路 +ReleaseNotesUrl: https://github.com/leezer3/OpenBVE/releases/tag/1.12.1.2 +Documentations: +- DocumentLabel: 维基 + DocumentUrl: https://github.com/leezer3/OpenBVE/wiki +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.yaml b/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.yaml new file mode 100644 index 000000000000..adb896b1944a --- /dev/null +++ b/manifests/l/leezer3/OpenBVE/1.12.1.2/leezer3.OpenBVE.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: leezer3.OpenBVE +PackageVersion: 1.12.1.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/lupeydev/cgedownload/1.0.0.0/lupeydev.cgedownload.installer.yaml b/manifests/l/lupeydev/cgedownload/1.0.0.0/lupeydev.cgedownload.installer.yaml new file mode 100644 index 000000000000..b5d0c64a0406 --- /dev/null +++ b/manifests/l/lupeydev/cgedownload/1.0.0.0/lupeydev.cgedownload.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: lupeydev.cgedownload +PackageVersion: 1.0.0.0 +InstallerType: portable +Commands: +- cge-download +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Lupeydev/cge-ripper/releases/download/Main/cge-download.exe + InstallerSha256: 71D0F109D4E9493223C50AA6A65FC3311F1EC520DDF701A57CCA0935AE6C348D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/lupeydev/cgedownload/1.0.0.0/lupeydev.cgedownload.locale.en-US.yaml b/manifests/l/lupeydev/cgedownload/1.0.0.0/lupeydev.cgedownload.locale.en-US.yaml new file mode 100644 index 000000000000..c09e17a52149 --- /dev/null +++ b/manifests/l/lupeydev/cgedownload/1.0.0.0/lupeydev.cgedownload.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: lupeydev.cgedownload +PackageVersion: 1.0.0.0 +PackageLocale: en-US +Publisher: lupeydev +PackageName: cgedownload +License: GPL-3.0 +ShortDescription: cge downloader for cge-193 interloper arg by anomidae +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/lupeydev/cgedownload/1.0.0.0/lupeydev.cgedownload.yaml b/manifests/l/lupeydev/cgedownload/1.0.0.0/lupeydev.cgedownload.yaml new file mode 100644 index 000000000000..4977e3012016 --- /dev/null +++ b/manifests/l/lupeydev/cgedownload/1.0.0.0/lupeydev.cgedownload.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: lupeydev.cgedownload +PackageVersion: 1.0.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.installer.yaml b/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.installer.yaml new file mode 100644 index 000000000000..a4a33c44464f --- /dev/null +++ b/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.installer.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: MicroDicom.DICOMViewer +PackageVersion: "2026.1" +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +Protocols: +- microdicom +FileExtensions: +- dcm +- dcm30 +Installers: +- Architecture: x86 + InstallerUrl: https://www.microdicom.com/downloads/Software/MicroDicom-2026.1-win32.exe + InstallerSha256: E47E0701FBD45E569E7AE3C244E448B52AB9C4E28606C149F266B9E8634AF147 + ProductCode: MicroDicom32 + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\MicroDicom' +- Architecture: x64 + InstallerUrl: https://www.microdicom.com/downloads/Software/MicroDicom-2026.1-x64.exe + InstallerSha256: FCECC4D983FF640768DF3E12AC8FA70865D3CFFD615F6167F4D2B52F099EAC18 + ProductCode: MicroDicom64 + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\MicroDicom' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.locale.en-US.yaml b/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.locale.en-US.yaml new file mode 100644 index 000000000000..a1ab88e8509b --- /dev/null +++ b/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.locale.en-US.yaml @@ -0,0 +1,103 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: MicroDicom.DICOMViewer +PackageVersion: "2026.1" +PackageLocale: en-US +Publisher: MicroDicom +PublisherUrl: https://www.microdicom.com/ +PublisherSupportUrl: https://www.microdicom.com/support.html +PrivacyUrl: https://www.microdicom.com/privacy.html +Author: MicroDicom Ltd. +PackageName: MicroDicom DICOM Viewer +PackageUrl: https://www.microdicom.com/dicom-viewer.html +License: Proprietary +LicenseUrl: https://www.microdicom.com/eula.html +Copyright: Copyright © 2007-2026 MicroDicom All rights reserved. +CopyrightUrl: https://www.microdicom.com/eula.html +ShortDescription: Free DICOM viewer for primary processing and preservation of medical images in DICOM format. +Description: |- + Most of the available commercial software for manipulation of DICOM images is expensive by itself or distributed with expensive medical machinery. Free software packages on the other side are often non-intuitive and with limited functionality. There is a common situation for the user when more than one package is needed to achieve feasible results. + The subject of the presented work is the design and implementation of a software package aimed to overcome the problem stated above. MicroDicom DICOM Viewer is equipped with most common tools for manipulation of DICOM images, and it has an intuitive user interface. It also has the advantage of being free for use and accessible to everyone. + Features: + - Open and save medical images in DICOM format + - Read DICOM files of any manufacturer and modality + - Supported DICOM images - without compression and RLE, JPEG Lossy, JPEG Lossless, JPEG 2000 Lossy, JPEG2000 Lossless compressions + - Structured Reports + - MPEG-2 and MPEG-4 transfer syntaxes + - Encapsulated PDF + - Open DICOM directory files + - Display patient list from DICOMDIR + - Load via drag & drop or double-click + - Open images in common graphic formats (JPEG, BMP, PNG, GIF, TIFF) + - Convert DICOM images to JPEG, BMP, PNG, GIF, TIFF + - Convert DICOM images to movie file format(AVI, WMV and MP4) + - Copy DICOM image to clipboard + - Anonymize DICOM images + - Image orientation in overlay + - Mouse-driven level-window, user-defined window presets + - Zooming and panning + - Medical image processing operation + - Measurements and annotations + - Brightness/contrast control + - Image resize, Rotate, Flip, Invert + - Displaying DICOM attributes of selected image + - Suited for patient CD/DVD to show DICOM images without installation + - Run on Windows Vista, Windows 7, Windows 8, Windows 8.1, Windows 10 and Windows 11 + - Available for x86 and x64 platforms + - Portable version + - And much more +Tags: +- dicom +- medical-imaging +ReleaseNotes: |- + - New features: + Reworked folder scanning — now 5x faster. + Added error display in the exporter. + Removed the progress dialog when downloading from a PACS server; progress is now shown in the status bar only. + Faster opening of DICOMDIR files. + Selection is now preserved while searching tags in the DICOM Tags pane. + Added "Advanced" option to the "Send to PACS" entry in the DICOM Browser context menu. + Added Crash Reporting. + - Improvements: + Improved the progress bar when loading images and MPR series. + Improved the progress bar when importing to the database. + Improved list controls throughout the application: removed the ability to sort by clicking column headers where sorting is unnecessary, and added tag sorting in the Tag Dictionary dialog. + Reworked the status bar progress indicator. + Reworked timeouts in DICOMWeb. + Refactoring. + Updated the manual. + Removed unused UTF-8 conversion and made file format copying occur only when loading an image. This change reduces memory usage by half during folder scanning for DICOM files. + Faster server shutdown. Fixed an issue that occurred when starting to download a large file and closing the application. + - Defect fixing: + Fixed an issue where byte transfer was not added when downloading only a single image. + Fixed a crash when sending to PACS, along with several related improvements. + Fixed an issue where searching on a non-existent DICOM server would cause the application to hang after closing the dialog. + Fixed a potential crash. + Fixed a regression with exporting video files. + Fixed string decoding issues under Wine. + Fixed issues with text encoding. + Fixed an issue where the root item in the DICOM Browser was displayed twice. + Fixed an empty icon appearing when the splash screen is shown. + Fixed a regression with opening common image formats. + Fixed a crash when playing animations. + Fixed an issue with opening images using JPEG2000 compression with multi-fragment frame reassembly. + Fixed a crash. + Fixed an issue with opening files using JPEG2000 compression. + Fixed an issue with downloading from a PACS server. + Fixed an issue with measurements using the Ellipse tool. + Fixed an issue with MP4 export failing on Windows 7. + Fixed an issue with incorrect date and time when the application is first launched. + Fixed a regression with opening DICOM files that are not part of the DICOM Part 10 standard. + Fixed a regression with editing DICOM tags after downloading a file from a PACS server. +ReleaseNotesUrl: https://www.microdicom.com/dicom-viewer/history.html +PurchaseUrl: https://www.microdicom.com/online-store.html +Documentations: +- DocumentLabel: User Manual + DocumentUrl: https://www.microdicom.com/dicom-viewer-user-manual/ +- DocumentLabel: Quick Tutorials + DocumentUrl: https://www.microdicom.com/quick-tutorials-how-to.html +- DocumentLabel: Video Tutorials + DocumentUrl: https://www.microdicom.com/video-tutorials.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.locale.zh-CN.yaml b/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.locale.zh-CN.yaml new file mode 100644 index 000000000000..0e6c56b91aab --- /dev/null +++ b/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.locale.zh-CN.yaml @@ -0,0 +1,51 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: MicroDicom.DICOMViewer +PackageVersion: "2026.1" +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 免费 DICOM 查看器,用于 DICOM 格式医学影像的初级处理与保存。 +Description: |- + 市面上大多数用于处理 DICOM 图像的商业软件本身价格昂贵,或需搭配昂贵的医疗设备使用。而免费软件往往操作复杂且功能有限,用户常需组合多个软件才能完成基础操作。 + 本项目的核心目标是设计与开发一套解决上述问题的软件方案。MicroDicom DICOM Viewer 集成了最常用的 DICOM 图像处理工具,拥有直观的用户界面,并具有免费开放的核心优势。 + 功能特性: + - 支持 DICOM 格式医学图像的打开与保存 + - 兼容各厂商设备及成像模态的 DICOM 文件 + - 支持压缩类型:无压缩/RLE/JPEG 有损/JPEG 无损/JPEG2000 有损/JPEG2000 无损 + - 结构化报告处理 + - MPEG-2 与 MPEG-4 传输语法 + - 内嵌 PDF 解析 + - 可打开 DICOM 目录文件 + - 从 DICOMDIR 显示患者列表 + - 拖放/双击快速载入 + - 支持通用图像格式(JPEG/BMP/PNG/GIF/TIFF) + - DICOM 转 JPEG/BMP/PNG/GIF/TIFF + - DICOM 转视频格式(AVI/WMV/MP4) + - 复制 DICOM 图像至剪贴板 + - DICOM 图像匿名化处理 + - 叠加层图像方向标识 + - 鼠标驱动窗宽窗位调节/自定义预设值 + - 缩放与平移 + - 医学图像处理运算 + - 测量与标注工具 + - 亮度/对比度调节 + - 图像缩放/旋转/翻转/反相 + - 显示选定图像的 DICOM 属性 + - 无需安装即可直接运行患者 CD/DVD 中的 DICOM 图像 + - 兼容 Windows Vista/7/8/8.1/10/11 + - 支持 x86 与 x64 平台 + - 提供便携版本 + - 及其他多项功能 +Tags: +- dicom +- 医学成像 +Documentations: +- DocumentLabel: 用户手册 + DocumentUrl: https://www.microdicom.com/dicom-viewer-user-manual/ +- DocumentLabel: 快速入门 + DocumentUrl: https://www.microdicom.com/quick-tutorials-how-to.html +- DocumentLabel: 视频教程 + DocumentUrl: https://www.microdicom.com/video-tutorials.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.yaml b/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.yaml new file mode 100644 index 000000000000..6ede6b4a9666 --- /dev/null +++ b/manifests/m/MicroDicom/DICOMViewer/2026.1/MicroDicom.DICOMViewer.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: MicroDicom.DICOMViewer +PackageVersion: "2026.1" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.installer.yaml b/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.installer.yaml new file mode 100644 index 000000000000..b844a6db2a49 --- /dev/null +++ b/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.installer.yaml @@ -0,0 +1,39 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.XMLNotepad +PackageVersion: 2.9.0.19 +UpgradeBehavior: install +FileExtensions: +- xml +Installers: +- Platform: + - Windows.Universal + - Windows.Desktop + MinimumOSVersion: 10.0.17763.0 + Architecture: neutral + InstallerType: msix + InstallerUrl: https://github.com/microsoft/XmlNotepad/releases/download/2.9.0.19/XmlNotepadPackage_2.9.0.19_AnyCPU.msixbundle + InstallerSha256: 31A7596B2D3204B5F53BB1CE32EDBB2520E8CAB6A8621E37995E2075B0E49439 + SignatureSha256: 605D07484A17050CEF272BEDBB4FB6036B539810FB90115871EECD04C34F481E + PackageFamilyName: 43906ChrisLovett.XmlNotepad_hndwmj480pefj +- InstallerLocale: en-US + Architecture: x86 + InstallerType: zip + NestedInstallerType: wix + NestedInstallerFiles: + - RelativeFilePath: XmlNotepadSetup.msi + InstallerUrl: https://github.com/microsoft/XmlNotepad/releases/download/2.9.0.19/XmlNotepadSetup.zip + InstallerSha256: 10D88394AC4F189CA9FC73AB4DEC1AD8AC32B1DBE0C85870FD4F29C1FB8E3888 + InstallerSwitches: + InstallLocation: APPINSTALLROOTDIR="" + ProductCode: '{D18C44C6-DCA6-49E0-9CA6-D3DF30614083}' + AppsAndFeaturesEntries: + - DisplayName: XmlNotepad + Publisher: Lovett Software + DisplayVersion: 2.9.0.19 + ProductCode: '{D18C44C6-DCA6-49E0-9CA6-D3DF30614083}' + UpgradeCode: '{14C1B5E8-3198-4AF2-B4BC-351017A109D3}' +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-27 diff --git a/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.locale.en-US.yaml b/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.locale.en-US.yaml new file mode 100644 index 000000000000..c82bcaad2cf9 --- /dev/null +++ b/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.XMLNotepad +PackageVersion: 2.9.0.19 +PackageLocale: en-US +Publisher: Chris Lovett +PublisherUrl: https://github.com/microsoft/XmlNotepad +PublisherSupportUrl: https://github.com/microsoft/XmlNotepad/issues +PrivacyUrl: https://privacy.microsoft.com/privacystatement +Author: Chris Lovett +PackageName: XmlNotepad +PackageUrl: https://microsoft.github.io/XmlNotepad/ +License: MIT +LicenseUrl: https://github.com/microsoft/XmlNotepad/blob/HEAD/LICENSE +Copyright: © 2026 Microsoft Corporation. All Rights Reserved. +CopyrightUrl: https://www.microsoft.com/legal/intellectualproperty/trademarks +ShortDescription: XML Notepad provides a simple intuitive User Interface for browsing and editing XML documents. +Description: XML Notepad is the result of a promise Chris Lovett made to a friend at Microsoft. The original XML Notepad shipped in back in 1998, written by Murray Low in C++. Later on it fell behind in support for XML standards and, because we didn't have time to fix it, we pulled the downloader. But Murray apparently did such a nice job that MSDN was inundated with requests to put the notepad back up, so they asked for a replacement. +Moniker: xmlnotepad +Tags: +- extensible-markup-language +- xml +- xml-editor +- xml-files +- xml-statistics +ReleaseNotesUrl: https://github.com/microsoft/XmlNotepad/releases/tag/2.9.0.19 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/microsoft/XmlNotepad/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.locale.zh-CN.yaml b/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.locale.zh-CN.yaml new file mode 100644 index 000000000000..3b73c9c92f97 --- /dev/null +++ b/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.locale.zh-CN.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.XMLNotepad +PackageVersion: 2.9.0.19 +PackageLocale: zh-CN +PrivacyUrl: https://privacy.microsoft.com/zh-cn/privacystatement +ShortDescription: XML Notepad 为浏览和编辑 XML 文档提供了一个简单直观的用户界面。 +Description: XML Notepad 源自 Chris Lovett 对一位微软的朋友的承诺。最初的 XML Notepad 由 Murray Low 用 C++ 编写,于 1998 年推出。后来,它在支持 XML 标准方面落后了,由于我们没有时间来修复它,所以就撤下了下载程序。但 Murray 的工作非常出色,以至于 MSDN 收到了大量恢复请求,因此他们要求有一个替代品。 +Tags: +- xml +- xml文件 +- xml统计 +- xml编辑器 +- 可扩展标记语言 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.yaml b/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.yaml new file mode 100644 index 000000000000..e211657ee959 --- /dev/null +++ b/manifests/m/Microsoft/XMLNotepad/2.9.0.19/Microsoft.XMLNotepad.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Microsoft.XMLNotepad +PackageVersion: 2.9.0.19 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.installer.yaml b/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.installer.yaml new file mode 100644 index 000000000000..1c7a023c9e7c --- /dev/null +++ b/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.installer.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mixxx.Mixxx +PackageVersion: 2.5.6 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALL_ROOT="" +UpgradeBehavior: install +ProductCode: '{CE707519-18E2-4C74-84AD-75CF8D37B635}' +ReleaseDate: 2026-03-25 +AppsAndFeaturesEntries: +- ProductCode: '{CE707519-18E2-4C74-84AD-75CF8D37B635}' + UpgradeCode: '{921DC99C-4DCF-478D-B950-50685CB9E6BE}' +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.mixxx.org/releases/2.5.6/mixxx-2.5.6-win64.msi + InstallerSha256: 0D1F01A1F5C2E4D4180CD462E60365D0230B405808E7BD2B6625B62A53A29C72 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.locale.en-US.yaml b/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.locale.en-US.yaml new file mode 100644 index 000000000000..65eec3344385 --- /dev/null +++ b/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.locale.en-US.yaml @@ -0,0 +1,89 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mixxx.Mixxx +PackageVersion: 2.5.6 +PackageLocale: en-US +Publisher: Mixxx Project +PublisherUrl: https://mixxx.org/ +PublisherSupportUrl: https://mixxx.org/support/ +PrivacyUrl: https://mixxx.org/privacy-policy/ +PackageName: Mixxx +PackageUrl: https://mixxx.org/download/ +License: GPL-2.0-or-later +LicenseUrl: https://github.com/mixxxdj/mixxx/blob/HEAD/LICENSE +Copyright: Copyright (C) 2001-2026 Mixxx Development Team +ShortDescription: Free and open source DJ software for Windows, macOS, and Linux +Description: |- + Mixxx integrates the tools DJs need to perform creative live mixes with digital music files. + Whether you are a new DJ with just a laptop or an experienced turntablist, Mixxx can support your style and techniques of mixing. +Moniker: mixxx +Tags: +- dj +- mixing +ReleaseNotes: |- + We're proud to announce a new stable release of Mixxx: version 2.5.6. This version contains updates and fixes for issues, as well as improvements to effects, controller mappings, and overall stability. This should be the last 2.5 release. Note that this version is the successor of version 2.5.4 because version 2.5.5 has been skipped following an issue in the release workflow. We'd like to thank all users for their feedback and emphasize once again the importance of testing and reporting. Please join our team to help make Mixxx even better. + Enjoy Mixxx! + Important updates and fixes in 2.5.6 + - The 'not' operator in the search function was not working correctly. + - Rhythmbox imports were not functioning as expected. + - History playlists now allow track file export. + - Performance when restoring large track selections has been improved. + - White Noise and Echo effects have been enhanced, and crackling in QuickEffect has been fixed. + - Controller mappings for Numark Mixtrack 3, Pioneer CDJ-350, Reloop Beatmix 2/4, and Traktor Kontrol Z1 have been updated. + - Scratching with keylock enabled has been fixed. + - Flatpak packaging files have been added for easier installation on Linux. + 2.5.6 Changelog + The complete changelog can be found here. + Library + - Search: fix 'not' operator #15923 #15918 + - Rhythmbox: fix imports #15798 #15770 + - WTrackMenu: warn before opening more than 10 tracks in file browser #15828 #15819 + - Fix "dataChanged() called with an invalid index range" warning #15937 #14610 + - History: allow track file export #16074 + - History: prevent deletion of current history after purging tracks #15991 + - Tracks: improve performance when restoring large track selections #15973 + Effects + - White Noise: remove DC offset #15979 + - White Noise: improve gain responds #15949 + - Echo: fix distortion bug #15985 #15835 + - Echo: fix ramping of the send and feedback parameters #16006 + - QuickEffect: fix crackling noise when switching #15796 #15794 + - Glitch: remove unnecessary cast to integer #16068 + - Reverb: fix ramping of the send parameter #16001 + Controller Mappings + - Numark Mixtrack 3: update scripts #14180 + - Pioneer CDJ-350: fix incorrect name in controller mapping #15683 + - Reloop Beatmix 2/4: implement shift+jog wheel seek #15575 #12334 + - Traktor Kontrol Z1: fix crossfader cut #14451 #14450 #15945 + - Traktor S4Mk2: check for deck undefined #14445 + Engine + - Fix scratching with keylock enabled and mapping using scratch2 #15845 + - AudioUnit: fix crash due to off-by-one error in parameter syncing #15919 + - AudioUnit: fix startup crash by loading out-of-process #16106 + - FX units: resolve issue preventing use on all samplers #15971 #15799 + - Fix false positive "First sound has been moved!" warnings log message #16054 + - Beats: fix rare off-by-one beat issue with quantize and sync #13262 #16086 + Preferences + - Interface: use main window screen to detect if skin fits #15824 #15823 + Skins + - Time widget: make ShowSeconds only show seconds, no extra locale info #15805 + - Search related menu: fix search click trigger #15912 + - Tracks: avoid re-sorting table when purging/hiding tracks #15872 #12565 + Target support + - Add Flatpak packaging files #15695 #15922 #15935 + - Fail early if not running from Visual Studio environment #14623 + - Make Debian non-free optional #15895 + - Debian: remove 'qml6-module-qtquick-nativestyle #15771 + - Ubuntu: retire Plucky Puffin 25.04 #15926 + Miscellaneous + - Fix mixxx-test build to find mad.h #15803 + - Num deck streamline #14112 #16009 +ReleaseNotesUrl: https://mixxx.org/news/2026-03-27-mixxx-2_5_6-released +Documentations: +- DocumentLabel: Manual + DocumentUrl: https://manual.mixxx.org/ +- DocumentLabel: Wiki + DocumentUrl: https://github.com/mixxxdj/mixxx/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.locale.zh-CN.yaml b/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.locale.zh-CN.yaml new file mode 100644 index 000000000000..5daee84f52ea --- /dev/null +++ b/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.locale.zh-CN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mixxx.Mixxx +PackageVersion: 2.5.6 +PackageLocale: zh-CN +ShortDescription: 适用于 Windows、macOS 和 Linux 的免费开源 DJ 软件 +Description: |- + Mixxx 集成了 DJ 使用数字音乐文件进行创意现场混音所需的工具。 + 无论你是只有一台笔记本电脑的 DJ 新手,还是经验丰富的唱机手,Mixxx 都能支持你的混音风格和技术。 +Tags: +- dj +- 混音 +ReleaseNotesUrl: https://mixxx.org/news/2026-03-27-mixxx-2_5_6-released +Documentations: +- DocumentLabel: 手册 + DocumentUrl: https://manual.mixxx.org/ +- DocumentLabel: Wiki + DocumentUrl: https://github.com/mixxxdj/mixxx/wiki +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.yaml b/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.yaml new file mode 100644 index 000000000000..395e1490373e --- /dev/null +++ b/manifests/m/Mixxx/Mixxx/2.5.6/Mixxx.Mixxx.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mixxx.Mixxx +PackageVersion: 2.5.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/MobiSystems/MobiOffice/11.40.15329.0/MobiSystems.MobiOffice.installer.yaml b/manifests/m/MobiSystems/MobiOffice/11.40.15329.0/MobiSystems.MobiOffice.installer.yaml new file mode 100644 index 000000000000..40e9f0fd2d24 --- /dev/null +++ b/manifests/m/MobiSystems/MobiOffice/11.40.15329.0/MobiSystems.MobiOffice.installer.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: MobiSystems.MobiOffice +PackageVersion: 11.40.15329.0 +Platform: +- Windows.Universal +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: msix +PackageFamilyName: MobiSystems.MobiOffice_bvgb55c3tfatp +Installers: +- Architecture: x64 + InstallerUrl: https://cfg.mobisystems.com/update/com.mobisystems.windows.appx.mobioffice/11.40.15329/full/MobiOffice.Package_11.40.15329.0_x64.msixbundle + InstallerSha256: 4FBBDAE1FB7F534D0DA466AC7180952F1308FFEDD19D2EB845CA8EA9CCC9EF76 + SignatureSha256: F531AD1CD4C9E6B6734E4D9EE15F8622B2EFAEBF0EC4219FAB126AD92FBB6E47 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/MobiSystems/MobiOffice/11.40.15329.0/MobiSystems.MobiOffice.locale.en-US.yaml b/manifests/m/MobiSystems/MobiOffice/11.40.15329.0/MobiSystems.MobiOffice.locale.en-US.yaml new file mode 100644 index 000000000000..ffe44420bb2c --- /dev/null +++ b/manifests/m/MobiSystems/MobiOffice/11.40.15329.0/MobiSystems.MobiOffice.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: MobiSystems.MobiOffice +PackageVersion: 11.40.15329.0 +PackageLocale: en-US +Publisher: MobiSystems, Inc. +PublisherUrl: https://www.mobisystems.com +PublisherSupportUrl: https://www.mobisystems.com/support/ +PrivacyUrl: https://mobisystems.com/en-us/privacy-policy +PackageName: MobiOffice +PackageUrl: https://www.mobisystems.com/office-suite/ +License: Proprietary +LicenseUrl: https://mobisystems.com/en-us/terms-of-use +ShortDescription: Office suite compatible with Word, Excel, and PowerPoint +Description: MobiOffice is a full-featured office suite for creating, editing, and managing documents, spreadsheets, and presentations. Compatible with Microsoft Office formats including DOCX, XLSX, and PPTX. +Tags: +- office +- documents +- spreadsheets +- presentations +- word +- excel +- powerpoint +- docx +- xlsx +- pptx +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MobiSystems/MobiOffice/11.40.15329.0/MobiSystems.MobiOffice.yaml b/manifests/m/MobiSystems/MobiOffice/11.40.15329.0/MobiSystems.MobiOffice.yaml new file mode 100644 index 000000000000..cfb97294450c --- /dev/null +++ b/manifests/m/MobiSystems/MobiOffice/11.40.15329.0/MobiSystems.MobiOffice.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: MobiSystems.MobiOffice +PackageVersion: 11.40.15329.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.installer.yaml b/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.installer.yaml new file mode 100644 index 000000000000..647b7d7c7928 --- /dev/null +++ b/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: MoonshotAI.KimiCLI +PackageVersion: 1.27.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: kimi.exe +Commands: +- kimi +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/MoonshotAI/kimi-cli/releases/download/1.27.0/kimi-1.27.0-x86_64-pc-windows-msvc.zip + InstallerSha256: E83B838C89BB830A7DCAAD020873DA4B854CC1F5DD9C064C633F2604C3EA1617 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.locale.en-US.yaml b/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.locale.en-US.yaml new file mode 100644 index 000000000000..5e039f1ffcca --- /dev/null +++ b/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.locale.en-US.yaml @@ -0,0 +1,48 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: MoonshotAI.KimiCLI +PackageVersion: 1.27.0 +PackageLocale: en-US +Publisher: Beijing Yuezhi Dark Face Technology Co., Ltd. +PublisherUrl: https://www.moonshot.ai/ +PublisherSupportUrl: https://github.com/MoonshotAI/kimi-cli/issues +PrivacyUrl: https://www.kimi.com/user/agreement/userPrivacy?version=v2 +Author: Beijing Yuezhi Dark Face Technology Co., Ltd. +PackageName: Kimi CLI +PackageUrl: https://www.kimi.com/coding/docs/en/kimi-cli.html +License: Apache-2.0 +LicenseUrl: https://github.com/MoonshotAI/kimi-cli/blob/HEAD/LICENSE +ShortDescription: A new CLI agent that can help you with your software development tasks and terminal operations. +Moniker: kimi-cli +Tags: +- agent +- agentic +- ai +- chatbot +- code +- coding +- kimi +- large-language-model +- llm +- programming +ReleaseNotes: |- + What's Changed + - feat(ui): incremental markdown streaming and spinner enhancements by @RealKai42 in https://github.com/MoonshotAI/kimi-cli/pull/1598 + - feat: add PlanDisplay wire type and inline rendering support by @RealKai42 in https://github.com/MoonshotAI/kimi-cli/pull/1601 + - feat(web): 增加工作区文件面板 || feat(web): Add workspace file panel by @luzhongqiu in https://github.com/MoonshotAI/kimi-cli/pull/1573 + - feat: add --sessions/--list-sessions CLI options & fix CJK shorten by @DRunkPiano114 in https://github.com/MoonshotAI/kimi-cli/pull/1376 + - Revert "feat: add --sessions/--list-sessions CLI options & fix CJK shorten" by @RealKai42 in https://github.com/MoonshotAI/kimi-cli/pull/1608 + - feat(cli): update exit codes for command execution and add tests for Print mode by @RealKai42 in https://github.com/MoonshotAI/kimi-cli/pull/1603 + - feat(glob): allow Glob tool to access skills directories by @n-WN in https://github.com/MoonshotAI/kimi-cli/pull/1609 + - fix(glob): expand ~ in directory path before validation by @n-WN in https://github.com/MoonshotAI/kimi-cli/pull/1611 + - feat(diff): enhance diff rendering with inline diff support and improved styles by @RealKai42 in https://github.com/MoonshotAI/kimi-cli/pull/1612 + - feat(feedback): implement asynchronous feedback submission with error handling by @RealKai42 in https://github.com/MoonshotAI/kimi-cli/pull/1593 + - chore: bump kimi-cli to 1.27.0 by @RealKai42 in https://github.com/MoonshotAI/kimi-cli/pull/1613 + New Contributors + - @luzhongqiu made their first contribution in https://github.com/MoonshotAI/kimi-cli/pull/1573 + - @DRunkPiano114 made their first contribution in https://github.com/MoonshotAI/kimi-cli/pull/1376 + Full Changelog: https://github.com/MoonshotAI/kimi-cli/compare/1.26.0...1.27.0 +ReleaseNotesUrl: https://github.com/MoonshotAI/kimi-cli/releases/tag/1.27.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.locale.zh-CN.yaml b/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.locale.zh-CN.yaml new file mode 100644 index 000000000000..869cbca03479 --- /dev/null +++ b/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.locale.zh-CN.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: MoonshotAI.KimiCLI +PackageVersion: 1.27.0 +PackageLocale: zh-CN +Publisher: 北京月之暗面科技有限公司 +PublisherUrl: https://www.moonshot.cn/ +Author: 北京月之暗面科技有限公司 +PackageUrl: https://www.kimi.com/coding/docs/kimi-cli.html +ShortDescription: Moonshot AI 自研的命令行通用智能体工具,帮助你快速完成各种各样的编程和文件处理等任务。 +Tags: +- kimi +- 人工智能 +- 代码 +- 大语言模型 +- 智能体 +- 编程 +- 聊天机器人 +- 自主智能 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.yaml b/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.yaml new file mode 100644 index 000000000000..39e2b4b26b35 --- /dev/null +++ b/manifests/m/MoonshotAI/KimiCLI/1.27.0/MoonshotAI.KimiCLI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: MoonshotAI.KimiCLI +PackageVersion: 1.27.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.installer.yaml b/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.installer.yaml new file mode 100644 index 000000000000..4123e318946c --- /dev/null +++ b/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.installer.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: MySolutionsNORDIC.NSClient++ +PackageVersion: 0.11.26.0 +InstallerType: wix +InstallerSwitches: + InstallLocation: INSTALLLOCATION="" +ReleaseDate: 2026-03-26 +AppsAndFeaturesEntries: +- UpgradeCode: '{0B36E3B7-0042-452D-B376-57E0C07ADDBB}' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/mickem/nscp/releases/download/0.11.26/NSCP-0.11.26-Win32-legacy-xp.msi + InstallerSha256: C39199B5D2B089C0A525329DC675ED90C5F3BC602AEFF25CC7C442F61859F1C3 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 + ProductCode: '{65C324EF-30EE-4589-997D-5BC1E213C25C}' +- Architecture: x64 + InstallerUrl: https://github.com/mickem/nscp/releases/download/0.11.26/NSCP-0.11.26-x64.msi + InstallerSha256: 15F08B900B41C61EC875A08F636901B7D598082C81C17791D770E93EA25131C6 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + ProductCode: '{88C5EB3F-B466-4202-9CA8-C91FE75F6CEB}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.locale.en-US.yaml b/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.locale.en-US.yaml new file mode 100644 index 000000000000..b816aa2b3f9f --- /dev/null +++ b/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: MySolutionsNORDIC.NSClient++ +PackageVersion: 0.11.26.0 +PackageLocale: en-US +Publisher: MySolutions NORDIC +PublisherUrl: https://medin.name/ +PublisherSupportUrl: https://github.com/mickem/nscp/issues +Author: My Computer Solutions NORDIC KB +PackageName: NSClient++ +PackageUrl: https://nsclient.org/ +License: GPL-2.0 +LicenseUrl: https://github.com/mickem/nscp/blob/HEAD/COPYING +Copyright: Copyright (C) 2026 - Michael Medin +ShortDescription: A fully fledged monitoring agent which can be used with many monitoring tools. +Description: |- + NSClient++ (nscp) aims to be a simple yet powerful and secure monitoring daemon. It was built for Nagios/Icinga, but nothing in the daemon is Nagios/Icinga specific and it can be used in many other scenarios where you want to receive/distribute check metrics. + The daemon has 3 main functions: + - Allow a remote machine (monitoring server) to request commands to be run on this machine (the monitored machine) which return the status of the machine. + - Submit the same results to a remote (monitoring server). + - Take action and perform tasks. +Moniker: nscp +Tags: +- icinga +- naemon +- nagios +ReleaseNotes: |- + What's Changed + This version adds two new dashboard widgets that showcases some statistics as well as a network graph. + I also fixes and issue relating to calculating network measurements. + It also changes the tools bar slightly to make them a bit less intense: + Other changes: + - three new metrics which contains the refresh times of metrics, system metrics and network metrics so you can see this in the web UI. + - Removes unnecessary scientific notations for number in the metrics api so now you will get 1 instead of 1E1. Both are valid json so this should not impact anyone as long as your not using grep or some such to parse the json. + - Added network metrics to web UI by @mickem in https://github.com/mickem/nscp/pull/1199 + Full Changelog: https://github.com/mickem/nscp/compare/0.11.25...0.11.26 +ReleaseNotesUrl: https://github.com/mickem/nscp/releases/tag/0.11.26 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://nsclient.org/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.locale.zh-CN.yaml b/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.locale.zh-CN.yaml new file mode 100644 index 000000000000..c7f340cddfcd --- /dev/null +++ b/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: MySolutionsNORDIC.NSClient++ +PackageVersion: 0.11.26.0 +PackageLocale: zh-CN +ShortDescription: 可与多种监控工具协同使用的全功能监控代理 +Description: |- + NSClient++(nscp)旨在成为一个简单而强大且安全的监控守护进程。它最初为 Nagios/Icinga 设计,但守护进程本身并不局限于 Nagios/Icinga,可广泛应用于需要接收或分发检查指标的其他场景中。 + 该守护进程主要具备三项核心功能: + - 允许远程主机(监控服务器)请求在本机(被监控主机)上执行命令,以获取主机状态信息。 + - 将相同的检测结果主动提交至远程(监控服务器)。 + - 执行预设操作并完成任务处理。 +ReleaseNotesUrl: https://github.com/mickem/nscp/releases/tag/0.11.26 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://nsclient.org/docs/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.yaml b/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.yaml new file mode 100644 index 000000000000..7f29ea5eca8c --- /dev/null +++ b/manifests/m/MySolutionsNORDIC/NSClient++/0.11.26.0/MySolutionsNORDIC.NSClient++.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: MySolutionsNORDIC.NSClient++ +PackageVersion: 0.11.26.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.installer.yaml b/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.installer.yaml new file mode 100644 index 000000000000..2f3d4bf1cc3b --- /dev/null +++ b/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.installer.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: NetworkOptix.NxWitness.Bundle +PackageVersion: 6.1.1.42624 +InstallerType: burn +Scope: machine +Protocols: +- nx-vms +FileExtensions: +- nov +ProductCode: '{a5eaf35e-33f6-41a6-b503-1acb7c7e64d7}' +ReleaseDate: 2026-03-11 +AppsAndFeaturesEntries: +- UpgradeCode: '{2C83E785-23E4-4B70-BE6C-ED49FA329BB5}' +Installers: +- Architecture: x64 + InstallerUrl: https://updates.networkoptix.com/default/42624/windows/nxwitness-bundle-6.1.1.42624-windows_x64.exe + InstallerSha256: EC561C38D1941439155548BFAA5C08AEA348DBA25FF2F3A9465995C7C6DBFABF +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.locale.en-US.yaml b/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.locale.en-US.yaml new file mode 100644 index 000000000000..635203f2aaf3 --- /dev/null +++ b/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.locale.en-US.yaml @@ -0,0 +1,105 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: NetworkOptix.NxWitness.Bundle +PackageVersion: 6.1.1.42624 +PackageLocale: en-US +Publisher: Network Optix +PublisherUrl: https://www.networkoptix.com/ +PublisherSupportUrl: https://support.networkoptix.com/ +PrivacyUrl: https://www.networkoptix.com/privacy-policy +Author: Network Optix, Inc. +PackageName: Nx Witness Bundle +PackageUrl: https://www.networkoptix.com/nx-witness +License: Proprietary +LicenseUrl: https://www.networkoptix.com/terms-of-use +Copyright: © 2026 Network Optix All rights reserved. +CopyrightUrl: https://www.networkoptix.com/terms-of-use +ShortDescription: Intelligent Video Management System +Description: Nx Witness is a fast, cross-platform IP video surveillance management system designed to discover, view, record, and manage IP cameras effortlessly in real-time. +Tags: +- camera +- surveillance +ReleaseNotes: |- + IMPORTANT: + - These release notes cover changes implemented since the latest major release (6.1.0.42176). + BREAKING CHANGES: + - Support for MacOS 12 will be discontinued in the next major release (6.2).. + NEW DEVICES / OPERATING SYSTEMS SUPPORT: + - Mac OS Tahoe + - Raspbian 13 + - Milesight Edge + NEW FEATURES + - AI Manager is added as a plugin. See more at https://www.networkoptix.com/nx-ai-manager. + GENERAL IMPROVEMENTS: + - JWT Tokens are fully supported to improve authentication performance and avoid accidental logouts from Cloud connected Sites. + - Danish localization added. + - The in-Client Remote Administration Tool is improved. + - Improved the Desktop Client stability on Windows 11. + - The window size limitation is eliminated when using the --window-geometry CLI parameter to run the Desktop Client. + - The --hide-panels CLI parameter is added to launch the Desktop Client with all side panels hidden. + - The “Reset to defaults” Web Admin dialog is improved. Added the information that the activated licenses will remain on Server after a reset. + ENTERPRISE FUNCTIONALITY IMPROVEMENTS / FIXES: + - Sites could show up Unreachable in the Desktop Client. Fixed. + ANALYTICS IMPROVEMENTS / FIXES: + - Only the first object was detected on Dahua ITC413-PW4D-IZ1. Fixed. + - Objects detected on Hikvision iDS-2CD7146G0-IZS did not trigger actions. Fixed. + - Analytic events (IVA) did not work on Bosch cameras. Fixed. + - Analytics event attributes info was missing in the Event Log description. Fixed. + - Analytic Events were not triggered if the rules of the event was configured under the group level. Fixed. + DEVICE SUPPORT AND FIXES: + - Devices Specific Fixes: + - Fixed RTP issues on the URMET 1099/501B camera. + - Live stream from AXIS F9114 could not load. Fixed. + - Initialization is improved for MERIT-LILIN cameras. + - Alarm input events are supported on Hikvision DS-2CD2123G2x, DS-2CD3687G3x and Hikvision DS-2DE3C210IXx. + - Osiris OS-I3-EENSW8Mx are detected as Dahua devices. + - Input signals from FLIR were handled for 10-30 seconds. Fixed. + - Newly Supported Devices: + - Elmo NEXIBF07T, NEXIMF02 + - Encoders added to the analog list: + - Speco n32nrn, n16nrx + - Multisensor Cameras: + - Vivotek TT9333 + - HIKVISION iDS-2CD8A46G2-XZHSY + - Advanced PTZ: + - TBA + BUG FIXES: + - General UI Fixes: + - Shared bookmarks with video footage longer than 1.5 minutes could not be played back properly. Fixed. + - The Desktop Client window configuration was not saved properly if another Desktop Client instance was opened in a ne window. Fixed. + - Japanese translations improved. + - The Desktop Client could crash while accessing Nx Maps. Fixed. + - Some frames could be lost when a multi-video export contained many camera items. Fixed. + - The Desktop Client on Windows could not be uninstalled remotely (using SCCM and the psexec CLI tool). Fixed. + - The Desktop Client could crash if a camera went offline while a maintenance confirmation dialog was open. Fixed. + - Users (Power User or Administrators) could not rename shared layouts after locking and unlocking them. Fixed. + - The live stream stopped after selecting an offline device as the audio source. Fixed. + - Shared layouts did not save resolution settings for cameras. Fixed. + - Fixed the --window-geometry CLI parameter to launch the Desktop Client. + - Fixed the following audio features that did not work on Mac OS Tahoe: + - Audio from cameras + - The “Speak” action + - The “Play Sound” action + - Server Fixes: + * Fixed high CPU usage on Server after a live view license activation. + - Server kept losing connection to the LDAP server after restart if it had been terminated unexpectedly before. Fixed. + - Let's Encrypt certificates could not be loaded on a 6.1 Server due to ECDSA key. Fixed. + - The Server GUID of the Nvidia Jetsons were identical causing conflicts in multi-Server environments. Fixed. + - Server did not restore connection to inaccessible SMB shared storage after they became accessible again. Fixed. + - Sites containing apostrophe characters in their names could not connect to Cloud. Fixed. + - Server tried to send a test email to mail@example.com every time the System (Site) Management settings dialog was open in the Desktop Client. Fixed. + - Sending Emails from VMS using an insecure protocol did not work. Fixed. + API / SDK FIXES: + - Sites can be updated to a specific version via API using the /rest/v4/update method. + - The internal HTTPS Request did not work with Create Generic Event API (/rest/v4/events/generic). Fixed. + - Introduced the default value (${DATA_DIR}/update_verification_keys/) for the additionalUpdateVerificationKeysDir build parameter when building and signing a custom package. + - Fixed ​​documentation and implementation issues with the /rest/v4/login/tickets method. If a user tried to use the access token (the x-runtime-guid value) as a request body param key, server returned unauthorized error. + - The sender SSRC was always 0 in sender report while using Nx Server RTSP API to restream. Fixed. + - The preset ID was not created by Server automatically while using the ./rest/v{3-4}/devices/{device_id}/ptz/presets API request to create a preset. Fixed. + - Integrations can now be deleted via API request. + - The /rest/v4/update/info API call returned empty results. Fixed. + - Showreels are now accessible to power users via API. +ReleaseNotesUrl: https://nxvms.com/downloads/6.1.1.42624 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.locale.zh-CN.yaml b/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.locale.zh-CN.yaml new file mode 100644 index 000000000000..8b8cb683185e --- /dev/null +++ b/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.locale.zh-CN.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: NetworkOptix.NxWitness.Bundle +PackageVersion: 6.1.1.42624 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 智能视频管理系统 +Description: Nx Witness 是一款快速、跨平台的 IP 视频监控管理系统,旨在轻松实时发现、查看、录制和管理 IP 摄像头。 +Tags: +- 摄像头 +- 监控 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.yaml b/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.yaml new file mode 100644 index 000000000000..98fb79d9a33a --- /dev/null +++ b/manifests/n/NetworkOptix/NxWitness/Bundle/6.1.1.42624/NetworkOptix.NxWitness.Bundle.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: NetworkOptix.NxWitness.Bundle +PackageVersion: 6.1.1.42624 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.installer.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.installer.yaml new file mode 100644 index 000000000000..ae46eef5ff40 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseDesktop +PackageVersion: 9.4.14 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- nxr +- nxs +- nxv +- nxw +ProductCode: NoMachine_is1 +ReleaseDate: 2026-03-26 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + InstallerUrl: https://web9001.nomachine.com/packages/9.4-PRODUCTION/Windows/nomachine-enterprise-desktop_9.4.14_1_x86.exe + InstallerSha256: D8B82A520D5319162AA673B88570D35EF749F2F1F887417893555DAAEB4115AD +- Architecture: x64 + InstallerUrl: https://web9001.nomachine.com/packages/9.4-PRODUCTION/Windows/nomachine-enterprise-desktop_9.4.14_1_x64.exe + InstallerSha256: 41781BF4EEB239419FD2C98F3C91A98A9F5A64BD9E0162EB3D76E549ACAFB07E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.locale.en-US.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.locale.en-US.yaml new file mode 100644 index 000000000000..84502b92bd0a --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.locale.en-US.yaml @@ -0,0 +1,75 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseDesktop +PackageVersion: 9.4.14 +PackageLocale: en-US +Publisher: NoMachine S.a.r.l. +PublisherUrl: https://www.nomachine.com/ +PublisherSupportUrl: https://www.nomachine.com/support +PrivacyUrl: https://kb.nomachine.com/AR05P00977 +Author: NoMachine S.à r.l. +PackageName: NoMachine Enterprise Desktop +PackageUrl: https://downloads.nomachine.com/ +License: Proprietary +LicenseUrl: https://www.nomachine.com/licensing +Copyright: Copyright 2002, 2026 © NoMachine +CopyrightUrl: https://www.nomachine.com/licensing +ShortDescription: Make any computer accessible from remote +Description: Access your remote office or home computer at its best, over any network, for remote collaboration and remote work. Manage your desktops and hosted resources deployed on-prem, in your data center or in the cloud. You can even add any Enterprise Desktop to any NoMachine Cloud Server you own, to get better control and centralized access. +Tags: +- remote +- remote-access +- remote-control +- remote-desktop +ReleaseNotes: |- + NoMachine makes available version 9.4.14, introducing a number of improvements, along with updates to third‑party components affected by CVEs, as well as fixes for issues found in previous releases. + Changes to keys in configuration files + + The new CustomXauthorityPath key in server.cfg, allows administrators to change the location of the .Xauthority file or to create separate .Xauthority files per virtual desktop session. This helps prevent XAUTHORITY conflicts in environments with shared home directories and is primarily intended for complex or enterprise deployments. The TokenExpiryTimeout key in server.cfg, lets you define the validity period of the token generated by the server to allow clients to reconnect after a connection failure. By default, the token remains valid for five minutes (300 s). Additionally, the 'EnableDbusLaunch' key in node.cfg has been renamed into 'EnableDbusWrapper'. This new key name is available for fresh new installations, updates will not rename the original EnableDbusLaunch key. + Ability to log-in automatically Linux Guest Users via web + + Two new keys in server.cfg, EnableWebGuestsAutoLogin and ForceGuestUserCreation, enable seamless guest access to Linux web sessions, where system guests are automatically logged in to the system without encountering any login prompt. + + Improvements to session list and export of history + + A new option, the '--no-physical' parameter, allows you to exclude physical sessions from the output of session list commands ('nxserver --list', 'nxserver --connectionlist' and 'nxserver --history'). Another new parameter, '--filter item,value' applies the same logic of the '--format items_list' option but limits the output to entries matching the specified item-value pair. The full list of available items can be obtained by running 'nxserver --history --format'. Additionally, the 'nxserver --history' output can now be exported in JSON or CSV formats, facilitating data integration with external analysis platforms and third‑party tools. + OpenSSL + + OpenSSL libraries shipped by NoMachine client and server packages are now v3.0.19. The full list of CVE patched by OpenSSL v3.0.19 is available on their Official web site https://github.com/openssl/openssl/releases/tag/openssl-3.0.19. + Perl + + A patch for CVE-2024-56406 has been applied to the current Perl version shipped by NoMachine server packages. Details about the CVE are available at: https://nvd.nist.gov/vuln/detail/CVE-2024-56406 + Trouble Reports solved + + Here is the complete list of fixes released in version 9.4.14: + + TR02X11721 - Kerberos authentication may fail with 'Cannot initialize gssapi' + TR11W11638 - Black screen after connection to macOS with a sleeping display + TR03X11742 - Black screen may occur when connecting to Linux physical desktops + TR07W11488 - On RHEL 10 starting a single application may be not possible + TR07W11489 - On RHEL 10, creating a virtual desktop may not be possible + TR01X11689 - Possible privileges escalation on Windows via named pipe impersonation + TR02X11711 - Possible privilege escalation via a valid Kerberos ccache file + TR02X11710 - Possible arbitrary deletion of files by exploiting the NoMachine environment variable for Kerberos cache path + TR03X11758 - After power outage it could be no longer possible to connect via VPN + TR11W11630 - The connections limit counter is sometimes wrongly increased + TR01X11694 - License incorrectly in active state after incomplete installation using '--subscriptionset' + TR01X11699 - Possible unexpected termination of nxnode on Linux + TR03U10791 - Monitors of client are treated as a single monitor when the X11 graphics mode is disabled + TR01X11685 - In a multinode environment, session could not be started when "ClientMenuconfiguration none" is set on the node + TR02X11712 - A timeout error occurred while attempting to connect to host with private key and passphrase + TR01X11693 - Cannot connect to a node via Web when Duo Authentication is enabled + TR11W11629 - Web sessions or virtual desktops with X11 vector graphics mode disabled are counted twice in the connection limit counter + TR07V11189 - Unwanted scrolling when scrolling a page with two fingers in a web session +ReleaseNotesUrl: https://kb.nomachine.com/SU03X00271 +PurchaseUrl: https://store.nomachine.com +Documentations: +- DocumentLabel: Documents + DocumentUrl: https://www.nomachine.com/documents +- DocumentLabel: Knowledge Base + DocumentUrl: https://kb.nomachine.com/ +- DocumentLabel: FAQ + DocumentUrl: https://www.nomachine.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.locale.zh-CN.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.locale.zh-CN.yaml new file mode 100644 index 000000000000..eb3ccbf0f37f --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseDesktop +PackageVersion: 9.4.14 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 实现远程访问任意计算机 +Description: 以最佳方式访问您的远程办公室或家庭计算机,跨越任何网络,助力远程协作与远程办公。管理部署在本地、数据中心或云端的桌面及托管资源。您甚至可以将任何企业桌面添加到您所拥有的 NoMachine 云服务器中,以获得更佳的控制与集中访问体验。 +Tags: +- 远程 +- 远程控制 +- 远程桌面 +- 远程访问 +- 远程连接 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://www.nomachine.com/documents +- DocumentLabel: 知识库 + DocumentUrl: https://kb.nomachine.com/ +- DocumentLabel: 常见问题 + DocumentUrl: https://www.nomachine.com/faq +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.yaml new file mode 100644 index 000000000000..dfb7b3d7969d --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseDesktop/9.4.14/NoMachine.NoMachine.EnterpriseDesktop.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseDesktop +PackageVersion: 9.4.14 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.installer.yaml b/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.installer.yaml new file mode 100644 index 000000000000..aa6b6edb19a0 --- /dev/null +++ b/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: OpenDataLab.MinerU +PackageVersion: 0.13.1 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- mineru_client +ProductCode: f8941786-352c-5c22-bea5-7886c3ac4a8f +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://webpub.shlab.tech/MinerU/latest/win/MinerU-0.13.1-setup.exe + InstallerSha256: 43E133551F9D4057EF7D5B05CE6FF06B6A04BFC1AD5F55CEF6B39304DE7B7073 + InstallerSwitches: + Custom: /currentuser +- Architecture: x86 + Scope: machine + InstallerUrl: https://webpub.shlab.tech/MinerU/latest/win/MinerU-0.13.1-setup.exe + InstallerSha256: 43E133551F9D4057EF7D5B05CE6FF06B6A04BFC1AD5F55CEF6B39304DE7B7073 + InstallerSwitches: + Custom: /allusers +- Architecture: x64 + Scope: user + InstallerUrl: https://webpub.shlab.tech/MinerU/latest/win/MinerU-0.13.1-setup.exe + InstallerSha256: 43E133551F9D4057EF7D5B05CE6FF06B6A04BFC1AD5F55CEF6B39304DE7B7073 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://webpub.shlab.tech/MinerU/latest/win/MinerU-0.13.1-setup.exe + InstallerSha256: 43E133551F9D4057EF7D5B05CE6FF06B6A04BFC1AD5F55CEF6B39304DE7B7073 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.locale.en-US.yaml b/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.locale.en-US.yaml new file mode 100644 index 000000000000..1b46785e858c --- /dev/null +++ b/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: OpenDataLab.MinerU +PackageVersion: 0.13.1 +PackageLocale: en-US +Publisher: opendatalab.com +PublisherUrl: https://opendatalab.com/ +PrivacyUrl: https://webpub.shlab.tech/dps/opendatalab-web/odl_v5.1690/privacy.html +Author: Shanghai Artificial Intelligence Laboratory +PackageName: MinerU +PackageUrl: https://mineru.net/ +License: Proprietary +LicenseUrl: https://webpub.shlab.tech/dps/opendatalab-web/odl_v5.1690/service.html +Copyright: © 2026 MinerU. All Rights Reserved. +CopyrightUrl: https://webpub.shlab.tech/dps/opendatalab-web/odl_v5.1690/service.html +ShortDescription: Document Extraction/Conversion Tool for the AI Era +Description: Intelligent parsing of various documents including PDF, Word, PPT, etc., applicable for machine learning, large model corpus production, RAG and other scenarios +Tags: +- docs +- document +- extract +- extraction +- extractor +- pdf +- recognition +- recognize +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.locale.zh-CN.yaml b/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.locale.zh-CN.yaml new file mode 100644 index 000000000000..f083fd96ad9e --- /dev/null +++ b/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: OpenDataLab.MinerU +PackageVersion: 0.13.1 +PackageLocale: zh-CN +Publisher: opendatalab.com +PublisherUrl: https://opendatalab.com/ +PrivacyUrl: https://webpub.shlab.tech/dps/opendatalab-web/odl_v5.1690/privacy.html +Author: 上海人工智能实验室 +PackageName: MinerU +PackageUrl: https://mineru.net/ +License: 专有软件 +LicenseUrl: https://webpub.shlab.tech/dps/opendatalab-web/odl_v5.1690/service.html +Copyright: © 2026 MinerU. All Rights Reserved. +CopyrightUrl: https://webpub.shlab.tech/dps/opendatalab-web/odl_v5.1690/service.html +ShortDescription: 大模型时代的文档提取/转换神器 +Description: 支持 PDF、Word、PPT 等多种文档的智能解析,可用于机器学习、大模型语料生产、RAG 等场景 +Tags: +- pdf +- 提取 +- 文档 +- 识别 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.yaml b/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.yaml new file mode 100644 index 000000000000..53162c2c1329 --- /dev/null +++ b/manifests/o/OpenDataLab/MinerU/0.13.1/OpenDataLab.MinerU.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: OpenDataLab.MinerU +PackageVersion: 0.13.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenDsc/Resources/0.5.1/OpenDsc.Resources.installer.yaml b/manifests/o/OpenDsc/Resources/0.5.1/OpenDsc.Resources.installer.yaml new file mode 100644 index 000000000000..98e2857c33b1 --- /dev/null +++ b/manifests/o/OpenDsc/Resources/0.5.1/OpenDsc.Resources.installer.yaml @@ -0,0 +1,15 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: OpenDsc.Resources +PackageVersion: 0.5.1 +InstallerType: msi +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.Runtime.10 +ProductCode: '{6721C041-92B9-482B-B136-BCDF527C0792}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/opendsc/opendsc/releases/download/v0.5.1/OpenDSC.Resources-0.5.1.msi + InstallerSha256: EB45B1859008201AA7AD3A4B020CA30E1A54610E15EC5B0979C28EE5F940A898 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenDsc/Resources/0.5.1/OpenDsc.Resources.locale.en-US.yaml b/manifests/o/OpenDsc/Resources/0.5.1/OpenDsc.Resources.locale.en-US.yaml new file mode 100644 index 000000000000..d7893bbeb5a4 --- /dev/null +++ b/manifests/o/OpenDsc/Resources/0.5.1/OpenDsc.Resources.locale.en-US.yaml @@ -0,0 +1,24 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: OpenDsc.Resources +PackageVersion: 0.5.1 +PackageLocale: en-US +Publisher: OpenDsc +PublisherUrl: https://github.com/opendsc +PublisherSupportUrl: https://github.com/opendsc/opendsc/issues +PackageName: OpenDsc Resources +PackageUrl: https://github.com/opendsc/opendsc +License: MIT +LicenseUrl: https://github.com/opendsc/opendsc/blob/main/LICENSE +ShortDescription: A comprehensive set of built-in DSC resources for Windows and cross-platform management. +Description: |- + OpenDsc Resources provides a comprehensive set of built-in DSC v3 resources for managing Windows and cross-platform systems. Includes resources for managing environment variables, local groups, services, scheduled tasks, user accounts, user rights, shortcuts, optional features, security policies, file system ACLs, SQL Server, files, directories, symbolic links, JSON values, XML elements, and ZIP archives. +Tags: +- dsc +- configuration-management +- infrastructure-as-code +- windows +- dotnet +ReleaseNotesUrl: https://github.com/opendsc/opendsc/releases/tag/v0.5.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenDsc/Resources/0.5.1/OpenDsc.Resources.yaml b/manifests/o/OpenDsc/Resources/0.5.1/OpenDsc.Resources.yaml new file mode 100644 index 000000000000..88f1f99e3e5c --- /dev/null +++ b/manifests/o/OpenDsc/Resources/0.5.1/OpenDsc.Resources.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: OpenDsc.Resources +PackageVersion: 0.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenWhisperSystems/Signal/Beta/8.5.0-beta.2/OpenWhisperSystems.Signal.Beta.installer.yaml b/manifests/o/OpenWhisperSystems/Signal/Beta/8.5.0-beta.2/OpenWhisperSystems.Signal.Beta.installer.yaml new file mode 100644 index 000000000000..0b95f1629f80 --- /dev/null +++ b/manifests/o/OpenWhisperSystems/Signal/Beta/8.5.0-beta.2/OpenWhisperSystems.Signal.Beta.installer.yaml @@ -0,0 +1,19 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: OpenWhisperSystems.Signal.Beta +PackageVersion: 8.5.0-beta.2 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +ProductCode: b39ac3a0-cc73-5ec2-ba18-5ab3c4de1ca1 +ReleaseDate: 2026-03-27 +AppsAndFeaturesEntries: +- DisplayName: Signal Beta 8.5.0-beta.2 + ProductCode: b39ac3a0-cc73-5ec2-ba18-5ab3c4de1ca1 +Installers: +- Architecture: x64 + InstallerUrl: https://updates.signal.org/desktop/signal-desktop-beta-win-8.5.0-beta.2.exe + InstallerSha256: FE3FE392F7396B06024B69BE6DB5B909E4C7F0FEA9747D8F0CF691FF6C931233 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenWhisperSystems/Signal/Beta/8.5.0-beta.2/OpenWhisperSystems.Signal.Beta.locale.en-US.yaml b/manifests/o/OpenWhisperSystems/Signal/Beta/8.5.0-beta.2/OpenWhisperSystems.Signal.Beta.locale.en-US.yaml new file mode 100644 index 000000000000..a2b236784e41 --- /dev/null +++ b/manifests/o/OpenWhisperSystems/Signal/Beta/8.5.0-beta.2/OpenWhisperSystems.Signal.Beta.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: OpenWhisperSystems.Signal.Beta +PackageVersion: 8.5.0-beta.2 +PackageLocale: en-US +Publisher: Signal Messenger, LLC +PublisherUrl: https://www.signal.org/ +PublisherSupportUrl: https://github.com/signalapp/Signal-Desktop/issues +PrivacyUrl: https://www.signal.org/legal/#privacy-policy +Author: Signal Messenger, LLC +PackageName: Signal Beta +PackageUrl: https://www.signal.org/ +License: AGPL-3.0 +LicenseUrl: https://github.com/signalapp/Signal-Desktop/blob/HEAD/LICENSE +Copyright: © 2013–2026 Signal, a 501c3 nonprofit. +CopyrightUrl: https://www.signal.org/legal/#terms-of-service +ShortDescription: Private messaging from your desktop. Beta Desktop Client. +Tags: +- beta +- chat +- cross-platform +- encryption +- foss +- messaging +- open-source +- privacy +- security +- texting +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenWhisperSystems/Signal/Beta/8.5.0-beta.2/OpenWhisperSystems.Signal.Beta.yaml b/manifests/o/OpenWhisperSystems/Signal/Beta/8.5.0-beta.2/OpenWhisperSystems.Signal.Beta.yaml new file mode 100644 index 000000000000..a9e3be1329bd --- /dev/null +++ b/manifests/o/OpenWhisperSystems/Signal/Beta/8.5.0-beta.2/OpenWhisperSystems.Signal.Beta.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: OpenWhisperSystems.Signal.Beta +PackageVersion: 8.5.0-beta.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/PerryTS/Perry/0.4.24/PerryTS.Perry.installer.yaml b/manifests/p/PerryTS/Perry/0.4.24/PerryTS.Perry.installer.yaml new file mode 100644 index 000000000000..698f961c2ff4 --- /dev/null +++ b/manifests/p/PerryTS/Perry/0.4.24/PerryTS.Perry.installer.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: PerryTS.Perry +PackageVersion: 0.4.24 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: perry.exe + PortableCommandAlias: perry +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/PerryTS/perry/releases/download/v0.4.24/perry-windows-x86_64.zip + InstallerSha256: E47C21B3BCBCF24C31F0E89F8D5FD2D96EB02E3032FDA60A048682552994D149 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-27 diff --git a/manifests/p/PerryTS/Perry/0.4.24/PerryTS.Perry.locale.en-US.yaml b/manifests/p/PerryTS/Perry/0.4.24/PerryTS.Perry.locale.en-US.yaml new file mode 100644 index 000000000000..9723e98682d3 --- /dev/null +++ b/manifests/p/PerryTS/Perry/0.4.24/PerryTS.Perry.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: PerryTS.Perry +PackageVersion: 0.4.24 +PackageLocale: en-US +Publisher: PerryTS +PublisherUrl: https://github.com/PerryTS +PublisherSupportUrl: https://github.com/PerryTS/perry/issues +PackageName: Perry +PackageUrl: https://github.com/PerryTS/perry +License: MIT +LicenseUrl: https://github.com/PerryTS/perry/blob/main/LICENSE +ShortDescription: Native TypeScript compiler that compiles TypeScript to native executables +Description: Perry is a native TypeScript compiler written in Rust that compiles TypeScript source code directly to native executables. It uses SWC for TypeScript parsing and Cranelift for code generation. +Tags: +- typescript +- compiler +- native +- rust +- cranelift +ReleaseNotesUrl: https://github.com/PerryTS/perry/releases/tag/v0.4.24 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PerryTS/Perry/0.4.24/PerryTS.Perry.yaml b/manifests/p/PerryTS/Perry/0.4.24/PerryTS.Perry.yaml new file mode 100644 index 000000000000..e70885bceda7 --- /dev/null +++ b/manifests/p/PerryTS/Perry/0.4.24/PerryTS.Perry.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: PerryTS.Perry +PackageVersion: 0.4.24 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.installer.yaml b/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.installer.yaml new file mode 100644 index 000000000000..7209c6dafc96 --- /dev/null +++ b/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: PixPin.PixPin +PackageVersion: 3.0.8.0 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- pixpin +ProductCode: '{506270E7-E3B5-4157-B53A-3BFFE8E418DB}_is1' +ReleaseDate: 2026-03-27 +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\PixPin' +Installers: +- Architecture: x64 + InstallerUrl: https://download.pixpinapp.com/PixPin_cn_zh-cn_3.0.8.0.exe + InstallerSha256: 2E999731643E6D9B6AB6EF66233B21983772BDD71265F5342A1E90043A0739D4 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.locale.en-US.yaml b/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.locale.en-US.yaml new file mode 100644 index 000000000000..ae8e3c6de613 --- /dev/null +++ b/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.locale.en-US.yaml @@ -0,0 +1,52 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: PixPin.PixPin +PackageVersion: 3.0.8.0 +PackageLocale: en-US +Publisher: Shenzhen Shendu Tujing Technology Co., Ltd. +PublisherUrl: https://pixpin.cn/ +PublisherSupportUrl: https://txc.qq.com/products/614512/ +PrivacyUrl: https://pixpin.cn/docs/policy/privacy_zh_CN +Author: Shenzhen Shendu Tujing Technology Co., Ltd. +PackageName: PixPin +PackageUrl: https://pixpin.cn/ +License: Proprietary +LicenseUrl: https://pixpin.cn/docs/policy/tos_zh_CN +Copyright: Copyright © 2026 Shenzhen Shendu Tujing Technology Co., Ltd. All rights reserved. +CopyrightUrl: https://pixpin.cn/docs/policy/tos_zh_CN +ShortDescription: A powerful and easy-to-use screenshot/sticker tool that helps you improve efficiency +Tags: +- annotate +- annotation +- capture +- color-picker +- ocr +- region-capture +- screen-capture +- screenshot +ReleaseNotes: |- + 3.0.8.0 + 焕然一新的界面 + 我们对 UI 进行了全面重构。全新的设计语言,更加现代、清爽的视觉风格,让你在高效工作的同时,也能拥有极致的视觉体验。 支持自定义选区边框宽度和颜色,配置-外观-截图。 + 更强大的文本识别 + 全新升级的文本识别算法,提高了识别的准确率,能同时识别简体中文,繁体中文,英文,日文。 + 更强大的图像保存 + 全新设计的保存界面,新增支持 AVIF 和 PDF 格式,预估保存文件大小,会员可预览编码效果。 可随时切换回旧版保存界面样式,配置-外观-外观-保存对话框样式。 + AI 翻译 + 我们正式接入了 AI 大模型,翻译水平大幅度跃升。不仅支持多种语言的自动互译,还能结合语境给出更精准、更自然的翻译结果,阅读外文资料从此畅通无阻。 可随时切换回旧版翻译模式,配置-系统-翻译-翻译模式。 + 桌面悬浮图标 + 通过桌面悬浮图标,点击即可触发快捷操作。还可以直接将图像或文字拖动到图标上完成贴图,可全程鼠标操作。 若关闭悬浮图标后想打开,配置-系统-系统-桌面工具栏显示。 + -【功能】录制结束后的预览页新增快捷操作,空格:暂停、左右方向键:切换帧、Home/End:跳到首尾帧 + -【功能】橡皮檫标注增加“清除所有标注”按钮 + -【功能】悬浮球菜单新增“全屏隐藏”和“截图隐藏”菜单选项,默认开启 + -【功能】翻译对话框新增分隔线,支持手动调节原文和译文区域大小 + -【功能】保存对话框新增“复制图像路径”按钮 + -【优化】文本识别对话框现在可以调整大小 + -【优化】录屏后 webp 导出速度 +ReleaseNotesUrl: https://pixpin.cn/docs/official-log/3.0.8.0 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://pixpin.cn/docs/start/what-is-pixpin +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.locale.zh-CN.yaml b/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.locale.zh-CN.yaml new file mode 100644 index 000000000000..aaab330604ac --- /dev/null +++ b/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.locale.zh-CN.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: PixPin.PixPin +PackageVersion: 3.0.8.0 +PackageLocale: zh-CN +Publisher: Shenzhen Shendu Tujing Technology Co., Ltd. +PublisherUrl: https://pixpin.cn/ +PublisherSupportUrl: https://txc.qq.com/products/614512/ +PrivacyUrl: https://pixpin.cn/docs/policy/privacy_zh_CN +Author: 深度图景科技有限公司 +PackageName: PixPin +PackageUrl: https://pixpin.cn/ +License: 专有软件 +LicenseUrl: https://pixpin.cn/docs/policy/tos_zh_CN +Copyright: 版权所有 © 2026 深圳市深度图景科技有限公司 保留所有权利。 +CopyrightUrl: https://pixpin.cn/docs/policy/tos_zh_CN +ShortDescription: 功能强大使用简单的截图/贴图工具,帮助你提高效率 +Tags: +- ocr +- 区域捕获 +- 取色器 +- 截图 +- 拾色器 +- 捕获 +- 标注 +- 标记 +ReleaseNotesUrl: https://pixpin.cn/docs/official-log/3.0.8.0 +Documentations: +- DocumentLabel: 使用文档 + DocumentUrl: https://pixpin.cn/docs/start/what-is-pixpin +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.yaml b/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.yaml new file mode 100644 index 000000000000..e293c700e5a7 --- /dev/null +++ b/manifests/p/PixPin/PixPin/3.0.8.0/PixPin.PixPin.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: PixPin.PixPin +PackageVersion: 3.0.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.installer.yaml b/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.installer.yaml new file mode 100644 index 000000000000..3fb23da94831 --- /dev/null +++ b/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Psyche.Kelivo +PackageVersion: 1.1.9+27 +InstallerType: inno +Scope: machine +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: '{A7B8C9D0-E1F2-4A5B-8C9D-0E1F2A3B4C5D}}_is1' +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Chevey339/kelivo/releases/download/v1.1.9/Kelivo_windows_1.1.9+27_setup.exe + InstallerSha256: 145E01B70D6B1B9EA8FDDBFB58356C340A932F457596EEE2E59142E74DD6A4E7 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.locale.en-US.yaml b/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.locale.en-US.yaml new file mode 100644 index 000000000000..943b486bf0b1 --- /dev/null +++ b/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.locale.en-US.yaml @@ -0,0 +1,80 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Psyche.Kelivo +PackageVersion: 1.1.9+27 +PackageLocale: en-US +Publisher: Psyche +PublisherUrl: https://github.com/Chevey339 +PublisherSupportUrl: https://github.com/Chevey339/kelivo/issues +PackageName: Kelivo +PackageUrl: https://github.com/Chevey339/kelivo +License: AGPL-3.0 +LicenseUrl: https://github.com/Chevey339/kelivo/blob/HEAD/LICENSE +Copyright: Copyright (C) 2026 com.psyche. All rights reserved. +ShortDescription: A Flutter LLM Chat Client. Support Android & iOS & Harmony Next. +Description: |- + A Flutter LLM Chat Client. Support Android & iOS & Harmony Next. + ✨ Features + - 🎨 Modern Design - Material You design language with dynamic color theming support (Android 12+). + - 🌙 Dark Mode - Perfectly adapted dark theme to protect your eyes. + - 🌍 Multi-language Support - Supports both English and Chinese interfaces. + - 🖥️ Multi-platform Support - Mobile (Android/iOS/Harmony) and Desktop (Windows/macOS/Linux). + - 🔄 Multi-provider Support - Supports major AI providers like OpenAI, Google Gemini, Anthropic, etc. + - 🤖 Custom Assistants - Create and manage personalized AI assistants. + - 🖼️ Multimodal Input - Supports various formats including images, text documents, PDFs, Word documents, etc. + - 📝 Markdown Rendering - Full support for code highlighting, LaTeX formulas, tables, and more. + - 🎙️ Voice/TTS Providers - Built-in system TTS plus OpenAI / Google Gemini / ElevenLabs voice servers. + - 🛠️ MCP Support - Model Context Protocol tool integration. + - 🧰 Built-in MCP Tools - Includes a built-in MCP Fetch tool. + - 🔍 Web Search - Integrated with multiple search engines (Exa, Tavily, Zhipu, LinkUp, Brave, Bing, Metaso, SearXNG, Ollama, Jina, Perplexity, Bocha). + - 🧩 Prompt Variables - Supports dynamic variables like model name, time, etc. + - 📤 QR Code Sharing - Export and import provider configurations via QR codes. + - 💾 Data Backup - Supports chat history backup and restoration. + - 🌐 Custom Requests - Supports custom HTTP request headers and bodies. + - 🔡 Custom Fonts - Bring your own fonts (system fonts / Google Fonts). + - ⚙️ Android Background Generation - Keep chat generation running in the background (optional setting). +Tags: +- ai +- chatbot +- chatgpt +- claude +- deepseek +- doubao +- gemini +- kimi +- large-language-model +- llama +- llm +- minimax +- mistral +- qwen +ReleaseNotes: |- + What's Changed + - feat: Add context compression feature with customizable model and prompt. + - feat: Add global search mode for conversations. + - feat: Add S3 backup support. + - feat: Add support for DashScope built-in search and reasoning tools. + - feat: Add custom API URL support for Exa and Tavily search services. + - feat: Add support for Google Vertex AI Claude models and Claude 4.6 adaptive thinking. + - feat: Add support for GPT-5 series models and reasoning levels. + - feat: Add support for Moonshot Kimi thinking models and kimi-k2.5 reasoning echo. + - feat: Add support for multimodal LongCat Omni models. + - feat: Add reordering support for World Books and entries. + - feat: Add setting to toggle Markdown rendering for assistant messages. + - feat: Add "Show Provider" option to chat messages. + - feat: Add assistant name and avatar display options for chat titles. + - feat: Add confirmation dialogs for message regeneration and topic deletion. + - feat: Add log management settings and auto-cleanup. + - feat: Add customizable summary refresh frequency for assistants. + - feat: Increase maximum context message size to 1024. + - feat: Add scroll-to-bottom button in mini map. + - refactor: Improve chat auto-scroll. + - refactor: Improve citation display with card-style search results. + - perf: Optimize frosted chat bubble rendering performance. + - perf: Optimize backup and restore memory usage. + - fix: Fix several other known bugs. + Full Changelog: https://github.com/Chevey339/kelivo/compare/v1.1.8...v1.1.9 +ReleaseNotesUrl: https://github.com/Chevey339/kelivo/releases/tag/v1.1.9 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.locale.zh-CN.yaml b/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.locale.zh-CN.yaml new file mode 100644 index 000000000000..89925bfc5494 --- /dev/null +++ b/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.locale.zh-CN.yaml @@ -0,0 +1,46 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Psyche.Kelivo +PackageVersion: 1.1.9+27 +PackageLocale: zh-CN +ShortDescription: 一个 Flutter LLM 聊天客户端。支持 Android、iOS 和 Harmony Next。 +Description: |- + 一个 Flutter LLM 聊天客户端。支持 Android、iOS 和 Harmony Next。 + ✨ 功能特性 + - 🎨 现代化设计 - 采用 Material You 设计语言,支持动态色彩主题(Android 12+)。 + - 🌙 深色模式 - 完美适配的深色主题,保护您的双眼。 + - 🌍 多语言支持 - 支持英文和中文界面。 + - 🖥️ 多平台支持 - 移动端(Android/iOS/Harmony)和桌面端(Windows/macOS/Linux)。 + - 🔄 多服务商支持 - 支持 OpenAI、Google Gemini、Anthropic 等主流 AI 服务商。 + - 🤖 自定义助手 - 创建和管理个性化的 AI 助手。 + - 🖼️ 多模态输入 - 支持图片、文本文件、PDF、Word 文档等多种格式。 + - 📝 Markdown 渲染 - 完全支持代码高亮、LaTeX 公式、表格等功能。 + - 🎙️ 语音/TTS 服务 - 内置系统 TTS,同时支持 OpenAI / Google Gemini / ElevenLabs 语音服务。 + - 🛠️ MCP 支持 - 支持模型上下文协议(Model Context Protocol)工具集成。 + - 🧰 内置 MCP 工具 - 包含内置的 MCP Fetch 工具。 + - 🔍 网络搜索 - 集成多种搜索引擎(Exa、Tavily、Zhipu、LinkUp、Brave、Bing、Metaso、SearXNG、Ollama、Jina、Perplexity、Bocha)。 + - 🧩 提示词变量 - 支持模型名称、时间等动态变量。 + - 📤 二维码分享 - 通过二维码导出和导入服务商配置。 + - 💾 数据备份 - 支持聊天记录的备份与恢复。 + - 🌐 自定义请求 - 支持自定义 HTTP 请求头和请求体。 + - 🔡 自定义字体 - 可使用自定义字体(系统字体 / Google Fonts)。 + - ⚙️ Android 后台生成 - 支持在后台持续生成聊天内容(可选设置)。 +Tags: +- ai +- chatgpt +- claude +- deepseek +- gemini +- kimi +- llama +- llm +- minimax +- mistral +- 人工智能 +- 大语言模型 +- 聊天机器人 +- 豆包 +- 通义千问 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.yaml b/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.yaml new file mode 100644 index 000000000000..b3a3b37483c5 --- /dev/null +++ b/manifests/p/Psyche/Kelivo/1.1.9+27/Psyche.Kelivo.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Psyche.Kelivo +PackageVersion: 1.1.9+27 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/peterandree/BTChargeTrayWatcher/1.0.0.0/peterandree.BTChargeTrayWatcher.installer.yaml b/manifests/p/peterandree/BTChargeTrayWatcher/1.0.0.0/peterandree.BTChargeTrayWatcher.installer.yaml new file mode 100644 index 000000000000..c71bc9ab4778 --- /dev/null +++ b/manifests/p/peterandree/BTChargeTrayWatcher/1.0.0.0/peterandree.BTChargeTrayWatcher.installer.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: peterandree.BTChargeTrayWatcher +PackageVersion: 1.0.0.0 +InstallerType: portable +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/peterandree/BTChargeTrayWatcher/releases/download/v1.0.0/BTChargeTrayWatcher.exe + InstallerSha256: AA669F014CDD9A0FF742888E4E582700573F6E2909195B0AF5B262F8C23432A8 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-25 diff --git a/manifests/p/peterandree/BTChargeTrayWatcher/1.0.0.0/peterandree.BTChargeTrayWatcher.locale.en-US.yaml b/manifests/p/peterandree/BTChargeTrayWatcher/1.0.0.0/peterandree.BTChargeTrayWatcher.locale.en-US.yaml new file mode 100644 index 000000000000..ed34bc545664 --- /dev/null +++ b/manifests/p/peterandree/BTChargeTrayWatcher/1.0.0.0/peterandree.BTChargeTrayWatcher.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: peterandree.BTChargeTrayWatcher +PackageVersion: 1.0.0.0 +PackageLocale: en-US +Publisher: peterandree +PublisherUrl: https://github.com/peterandree +PublisherSupportUrl: https://github.com/peterandree/BTChargeTrayWatcher/issues +PackageName: BTChargeTrayWatcher +PackageUrl: https://github.com/peterandree/BTChargeTrayWatcher +License: MIT +ShortDescription: Windows tray app that monitors laptop and Bluetooth device batteries and alerts on configurable tresholds. Keeps your batteries alive longer! +ReleaseNotesUrl: https://github.com/peterandree/BTChargeTrayWatcher/releases/tag/v1.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/peterandree/BTChargeTrayWatcher/1.0.0.0/peterandree.BTChargeTrayWatcher.yaml b/manifests/p/peterandree/BTChargeTrayWatcher/1.0.0.0/peterandree.BTChargeTrayWatcher.yaml new file mode 100644 index 000000000000..10f608ba0a92 --- /dev/null +++ b/manifests/p/peterandree/BTChargeTrayWatcher/1.0.0.0/peterandree.BTChargeTrayWatcher.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: peterandree.BTChargeTrayWatcher +PackageVersion: 1.0.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/q/QElectroTech/QElectroTech/0.100.0/QElectroTech.QElectroTech.installer.yaml b/manifests/q/QElectroTech/QElectroTech/0.100.0/QElectroTech.QElectroTech.installer.yaml new file mode 100644 index 000000000000..34c1ea9078cc --- /dev/null +++ b/manifests/q/QElectroTech/QElectroTech/0.100.0/QElectroTech.QElectroTech.installer.yaml @@ -0,0 +1,28 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: QElectroTech.QElectroTech +PackageVersion: 0.100.0 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +FileExtensions: +- elmt +- qet +ProductCode: QElectroTech +ReleaseDate: 2026-01-25 +AppsAndFeaturesEntries: +- DisplayName: QElectroTech (remove only) + ProductCode: QElectroTech +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\QElectroTech' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/qelectrotech/qelectrotech-source-mirror/releases/download/0.100/Installer_QElectroTech-0.100.0_x86_64-win64+git8590-1.exe + InstallerSha256: 14A830E391B78FD7D69D793D13F5F4D24696628B7A682077D3F7332FA41AAA80 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/q/QElectroTech/QElectroTech/0.100.0/QElectroTech.QElectroTech.locale.en-US.yaml b/manifests/q/QElectroTech/QElectroTech/0.100.0/QElectroTech.QElectroTech.locale.en-US.yaml new file mode 100644 index 000000000000..7b7c38561a43 --- /dev/null +++ b/manifests/q/QElectroTech/QElectroTech/0.100.0/QElectroTech.QElectroTech.locale.en-US.yaml @@ -0,0 +1,111 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: QElectroTech.QElectroTech +PackageVersion: 0.100.0 +PackageLocale: en-US +Publisher: QElectroTech +PublisherUrl: https://github.com/qelectrotech +PublisherSupportUrl: https://github.com/qelectrotech/qelectrotech-source-mirror/issues +Author: Laurent Trinques +PackageName: QElectroTech +PackageUrl: https://github.com/qelectrotech/qelectrotech-source-mirror +License: GPL-2.0 +LicenseUrl: https://github.com/qelectrotech/qelectrotech-source-mirror/blob/HEAD/LICENSE +ShortDescription: A free and open-source application to create electrical diagrams +Moniker: qet +ReleaseNotes: |- + QElectroTech, or QET in short, is a free software to create industrial complex electric diagrams. + But you can also even do plumbing, geothermal, air-conditioning, layout, hydraulics, pneumatics, domotic, + PID, photovoltaic, swiming pool plumbing, ect...! + On last version 0.100 the collection contains over 8000 symbols... + Version 0.100 + Compiled from provided commit logs and contributor notes. + Overview + This release (v0.100) collects a large set of new features, UI and editor improvements, element and symbol updates, build and packaging fixes, dependency upgrades, translations, and a broad set of bug fixes and stability improvements. It is intended as a stable, feature-rich stepping stone toward the next major workflows for symbol editing, terminal/strip handling and export improvements. + Highlights / Key Features + - Terminal Strip / Terminal Strip Editor + - New TerminalStripItem type and related editor workflow added. + - Support for drawing and displaying terminal bridges and links in the editor. + - Full editor support (layout preview, save/load into .qet files) and undo support for terminal strip operations. + - New Example Projects + - Several new example projects included, notably photovoltaic (PV) examples to help users getting started with PV designs. + - Improved Export / Print Handling + - Export limits adjusted and better handling of QPainter/printing boundaries to avoid export artefacts and out-of-range errors. + - Export dialog updated to allow larger pixel limits where appropriate. + - Element & Symbol Additions + - New elements and symbols added (including vendor-specific elements and additional sensors/Arduino components). + - Improvements to element import & metadata handling. + - Packaging & Multi-arch Support + - Updated packaging scripts for AppImage, Flatpak, Snap and macOS deployment. Improved aarch64/arm64 support. + Detailed Changes + Editor & UX + - Better handling for rotation, flip and mirror operations in the element editor: + - Primitives and text rotation behavior improved. + - Finer rotation increments and predictable text orientation after flips/rotations. + - Wiring and conductor behavior: + - More robust creation and movement of wires and conductor bundles. + - Improved text attachment and positioning for wires and improved stability while editing complex conductor networks. + - TerminalStrip editor: see Highlights - includes drawing, preview, layout editing, persistent storage in the project file and undo support. + - Element Editor & Symbol Trim/Sort: + - Improved trimming/normalization of element metadata. + - Better sorting and error handling for element imports (DXF and other formats). + - Small UI improvements: About dialog updates, autosave spinbox ranges, improved tooltips and mouse-hover help for dynamic texts. + New & Updated Elements + - New elements added for industrial and automation workflows (including Siemens-related elements, logic elements, sensors and Arduino components). + - Symbol library additions and cleanup; improved defaults for newly added symbols. + - Element meta-data cleanup: article numbers, descriptions, and manufacturer fields were normalized and trimmed on import. + Export / Printing / PDF + - Adjusted internal export limits to avoid hitting QPainter size restrictions; users can now export larger, high-resolution images/prints in more cases. + - Better handling of page sizes and printer-related geometry using QRectF improvements. + - PDF export improvements to increase reliability of exported vector content. + Build, Dependencies, Packaging + - Upgrades of core test and build dependencies: + - Catch2 upgraded to v2.13.10. + - googletest upgraded to v1.17.0. + - CMake fixes and i18n handling corrected for nl_BE and other locales. + - Packaging scripts updated across platforms (AppImage/Flatpak/Snap/macOS deploy) including fixes for aarch64/arm64. + - Submodule updates (e.g., qelectrotech-elements, pugixml, SingleApplication) synchronized where needed. + Internationalization & Translations + - Large translation updates across many languages: German (DE), French (FR), Dutch (NL, including nl_BE), Swedish (SV), Italian (IT), Polish (PL), Portuguese-BR (PT-BR), Serbian (SR), Chinese (Simplified) and others. + - Fixes and corrections for many UI strings and localized resources. + Tests, QA & Logging + - Improved logging and machine/config-path reporting; Git revision display refined to only show a revision when available. + - Unit test updates and fixes to align with updated testing frameworks. + Bug Fixes (selected) + - Fixed crashes and various null pointer access issues discovered by static and dynamic testing. + - Resolved multiple reported bugs that caused build failures on some platforms (FTBFS fixes for macOS and others). + - Fixed issues with automatic conductor/strand numbering in several edge cases (referenced Bug 293 in the commit logs). + - Resolved text/summary headline issues in the German-language summary generator. + - Fixes for a number of visually incorrect renderings and layout corner-cases during element transformation (rotate/flip/mirror). + - Fixed issues that affected export sizes and caused export artifacts (referenced fixes for bug IDs around #329/#330 in commit notes). + Developer & Contributor Notes + - Reworked parts of the codebase to use QRectF consistently for better compatibility with QPrinter and export pipelines. + - Code-style cleanups and comment improvements applied throughout the project. + - Expanded test coverage and dependency refresh to keep CI builds stable. + Contributors (selected) + Thanks to the many contributors who made this release possible. Selected contributors mentioned in the commit logs include: + - Laurent Trinques + - joshua + - plc-user + - Achim + - Pascal Sander + - Andre Rummler + - Magnus Hellströmer + - Martin Marmsoler + - Remi Collet + (See the full commit history for the complete contributor list.) + Upgrade / Migration Notes + - No database or project file format breaking changes were reported in the provided logs. As always, back up projects before opening them with a new version. + - If you rely on custom element libraries or third-party submodules, verify submodule synchronization after upgrading. + - If you are using custom packaging pipelines, review the updated packaging scripts for any changes required by new dependency versions, especially on aarch64/arm64. + Known Issues & Limitations + - Some very large exports may still be limited by platform-specific rendering restrictions; the export dialog now allows larger pixel limits but extreme sizes may still hit system-level limits. + - If you use niche element-import workflows (DXF → element import), occasionally metadata normalization may alter whitespace/trim rules - verify newly imported elements in the element editor. + How to get help / report bugs + - Use the project issue tracker (see repository) to report regressions or new bugs with detailed reproduction steps and example .qet files where possible. + - Include the output of Help → About (application version and Git revision) when reporting build/packaging issues. + See more here: https://github.com/qelectrotech/qelectrotech-source-mirror/blob/master/ChangeLog.MD +ReleaseNotesUrl: https://github.com/qelectrotech/qelectrotech-source-mirror/releases/tag/0.100 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/q/QElectroTech/QElectroTech/0.100.0/QElectroTech.QElectroTech.yaml b/manifests/q/QElectroTech/QElectroTech/0.100.0/QElectroTech.QElectroTech.yaml new file mode 100644 index 000000000000..4a4ecf57e55b --- /dev/null +++ b/manifests/q/QElectroTech/QElectroTech/0.100.0/QElectroTech.QElectroTech.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: QElectroTech.QElectroTech +PackageVersion: 0.100.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/ReceitaFederaldoBrasil/SpedFiscalICMSIPI/6.0.3/ReceitaFederaldoBrasil.SpedFiscalICMSIPI.installer.yaml b/manifests/r/ReceitaFederaldoBrasil/SpedFiscalICMSIPI/6.0.3/ReceitaFederaldoBrasil.SpedFiscalICMSIPI.installer.yaml new file mode 100644 index 000000000000..663dcc3310ad --- /dev/null +++ b/manifests/r/ReceitaFederaldoBrasil/SpedFiscalICMSIPI/6.0.3/ReceitaFederaldoBrasil.SpedFiscalICMSIPI.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ReceitaFederaldoBrasil.SpedFiscalICMSIPI +PackageVersion: 6.0.3 +InstallerType: exe +InstallerSwitches: + Silent: -q + SilentWithProgress: -q -splash +Installers: +- Architecture: x64 + InstallerUrl: https://servicos.receita.fazenda.gov.br/publico/programas/Sped/SpedFiscal/SpedEFD_w64-6.0.3.exe + InstallerSha256: 8B87DF4735013E1F9B6A9A4A4FE37E865FB9EB3BB7F5DB899AB98B4453F6D8AB +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/ReceitaFederaldoBrasil/SpedFiscalICMSIPI/6.0.3/ReceitaFederaldoBrasil.SpedFiscalICMSIPI.locale.pt-BR.yaml b/manifests/r/ReceitaFederaldoBrasil/SpedFiscalICMSIPI/6.0.3/ReceitaFederaldoBrasil.SpedFiscalICMSIPI.locale.pt-BR.yaml new file mode 100644 index 000000000000..d4dfe060a9e7 --- /dev/null +++ b/manifests/r/ReceitaFederaldoBrasil/SpedFiscalICMSIPI/6.0.3/ReceitaFederaldoBrasil.SpedFiscalICMSIPI.locale.pt-BR.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ReceitaFederaldoBrasil.SpedFiscalICMSIPI +PackageVersion: 6.0.3 +PackageLocale: pt-BR +Publisher: Receita Federal do Brasil +PackageName: Sped Fiscal ICMS IPI +License: Public +Copyright: Receita Federal do Brasil +ShortDescription: Sped Fiscal ICMS IPI +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/ReceitaFederaldoBrasil/SpedFiscalICMSIPI/6.0.3/ReceitaFederaldoBrasil.SpedFiscalICMSIPI.yaml b/manifests/r/ReceitaFederaldoBrasil/SpedFiscalICMSIPI/6.0.3/ReceitaFederaldoBrasil.SpedFiscalICMSIPI.yaml new file mode 100644 index 000000000000..13491621792e --- /dev/null +++ b/manifests/r/ReceitaFederaldoBrasil/SpedFiscalICMSIPI/6.0.3/ReceitaFederaldoBrasil.SpedFiscalICMSIPI.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: ReceitaFederaldoBrasil.SpedFiscalICMSIPI +PackageVersion: 6.0.3 +DefaultLocale: pt-BR +ManifestType: version +ManifestVersion: 1.12.0 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/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/ImageMagick/Q16-HDRI/7.1.2.17/ImageMagick.Q16-HDRI.yaml b/manifests/r/ReversingLabs/SAFEViewer/1.5.8/ReversingLabs.SAFEViewer.yaml similarity index 58% rename from manifests/i/ImageMagick/Q16-HDRI/7.1.2.17/ImageMagick.Q16-HDRI.yaml rename to manifests/r/ReversingLabs/SAFEViewer/1.5.8/ReversingLabs.SAFEViewer.yaml index 555dd3d7b7cb..2bb4b649a479 100644 --- a/manifests/i/ImageMagick/Q16-HDRI/7.1.2.17/ImageMagick.Q16-HDRI.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: ImageMagick.Q16-HDRI -PackageVersion: 7.1.2.17 +PackageIdentifier: ReversingLabs.SAFEViewer +PackageVersion: 1.5.8 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.installer.yaml b/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.installer.yaml new file mode 100644 index 000000000000..d6200797fa61 --- /dev/null +++ b/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: RioArisk.CodexManager +PackageVersion: 0.1.6 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +ProductCode: '{7F446211-326D-440B-A76F-FE2CD8B620AC}' +ReleaseDate: 2026-03-27 +AppsAndFeaturesEntries: +- UpgradeCode: '{5A5099F3-F258-5945-8D7B-B90CA5E820D9}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/RioArisk/codex-auth-manager/releases/download/v0.1.6/Codex.Manager_0.1.6_x64_en-US.msi + InstallerSha256: B4BD6A6BC8D72EFB58F32EF56B8F99F06F1A49CF33203630639BE19FF4980C6D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.locale.en-US.yaml b/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.locale.en-US.yaml new file mode 100644 index 000000000000..40655501aa5b --- /dev/null +++ b/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: RioArisk.CodexManager +PackageVersion: 0.1.6 +PackageLocale: en-US +License: Freeware +ShortDescription: A Windows desktop application for managing multiple OpenAI Codex accounts (Tauri + React). +Description: |- + This project is a local Codex account management tool that supports unified management of multiple accounts, quick switching between active accounts, and checking quota usage for each account. Currently, only officially sourced Codex accounts are supported. + + Features + - 🔄 One-click account switching: Quickly switch between multiple Codex accounts with automatic write to .codex/auth.json + - 📊 Usage monitoring: Parse 5-hour / weekly quota information from local ~/.codex/sessions + - 🎯 Smart recommendation: Automatically recommend the account with the highest remaining weekly quota + - ⏰ Auto-refresh: Set auto-refresh interval (in minutes) + - 🧩 Local storage: Both account data and configurations are saved to local files +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.locale.zh-CN.yaml b/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.locale.zh-CN.yaml new file mode 100644 index 000000000000..cdff266d34a4 --- /dev/null +++ b/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.locale.zh-CN.yaml @@ -0,0 +1,53 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: RioArisk.CodexManager +PackageVersion: 0.1.6 +PackageLocale: zh-CN +Publisher: codex-manager +PublisherUrl: https://github.com/RioArisk +PublisherSupportUrl: https://github.com/RioArisk/codex-auth-manager/issues +Author: Qi Zhang +PackageName: Codex Manager +PackageUrl: https://github.com/RioArisk/codex-auth-manager +License: 免费软件 +ShortDescription: 一个用于管理多个 OpenAI Codex 账号的 Windows 桌面应用(Tauri + React)。 +Description: |- + 本项目是一个本地 Codex 账号管理工具,支持多账号统一管理、快速切换当前使用账号,并可查询各账号的额度使用情况。目前仅支持官方渠道的 Codex 账号。 + + 功能特点 + - 🔄 一键切换账号:在多个 Codex 账号之间快速切换,自动写入 .codex/auth.json + - 📊 用量监控:从本地 ~/.codex/sessions 解析 5 小时 / 周限额信息 + - 🎯 智能推荐:基于周限额剩余量自动推荐最充足账号 + - ⏰ 自动刷新:可设置自动刷新间隔(分钟) + - 🧩 本地存储:账号与配置均保存到本地文件 +Tags: +- codex +ReleaseNotes: |- + ✨ 新增功能 + 快速登录导入 + - 新增一键快速登录入口,可直接拉起 Codex 登录流程 + - 登录完成后自动检测新的 auth.json 并导入账号,减少手动复制粘贴成本 + - 设置页新增 Codex CLI 路径配置,便于自定义命令或绝对路径 + 托盘后台运行 + - 新增系统托盘支持,可在关闭主窗口后继续后台运行 + - 可从托盘重新打开主界面、切换账号,并查看账号额度摘要 + - 后台会按配置周期刷新额度并同步托盘显示 + ⚙️ 交互优化 + 关闭按钮行为配置 + - 支持“每次询问 / 最小化到托盘 / 直接退出”三种关闭策略 + - 首次关闭时可直接记住选择,并可在设置中随时修改 + - 托盘切换账号后会同步主界面状态,减少前后台状态不一致 + 当前登录同步与稳定性修复 + - 快速登录、读取当前登录、缺失身份确认导入后会立即同步活动账号并刷新额度 + - 修复 Windows 下带引号的 Codex CLI 路径无法启动快速登录的问题 + - 补强关闭流程,避免关闭确认对话框被重复唤起 + 📦 本次产物 + - Windows:Codex.Manager_0.1.6_x64-setup.exe、Codex.Manager_0.1.6_x64_en-US.msi + - macOS:Codex.Manager_0.1.6_x64.dmg、Codex.Manager_0.1.6_aarch64.dmg + 📝 撰稿人 + - @Yunssss4410(PR #7) + Full Changelog: https://github.com/RioArisk/codex-auth-manager/compare/v0.1.5...v0.1.6 +ReleaseNotesUrl: https://github.com/RioArisk/codex-auth-manager/releases/tag/v0.1.6 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.yaml b/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.yaml new file mode 100644 index 000000000000..9132536e172e --- /dev/null +++ b/manifests/r/RioArisk/CodexManager/0.1.6/RioArisk.CodexManager.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: RioArisk.CodexManager +PackageVersion: 0.1.6 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.installer.yaml b/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.installer.yaml deleted file mode 100644 index d6793493799f..000000000000 --- a/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.installer.yaml +++ /dev/null @@ -1,36 +0,0 @@ -# Created with komac v2.15.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: RoyalApps.RoyalTS.7 -PackageVersion: 7.4.50306.0 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallerSwitches: - InstallLocation: INSTALLDIR="" -UpgradeBehavior: install -Protocols: -- royalappslicense -- rtscli -- rtsx -FileExtensions: -- rtsx -- rtsz -ProductCode: '{4959A733-614C-44E8-AC0D-3E7BCABB95AC}' -ReleaseDate: 2026-03-06 -AppsAndFeaturesEntries: -- DisplayName: Royal TS V7 - Publisher: Royal Apps GmbH - ProductCode: '{4959A733-614C-44E8-AC0D-3E7BCABB95AC}' - UpgradeCode: '{4959A733-614C-44E8-AC0D-3E7B5A7375AB}' -InstallationMetadata: - DefaultInstallLocation: ABSOLUTEPATH -Installers: -- Architecture: x64 - InstallerUrl: https://download.royalapps.com/royalts/royaltsinstaller_7.04.50306.0_x64.msi - InstallerSha256: 2FBC0F25346039479D7B8E2069FC594C9AF36E85355FB46C7574097DFD1194F8 -- Architecture: arm64 - InstallerUrl: https://download.royalapps.com/royalts/royaltsinstaller_7.04.50306.0_arm64.msi - InstallerSha256: A6A62D3D85EA648ED426B2230B36B19AD56D50D7ABAB8071F9D5235769096709 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.locale.en-US.yaml b/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.locale.en-US.yaml deleted file mode 100644 index 764ebff121c2..000000000000 --- a/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.locale.en-US.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Created with komac v2.15.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: RoyalApps.RoyalTS.7 -PackageVersion: 7.4.50306.0 -PackageLocale: en-US -Publisher: Royal Apps GmbH -PublisherUrl: https://www.royalapps.com/ -PublisherSupportUrl: https://support.royalapps.com/support/home -PrivacyUrl: https://www.royalapps.com/ts/win/privacy -Author: Royal Apps GmbH -PackageName: Royal TS V7 -PackageUrl: https://www.royalapps.com/ts/win/download -License: Proprietary -LicenseUrl: https://support.royalapps.com/support/solutions/articles/17000074360 -Copyright: © 2025 Royal Apps GmbH -CopyrightUrl: https://support.royalapps.com/support/solutions/articles/17000074360 -ShortDescription: Comprehensive Remote Management Solution -Description: > - Royal TS provides powerful, easy and secure access to your remote systems. It's the perfect tool - for server admins, system engineers, developers and IT focused information workers who constantly - need to access remote systems with different protocols (like RDP, VNC, SSH, HTTP/S, and many - more). -Tags: -- ftp -- rdp -- remote -- server -- sftp -- ssh -- telnet -- vnc -- x11 -- xorg -- xserver -ReleaseNotesUrl: https://community.royalapps.com/t/royal-ts-v7-previous-versions/238#p-240-royal-ts-704wrappatch-version50306wrap-wraprelease-date2026-03-06wrap-1 -PurchaseUrl: https://www.royalapps.com/ts/win/buy -Documentations: -- DocumentLabel: Docs - DocumentUrl: https://docs.royalapps.com/ -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.locale.zh-CN.yaml b/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.locale.zh-CN.yaml deleted file mode 100644 index e4b6a33018e5..000000000000 --- a/manifests/r/RoyalApps/RoyalTS/7/7.4.50306.0/RoyalApps.RoyalTS.7.locale.zh-CN.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with komac v2.15.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: RoyalApps.RoyalTS.7 -PackageVersion: 7.4.50306.0 -PackageLocale: zh-CN -License: 专有软件 -ShortDescription: 综合远程管理解决方案 -Description: Royal TS 为您提供强大、便捷且安全的远程系统访问体验。作为服务器管理员、系统工程师、开发人员及 IT 专业人士的理想工具,它能完美支持多种协议(如RDP、VNC、SSH、HTTP/S 等),满足您频繁连接各类远程系统的需求。 -Tags: -- ftp -- rdp -- sftp -- ssh -- telnet -- vnc -- x11 -- xorg -- xserver -- 服务器 -- 远程 -Documentations: -- DocumentLabel: 文档 - DocumentUrl: https://docs.royalapps.com/ -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.installer.yaml b/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.installer.yaml new file mode 100644 index 000000000000..6e4cc6ba0f50 --- /dev/null +++ b/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.installer.yaml @@ -0,0 +1,53 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: RubyInstallerTeam.RubyWithDevKit.3.3 +PackageVersion: 3.3.11-1 +InstallerType: inno +UpgradeBehavior: install +Commands: +- ruby +- rubyw +FileExtensions: +- rb +- rbw +ReleaseDate: 2026-03-26 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-3.3.11-1/rubyinstaller-devkit-3.3.11-1-x86.exe + InstallerSha256: 5F1B67D9FF86E5C178C9137C0D9926345126AE93243A666D43F5523F63863A94 + InstallerSwitches: + Custom: /CURRENTUSER + ProductCode: RubyInstaller-3.3-i386-mingw32_is1 + AppsAndFeaturesEntries: + - DisplayName: Ruby 3.3.11-1-x86 +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-3.3.11-1/rubyinstaller-devkit-3.3.11-1-x86.exe + InstallerSha256: 5F1B67D9FF86E5C178C9137C0D9926345126AE93243A666D43F5523F63863A94 + InstallerSwitches: + Custom: /ALLUSERS + ProductCode: RubyInstaller-3.3-i386-mingw32_is1 + AppsAndFeaturesEntries: + - DisplayName: Ruby 3.3.11-1-x86 +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-3.3.11-1/rubyinstaller-devkit-3.3.11-1-x64.exe + InstallerSha256: 950FD8414178C000229D65943F3383F389E1F4778110687992CC7A06C3382E93 + InstallerSwitches: + Custom: /CURRENTUSER + ProductCode: RubyInstaller-3.3-x64-mingw-ucrt_is1 + AppsAndFeaturesEntries: + - DisplayName: Ruby 3.3.11-1-x64 +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/oneclick/rubyinstaller2/releases/download/RubyInstaller-3.3.11-1/rubyinstaller-devkit-3.3.11-1-x64.exe + InstallerSha256: 950FD8414178C000229D65943F3383F389E1F4778110687992CC7A06C3382E93 + InstallerSwitches: + Custom: /ALLUSERS + ProductCode: RubyInstaller-3.3-x64-mingw-ucrt_is1 + AppsAndFeaturesEntries: + - DisplayName: Ruby 3.3.11-1-x64 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.locale.en-US.yaml b/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.locale.en-US.yaml new file mode 100644 index 000000000000..2e0527bead48 --- /dev/null +++ b/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.locale.en-US.yaml @@ -0,0 +1,46 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: RubyInstallerTeam.RubyWithDevKit.3.3 +PackageVersion: 3.3.11-1 +PackageLocale: en-US +Publisher: RubyInstaller Team +PublisherUrl: https://rubyinstaller.org/ +PublisherSupportUrl: https://github.com/oneclick/rubyinstaller2/issues +PackageName: Ruby 3.3 with MSYS2 +PackageUrl: https://rubyinstaller.org/downloads/ +License: BSD-3-Clause +LicenseUrl: https://github.com/oneclick/rubyinstaller2/blob/HEAD/LICENSE.txt +Copyright: Copyright (c) 2007-2026, RubyInstaller Team. All rights reserved. +ShortDescription: A Ruby language execution environment with a MSYS2 installation. +Description: The RubyInstaller project provides a self-contained Windows-based installer that includes a Ruby-language execution environment and a baseline set of required RubyGems and extensions, integrated with a MSYS2 installation. +Moniker: ruby3-3-devkit +Tags: +- language +- programming +- programming-language +- ruby +- ruby-with-devkit +ReleaseNotes: |- + Added + - Add the missing rdbg executable. #474 + - Add more color to ridk outputs. + Changed + - Update to ruby-3.3.11, see release notes. + - Shrink the 5 app icons to only one and add a subsequent console-based startmenu. + - Use msys2 headless installer in ridk install 1 and install into ruby's base directory. #459 + - Compact ENV display when running ridk enable. #470 + - Fix possible crash in ridk enable when searching the Windows registry. + - Fix detection of MSYS2 in a non-standard location. #445, #350 + - Extend c_rehash.rb helper script to update all three locations of SSL CA certificates #461 + - Preliminary support for MSYS2 environment clang64 . #471 + - Update links to point to the correct repository. #463 + - Update the SSL CA certificate list. + Removed + - Remove libgcc_s_seh-1.dll. It is no longer necessary. #467 +ReleaseNotesUrl: https://github.com/oneclick/rubyinstaller2/releases/tag/RubyInstaller-3.3.11-1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/oneclick/rubyinstaller2/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.locale.zh-CN.yaml b/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.locale.zh-CN.yaml new file mode 100644 index 000000000000..8daad00b2dea --- /dev/null +++ b/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.locale.zh-CN.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: RubyInstallerTeam.RubyWithDevKit.3.3 +PackageVersion: 3.3.11-1 +PackageLocale: zh-CN +ShortDescription: Ruby 语言运行环境,配备 MSYS2。 +Description: RubyInstaller 项目提供一个独立的基于 Windows 的安装包,其中包含 Ruby 语言的运行环境,以及一组基本所需的 RubyGems 和扩展,并集成 MSYS2。 +Tags: +- ruby +- ruby-with-devkit +- 编程 +- 编程语言 +- 语言 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.yaml b/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.yaml new file mode 100644 index 000000000000..f3481c444e3a --- /dev/null +++ b/manifests/r/RubyInstallerTeam/RubyWithDevKit/3/3/3.3.11-1/RubyInstallerTeam.RubyWithDevKit.3.3.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: RubyInstallerTeam.RubyWithDevKit.3.3 +PackageVersion: 3.3.11-1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.installer.yaml b/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.installer.yaml deleted file mode 100644 index 0ce739aed8a9..000000000000 --- a/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.installer.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with komac v2.12.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: RustDesk.RustDesk -PackageVersion: 1.4.1 -InstallerType: exe -Scope: machine -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent-install - SilentWithProgress: --silent-install - Interactive: --install -UpgradeBehavior: install -ReleaseDate: 2025-07-29 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/rustdesk/rustdesk/releases/download/1.4.1/rustdesk-1.4.1-x86-sciter.exe - InstallerSha256: 76720E622E36BC36A1E594D706F2ABC3647931BA59709D2BA9DC15D0354314BE -- Architecture: x64 - InstallerUrl: https://github.com/rustdesk/rustdesk/releases/download/1.4.1/rustdesk-1.4.1-x86_64.exe - InstallerSha256: BA5AF57AFC8E97381AF7201EE35B202AA62F5B162863D9135A3A8908F32FF08A -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.locale.en-US.yaml b/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.locale.en-US.yaml deleted file mode 100644 index 48ecf881beed..000000000000 --- a/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.locale.en-US.yaml +++ /dev/null @@ -1,84 +0,0 @@ -# Created with komac v2.12.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: RustDesk.RustDesk -PackageVersion: 1.4.1 -PackageLocale: en-US -Publisher: RustDesk -PublisherUrl: https://rustdesk.com/ -PublisherSupportUrl: https://github.com/rustdesk/rustdesk/issues -PrivacyUrl: https://rustdesk.com/privacy.html -Author: Purslane Ltd. -PackageName: RustDesk -PackageUrl: https://rustdesk.com/ -License: AGPL-3.0 -LicenseUrl: https://github.com/rustdesk/rustdesk/blob/master/LICENCE -Copyright: Copyright © 2024 Purslane Ltd. -ShortDescription: An open-source remote desktop, and alternative to TeamViewer. -Description: RustDesk is a full-featured open source remote control alternative for self-hosting and security with minimal configuration. -Tags: -- home-office -- remote -- remote-access -- remote-assistance -- remote-control -- remote-desktop -- rust -ReleaseNotes: |- - image - ───────────────┬─────────────────┬─────────────┬─────────────┬──────────────┬─────────────┬──────────────┬─────── - Architecture │Windows │Ubuntu │Mac │Android │Flatpak │iOS │Web - ───────────────┼─────────────────┼─────────────┼─────────────┼──────────────┼─────────────┼──────────────┼─────── - x86-64 (64-bit)│EXE MSI │Download │Download │Universal │Download │ │Go - ───────────────┼─────────────────┼─────────────┼─────────────┼──────────────┼─────────────┼──────────────┼─────── - AArch64 (ARM64)│ │Download │Download │Download │Download │App Store │ - ───────────────┼─────────────────┼─────────────┼─────────────┼──────────────┼─────────────┼──────────────┼─────── - ARMv7 (32-bit) │ │Download │ │Download │ │ │ - ───────────────┼─────────────────┼─────────────┼─────────────┼──────────────┼─────────────┼──────────────┼─────── - x86-32 (32-bit)│EXE │ │ │ │ │ │ - ───────────────┴─────────────────┴─────────────┴─────────────┴──────────────┴─────────────┴──────────────┴─────── - For more downloads (Fedora / Arch Linux / Suse / AppImage): check below please - For the latest features: check out the nightly build - Changelog - Changelog - Added - - Terminal - - UDP and IPv6 Punch - - Stylus - - Numberic one time password option - - Enable force-always-relay option in address books and accessible devices - Changes - - Force secure tcp for login session rather than ignoring timeout - - clear the accessible devices tab when retrieving accessible devices disabled #11913 - - Improve sas - - Shorten retry time (from 18s to 3s) for some network error in rendezvous mediator to make reboot connection faster - Fixes - - macOS resolution list for Retina to solve the problem of unexpected resolution change after disconnection - - Can not input password if lock screen via RustDesk on macOS #11802 - - Key input lag on macOS https://www.reddit.com/r/rustdesk/comments/1kn1w5x/typing_lags_when_connecting_to_macos_clients/ - - Crash of 32 bit on Windows X64 for camera connection - - len(uid) < 4 case for "No active console user logged on" #11943 - - No icon for Rustdesk appimage #11927 - - Test nat type for outgoing-only client - - Untagged tag does not work in secondary or additional address books. #12061 - - bring back allow-https-21114 rustdesk/rustdesk-server-pro#570 (reply in thread) - - linux, nokhwa, camera index #12045 - - win, upload sysinfo #11849 - - mobile never connecting with password from url scheme #11797 - - not work on Windows Server Core since 1.3.9 - - Windows7 x86 >= 1.3.8 rustdesk can't open #12097 - - Privacy Mode 2 Failed ChangeDisplaySettingsEx, ret: -1, last error.... #10540 - - Crash on Android 7.1 when interacting (introduced in 1.3.8) - - Web client - Clicking anywhere brings a paste option #12121 - - Record directory of custom client #12171 - - win, only start tray if is installed exe #11737 - - High CPU on MacOS when the service is Stop #12233 - - rustdesk.service cause high CPU usage when idle #11157 - - Print output truncated at bottom and right side #11410 -ReleaseNotesUrl: https://github.com/rustdesk/rustdesk/releases/tag/1.4.1 -PurchaseUrl: https://rustdesk.com/pricing.html -Documentations: -- DocumentLabel: Documentation - DocumentUrl: https://rustdesk.com/docs/ -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.locale.zh-CN.yaml b/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.locale.zh-CN.yaml deleted file mode 100644 index 5a6db49ba5ba..000000000000 --- a/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.locale.zh-CN.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Created with komac v2.12.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: RustDesk.RustDesk -PackageVersion: 1.4.1 -PackageLocale: zh-CN -Publisher: RustDesk -PublisherUrl: https://rustdesk.com/ -PublisherSupportUrl: https://github.com/rustdesk/rustdesk/issues -PrivacyUrl: https://rustdesk.com/privacy.html -Author: Purslane Ltd. -PackageName: RustDesk -PackageUrl: https://rustdesk.com/ -License: AGPL-3.0 -LicenseUrl: https://github.com/rustdesk/rustdesk/blob/master/LICENCE -Copyright: Copyright © 2024 Purslane Ltd. -ShortDescription: 开源远程桌面,TeamViewer 的替代品。 -Description: RustDesk 是一款功能齐全的开源远程控制替代品,只需最少的配置即可实现自托管和安全性。 -Tags: -- rust -- 远程 -- 远程办公 -- 远程协助 -- 远程控制 -- 远程桌面 -- 远程访问 -- 远程连接 -PurchaseUrl: https://rustdesk.com/pricing.html -Documentations: -- DocumentLabel: 文档 - DocumentUrl: https://rustdesk.com/docs/ -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.yaml b/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.yaml deleted file mode 100644 index b0d58b2a5a24..000000000000 --- a/manifests/r/RustDesk/RustDesk/1.4.1/RustDesk.RustDesk.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with komac v2.12.1 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: RustDesk.RustDesk -PackageVersion: 1.4.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/r/rishiyaduwanshi/boiler/0.3.0/rishiyaduwanshi.boiler.installer.yaml b/manifests/r/rishiyaduwanshi/boiler/0.3.0/rishiyaduwanshi.boiler.installer.yaml new file mode 100644 index 000000000000..c0282f650302 --- /dev/null +++ b/manifests/r/rishiyaduwanshi/boiler/0.3.0/rishiyaduwanshi.boiler.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: rishiyaduwanshi.boiler +PackageVersion: 0.3.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: bl.exe + PortableCommandAlias: boiler +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/rishiyaduwanshi/boiler/releases/download/v0.3.0/boiler_Windows_x86_64.zip + InstallerSha256: F8E8221ACC6AFE006674947035C05C3FDB3D15510A26CAA3D6A11E06EE3422AF +- Architecture: arm64 + InstallerUrl: https://github.com/rishiyaduwanshi/boiler/releases/download/v0.3.0/boiler_Windows_arm64.zip + InstallerSha256: 618F0B857BE8F1C7022BFC0FB02EBD1E7837BD38199D6496004A68ADE8DA9ABE +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-22 diff --git a/manifests/r/rishiyaduwanshi/boiler/0.3.0/rishiyaduwanshi.boiler.locale.en-US.yaml b/manifests/r/rishiyaduwanshi/boiler/0.3.0/rishiyaduwanshi.boiler.locale.en-US.yaml new file mode 100644 index 000000000000..d7aef4c252cc --- /dev/null +++ b/manifests/r/rishiyaduwanshi/boiler/0.3.0/rishiyaduwanshi.boiler.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: rishiyaduwanshi.boiler +PackageVersion: 0.3.0 +PackageLocale: en-US +Publisher: Rishi Yaduwanshi +PublisherUrl: https://github.com/rishiyaduwanshi +PublisherSupportUrl: https://github.com/rishiyaduwanshi/boiler/issues +Author: Abhinav Prakash +PackageName: Boiler +PackageUrl: https://github.com/rishiyaduwanshi/boiler +License: Apache-2.0 +LicenseUrl: https://github.com/rishiyaduwanshi/boiler/blob/main/LICENSE +Copyright: 2025 Abhinav Prakash +ShortDescription: Store reusable code snippets and stacks locally and in remote repositories. +Description: |- + Boiler is a CLI tool to store and reuse code snippets and project templates locally and in remote . + Features include automatic versioning, template variables, and zero configuration. + Stop installing entire packages for one function. Stop copy-pasting code between projects. +Moniker: boiler +Tags: +- cli +- code-snippets +- boilerplate +- templates +- productivity +- developer-tools +- go +- golang +ReleaseNotesUrl: https://github.com/rishiyaduwanshi/boiler/releases/tag/v0.3.0 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://boiler.iamabhinav.dev +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/rishiyaduwanshi/boiler/0.3.0/rishiyaduwanshi.boiler.yaml b/manifests/r/rishiyaduwanshi/boiler/0.3.0/rishiyaduwanshi.boiler.yaml new file mode 100644 index 000000000000..5fa5d9a2af86 --- /dev/null +++ b/manifests/r/rishiyaduwanshi/boiler/0.3.0/rishiyaduwanshi.boiler.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: rishiyaduwanshi.boiler +PackageVersion: 0.3.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/OpenCodeDesktop/1.3.3/SST.OpenCodeDesktop.installer.yaml b/manifests/s/SST/OpenCodeDesktop/1.3.3/SST.OpenCodeDesktop.installer.yaml new file mode 100644 index 000000000000..59f6fb1d5519 --- /dev/null +++ b/manifests/s/SST/OpenCodeDesktop/1.3.3/SST.OpenCodeDesktop.installer.yaml @@ -0,0 +1,22 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: SST.OpenCodeDesktop +PackageVersion: 1.3.3 +InstallerType: nullsoft +Scope: user +ProductCode: OpenCode +ReleaseDate: 2026-03-26 +AppsAndFeaturesEntries: +- ProductCode: OpenCode +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\OpenCode' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/anomalyco/opencode/releases/download/v1.3.3/opencode-desktop-windows-x64.exe + InstallerSha256: 99EB3C26730F0222B18A5A9273117B92353F5DBF313B40CE43CF823609DDDC47 +- Architecture: arm64 + InstallerUrl: https://github.com/anomalyco/opencode/releases/download/v1.3.3/opencode-desktop-windows-arm64.exe + InstallerSha256: F43E912DE3D67FE4F71400BFCBA4A45337D82E3784D82BDD1D7A193EB7DE9C8A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/OpenCodeDesktop/1.3.3/SST.OpenCodeDesktop.locale.en-US.yaml b/manifests/s/SST/OpenCodeDesktop/1.3.3/SST.OpenCodeDesktop.locale.en-US.yaml new file mode 100644 index 000000000000..c5968e81c2cd --- /dev/null +++ b/manifests/s/SST/OpenCodeDesktop/1.3.3/SST.OpenCodeDesktop.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: SST.OpenCodeDesktop +PackageVersion: 1.3.3 +PackageLocale: en-US +Publisher: opencode +PublisherUrl: https://anoma.ly/ +PublisherSupportUrl: https://github.com/anomalyco/opencode/issues +PackageName: OpenCode +PackageUrl: https://opencode.ai/ +License: MIT +LicenseUrl: https://github.com/anomalyco/opencode/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 opencode +ShortDescription: OpenCode is an open source agent that helps you write and run code with any AI model. It''s available as a terminal-based interface, desktop app, or IDE extension. +Description: |- + opencode is an AI coding agent. It features: + - A responsive, native, themeable terminal UI and desktop app. + - Automatically loads the right LSPs, so the LLMs make fewer mistakes. + - Have multiple agents working in parallel on the same project. + - Create shareable links to any session for reference or to debug. + - Log in with Anthropic to use your Claude Pro or Claude Max account. + - Supports 75+ LLM providers through Models.dev, including local models. +Tags: +- ai +- code +- coding +- develop +- development +- programming +ReleaseNotes: |- + TUI + - Bypass local SSE event streaming in worker for improved performance (#19183) + - Fix image paste support on Windows Terminal 1.25+ with kitty keyboard enabled (#17674) + + Desktop + - Embed WebUI directly in the binary with configurable proxy flags (#19299) + - Fix agent normalization in desktop app (#19169) + - Fix project switch flickering when using keybinds by pre-warming globalSync state (#19088) + - Move message navigation from cmd+arrow to cmd+opt+[ / cmd+opt+] to preserve native cursor movement (#18728) + - Add createDirectory option to directory picker in Electron app (#19071) + - Remove .json extension from electron-store for seamless Tauri to Electron migration (#19082) + + Core + - Initial implementation of event-sourced syncing system for session data (#17814) + - Fix enterprise URL not being set properly during authentication flow (#19212) + - Classify ZlibError from Bun fetch as retryable instead of unknown error (#19104) + - Skip snapshotting files larger than 2MB to improve performance (#19043) + - Respect agent permission configuration for todowrite tool (#19125) + - Fix DWS workflow tools being silently cancelled due to missing tool approval support (#19185) + - Fix MCP servers disappearing after transient errors and improve OAuth handling (#19042) + + Misc + - Revert git-backed review modes to restore compatibility with older CLI builds (#19295) +ReleaseNotesUrl: https://github.com/anomalyco/opencode/releases/tag/v1.3.3 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://opencode.ai/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/OpenCodeDesktop/1.3.3/SST.OpenCodeDesktop.yaml b/manifests/s/SST/OpenCodeDesktop/1.3.3/SST.OpenCodeDesktop.yaml new file mode 100644 index 000000000000..a6d0aa37018a --- /dev/null +++ b/manifests/s/SST/OpenCodeDesktop/1.3.3/SST.OpenCodeDesktop.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: SST.OpenCodeDesktop +PackageVersion: 1.3.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/opencode/1.3.3/SST.opencode.installer.yaml b/manifests/s/SST/opencode/1.3.3/SST.opencode.installer.yaml new file mode 100644 index 000000000000..e134ef78b322 --- /dev/null +++ b/manifests/s/SST/opencode/1.3.3/SST.opencode.installer.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: SST.opencode +PackageVersion: 1.3.3 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: opencode.exe +Commands: +- opencode +ReleaseDate: 2026-03-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/anomalyco/opencode/releases/download/v1.3.3/opencode-windows-x64.zip + InstallerSha256: B3E8ADC6A166DB35FB32F9502152622979D9C9104F8A36421578D9EFF2E0DF6B +- Architecture: arm64 + InstallerUrl: https://github.com/anomalyco/opencode/releases/download/v1.3.3/opencode-windows-arm64.zip + InstallerSha256: C3963AA559D1A6CF08388CF525015832DD208DAE7E7AF3A9F468528A885398BB +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/opencode/1.3.3/SST.opencode.locale.en-US.yaml b/manifests/s/SST/opencode/1.3.3/SST.opencode.locale.en-US.yaml new file mode 100644 index 000000000000..42f7dbc790bf --- /dev/null +++ b/manifests/s/SST/opencode/1.3.3/SST.opencode.locale.en-US.yaml @@ -0,0 +1,57 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: SST.opencode +PackageVersion: 1.3.3 +PackageLocale: en-US +Publisher: SST +PublisherUrl: https://sst.dev/ +PublisherSupportUrl: https://github.com/sst/opencode/issues +PackageName: opencode +PackageUrl: https://opencode.ai/ +License: MIT +LicenseUrl: https://github.com/sst/opencode/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 opencode +ShortDescription: The AI coding agent built for the terminal. +Description: |- + opencode is an AI coding agent built for the terminal. It features: + - A responsive, native, themeable terminal UI. + - Automatically loads the right LSPs, so the LLMs make fewer mistakes. + - Have multiple agents working in parallel on the same project. + - Create shareable links to any session for reference or to debug. + - Log in with Anthropic to use your Claude Pro or Claude Max account. + - Supports 75+ LLM providers through Models.dev, including local models. +Tags: +- ai +- code +- coding +- develop +- development +- programming +ReleaseNotes: |- + TUI + - Bypass local SSE event streaming in worker for improved performance (#19183) + - Fix image paste support on Windows Terminal 1.25+ with kitty keyboard enabled (#17674) + Desktop + - Embed WebUI directly in the binary with configurable proxy flags (#19299) + - Fix agent normalization in desktop app (#19169) + - Fix project switch flickering when using keybinds by pre-warming globalSync state (#19088) + - Move message navigation from cmd+arrow to cmd+opt+[ / cmd+opt+] to preserve native cursor movement (#18728) + - Add createDirectory option to directory picker in Electron app (#19071) + - Remove .json extension from electron-store for seamless Tauri to Electron migration (#19082) + Core + - Initial implementation of event-sourced syncing system for session data (#17814) + - Fix enterprise URL not being set properly during authentication flow (#19212) + - Classify ZlibError from Bun fetch as retryable instead of unknown error (#19104) + - Skip snapshotting files larger than 2MB to improve performance (#19043) + - Respect agent permission configuration for todowrite tool (#19125) + - Fix DWS workflow tools being silently cancelled due to missing tool approval support (#19185) + - Fix MCP servers disappearing after transient errors and improve OAuth handling (#19042) + Misc + - Revert git-backed review modes to restore compatibility with older CLI builds (#19295) +ReleaseNotesUrl: https://github.com/anomalyco/opencode/releases/tag/v1.3.3 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://opencode.ai/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/opencode/1.3.3/SST.opencode.locale.zh-CN.yaml b/manifests/s/SST/opencode/1.3.3/SST.opencode.locale.zh-CN.yaml new file mode 100644 index 000000000000..a543e8d4bbb7 --- /dev/null +++ b/manifests/s/SST/opencode/1.3.3/SST.opencode.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: SST.opencode +PackageVersion: 1.3.3 +PackageLocale: zh-CN +ShortDescription: 专为终端打造的 AI 编程助手 +Description: |- + opencode 是一款专为终端打造的 AI 编程助手,具备以下特性: + - 响应式、原生、可主题定制的终端界面 + - 自动加载正确的 LSP,减少 LLM 的错误率 + - 支持多个智能体并行处理同一项目 + - 可为任何会话生成可分享链接,便于参考或调试 + - 支持通过 Anthropic 登录使用 Claude Pro 或 Claude Max 账户 + - 通过 Models.dev 集成 75+ 个 LLM 服务提供商,包括本地模型 +Tags: +- ai +- 代码 +- 开发 +- 编程 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://opencode.ai/docs/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/opencode/1.3.3/SST.opencode.yaml b/manifests/s/SST/opencode/1.3.3/SST.opencode.yaml new file mode 100644 index 000000000000..fded48cadf40 --- /dev/null +++ b/manifests/s/SST/opencode/1.3.3/SST.opencode.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: SST.opencode +PackageVersion: 1.3.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/SatoshiLabs/trezor-suite/26.3.3/SatoshiLabs.trezor-suite.installer.yaml b/manifests/s/SatoshiLabs/trezor-suite/26.3.3/SatoshiLabs.trezor-suite.installer.yaml new file mode 100644 index 000000000000..505ed9ffb211 --- /dev/null +++ b/manifests/s/SatoshiLabs/trezor-suite/26.3.3/SatoshiLabs.trezor-suite.installer.yaml @@ -0,0 +1,26 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: SatoshiLabs.trezor-suite +PackageVersion: 26.3.3 +InstallerType: nullsoft +ProductCode: 978be57b-9286-5cd7-a60b-54c81352a986 +ReleaseDate: 2026-03-26 +AppsAndFeaturesEntries: +- DisplayName: Trezor Suite 26.3.3 + ProductCode: 978be57b-9286-5cd7-a60b-54c81352a986 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/trezor/trezor-suite/releases/download/v26.3.3/Trezor-Suite-26.3.3-win-x64.exe + InstallerSha256: 3151CA32874CB12888DE12B0F6E9DAE5AA380E2484555ACE6E54D33E709CCEEC + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/trezor/trezor-suite/releases/download/v26.3.3/Trezor-Suite-26.3.3-win-x64.exe + InstallerSha256: 3151CA32874CB12888DE12B0F6E9DAE5AA380E2484555ACE6E54D33E709CCEEC + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/SatoshiLabs/trezor-suite/26.3.3/SatoshiLabs.trezor-suite.locale.en-US.yaml b/manifests/s/SatoshiLabs/trezor-suite/26.3.3/SatoshiLabs.trezor-suite.locale.en-US.yaml new file mode 100644 index 000000000000..aa29e5a888f9 --- /dev/null +++ b/manifests/s/SatoshiLabs/trezor-suite/26.3.3/SatoshiLabs.trezor-suite.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: SatoshiLabs.trezor-suite +PackageVersion: 26.3.3 +PackageLocale: en-US +Publisher: SatoshiLabs +PublisherUrl: https://github.com/trezor +PublisherSupportUrl: https://github.com/trezor/trezor-suite/issues +Author: trezor +PackageName: Trezor Suite +PackageUrl: https://github.com/trezor/trezor-suite +License: TREZOR REFERENCE SOURCE LICENSE (T-RSL) +LicenseUrl: https://github.com/trezor/trezor-suite/blob/HEAD/LICENSE.md +ShortDescription: Trezor Suite desktop application +Tags: +- bitcoin +- electron +- suite +- trezor +- wallet +ReleaseNotes: |- + 🎨 Improvements + - Solana account data inconsistencies have been resolved, ensuring more accurate account information and balances. + - Cardano staking has been enhanced. Users can now update their delegation preferences directly within the staking interface. + - Decentralized exchanges (DEXs) are now highlighted at the top of the comparison page, helping you more easily discover non-custodial trading options. + - The country picker has been refined for a smoother and more intuitive selection experience. U.S. users can now also select their state. + - The trading flow with BTC Direct has been simplified for a more streamlined experience. + + 🔧 Bug fixes + - Fixed transaction simulation in Connect Popup for EVM transactions requiring higher than default gas limit. + - Minor issues have been resolved, along with general usability improvements for a more stable and seamless experience. +ReleaseNotesUrl: https://github.com/trezor/trezor-suite/releases/tag/v26.3.3 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/trezor/trezor-suite/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SatoshiLabs/trezor-suite/26.3.3/SatoshiLabs.trezor-suite.yaml b/manifests/s/SatoshiLabs/trezor-suite/26.3.3/SatoshiLabs.trezor-suite.yaml new file mode 100644 index 000000000000..00d51b820154 --- /dev/null +++ b/manifests/s/SatoshiLabs/trezor-suite/26.3.3/SatoshiLabs.trezor-suite.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: SatoshiLabs.trezor-suite +PackageVersion: 26.3.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/sibexico/Trusty/0.4.2/sibexico.Trusty.installer.yaml b/manifests/s/sibexico/Trusty/0.4.2/sibexico.Trusty.installer.yaml new file mode 100644 index 000000000000..a57987fe3382 --- /dev/null +++ b/manifests/s/sibexico/Trusty/0.4.2/sibexico.Trusty.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: sibexico.Trusty +PackageVersion: 0.4.2 +InstallerType: portable +Commands: +- trusty +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/sibexico/Trusty/releases/download/v0.4.2/trusty_0.4.2_windows_x86_64.exe + InstallerSha256: 53B3200B5DA5790F754ED460A7DE4282473687C9EFE3075CD25B4A7BA7A53516 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-19 diff --git a/manifests/s/sibexico/Trusty/0.4.2/sibexico.Trusty.locale.en-US.yaml b/manifests/s/sibexico/Trusty/0.4.2/sibexico.Trusty.locale.en-US.yaml new file mode 100644 index 000000000000..47ede99d6020 --- /dev/null +++ b/manifests/s/sibexico/Trusty/0.4.2/sibexico.Trusty.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: sibexico.Trusty +PackageVersion: 0.4.2 +PackageLocale: en-US +Publisher: Nicolas Altmann +PublisherUrl: https://github.com/sibexico +PublisherSupportUrl: https://github.com/sibexico/Trusty/issues +PackageName: Trusty Messenger +PackageUrl: https://github.com/sibexico/Trusty +License: MIT +ShortDescription: End-to-end encryption in any conversation +ReleaseNotesUrl: https://github.com/sibexico/Trusty/releases/tag/v0.4.2 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/sibexico/Trusty/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/sibexico/Trusty/0.4.2/sibexico.Trusty.yaml b/manifests/s/sibexico/Trusty/0.4.2/sibexico.Trusty.yaml new file mode 100644 index 000000000000..e7b956a38249 --- /dev/null +++ b/manifests/s/sibexico/Trusty/0.4.2/sibexico.Trusty.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: sibexico.Trusty +PackageVersion: 0.4.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.installer.yaml b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.installer.yaml similarity index 83% rename from manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.installer.yaml rename to manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.installer.yaml index 95e6a413d7d7..937b896a8250 100644 --- a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.installer.yaml +++ b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem -PackageVersion: 2026.3.26 +PackageVersion: 2026.3.27 InstallerType: exe Scope: user InstallModes: @@ -17,6 +17,6 @@ ProductCode: Tandem Installers: - Architecture: x64 InstallerUrl: https://tandemhealth.blob.core.windows.net/tandem-public/native/Tandem-win-Setup.exe - InstallerSha256: 01A9000D62F5FF18468E1C147BAE4392A5E21B2B30986F3DBE1F30AD70183073 + InstallerSha256: 575EABC88C1506C8F8F803060F3AD990D8FDEB2DE4A31A868F5259AB1FCD91BC ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.da.yaml b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.da.yaml similarity index 96% rename from manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.da.yaml rename to manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.da.yaml index 1d4d13034a91..0f4341cd32de 100644 --- a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.da.yaml +++ b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.da.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem -PackageVersion: 2026.3.26 +PackageVersion: 2026.3.27 PackageLocale: da PublisherUrl: https://tandemhealth.ai/da/ PrivacyUrl: https://tandemhealth.ai/da/juridisk/privatlivspolitik diff --git a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.de.yaml b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.de.yaml similarity index 96% rename from manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.de.yaml rename to manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.de.yaml index 489e5f835668..e1c0be64930f 100644 --- a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.de.yaml +++ b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.de.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem -PackageVersion: 2026.3.26 +PackageVersion: 2026.3.27 PackageLocale: de PublisherUrl: https://tandemhealth.ai/de/ PublisherSupportUrl: https://intercom-help.eu/tandem-eu/de/ diff --git a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.en-US.yaml b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.en-US.yaml similarity index 97% rename from manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.en-US.yaml rename to manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.en-US.yaml index fbd46e13af6a..63d3d7f22c81 100644 --- a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.en-US.yaml +++ b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem -PackageVersion: 2026.3.26 +PackageVersion: 2026.3.27 PackageLocale: en-US Publisher: Tandem PublisherUrl: https://tandemhealth.ai/ diff --git a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.es.yaml b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.es.yaml similarity index 96% rename from manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.es.yaml rename to manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.es.yaml index 3c6f2a318a06..e360805a9571 100644 --- a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.es.yaml +++ b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.es.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem -PackageVersion: 2026.3.26 +PackageVersion: 2026.3.27 PackageLocale: es PublisherUrl: https://tandemhealth.ai/es/ PublisherSupportUrl: https://intercom-help.eu/tandem-eu/es/ diff --git a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.et.yaml b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.et.yaml similarity index 96% rename from manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.et.yaml rename to manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.et.yaml index 0242a4b7c78c..6d97e989e38a 100644 --- a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.et.yaml +++ b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.et.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem -PackageVersion: 2026.3.26 +PackageVersion: 2026.3.27 PackageLocale: et PublisherUrl: https://tandemhealth.ai/et/ PrivacyUrl: https://tandemhealth.ai/et/juriidiline/privacy-policy diff --git a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.fi.yaml b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.fi.yaml similarity index 96% rename from manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.fi.yaml rename to manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.fi.yaml index 3556d9d4ca58..c38687ed395a 100644 --- a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.fi.yaml +++ b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.fi.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem -PackageVersion: 2026.3.26 +PackageVersion: 2026.3.27 PackageLocale: fi PublisherUrl: https://tandemhealth.ai/fi/ PrivacyUrl: https://tandemhealth.ai/fi/legal/tietosuoja diff --git a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.fr.yaml b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.fr.yaml similarity index 97% rename from manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.fr.yaml rename to manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.fr.yaml index 209e96d18012..8522ca9197c1 100644 --- a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.fr.yaml +++ b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.fr.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem -PackageVersion: 2026.3.26 +PackageVersion: 2026.3.27 PackageLocale: fr PublisherUrl: https://tandemhealth.ai/fr/ PublisherSupportUrl: https://intercom-help.eu/tandem-eu/fr/ diff --git a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.no.yaml b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.no.yaml similarity index 96% rename from manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.no.yaml rename to manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.no.yaml index 5f02d93a1916..f6b9eb41638d 100644 --- a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.no.yaml +++ b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.no.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem -PackageVersion: 2026.3.26 +PackageVersion: 2026.3.27 PackageLocale: "no" PublisherUrl: https://tandemhealth.ai/no/ PrivacyUrl: https://tandemhealth.ai/no/juridisk/personvern diff --git a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.sv.yaml b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.sv.yaml similarity index 96% rename from manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.sv.yaml rename to manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.sv.yaml index 2e2d0d5901f2..7bf250bc2b0a 100644 --- a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.locale.sv.yaml +++ b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.locale.sv.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem -PackageVersion: 2026.3.26 +PackageVersion: 2026.3.27 PackageLocale: sv PublisherUrl: https://tandemhealth.ai/sv/ PublisherSupportUrl: https://intercom-help.eu/tandem-eu/sv/ diff --git a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.yaml b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.yaml similarity index 90% rename from manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.yaml rename to manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.yaml index 6ac5a359e509..b49510852036 100644 --- a/manifests/t/TandemHealth/Tandem/2026.3.26/TandemHealth.Tandem.yaml +++ b/manifests/t/TandemHealth/Tandem/2026.3.27/TandemHealth.Tandem.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem -PackageVersion: 2026.3.26 +PackageVersion: 2026.3.27 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.installer.yaml b/manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.installer.yaml similarity index 74% rename from manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.installer.yaml rename to manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.installer.yaml index 7cf76c84d751..1f412341292a 100644 --- a/manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.installer.yaml +++ b/manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Termius.Termius.Beta -PackageVersion: 9.37.5 +PackageVersion: 9.37.6 InstallerType: nullsoft Scope: user InstallerSwitches: @@ -12,13 +12,13 @@ Protocols: - ssh - terminus ProductCode: 783bade9-3e66-5d68-a8fa-f225b8034101 -ReleaseDate: 2026-03-12 +ReleaseDate: 2026-03-27 Installers: - Architecture: x86 InstallerUrl: https://autoupdate.termius.com/windows-beta/Install%20Termius%20Beta.exe - InstallerSha256: 53A0307E31BDFCC0E069B85E7937B700DFD26F72A139DFC904BE63D8B8FF2113 + InstallerSha256: 7D5C5CC319745F643BD31D1DAF698B4B8E184993DD3DAC0219DBF88B8BB6E29B - Architecture: x64 InstallerUrl: https://autoupdate.termius.com/windows-beta/Install%20Termius%20Beta.exe - InstallerSha256: 53A0307E31BDFCC0E069B85E7937B700DFD26F72A139DFC904BE63D8B8FF2113 + InstallerSha256: 7D5C5CC319745F643BD31D1DAF698B4B8E184993DD3DAC0219DBF88B8BB6E29B ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.locale.en-US.yaml b/manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.locale.en-US.yaml similarity index 98% rename from manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.locale.en-US.yaml rename to manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.locale.en-US.yaml index 905da8d4d419..03aa7c8c8765 100644 --- a/manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.locale.en-US.yaml +++ b/manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Termius.Termius.Beta -PackageVersion: 9.37.5 +PackageVersion: 9.37.6 PackageLocale: en-US Publisher: Termius Corporation PublisherUrl: https://termius.com/ diff --git a/manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.locale.zh-CN.yaml b/manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.locale.zh-CN.yaml similarity index 97% rename from manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.locale.zh-CN.yaml rename to manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.locale.zh-CN.yaml index 9d2ff7795b0b..f1075d483ea9 100644 --- a/manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.locale.zh-CN.yaml +++ b/manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Termius.Termius.Beta -PackageVersion: 9.37.5 +PackageVersion: 9.37.6 PackageLocale: zh-CN License: 专有软件 ShortDescription: 适用于 Windows 的现代 SSH 客户端 diff --git a/manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.yaml b/manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.yaml similarity index 91% rename from manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.yaml rename to manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.yaml index d5ba304bd39c..7fb395efd5f6 100644 --- a/manifests/t/Termius/Termius/Beta/9.37.5/Termius.Termius.Beta.yaml +++ b/manifests/t/Termius/Termius/Beta/9.37.6/Termius.Termius.Beta.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Termius.Termius.Beta -PackageVersion: 9.37.5 +PackageVersion: 9.37.6 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 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/u/Unibo/Alchemist/43.0.23/Unibo.Alchemist.installer.yaml b/manifests/u/Unibo/Alchemist/43.0.23/Unibo.Alchemist.installer.yaml new file mode 100644 index 000000000000..2a55bcccbd02 --- /dev/null +++ b/manifests/u/Unibo/Alchemist/43.0.23/Unibo.Alchemist.installer.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Unibo.Alchemist +PackageVersion: 43.0.23 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ProductCode: '{86FDBC21-FAEF-3C7F-A067-B7580631E707}' +AppsAndFeaturesEntries: +- DisplayName: alchemist + Publisher: Unknown + ProductCode: '{86FDBC21-FAEF-3C7F-A067-B7580631E707}' + UpgradeCode: '{4342BF32-7612-3295-9D0C-A06586CDA5D4}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\alchemist' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/AlchemistSimulator/Alchemist/releases/download/43.0.23/alchemist-43.0.23.msi + InstallerSha256: D23B7B4DB8E9F04AA0B346B2FBA733C574052F157C2AF4D29502D81D6C2B0A4B +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-03-26 diff --git a/manifests/u/Unibo/Alchemist/43.0.23/Unibo.Alchemist.locale.en-US.yaml b/manifests/u/Unibo/Alchemist/43.0.23/Unibo.Alchemist.locale.en-US.yaml new file mode 100644 index 000000000000..97d70c59a58f --- /dev/null +++ b/manifests/u/Unibo/Alchemist/43.0.23/Unibo.Alchemist.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Unibo.Alchemist +PackageVersion: 43.0.23 +PackageLocale: en-US +Publisher: Unibo +PublisherUrl: https://github.com/AlchemistSimulator +PublisherSupportUrl: https://github.com/AlchemistSimulator/Alchemist/issues +PackageName: Alchemist +PackageUrl: https://github.com/AlchemistSimulator/Alchemist +License: GPLv3 +LicenseUrl: https://github.com/AlchemistSimulator/Alchemist/blob/HEAD/LICENSE.md +ShortDescription: an extensible simulator for pervasive computing +ReleaseNotesUrl: https://github.com/AlchemistSimulator/Alchemist/releases/tag/43.0.23 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/AlchemistSimulator/Alchemist/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/u/Unibo/Alchemist/43.0.23/Unibo.Alchemist.yaml b/manifests/u/Unibo/Alchemist/43.0.23/Unibo.Alchemist.yaml new file mode 100644 index 000000000000..76afcf222f82 --- /dev/null +++ b/manifests/u/Unibo/Alchemist/43.0.23/Unibo.Alchemist.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Unibo.Alchemist +PackageVersion: 43.0.23 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.installer.yaml b/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.installer.yaml new file mode 100644 index 000000000000..85adea49f5cf --- /dev/null +++ b/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.installer.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: VidJuice.UniTube +PackageVersion: 7.5.2 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +ProductCode: VidJuice UniTube_is1 +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://download.vidjuice.com/unitube.exe?v=7.5.2 + InstallerSha256: C12787EF5E5E869C3A51CF3BD91861E6863758B44EEAA0F0E1CED73900F9FDA8 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.locale.en-US.yaml b/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.locale.en-US.yaml new file mode 100644 index 000000000000..f74c221d0a9e --- /dev/null +++ b/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: VidJuice.UniTube +PackageVersion: 7.5.2 +PackageLocale: en-US +Publisher: Mobee Technology Co., Limited +PublisherUrl: https://www.vidjuice.com/ +PublisherSupportUrl: https://www.vidjuice.com/support/ +PrivacyUrl: https://www.vidjuice.com/privacy-policy/ +PackageName: VidJuice UniTube +PackageUrl: https://www.vidjuice.com/download/ +License: Proprietary +LicenseUrl: https://www.vidjuice.com/terms-of-service/ +Copyright: Copyright © 2026 VidJuice. All rights reserved. +CopyrightUrl: https://www.vidjuice.com/terms-of-service/ +ShortDescription: Download videos and audios from 10,000+ sites across all your devices +Tags: +- audio +- audio-downloader +- download +- downloader +- media +- media-downloader +- video +- video-downloader +ReleaseNotes: 1. Fixed some bugs. +ReleaseNotesUrl: https://www.vidjuice.com/tech-specs/unitube-update-history/ +PurchaseUrl: https://www.vidjuice.com/pricing/unitube-video-downloader/ +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://www.vidjuice.com/guide/how-to-download-online-videos-with-vidjuice-unitube/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.locale.zh-CN.yaml b/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.locale.zh-CN.yaml new file mode 100644 index 000000000000..67a069d6ecbf --- /dev/null +++ b/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.locale.zh-CN.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: VidJuice.UniTube +PackageVersion: 7.5.2 +PackageLocale: zh-CN +Publisher: Mobee Technology Co., Limited +PublisherUrl: https://zh-cn.vidjuice.com/ +PublisherSupportUrl: https://zh-cn.vidjuice.com/support/ +PrivacyUrl: https://zh-cn.vidjuice.com/privacy-policy/ +PackageName: VidJuice UniTube +PackageUrl: https://zh-cn.vidjuice.com/download/ +License: 专有软件 +LicenseUrl: https://zh-cn.vidjuice.com/terms-of-service/ +Copyright: Copyright © 2026 VidJuice. All rights reserved. +CopyrightUrl: https://zh-cn.vidjuice.com/terms-of-service/ +ShortDescription: 在所有设备上从 10,000+ 网站下载视频和音频 +Tags: +- 下载 +- 下载器 +- 媒体 +- 视频 +- 音乐 +- 音频 +ReleaseNotesUrl: https://zh-cn.vidjuice.com/tech-specs/unitube-update-history +PurchaseUrl: https://zh-cn.vidjuice.com/pricing/unitube-video-downloader/ +Documentations: +- DocumentLabel: 用户指南 + DocumentUrl: https://zh-cn.vidjuice.com/guide/how-to-download-online-videos-with-vidjuice-unitube/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.yaml b/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.yaml new file mode 100644 index 000000000000..ad79a883439d --- /dev/null +++ b/manifests/v/VidJuice/UniTube/7.5.2/VidJuice.UniTube.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: VidJuice.UniTube +PackageVersion: 7.5.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/w/WHONET/AMRIE/v26.3.26/WHONET.AMRIE.installer.yaml b/manifests/w/WHONET/AMRIE/v26.3.26/WHONET.AMRIE.installer.yaml deleted file mode 100644 index 672567c11846..000000000000 --- a/manifests/w/WHONET/AMRIE/v26.3.26/WHONET.AMRIE.installer.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with komac v2.15.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: WHONET.AMRIE -PackageVersion: v26.3.26 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: /quiet - SilentWithProgress: /passive -UpgradeBehavior: install -Dependencies: - PackageDependencies: - - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8 -ProductCode: '{26240CA9-1170-483E-B983-BF5215327469}' -ReleaseDate: 2026-03-26 -AppsAndFeaturesEntries: -- ProductCode: '{26240CA9-1170-483E-B983-BF5215327469}' - UpgradeCode: '{1A6FF147-1163-4CC4-BAA8-0719A40CEB05}' -InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%/AMR Interpretation Engine' -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/AClark-WHONET/AMRIE/releases/download/v26.3.26/AMR_Interpretation_Engine_v26.3.26.msi - InstallerSha256: F850802B56D979698D207261A76D98ECAB237AFA58261076A2FDB32DCB089A39 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/w/WHONET/AMRIE/v26.3.26/WHONET.AMRIE.locale.en-US.yaml b/manifests/w/WHONET/AMRIE/v26.3.26/WHONET.AMRIE.locale.en-US.yaml deleted file mode 100644 index 26fa8fb475c8..000000000000 --- a/manifests/w/WHONET/AMRIE/v26.3.26/WHONET.AMRIE.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Created with komac v2.15.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: WHONET.AMRIE -PackageVersion: v26.3.26 -PackageLocale: en-US -Publisher: Brigham and Women's Hospital -PublisherUrl: https://github.com/AClark-WHONET -PublisherSupportUrl: https://github.com/AClark-WHONET/AMRIE/issues -PackageName: AMR Interpretation Engine -PackageUrl: https://github.com/AClark-WHONET/AMRIE -License: GPL-3.0 -LicenseUrl: https://github.com/AClark-WHONET/AMRIE/blob/HEAD/LICENSE -ShortDescription: The AMR Interpretation Engine is a standalone software which can interpret AMR measurements using CLSI and EUCAST breakpoints. The system also includes resource files which can be used independently of the interpretation system by 3rd parties. -Description: |- - This software was created by the WHONET development team (https://whonet.org) to facilitate the interpretation of antibiotic measurements according to the various supported guidelines available for this purpose, and published by those groups (CLSI, EUCAST, etc.). - The system can be integrated with your project via the Interpretation Engine library, or it can be used directly with either the command line interface or interactive interface projects. - The interactive interface is designed primarily to allow you to exercise the various functions of the system, but it can also allow you to process an input file into an output file with the interpretations. - The command-line interface facilitates easy incorporation with a 3rd-party system since the developer does not need to know how to use the various library functions associated. With that said, the CLI project is very small, so it should serve as a window into how to accomplish the basic needs if direct library integration was preferred. - The breakpoints and other tables will be kept up-to-date over time (Interpretaion Engine\Resources), and are useful in their own right, even if the software implementation of the engine is not for your purposes. For example, there are several groups who only utilize our tables. This repository now serves as the official source for these WHONET-related resources. - To process a complete data file, the input file must use WHONET naming conventions for the data columns. Sample data and configuration files are also provided in the Interpretation Engine\Resources\ folder. - We also provide SQL queries which can demonstrate certain aspects of the system, but which are not used directly by the code here. We have chosen to implement these function as pure C# code to assist others if they choose to make their own implementations, and also to eliminate any dependence on a certain database technology. Because the application only uses C# with a recent .NET version, it should be possible to build the library code for many platforms. -Tags: -- AMR -- Antibiotics -- Bacteriology -- CLSI -- EUCAST -- Microbiology -ReleaseNotes: Adds the 2026 CLSI and EUCAST breakpoints, QC tables, ECOFFs and other related annual updates. -ReleaseNotesUrl: https://github.com/AClark-WHONET/AMRIE/releases/tag/v26.3.26 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.installer.yaml b/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.installer.yaml new file mode 100644 index 000000000000..7db2d50625e3 --- /dev/null +++ b/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Wasmer.Wasmer +PackageVersion: 7.1.0 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Commands: +- wasmer +- wasmer-headless +- wax +FileExtensions: +- wasm +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ProductCode: Wasmer_is1 +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/wasmerio/wasmer/releases/download/v7.1.0/wasmer-windows.exe + InstallerSha256: AB7824CF469BD4C40C63686BC9759AD76ED04CB161EBD29E937934E9D1C009FF +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.locale.en-US.yaml b/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.locale.en-US.yaml new file mode 100644 index 000000000000..cea48e7003f2 --- /dev/null +++ b/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.locale.en-US.yaml @@ -0,0 +1,45 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Wasmer.Wasmer +PackageVersion: 7.1.0 +PackageLocale: en-US +Publisher: Wasmer, Inc. +PublisherUrl: https://wasmer.io +PublisherSupportUrl: https://github.com/wasmerio/wasmer/issues +Author: Wasmer, Inc. +PackageName: Wasmer +PackageUrl: https://wasmer.io +License: MIT +LicenseUrl: https://github.com/wasmerio/wasmer/blob/master/LICENSE +Copyright: Copyright (c) 2019-present Wasmer, Inc. and its affiliates. +ShortDescription: The leading WebAssembly Runtime supporting WASI and Emscripten +Description: 'Wasmer is a fast and secure WebAssembly runtime that enables super lightweight containers to run anywhere: from Desktop to the Cloud, Edge and IoT devices.' +Tags: +- wasm +- webassembly +ReleaseNotes: |- + This release includes: + - A new N-API interface supporting Edge.js. + - Better CPU scaling for the Cranelift and LLVM compilers on larger modules such as PHP and Python workloads. + - A substantial overhaul of WASIX TTY support. + - A complete rewrite of WASIX epoll. + - Tail Call support in the LLVM compiler. + - Extended Constant Expression support across all compilers. + - Relaxed SIMD support in the LLVM and Cranelift compilers. + - Wide Arithmetic support in LLVM and Cranelift. + - A redesigned --enable-pass-params-opt optimization for LLVM, now enabled by default. + - A new perf annotate-style script for improved profiling. + - Easier reproducible distribution builds through the WASMER_REPRODUCIBLE_BUILD=1 environment variable. + - A new secret export and secret import subcommands were introduced for easier manipulation with secrets. + - Added run --enable-nan-canonicalization. + Added + Changed + - #6357 build: adapt make-release.py for the napi crate as a submodule + Fixed +ReleaseNotesUrl: https://github.com/wasmerio/wasmer/blob/master/CHANGELOG.md#710---27032026 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.wasmer.io +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.locale.zh-CN.yaml b/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.locale.zh-CN.yaml new file mode 100644 index 000000000000..4604ff75c920 --- /dev/null +++ b/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.locale.zh-CN.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Wasmer.Wasmer +PackageVersion: 7.1.0 +PackageLocale: zh-CN +Publisher: Wasmer, Inc. +PublisherUrl: https://wasmer.io +PublisherSupportUrl: https://github.com/wasmerio/wasmer/issues +Author: Wasmer, Inc. +PackageName: Wasmer +PackageUrl: https://wasmer.io +License: MIT +LicenseUrl: https://github.com/wasmerio/wasmer/blob/master/LICENSE +Copyright: Copyright (c) 2019-present Wasmer, Inc. and its affiliates. +ShortDescription: 支持 WASI 和 Emscripten 的领先 WebAssembly 运行时 +Description: Wasmer 是快速、安全的 WebAssembly 运行时,可以让超轻量级容器在任何地方运行:从桌面到云、边缘和 IoT 设备。 +Tags: +- wasm +- webassembly +ReleaseNotesUrl: https://github.com/wasmerio/wasmer/blob/master/CHANGELOG.md#710---27032026 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.wasmer.io +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.yaml b/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.yaml new file mode 100644 index 000000000000..1c59596083d5 --- /dev/null +++ b/manifests/w/Wasmer/Wasmer/7.1.0/Wasmer.Wasmer.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Wasmer.Wasmer +PackageVersion: 7.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.installer.yaml b/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.installer.yaml new file mode 100644 index 000000000000..79cd83d5dd02 --- /dev/null +++ b/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.installer.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: yetone.OpenAITranslator +PackageVersion: 0.6.13 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +ProductCode: OpenAI Translator +ReleaseDate: 2026-03-27 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/nextai-translator/nextai-translator/releases/download/v0.6.13/NextAI.Translator_0.6.13_x64-setup.exe + InstallerSha256: CCCDC12B762CD734A9F2ED4530609EF66E4EAC25AB94E70BA24BD5034607C7AD +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.locale.en-US.yaml b/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.locale.en-US.yaml new file mode 100644 index 000000000000..57602813b9e5 --- /dev/null +++ b/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: yetone.OpenAITranslator +PackageVersion: 0.6.13 +PackageLocale: en-US +Publisher: yetone +PublisherUrl: https://github.com/nextai-translator +PublisherSupportUrl: https://github.com/nextai-translator/nextai-translator/issues +PackageName: OpenAI Translator +PackageUrl: https://github.com/nextai-translator/nextai-translator +License: AGPL-3.0 +LicenseUrl: https://github.com/nextai-translator/nextai-translator/blob/HEAD/LICENSE +ShortDescription: Cross-platform desktop application for translation based on ChatGPT API. +Tags: +- chatgpt +- openai +- translate +- translation +- translator +ReleaseNotes: 'feat: refine UI/UX with elegant transitions, softer shadows, and polished details' +ReleaseNotesUrl: https://github.com/nextai-translator/nextai-translator/releases/tag/v0.6.13 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.locale.zh-CN.yaml b/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.locale.zh-CN.yaml new file mode 100644 index 000000000000..53c09f5c7f7d --- /dev/null +++ b/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.locale.zh-CN.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: yetone.OpenAITranslator +PackageVersion: 0.6.13 +PackageLocale: zh-CN +ShortDescription: 基于 ChatGPT API 的划词翻译跨平台桌面端应用 +Tags: +- chatgpt +- openai +- 翻译 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.yaml b/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.yaml new file mode 100644 index 000000000000..713e1caf18c3 --- /dev/null +++ b/manifests/y/yetone/OpenAITranslator/0.6.13/yetone.OpenAITranslator.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: yetone.OpenAITranslator +PackageVersion: 0.6.13 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 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/y/yukimemi/shun/3.7.3/yukimemi.shun.installer.yaml b/manifests/y/yukimemi/shun/3.7.3/yukimemi.shun.installer.yaml new file mode 100644 index 000000000000..07edbb367045 --- /dev/null +++ b/manifests/y/yukimemi/shun/3.7.3/yukimemi.shun.installer.yaml @@ -0,0 +1,27 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: yukimemi.shun +PackageVersion: 3.7.3 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /quiet +UpgradeBehavior: install +ProductCode: shun +ReleaseDate: 2026-03-27 +AppsAndFeaturesEntries: +- ProductCode: shun +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\shun' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/yukimemi/shun/releases/download/v3.7.3/shun_3.7.3_x64-setup.exe + InstallerSha256: 08752060FCE02B62F8C40425FE8747B765C32E900F12351049E5F80DDD74DDA0 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/y/yukimemi/shun/3.7.3/yukimemi.shun.locale.en-US.yaml b/manifests/y/yukimemi/shun/3.7.3/yukimemi.shun.locale.en-US.yaml new file mode 100644 index 000000000000..5a2c6c9e8c76 --- /dev/null +++ b/manifests/y/yukimemi/shun/3.7.3/yukimemi.shun.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: yukimemi.shun +PackageVersion: 3.7.3 +PackageLocale: en-US +Publisher: yukimemi +PublisherUrl: https://github.com/yukimemi +PublisherSupportUrl: https://github.com/yukimemi/shun/issues +PackageName: shun +PackageUrl: https://github.com/yukimemi/shun +License: MIT +LicenseUrl: https://github.com/yukimemi/shun/blob/HEAD/LICENSE +ShortDescription: A cross-platform, keyboard-driven minimal launcher like Alfred/Raycast +Description: |- + shun (瞬) is a cross-platform, keyboard-driven minimal launcher built with Tauri. + Features include fuzzy/exact search, launch history with frecency sorting, args mode, + path & URL completion, slash commands, auto-update, theming, and more. +Moniker: shun +Tags: +- alfred +- keyboard +- launcher +- productivity +- raycast +- tauri +ReleaseNotes: |- + What's Changed + See commits for details. + Installation + Download the installer for your platform from the assets below: + ────────┬──────────────────────────────────────────────────────────────────────────── + Platform│File + ────────┼──────────────────────────────────────────────────────────────────────────── + Windows │*-setup.exe (installer, no admin required) or shun-windows-x64.zip + │(portable) + ────────┼──────────────────────────────────────────────────────────────────────────── + macOS │.dmg + ────────┼──────────────────────────────────────────────────────────────────────────── + Linux │.AppImage or .deb + ────────┴──────────────────────────────────────────────────────────────────────────── +ReleaseNotesUrl: https://github.com/yukimemi/shun/releases/tag/v3.7.3 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/y/yukimemi/shun/3.7.3/yukimemi.shun.yaml b/manifests/y/yukimemi/shun/3.7.3/yukimemi.shun.yaml new file mode 100644 index 000000000000..6b59bcc8f830 --- /dev/null +++ b/manifests/y/yukimemi/shun/3.7.3/yukimemi.shun.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: yukimemi.shun +PackageVersion: 3.7.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0