diff --git a/Tools/SandboxTest.ps1 b/Tools/SandboxTest.ps1
index 0aa67b02b452..f8894ac0c652 100644
--- a/Tools/SandboxTest.ps1
+++ b/Tools/SandboxTest.ps1
@@ -767,19 +767,44 @@ New-Item -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Associa
New-ItemProperty -Path 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Policies\Associations' -Name 'ModRiskFileTypes' -Type 'String' -Value '.bat;.exe;.reg;.vbs;.chm;.msi;.js;.cmd' | Out-Null
Write-Host @'
-Tip: you can type 'Update-EnvironmentVariables' to update your environment variables, such as after installing a new software.
-'@
-
-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
+reg add "HKLM\SYSTEM\CurrentControlSet\Control\CI\Policy" /v "VerifiedAndReputablePolicyState" /t REG_DWORD /d 0 /f | Out-Null # 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 @'
+--> Disabling background services
+'@
+
+# Disable Search Indexing to prevent performance issues during installation of packages with many files
+Stop-Service WSearch
+Set-Service WSearch -StartupType Disabled
+
+# Disable Superfetch since we don't need to optimize disk access patterns in a disposable environment
+Stop-Service SysMain
+Set-Service SysMain -StartupType Disabled
+
+# Disable Windows Update since it can't be used in the sandbox
+Stop-Service wuauserv
+Set-Service wuauserv -StartupType Disabled
+
+# Disable Scheduled Tasks
+schtasks /Change /TN "\Microsoft\Windows\DiskCleanup\SilentCleanup" /Disable | Out-Null
+schtasks /Change /TN "\Microsoft\Windows\Defrag\ScheduledDefrag" /Disable | Out-Null
+# Disable Telemetry since it isn't needed in a disposable environment
+Stop-Service DiagTrack
+Set-Service DiagTrack -StartupType Disabled
+
+# Disable the Print Spooler
+Stop-Service Spooler
+Set-Service Spooler -StartupType Disabled
+
+# Disable Edge Background Processes
+reg add "HKLM\Software\Policies\Microsoft\Edge" /v BackgroundModeEnabled /t REG_DWORD /d 0 /f | Out-Null
+
+Write-Host @'
--> Configuring Winget
'@
winget settings --Enable LocalManifestFiles
@@ -787,6 +812,11 @@ winget settings --Enable LocalArchiveMalwareScanOverride
Get-ChildItem -Filter 'settings.json' | Copy-Item -Destination C:\Users\WDAGUtilityAccount\AppData\Local\Packages\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe\LocalState\settings.json
Set-WinHomeLocation -GeoID $($script:HostGeoID)
+Write-Host @'
+
+Tip: you can type 'Update-EnvironmentVariables' to update your environment variables, such as after installing a new software.
+'@
+
`$manifestFolder = (Get-ChildItem `$pwd -Directory).Where({Get-ChildItem `$_ -Filter '*.yaml'}).FullName | Select-Object -First 1
if (`$manifestFolder) {
Write-Host @"
@@ -842,6 +872,9 @@ Write-Verbose 'Creating WSB file for launching the sandbox'
PowerShell Start-Process PowerShell -WindowStyle Maximized -WorkingDirectory '$($script:SandboxWorkingDirectory)' -ArgumentList '-ExecutionPolicy Bypass -NoExit -NoLogo -File $($script:SandboxBootstrapFile)'
+ Disable
+ Disable
+ Disable
"@ | Out-File -FilePath $script:ConfigurationFile
diff --git a/manifests/a/Amazon/CloudWatchAgent/1.4.37923/Amazon.CloudWatchAgent.installer.yaml b/manifests/a/Amazon/CloudWatchAgent/1.4.37923/Amazon.CloudWatchAgent.installer.yaml
new file mode 100644
index 000000000000..48a900bee464
--- /dev/null
+++ b/manifests/a/Amazon/CloudWatchAgent/1.4.37923/Amazon.CloudWatchAgent.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: Amazon.CloudWatchAgent
+PackageVersion: 1.4.37923
+InstallerType: wix
+Scope: machine
+InstallerSwitches:
+ InstallLocation: INSTALLDIR=""
+UpgradeBehavior: install
+ProductCode: '{B2272431-4FC7-4948-B59F-13CD141FE37A}'
+AppsAndFeaturesEntries:
+- ProductCode: '{B2272431-4FC7-4948-B59F-13CD141FE37A}'
+ UpgradeCode: '{C537C936-91B3-4270-94D7-E128ACFC3E86}'
+Installers:
+- Architecture: x64
+ InstallerUrl: https://amazoncloudwatch-agent.s3.amazonaws.com/windows/amd64/1.300067.0b1404/amazon-cloudwatch-agent.msi
+ InstallerSha256: F2BEF5412BEE82BC11B748B396601C937CAD240A8E85A365AEC355BD452B80AB
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/a/Amazon/CloudWatchAgent/1.4.37923/Amazon.CloudWatchAgent.locale.en-US.yaml b/manifests/a/Amazon/CloudWatchAgent/1.4.37923/Amazon.CloudWatchAgent.locale.en-US.yaml
new file mode 100644
index 000000000000..1f18f467ad39
--- /dev/null
+++ b/manifests/a/Amazon/CloudWatchAgent/1.4.37923/Amazon.CloudWatchAgent.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: Amazon.CloudWatchAgent
+PackageVersion: 1.4.37923
+PackageLocale: en-US
+Publisher: Amazon.com, Inc.
+PublisherUrl: https://aws.amazon.com/
+PublisherSupportUrl: https://github.com/aws/amazon-cloudwatch-agent/issues
+PrivacyUrl: https://aws.amazon.com/privacy/
+Author: Amazon Web Services, Inc
+PackageName: Amazon CloudWatch Agent
+PackageUrl: https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Install-CloudWatch-Agent.html
+License: MIT
+LicenseUrl: https://github.com/aws/amazon-cloudwatch-agent/blob/HEAD/LICENSE
+Copyright: |-
+ Copyright (c) 2015-2026 InfluxData Inc.
+ Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
+CopyrightUrl: https://aws.amazon.com/agreement/
+ShortDescription: Collect metrics, logs, and traces with the Amazon CloudWatch agent
+Description: |-
+ The Amazon CloudWatch Agent enables you to do the following:
+ - Collect more system-level metrics from Amazon EC2 instances across operating systems. The metrics can include in-guest metrics, in addition to the metrics for EC2 instances. The additional metrics that can be collected are listed in Metrics Collected by the CloudWatch Agent.
+ - Collect system-level metrics from on-premises servers. These can include servers in a hybrid environment as well as servers not managed by AWS.
+ - Retrieve custom metrics from your applications or services using the StatsD and collectd protocols. StatsD is supported on both Linux servers and servers running Windows Server. collectd is supported only on Linux servers.
+ - Collect logs from Amazon EC2 instances and on-premises servers, running either Linux or Windows Server.
+ - Collect Open Telemetry and AWS X-Ray traces
+ Amazon CloudWatch Agent uses open-source projects telegraf and opentelemetry-collector as its dependencies. It operates by starting an opentelemetry collector and is capable of operating pipelines consisting of both telegraf and opentemetry components in addition to customized components.
+Tags:
+- aws
+ReleaseNotesUrl: https://amazoncloudwatch-agent.s3.amazonaws.com/info/latest/RELEASE_NOTES
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/Amazon/CloudWatchAgent/1.4.37923/Amazon.CloudWatchAgent.locale.zh-CN.yaml b/manifests/a/Amazon/CloudWatchAgent/1.4.37923/Amazon.CloudWatchAgent.locale.zh-CN.yaml
new file mode 100644
index 000000000000..36b7c2332619
--- /dev/null
+++ b/manifests/a/Amazon/CloudWatchAgent/1.4.37923/Amazon.CloudWatchAgent.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: Amazon.CloudWatchAgent
+PackageVersion: 1.4.37923
+PackageLocale: zh-CN
+PublisherUrl: https://aws.amazon.com/cn/
+PrivacyUrl: https://aws.amazon.com/cn/privacy/
+PackageUrl: https://docs.aws.amazon.com/zh_cn/AmazonCloudWatch/latest/monitoring/Install-CloudWatch-Agent.html
+CopyrightUrl: https://aws.amazon.com/cn/agreement/
+ShortDescription: 使用 CloudWatch 代理收集指标、日志和跟踪信息
+Description: |-
+ 您可以通过统一 CloudWatch 代理执行以下操作:
+ - 跨操作系统从 Amazon EC2 实例中收集内部系统级指标。除了 EC2 实例的指标之外,这些指标还可以包括来宾中的指标。可以收集的其他指标列在 CloudWatch 代理收集的指标中。
+ - 从本地服务器中收集系统级别指标。这些服务器可能包括混合环境中的服务器以及不是由 AWS 管理的服务器。
+ - 使用 StatsD 和 collectd 协议从应用程序或服务中检索自定义指标。StatsD 在 Linux 服务器和运行 Windows Server 的服务器上都受支持。collectd 仅在 Linux 服务器上受支持。
+ - 从运行 Linux 或 Windows Server 的 Amazon EC2 实例和本地部署服务器收集日志。
+ - 收集 Open Telemetry 和 AWS X-Ray 跟踪信息
+ Amazon CloudWatch Agent 依赖开源项目 telegraf 和 opentelemetry-collector。它通过启动 opentelemetry 收集器来运行,并能够运行由 telegraf 和 opentemetry 组件以及定制组件组成的管道。
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/Amazon/CloudWatchAgent/1.4.37923/Amazon.CloudWatchAgent.yaml b/manifests/a/Amazon/CloudWatchAgent/1.4.37923/Amazon.CloudWatchAgent.yaml
new file mode 100644
index 000000000000..c86a912d20f5
--- /dev/null
+++ b/manifests/a/Amazon/CloudWatchAgent/1.4.37923/Amazon.CloudWatchAgent.yaml
@@ -0,0 +1,8 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: Amazon.CloudWatchAgent
+PackageVersion: 1.4.37923
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AnnyStudio/JPEGLosslessRotator/11.0/AnnyStudio.JPEGLosslessRotator.installer.yaml b/manifests/a/AnnyStudio/JPEGLosslessRotator/12.0/AnnyStudio.JPEGLosslessRotator.installer.yaml
similarity index 67%
rename from manifests/a/AnnyStudio/JPEGLosslessRotator/11.0/AnnyStudio.JPEGLosslessRotator.installer.yaml
rename to manifests/a/AnnyStudio/JPEGLosslessRotator/12.0/AnnyStudio.JPEGLosslessRotator.installer.yaml
index fbd79fbd98c8..600f961065ab 100644
--- a/manifests/a/AnnyStudio/JPEGLosslessRotator/11.0/AnnyStudio.JPEGLosslessRotator.installer.yaml
+++ b/manifests/a/AnnyStudio/JPEGLosslessRotator/12.0/AnnyStudio.JPEGLosslessRotator.installer.yaml
@@ -1,15 +1,14 @@
# Created with YamlCreate.ps1 Dumplings Mod
-# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
PackageIdentifier: AnnyStudio.JPEGLosslessRotator
-PackageVersion: "11.0"
+PackageVersion: "12.0"
InstallerType: inno
Scope: machine
ProductCode: JPEG Lossless Rotator_is1
-ReleaseDate: 2024-10-21
Installers:
- Architecture: x64
InstallerUrl: https://annystudio.com/software/jpeglosslessrotator/jpegr_installer.exe
- InstallerSha256: 64539184A81A8AF801C55C63B4B91BA25EDC8421F0136C62883B58352FE32F11
+ InstallerSha256: 67006AD572A3E83FC1C203C395B023D817AA5722C0932911F26C0332A80BE597
ManifestType: installer
-ManifestVersion: 1.10.0
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AnnyStudio/JPEGLosslessRotator/11.0/AnnyStudio.JPEGLosslessRotator.locale.en-US.yaml b/manifests/a/AnnyStudio/JPEGLosslessRotator/12.0/AnnyStudio.JPEGLosslessRotator.locale.en-US.yaml
similarity index 82%
rename from manifests/a/AnnyStudio/JPEGLosslessRotator/11.0/AnnyStudio.JPEGLosslessRotator.locale.en-US.yaml
rename to manifests/a/AnnyStudio/JPEGLosslessRotator/12.0/AnnyStudio.JPEGLosslessRotator.locale.en-US.yaml
index 946e0ccdbae0..5a9226bd739d 100644
--- a/manifests/a/AnnyStudio/JPEGLosslessRotator/11.0/AnnyStudio.JPEGLosslessRotator.locale.en-US.yaml
+++ b/manifests/a/AnnyStudio/JPEGLosslessRotator/12.0/AnnyStudio.JPEGLosslessRotator.locale.en-US.yaml
@@ -1,8 +1,8 @@
# Created with YamlCreate.ps1 Dumplings Mod
-# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
PackageIdentifier: AnnyStudio.JPEGLosslessRotator
-PackageVersion: "11.0"
+PackageVersion: "12.0"
PackageLocale: en-US
Publisher: Anny
PublisherUrl: https://annystudio.com/
@@ -12,7 +12,7 @@ PackageName: JPEG Lossless Rotator
PackageUrl: https://annystudio.com/software/jpeglosslessrotator/
License: Freeware
LicenseUrl: https://annystudio.com/info/#tnc
-Copyright: © 2003–2025 AnnyStudio.com, Australia
+Copyright: © 2003–2026 AnnyStudio.com, Australia
CopyrightUrl: https://annystudio.com/info/#tnc
ShortDescription: Free and simple software for turning digital photos to the correct orientation
Description: When photos are taken, the camera or phone may be held in different positions, which means some photos need to be rotated to display correctly on the screen. For rotating photos, most image editors decode the JPEG photo, rotate the bitmap and then re-encode it back to JPEG. This process decreases the final image quality. Unlike those tools, JPEG Lossless Rotator does not recode the images and instead performs a special lossless block transformation, which helps to preserve the quality of the images. In addition, JPEG Lossless Rotator has a simple multilingual interface and is very easy to use even for inexperienced computer users.
@@ -24,10 +24,9 @@ Tags:
- picture
- rotate
- rotation
-ReleaseNotes: 'CPU multithreading support to make operations with images much faster. Interface improvements and bugfixes: thumbnail selection via mouse dragging, retention of selection during scrolling.'
ReleaseNotesUrl: https://annystudio.com/software/jpeglosslessrotator/
Documentations:
- DocumentLabel: User Manual
DocumentUrl: https://annystudio.com/software/jpeglosslessrotator/#manual
ManifestType: defaultLocale
-ManifestVersion: 1.10.0
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AnnyStudio/JPEGLosslessRotator/11.0/AnnyStudio.JPEGLosslessRotator.locale.zh-CN.yaml b/manifests/a/AnnyStudio/JPEGLosslessRotator/12.0/AnnyStudio.JPEGLosslessRotator.locale.zh-CN.yaml
similarity index 93%
rename from manifests/a/AnnyStudio/JPEGLosslessRotator/11.0/AnnyStudio.JPEGLosslessRotator.locale.zh-CN.yaml
rename to manifests/a/AnnyStudio/JPEGLosslessRotator/12.0/AnnyStudio.JPEGLosslessRotator.locale.zh-CN.yaml
index 32ac60282bf9..4912e825e40c 100644
--- a/manifests/a/AnnyStudio/JPEGLosslessRotator/11.0/AnnyStudio.JPEGLosslessRotator.locale.zh-CN.yaml
+++ b/manifests/a/AnnyStudio/JPEGLosslessRotator/12.0/AnnyStudio.JPEGLosslessRotator.locale.zh-CN.yaml
@@ -1,8 +1,8 @@
# Created with YamlCreate.ps1 Dumplings Mod
-# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
PackageIdentifier: AnnyStudio.JPEGLosslessRotator
-PackageVersion: "11.0"
+PackageVersion: "12.0"
PackageLocale: zh-CN
License: 免费软件
ShortDescription: 免费简单的照片旋转软件,将数字照片调整到正确的方向
@@ -18,4 +18,4 @@ Documentations:
- DocumentLabel: 用户手册
DocumentUrl: https://annystudio.com/software/jpeglosslessrotator/#manual
ManifestType: locale
-ManifestVersion: 1.10.0
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AnnyStudio/JPEGLosslessRotator/11.0/AnnyStudio.JPEGLosslessRotator.yaml b/manifests/a/AnnyStudio/JPEGLosslessRotator/12.0/AnnyStudio.JPEGLosslessRotator.yaml
similarity index 73%
rename from manifests/a/AnnyStudio/JPEGLosslessRotator/11.0/AnnyStudio.JPEGLosslessRotator.yaml
rename to manifests/a/AnnyStudio/JPEGLosslessRotator/12.0/AnnyStudio.JPEGLosslessRotator.yaml
index eb79b6f3c894..48bcb7adcd58 100644
--- a/manifests/a/AnnyStudio/JPEGLosslessRotator/11.0/AnnyStudio.JPEGLosslessRotator.yaml
+++ b/manifests/a/AnnyStudio/JPEGLosslessRotator/12.0/AnnyStudio.JPEGLosslessRotator.yaml
@@ -1,8 +1,8 @@
# Created with YamlCreate.ps1 Dumplings Mod
-# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
PackageIdentifier: AnnyStudio.JPEGLosslessRotator
-PackageVersion: "11.0"
+PackageVersion: "12.0"
DefaultLocale: en-US
ManifestType: version
-ManifestVersion: 1.10.0
+ManifestVersion: 1.12.0
diff --git a/manifests/a/Asana/Asana/2.7.1/Asana.Asana.installer.yaml b/manifests/a/Asana/Asana/2.7.1/Asana.Asana.installer.yaml
new file mode 100644
index 000000000000..8c4497bfd33e
--- /dev/null
+++ b/manifests/a/Asana/Asana/2.7.1/Asana.Asana.installer.yaml
@@ -0,0 +1,22 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Asana.Asana
+PackageVersion: 2.7.1
+InstallerType: exe
+Scope: user
+InstallModes:
+- interactive
+- silent
+InstallerSwitches:
+ Silent: --silent
+ SilentWithProgress: --silent
+Protocols:
+- asanadesktop
+ProductCode: Asana
+Installers:
+- Architecture: x64
+ InstallerUrl: https://desktop-downloads.asana.com/win32_x64/prod/v2.7.1/AsanaSetup.exe
+ InstallerSha256: 33F5DF50E930F38F05FFC4FF298ADC2084F3254407F40101982B83C6D2DDD1D6
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/a/Asana/Asana/2.7.1/Asana.Asana.locale.en-US.yaml b/manifests/a/Asana/Asana/2.7.1/Asana.Asana.locale.en-US.yaml
new file mode 100644
index 000000000000..31393c4b086d
--- /dev/null
+++ b/manifests/a/Asana/Asana/2.7.1/Asana.Asana.locale.en-US.yaml
@@ -0,0 +1,36 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Asana.Asana
+PackageVersion: 2.7.1
+PackageLocale: en-US
+Publisher: Asana, Inc.
+PublisherUrl: https://asana.com/
+PublisherSupportUrl: https://help.asana.com/
+PrivacyUrl: https://asana.com/terms/privacy-statement
+Author: Asana, Inc.
+PackageName: Asana
+PackageUrl: https://asana.com/download
+License: Proprietary
+LicenseUrl: https://asana.com/terms/terms-of-service
+Copyright: © 2026 Asana, Inc.
+CopyrightUrl: https://asana.com/terms/terms-of-service
+ShortDescription: Manage your team’s work, projects, & tasks online
+Description: Asana is a leader in collaborative project management software for teams, no matter their size or locational distribution. Asana helps you, your teams, and your stakeholders collaborate faster and smoother to achieve business objectives.
+Tags:
+- billboard
+- collaborate
+- collaboration
+- docs
+- document
+- manage
+- management
+- office
+- project
+- task
+- team
+- work
+- working
+PurchaseUrl: https://asana.com/pricing
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/Asana/Asana/2.7.1/Asana.Asana.locale.zh-CN.yaml b/manifests/a/Asana/Asana/2.7.1/Asana.Asana.locale.zh-CN.yaml
new file mode 100644
index 000000000000..ff0f1dcfc330
--- /dev/null
+++ b/manifests/a/Asana/Asana/2.7.1/Asana.Asana.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: Asana.Asana
+PackageVersion: 2.7.1
+PackageLocale: zh-CN
+License: 专有软件
+ShortDescription: 在线管理团队的工作、项目与任务
+Description: Asana 是团队协作项目管理软件的领军者,无论团队规模大小或地域分布如何。它能帮助您、您的团队及相关方更高效顺畅地协作,共同达成业务目标。
+Tags:
+- 任务
+- 办公
+- 协作
+- 协同
+- 团队
+- 工作
+- 文档
+- 看板
+- 管理
+- 项目
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/p/Python/Python/3/14/3.14.5rc1/Python.Python.3.14.yaml b/manifests/a/Asana/Asana/2.7.1/Asana.Asana.yaml
similarity index 75%
rename from manifests/p/Python/Python/3/14/3.14.5rc1/Python.Python.3.14.yaml
rename to manifests/a/Asana/Asana/2.7.1/Asana.Asana.yaml
index 406f5e893a79..f7bc5ca2e4f7 100644
--- a/manifests/p/Python/Python/3/14/3.14.5rc1/Python.Python.3.14.yaml
+++ b/manifests/a/Asana/Asana/2.7.1/Asana.Asana.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: Python.Python.3.14
-PackageVersion: 3.14.5rc1
+PackageIdentifier: Asana.Asana
+PackageVersion: 2.7.1
DefaultLocale: en-US
ManifestType: version
ManifestVersion: 1.12.0
diff --git a/manifests/a/amys94fr/Snap2Link/1.3.0/amys94fr.Snap2Link.installer.yaml b/manifests/a/amys94fr/Snap2Link/1.3.0/amys94fr.Snap2Link.installer.yaml
new file mode 100644
index 000000000000..a51fd2a73c1e
--- /dev/null
+++ b/manifests/a/amys94fr/Snap2Link/1.3.0/amys94fr.Snap2Link.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: amys94fr.Snap2Link
+PackageVersion: 1.3.0
+InstallerType: nullsoft
+Scope: user
+InstallModes:
+- interactive
+- silent
+- silentWithProgress
+InstallerSwitches:
+ Silent: /S
+ SilentWithProgress: /S
+UpgradeBehavior: install
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/amys94fr/Snap2Link/releases/download/v1.3.0/Snap2Link_1.3.0_x64-setup.exe
+ InstallerSha256: D12B066C2239D63399CBFF7A3BC676C7AF6A28204D5D49CBB44394F993B23EC2
+ManifestType: installer
+ManifestVersion: 1.12.0
+ReleaseDate: 2026-05-05
diff --git a/manifests/a/amys94fr/Snap2Link/1.3.0/amys94fr.Snap2Link.locale.en-US.yaml b/manifests/a/amys94fr/Snap2Link/1.3.0/amys94fr.Snap2Link.locale.en-US.yaml
new file mode 100644
index 000000000000..f656b4388640
--- /dev/null
+++ b/manifests/a/amys94fr/Snap2Link/1.3.0/amys94fr.Snap2Link.locale.en-US.yaml
@@ -0,0 +1,45 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: amys94fr.Snap2Link
+PackageVersion: 1.3.0
+PackageLocale: en-US
+Publisher: Steven Abittan
+PublisherUrl: https://github.com/amys94fr
+PublisherSupportUrl: https://github.com/amys94fr/Snap2Link/issues
+Author: Steven Abittan
+PackageName: Snap2Link
+PackageUrl: https://github.com/amys94fr/Snap2Link
+License: MIT
+LicenseUrl: https://github.com/amys94fr/Snap2Link/blob/main/LICENSE
+Copyright: Copyright (c) 2025 Steven Abittan
+ShortDescription: Capture a screen region and instantly get a Google Drive share link.
+Description: |-
+ Snap2Link is a tray-resident screenshot tool for Windows. Press the
+ configurable global hotkey (default Ctrl+PrintScreen), drag a rectangle,
+ and a public Google Drive share link is automatically copied to your
+ clipboard.
+
+ Features:
+ - Region selection overlay with live size readout
+ - One-click upload to your own Google Drive (OAuth, no third-party server)
+ - Configurable global hotkey
+ - Auto-cleanup of old screenshots (configurable retention)
+ - Optional "Start with Windows"
+ - Built-in updater (Settings or tray > Check for Updates)
+
+ Built with Tauri v2 + React/TypeScript. Source code on GitHub.
+Moniker: snap2link
+Tags:
+- screenshot
+- screen-capture
+- google-drive
+- productivity
+- clipboard
+- tauri
+ReleaseNotesUrl: https://github.com/amys94fr/Snap2Link/releases/tag/v1.3.0
+Documentations:
+- DocumentLabel: Wiki
+ DocumentUrl: https://github.com/amys94fr/Snap2Link/wiki
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/amys94fr/Snap2Link/1.3.0/amys94fr.Snap2Link.yaml b/manifests/a/amys94fr/Snap2Link/1.3.0/amys94fr.Snap2Link.yaml
new file mode 100644
index 000000000000..371463ad5248
--- /dev/null
+++ b/manifests/a/amys94fr/Snap2Link/1.3.0/amys94fr.Snap2Link.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: amys94fr.Snap2Link
+PackageVersion: 1.3.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/a/astral-sh/uv/0.11.9/astral-sh.uv.installer.yaml b/manifests/a/astral-sh/uv/0.11.9/astral-sh.uv.installer.yaml
new file mode 100644
index 000000000000..1c11ba46497b
--- /dev/null
+++ b/manifests/a/astral-sh/uv/0.11.9/astral-sh.uv.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: astral-sh.uv
+PackageVersion: 0.11.9
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: uvx.exe
+ PortableCommandAlias: uvx
+- RelativeFilePath: uv.exe
+ PortableCommandAlias: uv
+- RelativeFilePath: uvw.exe
+ PortableCommandAlias: uvw
+Commands:
+- uv
+- uvw
+- uvx
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x86
+ InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.11.9/uv-i686-pc-windows-msvc.zip
+ InstallerSha256: 9DBB9BF746F00DD379E7E1BD544A5E1B48A5F36408F75A7F8C6C89A7A5E5506A
+ Dependencies:
+ PackageDependencies:
+ - PackageIdentifier: Microsoft.VCRedist.2015+.x86
+- Architecture: x64
+ InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.11.9/uv-x86_64-pc-windows-msvc.zip
+ InstallerSha256: FACBF9637C373761A96FA63C537D6C46581D357A65AF01EACFD8C6319E6FB14E
+ Dependencies:
+ PackageDependencies:
+ - PackageIdentifier: Microsoft.VCRedist.2015+.x64
+- Architecture: arm64
+ InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.11.9/uv-aarch64-pc-windows-msvc.zip
+ InstallerSha256: 93DE7822F6214C704EC15DB1B4D33EABD3709A0303EC068723D9F5F5AA99E9E7
+ Dependencies:
+ PackageDependencies:
+ - PackageIdentifier: Microsoft.VCRedist.2015+.arm64
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/a/astral-sh/uv/0.11.9/astral-sh.uv.locale.en-US.yaml b/manifests/a/astral-sh/uv/0.11.9/astral-sh.uv.locale.en-US.yaml
new file mode 100644
index 000000000000..f426fc0fd8c2
--- /dev/null
+++ b/manifests/a/astral-sh/uv/0.11.9/astral-sh.uv.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: astral-sh.uv
+PackageVersion: 0.11.9
+PackageLocale: en-US
+Publisher: Astral Software Inc.
+PublisherUrl: https://astral.sh/
+PublisherSupportUrl: https://github.com/astral-sh/uv/issues
+Author: Astral Software Inc.
+PackageName: uv
+PackageUrl: https://github.com/astral-sh/uv
+License: Apache-2.0 or MIT
+LicenseUrl: https://github.com/astral-sh/uv/blob/HEAD/README.md#license
+Copyright: Copyright (c) 2026 Astral Software Inc.
+ShortDescription: An extremely fast Python package and project manager, written in Rust.
+Description: An extremely fast Python package and project manager, written in Rust. Designed as a single tool to replace pip, pip-tools, pipx, poetry, pyenv, twine, virtualenv workflows, and more.
+Moniker: uv
+Tags:
+- python
+ReleaseNotes: |-
+ Released on 2026-05-04.
+ Note due to a timeout publishing to crates.io, the GitHub portion of this release was published manually by a maintainer using the artifacts built in CI. This release will not be fully published to crates.io. There should be no other effect.
+ Python 3.14.5 release candidate
+ This release includes a special release candidate for the next Python 3.14 patch release. Python 3.14 included a new garbage collection implementation, which reduced pause times but caused significant unexpected memory pressure in production environments. In 3.14.5 and 3.15, the previous garbage collection implementation will be restored.
+ We would greatly appreciate if you tested the 3.14.5rc1 version included in this release. The stable version is expected to be released soon and any feedback on potential issues would be helpful to the Python development team.
+ For more context, see the announcement, issue, and pull request.
+ Issues with the new release can be reported in the uv or CPython issue trackers.
+ Python
+ - Upgrade PyPy to v7.3.22
+ - Add CPython 3.14.5rc1
+ - On macOS, CPython statically links libpython to match Linux
+ Enhancements
+ - Omit compatible release desugaring for pre-release hints (#19267)
+ - Fix file locks on Android (#18323)
+ Preview
+ - uv audit add reporting for adverse project statuses (#19128)
+ Bug fixes
+ - Discover versioned Python executables when requires-python pins a version (#18700)
+ - Fix URL prefix matching to require path boundaries (#19154)
+ - Fix transitive Git path dependencies in lockfiles (#19269)
+ - Handle incorrect unlock error in LockedFile::drop on Wine (#19229)
+ - Prevent uninstalling site-packages for empty top_level.txt in .egg-info (#19114)
+ - Use symlinks instead of junctions on Wine (#19213)
+ - Fix floating-point environment handling on ARMv7 (#19157)
+ - Redact credentials from remote requirements URL in offline errors (#19216)
+ - Windows tramplolines no longer set PYTHONHOME and only set __PYVENV_LAUNCHER__ for virtual environments (#19199)
+ Documentation
+ - Mark --native-tls and UV_NATIVE_TLS as deprecated (#18705)
+ - Re-add pytorch-triton-rocm to PyTorch ROCm docs (#19241)
+ - Tweak changelog entries for 0.11.8 (#19188)
+ - Add 'Exporting lockfiles' to the Concepts->Projects index (#19209)
+ - Clarify that uv init creates git files / folders in the projects guide (#19183)
+ReleaseNotesUrl: https://github.com/astral-sh/uv/releases/tag/0.11.9
+Documentations:
+- DocumentLabel: Docs
+ DocumentUrl: https://docs.astral.sh/uv/
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/astral-sh/uv/0.11.9/astral-sh.uv.locale.zh-CN.yaml b/manifests/a/astral-sh/uv/0.11.9/astral-sh.uv.locale.zh-CN.yaml
new file mode 100644
index 000000000000..4748a98d9c9a
--- /dev/null
+++ b/manifests/a/astral-sh/uv/0.11.9/astral-sh.uv.locale.zh-CN.yaml
@@ -0,0 +1,15 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: astral-sh.uv
+PackageVersion: 0.11.9
+PackageLocale: zh-CN
+License: Apache-2.0 或 MIT
+ShortDescription: 用 Rust 编写的极速 Python 软件包和项目管理器
+Description: 用 Rust 编写的极速 Python 软件包和项目管理器。可作为单一工具替代 pip、pip-tools、pipx、poles、pyenv、twine、virtualenv 工作流等。
+ReleaseNotesUrl: https://github.com/astral-sh/uv/releases/tag/0.11.9
+Documentations:
+- DocumentLabel: 文档
+ DocumentUrl: https://docs.astral.sh/uv/
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/astral-sh/uv/0.11.9/astral-sh.uv.yaml b/manifests/a/astral-sh/uv/0.11.9/astral-sh.uv.yaml
new file mode 100644
index 000000000000..0742fd6ddafe
--- /dev/null
+++ b/manifests/a/astral-sh/uv/0.11.9/astral-sh.uv.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: astral-sh.uv
+PackageVersion: 0.11.9
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.41/BitSum.ProcessLasso.Beta.installer.yaml b/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/BitSum.ProcessLasso.Beta.installer.yaml
similarity index 82%
rename from manifests/b/BitSum/ProcessLasso/Beta/18.1.0.41/BitSum.ProcessLasso.Beta.installer.yaml
rename to manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/BitSum.ProcessLasso.Beta.installer.yaml
index 97ba1f31ab9d..b3a922dee57b 100644
--- a/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.41/BitSum.ProcessLasso.Beta.installer.yaml
+++ b/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/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.1.0.41
+PackageVersion: 18.1.0.43
InstallerType: nullsoft
Scope: machine
UpgradeBehavior: install
@@ -12,6 +12,6 @@ InstallationMetadata:
Installers:
- Architecture: x64
InstallerUrl: https://dl.bitsum.com/files/beta/processlassosetup64.exe
- InstallerSha256: 11857ED513B92250B2C5312BC1682724F3CAFA7609EB8363F8EF2B9A5B2E12F9
+ InstallerSha256: 6999F385FF7846BECF5DEDA512D88E49103BE72519D66D7BE8508EBFD9A177BA
ManifestType: installer
ManifestVersion: 1.12.0
diff --git a/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.41/BitSum.ProcessLasso.Beta.locale.en-US.yaml b/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/BitSum.ProcessLasso.Beta.locale.en-US.yaml
similarity index 99%
rename from manifests/b/BitSum/ProcessLasso/Beta/18.1.0.41/BitSum.ProcessLasso.Beta.locale.en-US.yaml
rename to manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/BitSum.ProcessLasso.Beta.locale.en-US.yaml
index ab6e5124d39a..199814e9c519 100644
--- a/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.41/BitSum.ProcessLasso.Beta.locale.en-US.yaml
+++ b/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/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.1.0.41
+PackageVersion: 18.1.0.43
PackageLocale: en-US
Publisher: Bitsum
PublisherUrl: https://bitsum.com/
diff --git a/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.41/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml b/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml
similarity index 98%
rename from manifests/b/BitSum/ProcessLasso/Beta/18.1.0.41/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml
rename to manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml
index ae74da391399..2e33885edbad 100644
--- a/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.41/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml
+++ b/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/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.1.0.41
+PackageVersion: 18.1.0.43
PackageLocale: zh-CN
License: 专有软件
ShortDescription: 实时 CPU 优化和自动化
diff --git a/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.41/BitSum.ProcessLasso.Beta.yaml b/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/BitSum.ProcessLasso.Beta.yaml
similarity index 90%
rename from manifests/b/BitSum/ProcessLasso/Beta/18.1.0.41/BitSum.ProcessLasso.Beta.yaml
rename to manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/BitSum.ProcessLasso.Beta.yaml
index 67d77a86cd57..0f86582c3c34 100644
--- a/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.41/BitSum.ProcessLasso.Beta.yaml
+++ b/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/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.1.0.41
+PackageVersion: 18.1.0.43
DefaultLocale: en-US
ManifestType: version
ManifestVersion: 1.12.0
diff --git a/manifests/b/Box/BoxForOffice/4.23.1576.0/Box.BoxForOffice.installer.yaml b/manifests/b/Box/BoxForOffice/4.24.1585.0/Box.BoxForOffice.installer.yaml
similarity index 79%
rename from manifests/b/Box/BoxForOffice/4.23.1576.0/Box.BoxForOffice.installer.yaml
rename to manifests/b/Box/BoxForOffice/4.24.1585.0/Box.BoxForOffice.installer.yaml
index f381a4fc2084..48a94d2b517a 100644
--- a/manifests/b/Box/BoxForOffice/4.23.1576.0/Box.BoxForOffice.installer.yaml
+++ b/manifests/b/Box/BoxForOffice/4.24.1585.0/Box.BoxForOffice.installer.yaml
@@ -1,27 +1,27 @@
-# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-0.Win32NT
-# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
PackageIdentifier: Box.BoxForOffice
-PackageVersion: 4.23.1576.0
+PackageVersion: 4.24.1585.0
Scope: machine
+InstallerSwitches:
+ InstallLocation: APPDIR=""
UpgradeBehavior: install
Installers:
- Architecture: x64
InstallerType: msi
InstallerUrl: https://e3.boxcdn.net/box-installers/boxforoffice/currentrelease/BoxForOffice.msi
- InstallerSha256: 75AE500D5AB257E296A4D3AF5CF6FA8B29379677A3F57832457E417BA2FC30A5
- InstallerSwitches:
- InstallLocation: APPDIR=""
+ InstallerSha256: 71BE88FBF6557D8E7AF1B79781509D10375D91CD6399DB74075A10284EF4A805
Dependencies:
PackageDependencies:
- PackageIdentifier: Microsoft.VSTOR
- ProductCode: '{9195721A-8F65-477F-95E9-1EEED288D0B7}'
+ ProductCode: '{975CBBA5-D30B-4393-A8C6-6F8A0C449DD2}'
AppsAndFeaturesEntries:
- UpgradeCode: '{E43A09BF-C7C4-4B45-9C6C-25DED779A30B}'
- Architecture: x64
- InstallerType: exe # Advanced Installer
+ InstallerType: exe
InstallerUrl: https://e3.boxcdn.net/box-installers/boxforoffice/currentrelease/BoxForOffice.exe
- InstallerSha256: EAF3DDF6D6749659EC3E5552CC57720DF1D5E01A9110834925413B83072352E5
+ InstallerSha256: 411B08ADB0B22FD4B2BEFA3951B97A113AFA6AE1E4A2B6EC6BC2ABC62B99B7F5
InstallModes:
- interactive
- silent
@@ -29,7 +29,6 @@ Installers:
InstallerSwitches:
Silent: /exenoui /quiet /norestart
SilentWithProgress: /exenoui /passive /norestart
- InstallLocation: APPDIR=""
Log: /log ""
ExpectedReturnCodes:
- InstallerReturnCode: 3010
@@ -72,6 +71,6 @@ Installers:
ReturnResponse: invalidParameter
- InstallerReturnCode: -1
ReturnResponse: cancelledByUser
- ProductCode: Box for Office 4.23.1576.0
+ ProductCode: Box for Office 4.24.1585.0
ManifestType: installer
-ManifestVersion: 1.10.0
+ManifestVersion: 1.12.0
diff --git a/manifests/b/Box/BoxForOffice/4.23.1576.0/Box.BoxForOffice.locale.en-US.yaml b/manifests/b/Box/BoxForOffice/4.24.1585.0/Box.BoxForOffice.locale.en-US.yaml
similarity index 81%
rename from manifests/b/Box/BoxForOffice/4.23.1576.0/Box.BoxForOffice.locale.en-US.yaml
rename to manifests/b/Box/BoxForOffice/4.24.1585.0/Box.BoxForOffice.locale.en-US.yaml
index 46d0d0a2b2e8..02c8f38940c7 100644
--- a/manifests/b/Box/BoxForOffice/4.23.1576.0/Box.BoxForOffice.locale.en-US.yaml
+++ b/manifests/b/Box/BoxForOffice/4.24.1585.0/Box.BoxForOffice.locale.en-US.yaml
@@ -1,20 +1,17 @@
-# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-0.Win32NT
-# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
PackageIdentifier: Box.BoxForOffice
-PackageVersion: 4.23.1576.0
+PackageVersion: 4.24.1585.0
PackageLocale: en-US
Publisher: Box
PublisherUrl: https://www.box.com/
PublisherSupportUrl: https://support.box.com/
-# PrivacyUrl:
Author: Box, Inc.
PackageName: Box for Office
PackageUrl: https://support.box.com/hc/sections/21356627124627
License: Proprietary
-# LicenseUrl:
-Copyright: Copyright © 2025 Box, Inc.
-# CopyrightUrl:
+Copyright: Copyright © 2026 Box, Inc.
ShortDescription: An add-in for Microsoft Office that enables Box coauthoring and collaboration
Description: |-
Box for Microsoft Office coauthoring enables real-time collaboration for Office files stored in Box with all edits autosaved to Box. Users have the flexibility to create, open, edit, collaborate on Microsoft Word, Excel, and PowerPoint documents in Box while working where they are — on desktop, web, or mobile.
@@ -27,7 +24,6 @@ Description: |-
- Save attachments to Box from incoming email
- Easily send links to files already stored in Box
- Convert outgoing attachments to Box shared links
-# Moniker:
Tags:
- box
- collaborate
@@ -37,10 +33,5 @@ Tags:
- outlook
- powerpoint
- word
-# ReleaseNotes:
-# ReleaseNotesUrl:
-# PurchaseUrl:
-# InstallationNotes:
-# Documentations:
ManifestType: defaultLocale
-ManifestVersion: 1.10.0
+ManifestVersion: 1.12.0
diff --git a/manifests/b/Box/BoxForOffice/4.23.1576.0/Box.BoxForOffice.locale.zh-CN.yaml b/manifests/b/Box/BoxForOffice/4.24.1585.0/Box.BoxForOffice.locale.zh-CN.yaml
similarity index 75%
rename from manifests/b/Box/BoxForOffice/4.23.1576.0/Box.BoxForOffice.locale.zh-CN.yaml
rename to manifests/b/Box/BoxForOffice/4.24.1585.0/Box.BoxForOffice.locale.zh-CN.yaml
index 6f6a7be1ff33..932019231137 100644
--- a/manifests/b/Box/BoxForOffice/4.23.1576.0/Box.BoxForOffice.locale.zh-CN.yaml
+++ b/manifests/b/Box/BoxForOffice/4.24.1585.0/Box.BoxForOffice.locale.zh-CN.yaml
@@ -1,20 +1,10 @@
-# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-0.Win32NT
-# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
PackageIdentifier: Box.BoxForOffice
-PackageVersion: 4.23.1576.0
+PackageVersion: 4.24.1585.0
PackageLocale: zh-CN
-# Publisher:
-# PublisherUrl:
-# PublisherSupportUrl:
-# PrivacyUrl:
-# Author:
-# PackageName:
-# PackageUrl:
License: 专有软件
-# LicenseUrl:
-# Copyright:
-# CopyrightUrl:
ShortDescription: 一款开启 Box 协同编辑与协作功能的 Microsoft Office 的插件。
Description: |-
Box for Microsoft Office 协同编辑功能支持实时协作处理存储在 Box 中的 Office 文件,所有编辑内容将自动保存至 Box。用户可灵活地在 Box 中创建、打开、编辑及协作处理 Microsoft Word、Excel、PowerPoint 文档,并支持跨平台操作——无论是在桌面端、网页端还是移动端。
@@ -27,7 +17,6 @@ Description: |-
- 将邮件附件直接保存至 Box
- 快速发送已存储在 Box 中的文件链接
- 将待发送附件转换为 Box 共享链接
-# Moniker:
Tags:
- box
- excel
@@ -37,10 +26,5 @@ Tags:
- word
- 协作
- 协同
-# ReleaseNotes:
-# ReleaseNotesUrl:
-# PurchaseUrl:
-# InstallationNotes:
-# Documentations:
ManifestType: locale
-ManifestVersion: 1.10.0
+ManifestVersion: 1.12.0
diff --git a/manifests/b/Box/BoxForOffice/4.24.1585.0/Box.BoxForOffice.yaml b/manifests/b/Box/BoxForOffice/4.24.1585.0/Box.BoxForOffice.yaml
new file mode 100644
index 000000000000..e97cbcb1a612
--- /dev/null
+++ b/manifests/b/Box/BoxForOffice/4.24.1585.0/Box.BoxForOffice.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: Box.BoxForOffice
+PackageVersion: 4.24.1585.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/b/BrowserStack/BrowserStackLocal/3.7.5/BrowserStack.BrowserStackLocal.installer.yaml b/manifests/b/BrowserStack/BrowserStackLocal/3.7.6/BrowserStack.BrowserStackLocal.installer.yaml
similarity index 76%
rename from manifests/b/BrowserStack/BrowserStackLocal/3.7.5/BrowserStack.BrowserStackLocal.installer.yaml
rename to manifests/b/BrowserStack/BrowserStackLocal/3.7.6/BrowserStack.BrowserStackLocal.installer.yaml
index 10a43115e008..7ac6db8f4757 100644
--- a/manifests/b/BrowserStack/BrowserStackLocal/3.7.5/BrowserStack.BrowserStackLocal.installer.yaml
+++ b/manifests/b/BrowserStack/BrowserStackLocal/3.7.6/BrowserStack.BrowserStackLocal.installer.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
PackageIdentifier: BrowserStack.BrowserStackLocal
-PackageVersion: 3.7.5
+PackageVersion: 3.7.6
InstallerType: wix
Scope: machine
InstallerSwitches:
@@ -10,13 +10,13 @@ InstallerSwitches:
UpgradeBehavior: install
Protocols:
- browserstackapp
-ProductCode: '{B6C242B0-CFE3-45B2-8223-3D49DEF3DBA4}'
-ReleaseDate: 2026-04-07
+ProductCode: '{1CD52E66-D538-464E-9880-00AF4D0F37ED}'
+ReleaseDate: 2026-05-05
AppsAndFeaturesEntries:
- UpgradeCode: '{35BE732C-8869-4038-8527-0A3176F19243}'
Installers:
- Architecture: x64
InstallerUrl: https://www.browserstack.com/local-testing/downloads/native-app/BrowserStackLocal.msi
- InstallerSha256: 9FC5FA025DB46322B311D82D15016E9C7179BEC27957E8B1F890F783D598668C
+ InstallerSha256: 6562DB74139A181644F9B5C69369630A18901F88C3D12229437EA7CF6CC1ED82
ManifestType: installer
ManifestVersion: 1.12.0
diff --git a/manifests/b/BrowserStack/BrowserStackLocal/3.7.5/BrowserStack.BrowserStackLocal.locale.en-US.yaml b/manifests/b/BrowserStack/BrowserStackLocal/3.7.6/BrowserStack.BrowserStackLocal.locale.en-US.yaml
similarity index 97%
rename from manifests/b/BrowserStack/BrowserStackLocal/3.7.5/BrowserStack.BrowserStackLocal.locale.en-US.yaml
rename to manifests/b/BrowserStack/BrowserStackLocal/3.7.6/BrowserStack.BrowserStackLocal.locale.en-US.yaml
index 29e108b86c1c..7a76318c0bbb 100644
--- a/manifests/b/BrowserStack/BrowserStackLocal/3.7.5/BrowserStack.BrowserStackLocal.locale.en-US.yaml
+++ b/manifests/b/BrowserStack/BrowserStackLocal/3.7.6/BrowserStack.BrowserStackLocal.locale.en-US.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
PackageIdentifier: BrowserStack.BrowserStackLocal
-PackageVersion: 3.7.5
+PackageVersion: 3.7.6
PackageLocale: en-US
Publisher: BrowserStack
PublisherUrl: https://www.browserstack.com/
diff --git a/manifests/b/BrowserStack/BrowserStackLocal/3.7.5/BrowserStack.BrowserStackLocal.locale.zh-CN.yaml b/manifests/b/BrowserStack/BrowserStackLocal/3.7.6/BrowserStack.BrowserStackLocal.locale.zh-CN.yaml
similarity index 95%
rename from manifests/b/BrowserStack/BrowserStackLocal/3.7.5/BrowserStack.BrowserStackLocal.locale.zh-CN.yaml
rename to manifests/b/BrowserStack/BrowserStackLocal/3.7.6/BrowserStack.BrowserStackLocal.locale.zh-CN.yaml
index 9b27b3ca3d24..f6f31fe4a7b3 100644
--- a/manifests/b/BrowserStack/BrowserStackLocal/3.7.5/BrowserStack.BrowserStackLocal.locale.zh-CN.yaml
+++ b/manifests/b/BrowserStack/BrowserStackLocal/3.7.6/BrowserStack.BrowserStackLocal.locale.zh-CN.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
PackageIdentifier: BrowserStack.BrowserStackLocal
-PackageVersion: 3.7.5
+PackageVersion: 3.7.6
PackageLocale: zh-CN
License: 专有软件
ShortDescription: Local Testing 帮助您大规模测试正在开发的网络和移动应用程序,而无需将其托管在公共暂存环境中。
diff --git a/manifests/b/BrowserStack/BrowserStackLocal/3.7.5/BrowserStack.BrowserStackLocal.yaml b/manifests/b/BrowserStack/BrowserStackLocal/3.7.6/BrowserStack.BrowserStackLocal.yaml
similarity index 91%
rename from manifests/b/BrowserStack/BrowserStackLocal/3.7.5/BrowserStack.BrowserStackLocal.yaml
rename to manifests/b/BrowserStack/BrowserStackLocal/3.7.6/BrowserStack.BrowserStackLocal.yaml
index 78b0a018c0bf..00eafdbf23fb 100644
--- a/manifests/b/BrowserStack/BrowserStackLocal/3.7.5/BrowserStack.BrowserStackLocal.yaml
+++ b/manifests/b/BrowserStack/BrowserStackLocal/3.7.6/BrowserStack.BrowserStackLocal.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
PackageIdentifier: BrowserStack.BrowserStackLocal
-PackageVersion: 3.7.5
+PackageVersion: 3.7.6
DefaultLocale: en-US
ManifestType: version
ManifestVersion: 1.12.0
diff --git a/manifests/c/Citrix/Workspace/26.3.0.188/Citrix.Workspace.installer.yaml b/manifests/c/Citrix/Workspace/26.3.0.188/Citrix.Workspace.installer.yaml
new file mode 100644
index 000000000000..1891165b4c48
--- /dev/null
+++ b/manifests/c/Citrix/Workspace/26.3.0.188/Citrix.Workspace.installer.yaml
@@ -0,0 +1,65 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Citrix.Workspace
+PackageVersion: 26.3.0.188
+InstallerType: exe
+Scope: machine
+InstallModes:
+- interactive
+- silent
+InstallerSwitches:
+ Silent: /silent /norestart
+ SilentWithProgress: /silent /norestart
+ InstallLocation: INSTALLDIR=""
+ExpectedReturnCodes:
+- InstallerReturnCode: 1601
+ ReturnResponse: contactSupport
+- InstallerReturnCode: 1602
+ ReturnResponse: cancelledByUser
+- InstallerReturnCode: 1618
+ ReturnResponse: installInProgress
+- InstallerReturnCode: 1623
+ ReturnResponse: systemNotSupported
+- InstallerReturnCode: 1625
+ ReturnResponse: blockedByPolicy
+- InstallerReturnCode: 1628
+ ReturnResponse: invalidParameter
+- InstallerReturnCode: 1633
+ ReturnResponse: systemNotSupported
+- InstallerReturnCode: 1638
+ ReturnResponse: alreadyInstalled
+- InstallerReturnCode: 1639
+ ReturnResponse: invalidParameter
+- InstallerReturnCode: 1641
+ ReturnResponse: rebootInitiated
+- InstallerReturnCode: 1640
+ ReturnResponse: blockedByPolicy
+- InstallerReturnCode: 1643
+ ReturnResponse: blockedByPolicy
+- InstallerReturnCode: 1644
+ ReturnResponse: blockedByPolicy
+- InstallerReturnCode: 1649
+ ReturnResponse: blockedByPolicy
+- InstallerReturnCode: 1650
+ ReturnResponse: invalidParameter
+- InstallerReturnCode: 1654
+ ReturnResponse: systemNotSupported
+- InstallerReturnCode: 3010
+ ReturnResponse: rebootRequiredToFinish
+- InstallerReturnCode: 40017
+ ReturnResponse: cancelledByUser
+UpgradeBehavior: install
+Protocols:
+- receiver
+FileExtensions:
+- cr
+- ica
+ProductCode: CitrixOnlinePluginPackWeb
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x86
+ InstallerUrl: https://downloadplugins.citrix.com/ReceiverUpdates/Prod/Receiver/Win/CitrixWorkspaceApp26.3.0.188.exe
+ InstallerSha256: 3E668EC8F8C96278AC2057546B52A81C0373414083B7D20D10191C0F6834C3B1
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/c/Citrix/Workspace/26.3.0.188/Citrix.Workspace.locale.en-US.yaml b/manifests/c/Citrix/Workspace/26.3.0.188/Citrix.Workspace.locale.en-US.yaml
new file mode 100644
index 000000000000..502ef8a91037
--- /dev/null
+++ b/manifests/c/Citrix/Workspace/26.3.0.188/Citrix.Workspace.locale.en-US.yaml
@@ -0,0 +1,28 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Citrix.Workspace
+PackageVersion: 26.3.0.188
+PackageLocale: en-US
+Publisher: Citrix Systems, Inc.
+PublisherUrl: https://www.citrix.com/
+PublisherSupportUrl: https://support.citrix.com/knowledge-center/
+PrivacyUrl: https://www.cloud.com/privacy-policy
+Author: Citrix Systems, Inc.
+PackageName: Citrix Workspace
+PackageUrl: https://www.citrix.com/platform/receiver.html
+License: Proprietary
+LicenseUrl: https://www.cloud.com/content/dam/cloud/documents/legal/end-user-agreement.pdf
+Copyright: © 2026 Citrix Systems, Inc. All rights reserved.
+CopyrightUrl: https://www.cloud.com/content/dam/cloud/documents/legal/cloud-software-group-trademark-guidelines.pdf
+ShortDescription: Citrix Workspace is a complete digital workspace solution that delivers secure access to the information, apps, and other content that is relevant to a person’s role in your organization.
+Description: Citrix Workspace is a complete digital workspace solution that delivers secure access to the information, apps, and other content that is relevant to a person’s role in your organization. Users subscribe to the services you make available and can access them from anywhere, on any device. Citrix Workspace helps you organize and automate the most important details that your users need to collaborate, make better decisions, and focus on their work.
+Moniker: citrix-workspace
+Tags:
+- desktop
+- remote
+- remote-access
+- remote-desktop
+- workspace
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/c/Citrix/Workspace/26.3.0.188/Citrix.Workspace.locale.zh-CN.yaml b/manifests/c/Citrix/Workspace/26.3.0.188/Citrix.Workspace.locale.zh-CN.yaml
new file mode 100644
index 000000000000..895b172ce652
--- /dev/null
+++ b/manifests/c/Citrix/Workspace/26.3.0.188/Citrix.Workspace.locale.zh-CN.yaml
@@ -0,0 +1,27 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: Citrix.Workspace
+PackageVersion: 26.3.0.188
+PackageLocale: zh-CN
+Publisher: Citrix Systems, Inc.
+PublisherUrl: https://www.citrix.com/
+PublisherSupportUrl: https://support.citrix.com/knowledge-center/
+PrivacyUrl: https://www.cloud.com/privacy-policy
+Author: Citrix Systems, Inc.
+PackageName: Citrix Workspace
+PackageUrl: https://www.citrix.com/platform/receiver.html
+License: 专有软件
+LicenseUrl: https://www.cloud.com/content/dam/cloud/documents/legal/end-user-agreement.pdf
+Copyright: © 2026 Citrix Systems, Inc. All rights reserved.
+CopyrightUrl: https://www.cloud.com/content/dam/cloud/documents/legal/cloud-software-group-trademark-guidelines.pdf
+ShortDescription: Citrix Workspace 是一个完整的数字工作区解决方案,可安全访问与个人在组织中的角色相关的信息、应用程序和其它内容。
+Description: Citrix Workspace 是一个完整的数字工作区解决方案,可安全访问与个人在组织中的角色相关的信息、应用程序和其它内容。用户可以订阅您提供的服务,并从任何地方、通过任何设备访问这些服务。Citrix Workspace 可帮助您组织并自动处理用户所需的最重要的细节,以便进行协作、做出更好的决策并专注于工作。
+Tags:
+- 工作区
+- 桌面
+- 远程
+- 远程桌面
+- 远程访问
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/c/Citrix/Workspace/26.3.0.188/Citrix.Workspace.yaml b/manifests/c/Citrix/Workspace/26.3.0.188/Citrix.Workspace.yaml
new file mode 100644
index 000000000000..4b214bfd1493
--- /dev/null
+++ b/manifests/c/Citrix/Workspace/26.3.0.188/Citrix.Workspace.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: Citrix.Workspace
+PackageVersion: 26.3.0.188
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/c/CodeZeno/ClaudeCodeUsageMonitor/1.3.9/CodeZeno.ClaudeCodeUsageMonitor.installer.yaml b/manifests/c/CodeZeno/ClaudeCodeUsageMonitor/1.3.9/CodeZeno.ClaudeCodeUsageMonitor.installer.yaml
new file mode 100644
index 000000000000..483693fe19a9
--- /dev/null
+++ b/manifests/c/CodeZeno/ClaudeCodeUsageMonitor/1.3.9/CodeZeno.ClaudeCodeUsageMonitor.installer.yaml
@@ -0,0 +1,13 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: CodeZeno.ClaudeCodeUsageMonitor
+PackageVersion: 1.3.9
+InstallerType: portable
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/CodeZeno/Claude-Code-Usage-Monitor/releases/download/v1.3.9/claude-code-usage-monitor.exe
+ InstallerSha256: 92479AF4DAB3BC770231598A7F255883CE4A381965A12C90AE10B87AF5E7D844
+ManifestType: installer
+ManifestVersion: 1.12.0
+ReleaseDate: 2026-05-05
diff --git a/manifests/c/CodeZeno/ClaudeCodeUsageMonitor/1.3.9/CodeZeno.ClaudeCodeUsageMonitor.locale.en-US.yaml b/manifests/c/CodeZeno/ClaudeCodeUsageMonitor/1.3.9/CodeZeno.ClaudeCodeUsageMonitor.locale.en-US.yaml
new file mode 100644
index 000000000000..175b793f398a
--- /dev/null
+++ b/manifests/c/CodeZeno/ClaudeCodeUsageMonitor/1.3.9/CodeZeno.ClaudeCodeUsageMonitor.locale.en-US.yaml
@@ -0,0 +1,20 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: CodeZeno.ClaudeCodeUsageMonitor
+PackageVersion: 1.3.9
+PackageLocale: en-US
+Publisher: Code Zeno Pty Ltd
+PublisherUrl: https://github.com/CodeZeno
+PublisherSupportUrl: https://github.com/CodeZeno/Claude-Code-Usage-Monitor/issues
+PackageName: Claude Code Usage Monitor
+PackageUrl: https://github.com/CodeZeno/Claude-Code-Usage-Monitor
+License: MIT License
+Copyright: Copyright (C) 2026 Code Zeno Pty Ltd
+ShortDescription: Windows taskbar widget for monitoring Claude Code usage and rate limits
+ReleaseNotesUrl: https://github.com/CodeZeno/Claude-Code-Usage-Monitor/releases/tag/v1.3.9
+Documentations:
+- DocumentLabel: Wiki
+ DocumentUrl: https://github.com/CodeZeno/Claude-Code-Usage-Monitor/wiki
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/c/CodeZeno/ClaudeCodeUsageMonitor/1.3.9/CodeZeno.ClaudeCodeUsageMonitor.yaml b/manifests/c/CodeZeno/ClaudeCodeUsageMonitor/1.3.9/CodeZeno.ClaudeCodeUsageMonitor.yaml
new file mode 100644
index 000000000000..279cab44cbd5
--- /dev/null
+++ b/manifests/c/CodeZeno/ClaudeCodeUsageMonitor/1.3.9/CodeZeno.ClaudeCodeUsageMonitor.yaml
@@ -0,0 +1,8 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: CodeZeno.ClaudeCodeUsageMonitor
+PackageVersion: 1.3.9
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/c/charmbracelet/crush/0.65.3/charmbracelet.crush.installer.yaml b/manifests/c/charmbracelet/crush/0.65.3/charmbracelet.crush.installer.yaml
new file mode 100644
index 000000000000..27be6a12716e
--- /dev/null
+++ b/manifests/c/charmbracelet/crush/0.65.3/charmbracelet.crush.installer.yaml
@@ -0,0 +1,34 @@
+# 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: charmbracelet.crush
+PackageVersion: 0.65.3
+InstallerLocale: en-US
+InstallerType: zip
+ReleaseDate: "2026-05-04"
+Installers:
+ - Architecture: x86
+ NestedInstallerType: portable
+ NestedInstallerFiles:
+ - RelativeFilePath: crush_0.65.3_Windows_i386\crush.exe
+ PortableCommandAlias: crush
+ InstallerUrl: https://github.com/charmbracelet/crush/releases/download/v0.65.3/crush_0.65.3_Windows_i386.zip
+ InstallerSha256: 1af3707b61406e551aaa60800fccfda21ce59819047a30fa538fe7ab399cc468
+ UpgradeBehavior: uninstallPrevious
+ - Architecture: arm64
+ NestedInstallerType: portable
+ NestedInstallerFiles:
+ - RelativeFilePath: crush_0.65.3_Windows_arm64\crush.exe
+ PortableCommandAlias: crush
+ InstallerUrl: https://github.com/charmbracelet/crush/releases/download/v0.65.3/crush_0.65.3_Windows_arm64.zip
+ InstallerSha256: 79cf9ae620fb8c2d240136885e7e24492061d822b82f452a1f10dd627c15c1e7
+ UpgradeBehavior: uninstallPrevious
+ - Architecture: x64
+ NestedInstallerType: portable
+ NestedInstallerFiles:
+ - RelativeFilePath: crush_0.65.3_Windows_x86_64\crush.exe
+ PortableCommandAlias: crush
+ InstallerUrl: https://github.com/charmbracelet/crush/releases/download/v0.65.3/crush_0.65.3_Windows_x86_64.zip
+ InstallerSha256: 73152643c12e2c4b04b9e0980b3705131bdc3047a8fa90aa384f4b2b2e01be5c
+ UpgradeBehavior: uninstallPrevious
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/c/charmbracelet/crush/0.65.3/charmbracelet.crush.locale.en-US.yaml b/manifests/c/charmbracelet/crush/0.65.3/charmbracelet.crush.locale.en-US.yaml
new file mode 100644
index 000000000000..a8c9868855be
--- /dev/null
+++ b/manifests/c/charmbracelet/crush/0.65.3/charmbracelet.crush.locale.en-US.yaml
@@ -0,0 +1,18 @@
+# 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: charmbracelet.crush
+PackageVersion: 0.65.3
+PackageLocale: en-US
+Publisher: charmbracelet
+PublisherUrl: https://charm.land
+PackageName: crush
+PackageUrl: https://charm.sh/crush
+License: FSL-1.1-MIT
+LicenseUrl: https://github.com/charmbracelet/crush/blob/main/LICENSE.md
+Copyright: Charmbracelet, Inc
+ShortDescription: A powerful terminal-based AI assistant for developers, providing intelligent coding assistance directly in your terminal.
+Description: A powerful terminal-based AI assistant for developers, providing intelligent coding assistance directly in your terminal.
+Moniker: crush
+ReleaseNotesUrl: https://github.com/charmbracelet/crush/releases/tag/v0.65.3
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/c/charmbracelet/crush/0.65.3/charmbracelet.crush.yaml b/manifests/c/charmbracelet/crush/0.65.3/charmbracelet.crush.yaml
new file mode 100644
index 000000000000..346d838daecb
--- /dev/null
+++ b/manifests/c/charmbracelet/crush/0.65.3/charmbracelet.crush.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: charmbracelet.crush
+PackageVersion: 0.65.3
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/c/cst8t/gitmun/0.4.1/cst8t.gitmun.installer.yaml b/manifests/c/cst8t/gitmun/0.4.1/cst8t.gitmun.installer.yaml
new file mode 100644
index 000000000000..31a44660eda6
--- /dev/null
+++ b/manifests/c/cst8t/gitmun/0.4.1/cst8t.gitmun.installer.yaml
@@ -0,0 +1,40 @@
+# Created with komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: cst8t.gitmun
+PackageVersion: 0.4.1
+InstallModes:
+- interactive
+- silent
+- silentWithProgress
+UpgradeBehavior: install
+Dependencies:
+ PackageDependencies:
+ - PackageIdentifier: Git.Git
+ReleaseDate: 2026-05-04
+Installers:
+- Architecture: x64
+ InstallerType: nullsoft
+ Scope: user
+ InstallerUrl: https://github.com/cst8t/gitmun/releases/download/v0.4.1/Gitmun_0.4.1_x64-setup.exe
+ InstallerSha256: 4C695FF222630365AA443B3B183F201DE9948891AE0C6FFB97F633E464C27C30
+ InstallerSwitches:
+ Custom: /SkipGitCheck
+ ProductCode: Gitmun
+ AppsAndFeaturesEntries:
+ - ProductCode: Gitmun
+ InstallationMetadata:
+ DefaultInstallLocation: '%LocalAppData%\Gitmun'
+- Architecture: x64
+ InstallerType: wix
+ Scope: machine
+ InstallerUrl: https://github.com/cst8t/gitmun/releases/download/v0.4.1/Gitmun_0.4.1_x64.msi
+ InstallerSha256: 4E409086BE86415F1530269A1FEDFC289ECA9FBE37D4F880E6752DC595101EC8
+ ProductCode: '{F3AE63C2-1B63-4721-8306-D19822252B8B}'
+ AppsAndFeaturesEntries:
+ - ProductCode: '{F3AE63C2-1B63-4721-8306-D19822252B8B}'
+ UpgradeCode: '{CFD38D6F-06D8-500B-8162-2815A511EBAF}'
+ InstallationMetadata:
+ DefaultInstallLocation: '%ProgramFiles%/Gitmun'
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/c/cst8t/gitmun/0.4.1/cst8t.gitmun.locale.en-GB.yaml b/manifests/c/cst8t/gitmun/0.4.1/cst8t.gitmun.locale.en-GB.yaml
new file mode 100644
index 000000000000..ea439c99ab24
--- /dev/null
+++ b/manifests/c/cst8t/gitmun/0.4.1/cst8t.gitmun.locale.en-GB.yaml
@@ -0,0 +1,28 @@
+# Created with komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: cst8t.gitmun
+PackageVersion: 0.4.1
+PackageLocale: en-GB
+Publisher: cst8t
+PublisherUrl: https://github.com/cst8t
+PublisherSupportUrl: https://github.com/cst8t/gitmun/issues
+Author: cst8t
+PackageName: Gitmun
+PackageUrl: https://github.com/cst8t/gitmun
+License: GPL-3.0
+LicenseUrl: https://github.com/cst8t/gitmun/blob/HEAD/LICENSE
+ShortDescription: A cross-platform Git GUI client
+Description: Gitmun is a crossplatform desktop Git client built with Tauri
+Moniker: gitmun
+ReleaseNotes: |-
+ What's Changed
+ Other changes
+ - Switch config to toml by @cst8t in #24
+ - Fixes to comply with Microsoft Store rules (Now bundles MinGit for MSIX package)
+ - feat: gate commit-and-push on upstream tracking status and improve pane layout defaults
+ - Few QoL fixes
+ Full Changelog: v0.4.0...v0.4.1
+ReleaseNotesUrl: https://github.com/cst8t/gitmun/releases/tag/v0.4.1
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/c/cst8t/gitmun/0.4.1/cst8t.gitmun.yaml b/manifests/c/cst8t/gitmun/0.4.1/cst8t.gitmun.yaml
new file mode 100644
index 000000000000..87a60a7f1601
--- /dev/null
+++ b/manifests/c/cst8t/gitmun/0.4.1/cst8t.gitmun.yaml
@@ -0,0 +1,8 @@
+# Created with komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: cst8t.gitmun
+PackageVersion: 0.4.1
+DefaultLocale: en-GB
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/d/Draftable/Draftable/26.4.100/Draftable.Draftable.installer.yaml b/manifests/d/Draftable/Draftable/26.4.100/Draftable.Draftable.installer.yaml
new file mode 100644
index 000000000000..51e5449d3d87
--- /dev/null
+++ b/manifests/d/Draftable/Draftable/26.4.100/Draftable.Draftable.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: Draftable.Draftable
+PackageVersion: 26.4.100
+UpgradeBehavior: install
+Protocols:
+- draftable
+Installers:
+- Architecture: x64
+ InstallerType: exe
+ Scope: user
+ InstallerUrl: https://dl.draftable.com/desktop/DraftableDesktopSetup-26.4.100.exe
+ InstallerSha256: E16DFC5B14FDBC697C69FC7471FB32AE72B8B7552C478CFA74D3937BBB0613A4
+ InstallerSwitches:
+ Silent: --silent
+ SilentWithProgress: --silent
+ ProductCode: DraftableDesktop
+ AppsAndFeaturesEntries:
+ - DisplayName: DraftableDesktop
+ Publisher: DraftableDesktop
+- Architecture: x64
+ InstallerType: wix
+ Scope: machine
+ InstallerUrl: https://dl.draftable.com/desktop/DraftableDesktopSystem-26.4.100.msi
+ InstallerSha256: D74B6539CCB61C3D7B586E3C87D3B76B144E0BD5149BF05FB1ECE873E2B0F2A8
+ InstallerSwitches:
+ InstallLocation: APPLICATIONFOLDER=""
+ Dependencies:
+ PackageDependencies:
+ - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.10
+ ProductCode: '{5979DE8E-57C7-4B50-B110-FE0C8126A635}'
+ AppsAndFeaturesEntries:
+ - UpgradeCode: '{CE9E15A5-3821-462C-9885-1714D08E79EC}'
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/d/Draftable/Draftable/26.4.100/Draftable.Draftable.locale.en-US.yaml b/manifests/d/Draftable/Draftable/26.4.100/Draftable.Draftable.locale.en-US.yaml
new file mode 100644
index 000000000000..2dee0e694113
--- /dev/null
+++ b/manifests/d/Draftable/Draftable/26.4.100/Draftable.Draftable.locale.en-US.yaml
@@ -0,0 +1,27 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Draftable.Draftable
+PackageVersion: 26.4.100
+PackageLocale: en-US
+Publisher: Draftable
+PublisherUrl: https://www.draftable.com/
+PrivacyUrl: https://www.draftable.com/privacy
+Author: Draftable Pty Ltd
+PackageName: Draftable Desktop
+PackageUrl: https://www.draftable.com/download-draftable-desktop
+License: Proprietary
+LicenseUrl: https://www.draftable.com/product-terms
+Copyright: © 2026 Draftable
+CopyrightUrl: https://www.draftable.com/product-terms
+ShortDescription: See all the changes in your documents, locally and offline. Take your work to the next level.
+Tags:
+- compare
+- comparison
+- diff
+- difference
+- docs
+- document
+PurchaseUrl: https://www.draftable.com/pricing
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/d/Draftable/Draftable/26.4.100/Draftable.Draftable.locale.zh-CN.yaml b/manifests/d/Draftable/Draftable/26.4.100/Draftable.Draftable.locale.zh-CN.yaml
new file mode 100644
index 000000000000..be6bb6be3353
--- /dev/null
+++ b/manifests/d/Draftable/Draftable/26.4.100/Draftable.Draftable.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: Draftable.Draftable
+PackageVersion: 26.4.100
+PackageLocale: zh-CN
+License: 专有软件
+ShortDescription: 在本地和离线状态下查看文档中的所有修改。将您的工作提升至新高度。
+Tags:
+- 对比
+- 差异
+- 文档
+- 比对
+- 比较
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/d/Draftable/Draftable/26.4.100/Draftable.Draftable.yaml b/manifests/d/Draftable/Draftable/26.4.100/Draftable.Draftable.yaml
new file mode 100644
index 000000000000..2a3ce03208ac
--- /dev/null
+++ b/manifests/d/Draftable/Draftable/26.4.100/Draftable.Draftable.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: Draftable.Draftable
+PackageVersion: 26.4.100
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/f/Freelensapp/Freelens/1.9.0/Freelensapp.Freelens.installer.yaml b/manifests/f/Freelensapp/Freelens/1.9.0/Freelensapp.Freelens.installer.yaml
new file mode 100644
index 000000000000..bccd0177550d
--- /dev/null
+++ b/manifests/f/Freelensapp/Freelens/1.9.0/Freelensapp.Freelens.installer.yaml
@@ -0,0 +1,55 @@
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json
+#
+PackageIdentifier: Freelensapp.Freelens
+PackageVersion: 1.9.0
+InstallerLocale: en-US
+InstallerType: nullsoft
+InstallModes:
+- interactive
+- silent
+- silentWithProgress
+InstallerSwitches:
+ Upgrade: --updated
+UpgradeBehavior: install
+Protocols:
+- freelens
+ReleaseDate: "2026-05-05"
+AppsAndFeaturesEntries:
+- DisplayName: Freelens 1.9.0
+Installers:
+- Architecture: x64
+ Scope: machine
+ InstallerUrl: https://github.com/freelensapp/freelens/releases/download/v1.9.0/Freelens-1.9.0-windows-amd64.exe
+ InstallerSha256: CEEDD0B4ED36C79BC467C4903425C26313F37983BF1A2A309D35DB1BC5237827
+ InstallationMetadata:
+ DefaultInstallLocation: '%ProgramFiles%\Freelens'
+ InstallerSwitches:
+ Custom: /allusers
+ ElevationRequirement: elevationRequired
+- Architecture: x64
+ Scope: user
+ InstallerUrl: https://github.com/freelensapp/freelens/releases/download/v1.9.0/Freelens-1.9.0-windows-amd64.exe
+ InstallerSha256: CEEDD0B4ED36C79BC467C4903425C26313F37983BF1A2A309D35DB1BC5237827
+ InstallationMetadata:
+ DefaultInstallLocation: '%LocalAppData%\Programs\Freelens'
+ InstallerSwitches:
+ Custom: /currentuser
+- Architecture: arm64
+ Scope: machine
+ InstallerUrl: https://github.com/freelensapp/freelens/releases/download/v1.9.0/Freelens-1.9.0-windows-arm64.exe
+ InstallerSha256: EB4988F6D09629F37A3BFAF5C68A620A8FDB4D3B6F0EAEA7D75C85D3236A04AA
+ InstallationMetadata:
+ DefaultInstallLocation: '%ProgramFiles(x86)%\Freelens'
+ InstallerSwitches:
+ Custom: /allusers
+ ElevationRequirement: elevationRequired
+- Architecture: arm64
+ Scope: user
+ InstallerUrl: https://github.com/freelensapp/freelens/releases/download/v1.9.0/Freelens-1.9.0-windows-arm64.exe
+ InstallerSha256: EB4988F6D09629F37A3BFAF5C68A620A8FDB4D3B6F0EAEA7D75C85D3236A04AA
+ InstallationMetadata:
+ DefaultInstallLocation: '%LocalAppData%\Programs\Freelens'
+ InstallerSwitches:
+ Custom: /currentuser
+ManifestType: installer
+ManifestVersion: 1.10.0
diff --git a/manifests/f/Freelensapp/Freelens/1.9.0/Freelensapp.Freelens.locale.en-US.yaml b/manifests/f/Freelensapp/Freelens/1.9.0/Freelensapp.Freelens.locale.en-US.yaml
new file mode 100644
index 000000000000..77cb865751ac
--- /dev/null
+++ b/manifests/f/Freelensapp/Freelens/1.9.0/Freelensapp.Freelens.locale.en-US.yaml
@@ -0,0 +1,40 @@
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json
+#
+PackageIdentifier: Freelensapp.Freelens
+PackageVersion: 1.9.0
+PackageLocale: en-US
+Publisher: Freelens Authors
+PublisherUrl: https://freelens.app/
+PublisherSupportUrl: https://github.com/freelensapp/freelens/issues
+PackageName: Freelens
+PackageUrl: https://github.com/freelensapp/freelens
+License: MIT
+LicenseUrl: https://github.com/freelensapp/freelens/blob/HEAD/LICENSE
+ShortDescription: FOSS IDE for Kubernetes
+Tags:
+- cloud-native
+- containers
+- devops
+- kubernetes
+- kubernetes-dashboard
+- kubernetes-ui
+ReleaseNotes: |-
+ ## What's new:
+
+ * Pods can be resized by patching their resources or container resources. See #1805, #1840
+ * Logs can be wrapped for better readability. See #1674
+ * When pressing `Ctrl+F`/`Cmd+F` in the pod logs view, the search input is now prefilled with the currently selected text. See #1672
+ * Fixed search input when too fast typing caused dropping characters while typing. See #1646, #1809
+ * OpenShift Prometheus support with bearer token authentication. See #1647
+ * Prometheus HTTP request method can be switched from GET to POST. See #1824
+ * Correct service labels are used to detect Helm chart with Prometheus. See #1783
+ * Gracefully exiting remote shell to prevent orphaning shell sessions. See #1691
+ * Better handling for high-volume terminal traffic during large file transfers. See #1694
+ * Added a warning column for pods with K8s warning events. See #1540, #1539
+ * The default color theme now is "Sync with system". See #1834
+ * 109 dependencies have been updated in total.
+ * Uses Electron v39.8.9 with Chrome v142.0.7444.265 and Node v22.22.1
+ * Has bundled kubectl v1.36.0 and Helm v4.1.4
+ReleaseNotesUrl: https://github.com/freelensapp/freelens/releases/tag/v1.9.0
+ManifestType: defaultLocale
+ManifestVersion: 1.10.0
diff --git a/manifests/b/Box/BoxForOffice/4.23.1576.0/Box.BoxForOffice.yaml b/manifests/f/Freelensapp/Freelens/1.9.0/Freelensapp.Freelens.yaml
similarity index 54%
rename from manifests/b/Box/BoxForOffice/4.23.1576.0/Box.BoxForOffice.yaml
rename to manifests/f/Freelensapp/Freelens/1.9.0/Freelensapp.Freelens.yaml
index d472c754fb20..61ab99b3094c 100644
--- a/manifests/b/Box/BoxForOffice/4.23.1576.0/Box.BoxForOffice.yaml
+++ b/manifests/f/Freelensapp/Freelens/1.9.0/Freelensapp.Freelens.yaml
@@ -1,8 +1,7 @@
-# Created with YamlCreate.ps1 v2.4.6 $debug=NVS1.CRLF.7-5-0.Win32NT
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json
-
-PackageIdentifier: Box.BoxForOffice
-PackageVersion: 4.23.1576.0
+#
+PackageIdentifier: Freelensapp.Freelens
+PackageVersion: 1.9.0
DefaultLocale: en-US
ManifestType: version
ManifestVersion: 1.10.0
diff --git a/manifests/g/Google/Chrome/Canary/149.0.7825.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.installer.yaml
similarity index 58%
rename from manifests/g/Google/Chrome/Canary/149.0.7825.0/Google.Chrome.Canary.installer.yaml
rename to manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.installer.yaml
index c51b2bdd9179..265a41253386 100644
--- a/manifests/g/Google/Chrome/Canary/149.0.7825.0/Google.Chrome.Canary.installer.yaml
+++ b/manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.installer.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
PackageIdentifier: Google.Chrome.Canary
-PackageVersion: 149.0.7825.0
+PackageVersion: 149.0.7827.0
InstallerType: exe
Scope: user
InstallModes:
@@ -37,13 +37,13 @@ FileExtensions:
ProductCode: Google Chrome SxS
Installers:
- Architecture: x86
- InstallerUrl: https://dl.google.com/release2/chrome/adzkyphkygjqfvww2fngcqt75hoa_149.0.7825.0/149.0.7825.0_chrome_installer_uncompressed.exe
- InstallerSha256: 58CAF779E11A7822421D741474329FBF6471902FEA1129FC29E16730C07A20AE
+ InstallerUrl: https://dl.google.com/release2/chrome/acj6yujfvxlskynu73eymt4dtbia_149.0.7827.0/149.0.7827.0_chrome_installer_uncompressed.exe
+ InstallerSha256: 5490EEA58A6A7FEB509CE573CFCFEA3929C7738B412629FA79850842C6887B3F
- Architecture: x64
- InstallerUrl: https://dl.google.com/release2/chrome/insb6xdbmqbhp5neldffcytkla_149.0.7825.0/149.0.7825.0_chrome_installer_uncompressed.exe
- InstallerSha256: 90C670995DBD11950EFD9C549825C1E7F4F3EE61F618124D23C207CF98C61D3C
+ InstallerUrl: https://dl.google.com/release2/chrome/iq65n2yvea6haqw6m7dh37ochq_149.0.7827.0/149.0.7827.0_chrome_installer_uncompressed.exe
+ InstallerSha256: 636810C0DB1C1778B1EAA5A83D0CB7EC1355D50CC62CD2BF8A2BC1331864868F
- Architecture: arm64
- InstallerUrl: https://dl.google.com/release2/chrome/jmf5eg5qpc3c5zxdw6ewzvmrce_149.0.7825.0/149.0.7825.0_chrome_installer_uncompressed.exe
- InstallerSha256: 595F53EB1DBC00DBACEC7182A7DAEFD8AADD29647526341D49B14C7B2F316166
+ InstallerUrl: https://dl.google.com/release2/chrome/ff6sc3wcrqbcgspyeesiaaq2km_149.0.7827.0/149.0.7827.0_chrome_installer_uncompressed.exe
+ InstallerSha256: ED4F6BEAC5AB1FDE9762413EC5773EF5F4DF697D04272948A021353ABB15CE9B
ManifestType: installer
ManifestVersion: 1.12.0
diff --git a/manifests/g/Google/Chrome/Canary/149.0.7825.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.locale.en-US.yaml
similarity index 96%
rename from manifests/g/Google/Chrome/Canary/149.0.7825.0/Google.Chrome.Canary.locale.en-US.yaml
rename to manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.locale.en-US.yaml
index 8fb91c970720..8bbcc1b45b19 100644
--- a/manifests/g/Google/Chrome/Canary/149.0.7825.0/Google.Chrome.Canary.locale.en-US.yaml
+++ b/manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.locale.en-US.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
PackageIdentifier: Google.Chrome.Canary
-PackageVersion: 149.0.7825.0
+PackageVersion: 149.0.7827.0
PackageLocale: en-US
Publisher: Google LLC
PublisherUrl: https://www.google.com/
diff --git a/manifests/g/Google/Chrome/Canary/149.0.7825.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.locale.nb-NO.yaml
similarity index 96%
rename from manifests/g/Google/Chrome/Canary/149.0.7825.0/Google.Chrome.Canary.locale.nb-NO.yaml
rename to manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.locale.nb-NO.yaml
index 478cd7357da8..782799bcfc44 100644
--- a/manifests/g/Google/Chrome/Canary/149.0.7825.0/Google.Chrome.Canary.locale.nb-NO.yaml
+++ b/manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.locale.nb-NO.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
PackageIdentifier: Google.Chrome.Canary
-PackageVersion: 149.0.7825.0
+PackageVersion: 149.0.7827.0
PackageLocale: nb-NO
Publisher: Google LLC
PublisherUrl: https://www.google.com/
diff --git a/manifests/g/Google/Chrome/Canary/149.0.7825.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.locale.zh-CN.yaml
similarity index 96%
rename from manifests/g/Google/Chrome/Canary/149.0.7825.0/Google.Chrome.Canary.locale.zh-CN.yaml
rename to manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.locale.zh-CN.yaml
index 850870048c9c..76a0bfe6948b 100644
--- a/manifests/g/Google/Chrome/Canary/149.0.7825.0/Google.Chrome.Canary.locale.zh-CN.yaml
+++ b/manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.locale.zh-CN.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
PackageIdentifier: Google.Chrome.Canary
-PackageVersion: 149.0.7825.0
+PackageVersion: 149.0.7827.0
PackageLocale: zh-CN
Publisher: Google LLC
PublisherUrl: https://www.google.com/
diff --git a/manifests/g/Google/Chrome/Canary/149.0.7825.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.yaml
similarity index 89%
rename from manifests/g/Google/Chrome/Canary/149.0.7825.0/Google.Chrome.Canary.yaml
rename to manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.yaml
index 4e1d488be8e2..d0d4319d821b 100644
--- a/manifests/g/Google/Chrome/Canary/149.0.7825.0/Google.Chrome.Canary.yaml
+++ b/manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
PackageIdentifier: Google.Chrome.Canary
-PackageVersion: 149.0.7825.0
+PackageVersion: 149.0.7827.0
DefaultLocale: en-US
ManifestType: version
ManifestVersion: 1.12.0
diff --git a/manifests/g/Google/CloudSDK/566.0.0/Google.CloudSDK.installer.yaml b/manifests/g/Google/CloudSDK/567.0.0/Google.CloudSDK.installer.yaml
similarity index 94%
rename from manifests/g/Google/CloudSDK/566.0.0/Google.CloudSDK.installer.yaml
rename to manifests/g/Google/CloudSDK/567.0.0/Google.CloudSDK.installer.yaml
index ea3d4220a721..c199ad2caa08 100644
--- a/manifests/g/Google/CloudSDK/566.0.0/Google.CloudSDK.installer.yaml
+++ b/manifests/g/Google/CloudSDK/567.0.0/Google.CloudSDK.installer.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
PackageIdentifier: Google.CloudSDK
-PackageVersion: 566.0.0
+PackageVersion: 567.0.0
InstallerType: nullsoft
Scope: machine
InstallModes:
diff --git a/manifests/g/Google/CloudSDK/566.0.0/Google.CloudSDK.locale.en-US.yaml b/manifests/g/Google/CloudSDK/567.0.0/Google.CloudSDK.locale.en-US.yaml
similarity index 95%
rename from manifests/g/Google/CloudSDK/566.0.0/Google.CloudSDK.locale.en-US.yaml
rename to manifests/g/Google/CloudSDK/567.0.0/Google.CloudSDK.locale.en-US.yaml
index 5df1ba0bbee6..706971d33b43 100644
--- a/manifests/g/Google/CloudSDK/566.0.0/Google.CloudSDK.locale.en-US.yaml
+++ b/manifests/g/Google/CloudSDK/567.0.0/Google.CloudSDK.locale.en-US.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
PackageIdentifier: Google.CloudSDK
-PackageVersion: 566.0.0
+PackageVersion: 567.0.0
PackageLocale: en-US
Publisher: Google LLC
PublisherUrl: https://cloud.google.com/
diff --git a/manifests/g/Google/CloudSDK/566.0.0/Google.CloudSDK.yaml b/manifests/g/Google/CloudSDK/567.0.0/Google.CloudSDK.yaml
similarity index 88%
rename from manifests/g/Google/CloudSDK/566.0.0/Google.CloudSDK.yaml
rename to manifests/g/Google/CloudSDK/567.0.0/Google.CloudSDK.yaml
index f9ecf2fac1a5..0fa062cb3664 100644
--- a/manifests/g/Google/CloudSDK/566.0.0/Google.CloudSDK.yaml
+++ b/manifests/g/Google/CloudSDK/567.0.0/Google.CloudSDK.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
PackageIdentifier: Google.CloudSDK
-PackageVersion: 566.0.0
+PackageVersion: 567.0.0
DefaultLocale: en-US
ManifestType: version
ManifestVersion: 1.12.0
diff --git a/manifests/h/HubDev/HubDev/1.9.65/HubDev.HubDev.installer.yaml b/manifests/h/HubDev/HubDev/1.9.65/HubDev.HubDev.installer.yaml
new file mode 100644
index 000000000000..6f3b4d8b9215
--- /dev/null
+++ b/manifests/h/HubDev/HubDev/1.9.65/HubDev.HubDev.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: HubDev.HubDev
+PackageVersion: 1.9.65
+InstallerType: nullsoft
+AppsAndFeaturesEntries:
+- DisplayVersion: 1.9.65
+Installers:
+- Architecture: x64
+ InstallerUrl: https://apt.hubdev.io/v1.9.65/HubDev_1.9.65_Setup.exe
+ InstallerSha256: 1641545178668094A748675E0727B28D9237F13D62072BBFC305F8425D3BA81A
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/h/HubDev/HubDev/1.9.65/HubDev.HubDev.locale.en-US.yaml b/manifests/h/HubDev/HubDev/1.9.65/HubDev.HubDev.locale.en-US.yaml
new file mode 100644
index 000000000000..aaa84e5d3f66
--- /dev/null
+++ b/manifests/h/HubDev/HubDev/1.9.65/HubDev.HubDev.locale.en-US.yaml
@@ -0,0 +1,14 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: HubDev.HubDev
+PackageVersion: 1.9.65
+PackageLocale: en-US
+Publisher: HubDev
+PublisherUrl: https://hubdev.io
+PackageName: HubDev
+License: Proprietary
+Copyright: Copyright.........
+ShortDescription: Hybrid Development Environment Manager
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/h/HubDev/HubDev/1.9.65/HubDev.HubDev.yaml b/manifests/h/HubDev/HubDev/1.9.65/HubDev.HubDev.yaml
new file mode 100644
index 000000000000..a68b2b271c0b
--- /dev/null
+++ b/manifests/h/HubDev/HubDev/1.9.65/HubDev.HubDev.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: HubDev.HubDev
+PackageVersion: 1.9.65
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/i/ITU/BRSpaceApplications/10.0.0.57/ITU.BRSpaceApplications.installer.yaml b/manifests/i/ITU/BRSpaceApplications/10.0.0.57/ITU.BRSpaceApplications.installer.yaml
new file mode 100644
index 000000000000..6f6a938f45b5
--- /dev/null
+++ b/manifests/i/ITU/BRSpaceApplications/10.0.0.57/ITU.BRSpaceApplications.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: ITU.BRSpaceApplications
+PackageVersion: 10.0.0.57
+InstallerType: nullsoft
+InstallerSwitches:
+ Silent: /silent /spacecap=update /spacecom=update /brsis=update /gims=update /sam=update /gibc=update /sps=update /ap7capture=update
+ SilentWithProgress: /silent /spacecap=update /spacecom=update /brsis=update /gims=update /sam=update /gibc=update /sps=update /ap7capture=update
+FileExtensions:
+- gxsns
+- gxt
+Installers:
+- Architecture: x86
+ InstallerUrl: https://www.itu.int/net4/itu-r/softwares/SAS-software-exe/release/Installer-v10.0-10.0.0.57.exe
+ InstallerSha256: 940733074F386CB6BB6D00DD9206508C83718B64CDE64B7E135B69A401CB653F
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/i/ITU/BRSpaceApplications/10.0.0.57/ITU.BRSpaceApplications.locale.en-US.yaml b/manifests/i/ITU/BRSpaceApplications/10.0.0.57/ITU.BRSpaceApplications.locale.en-US.yaml
new file mode 100644
index 000000000000..53100f8d8361
--- /dev/null
+++ b/manifests/i/ITU/BRSpaceApplications/10.0.0.57/ITU.BRSpaceApplications.locale.en-US.yaml
@@ -0,0 +1,30 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: ITU.BRSpaceApplications
+PackageVersion: 10.0.0.57
+PackageLocale: en-US
+Publisher: International Telecommunication Union
+PublisherUrl: https://www.itu.int/
+PublisherSupportUrl: https://www.itu.int/home/contact/index.html
+PrivacyUrl: https://www.itu.int/en/about/Pages/privacy-notice.aspx
+Author: International Telecommunication Union
+PackageName: BR Space Applications
+PackageUrl: https://www.itu.int/en/ITU-R/software/Pages/space-network-software.aspx
+License: Proprietary
+LicenseUrl: https://www.itu.int/en/about/Pages/terms-of-use.aspx
+Copyright: © ITU 2026 All Rights Reserved
+CopyrightUrl: https://www.itu.int/en/about/Pages/terms-of-use.aspx
+ShortDescription: Space networks and related software
+Tags:
+- ap7capture
+- brsis
+- gibc
+- gims
+- sam
+- spacecap
+- spacecom
+- sps
+ReleaseNotesUrl: https://www.itu.int/net4/itu-r/softwares/SAS-software-exe/release/ReleaseNotes.pdf
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/i/ITU/BRSpaceApplications/10.0.0.57/ITU.BRSpaceApplications.locale.zh-CN.yaml b/manifests/i/ITU/BRSpaceApplications/10.0.0.57/ITU.BRSpaceApplications.locale.zh-CN.yaml
new file mode 100644
index 000000000000..408cb569f458
--- /dev/null
+++ b/manifests/i/ITU/BRSpaceApplications/10.0.0.57/ITU.BRSpaceApplications.locale.zh-CN.yaml
@@ -0,0 +1,10 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: ITU.BRSpaceApplications
+PackageVersion: 10.0.0.57
+PackageLocale: zh-CN
+License: 专有软件
+ShortDescription: 空间网络及相关软件
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/i/ITU/BRSpaceApplications/10.0.0.57/ITU.BRSpaceApplications.yaml b/manifests/i/ITU/BRSpaceApplications/10.0.0.57/ITU.BRSpaceApplications.yaml
new file mode 100644
index 000000000000..b71c07f456a6
--- /dev/null
+++ b/manifests/i/ITU/BRSpaceApplications/10.0.0.57/ITU.BRSpaceApplications.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: ITU.BRSpaceApplications
+PackageVersion: 10.0.0.57
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/i/ITWCreativeWorks/Somiibo/1.2.32/ITWCreativeWorks.Somiibo.installer.yaml b/manifests/i/ITWCreativeWorks/Somiibo/1.2.32/ITWCreativeWorks.Somiibo.installer.yaml
new file mode 100644
index 000000000000..3b88efe724c7
--- /dev/null
+++ b/manifests/i/ITWCreativeWorks/Somiibo/1.2.32/ITWCreativeWorks.Somiibo.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: ITWCreativeWorks.Somiibo
+PackageVersion: 1.2.32
+InstallerType: nullsoft
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/somiibo/download-server/releases/download/installer/Somiibo-Setup.exe
+ InstallerSha256: 345250ADF0DE172A97B6789FDDEDFF6DA3A3E5CC9483998A10773CF130B5D900
+ManifestType: installer
+ManifestVersion: 1.12.0
+ReleaseDate: 2021-03-16
diff --git a/manifests/i/ITWCreativeWorks/Somiibo/1.2.32/ITWCreativeWorks.Somiibo.locale.en-US.yaml b/manifests/i/ITWCreativeWorks/Somiibo/1.2.32/ITWCreativeWorks.Somiibo.locale.en-US.yaml
new file mode 100644
index 000000000000..861af74c3741
--- /dev/null
+++ b/manifests/i/ITWCreativeWorks/Somiibo/1.2.32/ITWCreativeWorks.Somiibo.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: ITWCreativeWorks.Somiibo
+PackageVersion: 1.2.32
+PackageLocale: en-US
+Publisher: ITW Creative Works
+PublisherUrl: https://github.com/somiibo
+PublisherSupportUrl: https://github.com/somiibo/download-server/issues
+PackageName: Somiibo
+PackageUrl: https://github.com/somiibo/download-server
+License: NOASSERTION
+Copyright: © 2024, ITW Creative Works
+ShortDescription: An organic social media and web automation app
+ReleaseNotesUrl: https://github.com/somiibo/download-server/releases/tag/installer
+Documentations:
+- DocumentLabel: Wiki
+ DocumentUrl: https://github.com/somiibo/download-server/wiki
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/i/ITWCreativeWorks/Somiibo/1.2.32/ITWCreativeWorks.Somiibo.yaml b/manifests/i/ITWCreativeWorks/Somiibo/1.2.32/ITWCreativeWorks.Somiibo.yaml
new file mode 100644
index 000000000000..06e439954f9f
--- /dev/null
+++ b/manifests/i/ITWCreativeWorks/Somiibo/1.2.32/ITWCreativeWorks.Somiibo.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: ITWCreativeWorks.Somiibo
+PackageVersion: 1.2.32
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.2.0.9/Jellyfin2Samsung.Jellyfin2Samsung.installer.yaml b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.2.0.9/Jellyfin2Samsung.Jellyfin2Samsung.installer.yaml
new file mode 100644
index 000000000000..a82506f91149
--- /dev/null
+++ b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.2.0.9/Jellyfin2Samsung.Jellyfin2Samsung.installer.yaml
@@ -0,0 +1,21 @@
+# Created with WinGet Releaser using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Jellyfin2Samsung.Jellyfin2Samsung
+PackageVersion: 2.2.0.9
+InstallerLocale: en-US
+InstallerType: wix
+Scope: machine
+ProductCode: '{627C9DA1-5DEE-4B3D-B3EA-5AEFB667499D}'
+ReleaseDate: 2026-05-05
+AppsAndFeaturesEntries:
+- ProductCode: '{627C9DA1-5DEE-4B3D-B3EA-5AEFB667499D}'
+ UpgradeCode: '{6F3E2A1B-4C5D-4E6F-A7B8-9C0D1E2F3A4B}'
+InstallationMetadata:
+ DefaultInstallLocation: '%ProgramFiles%\Jellyfin2Samsung'
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/Jellyfin2Samsung/Samsung-Jellyfin-Installer/releases/download/v2.2.0.9/Jellyfin2Samsung-v2.2.0.9-win-x64.msi
+ InstallerSha256: D89969A2BEED57492ED737CC087967CEFB5A7AE55958ECC72B9B1B1A88312C5D
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.2.0.9/Jellyfin2Samsung.Jellyfin2Samsung.locale.en-US.yaml b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.2.0.9/Jellyfin2Samsung.Jellyfin2Samsung.locale.en-US.yaml
new file mode 100644
index 000000000000..3e2a6026b3e3
--- /dev/null
+++ b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.2.0.9/Jellyfin2Samsung.Jellyfin2Samsung.locale.en-US.yaml
@@ -0,0 +1,44 @@
+# Created with WinGet Releaser using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Jellyfin2Samsung.Jellyfin2Samsung
+PackageVersion: 2.2.0.9
+PackageLocale: en-US
+Publisher: Jellyfin2Samsung
+PublisherUrl: https://github.com/Jellyfin2Samsung
+PublisherSupportUrl: https://github.com/Jellyfin2Samsung/Samsung-Jellyfin-Installer/issues
+PackageName: Jellyfin2Samsung
+PackageUrl: https://github.com/Jellyfin2Samsung/Samsung-Jellyfin-Installer
+License: MIT
+LicenseUrl: https://github.com/Jellyfin2Samsung/Samsung-Jellyfin-Installer/blob/HEAD/LICENSE
+ShortDescription: Bridge tool to install Jellyfin on all Samsung Tizen Devices
+Tags:
+- jellyfin
+- jellyfin-tizen
+- sdb
+- tizen
+- tizen-studio
+- tizen-tv
+ReleaseNotes: |-
+ 📦 [v2.2.0.9] – 2026-05-04
+ ✅ What's New & Improved
+ - Bug fixes v2.2.09 (#334)
+ - Arch Linux's CA bundle fix
+ - fix: missing font (#332)
+ - GitHub Auth for SDB
+ ─────────────────────┬─────────┬───────────────
+ Platform │Status │Notes
+ ─────────────────────┼─────────┼───────────────
+ 🍎 macOS (.app + dmg)│✅ Stable│ARM64 + Intel
+ ─────────────────────┼─────────┼───────────────
+ 🍎 macOS (CLI) │✅ Stable│Per-arch tar.gz
+ ─────────────────────┼─────────┼───────────────
+ 🐧 Linux │✅ Stable│tar.gz / .deb
+ ─────────────────────┼─────────┼───────────────
+ 🪟 Windows │✅ Stable│CI-built
+ ─────────────────────┴─────────┴───────────────
+ 🛡️ Security Notice
+ Antivirus warnings may occur and are likely false positives.
+ReleaseNotesUrl: https://github.com/Jellyfin2Samsung/Samsung-Jellyfin-Installer/releases/tag/v2.2.0.9
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.2.0.9/Jellyfin2Samsung.Jellyfin2Samsung.yaml b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.2.0.9/Jellyfin2Samsung.Jellyfin2Samsung.yaml
new file mode 100644
index 000000000000..40174f1880e3
--- /dev/null
+++ b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.2.0.9/Jellyfin2Samsung.Jellyfin2Samsung.yaml
@@ -0,0 +1,8 @@
+# Created with WinGet Releaser using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: Jellyfin2Samsung.Jellyfin2Samsung
+PackageVersion: 2.2.0.9
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/j/j178/Prek/0.3.12/j178.Prek.installer.yaml b/manifests/j/j178/Prek/0.3.12/j178.Prek.installer.yaml
new file mode 100644
index 000000000000..1acd5cd54329
--- /dev/null
+++ b/manifests/j/j178/Prek/0.3.12/j178.Prek.installer.yaml
@@ -0,0 +1,35 @@
+# Created with WinGet Releaser using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: j178.Prek
+PackageVersion: 0.3.12
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: prek.exe
+ PortableCommandAlias: prek
+InstallModes:
+- silent
+UpgradeBehavior: install
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x86
+ InstallerUrl: https://github.com/j178/prek/releases/download/v0.3.12/prek-i686-pc-windows-msvc.zip
+ InstallerSha256: D68768A44B44040D30114BAF066365DDAFF0BDF57441094D85A42CD2143792E1
+ Dependencies:
+ PackageDependencies:
+ - PackageIdentifier: Microsoft.VCRedist.2015+.x86
+- Architecture: x64
+ InstallerUrl: https://github.com/j178/prek/releases/download/v0.3.12/prek-x86_64-pc-windows-msvc.zip
+ InstallerSha256: B75CDAE3279806C7A046B18C45C601FE3EC1A380F11911BC39C5273100E18FCE
+ Dependencies:
+ PackageDependencies:
+ - PackageIdentifier: Microsoft.VCRedist.2015+.x64
+- Architecture: arm64
+ InstallerUrl: https://github.com/j178/prek/releases/download/v0.3.12/prek-aarch64-pc-windows-msvc.zip
+ InstallerSha256: 6F69D45AA32571E9C34104564DD06A32B7AEEC9802831A00A5074FA1A89D5BA9
+ Dependencies:
+ PackageDependencies:
+ - PackageIdentifier: Microsoft.VCRedist.2015+.arm64
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/j/j178/Prek/0.3.12/j178.Prek.locale.en-US.yaml b/manifests/j/j178/Prek/0.3.12/j178.Prek.locale.en-US.yaml
new file mode 100644
index 000000000000..73b2356cac26
--- /dev/null
+++ b/manifests/j/j178/Prek/0.3.12/j178.Prek.locale.en-US.yaml
@@ -0,0 +1,98 @@
+# Created with WinGet Releaser using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: j178.Prek
+PackageVersion: 0.3.12
+PackageLocale: en-US
+Publisher: j178
+PublisherUrl: https://github.com/j178
+PublisherSupportUrl: https://github.com/j178/prek/issues
+Author: j178
+PackageName: Prek
+PackageUrl: https://github.com/j178/prek
+License: MIT
+LicenseUrl: https://github.com/j178/prek/blob/HEAD/LICENSE
+ShortDescription: ⚡ Better `pre-commit`, re-engineered in Rust
+Moniker: prek
+Tags:
+- git
+- git-hooks
+- pre-commit
+- prek
+ReleaseNotes: |-
+ Release Notes
+ Released on 2026-05-05.
+ Highlights
+ auto_update.cooldown_days is now available in both the user-level global
+ config (~/.config/prek/prek.toml on Linux and macOS, or
+ $XDG_CONFIG_HOME/prek/prek.toml when set; %APPDATA%\prek\prek.toml on
+ Windows) and project config. Set a user default for prek auto-update, then
+ override it per project when a repository needs a different update cadence.
+ [auto_update]
+ cooldown_days = 7
+ Enhancements
+ - Add global auto-update cooldown config (#2041)
+ - Add project auto-update cooldown config (#2044)
+ - Support language: dart (#1146)
+ Bug fixes
+ - Pass commit message file to workspace hooks (#2043)
+ - Preserve non-UTF8 filenames from git (#2023)
+ - ruby: put resolved Ruby's bin dir on $PATH for gem invocations (#2021)
+ Documentation
+ - Update docs with the new logo and icon (#2025)
+ - Point schema docs to SchemaStore (#2039)
+ Contributors
+ - @j178
+ - @xiaoyanli-lyft
+ - @Lutra-Fs
+ Install prek 0.3.12
+ Install prebuilt binaries via shell script
+ curl --proto '=https' --tlsv1.2 -LsSf https://github.com/j178/prek/releases/download/v0.3.12/prek-installer.sh | sh
+ Install prebuilt binaries via powershell script
+ powershell -ExecutionPolicy Bypass -c "irm https://github.com/j178/prek/releases/download/v0.3.12/prek-installer.ps1 | iex"
+ Install prebuilt binaries via Homebrew
+ brew install prek
+ Download prek 0.3.12
+ ───────────────────────────────────────────────┬────────────────────────────┬─────────────
+ File │Platform │Checksum
+ ───────────────────────────────────────────────┼────────────────────────────┼─────────────
+ prek-aarch64-apple-darwin.tar.gz │Apple Silicon macOS │checksum
+ ───────────────────────────────────────────────┼────────────────────────────┼─────────────
+ prek-x86_64-apple-darwin.tar.gz │Intel macOS │checksum
+ ───────────────────────────────────────────────┼────────────────────────────┼─────────────
+ prek-aarch64-pc-windows-msvc.zip │ARM64 Windows │checksum
+ ───────────────────────────────────────────────┼────────────────────────────┼─────────────
+ prek-i686-pc-windows-msvc.zip │x86 Windows │checksum
+ ───────────────────────────────────────────────┼────────────────────────────┼─────────────
+ prek-x86_64-pc-windows-msvc.zip │x64 Windows │checksum
+ ───────────────────────────────────────────────┼────────────────────────────┼─────────────
+ prek-aarch64-unknown-linux-gnu.tar.gz │ARM64 Linux │checksum
+ ───────────────────────────────────────────────┼────────────────────────────┼─────────────
+ prek-i686-unknown-linux-gnu.tar.gz │x86 Linux │checksum
+ ───────────────────────────────────────────────┼────────────────────────────┼─────────────
+ prek-riscv64gc-unknown-linux-gnu.tar.gz │RISCV Linux │checksum
+ ───────────────────────────────────────────────┼────────────────────────────┼─────────────
+ prek-s390x-unknown-linux-gnu.tar.gz │S390x Linux │checksum
+ ───────────────────────────────────────────────┼────────────────────────────┼─────────────
+ prek-x86_64-unknown-linux-gnu.tar.gz │x64 Linux │checksum
+ ───────────────────────────────────────────────┼────────────────────────────┼─────────────
+ prek-armv7-unknown-linux-gnueabihf.tar.gz │ARMv7 Linux │checksum
+ ───────────────────────────────────────────────┼────────────────────────────┼─────────────
+ prek-aarch64-unknown-linux-musl.tar.gz │ARM64 MUSL Linux │checksum
+ ───────────────────────────────────────────────┼────────────────────────────┼─────────────
+ prek-i686-unknown-linux-musl.tar.gz │x86 MUSL Linux │checksum
+ ───────────────────────────────────────────────┼────────────────────────────┼─────────────
+ prek-x86_64-unknown-linux-musl.tar.gz │x64 MUSL Linux │checksum
+ ───────────────────────────────────────────────┼────────────────────────────┼─────────────
+ prek-arm-unknown-linux-musleabihf.tar.gz │ARMv6 MUSL Linux (Hardfloat)│checksum
+ ───────────────────────────────────────────────┼────────────────────────────┼─────────────
+ prek-armv7-unknown-linux-musleabihf.tar.gz │ARMv7 MUSL Linux │checksum
+ ───────────────────────────────────────────────┴────────────────────────────┴─────────────
+ Verifying GitHub Artifact Attestations
+ The artifacts in this release have attestations generated with GitHub Artifact Attestations. These can be verified by using the GitHub CLI:
+ gh attestation verify --repo j178/prek
+ You can also download the attestation from GitHub and verify against that directly:
+ gh attestation verify --bundle
+ReleaseNotesUrl: https://github.com/j178/prek/releases/tag/v0.3.12
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/j/j178/Prek/0.3.12/j178.Prek.yaml b/manifests/j/j178/Prek/0.3.12/j178.Prek.yaml
new file mode 100644
index 000000000000..beb29846d34f
--- /dev/null
+++ b/manifests/j/j178/Prek/0.3.12/j178.Prek.yaml
@@ -0,0 +1,8 @@
+# Created with WinGet Releaser using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: j178.Prek
+PackageVersion: 0.3.12
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/k/KDE/KMahjongg/26.04.0/KDE.KMahjongg.installer.yaml b/manifests/k/KDE/KMahjongg/26.04.0/KDE.KMahjongg.installer.yaml
index b87d14dc0851..b810e8e522fe 100644
--- a/manifests/k/KDE/KMahjongg/26.04.0/KDE.KMahjongg.installer.yaml
+++ b/manifests/k/KDE/KMahjongg/26.04.0/KDE.KMahjongg.installer.yaml
@@ -9,14 +9,14 @@ ProductCode: kmahjongg
Installers:
- Architecture: x64
Scope: user
- InstallerUrl: https://cdn.kde.org/ci-builds/games/kmahjongg/master/windows/kmahjongg-master-1002-windows-cl-msvc2022-x86_64.exe
- InstallerSha256: A0561C5F5627CBA98C756E5BF3C40179B42F9A910DA9EDDCCB7463D13620DD9E
+ InstallerUrl: https://cdn.kde.org/ci-builds/games/kmahjongg/master/windows/kmahjongg-master-1005-windows-cl-msvc2022-x86_64.exe
+ InstallerSha256: 0AFB2AAFD1FB5F06C36A2E7380A51EA55C6A12C735E95FFBF8742D8812A22293
InstallerSwitches:
Custom: /CurrentUser
- Architecture: x64
Scope: machine
- InstallerUrl: https://cdn.kde.org/ci-builds/games/kmahjongg/master/windows/kmahjongg-master-1002-windows-cl-msvc2022-x86_64.exe
- InstallerSha256: A0561C5F5627CBA98C756E5BF3C40179B42F9A910DA9EDDCCB7463D13620DD9E
+ InstallerUrl: https://cdn.kde.org/ci-builds/games/kmahjongg/master/windows/kmahjongg-master-1005-windows-cl-msvc2022-x86_64.exe
+ InstallerSha256: 0AFB2AAFD1FB5F06C36A2E7380A51EA55C6A12C735E95FFBF8742D8812A22293
InstallerSwitches:
Custom: /AllUsers
ManifestType: installer
diff --git a/manifests/k/KDE/Konsole/26.07.70/KDE.Konsole.installer.yaml b/manifests/k/KDE/Konsole/26.07.70/KDE.Konsole.installer.yaml
index fb8a8d9314f2..a5dc076ba305 100644
--- a/manifests/k/KDE/Konsole/26.07.70/KDE.Konsole.installer.yaml
+++ b/manifests/k/KDE/Konsole/26.07.70/KDE.Konsole.installer.yaml
@@ -9,14 +9,14 @@ ProductCode: Konsole
Installers:
- Architecture: x64
Scope: user
- InstallerUrl: https://cdn.kde.org/ci-builds/utilities/konsole/master/windows/konsole-master-4772-windows-cl-msvc2022-x86_64.exe
- InstallerSha256: 0911649A7EC7496848CB6BF4E3E7A1E517735283B331E5806CA116D0AA76B289
+ InstallerUrl: https://cdn.kde.org/ci-builds/utilities/konsole/master/windows/konsole-master-4783-windows-cl-msvc2022-x86_64.exe
+ InstallerSha256: 00F2AD2285651653773BD9065EDF2511C27B517581DEC9D41F302DF204917E89
InstallerSwitches:
Custom: /CurrentUser
- Architecture: x64
Scope: machine
- InstallerUrl: https://cdn.kde.org/ci-builds/utilities/konsole/master/windows/konsole-master-4772-windows-cl-msvc2022-x86_64.exe
- InstallerSha256: 0911649A7EC7496848CB6BF4E3E7A1E517735283B331E5806CA116D0AA76B289
+ InstallerUrl: https://cdn.kde.org/ci-builds/utilities/konsole/master/windows/konsole-master-4783-windows-cl-msvc2022-x86_64.exe
+ InstallerSha256: 00F2AD2285651653773BD9065EDF2511C27B517581DEC9D41F302DF204917E89
InstallerSwitches:
Custom: /AllUsers
ManifestType: installer
diff --git a/manifests/k/KDE/Ruqola/2.7.1/KDE.Ruqola.installer.yaml b/manifests/k/KDE/Ruqola/2.7.1/KDE.Ruqola.installer.yaml
index 2202ee0b56bf..f9a0a22cb807 100644
--- a/manifests/k/KDE/Ruqola/2.7.1/KDE.Ruqola.installer.yaml
+++ b/manifests/k/KDE/Ruqola/2.7.1/KDE.Ruqola.installer.yaml
@@ -9,14 +9,14 @@ ProductCode: Ruqola
Installers:
- Architecture: x64
Scope: user
- InstallerUrl: https://cdn.kde.org/ci-builds/network/ruqola/2.7/windows/ruqola-2.7-12406-windows-cl-msvc2022-x86_64.exe
- InstallerSha256: B2E98A5F7B061DF3FF86DD6F5CEB87AF31BA0F769AF27219DF85E19F11C677AB
+ InstallerUrl: https://cdn.kde.org/ci-builds/network/ruqola/2.7/windows/ruqola-2.7-12485-windows-cl-msvc2022-x86_64.exe
+ InstallerSha256: 143075406CD1C917A93FAAD755D01BF7CADAB04311B6DE0BFE42C92E82C5B0E6
InstallerSwitches:
Custom: /CurrentUser
- Architecture: x64
Scope: machine
- InstallerUrl: https://cdn.kde.org/ci-builds/network/ruqola/2.7/windows/ruqola-2.7-12406-windows-cl-msvc2022-x86_64.exe
- InstallerSha256: B2E98A5F7B061DF3FF86DD6F5CEB87AF31BA0F769AF27219DF85E19F11C677AB
+ InstallerUrl: https://cdn.kde.org/ci-builds/network/ruqola/2.7/windows/ruqola-2.7-12485-windows-cl-msvc2022-x86_64.exe
+ InstallerSha256: 143075406CD1C917A93FAAD755D01BF7CADAB04311B6DE0BFE42C92E82C5B0E6
InstallerSwitches:
Custom: /AllUsers
ManifestType: installer
diff --git a/manifests/k/KaringX/ClashMi/1.0.22+802/KaringX.ClashMi.installer.yaml b/manifests/k/KaringX/ClashMi/1.0.22+802/KaringX.ClashMi.installer.yaml
new file mode 100644
index 000000000000..cddd8f16343c
--- /dev/null
+++ b/manifests/k/KaringX/ClashMi/1.0.22+802/KaringX.ClashMi.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: KaringX.ClashMi
+PackageVersion: 1.0.22+802
+InstallerType: inno
+Scope: machine
+Protocols:
+- clash
+ProductCode: '{74F1C307-2E21-4951-BB25-763C3A2AE9EF}_is1'
+ReleaseDate: 2026-04-30
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/KaringX/clashmi/releases/download/v1.0.22.802/clashmi_1.0.22.802_windows_x64.exe
+ InstallerSha256: 6FAC0B2D347A073E0D04DB46EEAB129628BCE67452CB07FCE22F92D47B356997
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/k/KaringX/ClashMi/1.0.22+802/KaringX.ClashMi.locale.en-US.yaml b/manifests/k/KaringX/ClashMi/1.0.22+802/KaringX.ClashMi.locale.en-US.yaml
new file mode 100644
index 000000000000..37ba531dcfd3
--- /dev/null
+++ b/manifests/k/KaringX/ClashMi/1.0.22+802/KaringX.ClashMi.locale.en-US.yaml
@@ -0,0 +1,40 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: KaringX.ClashMi
+PackageVersion: 1.0.22+802
+PackageLocale: en-US
+Publisher: Supernova Nebula LLC
+PublisherUrl: https://clashmi.app/
+PublisherSupportUrl: https://github.com/KaringX/clashmi/issues
+PackageName: ClashMi
+PackageUrl: https://clashmi.app/download
+License: GPL-3.0
+LicenseUrl: https://github.com/KaringX/clashmi/blob/HEAD/LICENSE
+Copyright: Copyright (C) 2026 clashmi. All rights reserved.
+ShortDescription: A proxy tool with a built-in Clash Mihomo core. Open-source and completely free.
+Description: |-
+ Clash Mi is a proxy tool with a built-in Clash Mihomo core. It is open-source and completely free.
+ Key Features:
+ - Built-in Mihomo Core: Based on the latest and continuously updated Mihomo (Clash Meta) core. Both the core and client are consistently maintained and updated, ensuring reliable usage.
+ - Easy to Use: Supports recommended configurations by MetaCubeX, with the core operating on YAML configurations. Beginners can simply use subscription services to get started.
+ - Clean UI: Features a new interface that is minimalist and avoids over-design.
+Tags:
+- clash
+- clash-meta
+- mihomo
+- network
+- proxy
+- vpn
+ReleaseNotes: |-
+ 1. Linux: Improved connection retention after sudo failure #341
+ 2. iOS: Improved state retrieval storm #408
+ 3. macOS: Fixed application startup issue after automatic updates
+ 4. Android: Fixed a crash #367
+ ios appstore: https://apps.apple.com/us/app/clash-mi/id6744321968
+ReleaseNotesUrl: https://github.com/KaringX/clashmi/releases/tag/v1.0.22.802
+Documentations:
+- DocumentLabel: User Guide
+ DocumentUrl: https://clashmi.app/guide/
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/k/KaringX/ClashMi/1.0.22+802/KaringX.ClashMi.locale.zh-CN.yaml b/manifests/k/KaringX/ClashMi/1.0.22+802/KaringX.ClashMi.locale.zh-CN.yaml
new file mode 100644
index 000000000000..792cc85b6cbc
--- /dev/null
+++ b/manifests/k/KaringX/ClashMi/1.0.22+802/KaringX.ClashMi.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: KaringX.ClashMi
+PackageVersion: 1.0.22+802
+PackageLocale: zh-CN
+ShortDescription: 内置 Clash Mihomo 内核的代理工具。开源、完全免费。
+Description: |-
+ Clash Mi 是内置 Clash Mihomo 内核的代理工具。开源、完全免费。
+ 主要特性:
+ - 内置 Mihomo 内核:基于最新且持续更新的 Mihomo(Clash Meta)内核。内核及客户端均持续更新维护,放心使用。
+ - 操作简单:支持 MetaCubeX 的推荐配置,内核基于 YAML 配置运行。小白用户使用机场订阅即可使用。
+ - 清新 UI:新版界面,简洁不过度设计。
+Tags:
+- clash
+- clash-meta
+- mihomo
+- vpn
+- 代理
+- 网络
+- 虚空终端
+Documentations:
+- DocumentLabel: 用户指南
+ DocumentUrl: https://clashmi.app/guide/
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/k/KaringX/ClashMi/1.0.22+802/KaringX.ClashMi.yaml b/manifests/k/KaringX/ClashMi/1.0.22+802/KaringX.ClashMi.yaml
new file mode 100644
index 000000000000..5d4991996165
--- /dev/null
+++ b/manifests/k/KaringX/ClashMi/1.0.22+802/KaringX.ClashMi.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: KaringX.ClashMi
+PackageVersion: 1.0.22+802
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/k/Kubis1982/FocusTray/0.6.0/Kubis1982.FocusTray.installer.yaml b/manifests/k/Kubis1982/FocusTray/0.6.0/Kubis1982.FocusTray.installer.yaml
new file mode 100644
index 000000000000..82bd68388402
--- /dev/null
+++ b/manifests/k/Kubis1982/FocusTray/0.6.0/Kubis1982.FocusTray.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: Kubis1982.FocusTray
+PackageVersion: 0.6.0
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: FocusTray.exe
+ PortableCommandAlias: focus-tray
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/kubis1982/FocusTray/releases/download/v0.6.0/focustray-win-x64-v0.6.0.zip
+ InstallerSha256: 6E7E5BE404757732FC9531526DF473C1BDEE27095971901D6CBBF58BF385EE0F
+ManifestType: installer
+ManifestVersion: 1.12.0
+ReleaseDate: 2026-05-05
diff --git a/manifests/k/Kubis1982/FocusTray/0.6.0/Kubis1982.FocusTray.locale.en-US.yaml b/manifests/k/Kubis1982/FocusTray/0.6.0/Kubis1982.FocusTray.locale.en-US.yaml
new file mode 100644
index 000000000000..3318c1d435ed
--- /dev/null
+++ b/manifests/k/Kubis1982/FocusTray/0.6.0/Kubis1982.FocusTray.locale.en-US.yaml
@@ -0,0 +1,15 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Kubis1982.FocusTray
+PackageVersion: 0.6.0
+PackageLocale: en-US
+Publisher: Kubis
+PublisherUrl: https://github.com/kubis1982
+PackageName: FocusTray
+PackageUrl: https://github.com/kubis1982/FocusTray
+License: MIT
+ShortDescription: A minimalist Windows system tray application designed to help you maintain deep focus during work sessions by providing visual feedback and non-intrusive notifications.
+ReleaseNotesUrl: https://github.com/kubis1982/FocusTray/releases/tag/v0.6.0
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/k/Kubis1982/FocusTray/0.6.0/Kubis1982.FocusTray.yaml b/manifests/k/Kubis1982/FocusTray/0.6.0/Kubis1982.FocusTray.yaml
new file mode 100644
index 000000000000..9e7860032da7
--- /dev/null
+++ b/manifests/k/Kubis1982/FocusTray/0.6.0/Kubis1982.FocusTray.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: Kubis1982.FocusTray
+PackageVersion: 0.6.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/k/k0sproject/k0sctl/0.30.0/k0sproject.k0sctl.installer.yaml b/manifests/k/k0sproject/k0sctl/0.30.0/k0sproject.k0sctl.installer.yaml
new file mode 100644
index 000000000000..d92e01cbdaca
--- /dev/null
+++ b/manifests/k/k0sproject/k0sctl/0.30.0/k0sproject.k0sctl.installer.yaml
@@ -0,0 +1,18 @@
+# Created with k0sctl "Bump WinGet package" GitHub workflow using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: k0sproject.k0sctl
+PackageVersion: 0.30.0
+InstallerLocale: en-US
+InstallerType: portable
+InstallModes:
+- silent
+Commands:
+- k0sctl
+ReleaseDate: 2026-04-29
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/k0sproject/k0sctl/releases/download/v0.30.0/k0sctl-win-amd64.exe
+ InstallerSha256: 9333C3C65CF43105581484F6B6236D5BF90A1F632F880EBDADABBBD5C00C757F
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/k/k0sproject/k0sctl/0.30.0/k0sproject.k0sctl.locale.en-US.yaml b/manifests/k/k0sproject/k0sctl/0.30.0/k0sproject.k0sctl.locale.en-US.yaml
new file mode 100644
index 000000000000..a8f81bde6389
--- /dev/null
+++ b/manifests/k/k0sproject/k0sctl/0.30.0/k0sproject.k0sctl.locale.en-US.yaml
@@ -0,0 +1,56 @@
+# Created with k0sctl "Bump WinGet package" GitHub workflow using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: k0sproject.k0sctl
+PackageVersion: 0.30.0
+PackageLocale: en-US
+Publisher: k0sproject
+PublisherUrl: https://github.com/k0sproject
+PublisherSupportUrl: https://github.com/k0sproject/k0sctl/issues
+Author: k0sproject authors
+PackageName: k0sctl
+PackageUrl: https://github.com/k0sproject/k0sctl
+License: Apache-2.0
+LicenseUrl: https://github.com/k0sproject/k0sctl/blob/HEAD/LICENSE
+ShortDescription: A bootstrapping and management CLI tool for k0s clusters
+Description: A command-line bootstrapping and management tool for k0s zero friction Kubernetes clusters.
+Moniker: k0sctl
+Tags:
+- cli
+- k0s
+- kubernetes
+- ssh
+ReleaseNotes: |-
+ What's Changed
+ - Lowercase auto-detected hostname by @CmdrSharp in #1063
+ - Fix dynamic node config to use lowercase metadata key instead of Metadata by @kke in #1077
+ - ci: Add support for linux-riscv64 by @luhenry in #1067
+ - Add all the k0sctl packages to the README by @twz123 in #1060
+ - TestLocalBinaryProviderCreatesParentDir fixed for sandboxed environments by @twz123 in #1068
+ - Bump github.com/go-playground/validator/v10 from 10.30.1 to 10.30.2 by @dependabot[bot] in #1058
+ - Bump golang.org/x/text from 0.35.0 to 0.36.0 by @dependabot[bot] in #1065
+ - Bump dependabot/fetch-metadata from 2 to 3 by @dependabot[bot] in #1066
+ - Bump softprops/action-gh-release from 2 to 3 by @dependabot[bot] in #1069
+ - Bump github.com/mattn/go-isatty from 0.0.20 to 0.0.21 by @dependabot[bot] in #1064
+ - Bump k8s.io/apimachinery from 0.35.3 to 0.35.4 by @dependabot[bot] in #1070
+ - Bump k8s.io/client-go from 0.35.3 to 0.35.4 by @dependabot[bot] in #1071
+ - Bump github.com/k0sproject/rig from 0.21.2 to 0.21.4 by @dependabot[bot] in #1072
+ - Bump k8s.io/apimachinery from 0.35.4 to 0.36.0 by @dependabot[bot] in #1073
+ - Bump k8s.io/client-go from 0.35.4 to 0.36.0 by @dependabot[bot] in #1074
+ - Bump github.com/Azure/go-ntlmssp from 0.1.0 to 0.1.1 by @dependabot[bot] in #1075
+ - Bump github.com/mattn/go-isatty from 0.0.21 to 0.0.22 by @dependabot[bot] in #1076
+ New Contributors
+ - @CmdrSharp made their first contribution in #1063
+ - @luhenry made their first contribution in #1067
+ Full Changelog: v0.29.0...v0.30.0
+ SHA256 Checksums
+ 9a5f7fcf32c2e430ccd26db1d2764074339098f12cb4134cda67c9bdea874512 *k0sctl-linux-amd64
+ 02f612f255f215d3c0a447c47db75a5c5b2794eb7627865b274941404de5d6e9 *k0sctl-linux-arm64
+ e1d3aedcd89c28a33108fdb0aae0dd135d5aeb6f9ccfac508ddd67e811b61768 *k0sctl-linux-arm
+ de44e8f058345b4c0085dadfabd6b4b33910a8989d022108fdaff88c0928e11f *k0sctl-linux-riscv64
+ 9333c3c65cf43105581484f6b6236d5bf90a1f632f880ebdadabbbd5c00c757f *k0sctl-win-amd64.exe
+ 3f902bd9a0a00bf93b1d98a490dcb5fbd67209c1901b57712ba6440ae3c8c627 *k0sctl-darwin-amd64
+ e4b19ba76754d1c785fda885f57775a1bdcd9c7ba568446e00a345621c87978b *k0sctl-darwin-arm64
+ReleaseNotesUrl: https://github.com/k0sproject/k0sctl/releases/tag/v0.30.0
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/k/k0sproject/k0sctl/0.30.0/k0sproject.k0sctl.yaml b/manifests/k/k0sproject/k0sctl/0.30.0/k0sproject.k0sctl.yaml
new file mode 100644
index 000000000000..1588753edafc
--- /dev/null
+++ b/manifests/k/k0sproject/k0sctl/0.30.0/k0sproject.k0sctl.yaml
@@ -0,0 +1,8 @@
+# Created with k0sctl "Bump WinGet package" GitHub workflow using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: k0sproject.k0sctl
+PackageVersion: 0.30.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/l/Li/DumpDVD/1.2.0.0/Li.DumpDVD.installer.yaml b/manifests/l/Li/DumpDVD/1.2.0.0/Li.DumpDVD.installer.yaml
new file mode 100644
index 000000000000..5bedc8086d5c
--- /dev/null
+++ b/manifests/l/Li/DumpDVD/1.2.0.0/Li.DumpDVD.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: Li.DumpDVD
+PackageVersion: 1.2.0.0
+InstallerType: portable
+Installers:
+- Architecture: x86
+ InstallerUrl: https://git.silica.codes/Li/DumpDVD/releases/download/v1.2/DumpDVD.exe
+ InstallerSha256: 718809F7544E0064081EF31A10A8D84FB9DB31DAA593A7AE287E90CA29B6D89F
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/l/Li/DumpDVD/1.2.0.0/Li.DumpDVD.locale.en-US.yaml b/manifests/l/Li/DumpDVD/1.2.0.0/Li.DumpDVD.locale.en-US.yaml
new file mode 100644
index 000000000000..206bbd702b38
--- /dev/null
+++ b/manifests/l/Li/DumpDVD/1.2.0.0/Li.DumpDVD.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: Li.DumpDVD
+PackageVersion: 1.2.0.0
+PackageLocale: en-US
+Publisher: Li
+PackageName: DumpDVD
+License: Opinionated Queer License
+Copyright: GPLv2 - 2024
+ShortDescription: DVD Decrypt Utility
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/l/Li/DumpDVD/1.2.0.0/Li.DumpDVD.yaml b/manifests/l/Li/DumpDVD/1.2.0.0/Li.DumpDVD.yaml
new file mode 100644
index 000000000000..ce786fc858bd
--- /dev/null
+++ b/manifests/l/Li/DumpDVD/1.2.0.0/Li.DumpDVD.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: Li.DumpDVD
+PackageVersion: 1.2.0.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/l/LuisPater/CLIProxyAPI/6.10.6/LuisPater.CLIProxyAPI.installer.yaml b/manifests/l/LuisPater/CLIProxyAPI/6.10.6/LuisPater.CLIProxyAPI.installer.yaml
new file mode 100644
index 000000000000..e31261c869c5
--- /dev/null
+++ b/manifests/l/LuisPater/CLIProxyAPI/6.10.6/LuisPater.CLIProxyAPI.installer.yaml
@@ -0,0 +1,18 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: LuisPater.CLIProxyAPI
+PackageVersion: 6.10.6
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: cli-proxy-api.exe
+Commands:
+- cli-proxy-api
+ReleaseDate: 2026-05-04
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/router-for-me/CLIProxyAPI/releases/download/v6.10.6/CLIProxyAPI_6.10.6_windows_amd64.zip
+ InstallerSha256: 4AEF12E37147B10A1C90337BCC5A83E10146C547E10E7139A9316ED6816B43C2
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/l/LuisPater/CLIProxyAPI/6.10.6/LuisPater.CLIProxyAPI.locale.en-US.yaml b/manifests/l/LuisPater/CLIProxyAPI/6.10.6/LuisPater.CLIProxyAPI.locale.en-US.yaml
new file mode 100644
index 000000000000..0765c87014fa
--- /dev/null
+++ b/manifests/l/LuisPater/CLIProxyAPI/6.10.6/LuisPater.CLIProxyAPI.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: LuisPater.CLIProxyAPI
+PackageVersion: 6.10.6
+PackageLocale: en-US
+Publisher: Luis Pater
+PublisherUrl: https://github.com/router-for-me
+PublisherSupportUrl: https://github.com/router-for-me/CLIProxyAPI/issues
+Author: Luis Pater
+PackageName: CLI Proxy API
+PackageUrl: https://github.com/router-for-me/CLIProxyAPI
+License: MIT
+LicenseUrl: https://github.com/router-for-me/CLIProxyAPI/blob/HEAD/LICENSE
+Copyright: Copyright (c) 2026 Luis Pater
+ShortDescription: Wrap Gemini CLI, ChatGPT Codex as an OpenAI/Gemini/Claude compatible API service, allowing you to enjoy the free Gemini 2.5 Pro, GPT 5 model through API
+Description: |-
+ A proxy server that provides OpenAI/Gemini/Claude compatible API interfaces for CLI.
+ It now also supports OpenAI Codex (GPT models) and Claude Code via OAuth.
+ so you can use local or multi‑account CLI access with OpenAI‑compatible clients and SDKs.
+ Now, We added the first Chinese provider: Qwen Code.
+Tags:
+- ai
+- chatbot
+- chatgpt
+- claude
+- claude-code
+- codex
+- gemini
+- large-language-model
+- llm
+- openai
+ReleaseNotes: |-
+ Changelog
+ - bdc424007ea5916a76bf2be0b6facf197c4e579f Merge pull request #2896 from edlsh/fix/oauth-tool-rename-per-request-map
+ - 95318ad46dce78e19a74e06872b4901b83985bc9 fix(amp): preserve lowercase glob tool name
+ - fc1ddf365f489ca465e5fd85334d01303e635f11 fix(claude): centralize oauth tool-name transform flow
+ - e707cf7d462f0895f3eb3901aec8f337e68a980e fix(claude): only reverse-remap OAuth tool names that were forward-renamed
+ - 80eb03709a569a7620b6bba4f1e4f30f8170d3bd fix(openai): preserve multiline repaired SSE data
+ - d36e70e9dcfd5e4a79f2165a582e76e385423895 fix(openai): preserve unindexed response output items
+ - fd45dece7f027ef198f00cad8c6455a333a36ca4 fix(openai): repair empty responses stream output
+ - 03ea4e569fb1df9237d7032469a744737cd30d72 perf(claude): pre-allocate reverseMap capacity
+ReleaseNotesUrl: https://github.com/router-for-me/CLIProxyAPI/releases/tag/v6.10.6
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/l/LuisPater/CLIProxyAPI/6.10.6/LuisPater.CLIProxyAPI.locale.zh-CN.yaml b/manifests/l/LuisPater/CLIProxyAPI/6.10.6/LuisPater.CLIProxyAPI.locale.zh-CN.yaml
new file mode 100644
index 000000000000..65c2f87f1174
--- /dev/null
+++ b/manifests/l/LuisPater/CLIProxyAPI/6.10.6/LuisPater.CLIProxyAPI.locale.zh-CN.yaml
@@ -0,0 +1,24 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: LuisPater.CLIProxyAPI
+PackageVersion: 6.10.6
+PackageLocale: zh-CN
+ShortDescription: 封装 Gemini CLI 和 ChatGPT Codex 为兼容 OpenAI/Gemini/Claude 的 API 服务,让您通过 API 畅享免费的 Gemini 2.5 Pro 和 GPT 5 模型
+Description: |-
+ 一个为 CLI 提供 OpenAI/Gemini/Claude 兼容 API 接口的代理服务器。
+ 现已支持通过 OAuth 登录接入 OpenAI Codex(GPT 系列)和 Claude Code。
+ 可与本地或多账户方式配合,使用任何 OpenAI 兼容的客户端与 SDK。
+ 现在,我们添加了第一个中国提供商:Qwen Code。
+Tags:
+- chatgpt
+- claude
+- claude-code
+- codex
+- gemini
+- openai
+- 人工智能
+- 大语言模型
+- 聊天机器人
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/l/LuisPater/CLIProxyAPI/6.10.6/LuisPater.CLIProxyAPI.yaml b/manifests/l/LuisPater/CLIProxyAPI/6.10.6/LuisPater.CLIProxyAPI.yaml
new file mode 100644
index 000000000000..30fb096f3f8f
--- /dev/null
+++ b/manifests/l/LuisPater/CLIProxyAPI/6.10.6/LuisPater.CLIProxyAPI.yaml
@@ -0,0 +1,8 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: LuisPater.CLIProxyAPI
+PackageVersion: 6.10.6
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/m/Medvedeff/ZapretGUI/2.0/Medvedeff.ZapretGUI.installer.yaml b/manifests/m/Medvedeff/ZapretGUI/2.0/Medvedeff.ZapretGUI.installer.yaml
new file mode 100644
index 000000000000..85b321855b89
--- /dev/null
+++ b/manifests/m/Medvedeff/ZapretGUI/2.0/Medvedeff.ZapretGUI.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: Medvedeff.ZapretGUI
+PackageVersion: "2.0"
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: ZapretGUI.exe
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/medvedeff-true/Zapret-GUI/releases/latest/download/ZapretGUI.zip
+ InstallerSha256: ECFE807199A9C27F7C414F301ABD7442C36C4A980D3C5CA401CE408455E3A6AB
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/m/Medvedeff/ZapretGUI/2.0/Medvedeff.ZapretGUI.locale.en-US.yaml b/manifests/m/Medvedeff/ZapretGUI/2.0/Medvedeff.ZapretGUI.locale.en-US.yaml
new file mode 100644
index 000000000000..ef43a22b3b46
--- /dev/null
+++ b/manifests/m/Medvedeff/ZapretGUI/2.0/Medvedeff.ZapretGUI.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: Medvedeff.ZapretGUI
+PackageVersion: "2.0"
+PackageLocale: en-US
+Publisher: Medvedeff
+PackageName: Zapret GUI
+License: No license
+ShortDescription: zapret GUI for bypassing internet censorship
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/m/Medvedeff/ZapretGUI/2.0/Medvedeff.ZapretGUI.yaml b/manifests/m/Medvedeff/ZapretGUI/2.0/Medvedeff.ZapretGUI.yaml
new file mode 100644
index 000000000000..0184f13b12e1
--- /dev/null
+++ b/manifests/m/Medvedeff/ZapretGUI/2.0/Medvedeff.ZapretGUI.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: Medvedeff.ZapretGUI
+PackageVersion: "2.0"
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.120.0/Microsoft.VisualStudioCode.Insiders.CLI.installer.yaml b/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.120.0/Microsoft.VisualStudioCode.Insiders.CLI.installer.yaml
new file mode 100644
index 000000000000..9bdc26569d39
--- /dev/null
+++ b/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.120.0/Microsoft.VisualStudioCode.Insiders.CLI.installer.yaml
@@ -0,0 +1,19 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Microsoft.VisualStudioCode.Insiders.CLI
+PackageVersion: 1.120.0
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: ./code-insiders.exe
+ PortableCommandAlias: code-insiders
+Installers:
+- Architecture: arm64
+ InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/79d6cea3bc9cb9b9e60039d303c2700b8042fb52/vscode_cli_win32_arm64_cli.zip
+ InstallerSha256: 0125A2CC42FDD01A181C5F40365B0B8DDED4F91951D2D5CB14B79DCBFD0D0702
+- Architecture: x64
+ InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/79d6cea3bc9cb9b9e60039d303c2700b8042fb52/vscode_cli_win32_x64_cli.zip
+ InstallerSha256: AEA4116E9AFA31E9B980AE72F01D1BCE68ED373AC8FB40516AF5463F6E82A3A4
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.120.0/Microsoft.VisualStudioCode.Insiders.CLI.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.120.0/Microsoft.VisualStudioCode.Insiders.CLI.locale.en-US.yaml
new file mode 100644
index 000000000000..6f203c4bd0db
--- /dev/null
+++ b/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.120.0/Microsoft.VisualStudioCode.Insiders.CLI.locale.en-US.yaml
@@ -0,0 +1,20 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Microsoft.VisualStudioCode.Insiders.CLI
+PackageVersion: 1.120.0
+PackageLocale: en-US
+Publisher: Microsoft Corporation
+PublisherUrl: https://www.microsoft.com/
+PrivacyUrl: https://privacy.microsoft.com/
+PackageName: Microsoft Visual Studio Code Insiders CLI
+PackageUrl: https://code.visualstudio.com
+License: Microsoft Pre-Release Software License
+LicenseUrl: https://code.visualstudio.com/license/insiders
+ShortDescription: Microsoft Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Microsoft Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.
+Moniker: vscode-insiders-cli
+Tags:
+- developer-tools
+- editor
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.120.0/Microsoft.VisualStudioCode.Insiders.CLI.yaml b/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.120.0/Microsoft.VisualStudioCode.Insiders.CLI.yaml
new file mode 100644
index 000000000000..2bcc6fc93625
--- /dev/null
+++ b/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.120.0/Microsoft.VisualStudioCode.Insiders.CLI.yaml
@@ -0,0 +1,8 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: Microsoft.VisualStudioCode.Insiders.CLI
+PackageVersion: 1.120.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/m/MistralAI/MistralVibe/ACP/2.9.4/MistralAI.MistralVibe.ACP.installer.yaml b/manifests/m/MistralAI/MistralVibe/ACP/2.9.4/MistralAI.MistralVibe.ACP.installer.yaml
new file mode 100644
index 000000000000..f47271c4959b
--- /dev/null
+++ b/manifests/m/MistralAI/MistralVibe/ACP/2.9.4/MistralAI.MistralVibe.ACP.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: MistralAI.MistralVibe.ACP
+PackageVersion: 2.9.4
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: vibe-acp.exe
+Commands:
+- vibe-acp
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/mistralai/mistral-vibe/releases/download/v2.9.4/vibe-acp-windows-x86_64-2.9.4.zip
+ InstallerSha256: 0DFD9785823BD32E694A18A92A67F59FF047AF22A4B79D0671B376454AB41300
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/m/MistralAI/MistralVibe/ACP/2.9.4/MistralAI.MistralVibe.ACP.locale.en-US.yaml b/manifests/m/MistralAI/MistralVibe/ACP/2.9.4/MistralAI.MistralVibe.ACP.locale.en-US.yaml
new file mode 100644
index 000000000000..73b7bf580a43
--- /dev/null
+++ b/manifests/m/MistralAI/MistralVibe/ACP/2.9.4/MistralAI.MistralVibe.ACP.locale.en-US.yaml
@@ -0,0 +1,49 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: MistralAI.MistralVibe.ACP
+PackageVersion: 2.9.4
+PackageLocale: en-US
+Publisher: Mistral AI
+PublisherUrl: https://mistral.ai/
+PublisherSupportUrl: https://github.com/mistralai/mistral-vibe/issues
+PrivacyUrl: https://legal.mistral.ai/terms/privacy-policy
+Author: Mistral AI
+PackageName: Mistral Vibe (ACP mode)
+PackageUrl: https://github.com/mistralai/mistral-vibe
+License: Apache-2.0
+LicenseUrl: https://github.com/mistralai/mistral-vibe/blob/HEAD/LICENSE
+Copyright: Copyright 2026 Mistral AI
+CopyrightUrl: https://legal.mistral.ai/terms
+ShortDescription: Minimal CLI coding agent by Mistral
+Description: |-
+ Mistral's open-source CLI coding assistant.
+ Mistral Vibe is a command-line coding assistant powered by Mistral's models. It provides a conversational interface to your codebase, allowing you to use natural language to explore, modify, and interact with your projects through a powerful set of tools.
+Tags:
+- agent
+- agentic
+- ai
+- code
+- coding
+- develop
+- development
+- programming
+ReleaseNotes: |-
+ Added
+ - /rename command to rename the current session
+ - feat: vibe.at_mention_inserted telemetry event
+ - "Always allow" tool permissions persist across sessions
+ - Eager agent-loop warmup so vibe.ready telemetry fires sooner
+ Changed
+ - bash (!command) bang commands run via async subprocess for better latency
+ - Bumped mistral SDK to 2.4.4
+ - Bumped cryptography to address upstream CVEs
+ Fixed
+ - Preserve non_retryable flag on exceptions raised through _chat / _chat_streaming, so callers driving the agent loop from a Temporal activity can signal "do not retry"
+ - /clear no longer chains parent_session_id to the previous session
+ - vibe.new_session telemetry no longer fires when resuming a session
+ Removed
+ - Windows ARM build artifacts (no longer published; required to bump cryptography)
+ReleaseNotesUrl: https://github.com/mistralai/mistral-vibe/blob/HEAD/CHANGELOG.md#294---2026-05-05
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/m/MistralAI/MistralVibe/ACP/2.9.4/MistralAI.MistralVibe.ACP.locale.zh-CN.yaml b/manifests/m/MistralAI/MistralVibe/ACP/2.9.4/MistralAI.MistralVibe.ACP.locale.zh-CN.yaml
new file mode 100644
index 000000000000..88bf6ee9cf63
--- /dev/null
+++ b/manifests/m/MistralAI/MistralVibe/ACP/2.9.4/MistralAI.MistralVibe.ACP.locale.zh-CN.yaml
@@ -0,0 +1,20 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: MistralAI.MistralVibe.ACP
+PackageVersion: 2.9.4
+PackageLocale: zh-CN
+ShortDescription: Mistral 推出的极简 CLI 代码智能体
+Description: |-
+ Mistral 的开源 CLI 编程助手。
+ Mistral Vibe 是由 Mistral 模型驱动的命令行编程助手。它为您的代码库提供了一个对话式界面,让您可以通过自然语言,利用一系列强大的工具来浏览、修改和与项目进行交互。
+Tags:
+- ai
+- 代码
+- 开发
+- 智能体
+- 编程
+- 自主智能
+ReleaseNotesUrl: https://github.com/mistralai/mistral-vibe/blob/HEAD/CHANGELOG.md
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/m/MistralAI/MistralVibe/ACP/2.9.4/MistralAI.MistralVibe.ACP.yaml b/manifests/m/MistralAI/MistralVibe/ACP/2.9.4/MistralAI.MistralVibe.ACP.yaml
new file mode 100644
index 000000000000..8e5f7aaa5224
--- /dev/null
+++ b/manifests/m/MistralAI/MistralVibe/ACP/2.9.4/MistralAI.MistralVibe.ACP.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: MistralAI.MistralVibe.ACP
+PackageVersion: 2.9.4
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/m/Mozilla/Firefox/DeveloperEdition/an/151.0/Mozilla.Firefox.DeveloperEdition.an.installer.yaml b/manifests/m/Mozilla/Firefox/DeveloperEdition/an/151.0/Mozilla.Firefox.DeveloperEdition.an.installer.yaml
index 73fe11ebdde5..886f15e96591 100644
--- a/manifests/m/Mozilla/Firefox/DeveloperEdition/an/151.0/Mozilla.Firefox.DeveloperEdition.an.installer.yaml
+++ b/manifests/m/Mozilla/Firefox/DeveloperEdition/an/151.0/Mozilla.Firefox.DeveloperEdition.an.installer.yaml
@@ -25,16 +25,16 @@ FileExtensions:
- xht
- xhtml
ProductCode: Firefox Developer Edition
-ReleaseDate: 2026-05-01
+ReleaseDate: 2026-05-04
Installers:
- Architecture: x86
- InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b5/win32/an/Firefox%20Setup%20151.0b5.exe
- InstallerSha256: 00C1EAADC906CF79F68FB2F2F4A05CA59664B83E7539E5C0DAAEC0B150A05CB2
+ InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b6/win32/an/Firefox%20Setup%20151.0b6.exe
+ InstallerSha256: 2DEAE7AF7001956A7379B280F3E9F26B7F54985B7CE0BFCB15901EC3E5975A57
- Architecture: x64
- InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b5/win64/an/Firefox%20Setup%20151.0b5.exe
- InstallerSha256: 0E9A93A3454D8765644CE3D82F0660CB4D3C7C3E6574C9D8A46BDF7F76DCA106
+ InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b6/win64/an/Firefox%20Setup%20151.0b6.exe
+ InstallerSha256: 01E58BE51F2217948FBF042FEA2F94BF5DB9D37853FDED8EC336A916E46F298F
- Architecture: arm64
- InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b5/win64-aarch64/an/Firefox%20Setup%20151.0b5.exe
- InstallerSha256: 58E55BC16AAA8EBF045E6EC21FA13C3EE75D7665C4872B73FFA7BEF79C4130F6
+ InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b6/win64-aarch64/an/Firefox%20Setup%20151.0b6.exe
+ InstallerSha256: 02CAA6C6A5B06E44609CDFFD4A8EE1EF1855DF021E853109982DB38D73654A8C
ManifestType: installer
ManifestVersion: 1.12.0
diff --git a/manifests/m/Mozilla/Firefox/DeveloperEdition/tr/151.0/Mozilla.Firefox.DeveloperEdition.tr.installer.yaml b/manifests/m/Mozilla/Firefox/DeveloperEdition/tr/151.0/Mozilla.Firefox.DeveloperEdition.tr.installer.yaml
index b0aba3c663d9..094a76a36a43 100644
--- a/manifests/m/Mozilla/Firefox/DeveloperEdition/tr/151.0/Mozilla.Firefox.DeveloperEdition.tr.installer.yaml
+++ b/manifests/m/Mozilla/Firefox/DeveloperEdition/tr/151.0/Mozilla.Firefox.DeveloperEdition.tr.installer.yaml
@@ -25,16 +25,16 @@ FileExtensions:
- xht
- xhtml
ProductCode: Firefox Developer Edition
-ReleaseDate: 2026-05-01
+ReleaseDate: 2026-05-04
Installers:
- Architecture: x86
- InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b5/win32/tr/Firefox%20Setup%20151.0b5.exe
- InstallerSha256: B026F412A312E649AAC1C2CE4B75065FE93E90EFC3E17C1874E0F97ECC959986
+ InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b6/win32/tr/Firefox%20Setup%20151.0b6.exe
+ InstallerSha256: E046FC3FF77ED9B2C4303887A9FB6C5C55872EBCE4FEF5953616B04122ABF6EE
- Architecture: x64
- InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b5/win64/tr/Firefox%20Setup%20151.0b5.exe
- InstallerSha256: F346970DFCB29D8A43D6F53DC13275325C8945ECE663469CE7E2E610127C1A7D
+ InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b6/win64/tr/Firefox%20Setup%20151.0b6.exe
+ InstallerSha256: C4D67BF9186348B4DF96F25C122F527AA1B061488D78D3B3E41E28D9F8FF877A
- Architecture: arm64
- InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b5/win64-aarch64/tr/Firefox%20Setup%20151.0b5.exe
- InstallerSha256: F909F22258BD053322A226763B6250E39DBEE5EFDE1E8A9715FB431A1B0DD2B7
+ InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b6/win64-aarch64/tr/Firefox%20Setup%20151.0b6.exe
+ InstallerSha256: 3E5DDFDA39708D3B5CEB376B2ACA5C22FC093EF03F846AD4894E5D282B1B4F18
ManifestType: installer
ManifestVersion: 1.12.0
diff --git a/manifests/m/Mozilla/Firefox/DeveloperEdition/ur/151.0/Mozilla.Firefox.DeveloperEdition.ur.installer.yaml b/manifests/m/Mozilla/Firefox/DeveloperEdition/ur/151.0/Mozilla.Firefox.DeveloperEdition.ur.installer.yaml
index a7afa70b3cb2..67fae7fcdf55 100644
--- a/manifests/m/Mozilla/Firefox/DeveloperEdition/ur/151.0/Mozilla.Firefox.DeveloperEdition.ur.installer.yaml
+++ b/manifests/m/Mozilla/Firefox/DeveloperEdition/ur/151.0/Mozilla.Firefox.DeveloperEdition.ur.installer.yaml
@@ -25,16 +25,16 @@ FileExtensions:
- xht
- xhtml
ProductCode: Firefox Developer Edition
-ReleaseDate: 2026-05-01
+ReleaseDate: 2026-05-04
Installers:
- Architecture: x86
- InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b5/win32/ur/Firefox%20Setup%20151.0b5.exe
- InstallerSha256: EEE133A2E392977D72B6C4D67B108682898BA3F331CB74AF7F42A96EE1B7C80F
+ InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b6/win32/ur/Firefox%20Setup%20151.0b6.exe
+ InstallerSha256: C961A810709572E1C49F69DBCC218396BA145945EC88D1542B519142A63441C2
- Architecture: x64
- InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b5/win64/ur/Firefox%20Setup%20151.0b5.exe
- InstallerSha256: 37DF2C62E887E59CF2B358F8FCECF1A421415F0A1AB5167A521FE34F429BF39A
+ InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b6/win64/ur/Firefox%20Setup%20151.0b6.exe
+ InstallerSha256: 0B5A973F01B7388FF29388F46FAF513ECD7FE4AB9A2E9C43A92F0C1BCB7B49D7
- Architecture: arm64
- InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b5/win64-aarch64/ur/Firefox%20Setup%20151.0b5.exe
- InstallerSha256: 70D06DE7BECFC3200E719D8557F2494CF690F6137BE505504176962C93A5866D
+ InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b6/win64-aarch64/ur/Firefox%20Setup%20151.0b6.exe
+ InstallerSha256: 78B3FD57EDCF68D4AE0F06212E2EC28E206685B8E4E40D8D981161BB5164E3EB
ManifestType: installer
ManifestVersion: 1.12.0
diff --git a/manifests/m/martinrotter/RSSGuard5/5.1.1/martinrotter.RSSGuard5.installer.yaml b/manifests/m/martinrotter/RSSGuard5/5.1.1/martinrotter.RSSGuard5.installer.yaml
new file mode 100644
index 000000000000..9590643a732a
--- /dev/null
+++ b/manifests/m/martinrotter/RSSGuard5/5.1.1/martinrotter.RSSGuard5.installer.yaml
@@ -0,0 +1,24 @@
+# Created with komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: martinrotter.RSSGuard5
+PackageVersion: 5.1.1
+InstallerLocale: en-US
+InstallerType: nullsoft
+InstallModes:
+- silent
+- silentWithProgress
+UpgradeBehavior: install
+ProductCode: RSS Guard 5
+ReleaseDate: 2026-05-05
+AppsAndFeaturesEntries:
+- DisplayName: RSS Guard
+ ProductCode: RSS Guard 5
+InstallationMetadata:
+ DefaultInstallLocation: C:\RSS Guard 5
+Installers:
+- Architecture: x86
+ InstallerUrl: https://github.com/martinrotter/rssguard/releases/download/5.1.1/rssguard-5.1.1-web-qt6-win10.exe
+ InstallerSha256: 837E8F56A9134952D50ECABB1FDEB15048A661126B470D6FBACE89D06E571F49
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/m/martinrotter/RSSGuard5/5.1.1/martinrotter.RSSGuard5.locale.en-US.yaml b/manifests/m/martinrotter/RSSGuard5/5.1.1/martinrotter.RSSGuard5.locale.en-US.yaml
new file mode 100644
index 000000000000..30b80d7f22d7
--- /dev/null
+++ b/manifests/m/martinrotter/RSSGuard5/5.1.1/martinrotter.RSSGuard5.locale.en-US.yaml
@@ -0,0 +1,50 @@
+# Created with komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: martinrotter.RSSGuard5
+PackageVersion: 5.1.1
+PackageLocale: en-US
+Publisher: martinrotter
+PublisherUrl: https://github.com/martinrotter
+PublisherSupportUrl: https://github.com/martinrotter/rssguard/issues
+Author: Martin Rotter
+PackageName: RSS Guard 5
+PackageUrl: https://github.com/martinrotter/rssguard
+License: GPL-3.0
+LicenseUrl: https://github.com/martinrotter/rssguard/blob/HEAD/LICENSE.md
+ShortDescription: Feed reader (podcast player and also Gemini protocol client) which supports RSS/ATOM/JSON and many web-based feed services.
+Moniker: rssguard5
+Tags:
+- aggregator
+- atom
+- bazqux
+- c-plus-plus
+- feedly
+- freshrss
+- gmail
+- inoreader
+- nextcloud
+- qt
+- rdf
+- rss
+- rss-guard
+- rss-reader
+- theoldreader
+- tiny-tiny-rss
+ReleaseNotes: |-
+ If your RSS Guard crashes on Windows upon article selection, then you might have some DirectX libraries missing. Install them with this command.
+ dism /Online /Add-Capability /CapabilityName:Tools.Graphics.DirectX~~~~0.0.1.0
+ Added:
+ - Option to keep feed list selection in the middle, switchable in settings. (#2238)
+ - Nextcloud News plugin can now add feeds. (#2065)
+ - Official Linux builds now include Qt 5 text-viewer and WebEngine-viewer variants again. (211a747, 3795eb7, 8e678c2, 55e4dbd)
+ - Updated Japanese, Chinese Simplified and Crowdin-managed translations. (#2235, e6e3e17, 1f2d25a)
+ - Feed state propagation in feed list is now switchable. (#2226)
+ Fixed:
+ - RSS Guard no longer asks Windows to connect to an offline printer while starting, so the application should open normally even when the default printer is unavailable. (#2230)
+ - RSS Guard now starts correctly from the Windows startup entry instead of closing almost immediately. (#2234)
+ - Gemini links now use the correct scheme handler. (d5a02a7)
+ - Removed noisy QPalette color-group warnings triggered while loading skins. (d5a02a7)
+ReleaseNotesUrl: https://github.com/martinrotter/rssguard/releases/tag/5.1.1
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/m/martinrotter/RSSGuard5/5.1.1/martinrotter.RSSGuard5.yaml b/manifests/m/martinrotter/RSSGuard5/5.1.1/martinrotter.RSSGuard5.yaml
new file mode 100644
index 000000000000..feb49887f0ff
--- /dev/null
+++ b/manifests/m/martinrotter/RSSGuard5/5.1.1/martinrotter.RSSGuard5.yaml
@@ -0,0 +1,8 @@
+# Created with komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: martinrotter.RSSGuard5
+PackageVersion: 5.1.1
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/m/max-sixty/worktrunk/v0.48.0/max-sixty.worktrunk.installer.yaml b/manifests/m/max-sixty/worktrunk/v0.48.0/max-sixty.worktrunk.installer.yaml
new file mode 100644
index 000000000000..9c897bbbd402
--- /dev/null
+++ b/manifests/m/max-sixty/worktrunk/v0.48.0/max-sixty.worktrunk.installer.yaml
@@ -0,0 +1,19 @@
+# Created with WinGet Releaser using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: max-sixty.worktrunk
+PackageVersion: v0.48.0
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: git-wt.exe
+ PortableCommandAlias: git-wt
+- RelativeFilePath: wt.exe
+ PortableCommandAlias: wt
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/max-sixty/worktrunk/releases/download/v0.48.0/worktrunk-x86_64-pc-windows-msvc.zip
+ InstallerSha256: 54B4741C8C8159D8ECDA25B4A22ADEA930DFA7EC50C7CA0A30ADB74B80220D5E
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/m/max-sixty/worktrunk/v0.48.0/max-sixty.worktrunk.locale.en-US.yaml b/manifests/m/max-sixty/worktrunk/v0.48.0/max-sixty.worktrunk.locale.en-US.yaml
new file mode 100644
index 000000000000..3ebf9062eb7f
--- /dev/null
+++ b/manifests/m/max-sixty/worktrunk/v0.48.0/max-sixty.worktrunk.locale.en-US.yaml
@@ -0,0 +1,78 @@
+# Created with WinGet Releaser using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: max-sixty.worktrunk
+PackageVersion: v0.48.0
+PackageLocale: en-US
+Publisher: max-sixty
+PublisherUrl: https://github.com/max-sixty
+PublisherSupportUrl: https://github.com/max-sixty/worktrunk/issues
+PackageName: worktrunk
+PackageUrl: https://github.com/max-sixty/worktrunk
+License: MIT OR Apache-2.0
+LicenseUrl: https://github.com/max-sixty/worktrunk/blob/HEAD/LICENSE
+ShortDescription: A Git worktree manager for trunk-based development
+Description: |-
+ worktrunk (wt) is a Git worktree manager designed for trunk-based development workflows.
+ It simplifies creating, switching between, and managing Git worktrees, making it easy to
+ work on multiple features or branches simultaneously without the overhead of stashing
+ or switching branches in a single working directory.
+Tags:
+- cli
+- git
+- git-worktree
+- rust
+- terminal
+- worktree
+ReleaseNotes: |-
+ Release Notes
+ Improved
+ - --format=json extends to seven more commands: wt step rebase, wt step push, wt step commit, wt step squash, wt step relocate, wt step copy-ignored, and wt hook show now accept --format=json. Shapes follow the existing pattern (additive on stdout; human prose stays on stderr) and use stable snake_case outcome discriminators where the result has multiple variants. (#2560)
+ - wt step commit and wt step squash gain --dry-run: Renders the prompt, prints the shell invocation that would call the LLM, calls the LLM and prints the generated message in three labeled sections (PROMPT, COMMAND, MESSAGE), then exits without staging, running hooks, or committing. For commit, --stage is honored against a temporary index — the previewed prompt matches what a real run would send the LLM, but the user's real index is never touched. --show-prompt is now hidden from --help but kept working for piping the rendered prompt to another LLM. (#2557)
+ - New dirname and basename template filters: Two new filters expose Path::parent and Path::file_name, enabling path traversal that previous filters couldn't express. They unblock the bare-repo-in-hidden-directory layout (myproject/.git), where {{ repo }} resolves to .git: users can write {{ repo_path | dirname | basename }} to recover myproject. (#2592, #2605, thanks @seakayone for reporting #1279 and @Xilis for raising the parent_dir question)
+ - New [remove] delete-branch config option: Setting delete-branch = false defaults wt remove to keeping branches, equivalent to passing --no-delete-branch every time. CLI flags still override the config either direction. (#2589, thanks @jameslairdsmith for #2587)
+ - wt-perf timeline subcommand for trace capture: One command runs wt, captures stderr, parses [wt-trace] records, and prints a column-aligned text timeline (sorted by start time, with subprocess totals and externally-measured wall) or emits Chrome Trace Format JSON for Perfetto. Replaces the previous RUST_LOG=debug wt … 2>&1 | wt-perf trace > trace.json dance. (#2558)
+ - wt list skips redundant merge-tree probes on dirty worktrees: For dirty worktrees with no unmerged entries, the dirty-tree probe is authoritative and the HEAD-only probe is skipped — one merge-tree subprocess per dirty row instead of two. The dirty probe also reflects the current working state, so when uncommitted changes resolve a HEAD conflict, wt list no longer reports it as conflicting. (#2602)
+ - Faster alias dispatch: Two changes compound to cut warm alias-dispatch latency by ~25 ms — Repository::prewarm overlaps the three independent pre-dispatch reads (rev-parse, git config, user-config TOML) on scoped threads instead of running them in series, and build_hook_context only executes the four shell-out blocks (default_branch, primary_worktree, commit/short_commit, remote/remote_url/upstream) when the alias body actually references those template variables. (#2556, #2573)
+ - Short-SHA display honors core.abbrev: Sites that abbreviated a commit SHA previously sliced &sha[..7] or ran ad-hoc git rev-parse --short calls — 7-char prefixes regularly collide in larger repos and none of the slicing sites respected core.abbrev. The step commit / step squash success lines, the step push --no-ff "Merged to" line, the {{ short_commit }} template variable, post-remove hook context, the safety-backup ref display, the orphan-check (detached ) label, and wt list row display all route through one canonical helper now. (#2576, #2577, #2584)
+ - Shell-integration hint escalates after repeat showings: worktrunk.hints. migrates from "true" to an integer counter so the system tracks how many times a hint has been displayed. After 5+ displays of the shell-integration install hint, it appends a wt config show pointer so users who keep seeing it can investigate why their wrapper isn't intercepting. Legacy "true" values parse as 0, so the next display normalises to 1; first-time-skip behaviour is unchanged. (#2603)
+ - Cleaner wt config show shell-integration section for new users: Several follow-ups smooth the section's first impression. "Not configured" rows render as peer status lines (○) with bold shell name, matching Already configured and Skipped, instead of looking like a sub-bullet. The type wt verification hint only fires under the user's actual shell, not under every configured shell. On a stock zsh-only macOS, bash / fish / nu no longer render four Skipped; ~/.foorc not found rows — a new Shell::is_installed() PATH lookup filters them unless the binary is present. The status text now distinguishes "not configured" (no working integration anywhere) from "not active" (installed but not loaded in this session), with the install hint moved directly under the warning, and the Skipped row's shell name renders bold to match other status rows. (#2562, #2572, #2574, #2579)
+ Fixed
+ - wt step prune no longer trips a debug_assert on multi-line git errors: When git config failed mid-prune, the multi-line stderr propagated as a top-level anyhow message with an empty chain — exactly the case print_command_error's debug_assert!(false, "Multiline error without context") is designed to nag on. Debug builds (including cargo test) exited 101 instead of rendering the error. Targeted .context(...) wrappers on the prune call sites route prune errors through the structured rendering path. (#2567)
+ - wt config update no longer prints a redundant wt config update self-suggestion: Every wt invocation against a deprecated config emitted a deprecation warning followed by a to apply updates, run wt config update hint — silly when the user was already running wt config update. The update command latches warning suppression before Repository::prewarm, then renders per-pattern warnings inline alongside its diff. --print is also fully silent on stderr now, matching its pipe-friendly intent. (#2590)
+ - wt config show iterates PowerShell uniformly with other shells: PowerShell's status row went through a separate code path, producing a slightly different layout on Windows than on Unix. The shell loop now iterates the full set uniformly, so PowerShell renders the same way as bash / zsh / fish / nu. (#2581)
+ Internal
+ - Library API rework (Breaking library API): cargo-semver-checks reports several breaking changes — removed public exports (worktrunk::git::interrupt_exit_code / worktrunk::git::exit_code in #2611, worktrunk::shell_exec::trace_instant in #2554, struct worktrunk::config::LoadedConfigs in #2573); changed parameter count (worktrunk::config::format_alias_variables now takes 2 parameters instead of 1, in #2556); new remove field on ResolvedConfig, UserConfig, and UserProjectOverrides (#2589).
+ - Typed error variants gain a Diagnostic trait: Display is now a single-line label suitable for embedding in format! strings, JSON output, or log files; Diagnostic::render produces the styled multi-line block (emoji, color, gutter, follow-up hints). Implemented for GitError, WorktrunkError, HookErrorWithHint, TemplateExpandError, and CommandError. The renderer in format_command_error walks the anyhow chain via try_render_diagnostic once instead of per-type downcast branches. (#2580, #2611)
+ - Trace spans carry dynamic context: Alias execution spans carry the alias name (try_alias:deploy, run_alias:deploy); template_render carries the command label; the concurrent-group span moved inside the per-command map so each render emits its own record. Cmd::run / Cmd::pipe_into trace emission consolidated behind WtTraceLog::record_result. (#2554, #2555, #2613)
+ - HookLog::Shared for branch-agnostic logs: The trash sweep at sweep_stale_trash is repo-wide, but HookLog::path() always prefixed a branch segment, so the call site worked around this by passing a fake "wt" branch. The new Shared(InternalOp) variant resolves to {log_dir}/internal/{op}.log directly, alongside the other top-level shared logs. (#2595)
+ Install worktrunk 0.48.0
+ Install prebuilt binaries via shell script
+ curl --proto '=https' --tlsv1.2 -LsSf https://github.com/max-sixty/worktrunk/releases/download/v0.48.0/worktrunk-installer.sh | sh && wt config shell install
+ Install prebuilt binaries via powershell script
+ powershell -ExecutionPolicy Bypass -c "irm https://github.com/max-sixty/worktrunk/releases/download/v0.48.0/worktrunk-installer.ps1 | iex"; git-wt config shell install
+ Install prebuilt binaries via Homebrew
+ brew install worktrunk && wt config shell install
+ Download worktrunk 0.48.0
+ ────────────────────────────────────────────────┬───────────────────┬─────────────
+ File │Platform │Checksum
+ ────────────────────────────────────────────────┼───────────────────┼─────────────
+ worktrunk-aarch64-apple-darwin.tar.xz │Apple Silicon macOS│checksum
+ ────────────────────────────────────────────────┼───────────────────┼─────────────
+ worktrunk-x86_64-apple-darwin.tar.xz │Intel macOS │checksum
+ ────────────────────────────────────────────────┼───────────────────┼─────────────
+ worktrunk-x86_64-pc-windows-msvc.zip │x64 Windows │checksum
+ ────────────────────────────────────────────────┼───────────────────┼─────────────
+ worktrunk-aarch64-unknown-linux-musl.tar.xz │ARM64 MUSL Linux │checksum
+ ────────────────────────────────────────────────┼───────────────────┼─────────────
+ worktrunk-x86_64-unknown-linux-musl.tar.xz │x64 MUSL Linux │checksum
+ ────────────────────────────────────────────────┴───────────────────┴─────────────
+ Install via Cargo
+ cargo install worktrunk && wt config shell install
+ Install via Winget (Windows)
+ winget install max-sixty.worktrunk && git-wt config shell install
+ Install via AUR (Arch Linux)
+ paru worktrunk-bin && wt config shell install
+ReleaseNotesUrl: https://github.com/max-sixty/worktrunk/releases/tag/v0.48.0
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/m/max-sixty/worktrunk/v0.48.0/max-sixty.worktrunk.yaml b/manifests/m/max-sixty/worktrunk/v0.48.0/max-sixty.worktrunk.yaml
new file mode 100644
index 000000000000..692064ea6d41
--- /dev/null
+++ b/manifests/m/max-sixty/worktrunk/v0.48.0/max-sixty.worktrunk.yaml
@@ -0,0 +1,8 @@
+# Created with WinGet Releaser using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: max-sixty.worktrunk
+PackageVersion: v0.48.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/n/Nethermind/Nethermind/1.37.2/Nethermind.Nethermind.installer.yaml b/manifests/n/Nethermind/Nethermind/1.37.2/Nethermind.Nethermind.installer.yaml
new file mode 100644
index 000000000000..4caaa960c447
--- /dev/null
+++ b/manifests/n/Nethermind/Nethermind/1.37.2/Nethermind.Nethermind.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: Nethermind.Nethermind
+PackageVersion: 1.37.2
+InstallerLocale: en-US
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: nethermind.exe
+ PortableCommandAlias: nethermind
+InstallModes:
+- silent
+UpgradeBehavior: uninstallPrevious
+Commands:
+- nethermind
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/NethermindEth/nethermind/releases/download/1.37.2/nethermind-1.37.2-8e212be6-windows-x64.zip
+ InstallerSha256: 07AF563255A2B1F5A2B738B4C70A312A0100A3E1E09B5928EAC60A913696261A
+ManifestType: installer
+ManifestVersion: 1.12.0
+ReleaseDate: 2026-05-05
diff --git a/manifests/n/Nethermind/Nethermind/1.37.2/Nethermind.Nethermind.locale.en-US.yaml b/manifests/n/Nethermind/Nethermind/1.37.2/Nethermind.Nethermind.locale.en-US.yaml
new file mode 100644
index 000000000000..1c763e358792
--- /dev/null
+++ b/manifests/n/Nethermind/Nethermind/1.37.2/Nethermind.Nethermind.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: Nethermind.Nethermind
+PackageVersion: 1.37.2
+PackageLocale: en-US
+Publisher: Demerzel Solutions Limited
+PublisherUrl: https://nethermind.io
+PublisherSupportUrl: https://discord.gg/GXJFaYk
+PrivacyUrl: https://nethermind.io/legal
+Author: Demerzel Solutions Limited
+PackageName: Nethermind
+PackageUrl: https://nethermind.io/nethermind-client
+License: LGPL-3.0-only
+LicenseUrl: https://spdx.org/licenses/LGPL-3.0-only.html
+Copyright: 2026 Demerzel Solutions Limited
+ShortDescription: A robust, high-performance execution client for Ethereum node operators.
+Description: |-
+ The Nethermind Ethereum execution client, built on .NET, delivers industry-leading performance in syncing and tip-of-chain processing.
+ With its modular design and plugin system, it offers extensibility and features for new chains.
+ As one of the most adopted execution clients on Ethereum, Nethermind plays a crucial role in enhancing the diversity and resilience of the Ethereum ecosystem.
+Moniker: nethermind
+Tags:
+- blockchain
+- ethereum
+- evm
+ReleaseNotesUrl: https://github.com/NethermindEth/nethermind/releases/tag/1.37.2
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/n/Nethermind/Nethermind/1.37.2/Nethermind.Nethermind.yaml b/manifests/n/Nethermind/Nethermind/1.37.2/Nethermind.Nethermind.yaml
new file mode 100644
index 000000000000..7b6bdd287de1
--- /dev/null
+++ b/manifests/n/Nethermind/Nethermind/1.37.2/Nethermind.Nethermind.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: Nethermind.Nethermind
+PackageVersion: 1.37.2
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/n/nelsonduarte/PDFApps/1.13.6/nelsonduarte.PDFApps.installer.yaml b/manifests/n/nelsonduarte/PDFApps/1.13.6/nelsonduarte.PDFApps.installer.yaml
new file mode 100644
index 000000000000..e2e9c4898c18
--- /dev/null
+++ b/manifests/n/nelsonduarte/PDFApps/1.13.6/nelsonduarte.PDFApps.installer.yaml
@@ -0,0 +1,16 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: nelsonduarte.PDFApps
+PackageVersion: 1.13.6
+InstallerType: portable
+Scope: user
+Commands:
+- pdfapps
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/nelsonduarte/PDFApps/releases/download/v1.13.6/PDFAppsSetup.exe
+ InstallerSha256: 4726C105C6603351D64765B106465F449A4D90DA8C45C211641C9B428C115ABC
+ManifestType: installer
+ManifestVersion: 1.12.0
+ReleaseDate: 2026-05-05
diff --git a/manifests/n/nelsonduarte/PDFApps/1.13.6/nelsonduarte.PDFApps.locale.en-US.yaml b/manifests/n/nelsonduarte/PDFApps/1.13.6/nelsonduarte.PDFApps.locale.en-US.yaml
new file mode 100644
index 000000000000..2894f8871a43
--- /dev/null
+++ b/manifests/n/nelsonduarte/PDFApps/1.13.6/nelsonduarte.PDFApps.locale.en-US.yaml
@@ -0,0 +1,47 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: nelsonduarte.PDFApps
+PackageVersion: 1.13.6
+PackageLocale: en-US
+Publisher: Nelson Duarte
+PublisherUrl: https://github.com/nelsonduarte
+PublisherSupportUrl: https://github.com/nelsonduarte/PDFApps/issues
+Author: Nelson Duarte
+PackageName: PDFApps
+PackageUrl: https://nelsonduarte.github.io/PDFApps/
+License: MIT
+LicenseUrl: https://github.com/nelsonduarte/PDFApps/blob/main/LICENSE
+Copyright: Copyright (c) Nelson Duarte
+ShortDescription: Fast, offline, subscription-free PDF editor
+Description: |-
+ PDFApps is an all-in-one PDF editor with 13 built-in tools: split, merge, rotate,
+ extract, reorder, compress, encrypt, watermark, OCR, convert (PNG/JPG/DOCX/TXT),
+ visual editor (redact, text, images, signatures, highlights, notes), import
+ (TXT/images/Markdown), and metadata viewer.
+
+ Features include continuous-scroll viewer, presentation mode (F5), fullscreen
+ (F11), tabbed viewing, dark/light themes, drag and drop, multi-select PDF open,
+ and 8-language interface (EN, PT, ES, FR, DE, ZH, IT, NL).
+
+ 100% offline. No subscriptions, no cloud uploads, no account required.
+Moniker: pdfapps
+Tags:
+- pdf
+- pdf-editor
+- pdf-viewer
+- pdf-tools
+- offline
+- open-source
+- ocr
+- split
+- merge
+- compress
+- encrypt
+- watermark
+ReleaseNotesUrl: https://github.com/nelsonduarte/PDFApps/releases/tag/v1.13.6
+Documentations:
+- DocumentLabel: Wiki
+ DocumentUrl: https://github.com/nelsonduarte/PDFApps/wiki
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/n/nelsonduarte/PDFApps/1.13.6/nelsonduarte.PDFApps.yaml b/manifests/n/nelsonduarte/PDFApps/1.13.6/nelsonduarte.PDFApps.yaml
new file mode 100644
index 000000000000..853811d8d79c
--- /dev/null
+++ b/manifests/n/nelsonduarte/PDFApps/1.13.6/nelsonduarte.PDFApps.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: nelsonduarte.PDFApps
+PackageVersion: 1.13.6
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/o/Opera/Opera/Dev/132.0.5889.0/Opera.Opera.Dev.installer.yaml b/manifests/o/Opera/Opera/Dev/132.0.5889.0/Opera.Opera.Dev.installer.yaml
new file mode 100644
index 000000000000..f1458f16794e
--- /dev/null
+++ b/manifests/o/Opera/Opera/Dev/132.0.5889.0/Opera.Opera.Dev.installer.yaml
@@ -0,0 +1,68 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Opera.Opera.Dev
+PackageVersion: 132.0.5889.0
+InstallerType: exe
+InstallModes:
+- interactive
+- silent
+- silentWithProgress
+InstallerSwitches:
+ Silent: /silent
+ SilentWithProgress: /runimmediately
+UpgradeBehavior: install
+Protocols:
+- ftp
+- http
+- https
+- mailto
+- operadeveloper
+FileExtensions:
+- crx
+- htm
+- html
+- opdownload
+- pdf
+- shtml
+- xht
+- xhtml
+Installers:
+- Architecture: x86
+ Scope: user
+ InstallerUrl: https://get.geo.opera.com/pub/opera-developer/132.0.5889.0/win/Opera_Developer_132.0.5889.0_Setup.exe
+ InstallerSha256: AEE386AA194139AACDF5A918583AEF0E5CCD38CB70939AF04CE318A0FB51B209
+ InstallerSwitches:
+ Custom: /allusers=0
+- Architecture: x86
+ Scope: machine
+ InstallerUrl: https://get.geo.opera.com/pub/opera-developer/132.0.5889.0/win/Opera_Developer_132.0.5889.0_Setup.exe
+ InstallerSha256: AEE386AA194139AACDF5A918583AEF0E5CCD38CB70939AF04CE318A0FB51B209
+ InstallerSwitches:
+ Custom: /allusers=1
+- Architecture: x64
+ Scope: user
+ InstallerUrl: https://get.geo.opera.com/pub/opera-developer/132.0.5889.0/win/Opera_Developer_132.0.5889.0_Setup_x64.exe
+ InstallerSha256: 7735FFBBC16E2424E1C7356283BA3D9A7D7CAB7F81C873EB150BF8A5C05D9BCD
+ InstallerSwitches:
+ Custom: /allusers=0
+- Architecture: x64
+ Scope: machine
+ InstallerUrl: https://get.geo.opera.com/pub/opera-developer/132.0.5889.0/win/Opera_Developer_132.0.5889.0_Setup_x64.exe
+ InstallerSha256: 7735FFBBC16E2424E1C7356283BA3D9A7D7CAB7F81C873EB150BF8A5C05D9BCD
+ InstallerSwitches:
+ Custom: /allusers=1
+- Architecture: arm64
+ Scope: user
+ InstallerUrl: https://get.geo.opera.com/pub/opera-developer/132.0.5889.0/win/Opera_Developer_132.0.5889.0_Setup_arm64.exe
+ InstallerSha256: A072E1A1FE8595A09F47812326D414F3A6E53597481E38EFA339F15D6D1B0E53
+ InstallerSwitches:
+ Custom: /allusers=0
+- Architecture: arm64
+ Scope: machine
+ InstallerUrl: https://get.geo.opera.com/pub/opera-developer/132.0.5889.0/win/Opera_Developer_132.0.5889.0_Setup_arm64.exe
+ InstallerSha256: A072E1A1FE8595A09F47812326D414F3A6E53597481E38EFA339F15D6D1B0E53
+ InstallerSwitches:
+ Custom: /allusers=1
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/o/Opera/Opera/Dev/132.0.5889.0/Opera.Opera.Dev.locale.en-US.yaml b/manifests/o/Opera/Opera/Dev/132.0.5889.0/Opera.Opera.Dev.locale.en-US.yaml
new file mode 100644
index 000000000000..142d71c7a64f
--- /dev/null
+++ b/manifests/o/Opera/Opera/Dev/132.0.5889.0/Opera.Opera.Dev.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: Opera.Opera.Dev
+PackageVersion: 132.0.5889.0
+PackageLocale: en-US
+Publisher: Opera Software
+PublisherUrl: https://www.opera.com/
+PublisherSupportUrl: https://www.opera.com/help
+PrivacyUrl: https://legal.opera.com/privacy/
+Author: Opera Norway AS
+PackageName: Opera developer
+PackageUrl: https://www.opera.com/browsers/opera
+License: Freeware
+LicenseUrl: https://legal.opera.com/eula/computers/
+Copyright: Copyright © 1995-2026 Opera Software AS. All rights reserved.
+CopyrightUrl: https://legal.opera.com/terms/
+ShortDescription: The Opera browser includes everything you need for private, safe, and efficient browsing, along with a variety of unique features to enhance your capabilities online.
+Description: Opera is a multi-platform web browser developed by Opera Software. Opera is a Chromium-based browser. It distinguishes itself from other browsers through its user interface, functionality, and other features.
+Moniker: opera-dev
+Tags:
+- browser
+- chromium
+- internet
+- web
+- webpage
+Documentations:
+- DocumentLabel: Tutorial
+ DocumentUrl: https://www.opera.com/tutorials
+- DocumentLabel: FAQ
+ DocumentUrl: https://help.opera.com/faq/
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/o/Opera/Opera/Dev/132.0.5889.0/Opera.Opera.Dev.locale.zh-CN.yaml b/manifests/o/Opera/Opera/Dev/132.0.5889.0/Opera.Opera.Dev.locale.zh-CN.yaml
new file mode 100644
index 000000000000..b82b6e867a00
--- /dev/null
+++ b/manifests/o/Opera/Opera/Dev/132.0.5889.0/Opera.Opera.Dev.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: Opera.Opera.Dev
+PackageVersion: 132.0.5889.0
+PackageLocale: zh-CN
+Publisher: Opera Software
+PublisherUrl: https://www.opera.com/zh-cn
+PublisherSupportUrl: https://www.opera.com/zh-cn/help
+PrivacyUrl: https://legal.opera.com/privacy/
+Author: Opera Norway AS
+PackageName: Opera developer
+PackageUrl: https://www.opera.com/zh-cn/browsers/opera
+License: 免费软件
+LicenseUrl: https://legal.opera.com/eula/computers/
+Copyright: 版权所有 © 1995-2026 Opera Software AS。保留所有权利。
+CopyrightUrl: https://legal.opera.com/terms/
+ShortDescription: Opera 浏览器让您可以私密、安全和高效地浏览,还有各种独特功能提高您的上网冲浪能力。
+Description: Opera 是 Opera 软件公司开发的多平台网络浏览器。Opera 是一款基于 Chromium 的浏览器,在用户界面、功能和其它特性上与其它浏览器有所不同。
+Tags:
+- chromium
+- 互联网
+- 浏览器
+- 网页
+Documentations:
+- DocumentLabel: 教程
+ DocumentUrl: https://www.opera.com/tutorials
+- DocumentLabel: 常见问题
+ DocumentUrl: https://help.opera.com/faq/
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/o/Opera/Opera/Dev/132.0.5889.0/Opera.Opera.Dev.yaml b/manifests/o/Opera/Opera/Dev/132.0.5889.0/Opera.Opera.Dev.yaml
new file mode 100644
index 000000000000..7a681c338da2
--- /dev/null
+++ b/manifests/o/Opera/Opera/Dev/132.0.5889.0/Opera.Opera.Dev.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: Opera.Opera.Dev
+PackageVersion: 132.0.5889.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/p/Postman/Postman/12.9.2/Postman.Postman.installer.yaml b/manifests/p/Postman/Postman/12.9.2/Postman.Postman.installer.yaml
new file mode 100644
index 000000000000..40a9dff651cc
--- /dev/null
+++ b/manifests/p/Postman/Postman/12.9.2/Postman.Postman.installer.yaml
@@ -0,0 +1,24 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Postman.Postman
+PackageVersion: 12.9.2
+InstallerType: exe
+Scope: user
+InstallModes:
+- interactive
+- silent
+InstallerSwitches:
+ Silent: --silent
+ SilentWithProgress: --silent
+UpgradeBehavior: install
+Protocols:
+- postman
+ProductCode: Postman
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerUrl: https://dl.pstmn.io/download/version/12.9.2/windows_64
+ InstallerSha256: 65A86CB8B532AD1E9E2F6CBC5745827A3D28D0C4000CE0A99B89627B878962AE
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/p/Postman/Postman/12.9.2/Postman.Postman.locale.en-US.yaml b/manifests/p/Postman/Postman/12.9.2/Postman.Postman.locale.en-US.yaml
new file mode 100644
index 000000000000..3b8a3f9e33a0
--- /dev/null
+++ b/manifests/p/Postman/Postman/12.9.2/Postman.Postman.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: Postman.Postman
+PackageVersion: 12.9.2
+PackageLocale: en-US
+Publisher: Postman
+PublisherUrl: https://www.postman.com/
+PublisherSupportUrl: https://www.postman.com/support/
+PrivacyUrl: https://www.postman.com/legal/privacy-policy/
+Author: Postman, Inc.
+PackageName: Postman
+PackageUrl: https://www.postman.com/downloads/
+License: Proprietary
+LicenseUrl: https://www.postman.com/legal/terms/
+Copyright: © 2026 Postman, Inc.
+CopyrightUrl: https://www.postman.com/legal/terms/
+ShortDescription: The Collaboration Platform for API Development
+Description: Postman is a collaboration platform for API development. Postman's features simplify each step of building an API and streamline collaboration so you can create better APIs — faster.
+Moniker: postman
+Tags:
+- api
+- automation
+- debug
+- develop
+- development
+- interface
+- internet
+- network
+- request
+- response
+PurchaseUrl: https://www.postman.com/pricing/
+Documentations:
+- DocumentLabel: Learning Center
+ DocumentUrl: https://learning.postman.com/
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/p/Postman/Postman/12.9.2/Postman.Postman.locale.zh-CN.yaml b/manifests/p/Postman/Postman/12.9.2/Postman.Postman.locale.zh-CN.yaml
new file mode 100644
index 000000000000..e210d266b54f
--- /dev/null
+++ b/manifests/p/Postman/Postman/12.9.2/Postman.Postman.locale.zh-CN.yaml
@@ -0,0 +1,35 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: Postman.Postman
+PackageVersion: 12.9.2
+PackageLocale: zh-CN
+Publisher: Postman
+PublisherUrl: https://www.postman.com/
+PublisherSupportUrl: https://www.postman.com/support/
+PrivacyUrl: https://www.postman.com/legal/privacy-policy/
+Author: Postman, Inc.
+PackageName: Postman
+PackageUrl: https://www.postman.com/downloads/
+License: 专有软件
+LicenseUrl: https://www.postman.com/legal/terms/
+Copyright: © 2026 Postman, Inc.
+CopyrightUrl: https://www.postman.com/legal/terms/
+ShortDescription: API 开发协作平台
+Description: Postman 是一个 API 开发协作平台,简化构建 API 流程的每一步,并让协作流水线化,从而更快更好地创建 API。
+Tags:
+- api
+- 互联网
+- 响应
+- 开发
+- 接口
+- 网络
+- 自动化
+- 请求
+- 调试
+PurchaseUrl: https://www.postman.com/pricing/
+Documentations:
+- DocumentLabel: 学习中心
+ DocumentUrl: https://learning.postman.com/
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/p/Postman/Postman/12.9.2/Postman.Postman.yaml b/manifests/p/Postman/Postman/12.9.2/Postman.Postman.yaml
new file mode 100644
index 000000000000..2ba8ab29fc5e
--- /dev/null
+++ b/manifests/p/Postman/Postman/12.9.2/Postman.Postman.yaml
@@ -0,0 +1,8 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: Postman.Postman
+PackageVersion: 12.9.2
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/p/Python/Python/3/14/3.14.5rc1/Python.Python.3.14.installer.yaml b/manifests/p/Python/Python/3/14/3.14.5rc1/Python.Python.3.14.installer.yaml
deleted file mode 100644
index 289ce28d8cc4..000000000000
--- a/manifests/p/Python/Python/3/14/3.14.5rc1/Python.Python.3.14.installer.yaml
+++ /dev/null
@@ -1,104 +0,0 @@
-# Created with YamlCreate.ps1 Dumplings Mod
-# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
-
-PackageIdentifier: Python.Python.3.14
-PackageVersion: 3.14.5rc1
-InstallerType: burn
-UpgradeBehavior: install
-Commands:
-- py
-- python
-- pythonw
-- pyw
-FileExtensions:
-- py
-- pyc
-- pyd
-- pyo
-- pyw
-- pyz
-- pyzw
-Installers:
-- Architecture: x86
- Scope: user
- InstallerUrl: https://www.python.org/ftp/python/3.14.5/python-3.14.5rc1.exe
- InstallerSha256: 7B652D676E4B08FB9D043F257F448FCCFCAF410D312627C9DD8A6F4815AA7A8A
- InstallerSwitches:
- InstallLocation: DefaultJustForMeTargetDir=
- Custom: InstallAllUsers=0 PrependPath=1
- ProductCode: '{f657d158-e649-4abc-8e48-7e60f4fdcb1c}'
- AppsAndFeaturesEntries:
- - DisplayName: Python 3.14.5rc1 (32-bit)
- DisplayVersion: 3.14.5121.0
- ProductCode: '{f657d158-e649-4abc-8e48-7e60f4fdcb1c}'
- UpgradeCode: '{872DB5D2-A16E-5A3C-B222-176907A65867}'
-- Architecture: x86
- Scope: machine
- InstallerUrl: https://www.python.org/ftp/python/3.14.5/python-3.14.5rc1.exe
- InstallerSha256: 7B652D676E4B08FB9D043F257F448FCCFCAF410D312627C9DD8A6F4815AA7A8A
- InstallerSwitches:
- InstallLocation: DefaultAllUsersTargetDir=
- Custom: InstallAllUsers=1 PrependPath=1
- ProductCode: '{f657d158-e649-4abc-8e48-7e60f4fdcb1c}'
- AppsAndFeaturesEntries:
- - DisplayName: Python 3.14.5rc1 (32-bit)
- DisplayVersion: 3.14.5121.0
- ProductCode: '{f657d158-e649-4abc-8e48-7e60f4fdcb1c}'
- UpgradeCode: '{872DB5D2-A16E-5A3C-B222-176907A65867}'
- ElevationRequirement: elevatesSelf
-- Architecture: x64
- Scope: user
- InstallerUrl: https://www.python.org/ftp/python/3.14.5/python-3.14.5rc1-amd64.exe
- InstallerSha256: E21FA6A36E3F2387ED91437CCB7710C28ECC539D6A1F0843598C4561F7E82FCC
- InstallerSwitches:
- InstallLocation: DefaultJustForMeTargetDir=
- Custom: InstallAllUsers=0 PrependPath=1
- ProductCode: '{6e126a74-9cd8-453f-a1c9-d049bb8664e7}'
- AppsAndFeaturesEntries:
- - DisplayName: Python 3.14.5rc1 (64-bit)
- DisplayVersion: 3.14.5121.0
- ProductCode: '{6e126a74-9cd8-453f-a1c9-d049bb8664e7}'
- UpgradeCode: '{AF37ADBF-A448-569B-983A-EE8E6DEC0484}'
-- Architecture: x64
- Scope: machine
- InstallerUrl: https://www.python.org/ftp/python/3.14.5/python-3.14.5rc1-amd64.exe
- InstallerSha256: E21FA6A36E3F2387ED91437CCB7710C28ECC539D6A1F0843598C4561F7E82FCC
- InstallerSwitches:
- InstallLocation: DefaultAllUsersTargetDir=
- Custom: InstallAllUsers=1 PrependPath=1
- ProductCode: '{6e126a74-9cd8-453f-a1c9-d049bb8664e7}'
- AppsAndFeaturesEntries:
- - DisplayName: Python 3.14.5rc1 (64-bit)
- DisplayVersion: 3.14.5121.0
- ProductCode: '{6e126a74-9cd8-453f-a1c9-d049bb8664e7}'
- UpgradeCode: '{AF37ADBF-A448-569B-983A-EE8E6DEC0484}'
- ElevationRequirement: elevatesSelf
-- Architecture: arm64
- Scope: user
- InstallerUrl: https://www.python.org/ftp/python/3.14.5/python-3.14.5rc1-arm64.exe
- InstallerSha256: 6AF7978B6679ECCB8A61784B15A211E3540F87F60BC5E8ED1794D16CA46D30EB
- InstallerSwitches:
- InstallLocation: DefaultJustForMeTargetDir=
- Custom: InstallAllUsers=0 PrependPath=1
- ProductCode: '{100fecbf-aaff-4809-8da5-d96f1cc45475}'
- AppsAndFeaturesEntries:
- - DisplayName: Python 3.14.5rc1 (ARM64)
- DisplayVersion: 3.14.5121.0
- ProductCode: '{100fecbf-aaff-4809-8da5-d96f1cc45475}'
- UpgradeCode: '{2F1F7880-E1EB-54EA-B512-067E199D4E88}'
-- Architecture: arm64
- Scope: machine
- InstallerUrl: https://www.python.org/ftp/python/3.14.5/python-3.14.5rc1-arm64.exe
- InstallerSha256: 6AF7978B6679ECCB8A61784B15A211E3540F87F60BC5E8ED1794D16CA46D30EB
- InstallerSwitches:
- InstallLocation: DefaultAllUsersTargetDir=
- Custom: InstallAllUsers=1 PrependPath=1
- ProductCode: '{100fecbf-aaff-4809-8da5-d96f1cc45475}'
- AppsAndFeaturesEntries:
- - DisplayName: Python 3.14.5rc1 (ARM64)
- DisplayVersion: 3.14.5121.0
- ProductCode: '{100fecbf-aaff-4809-8da5-d96f1cc45475}'
- UpgradeCode: '{2F1F7880-E1EB-54EA-B512-067E199D4E88}'
- ElevationRequirement: elevatesSelf
-ManifestType: installer
-ManifestVersion: 1.12.0
diff --git a/manifests/p/Python/Python/3/14/3.14.5rc1/Python.Python.3.14.locale.en-US.yaml b/manifests/p/Python/Python/3/14/3.14.5rc1/Python.Python.3.14.locale.en-US.yaml
deleted file mode 100644
index c7d556c2a609..000000000000
--- a/manifests/p/Python/Python/3/14/3.14.5rc1/Python.Python.3.14.locale.en-US.yaml
+++ /dev/null
@@ -1,40 +0,0 @@
-# Created with YamlCreate.ps1 Dumplings Mod
-# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
-
-PackageIdentifier: Python.Python.3.14
-PackageVersion: 3.14.5rc1
-PackageLocale: en-US
-Publisher: Python Software Foundation
-PublisherUrl: https://www.python.org/
-PublisherSupportUrl: https://www.python.org/about/help/
-PrivacyUrl: https://www.python.org/privacy/
-Author: Python Software Foundation
-PackageName: Python 3.14
-PackageUrl: https://www.python.org/
-License: PSF-2.0
-LicenseUrl: https://docs.python.org/3/license.html
-Copyright: |-
- Copyright © 2001-2026 Python Software Foundation. All Rights Reserved.
- Copyright © 2000 BeOpen.com. All Rights Reserved.
- Copyright © 1995-2001 Corporation for National Research Initiatives. All Rights Reserved.
- Copyright © 1991-1995 Stichting Mathematisch Centrum, Amsterdam. All Rights Reserved.
-CopyrightUrl: https://www.python.org/about/legal/
-ShortDescription: Python is a programming language that lets you work more quickly and integrate your systems more effectively.
-Moniker: python3
-Tags:
-- 9pnrbtzxmb4z
-- idna
-- language
-- pip3
-- programming
-- programming-language
-- python
-- python3
-- requirescmd
-- script
-ReleaseNotesUrl: https://docs.python.org/release/3.14.5rc1/whatsnew/changelog.html
-Documentations:
-- DocumentLabel: Documentation
- DocumentUrl: https://www.python.org/doc/
-ManifestType: defaultLocale
-ManifestVersion: 1.12.0
diff --git a/manifests/p/Python/Python/3/14/3.14.5rc1/Python.Python.3.14.locale.zh-CN.yaml b/manifests/p/Python/Python/3/14/3.14.5rc1/Python.Python.3.14.locale.zh-CN.yaml
deleted file mode 100644
index 60507f8e4959..000000000000
--- a/manifests/p/Python/Python/3/14/3.14.5rc1/Python.Python.3.14.locale.zh-CN.yaml
+++ /dev/null
@@ -1,19 +0,0 @@
-# Created with YamlCreate.ps1 Dumplings Mod
-# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
-
-PackageIdentifier: Python.Python.3.14
-PackageVersion: 3.14.5rc1
-PackageLocale: zh-CN
-ShortDescription: Python 是一种编程语言,可以让您更快地工作,更有效地整合您的系统。
-Tags:
-- python
-- python3
-- 编程
-- 编程语言
-- 脚本
-- 语言
-Documentations:
-- DocumentLabel: 文档
- DocumentUrl: https://www.python.org/doc/
-ManifestType: locale
-ManifestVersion: 1.12.0
diff --git a/manifests/s/SST/OpenCodeDesktop/1.14.38/SST.OpenCodeDesktop.installer.yaml b/manifests/s/SST/OpenCodeDesktop/1.14.38/SST.OpenCodeDesktop.installer.yaml
new file mode 100644
index 000000000000..c557ecc5a47f
--- /dev/null
+++ b/manifests/s/SST/OpenCodeDesktop/1.14.38/SST.OpenCodeDesktop.installer.yaml
@@ -0,0 +1,24 @@
+# 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.14.38
+InstallerType: nullsoft
+Scope: user
+ProductCode: d074f30d-5f88-5885-b075-be1348cc7676
+ReleaseDate: 2026-05-05
+AppsAndFeaturesEntries:
+- DisplayName: OpenCode 1.14.38
+ Publisher: OpenCode
+ ProductCode: d074f30d-5f88-5885-b075-be1348cc7676
+InstallationMetadata:
+ DefaultInstallLocation: '%LocalAppData%\OpenCode'
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/anomalyco/opencode/releases/download/v1.14.38/opencode-desktop-win-x64.exe
+ InstallerSha256: E024A4E11E402CEBF80E86BD0BC93D2F3864DA8316A0CA639195AC945AE9579C
+- Architecture: arm64
+ InstallerUrl: https://github.com/anomalyco/opencode/releases/download/v1.14.38/opencode-desktop-win-arm64.exe
+ InstallerSha256: BDF0C5FBD76EEC51F02022BFB6FD3D5F1DF2E832E0A55F8F7C06B95E0A4D2541
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/s/SST/OpenCodeDesktop/1.14.38/SST.OpenCodeDesktop.locale.en-US.yaml b/manifests/s/SST/OpenCodeDesktop/1.14.38/SST.OpenCodeDesktop.locale.en-US.yaml
new file mode 100644
index 000000000000..a29e8347a255
--- /dev/null
+++ b/manifests/s/SST/OpenCodeDesktop/1.14.38/SST.OpenCodeDesktop.locale.en-US.yaml
@@ -0,0 +1,46 @@
+# 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.14.38
+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: |-
+ Core
+
+ Bugfixes
+ - Embedded UI requests now work with arbitrary connect-src origins under the default CSP.
+
+ Desktop
+
+ Bugfixes
+ - Desktop now trusts system CA certificates for HTTPS connections.
+ReleaseNotesUrl: https://github.com/anomalyco/opencode/releases/tag/v1.14.38
+Documentations:
+- DocumentLabel: Docs
+ DocumentUrl: https://opencode.ai/docs/
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/s/SST/OpenCodeDesktop/1.14.38/SST.OpenCodeDesktop.yaml b/manifests/s/SST/OpenCodeDesktop/1.14.38/SST.OpenCodeDesktop.yaml
new file mode 100644
index 000000000000..3d16b464785e
--- /dev/null
+++ b/manifests/s/SST/OpenCodeDesktop/1.14.38/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.14.38
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/s/Sidero/omnictl/1.7.2/Sidero.omnictl.installer.yaml b/manifests/s/Sidero/omnictl/1.7.2/Sidero.omnictl.installer.yaml
new file mode 100644
index 000000000000..00b78ae4d74e
--- /dev/null
+++ b/manifests/s/Sidero/omnictl/1.7.2/Sidero.omnictl.installer.yaml
@@ -0,0 +1,15 @@
+# Created with WinGet Updater using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Sidero.omnictl
+PackageVersion: 1.7.2
+InstallerType: portable
+Commands:
+- omnictl
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/siderolabs/omni/releases/download/v1.7.2/omnictl-windows-amd64.exe
+ InstallerSha256: C8373485C43304967D674309E8C0084DC00C26C6ACDF86EC71CAFFC8179E10D6
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/s/Sidero/omnictl/1.7.2/Sidero.omnictl.locale.en-US.yaml b/manifests/s/Sidero/omnictl/1.7.2/Sidero.omnictl.locale.en-US.yaml
new file mode 100644
index 000000000000..601a025c1a7b
--- /dev/null
+++ b/manifests/s/Sidero/omnictl/1.7.2/Sidero.omnictl.locale.en-US.yaml
@@ -0,0 +1,60 @@
+# Created with WinGet Updater using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Sidero.omnictl
+PackageVersion: 1.7.2
+PackageLocale: en-US
+Publisher: Sidero Labs
+PublisherUrl: https://github.com/siderolabs/omni
+PublisherSupportUrl: https://github.com/siderolabs/omni/issues
+PrivacyUrl: https://www.siderolabs.com/privacy-policy/
+Author: Sidero Labs
+PackageName: omnictl
+PackageUrl: https://github.com/siderolabs/omni
+License: Mozilla Public License Version 2.0
+LicenseUrl: https://github.com/siderolabs/omni/blob/HEAD/LICENSE
+ShortDescription: A command line tool for communicating with Omni
+Moniker: omnictl
+Tags:
+- k8s
+- kubernetes
+- omni
+- talos
+ReleaseNotes: |-
+ Omni 1.7.2 (2026-05-05)
+ Welcome to the v1.7.2 release of Omni!
+ Please try out the release binaries and report any issues at
+ https://github.com/siderolabs/omni/issues.
+ Urgent Upgrade Notes (No, really, you MUST read this before you upgrade)
+ A EULA agreement has been added to Omni which must be accepted in order to continue using it.
+ This agreement can be accepted through UI or programmatically either by adding the below flags:
+ --eula-accept-name=Your Name
+ --eula-accept-email=your@email.com
+ Or if using --config-path with the below configuration:
+ eulaAccept:
+ name: Your Name
+ email: your@email.com
+ Contributors
+ - Edward Sammut Alessi
+ - Artem Chernyshev
+ - Utku Ozdemir
+ Changes
+ 12 commits
+ - e739ed28 release(v1.7.2): prepare release
+ - 11fbbdb7 fix(frontend): only show machine patches for currently visible machine
+ - 43f5d4cb fix(frontend): fix editing labels on machine class
+ - 79d26cb0 fix: fix the storm of PendingUpdateStatus create/destroy
+ - 5be4db0f fix: bring back election campaign resign code in the etcd state
+ - aca77a20 fix: stop logging Kubernetes read checks
+ - b887e0d7 fix: remove workload proxy deployment when disabled on the account
+ - ab2f431e fix(frontend): fix eula handling to prevent being stuck on /eula
+ - ab4763d4 fix(frontend): fix indeterminate state for update extensions modal
+ - b979f98a feat(frontend): update talos version text on installation media wizard
+ - 2a0d0f4c fix(frontend): clear page state when keys are cleared
+ - c2adc51a fix(frontend): select default join token in installation media wizard
+ Dependency Changes
+ This release has no dependency changes
+ Previous release can be found at v1.7.1
+ReleaseNotesUrl: https://github.com/siderolabs/omni/releases/tag/v1.7.2
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/s/Sidero/omnictl/1.7.2/Sidero.omnictl.yaml b/manifests/s/Sidero/omnictl/1.7.2/Sidero.omnictl.yaml
new file mode 100644
index 000000000000..75bfa5076106
--- /dev/null
+++ b/manifests/s/Sidero/omnictl/1.7.2/Sidero.omnictl.yaml
@@ -0,0 +1,8 @@
+# Created with WinGet Updater using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: Sidero.omnictl
+PackageVersion: 1.7.2
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/s/Slite/Slite/1.4.2/Slite.Slite.installer.yaml b/manifests/s/Slite/Slite/1.4.2/Slite.Slite.installer.yaml
new file mode 100644
index 000000000000..0d8283b92803
--- /dev/null
+++ b/manifests/s/Slite/Slite/1.4.2/Slite.Slite.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: Slite.Slite
+PackageVersion: 1.4.2
+InstallerType: nullsoft
+Scope: user
+InstallerSwitches:
+ Upgrade: --updated
+UpgradeBehavior: install
+Protocols:
+- slite
+ProductCode: 894b9960-2e55-56ad-9446-18966dad7c7e
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerUrl: https://download.todesktop.com/20062929x31pwfi/Slite%20Setup%201.4.2%20-%20Build%20260505ptf5yrsn2-x64.exe
+ InstallerSha256: 48D502F4034D984BFD77F1B94A9951BE200654E0912942EDC0241D8ABBF0D03C
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/s/Slite/Slite/1.4.2/Slite.Slite.locale.en-US.yaml b/manifests/s/Slite/Slite/1.4.2/Slite.Slite.locale.en-US.yaml
new file mode 100644
index 000000000000..6a2272ad342b
--- /dev/null
+++ b/manifests/s/Slite/Slite/1.4.2/Slite.Slite.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: Slite.Slite
+PackageVersion: 1.4.2
+PackageLocale: en-US
+Publisher: Slite team
+PublisherUrl: https://slite.com/
+PublisherSupportUrl: https://slite.slite.page/p/tQruG1jhfMO6Ab/The-Slite-Help-Center
+PrivacyUrl: https://slite.slite.page/p/H1mLnkz6~/Privacy-Policy-at-Slite
+Author: Slite, Inc.
+PackageName: Slite
+PackageUrl: https://slite.com/download
+License: Proprietary
+LicenseUrl: https://slite.com/terms
+Copyright: ©2026 Slite. All rights reserved.
+CopyrightUrl: https://slite.com/terms
+ShortDescription: AI-powered knowledge base
+Description: Free up your team from the burdens of creating, managing and finding trusted company information. Single source of truth is finally possible with Slite's collaborative knowledge base, powered by AI.
+Tags:
+- collaborate
+- collaboration
+- docs
+- document
+- editor
+- knowledge
+- knowledge-base
+- notes
+- share
+- team
+ReleaseNotesUrl: https://slite.slite.page/p/SykH2PVRZ/New-on-planet-Slite
+PurchaseUrl: https://slite.com/pricing
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/s/Slite/Slite/1.4.2/Slite.Slite.locale.zh-CN.yaml b/manifests/s/Slite/Slite/1.4.2/Slite.Slite.locale.zh-CN.yaml
new file mode 100644
index 000000000000..7b737c1ae209
--- /dev/null
+++ b/manifests/s/Slite/Slite/1.4.2/Slite.Slite.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: Slite.Slite
+PackageVersion: 1.4.2
+PackageLocale: zh-CN
+Publisher: Slite team
+PublisherUrl: https://slite.com/
+PublisherSupportUrl: https://slite.slite.page/p/tQruG1jhfMO6Ab/The-Slite-Help-Center
+PrivacyUrl: https://slite.slite.page/p/H1mLnkz6~/Privacy-Policy-at-Slite
+Author: Slite, Inc.
+PackageName: Slite
+PackageUrl: https://slite.com/download
+License: 专有软件
+LicenseUrl: https://slite.com/terms
+Copyright: ©2026 Slite. All rights reserved.
+CopyrightUrl: https://slite.com/terms
+ShortDescription: AI 驱动的知识库
+Description: 将您的团队从创建、管理和查找可信公司信息的负担中解放出来,AI 驱动的 Slite 协作知识库让单一信息源成为现实。
+Tags:
+- 协作
+- 协同
+- 团队
+- 文档
+- 知识
+- 知识库
+- 笔记
+- 编辑器
+ReleaseNotesUrl: https://slite.slite.page/p/SykH2PVRZ/New-on-planet-Slite
+PurchaseUrl: https://slite.com/pricing
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/s/Slite/Slite/1.4.2/Slite.Slite.yaml b/manifests/s/Slite/Slite/1.4.2/Slite.Slite.yaml
new file mode 100644
index 000000000000..67023f50ee88
--- /dev/null
+++ b/manifests/s/Slite/Slite/1.4.2/Slite.Slite.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: Slite.Slite
+PackageVersion: 1.4.2
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/s/SoftwareOK/DesktopOK/12.49/SoftwareOK.DesktopOK.installer.yaml b/manifests/s/SoftwareOK/DesktopOK/12.51/SoftwareOK.DesktopOK.installer.yaml
similarity index 77%
rename from manifests/s/SoftwareOK/DesktopOK/12.49/SoftwareOK.DesktopOK.installer.yaml
rename to manifests/s/SoftwareOK/DesktopOK/12.51/SoftwareOK.DesktopOK.installer.yaml
index 73c64be599cf..f345454ea365 100644
--- a/manifests/s/SoftwareOK/DesktopOK/12.49/SoftwareOK.DesktopOK.installer.yaml
+++ b/manifests/s/SoftwareOK/DesktopOK/12.51/SoftwareOK.DesktopOK.installer.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
PackageIdentifier: SoftwareOK.DesktopOK
-PackageVersion: "12.49"
+PackageVersion: "12.51"
InstallerType: zip
NestedInstallerType: exe
InstallModes:
@@ -15,33 +15,33 @@ InstallerSuccessCodes:
- 1
UpgradeBehavior: install
ProductCode: DesktopOK
-ReleaseDate: 2026-04-27
+ReleaseDate: 2026-05-05
Installers:
- Architecture: x86
NestedInstallerFiles:
- RelativeFilePath: DesktopOK_Installer.exe
Scope: user
InstallerUrl: https://www.softwareok.com/Download/DesktopOK_Installer.zip
- InstallerSha256: 1024E957A958255621F43A8A56F8D93675A0420CE9A0AFEA66A8D2754B306B97
+ InstallerSha256: 32A637855395C140268B5E985184C275E0FF8131CB39014A94D5286928F065C2
- Architecture: x86
NestedInstallerFiles:
- RelativeFilePath: DesktopOK_Installer.exe
Scope: machine
InstallerUrl: https://www.softwareok.com/Download/DesktopOK_Installer.zip
- InstallerSha256: 1024E957A958255621F43A8A56F8D93675A0420CE9A0AFEA66A8D2754B306B97
+ InstallerSha256: 32A637855395C140268B5E985184C275E0FF8131CB39014A94D5286928F065C2
ElevationRequirement: elevationRequired
- Architecture: x64
NestedInstallerFiles:
- RelativeFilePath: DesktopOK_Installer_x64.exe
Scope: user
InstallerUrl: https://www.softwareok.com/Download/DesktopOK_Installer_x64.zip
- InstallerSha256: 361C5C4B0371393AB92982390A81174B5B32C6D9A7566E4E71BCB2CCDCD9AF4E
+ InstallerSha256: A40F3EE2B9ED63C61A746654CC3E22DC8C76ECFACD7743A34A4A42E24968CD5A
- Architecture: x64
NestedInstallerFiles:
- RelativeFilePath: DesktopOK_Installer_x64.exe
Scope: machine
InstallerUrl: https://www.softwareok.com/Download/DesktopOK_Installer_x64.zip
- InstallerSha256: 361C5C4B0371393AB92982390A81174B5B32C6D9A7566E4E71BCB2CCDCD9AF4E
+ InstallerSha256: A40F3EE2B9ED63C61A746654CC3E22DC8C76ECFACD7743A34A4A42E24968CD5A
ElevationRequirement: elevationRequired
ManifestType: installer
ManifestVersion: 1.12.0
diff --git a/manifests/s/SoftwareOK/DesktopOK/12.49/SoftwareOK.DesktopOK.locale.en-US.yaml b/manifests/s/SoftwareOK/DesktopOK/12.51/SoftwareOK.DesktopOK.locale.en-US.yaml
similarity index 92%
rename from manifests/s/SoftwareOK/DesktopOK/12.49/SoftwareOK.DesktopOK.locale.en-US.yaml
rename to manifests/s/SoftwareOK/DesktopOK/12.51/SoftwareOK.DesktopOK.locale.en-US.yaml
index 4cccddcd5659..5ecdb30053bd 100644
--- a/manifests/s/SoftwareOK/DesktopOK/12.49/SoftwareOK.DesktopOK.locale.en-US.yaml
+++ b/manifests/s/SoftwareOK/DesktopOK/12.51/SoftwareOK.DesktopOK.locale.en-US.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
PackageIdentifier: SoftwareOK.DesktopOK
-PackageVersion: "12.49"
+PackageVersion: "12.51"
PackageLocale: en-US
Publisher: SoftwareOK
PublisherUrl: https://www.softwareok.com/
@@ -19,8 +19,8 @@ Description: DesktopOK is a small but effective solution for user that have to c
Tags:
- desktop
ReleaseNotes: |-
- - Minor adjustments for the next MS Windows 11 build.
- - Update of the DesktopOK language files.
+ - Important corrections in the DesktopOK Windows Tools
+ - Update of language files in DesktopOK
ReleaseNotesUrl: https://www.softwareok.com/?seite=Freeware/DesktopOK/History
Documentations:
- DocumentLabel: Manual
diff --git a/manifests/s/SoftwareOK/DesktopOK/12.49/SoftwareOK.DesktopOK.locale.zh-CN.yaml b/manifests/s/SoftwareOK/DesktopOK/12.51/SoftwareOK.DesktopOK.locale.zh-CN.yaml
similarity index 97%
rename from manifests/s/SoftwareOK/DesktopOK/12.49/SoftwareOK.DesktopOK.locale.zh-CN.yaml
rename to manifests/s/SoftwareOK/DesktopOK/12.51/SoftwareOK.DesktopOK.locale.zh-CN.yaml
index 10ed3ea05e3d..add23fc523c2 100644
--- a/manifests/s/SoftwareOK/DesktopOK/12.49/SoftwareOK.DesktopOK.locale.zh-CN.yaml
+++ b/manifests/s/SoftwareOK/DesktopOK/12.51/SoftwareOK.DesktopOK.locale.zh-CN.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
PackageIdentifier: SoftwareOK.DesktopOK
-PackageVersion: "12.49"
+PackageVersion: "12.51"
PackageLocale: zh-CN
License: 免费软件
ShortDescription: 保存并还原 Windows 11、10、……的桌面图标
diff --git a/manifests/s/SoftwareOK/DesktopOK/12.49/SoftwareOK.DesktopOK.yaml b/manifests/s/SoftwareOK/DesktopOK/12.51/SoftwareOK.DesktopOK.yaml
similarity index 90%
rename from manifests/s/SoftwareOK/DesktopOK/12.49/SoftwareOK.DesktopOK.yaml
rename to manifests/s/SoftwareOK/DesktopOK/12.51/SoftwareOK.DesktopOK.yaml
index 2799d320c312..b3712107b455 100644
--- a/manifests/s/SoftwareOK/DesktopOK/12.49/SoftwareOK.DesktopOK.yaml
+++ b/manifests/s/SoftwareOK/DesktopOK/12.51/SoftwareOK.DesktopOK.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
PackageIdentifier: SoftwareOK.DesktopOK
-PackageVersion: "12.49"
+PackageVersion: "12.51"
DefaultLocale: en-US
ManifestType: version
ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooMariaDB/9.4.1.505/Taozuhong.KangarooMariaDB.installer.yaml b/manifests/t/Taozuhong/KangarooMariaDB/9.4.1.505/Taozuhong.KangarooMariaDB.installer.yaml
new file mode 100644
index 000000000000..4e17be0fdd95
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooMariaDB/9.4.1.505/Taozuhong.KangarooMariaDB.installer.yaml
@@ -0,0 +1,20 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooMariaDB
+PackageVersion: 9.4.1.505
+Platform:
+- Windows.Desktop
+MinimumOSVersion: 10.0.19041.0
+InstallerType: nullsoft
+Scope: machine
+InstallModes:
+- interactive
+- silent
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/dbkangaroo/kangaroo/releases/download/v9.4.1.505/Kangaroo-MariaDB-9.4.1.505-x86_64.exe
+ InstallerSha256: dd3b9de730f26b0d44ae3ce4e3d91e70a55f6a43059b774e1b380c9cdddfe8fa
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooMariaDB/9.4.1.505/Taozuhong.KangarooMariaDB.locale.en-US.yaml b/manifests/t/Taozuhong/KangarooMariaDB/9.4.1.505/Taozuhong.KangarooMariaDB.locale.en-US.yaml
new file mode 100644
index 000000000000..d439f4c0c3d5
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooMariaDB/9.4.1.505/Taozuhong.KangarooMariaDB.locale.en-US.yaml
@@ -0,0 +1,42 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooMariaDB
+PackageVersion: 9.4.1.505
+PackageLocale: en-US
+Publisher: Taozuhong
+PublisherUrl: https://www.datatable.online
+PublisherSupportUrl: https://github.com/dbkangaroo/kangaroo/issues
+PrivacyUrl: https://www.datatable.online/en/license/privacy-policy.html
+Author: Taozuhong
+PackageName: Kangaroo MariaDB
+PackageUrl: https://github.com/dbkangaroo
+License: Proprietary
+LicenseUrl: https://www.datatable.online/en/license/service-agreement.html
+Copyright: Copyright (c) taozuhong. All rights reserved.
+CopyrightUrl: https://www.datatable.online/en/license/service-agreement.html
+ShortDescription: Kangaroo is a SQL client and admin tool.
+Description: Kangaroo is a AI-powered SQL client and admin tool for popular databases(MariaDB / MongoDB / MySQL / Oracle / PostgreSQL / Redis / SQLite / SQLServer / ...) on Windows / MacOS / Linux, support table design, query, model, sync, export/import etc, focus on comfortable, fun and developer friendly.
+Tags:
+- admin
+- client
+- database
+- import
+- export
+- management-tools
+- MariaDB
+- MongoDB
+- MySQL
+- ODBC
+- Oracle
+- PostgreSQL
+- Redis
+- SQL
+- SQLite
+- SQLServer
+ReleaseNotes: |-
+ New features & bug-fixes
+ - Fixed some known issues.
+ReleaseNotesUrl: https://www.datatable.online/zh/download/v9.4.1.505.html
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooMariaDB/9.4.1.505/Taozuhong.KangarooMariaDB.locale.zh-CN.yaml b/manifests/t/Taozuhong/KangarooMariaDB/9.4.1.505/Taozuhong.KangarooMariaDB.locale.zh-CN.yaml
new file mode 100644
index 000000000000..7376984aa02b
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooMariaDB/9.4.1.505/Taozuhong.KangarooMariaDB.locale.zh-CN.yaml
@@ -0,0 +1,41 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooMariaDB
+PackageVersion: 9.4.1.505
+PackageLocale: zh-CN
+Publisher: 陶祖洪
+PublisherUrl: https://www.datatable.online
+PublisherSupportUrl: https://github.com/dbkangaroo/kangaroo/issues
+PrivacyUrl: https://www.datatable.online/en/license/privacy-policy.html
+Author: 陶祖洪
+PackageName: 袋鼠数据库工具 MariaDB
+PackageUrl: https://github.com/dbkangaroo
+License: 专有软件
+LicenseUrl: https://www.datatable.online/en/license/service-agreement.html
+Copyright: Copyright (c) taozuhong. All rights reserved.
+CopyrightUrl: https://www.datatable.online/en/license/service-agreement.html
+ShortDescription: 袋鼠是一款为热门数据库系统打造的管理客户端。
+Description: 袋鼠 是一款 AI 驱动的热门数据库系统客户端(MariaDB / MongoDB / MySQL / Oracle / PostgreSQL / Redis / SQLite / SQLServer / ...) ,支持建表、查询、模型、同步、导入导出等功能,支持 Windows / Mac / Linux 等操作系统,致力于打造一款好用、好玩、开发友好的SQL工具。
+Tags:
+- 数据库
+- 数据库客户端
+- 导入
+- 导出
+- 管理工具
+- MariaDB
+- MongoDB
+- MySQL
+- ODBC
+- Oracle
+- PostgreSQL
+- Redis
+- SQL
+- SQLite
+- SQLServer
+ReleaseNotes: |-
+ 新特性或修复的缺陷列表
+ - 修复了一些已知问题
+ReleaseNotesUrl: https://www.datatable.online/zh/download/v9.4.1.505.html
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooMariaDB/9.4.1.505/Taozuhong.KangarooMariaDB.yaml b/manifests/t/Taozuhong/KangarooMariaDB/9.4.1.505/Taozuhong.KangarooMariaDB.yaml
new file mode 100644
index 000000000000..44d1f1755581
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooMariaDB/9.4.1.505/Taozuhong.KangarooMariaDB.yaml
@@ -0,0 +1,8 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooMariaDB
+PackageVersion: 9.4.1.505
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooMongoDB/9.4.1.505/Taozuhong.KangarooMongoDB.installer.yaml b/manifests/t/Taozuhong/KangarooMongoDB/9.4.1.505/Taozuhong.KangarooMongoDB.installer.yaml
new file mode 100644
index 000000000000..3f7a35e1b581
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooMongoDB/9.4.1.505/Taozuhong.KangarooMongoDB.installer.yaml
@@ -0,0 +1,20 @@
+# Automatically updated by the winget bot at 2025/Apr/02
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooMongoDB
+PackageVersion: 9.4.1.505
+Platform:
+- Windows.Desktop
+MinimumOSVersion: 10.0.19041.0
+InstallerType: nullsoft
+Scope: machine
+InstallModes:
+- interactive
+- silent
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/dbkangaroo/kangaroo/releases/download/v9.4.1.505/Kangaroo-MongoDB-9.4.1.505-x86_64.exe
+ InstallerSha256: 0ac68bb908c8bf1de5c03c074f0e47b97e29ade15c306569e8f6546187250ccd
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooMongoDB/9.4.1.505/Taozuhong.KangarooMongoDB.locale.en-US.yaml b/manifests/t/Taozuhong/KangarooMongoDB/9.4.1.505/Taozuhong.KangarooMongoDB.locale.en-US.yaml
new file mode 100644
index 000000000000..df805cfc254e
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooMongoDB/9.4.1.505/Taozuhong.KangarooMongoDB.locale.en-US.yaml
@@ -0,0 +1,42 @@
+# Automatically updated by the winget bot at 2025/Apr/02
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooMongoDB
+PackageVersion: 9.4.1.505
+PackageLocale: en-US
+Publisher: Taozuhong
+PublisherUrl: https://www.datatable.online
+PublisherSupportUrl: https://github.com/dbkangaroo/kangaroo/issues
+PrivacyUrl: https://www.datatable.online/en/license/privacy-policy.html
+Author: Taozuhong
+PackageName: Kangaroo MongoDB
+PackageUrl: https://github.com/dbkangaroo
+License: Proprietary
+LicenseUrl: https://www.datatable.online/en/license/service-agreement.html
+Copyright: Copyright (c) taozuhong. All rights reserved.
+CopyrightUrl: https://www.datatable.online/en/license/service-agreement.html
+ShortDescription: Kangaroo is a SQL client and admin tool.
+Description: Kangaroo is a AI-powered SQL client and admin tool for popular databases(MariaDB / MongoDB / MySQL / Oracle / PostgreSQL / Redis / SQLite / SQLServer / ...) on Windows / MacOS / Linux, support table design, query, model, sync, export/import etc, focus on comfortable, fun and developer friendly.
+Tags:
+- admin
+- client
+- database
+- import
+- export
+- management-tools
+- MariaDB
+- MongoDB
+- MySQL
+- ODBC
+- Oracle
+- PostgreSQL
+- Redis
+- SQL
+- SQLite
+- SQLServer
+ReleaseNotes: |-
+ New features & bug-fixes
+ - Fixed some known issues.
+ReleaseNotesUrl: https://www.datatable.online/en/download/v9.4.1.505.html
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooMongoDB/9.4.1.505/Taozuhong.KangarooMongoDB.locale.zh-CN.yaml b/manifests/t/Taozuhong/KangarooMongoDB/9.4.1.505/Taozuhong.KangarooMongoDB.locale.zh-CN.yaml
new file mode 100644
index 000000000000..94fc08d463c4
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooMongoDB/9.4.1.505/Taozuhong.KangarooMongoDB.locale.zh-CN.yaml
@@ -0,0 +1,41 @@
+# Automatically updated by the winget bot at 2025/Apr/02
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooMongoDB
+PackageVersion: 9.4.1.505
+PackageLocale: zh-CN
+Publisher: 陶祖洪
+PublisherUrl: https://www.datatable.online
+PublisherSupportUrl: https://github.com/dbkangaroo/kangaroo/issues
+PrivacyUrl: https://www.datatable.online/en/license/privacy-policy.html
+Author: 陶祖洪
+PackageName: 袋鼠数据库工具 MongoDB
+PackageUrl: https://github.com/dbkangaroo
+License: 专有软件
+LicenseUrl: https://www.datatable.online/en/license/service-agreement.html
+Copyright: Copyright (c) taozuhong. All rights reserved.
+CopyrightUrl: https://www.datatable.online/en/license/service-agreement.html
+ShortDescription: 袋鼠是一款为热门数据库系统打造的管理客户端。
+Description: 袋鼠 是一款 AI 驱动的热门数据库系统客户端(MariaDB / MongoDB / MySQL / Oracle / PostgreSQL / Redis / SQLite / SQLServer / ...) ,支持建表、查询、模型、同步、导入导出等功能,支持 Windows / Mac / Linux 等操作系统,致力于打造一款好用、好玩、开发友好的SQL工具。
+Tags:
+- 数据库
+- 数据库客户端
+- 导入
+- 导出
+- 管理工具
+- MariaDB
+- MongoDB
+- MySQL
+- ODBC
+- Oracle
+- PostgreSQL
+- Redis
+- SQL
+- SQLite
+- SQLServer
+ReleaseNotes: |-
+ 新特性或修复的缺陷列表
+ - 修复了一些已知问题
+ReleaseNotesUrl: https://www.datatable.online/zh/download/v9.4.1.505.html
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooMongoDB/9.4.1.505/Taozuhong.KangarooMongoDB.yaml b/manifests/t/Taozuhong/KangarooMongoDB/9.4.1.505/Taozuhong.KangarooMongoDB.yaml
new file mode 100644
index 000000000000..22039a24e755
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooMongoDB/9.4.1.505/Taozuhong.KangarooMongoDB.yaml
@@ -0,0 +1,8 @@
+# Automatically updated by the winget bot at 2025/Apr/02
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooMongoDB
+PackageVersion: 9.4.1.505
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooMultiple/9.4.1.505/Taozuhong.KangarooMultiple.installer.yaml b/manifests/t/Taozuhong/KangarooMultiple/9.4.1.505/Taozuhong.KangarooMultiple.installer.yaml
new file mode 100644
index 000000000000..2cc4143bf55f
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooMultiple/9.4.1.505/Taozuhong.KangarooMultiple.installer.yaml
@@ -0,0 +1,20 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooMultiple
+PackageVersion: 9.4.1.505
+Platform:
+- Windows.Desktop
+MinimumOSVersion: 10.0.19041.0
+InstallerType: nullsoft
+Scope: machine
+InstallModes:
+- interactive
+- silent
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/dbkangaroo/kangaroo/releases/download/v9.4.1.505/Kangaroo-Multiple-9.4.1.505-x86_64.exe
+ InstallerSha256: ef4f88d66139cc01b9154dbae9febbeca2a586c35f6145bd61ef5ca4f0bb4ad3
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooMultiple/9.4.1.505/Taozuhong.KangarooMultiple.locale.en-US.yaml b/manifests/t/Taozuhong/KangarooMultiple/9.4.1.505/Taozuhong.KangarooMultiple.locale.en-US.yaml
new file mode 100644
index 000000000000..00afdace2d2d
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooMultiple/9.4.1.505/Taozuhong.KangarooMultiple.locale.en-US.yaml
@@ -0,0 +1,42 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooMultiple
+PackageVersion: 9.4.1.505
+PackageLocale: en-US
+Publisher: Taozuhong
+PublisherUrl: https://www.datatable.online
+PublisherSupportUrl: https://github.com/dbkangaroo/kangaroo/issues
+PrivacyUrl: https://www.datatable.online/en/license/privacy-policy.html
+Author: Taozuhong
+PackageName: Kangaroo Multiple
+PackageUrl: https://github.com/dbkangaroo
+License: Proprietary
+LicenseUrl: https://www.datatable.online/en/license/service-agreement.html
+Copyright: Copyright (c) taozuhong. All rights reserved.
+CopyrightUrl: https://www.datatable.online/en/license/service-agreement.html
+ShortDescription: Kangaroo is a SQL client and admin tool.
+Description: Kangaroo is a AI-powered SQL client and admin tool for popular databases(MariaDB / MongoDB / MySQL / Oracle / PostgreSQL / Redis / SQLite / SQLServer / ...) on Windows / MacOS / Linux, support table design, query, model, sync, export/import etc, focus on comfortable, fun and developer friendly.
+Tags:
+- admin
+- client
+- database
+- import
+- export
+- management-tools
+- MariaDB
+- MongoDB
+- MySQL
+- ODBC
+- Oracle
+- PostgreSQL
+- Redis
+- SQL
+- SQLite
+- SQLServer
+ReleaseNotes: |-
+ New features & bug-fixes
+ - Fixed some known issues.
+ReleaseNotesUrl: https://www.datatable.online/zh/download/v9.4.1.505.html
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooMultiple/9.4.1.505/Taozuhong.KangarooMultiple.locale.zh-CN.yaml b/manifests/t/Taozuhong/KangarooMultiple/9.4.1.505/Taozuhong.KangarooMultiple.locale.zh-CN.yaml
new file mode 100644
index 000000000000..759aed42fc03
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooMultiple/9.4.1.505/Taozuhong.KangarooMultiple.locale.zh-CN.yaml
@@ -0,0 +1,41 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooMultiple
+PackageVersion: 9.4.1.505
+PackageLocale: zh-CN
+Publisher: 陶祖洪
+PublisherUrl: https://www.datatable.online
+PublisherSupportUrl: https://github.com/dbkangaroo/kangaroo/issues
+PrivacyUrl: https://www.datatable.online/en/license/privacy-policy.html
+Author: 陶祖洪
+PackageName: 袋鼠数据库工具 Multiple
+PackageUrl: https://github.com/dbkangaroo
+License: 专有软件
+LicenseUrl: https://www.datatable.online/en/license/service-agreement.html
+Copyright: Copyright (c) taozuhong. All rights reserved.
+CopyrightUrl: https://www.datatable.online/en/license/service-agreement.html
+ShortDescription: 袋鼠是一款为热门数据库系统打造的管理客户端。
+Description: 袋鼠 是一款 AI 驱动的热门数据库系统客户端(MariaDB / MongoDB / MySQL / Oracle / PostgreSQL / Redis / SQLite / SQLServer / ...) ,支持建表、查询、模型、同步、导入导出等功能,支持 Windows / Mac / Linux 等操作系统,致力于打造一款好用、好玩、开发友好的SQL工具。
+Tags:
+- 数据库
+- 数据库客户端
+- 导入
+- 导出
+- 管理工具
+- MariaDB
+- MongoDB
+- MySQL
+- ODBC
+- Oracle
+- PostgreSQL
+- Redis
+- SQL
+- SQLite
+- SQLServer
+ReleaseNotes: |-
+ 新特性或修复的缺陷列表
+ - 修复了一些已知问题
+ReleaseNotesUrl: https://www.datatable.online/zh/download/v9.4.1.505.html
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooMultiple/9.4.1.505/Taozuhong.KangarooMultiple.yaml b/manifests/t/Taozuhong/KangarooMultiple/9.4.1.505/Taozuhong.KangarooMultiple.yaml
new file mode 100644
index 000000000000..fdf034bc64d1
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooMultiple/9.4.1.505/Taozuhong.KangarooMultiple.yaml
@@ -0,0 +1,8 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooMultiple
+PackageVersion: 9.4.1.505
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooMySQL/9.4.1.505/Taozuhong.KangarooMySQL.installer.yaml b/manifests/t/Taozuhong/KangarooMySQL/9.4.1.505/Taozuhong.KangarooMySQL.installer.yaml
new file mode 100644
index 000000000000..22132ca8ee04
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooMySQL/9.4.1.505/Taozuhong.KangarooMySQL.installer.yaml
@@ -0,0 +1,20 @@
+# Automatically updated by the winget bot at 2025/Apr/02
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooMySQL
+PackageVersion: 9.4.1.505
+Platform:
+- Windows.Desktop
+MinimumOSVersion: 10.0.19041.0
+InstallerType: nullsoft
+Scope: machine
+InstallModes:
+- interactive
+- silent
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/dbkangaroo/kangaroo/releases/download/v9.4.1.505/Kangaroo-MySQL-9.4.1.505-x86_64.exe
+ InstallerSha256: 94e3e3ce998dce6f7ad9e6e23c50d4dbe56a714a32d0fa961b8d05afd457df82
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooMySQL/9.4.1.505/Taozuhong.KangarooMySQL.locale.en-US.yaml b/manifests/t/Taozuhong/KangarooMySQL/9.4.1.505/Taozuhong.KangarooMySQL.locale.en-US.yaml
new file mode 100644
index 000000000000..af54d1eab439
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooMySQL/9.4.1.505/Taozuhong.KangarooMySQL.locale.en-US.yaml
@@ -0,0 +1,42 @@
+# Automatically updated by the winget bot at 2025/Apr/02
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooMySQL
+PackageVersion: 9.4.1.505
+PackageLocale: en-US
+Publisher: Taozuhong
+PublisherUrl: https://www.datatable.online
+PublisherSupportUrl: https://github.com/dbkangaroo/kangaroo/issues
+PrivacyUrl: https://www.datatable.online/en/license/privacy-policy.html
+Author: Taozuhong
+PackageName: Kangaroo MySQL
+PackageUrl: https://github.com/dbkangaroo
+License: Proprietary
+LicenseUrl: https://www.datatable.online/en/license/service-agreement.html
+Copyright: Copyright (c) taozuhong. All rights reserved.
+CopyrightUrl: https://www.datatable.online/en/license/service-agreement.html
+ShortDescription: Kangaroo is a SQL client and admin tool.
+Description: Kangaroo is a AI-powered SQL client and admin tool for MySQL database, support table design, query, model, sync, export/import etc, focus on comfortable, fun and developer friendly.
+Tags:
+- admin
+- client
+- database
+- import
+- export
+- management-tools
+- MariaDB
+- MongoDB
+- MySQL
+- ODBC
+- Oracle
+- PostgreSQL
+- Redis
+- SQL
+- SQLite
+- SQLServer
+ReleaseNotes: |-
+ New features & bug-fixes
+ - Fixed some known issues.
+ReleaseNotesUrl: https://www.datatable.online/zh/download/v9.4.1.505.html
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooMySQL/9.4.1.505/Taozuhong.KangarooMySQL.locale.zh-CN.yaml b/manifests/t/Taozuhong/KangarooMySQL/9.4.1.505/Taozuhong.KangarooMySQL.locale.zh-CN.yaml
new file mode 100644
index 000000000000..7243d1ef9c07
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooMySQL/9.4.1.505/Taozuhong.KangarooMySQL.locale.zh-CN.yaml
@@ -0,0 +1,41 @@
+# Automatically updated by the winget bot at 2025/Apr/02
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooMySQL
+PackageVersion: 9.4.1.505
+PackageLocale: zh-CN
+Publisher: 陶祖洪
+PublisherUrl: https://www.datatable.online
+PublisherSupportUrl: https://github.com/dbkangaroo/kangaroo/issues
+PrivacyUrl: https://www.datatable.online/en/license/privacy-policy.html
+Author: 陶祖洪
+PackageName: 袋鼠数据库工具 MySQL
+PackageUrl: https://github.com/dbkangaroo
+License: 专有软件
+LicenseUrl: https://www.datatable.online/en/license/service-agreement.html
+Copyright: Copyright (c) taozuhong. All rights reserved.
+CopyrightUrl: https://www.datatable.online/en/license/service-agreement.html
+ShortDescription: 袋鼠是一款为热门数据库系统打造的管理客户端。
+Description: 袋鼠 是一款 AI 驱动的MySQL数据库系统客户端,支持建表、查询、模型、同步、导入导出等功能,致力于打造一款好用、好玩、开发友好的SQL工具。
+Tags:
+- 数据库
+- 数据库客户端
+- 导入
+- 导出
+- 管理工具
+- MariaDB
+- MongoDB
+- MySQL
+- ODBC
+- Oracle
+- PostgreSQL
+- Redis
+- SQL
+- SQLite
+- SQLServer
+ReleaseNotes: |-
+ 新特性或修复的缺陷列表
+ - 修复了一些已知问题
+ReleaseNotesUrl: https://www.datatable.online/zh/download/v9.4.1.505.html
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooMySQL/9.4.1.505/Taozuhong.KangarooMySQL.yaml b/manifests/t/Taozuhong/KangarooMySQL/9.4.1.505/Taozuhong.KangarooMySQL.yaml
new file mode 100644
index 000000000000..d337bf06ba41
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooMySQL/9.4.1.505/Taozuhong.KangarooMySQL.yaml
@@ -0,0 +1,8 @@
+# Automatically updated by the winget bot at 2025/Apr/02
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooMySQL
+PackageVersion: 9.4.1.505
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooOracle/9.4.1.505/Taozuhong.KangarooOracle.installer.yaml b/manifests/t/Taozuhong/KangarooOracle/9.4.1.505/Taozuhong.KangarooOracle.installer.yaml
new file mode 100644
index 000000000000..7ab00a7e1efd
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooOracle/9.4.1.505/Taozuhong.KangarooOracle.installer.yaml
@@ -0,0 +1,20 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooOracle
+PackageVersion: 9.4.1.505
+Platform:
+- Windows.Desktop
+MinimumOSVersion: 10.0.19041.0
+InstallerType: nullsoft
+Scope: machine
+InstallModes:
+- interactive
+- silent
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/dbkangaroo/kangaroo/releases/download/v9.4.1.505/Kangaroo-Oracle-9.4.1.505-x86_64.exe
+ InstallerSha256: 61340570435aea92e625f1d7a8fc4e4d04bb59b499f9605bfb63537e235f3193
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooOracle/9.4.1.505/Taozuhong.KangarooOracle.locale.en-US.yaml b/manifests/t/Taozuhong/KangarooOracle/9.4.1.505/Taozuhong.KangarooOracle.locale.en-US.yaml
new file mode 100644
index 000000000000..e8b966df8b9e
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooOracle/9.4.1.505/Taozuhong.KangarooOracle.locale.en-US.yaml
@@ -0,0 +1,42 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooOracle
+PackageVersion: 9.4.1.505
+PackageLocale: en-US
+Publisher: Taozuhong
+PublisherUrl: https://www.datatable.online
+PublisherSupportUrl: https://github.com/dbkangaroo/kangaroo/issues
+PrivacyUrl: https://www.datatable.online/en/license/privacy-policy.html
+Author: Taozuhong
+PackageName: Kangaroo Oracle
+PackageUrl: https://github.com/dbkangaroo
+License: Proprietary
+LicenseUrl: https://www.datatable.online/en/license/service-agreement.html
+Copyright: Copyright (c) taozuhong. All rights reserved.
+CopyrightUrl: https://www.datatable.online/en/license/service-agreement.html
+ShortDescription: Kangaroo is a SQL client and admin tool.
+Description: Kangaroo is a AI-powered SQL client and admin tool for Oracle database, support table design, query, model, sync, export/import etc, focus on comfortable, fun and developer friendly.
+Tags:
+- admin
+- client
+- database
+- import
+- export
+- management-tools
+- MariaDB
+- MongoDB
+- MySQL
+- ODBC
+- Oracle
+- PostgreSQL
+- Redis
+- SQL
+- SQLite
+- SQLServer
+ReleaseNotes: |-
+ New features & bug-fixes
+ - Fixed some known issues.
+ReleaseNotesUrl: https://www.datatable.online/zh/download/v9.4.1.505.html
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooOracle/9.4.1.505/Taozuhong.KangarooOracle.locale.zh-CN.yaml b/manifests/t/Taozuhong/KangarooOracle/9.4.1.505/Taozuhong.KangarooOracle.locale.zh-CN.yaml
new file mode 100644
index 000000000000..d8bf47d8b745
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooOracle/9.4.1.505/Taozuhong.KangarooOracle.locale.zh-CN.yaml
@@ -0,0 +1,41 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooOracle
+PackageVersion: 9.4.1.505
+PackageLocale: zh-CN
+Publisher: 陶祖洪
+PublisherUrl: https://www.datatable.online
+PublisherSupportUrl: https://github.com/dbkangaroo/kangaroo/issues
+PrivacyUrl: https://www.datatable.online/en/license/privacy-policy.html
+Author: 陶祖洪
+PackageName: 袋鼠数据库工具 Oracle
+PackageUrl: https://github.com/dbkangaroo
+License: 专有软件
+LicenseUrl: https://www.datatable.online/en/license/service-agreement.html
+Copyright: Copyright (c) taozuhong. All rights reserved.
+CopyrightUrl: https://www.datatable.online/en/license/service-agreement.html
+ShortDescription: 袋鼠是一款为热门数据库系统打造的管理客户端。
+Description: 袋鼠 是一款 AI 驱动的Oracle 数据库系统客户端,支持建表、查询、模型、同步、导入导出等功能,支持 Windows / Mac / Linux 等操作系统,致力于打造一款好用、好玩、开发友好的SQL工具。
+Tags:
+- 数据库
+- 数据库客户端
+- 导入
+- 导出
+- 管理工具
+- MariaDB
+- MongoDB
+- MySQL
+- ODBC
+- Oracle
+- PostgreSQL
+- Redis
+- SQL
+- SQLite
+- SQLServer
+ReleaseNotes: |-
+ 新特性或修复的缺陷列表
+ - 修复了一些已知问题
+ReleaseNotesUrl: https://www.datatable.online/zh/download/v9.4.1.505.html
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooOracle/9.4.1.505/Taozuhong.KangarooOracle.yaml b/manifests/t/Taozuhong/KangarooOracle/9.4.1.505/Taozuhong.KangarooOracle.yaml
new file mode 100644
index 000000000000..d8b9852dc880
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooOracle/9.4.1.505/Taozuhong.KangarooOracle.yaml
@@ -0,0 +1,8 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooOracle
+PackageVersion: 9.4.1.505
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooPostgreSQL/9.4.1.505/Taozuhong.KangarooPostgreSQL.installer.yaml b/manifests/t/Taozuhong/KangarooPostgreSQL/9.4.1.505/Taozuhong.KangarooPostgreSQL.installer.yaml
new file mode 100644
index 000000000000..6e1cd13a293f
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooPostgreSQL/9.4.1.505/Taozuhong.KangarooPostgreSQL.installer.yaml
@@ -0,0 +1,20 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooPostgreSQL
+PackageVersion: 9.4.1.505
+Platform:
+- Windows.Desktop
+MinimumOSVersion: 10.0.19041.0
+InstallerType: nullsoft
+Scope: machine
+InstallModes:
+- interactive
+- silent
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/dbkangaroo/kangaroo/releases/download/v9.4.1.505/Kangaroo-PostgreSQL-9.4.1.505-x86_64.exe
+ InstallerSha256: 26dc7dddbfbef3aa1ac76312e32d8175fca6c0fb7ae172a1cefcc7e9b968e693
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooPostgreSQL/9.4.1.505/Taozuhong.KangarooPostgreSQL.locale.en-US.yaml b/manifests/t/Taozuhong/KangarooPostgreSQL/9.4.1.505/Taozuhong.KangarooPostgreSQL.locale.en-US.yaml
new file mode 100644
index 000000000000..4fd80d5ea664
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooPostgreSQL/9.4.1.505/Taozuhong.KangarooPostgreSQL.locale.en-US.yaml
@@ -0,0 +1,42 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooPostgreSQL
+PackageVersion: 9.4.1.505
+PackageLocale: en-US
+Publisher: Taozuhong
+PublisherUrl: https://www.datatable.online
+PublisherSupportUrl: https://github.com/dbkangaroo/kangaroo/issues
+PrivacyUrl: https://www.datatable.online/en/license/privacy-policy.html
+Author: Taozuhong
+PackageName: Kangaroo PostgreSQL
+PackageUrl: https://github.com/dbkangaroo
+License: Proprietary
+LicenseUrl: https://www.datatable.online/en/license/service-agreement.html
+Copyright: Copyright (c) taozuhong. All rights reserved.
+CopyrightUrl: https://www.datatable.online/en/license/service-agreement.html
+ShortDescription: Kangaroo is a SQL client and admin tool.
+Description: Kangaroo is a AI-powered SQL client and admin tool for popular databases(MariaDB / MongoDB / MySQL / Oracle / PostgreSQL / Redis / SQLite / SQLServer / ...) on Windows / MacOS / Linux, support table design, query, model, sync, export/import etc, focus on comfortable, fun and developer friendly.
+Tags:
+- admin
+- client
+- database
+- import
+- export
+- management-tools
+- MariaDB
+- MongoDB
+- MySQL
+- ODBC
+- Oracle
+- PostgreSQL
+- Redis
+- SQL
+- SQLite
+- SQLServer
+ReleaseNotes: |-
+ New features & bug-fixes
+ - Fixed some known issues.
+ReleaseNotesUrl: https://www.datatable.online/zh/download/v9.4.1.505.html
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooPostgreSQL/9.4.1.505/Taozuhong.KangarooPostgreSQL.locale.zh-CN.yaml b/manifests/t/Taozuhong/KangarooPostgreSQL/9.4.1.505/Taozuhong.KangarooPostgreSQL.locale.zh-CN.yaml
new file mode 100644
index 000000000000..cf0005164452
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooPostgreSQL/9.4.1.505/Taozuhong.KangarooPostgreSQL.locale.zh-CN.yaml
@@ -0,0 +1,41 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooPostgreSQL
+PackageVersion: 9.4.1.505
+PackageLocale: zh-CN
+Publisher: 陶祖洪
+PublisherUrl: https://www.datatable.online
+PublisherSupportUrl: https://github.com/dbkangaroo/kangaroo/issues
+PrivacyUrl: https://www.datatable.online/en/license/privacy-policy.html
+Author: 陶祖洪
+PackageName: 袋鼠数据库工具 PostgreSQL
+PackageUrl: https://github.com/dbkangaroo
+License: 专有软件
+LicenseUrl: https://www.datatable.online/en/license/service-agreement.html
+Copyright: Copyright (c) taozuhong. All rights reserved.
+CopyrightUrl: https://www.datatable.online/en/license/service-agreement.html
+ShortDescription: 袋鼠是一款为热门数据库系统打造的管理客户端。
+Description: 袋鼠 是一款 AI 驱动的热门数据库系统客户端(MariaDB / MongoDB / MySQL / Oracle / PostgreSQL / Redis / SQLite / SQLServer / ...) ,支持建表、查询、模型、同步、导入导出等功能,支持 Windows / Mac / Linux 等操作系统,致力于打造一款好用、好玩、开发友好的SQL工具。
+Tags:
+- 数据库
+- 数据库客户端
+- 导入
+- 导出
+- 管理工具
+- MariaDB
+- MongoDB
+- MySQL
+- ODBC
+- Oracle
+- PostgreSQL
+- Redis
+- SQL
+- SQLite
+- SQLServer
+ReleaseNotes: |-
+ 新特性或修复的缺陷列表
+ - 修复了一些已知问题
+ReleaseNotesUrl: https://www.datatable.online/zh/download/v9.4.1.505.html
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooPostgreSQL/9.4.1.505/Taozuhong.KangarooPostgreSQL.yaml b/manifests/t/Taozuhong/KangarooPostgreSQL/9.4.1.505/Taozuhong.KangarooPostgreSQL.yaml
new file mode 100644
index 000000000000..225d8b4fe687
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooPostgreSQL/9.4.1.505/Taozuhong.KangarooPostgreSQL.yaml
@@ -0,0 +1,8 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooPostgreSQL
+PackageVersion: 9.4.1.505
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooRedis/9.4.1.505/Taozuhong.KangarooRedis.installer.yaml b/manifests/t/Taozuhong/KangarooRedis/9.4.1.505/Taozuhong.KangarooRedis.installer.yaml
new file mode 100644
index 000000000000..f7fa87fc0783
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooRedis/9.4.1.505/Taozuhong.KangarooRedis.installer.yaml
@@ -0,0 +1,20 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooRedis
+PackageVersion: 9.4.1.505
+Platform:
+- Windows.Desktop
+MinimumOSVersion: 10.0.19041.0
+InstallerType: nullsoft
+Scope: machine
+InstallModes:
+- interactive
+- silent
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/dbkangaroo/kangaroo/releases/download/v9.4.1.505/Kangaroo-Redis-9.4.1.505-x86_64.exe
+ InstallerSha256: 3620b35d50aa1c7938daea98906694b82eca0b732d5a1e3a983eb3a08477a379
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooRedis/9.4.1.505/Taozuhong.KangarooRedis.locale.en-US.yaml b/manifests/t/Taozuhong/KangarooRedis/9.4.1.505/Taozuhong.KangarooRedis.locale.en-US.yaml
new file mode 100644
index 000000000000..19beca582906
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooRedis/9.4.1.505/Taozuhong.KangarooRedis.locale.en-US.yaml
@@ -0,0 +1,42 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooRedis
+PackageVersion: 9.4.1.505
+PackageLocale: en-US
+Publisher: Taozuhong
+PublisherUrl: https://www.datatable.online
+PublisherSupportUrl: https://github.com/dbkangaroo/kangaroo/issues
+PrivacyUrl: https://www.datatable.online/en/license/privacy-policy.html
+Author: Taozuhong
+PackageName: Kangaroo Redis
+PackageUrl: https://github.com/dbkangaroo
+License: Proprietary
+LicenseUrl: https://www.datatable.online/en/license/service-agreement.html
+Copyright: Copyright (c) taozuhong. All rights reserved.
+CopyrightUrl: https://www.datatable.online/en/license/service-agreement.html
+ShortDescription: Kangaroo is a SQL client and admin tool.
+Description: Kangaroo is a AI-powered SQL client and admin tool for popular databases(MariaDB / MongoDB / MySQL / Oracle / PostgreSQL / SQLite / SQLServer / ...) on Windows / MacOS / Linux, support table design, query, model, sync, export/import etc, focus on comfortable, fun and developer friendly.
+Tags:
+- admin
+- client
+- database
+- import
+- export
+- management-tools
+- MariaDB
+- MongoDB
+- MySQL
+- ODBC
+- Oracle
+- PostgreSQL
+- Redis
+- SQL
+- SQLite
+- SQLServer
+ReleaseNotes: |-
+ New features & bug-fixes
+ - Fixed some known issues.
+ReleaseNotesUrl: https://www.datatable.online/zh/download/v9.4.1.505.html
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooRedis/9.4.1.505/Taozuhong.KangarooRedis.locale.zh-CN.yaml b/manifests/t/Taozuhong/KangarooRedis/9.4.1.505/Taozuhong.KangarooRedis.locale.zh-CN.yaml
new file mode 100644
index 000000000000..8f11120738b8
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooRedis/9.4.1.505/Taozuhong.KangarooRedis.locale.zh-CN.yaml
@@ -0,0 +1,41 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooRedis
+PackageVersion: 9.4.1.505
+PackageLocale: zh-CN
+Publisher: 陶祖洪
+PublisherUrl: https://www.datatable.online
+PublisherSupportUrl: https://github.com/dbkangaroo/kangaroo/issues
+PrivacyUrl: https://www.datatable.online/en/license/privacy-policy.html
+Author: 陶祖洪
+PackageName: 袋鼠数据库工具 Redis
+PackageUrl: https://github.com/dbkangaroo
+License: 专有软件
+LicenseUrl: https://www.datatable.online/en/license/service-agreement.html
+Copyright: Copyright (c) taozuhong. All rights reserved.
+CopyrightUrl: https://www.datatable.online/en/license/service-agreement.html
+ShortDescription: 袋鼠是一款为热门数据库系统打造的管理客户端。
+Description: 袋鼠 是一款 AI 驱动的热门数据库系统客户端(MariaDB / MongoDB / MySQL / Oracle / PostgreSQL / SQLite / SQLServer / ...) ,支持建表、查询、模型、同步、导入导出等功能,支持 Windows / Mac / Linux 等操作系统,致力于打造一款好用、好玩、开发友好的SQL工具。
+Tags:
+- 数据库
+- 数据库客户端
+- 导入
+- 导出
+- 管理工具
+- MariaDB
+- MongoDB
+- MySQL
+- ODBC
+- Oracle
+- PostgreSQL
+- Redis
+- SQL
+- SQLite
+- SQLServer
+ReleaseNotes: |-
+ 新特性或修复的缺陷列表
+ - 修复了一些已知问题
+ReleaseNotesUrl: https://www.datatable.online/zh/download/v9.4.1.505.html
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooRedis/9.4.1.505/Taozuhong.KangarooRedis.yaml b/manifests/t/Taozuhong/KangarooRedis/9.4.1.505/Taozuhong.KangarooRedis.yaml
new file mode 100644
index 000000000000..6beee2879a13
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooRedis/9.4.1.505/Taozuhong.KangarooRedis.yaml
@@ -0,0 +1,8 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooRedis
+PackageVersion: 9.4.1.505
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooSQLServer/9.4.1.505/Taozuhong.KangarooSQLServer.installer.yaml b/manifests/t/Taozuhong/KangarooSQLServer/9.4.1.505/Taozuhong.KangarooSQLServer.installer.yaml
new file mode 100644
index 000000000000..0a77ebb6134f
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooSQLServer/9.4.1.505/Taozuhong.KangarooSQLServer.installer.yaml
@@ -0,0 +1,20 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooSQLServer
+PackageVersion: 9.4.1.505
+Platform:
+- Windows.Desktop
+MinimumOSVersion: 10.0.19041.0
+InstallerType: nullsoft
+Scope: machine
+InstallModes:
+- interactive
+- silent
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/dbkangaroo/kangaroo/releases/download/v9.4.1.505/Kangaroo-SQLServer-9.4.1.505-x86_64.exe
+ InstallerSha256: dbf1b6be432bbf7bb1f9f8f29599a91883189660b349abed34b58ad7ab1508e6
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooSQLServer/9.4.1.505/Taozuhong.KangarooSQLServer.locale.en-US.yaml b/manifests/t/Taozuhong/KangarooSQLServer/9.4.1.505/Taozuhong.KangarooSQLServer.locale.en-US.yaml
new file mode 100644
index 000000000000..894e620432f5
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooSQLServer/9.4.1.505/Taozuhong.KangarooSQLServer.locale.en-US.yaml
@@ -0,0 +1,42 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooSQLServer
+PackageVersion: 9.4.1.505
+PackageLocale: en-US
+Publisher: Taozuhong
+PublisherUrl: https://www.datatable.online
+PublisherSupportUrl: https://github.com/dbkangaroo/kangaroo/issues
+PrivacyUrl: https://www.datatable.online/en/license/privacy-policy.html
+Author: Taozuhong
+PackageName: Kangaroo SQLServer
+PackageUrl: https://github.com/dbkangaroo
+License: Proprietary
+LicenseUrl: https://www.datatable.online/en/license/service-agreement.html
+Copyright: Copyright (c) taozuhong. All rights reserved.
+CopyrightUrl: https://www.datatable.online/en/license/service-agreement.html
+ShortDescription: Kangaroo is a SQL client and admin tool.
+Description: Kangaroo is a AI-powered SQL client and admin tool for SQLServer databases, support table design, query, model, sync, export/import etc, focus on comfortable, fun and developer friendly.
+Tags:
+- admin
+- client
+- database
+- import
+- export
+- management-tools
+- MariaDB
+- MongoDB
+- MySQL
+- ODBC
+- Oracle
+- PostgreSQL
+- Redis
+- SQL
+- SQLite
+- SQLServer
+ReleaseNotes: |-
+ New features & bug-fixes
+ - Fixed some known issues.
+ReleaseNotesUrl: https://www.datatable.online/zh/download/v9.4.1.505.html
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooSQLServer/9.4.1.505/Taozuhong.KangarooSQLServer.locale.zh-CN.yaml b/manifests/t/Taozuhong/KangarooSQLServer/9.4.1.505/Taozuhong.KangarooSQLServer.locale.zh-CN.yaml
new file mode 100644
index 000000000000..6097f62da257
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooSQLServer/9.4.1.505/Taozuhong.KangarooSQLServer.locale.zh-CN.yaml
@@ -0,0 +1,41 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooSQLServer
+PackageVersion: 9.4.1.505
+PackageLocale: zh-CN
+Publisher: 陶祖洪
+PublisherUrl: https://www.datatable.online
+PublisherSupportUrl: https://github.com/dbkangaroo/kangaroo/issues
+PrivacyUrl: https://www.datatable.online/en/license/privacy-policy.html
+Author: 陶祖洪
+PackageName: 袋鼠数据库工具 SQLServer
+PackageUrl: https://github.com/dbkangaroo
+License: 专有软件
+LicenseUrl: https://www.datatable.online/en/license/service-agreement.html
+Copyright: Copyright (c) taozuhong. All rights reserved.
+CopyrightUrl: https://www.datatable.online/en/license/service-agreement.html
+ShortDescription: 袋鼠是一款为热门数据库系统打造的管理客户端。
+Description: 袋鼠 是一款 AI 驱动的 SQLServer 数据库系统客户端,支持建表、查询、模型、同步、导入导出等功能,致力于打造一款好用、好玩、开发友好的SQL工具。
+Tags:
+- 数据库
+- 数据库客户端
+- 导入
+- 导出
+- 管理工具
+- MariaDB
+- MongoDB
+- MySQL
+- ODBC
+- Oracle
+- PostgreSQL
+- Redis
+- SQL
+- SQLite
+- SQLServer
+ReleaseNotes: |-
+ 新特性或修复的缺陷列表
+ - 修复了一些已知问题
+ReleaseNotesUrl: https://www.datatable.online/zh/download/v9.4.1.505.html
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooSQLServer/9.4.1.505/Taozuhong.KangarooSQLServer.yaml b/manifests/t/Taozuhong/KangarooSQLServer/9.4.1.505/Taozuhong.KangarooSQLServer.yaml
new file mode 100644
index 000000000000..37884b047eea
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooSQLServer/9.4.1.505/Taozuhong.KangarooSQLServer.yaml
@@ -0,0 +1,8 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooSQLServer
+PackageVersion: 9.4.1.505
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooSQLite/9.4.1.505/Taozuhong.KangarooSQLite.installer.yaml b/manifests/t/Taozuhong/KangarooSQLite/9.4.1.505/Taozuhong.KangarooSQLite.installer.yaml
new file mode 100644
index 000000000000..9d26060a2f07
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooSQLite/9.4.1.505/Taozuhong.KangarooSQLite.installer.yaml
@@ -0,0 +1,20 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooSQLite
+PackageVersion: 9.4.1.505
+Platform:
+- Windows.Desktop
+MinimumOSVersion: 10.0.19041.0
+InstallerType: nullsoft
+Scope: machine
+InstallModes:
+- interactive
+- silent
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/dbkangaroo/kangaroo/releases/download/v9.4.1.505/Kangaroo-SQLite-9.4.1.505-x86_64.exe
+ InstallerSha256: 866e28c451e566e6e9dc3649ddce8d333ea5af80dfd6072def34eb919230d7e1
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooSQLite/9.4.1.505/Taozuhong.KangarooSQLite.locale.en-US.yaml b/manifests/t/Taozuhong/KangarooSQLite/9.4.1.505/Taozuhong.KangarooSQLite.locale.en-US.yaml
new file mode 100644
index 000000000000..91e4c06dc876
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooSQLite/9.4.1.505/Taozuhong.KangarooSQLite.locale.en-US.yaml
@@ -0,0 +1,42 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooSQLite
+PackageVersion: 9.4.1.505
+PackageLocale: en-US
+Publisher: Taozuhong
+PublisherUrl: https://www.datatable.online
+PublisherSupportUrl: https://github.com/dbkangaroo/kangaroo/issues
+PrivacyUrl: https://www.datatable.online/en/license/privacy-policy.html
+Author: Taozuhong
+PackageName: Kangaroo SQLite
+PackageUrl: https://github.com/dbkangaroo
+License: Proprietary
+LicenseUrl: https://www.datatable.online/en/license/service-agreement.html
+Copyright: Copyright (c) taozuhong. All rights reserved.
+CopyrightUrl: https://www.datatable.online/en/license/service-agreement.html
+ShortDescription: Kangaroo is a SQL client and admin tool.
+Description: Kangaroo is a AI-powered SQL client and admin tool for popular databases(MariaDB / MongoDB / MySQL / Oracle / PostgreSQL / SQLite / SQLServer / ...) on Windows / MacOS / Linux, support table design, query, model, sync, export/import etc, focus on comfortable, fun and developer friendly.
+Tags:
+- admin
+- client
+- database
+- import
+- export
+- management-tools
+- MariaDB
+- MongoDB
+- MySQL
+- ODBC
+- Oracle
+- PostgreSQL
+- Redis
+- SQL
+- SQLite
+- SQLServer
+ReleaseNotes: |-
+ New features & bug-fixes
+ - Fixed some known issues.
+ReleaseNotesUrl: https://www.datatable.online/zh/download/v9.4.1.505.html
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooSQLite/9.4.1.505/Taozuhong.KangarooSQLite.locale.zh-CN.yaml b/manifests/t/Taozuhong/KangarooSQLite/9.4.1.505/Taozuhong.KangarooSQLite.locale.zh-CN.yaml
new file mode 100644
index 000000000000..572a6035a077
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooSQLite/9.4.1.505/Taozuhong.KangarooSQLite.locale.zh-CN.yaml
@@ -0,0 +1,41 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooSQLite
+PackageVersion: 9.4.1.505
+PackageLocale: zh-CN
+Publisher: 陶祖洪
+PublisherUrl: https://www.datatable.online
+PublisherSupportUrl: https://github.com/dbkangaroo/kangaroo/issues
+PrivacyUrl: https://www.datatable.online/en/license/privacy-policy.html
+Author: 陶祖洪
+PackageName: 袋鼠数据库工具 SQLite
+PackageUrl: https://github.com/dbkangaroo
+License: 专有软件
+LicenseUrl: https://www.datatable.online/en/license/service-agreement.html
+Copyright: Copyright (c) taozuhong. All rights reserved.
+CopyrightUrl: https://www.datatable.online/en/license/service-agreement.html
+ShortDescription: 袋鼠是一款为热门数据库系统打造的管理客户端。
+Description: 袋鼠 是一款 AI 驱动的热门数据库系统客户端(MariaDB / MongoDB / MySQL / Oracle / PostgreSQL / SQLite / SQLServer / ...) ,支持建表、查询、模型、同步、导入导出等功能,支持 Windows / Mac / Linux 等操作系统,致力于打造一款好用、好玩、开发友好的SQL工具。
+Tags:
+- 数据库
+- 数据库客户端
+- 导入
+- 导出
+- 管理工具
+- MariaDB
+- MongoDB
+- MySQL
+- ODBC
+- Oracle
+- PostgreSQL
+- Redis
+- SQL
+- SQLite
+- SQLServer
+ReleaseNotes: |-
+ 新特性或修复的缺陷列表
+ - 修复了一些已知问题
+ReleaseNotesUrl: https://www.datatable.online/zh/download/v9.4.1.505.html
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Taozuhong/KangarooSQLite/9.4.1.505/Taozuhong.KangarooSQLite.yaml b/manifests/t/Taozuhong/KangarooSQLite/9.4.1.505/Taozuhong.KangarooSQLite.yaml
new file mode 100644
index 000000000000..0b3f57a61be5
--- /dev/null
+++ b/manifests/t/Taozuhong/KangarooSQLite/9.4.1.505/Taozuhong.KangarooSQLite.yaml
@@ -0,0 +1,8 @@
+# Automatically updated by the winget bot at 2026/May/05
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: Taozuhong.KangarooSQLite
+PackageVersion: 9.4.1.505
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Telerik/Fiddler/Classic/5.0.20261.4301/Telerik.Fiddler.Classic.installer.yaml b/manifests/t/Telerik/Fiddler/Classic/5.0.20261.4301/Telerik.Fiddler.Classic.installer.yaml
new file mode 100644
index 000000000000..c9ec4fa09a93
--- /dev/null
+++ b/manifests/t/Telerik/Fiddler/Classic/5.0.20261.4301/Telerik.Fiddler.Classic.installer.yaml
@@ -0,0 +1,22 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Telerik.Fiddler.Classic
+PackageVersion: 5.0.20261.4301
+InstallerType: nullsoft
+Scope: user
+UpgradeBehavior: install
+FileExtensions:
+- saz
+ProductCode: Fiddler2
+ReleaseDate: 2026-04-30
+ElevationRequirement: elevatesSelf
+Installers:
+- Architecture: x86
+ InstallerUrl: https://downloads.getfiddler.com/fiddler-classic/FiddlerSetup.5.0.20261.4301-latest.exe
+ InstallerSha256: AE04D25BD1F20CA2D4F6A7F59FAAAB8033C2F4033723BB473825C0197EA34D01
+- Architecture: x64
+ InstallerUrl: https://downloads.getfiddler.com/fiddler-classic/FiddlerSetup.5.0.20261.4301-latest.exe
+ InstallerSha256: AE04D25BD1F20CA2D4F6A7F59FAAAB8033C2F4033723BB473825C0197EA34D01
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Telerik/Fiddler/Classic/5.0.20261.4301/Telerik.Fiddler.Classic.locale.en-US.yaml b/manifests/t/Telerik/Fiddler/Classic/5.0.20261.4301/Telerik.Fiddler.Classic.locale.en-US.yaml
new file mode 100644
index 000000000000..82f263414e14
--- /dev/null
+++ b/manifests/t/Telerik/Fiddler/Classic/5.0.20261.4301/Telerik.Fiddler.Classic.locale.en-US.yaml
@@ -0,0 +1,39 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Telerik.Fiddler.Classic
+PackageVersion: 5.0.20261.4301
+PackageLocale: en-US
+Publisher: Progress Software Corporation
+PublisherUrl: https://www.telerik.com/
+PublisherSupportUrl: https://feedback.telerik.com/fiddler/
+PrivacyUrl: https://www.progress.com/legal/privacy-policy
+Author: Progress Software Corporation
+PackageName: Progress Telerik Fiddler Classic
+PackageUrl: https://www.telerik.com/fiddler/fiddler-classic
+License: Freeware
+LicenseUrl: https://www.telerik.com/purchase/license-agreement/fiddler
+Copyright: Copyright ©2003-2026 Progress Software Corporation. All rights reserved.
+ShortDescription: The Original and Free Web Debugging Proxy Tool Exclusively for Windows
+Description: |-
+ Fiddler is a Web Debugging Proxy which logs all HTTP(S) traffic between your computer and the Internet.
+ Fiddler allows you to inspect all HTTP(S) traffic, set breakpoints, and "fiddle" with incoming or outgoing data. Fiddler includes a powerful event-based scripting subsystem, and can be extended using any .NET language.
+ Fiddler is freeware and can debug traffic from virtually any application, including Internet Explorer, Mozilla Firefox, Opera, and thousands more.
+Tags:
+- capture
+- debug
+- network
+- proxy
+- request
+- response
+- traffic
+- web
+ReleaseNotes: |-
+ features:
+ Update application EULA
+ Enable TLS 1.3 in supported HTTPS protocols
+ fixes:
+ Error while opening the CertMaker add-on configuration
+ReleaseNotesUrl: https://www.telerik.com/support/whats-new/fiddler/release-history/fiddler-v5.0.20261
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Telerik/Fiddler/Classic/5.0.20261.4301/Telerik.Fiddler.Classic.locale.zh-CN.yaml b/manifests/t/Telerik/Fiddler/Classic/5.0.20261.4301/Telerik.Fiddler.Classic.locale.zh-CN.yaml
new file mode 100644
index 000000000000..6e0f5c544cae
--- /dev/null
+++ b/manifests/t/Telerik/Fiddler/Classic/5.0.20261.4301/Telerik.Fiddler.Classic.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: Telerik.Fiddler.Classic
+PackageVersion: 5.0.20261.4301
+PackageLocale: zh-CN
+Publisher: Progress Software Corporation
+PublisherUrl: https://www.telerik.com/
+PublisherSupportUrl: https://feedback.telerik.com/fiddler/
+PrivacyUrl: https://www.progress.com/legal/privacy-policy
+Author: Progress Software Corporation
+PackageName: Progress Telerik Fiddler Classic
+PackageUrl: https://www.telerik.com/fiddler/fiddler-classic
+License: 免费软件
+LicenseUrl: https://www.telerik.com/purchase/license-agreement/fiddler
+Copyright: Copyright ©2003-2026 Progress Software Corporation. All rights reserved.
+ShortDescription: Windows 专用的独创的、免费的网络调试代理工具
+Description: |-
+ Fiddler 是一个网络调试代理,记录您的计算机和互联网之间的所有 HTTP(S) 流量。
+ Fiddler 允许您检查所有的 HTTP(S) 流量,设置断点,以及“摆弄”传入或传出数据。Fiddler 包含一个强大的基于事件的脚本子系统,并且可以使用任何 .NET 语言进行扩展。
+ Fiddler 是免费软件,可以调试来自几乎所有应用程序的流量,包括 Internet Explorer、Mozilla Firefox、Opera 等成千上万的应用程序。
+Tags:
+- 代理
+- 响应
+- 抓包
+- 流量
+- 网络
+- 网页
+- 请求
+- 调试
+ReleaseNotesUrl: https://www.telerik.com/support/whats-new/fiddler/release-history/fiddler-v5.0.20261
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Telerik/Fiddler/Classic/5.0.20261.4301/Telerik.Fiddler.Classic.yaml b/manifests/t/Telerik/Fiddler/Classic/5.0.20261.4301/Telerik.Fiddler.Classic.yaml
new file mode 100644
index 000000000000..88fbbcb8cbae
--- /dev/null
+++ b/manifests/t/Telerik/Fiddler/Classic/5.0.20261.4301/Telerik.Fiddler.Classic.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: Telerik.Fiddler.Classic
+PackageVersion: 5.0.20261.4301
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/t/TheDocumentFoundation/LibreOffice/26.2.3.2/TheDocumentFoundation.LibreOffice.installer.yaml b/manifests/t/TheDocumentFoundation/LibreOffice/26.2.3.2/TheDocumentFoundation.LibreOffice.installer.yaml
new file mode 100644
index 000000000000..0a5390a81995
--- /dev/null
+++ b/manifests/t/TheDocumentFoundation/LibreOffice/26.2.3.2/TheDocumentFoundation.LibreOffice.installer.yaml
@@ -0,0 +1,166 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: TheDocumentFoundation.LibreOffice
+PackageVersion: 26.2.3.2
+InstallerType: msi
+Scope: machine
+InstallerSwitches:
+ InstallLocation: INSTALLLOCATION=""
+UpgradeBehavior: install
+Protocols:
+- ms-excel
+- ms-powerpoint
+- ms-visio
+- ms-word
+FileExtensions:
+- "123"
+- "602"
+- bau
+- cdr
+- cgm
+- cmx
+- csv
+- dbf
+- dif
+- doc
+- docm
+- docx
+- dot
+- dotm
+- dotx
+- dxf
+- emf
+- eps
+- fodg
+- fodp
+- fods
+- fodt
+- hwp
+- iqy
+- key
+- lwp
+- met
+- mml
+- numbers
+- odb
+- odf
+- odg
+- odm
+- odp
+- ods
+- odt
+- otg
+- oth
+- otm
+- otp
+- ots
+- ott
+- oxt
+- pages
+- pbm
+- pcd
+- pct
+- pcx
+- pgm
+- pot
+- potm
+- potx
+- ppm
+- pps
+- ppsx
+- ppt
+- pptm
+- pptx
+- psd
+- pub
+- ras
+- rtf
+- sdg
+- sdv
+- slk
+- sob
+- soc
+- sod
+- soe
+- sog
+- soh
+- sop
+- stc
+- std
+- sti
+- stw
+- sxc
+- sxd
+- sxg
+- sxi
+- sxm
+- sxw
+- tga
+- thm
+- txt
+- uop
+- uos
+- uot
+- vdx
+- vor
+- vsd
+- vsdm
+- vsdx
+- vst
+- wb2
+- wk1
+- wks
+- wmf
+- wpd
+- wpg
+- wps
+- wri
+- xba
+- xbm
+- xcs
+- xcu
+- xdl
+- xlr
+- xls
+- xlsb
+- xlsm
+- xlsx
+- xlt
+- xltm
+- xltx
+- xlw
+- xpm
+Installers:
+- Architecture: x86
+ InstallerUrl: https://download.documentfoundation.org/libreoffice/stable/26.2.3/win/x86/LibreOffice_26.2.3_Win_x86.msi
+ InstallerSha256: 8D461C7C6C49701E632248CD37D414AFF0ECA003879F749DA6527E934D308D1B
+ Dependencies:
+ PackageDependencies:
+ - PackageIdentifier: Microsoft.VCRedist.2015+.x86
+ ProductCode: '{1E1C042B-C22E-43C4-A1E4-9CDA5EE9C2A6}'
+ AppsAndFeaturesEntries:
+ - ProductCode: '{1E1C042B-C22E-43C4-A1E4-9CDA5EE9C2A6}'
+ UpgradeCode: '{4B17E523-5D91-4E69-BD96-7FD81CFA81BB}'
+- Architecture: x64
+ InstallerUrl: https://download.documentfoundation.org/libreoffice/stable/26.2.3/win/x86_64/LibreOffice_26.2.3_Win_x86-64.msi
+ InstallerSha256: 468D1FB3880AF3BCDDAC002E9054155912C70B45D105BFA1C82036F33456133D
+ Dependencies:
+ PackageDependencies:
+ - PackageIdentifier: Microsoft.VCRedist.2015+.x64
+ ProductCode: '{446D5532-94D9-42EC-AC40-45486A04D7C9}'
+ AppsAndFeaturesEntries:
+ - ProductCode: '{446D5532-94D9-42EC-AC40-45486A04D7C9}'
+ UpgradeCode: '{4B17E523-5D91-4E69-BD96-7FD81CFA81BB}'
+- Architecture: arm64
+ InstallerUrl: https://download.documentfoundation.org/libreoffice/stable/26.2.3/win/aarch64/LibreOffice_26.2.3_Win_aarch64.msi
+ InstallerSha256: 9F2BD820B928A96FC7D2DD8DC02995DDBDE329D8377933A94DDEB5A5A1CB3CB9
+ Dependencies:
+ PackageDependencies:
+ - PackageIdentifier: Microsoft.VCRedist.2015+.arm64
+ ProductCode: '{1EB8E99A-6228-4CFB-905A-7B4112CF2F38}'
+ AppsAndFeaturesEntries:
+ - ProductCode: '{1EB8E99A-6228-4CFB-905A-7B4112CF2F38}'
+ UpgradeCode: '{4B17E523-5D91-4E69-BD96-7FD81CFA81BB}'
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/t/TheDocumentFoundation/LibreOffice/26.2.3.2/TheDocumentFoundation.LibreOffice.locale.en-US.yaml b/manifests/t/TheDocumentFoundation/LibreOffice/26.2.3.2/TheDocumentFoundation.LibreOffice.locale.en-US.yaml
new file mode 100644
index 000000000000..990efad26cf0
--- /dev/null
+++ b/manifests/t/TheDocumentFoundation/LibreOffice/26.2.3.2/TheDocumentFoundation.LibreOffice.locale.en-US.yaml
@@ -0,0 +1,41 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: TheDocumentFoundation.LibreOffice
+PackageVersion: 26.2.3.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
+PackageUrl: https://www.libreoffice.org/
+License: MPL-2.0
+LicenseUrl: https://www.libreoffice.org/licenses/
+Copyright: Copyright © 2000-2026 LibreOffice contributors.
+ShortDescription: LibreOffice is a free and powerful office suite, and a successor to OpenOffice.org (commonly known as OpenOffice). Its clean interface and feature-rich tools help you unleash your creativity and enhance your productivity.
+Moniker: libreoffice
+Tags:
+- docs
+- document
+- editor
+- excel
+- odf
+- office
+- openoffice
+- powerpoint
+- presentation
+- sheet
+- slide
+- spreadsheet
+- word
+- work
+ReleaseNotesUrl: https://www.libreoffice.org/download/release-notes/
+Documentations:
+- DocumentLabel: Documentation
+ DocumentUrl: https://documentation.libreoffice.org/en/english-documentation/
+- DocumentLabel: Frequently Asked Questions
+ DocumentUrl: https://www.libreoffice.org/get-help/frequently-asked-questions/
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/TheDocumentFoundation/LibreOffice/26.2.3.2/TheDocumentFoundation.LibreOffice.locale.zh-CN.yaml b/manifests/t/TheDocumentFoundation/LibreOffice/26.2.3.2/TheDocumentFoundation.LibreOffice.locale.zh-CN.yaml
new file mode 100644
index 000000000000..5ad5c47016cc
--- /dev/null
+++ b/manifests/t/TheDocumentFoundation/LibreOffice/26.2.3.2/TheDocumentFoundation.LibreOffice.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: TheDocumentFoundation.LibreOffice
+PackageVersion: 26.2.3.2
+PackageLocale: zh-CN
+PublisherSupportUrl: https://zh-cn.libreoffice.org/get-help/feedback/
+PackageUrl: https://zh-cn.libreoffice.org/
+Copyright: 版权所有 © 2000-2026 LibreOffice 的贡献者。
+ShortDescription: LibreOffice 是一套现代化、易用、开源的办公软件,可帮助您进行文字处理、电子表格、演示文稿等工作。
+Tags:
+- excel
+- odf
+- office
+- openoffice
+- powerpoint
+- ppt
+- word
+- 办公
+- 幻灯片
+- 文档
+- 演示
+- 编辑器
+- 表格
+Documentations:
+- DocumentLabel: 常见问题
+ DocumentUrl: https://www.libreoffice.org/get-help/frequently-asked-questions/
+- DocumentLabel: 文档
+ DocumentUrl: https://documentation.libreoffice.org/zh-cn/docs/
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/TheDocumentFoundation/LibreOffice/26.2.3.2/TheDocumentFoundation.LibreOffice.yaml b/manifests/t/TheDocumentFoundation/LibreOffice/26.2.3.2/TheDocumentFoundation.LibreOffice.yaml
new file mode 100644
index 000000000000..b0e6b2cde02f
--- /dev/null
+++ b/manifests/t/TheDocumentFoundation/LibreOffice/26.2.3.2/TheDocumentFoundation.LibreOffice.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
+PackageVersion: 26.2.3.2
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/u/Urin/moove/0.4.6/Urin.moove.installer.yaml b/manifests/u/Urin/moove/0.4.6/Urin.moove.installer.yaml
new file mode 100644
index 000000000000..97b81fd19d2f
--- /dev/null
+++ b/manifests/u/Urin/moove/0.4.6/Urin.moove.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: Urin.moove
+PackageVersion: 0.4.6
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: moove.exe
+ PortableCommandAlias: moove
+ArchiveBinariesDependOnPath: true
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/urin/moove/releases/download/v0.4.6/moove-x86_64-pc-windows-msvc.zip
+ InstallerSha256: 20BC3DB677BF0CCAA883E188B6BEA30DE52F64972EFB499CDC008E1F9A1CEF2B
+ManifestType: installer
+ManifestVersion: 1.12.0
+ReleaseDate: 2026-05-05
diff --git a/manifests/u/Urin/moove/0.4.6/Urin.moove.locale.en-US.yaml b/manifests/u/Urin/moove/0.4.6/Urin.moove.locale.en-US.yaml
new file mode 100644
index 000000000000..2379c788f4b7
--- /dev/null
+++ b/manifests/u/Urin/moove/0.4.6/Urin.moove.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: Urin.moove
+PackageVersion: 0.4.6
+PackageLocale: en-US
+Publisher: Urin
+PublisherUrl: https://github.com/urin
+PublisherSupportUrl: https://github.com/urin/moove/issues
+Author: Urin
+PackageName: moove
+PackageUrl: https://github.com/urin/moove
+License: MIT OR Apache-2.0
+LicenseUrl: https://github.com/urin/moove/blob/main/LICENSE-MIT
+ShortDescription: Manipulate file names and locations from your text editor.
+Description: Rename and move files and directories by editing a generated list in your preferred text editor.
+Moniker: moove
+Tags:
+- cli
+- move
+- rename
+- rust
+ReleaseNotesUrl: https://github.com/urin/moove/releases/tag/v0.4.6
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/u/Urin/moove/0.4.6/Urin.moove.yaml b/manifests/u/Urin/moove/0.4.6/Urin.moove.yaml
new file mode 100644
index 000000000000..152bb83a132f
--- /dev/null
+++ b/manifests/u/Urin/moove/0.4.6/Urin.moove.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: Urin.moove
+PackageVersion: 0.4.6
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/v/Virenbar/ZapretControl/1.5.0/Virenbar.ZapretControl.installer.yaml b/manifests/v/Virenbar/ZapretControl/1.5.0/Virenbar.ZapretControl.installer.yaml
new file mode 100644
index 000000000000..53656661537c
--- /dev/null
+++ b/manifests/v/Virenbar/ZapretControl/1.5.0/Virenbar.ZapretControl.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: Virenbar.ZapretControl
+PackageVersion: 1.5.0
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: ZapretControl(net8.0-windows)\ZapretControl.exe
+ PortableCommandAlias: n
+ArchiveBinariesDependOnPath: true
+Installers:
+- Architecture: x86
+ InstallerUrl: https://github.com/Virenbar/ZapretControl/releases/latest/download/ZapretControl-8.0.zip
+ InstallerSha256: 2E6FFC494569175DAC9A851B87DE08466E7D51CC119B3A88A242A8D357E28A37
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/v/Virenbar/ZapretControl/1.5.0/Virenbar.ZapretControl.locale.en-US.yaml b/manifests/v/Virenbar/ZapretControl/1.5.0/Virenbar.ZapretControl.locale.en-US.yaml
new file mode 100644
index 000000000000..49a96873dba6
--- /dev/null
+++ b/manifests/v/Virenbar/ZapretControl/1.5.0/Virenbar.ZapretControl.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: Virenbar.ZapretControl
+PackageVersion: 1.5.0
+PackageLocale: en-US
+Publisher: Virenbar
+PackageName: ZapretControl
+License: MIT license
+ShortDescription: GUI for zapret
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/v/Virenbar/ZapretControl/1.5.0/Virenbar.ZapretControl.yaml b/manifests/v/Virenbar/ZapretControl/1.5.0/Virenbar.ZapretControl.yaml
new file mode 100644
index 000000000000..2867e95218c8
--- /dev/null
+++ b/manifests/v/Virenbar/ZapretControl/1.5.0/Virenbar.ZapretControl.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: Virenbar.ZapretControl
+PackageVersion: 1.5.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/w/WarcraftLogs/Uploader/9.3.6/WarcraftLogs.Uploader.installer.yaml b/manifests/w/WarcraftLogs/Uploader/9.3.6/WarcraftLogs.Uploader.installer.yaml
new file mode 100644
index 000000000000..427e0f5a319c
--- /dev/null
+++ b/manifests/w/WarcraftLogs/Uploader/9.3.6/WarcraftLogs.Uploader.installer.yaml
@@ -0,0 +1,19 @@
+# Created with WinGet Updater using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: WarcraftLogs.Uploader
+PackageVersion: 9.3.6
+InstallerLocale: en-US
+InstallerType: nullsoft
+ProductCode: bcc11bd8-bf2f-5f00-925b-921594bc2ca4
+ReleaseDate: 2026-05-04
+AppsAndFeaturesEntries:
+- DisplayName: Warcraft Logs Uploader 9.3.6
+ Publisher: warcraftlogs
+ ProductCode: bcc11bd8-bf2f-5f00-925b-921594bc2ca4
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/RPGLogs/Uploaders-warcraftlogs/releases/download/v9.3.6/warcraftlogs-v9.3.6.exe
+ InstallerSha256: 6FA4F9DFD5D1B9FC11E888A36DF0F2315A1D6DA63905F39736F3137CC68C5B7A
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/w/WarcraftLogs/Uploader/9.3.6/WarcraftLogs.Uploader.locale.en-US.yaml b/manifests/w/WarcraftLogs/Uploader/9.3.6/WarcraftLogs.Uploader.locale.en-US.yaml
new file mode 100644
index 000000000000..95c0bd8b303e
--- /dev/null
+++ b/manifests/w/WarcraftLogs/Uploader/9.3.6/WarcraftLogs.Uploader.locale.en-US.yaml
@@ -0,0 +1,18 @@
+# Created with WinGet Updater using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: WarcraftLogs.Uploader
+PackageVersion: 9.3.6
+PackageLocale: en-US
+Publisher: RPGLogs
+PublisherUrl: https://www.warcraftlogs.com/
+PublisherSupportUrl: https://articles.warcraftlogs.com/help/getting-started
+PrivacyUrl: https://www.warcraftlogs.com/help/privacy
+Author: RPGLogs
+PackageName: Warcraft Logs Uploader
+PackageUrl: https://github.com/RPGLogs/Uploaders-warcraftlogs
+License: GPL 3.0
+Copyright: Copyright © 2022 warcraftlogs
+ShortDescription: Provides combat analysis for Blizzard's World of Warcraft MMO. Record your combats, upload them to the site and analyze them in real time. Find out exactly what went wrong and discover what you need to do to fix it.
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/w/WarcraftLogs/Uploader/9.3.6/WarcraftLogs.Uploader.yaml b/manifests/w/WarcraftLogs/Uploader/9.3.6/WarcraftLogs.Uploader.yaml
new file mode 100644
index 000000000000..efe26c0976cc
--- /dev/null
+++ b/manifests/w/WarcraftLogs/Uploader/9.3.6/WarcraftLogs.Uploader.yaml
@@ -0,0 +1,8 @@
+# Created with WinGet Updater using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: WarcraftLogs.Uploader
+PackageVersion: 9.3.6
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/w/Wimysoft/WimyGit/Nightly/2.99.2/Wimysoft.WimyGit.Nightly.installer.yaml b/manifests/w/Wimysoft/WimyGit/Nightly/2.99.2/Wimysoft.WimyGit.Nightly.installer.yaml
new file mode 100644
index 000000000000..0ad5d6fe290b
--- /dev/null
+++ b/manifests/w/Wimysoft/WimyGit/Nightly/2.99.2/Wimysoft.WimyGit.Nightly.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: Wimysoft.WimyGit.Nightly
+PackageVersion: 2.99.2
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: WimyGitN.exe
+ PortableCommandAlias: wimygitn
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/zelon/wimygit/releases/download/nightly-v2.99.2/wimygit-windows-nightly-v2.99.2.zip
+ InstallerSha256: 890CB06A4BDE75F7D471C6D14937FFD7C095A17A0E64057AD9EA54EAAB9C1E47
+ManifestType: installer
+ManifestVersion: 1.12.0
+ReleaseDate: 2026-05-05
diff --git a/manifests/w/Wimysoft/WimyGit/Nightly/2.99.2/Wimysoft.WimyGit.Nightly.locale.en-US.yaml b/manifests/w/Wimysoft/WimyGit/Nightly/2.99.2/Wimysoft.WimyGit.Nightly.locale.en-US.yaml
new file mode 100644
index 000000000000..28701e4dad9e
--- /dev/null
+++ b/manifests/w/Wimysoft/WimyGit/Nightly/2.99.2/Wimysoft.WimyGit.Nightly.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: Wimysoft.WimyGit.Nightly
+PackageVersion: 2.99.2
+PackageLocale: en-US
+Publisher: Wimysoft
+PublisherUrl: https://github.com/zelon
+PublisherSupportUrl: https://github.com/zelon/wimygit/issues
+PackageName: WimyGitNightly
+PackageUrl: https://github.com/zelon/wimygit
+License: MIT
+ShortDescription: Git GUI Client for Windows Nightly
+ReleaseNotesUrl: https://github.com/zelon/wimygit/releases/tag/nightly-v2.99.2
+Documentations:
+- DocumentLabel: Wiki
+ DocumentUrl: https://github.com/zelon/wimygit/wiki
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/w/Wimysoft/WimyGit/Nightly/2.99.2/Wimysoft.WimyGit.Nightly.yaml b/manifests/w/Wimysoft/WimyGit/Nightly/2.99.2/Wimysoft.WimyGit.Nightly.yaml
new file mode 100644
index 000000000000..6664b32cb0d1
--- /dev/null
+++ b/manifests/w/Wimysoft/WimyGit/Nightly/2.99.2/Wimysoft.WimyGit.Nightly.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: Wimysoft.WimyGit.Nightly
+PackageVersion: 2.99.2
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/x/Xpoz/XpozCli/0.3.4/Xpoz.XpozCli.installer.yaml b/manifests/x/Xpoz/XpozCli/0.3.4/Xpoz.XpozCli.installer.yaml
new file mode 100644
index 000000000000..c1929d29e939
--- /dev/null
+++ b/manifests/x/Xpoz/XpozCli/0.3.4/Xpoz.XpozCli.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: Xpoz.XpozCli
+PackageVersion: 0.3.4
+InstallerType: portable
+Commands:
+- xpoz-cli
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/XPOZpublic/xpoz-cli/releases/download/v0.3.4/xpoz-cli-windows-amd64.exe
+ InstallerSha256: 806FF4DF3D99FD10A4B2A72ABB90C4BD063BE85818F4EFA6D1B71244CE820DAE
+ManifestType: installer
+ManifestVersion: 1.12.0
+ReleaseDate: 2026-05-05
diff --git a/manifests/x/Xpoz/XpozCli/0.3.4/Xpoz.XpozCli.locale.en-US.yaml b/manifests/x/Xpoz/XpozCli/0.3.4/Xpoz.XpozCli.locale.en-US.yaml
new file mode 100644
index 000000000000..2a8d5d7d07f4
--- /dev/null
+++ b/manifests/x/Xpoz/XpozCli/0.3.4/Xpoz.XpozCli.locale.en-US.yaml
@@ -0,0 +1,35 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Xpoz.XpozCli
+PackageVersion: 0.3.4
+PackageLocale: en-US
+Publisher: Xpoz
+PublisherUrl: https://www.xpoz.ai
+PublisherSupportUrl: https://github.com/XPOZpublic/xpoz-cli/issues
+Author: Xpoz
+PackageName: xpoz-cli
+PackageUrl: https://github.com/XPOZpublic/xpoz-cli
+License: MIT
+LicenseUrl: https://github.com/XPOZpublic/xpoz-cli/blob/main/LICENSE
+ShortDescription: Standalone CLI wrapper around the Xpoz Python SDK.
+Description: |-
+ xpoz-cli is the official command-line interface for the Xpoz social media intelligence platform.
+ It wraps the Xpoz Python SDK and exposes every SDK method as a CLI subcommand across Twitter,
+ Instagram, Reddit, TikTok, and tracking — with paginated result handling, CSV export, and
+ persistent authentication.
+Moniker: xpoz-cli
+Tags:
+- cli
+- xpoz
+- social-media
+- twitter
+- instagram
+- reddit
+- tiktok
+ReleaseNotesUrl: https://github.com/XPOZpublic/xpoz-cli/releases/tag/v0.3.4
+Documentations:
+- DocumentLabel: Wiki
+ DocumentUrl: https://github.com/XPOZpublic/xpoz-cli/wiki
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/x/Xpoz/XpozCli/0.3.4/Xpoz.XpozCli.yaml b/manifests/x/Xpoz/XpozCli/0.3.4/Xpoz.XpozCli.yaml
new file mode 100644
index 000000000000..84e0b36a4a18
--- /dev/null
+++ b/manifests/x/Xpoz/XpozCli/0.3.4/Xpoz.XpozCli.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: Xpoz.XpozCli
+PackageVersion: 0.3.4
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0