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/ActiveDirectoryPro/ADProToolkit/3.1.4/ActiveDirectoryPro.ADProToolkit.installer.yaml b/manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.5/ActiveDirectoryPro.ADProToolkit.installer.yaml
similarity index 73%
rename from manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.4/ActiveDirectoryPro.ADProToolkit.installer.yaml
rename to manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.5/ActiveDirectoryPro.ADProToolkit.installer.yaml
index f3955b6790fc..44a52f5ebb24 100644
--- a/manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.4/ActiveDirectoryPro.ADProToolkit.installer.yaml
+++ b/manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.5/ActiveDirectoryPro.ADProToolkit.installer.yaml
@@ -2,18 +2,17 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
PackageIdentifier: ActiveDirectoryPro.ADProToolkit
-PackageVersion: 3.1.4
+PackageVersion: 3.1.5
InstallerType: msi
Scope: machine
InstallerSwitches:
InstallLocation: APPDIR=""
-ProductCode: '{093614ED-5B80-487C-BF81-2160EC0208EB}'
-ReleaseDate: 2020-04-30
+ProductCode: '{341BDCEC-E9D8-41E3-BAF7-5195B324C9F5}'
AppsAndFeaturesEntries:
- UpgradeCode: '{0974AC06-5134-4B50-BAD1-578FDABD2EF8}'
Installers:
- Architecture: x64
InstallerUrl: https://activedirectorypro.com/downloads/ADProToolkit.msi
- InstallerSha256: 0636F9D3B3D605C826801B87AEB85E464AA89DB3448D08CB4900DD5961B587CF
+ InstallerSha256: CC3C8ABDA36F279BD472AA6B2789C4704B70C74620CEBD15E9FF15DF4B147B86
ManifestType: installer
ManifestVersion: 1.12.0
diff --git a/manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.4/ActiveDirectoryPro.ADProToolkit.locale.en-US.yaml b/manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.5/ActiveDirectoryPro.ADProToolkit.locale.en-US.yaml
similarity index 55%
rename from manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.4/ActiveDirectoryPro.ADProToolkit.locale.en-US.yaml
rename to manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.5/ActiveDirectoryPro.ADProToolkit.locale.en-US.yaml
index 05df954e3636..1886dd34f42a 100644
--- a/manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.4/ActiveDirectoryPro.ADProToolkit.locale.en-US.yaml
+++ b/manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.5/ActiveDirectoryPro.ADProToolkit.locale.en-US.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
PackageIdentifier: ActiveDirectoryPro.ADProToolkit
-PackageVersion: 3.1.4
+PackageVersion: 3.1.5
PackageLocale: en-US
Publisher: ActiveDirectoryPro
PublisherUrl: https://activedirectorypro.com/
@@ -22,18 +22,16 @@ Tags:
ReleaseNotes: |-
New Features
Section titled “New Features”
- - Browse OU button on User, Group, and Computer Management pages - select an OU from the tree to scope grid results to that OU
+ - Added “Scheduler” shortcut to the top navigation bar for quick access to Scheduled Reports
+ - Added “Inactive Accounts” scheduled tool - finds enabled accounts inactive for X days with optional disable, move, and description actions
+ - Added “Disable Accounts” scheduled tool - finds already-disabled accounts based on how long they have been disabled using AD replication metadata for an accurate disabled date, with actions to move, update description, remove from groups, clear manager, hide from GAL, or delete
+ - AD Cleanup: Disable action now prompts to optionally update the account description at the same time
+ - AD Cleanup: Column picker selection now persists across app restarts
Improvements
Section titled “Improvements”
- - Active OU scope shown as a removable filter chip in the filter bar
- - Outline style buttons for Browse CSV and Download Template on Bulk Create Users page
- - Added altSecurityIdentities as a supported attribute in the Bulk User Update tool
- Bug Fixes
- Section titled “Bug Fixes”
- - Fixed account expires date saving 2 days early
- - Fixed scheduled bulk user update service crashing on startup (duplicate key in BulkUpdateService)
- - Fixed bulk user update preview always flagging manager as changed when manager was set by SAM account name
- - Fixed bulk user update preview User column showing the lookup attribute value instead of the logon name
+ - Scheduler: Removed domain dropdowns from the schedule dialog — uses the active domain selector (top right) instead, consistent with all other pages
+ - NTFS Permissions: Removed “Include Inherited” checkbox - inherited permissions are always included
+ - NTFS Permissions: Added folder depth option limit scan depth. Blank by default will scan all folders.
ReleaseNotesUrl: https://docs.activedirectorypro.com/getting-started/release-notes/
PurchaseUrl: https://activedirectorypro.com/pricing/
Documentations:
diff --git a/manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.4/ActiveDirectoryPro.ADProToolkit.locale.zh-CN.yaml b/manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.5/ActiveDirectoryPro.ADProToolkit.locale.zh-CN.yaml
similarity index 96%
rename from manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.4/ActiveDirectoryPro.ADProToolkit.locale.zh-CN.yaml
rename to manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.5/ActiveDirectoryPro.ADProToolkit.locale.zh-CN.yaml
index f32bad2ccafb..5bf545b46e1c 100644
--- a/manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.4/ActiveDirectoryPro.ADProToolkit.locale.zh-CN.yaml
+++ b/manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.5/ActiveDirectoryPro.ADProToolkit.locale.zh-CN.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
PackageIdentifier: ActiveDirectoryPro.ADProToolkit
-PackageVersion: 3.1.4
+PackageVersion: 3.1.5
PackageLocale: zh-CN
License: 专有软件
ShortDescription: 一组用于简化 Active Directory 的工具
diff --git a/manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.4/ActiveDirectoryPro.ADProToolkit.yaml b/manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.5/ActiveDirectoryPro.ADProToolkit.yaml
similarity index 92%
rename from manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.4/ActiveDirectoryPro.ADProToolkit.yaml
rename to manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.5/ActiveDirectoryPro.ADProToolkit.yaml
index f50f5a1851d7..11e5780c655a 100644
--- a/manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.4/ActiveDirectoryPro.ADProToolkit.yaml
+++ b/manifests/a/ActiveDirectoryPro/ADProToolkit/3.1.5/ActiveDirectoryPro.ADProToolkit.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
PackageIdentifier: ActiveDirectoryPro.ADProToolkit
-PackageVersion: 3.1.4
+PackageVersion: 3.1.5
DefaultLocale: en-US
ManifestType: version
ManifestVersion: 1.12.0
diff --git a/manifests/a/Adobe/Acrobat/Reader/64-bit/26.001.21529/Adobe.Acrobat.Reader.64-bit.installer.yaml b/manifests/a/Adobe/Acrobat/Reader/64-bit/26.001.21529/Adobe.Acrobat.Reader.64-bit.installer.yaml
index aa5c158ef455..cf86a6e36768 100644
--- a/manifests/a/Adobe/Acrobat/Reader/64-bit/26.001.21529/Adobe.Acrobat.Reader.64-bit.installer.yaml
+++ b/manifests/a/Adobe/Acrobat/Reader/64-bit/26.001.21529/Adobe.Acrobat.Reader.64-bit.installer.yaml
@@ -79,7 +79,7 @@ AppsAndFeaturesEntries:
InstallerType: msi
Installers:
- Architecture: x64
- InstallerUrl: https://ardownload2.adobe.com/pub/adobe/acrobat/win/AcrobatDC/2600121529/AcroRdrDCx642600121529_MUI.exe
+ InstallerUrl: https://ardownload3.adobe.com/pub/adobe/acrobat/win/AcrobatDC/2600121529/AcroRdrDCx642600121529_MUI.exe
InstallerSha256: 5B830C22C81899C8AF581AF2F6DC041FF28DD64DD897FA5FAB1D9C012CEAD3EF
ManifestType: installer
ManifestVersion: 1.12.0
diff --git a/manifests/a/Alibaba/DingTalkWorkspaceCLI/1.0.21/Alibaba.DingTalkWorkspaceCLI.installer.yaml b/manifests/a/Alibaba/DingTalkWorkspaceCLI/1.0.21/Alibaba.DingTalkWorkspaceCLI.installer.yaml
new file mode 100644
index 000000000000..00523fc5daa0
--- /dev/null
+++ b/manifests/a/Alibaba/DingTalkWorkspaceCLI/1.0.21/Alibaba.DingTalkWorkspaceCLI.installer.yaml
@@ -0,0 +1,21 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Alibaba.DingTalkWorkspaceCLI
+PackageVersion: 1.0.21
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: dws.exe
+Commands:
+- dws
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/DingTalk-Real-AI/dingtalk-workspace-cli/releases/download/v1.0.21/dws-windows-amd64.zip
+ InstallerSha256: 2051B16AB44AFCDE51003A77200EA882AF4DE6D8DBBE075C184536AECD7F1E1E
+- Architecture: arm64
+ InstallerUrl: https://github.com/DingTalk-Real-AI/dingtalk-workspace-cli/releases/download/v1.0.21/dws-windows-arm64.zip
+ InstallerSha256: 24C62F206FDF2F0CFB5E8FFF3682C14DBC7AC7951A35E33A6C67CBC8C89950C3
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/a/Alibaba/DingTalkWorkspaceCLI/1.0.21/Alibaba.DingTalkWorkspaceCLI.locale.en-US.yaml b/manifests/a/Alibaba/DingTalkWorkspaceCLI/1.0.21/Alibaba.DingTalkWorkspaceCLI.locale.en-US.yaml
new file mode 100644
index 000000000000..933b4a88ab7b
--- /dev/null
+++ b/manifests/a/Alibaba/DingTalkWorkspaceCLI/1.0.21/Alibaba.DingTalkWorkspaceCLI.locale.en-US.yaml
@@ -0,0 +1,35 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Alibaba.DingTalkWorkspaceCLI
+PackageVersion: 1.0.21
+PackageLocale: en-US
+Publisher: DingTalk (Singapore) Private Limited
+PublisherUrl: https://www.dingtalk.io/
+PublisherSupportUrl: https://github.com/DingTalk-Real-AI/dingtalk-workspace-cli/issues
+PrivacyUrl: https://terms.alicdn.com/legal-agreement/terms/suit_bu1_dingtalk/suit_bu1_dingtalk202102181006_34132.html
+Author: DingTalk (Singapore) Private Limited
+PackageName: DingTalk Workspace CLI
+PackageUrl: https://github.com/DingTalk-Real-AI/dingtalk-workspace-cli
+License: Apache-2.0
+LicenseUrl: https://github.com/DingTalk-Real-AI/dingtalk-workspace-cli/blob/HEAD/LICENSE
+Copyright: Copyright 2026 Alibaba Group
+CopyrightUrl: https://terms.alicdn.com/legal-agreement/terms/suit_bu1_dingtalk/suit_bu1_dingtalk202010161503_40649.html
+ShortDescription: dws — DingTalk Workspace on the command line, built for humans and AI agents.
+Description: |-
+ dws — DingTalk Workspace on the command line, built for humans and AI agents.
+ Why dws?
+ - For humans — --help for usage, --dry-run to preview requests, -f table/json/raw for output formats.
+ - For AI agents — structured JSON responses + built-in Agent Skills, ready out of the box.
+ - For enterprise admins — zero-trust architecture: OAuth device-flow auth + domain allowlisting + least-privilege scoping. Not a single byte can bypass authentication and audit.
+Moniker: dws
+Tags:
+- dingding
+- dingtalk
+ReleaseNotes: |-
+ A single critical routing fix for dws drive commands. No new commands or behaviour changes elsewhere.
+ Fixed
+ - dws drive mkdir / dws drive download silently routed to the doc MCP server (#220, fixes #219) — when two MCP servers register tools with the same name (e.g. both drive and doc expose create_folder), the tool-level endpoint map used last-writer-wins, so drive-side calls landed on the doc endpoint and returned mock-shaped responses (success: true with a fake folderId) without actually creating anything. directRuntimeEndpoint now resolves product-level first when the caller already knows the productID, and only falls back to the tool-level lookup when productID is empty. The wrong-server collision and the resulting "succeeded but didn't" behaviour are gone.
+ReleaseNotesUrl: https://github.com/DingTalk-Real-AI/dingtalk-workspace-cli/releases/tag/v1.0.21
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/Alibaba/DingTalkWorkspaceCLI/1.0.21/Alibaba.DingTalkWorkspaceCLI.locale.zh-Hans-CN.yaml b/manifests/a/Alibaba/DingTalkWorkspaceCLI/1.0.21/Alibaba.DingTalkWorkspaceCLI.locale.zh-Hans-CN.yaml
new file mode 100644
index 000000000000..cf11837c4c0b
--- /dev/null
+++ b/manifests/a/Alibaba/DingTalkWorkspaceCLI/1.0.21/Alibaba.DingTalkWorkspaceCLI.locale.zh-Hans-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: Alibaba.DingTalkWorkspaceCLI
+PackageVersion: 1.0.21
+PackageLocale: zh-Hans-CN
+Publisher: 钉钉(中国)信息技术有限公司
+PublisherUrl: https://www.dingtalk.com/
+PrivacyUrl: https://terms.alicdn.com/legal-agreement/terms/suit_bu1_dingtalk/suit_bu1_dingtalk202010070946_49604.html
+Author: 钉钉(中国)信息技术有限公司
+CopyrightUrl: https://terms.alicdn.com/legal-agreement/terms/suit_bu1_dingtalk/suit_bu1_dingtalk202010200940_52441.html
+ShortDescription: dws — 钉钉工作台命令行工具,为人类和 AI Agent 而生。
+Description: |-
+ dws — 钉钉工作台命令行工具,为人类和 AI Agent 而生。
+ 为什么选择 dws?
+ - 为人类而设计 — --help 查看用法,--dry-run 预览请求,-f table/json/raw 切换格式。
+ - 为 AI Agent 而设计 — 结构化 JSON 响应 + 内置 Agent Skills,开箱即用。
+ - 为企业管理员而设计 — 零信任架构:OAuth 设备流认证 + 域名白名单 + 权限最小化。没有一个字节能绕过安全鉴权和审计。
+Tags:
+- 钉钉
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/Alibaba/DingTalkWorkspaceCLI/1.0.21/Alibaba.DingTalkWorkspaceCLI.locale.zh-Hans.yaml b/manifests/a/Alibaba/DingTalkWorkspaceCLI/1.0.21/Alibaba.DingTalkWorkspaceCLI.locale.zh-Hans.yaml
new file mode 100644
index 000000000000..702fd6cb5ac5
--- /dev/null
+++ b/manifests/a/Alibaba/DingTalkWorkspaceCLI/1.0.21/Alibaba.DingTalkWorkspaceCLI.locale.zh-Hans.yaml
@@ -0,0 +1,17 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: Alibaba.DingTalkWorkspaceCLI
+PackageVersion: 1.0.21
+PackageLocale: zh-Hans
+ShortDescription: dws — 钉钉工作台命令行工具,为人类和 AI Agent 而生。
+Description: |-
+ dws — 钉钉工作台命令行工具,为人类和 AI Agent 而生。
+ 为什么选择 dws?
+ - 为人类而设计 — --help 查看用法,--dry-run 预览请求,-f table/json/raw 切换格式。
+ - 为 AI Agent 而设计 — 结构化 JSON 响应 + 内置 Agent Skills,开箱即用。
+ - 为企业管理员而设计 — 零信任架构:OAuth 设备流认证 + 域名白名单 + 权限最小化。没有一个字节能绕过安全鉴权和审计。
+Tags:
+- 钉钉
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/Alibaba/DingTalkWorkspaceCLI/1.0.21/Alibaba.DingTalkWorkspaceCLI.yaml b/manifests/a/Alibaba/DingTalkWorkspaceCLI/1.0.21/Alibaba.DingTalkWorkspaceCLI.yaml
new file mode 100644
index 000000000000..ff9f072ff61c
--- /dev/null
+++ b/manifests/a/Alibaba/DingTalkWorkspaceCLI/1.0.21/Alibaba.DingTalkWorkspaceCLI.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: Alibaba.DingTalkWorkspaceCLI
+PackageVersion: 1.0.21
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
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/Amazon/EC2Launch/2.5.0.0/Amazon.EC2Launch.installer.yaml b/manifests/a/Amazon/EC2Launch/2.5.0.0/Amazon.EC2Launch.installer.yaml
new file mode 100644
index 000000000000..45be270eb4ab
--- /dev/null
+++ b/manifests/a/Amazon/EC2Launch/2.5.0.0/Amazon.EC2Launch.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: Amazon.EC2Launch
+PackageVersion: 2.5.0.0
+InstallerType: wix
+Scope: machine
+UpgradeBehavior: install
+ProductCode: '{4A9A4A95-89F8-4C16-86E4-8E2B784F65FB}'
+AppsAndFeaturesEntries:
+- ProductCode: '{4A9A4A95-89F8-4C16-86E4-8E2B784F65FB}'
+ UpgradeCode: '{7D032E02-C708-4C10-B811-5F1ACFD673DB}'
+Installers:
+- Architecture: x64
+ InstallerUrl: https://s3.amazonaws.com/amazon-ec2launch-v2/windows/amd64/2.5.0/AmazonEC2Launch.msi
+ InstallerSha256: 5F0E04320A22BB52413C66D54034A9136AA8C49BBF1B04A56A6CCCF25E382F84
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/a/Amazon/EC2Launch/2.5.0.0/Amazon.EC2Launch.locale.en-US.yaml b/manifests/a/Amazon/EC2Launch/2.5.0.0/Amazon.EC2Launch.locale.en-US.yaml
new file mode 100644
index 000000000000..f1c6b2ee5e1f
--- /dev/null
+++ b/manifests/a/Amazon/EC2Launch/2.5.0.0/Amazon.EC2Launch.locale.en-US.yaml
@@ -0,0 +1,23 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Amazon.EC2Launch
+PackageVersion: 2.5.0.0
+PackageLocale: en-US
+Publisher: Amazon Web Services
+PublisherUrl: https://aws.amazon.com/
+PublisherSupportUrl: https://console.aws.amazon.com/support/home/
+PrivacyUrl: https://aws.amazon.com/privacy/
+Author: Amazon Web Services, Inc
+PackageName: Amazon EC2Launch
+PackageUrl: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2launch-v2.html
+License: Proprietary
+LicenseUrl: https://aws.amazon.com/agreement/
+Copyright: © 2026 Amazon Web Services, Inc. or its affiliates. All rights reserved.
+CopyrightUrl: https://aws.amazon.com/agreement/
+ShortDescription: Use the EC2Launch v2 agent to perform tasks during EC2 Windows instance launch
+Tags:
+- aws
+ReleaseNotesUrl: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2launchv2-versions.html
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/Amazon/EC2Launch/2.5.0.0/Amazon.EC2Launch.locale.zh-CN.yaml b/manifests/a/Amazon/EC2Launch/2.5.0.0/Amazon.EC2Launch.locale.zh-CN.yaml
new file mode 100644
index 000000000000..9b7bcaf938a3
--- /dev/null
+++ b/manifests/a/Amazon/EC2Launch/2.5.0.0/Amazon.EC2Launch.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: Amazon.EC2Launch
+PackageVersion: 2.5.0.0
+PackageLocale: zh-CN
+PublisherUrl: https://aws.amazon.com/cn/
+PrivacyUrl: https://aws.amazon.com/cn/privacy/
+PackageUrl: https://docs.aws.amazon.com/zh_cn/AWSEC2/latest/UserGuide/ec2launch-v2.html
+License: 专有软件
+LicenseUrl: https://aws.amazon.com/cn/agreement/
+CopyrightUrl: https://aws.amazon.com/cn/agreement/
+ShortDescription: 使用 EC2Launch v2 代理在 EC2 Windows 实例启动期间执行任务
+ReleaseNotesUrl: https://docs.aws.amazon.com/zh_cn/AWSEC2/latest/UserGuide/ec2launchv2-versions.html
+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/Amazon/EC2Launch/2.5.0.0/Amazon.EC2Launch.yaml
similarity index 75%
rename from manifests/p/Python/Python/3/14/3.14.5rc1/Python.Python.3.14.yaml
rename to manifests/a/Amazon/EC2Launch/2.5.0.0/Amazon.EC2Launch.yaml
index 406f5e893a79..5542ce8f1e83 100644
--- a/manifests/p/Python/Python/3/14/3.14.5rc1/Python.Python.3.14.yaml
+++ b/manifests/a/Amazon/EC2Launch/2.5.0.0/Amazon.EC2Launch.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: Amazon.EC2Launch
+PackageVersion: 2.5.0.0
DefaultLocale: en-US
ManifestType: version
ManifestVersion: 1.12.0
diff --git a/manifests/a/Ancilla/Subconscious-Chat/0.1.9/Ancilla.Subconscious-Chat.installer.yaml b/manifests/a/Ancilla/Subconscious-Chat/0.1.9/Ancilla.Subconscious-Chat.installer.yaml
new file mode 100644
index 000000000000..eee32c5e5914
--- /dev/null
+++ b/manifests/a/Ancilla/Subconscious-Chat/0.1.9/Ancilla.Subconscious-Chat.installer.yaml
@@ -0,0 +1,21 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Ancilla.Subconscious-Chat
+PackageVersion: 0.1.9
+InstallerType: nullsoft
+NestedInstallerType: exe
+InstallerSwitches:
+ Silent: /S
+ SilentWithProgress: /S
+InstallModes:
+- silent
+- silentWithProgress
+- interactive
+UpgradeBehavior: install
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/Ancilla-Company/Subconscious/releases/download/v0.1.9/subconscious-setup-x64.exe
+ InstallerSha256: 700B71D796F33628AA78B335957504CE5103F03EC65351B22A9724DCA5B7F48B
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/a/Ancilla/Subconscious-Chat/0.1.9/Ancilla.Subconscious-Chat.locale.en-US.yaml b/manifests/a/Ancilla/Subconscious-Chat/0.1.9/Ancilla.Subconscious-Chat.locale.en-US.yaml
new file mode 100644
index 000000000000..84de14aea7ca
--- /dev/null
+++ b/manifests/a/Ancilla/Subconscious-Chat/0.1.9/Ancilla.Subconscious-Chat.locale.en-US.yaml
@@ -0,0 +1,34 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Ancilla.Subconscious-Chat
+PackageVersion: 0.1.9
+PackageLocale: en-US
+Publisher: Ancilla
+PublisherUrl: https://subconscious.chat
+PublisherSupportUrl: https://github.com/Ancilla-Company/Subconscious/issues
+Author: Brian Branch
+PackageName: Subconscious
+PackageUrl: https://subconscious.chat
+License: Proprietary
+Copyright: Copyright (c) 2026 Ancilla
+ShortDescription: A distributed agentic AI platform to run all your AI agents everwhere on every device.
+Description: |-
+ Subconscious is an open-source alternative to ChatGPT and Claude with a local-first architecture.
+ It enables users to create AI agents that run everywhere, on every device, simultaneously.
+ Features include multi-platform support (Desktop, Web, Terminal), extensible tools,
+ workspaces & threads, BYOK (Bring Your Own Keys) for 20+ AI providers, and auto-updates.
+Moniker: subconscious
+Tags:
+- ai
+- agent
+- llm
+- chat
+- local-first
+- ollama
+- openai
+- anthropic
+- huggingface
+ReleaseNotesUrl: https://github.com/Ancilla-Company/Subconscious/blob/master/CHANGELOG.md
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/Ancilla/Subconscious-Chat/0.1.9/Ancilla.Subconscious-Chat.yaml b/manifests/a/Ancilla/Subconscious-Chat/0.1.9/Ancilla.Subconscious-Chat.yaml
new file mode 100644
index 000000000000..a1c64bd2be46
--- /dev/null
+++ b/manifests/a/Ancilla/Subconscious-Chat/0.1.9/Ancilla.Subconscious-Chat.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: Ancilla.Subconscious-Chat
+PackageVersion: 0.1.9
+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/a/Asana/Asana/2.7.1/Asana.Asana.yaml b/manifests/a/Asana/Asana/2.7.1/Asana.Asana.yaml
new file mode 100644
index 000000000000..f7bc5ca2e4f7
--- /dev/null
+++ b/manifests/a/Asana/Asana/2.7.1/Asana.Asana.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: 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/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/CognitionAI/Devin/2026.5.5-0/CognitionAI.Devin.installer.yaml b/manifests/c/CognitionAI/Devin/2026.5.5-0/CognitionAI.Devin.installer.yaml
new file mode 100644
index 000000000000..53c301d0ff9e
--- /dev/null
+++ b/manifests/c/CognitionAI/Devin/2026.5.5-0/CognitionAI.Devin.installer.yaml
@@ -0,0 +1,21 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: CognitionAI.Devin
+PackageVersion: 2026.5.5-0
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: bin\devin.exe
+Dependencies:
+ PackageDependencies:
+ - PackageIdentifier: Git.Git
+Installers:
+- Architecture: x64
+ InstallerUrl: https://static.devin.ai/cli/2026.5.5-0/devin-2026.5.5-0-x86_64-pc-windows.zip
+ InstallerSha256: 2B9DABE93D38970F9111720B77D302D7E7695267518CAB75127A72B753BB8B25
+- Architecture: arm64
+ InstallerUrl: https://static.devin.ai/cli/2026.5.5-0/devin-2026.5.5-0-aarch64-pc-windows.zip
+ InstallerSha256: 225ED6EC56082453490382790BC376A79ADC8FAE44F5669B87D07C693339014D
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/c/CognitionAI/Devin/2026.5.5-0/CognitionAI.Devin.locale.en-US.yaml b/manifests/c/CognitionAI/Devin/2026.5.5-0/CognitionAI.Devin.locale.en-US.yaml
new file mode 100644
index 000000000000..4ffa7fb7d674
--- /dev/null
+++ b/manifests/c/CognitionAI/Devin/2026.5.5-0/CognitionAI.Devin.locale.en-US.yaml
@@ -0,0 +1,48 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: CognitionAI.Devin
+PackageVersion: 2026.5.5-0
+PackageLocale: en-US
+Publisher: Cognition AI, Inc.
+PublisherUrl: https://devin.ai/
+PrivacyUrl: https://cognition.ai/privacy-policy
+Author: Cognition AI, Inc.
+PackageName: Devin for Terminal
+PackageUrl: https://cli.devin.ai/docs
+License: Proprietary
+LicenseUrl: https://cognition.ai/terms-of-service
+ShortDescription: A fast and minimal agent that lives both in your terminal and in the cloud.
+Tags:
+- agent
+- agentic
+- ai
+- chatbot
+- code
+- coding
+- large-language-model
+- llm
+ReleaseNotes: |-
+
+
+ Added
+ - skill search can find model-invocable skills recursively under a project path and filter them by keywords.
+
+
+ Changed
+ - Default model is now SWE 1.6 Fast instead of Adaptive.
+
+
+ Fixed
+ - apply_patch diffs now appear incrementally as the patch is being written, not just after it completes. Both new-file and modify-existing-file patches show diffs progressively.
+ - Command hints now show the binary name used to launch Devin CLI when run through a renamed binary, symlink, or alias.
+ - Fixed process hang when MCP OAuth dynamic client registration fails. The local callback server was not properly shut down on error, causing the process to block indefinitely waiting for a browser redirect that would never arrive.
+ - /steps, /revert, and /fork now show and work with steps from before compaction. Previously, compacting a session made all earlier steps invisible and unrevertible.
+ - Text now correctly appears before tool calls in scrollback when both are produced in the same streaming turn.
+ReleaseNotesUrl: https://cli.devin.ai/docs/changelog/stable
+PurchaseUrl: https://devin.ai/pricing
+Documentations:
+- DocumentLabel: Docs
+ DocumentUrl: https://cli.devin.ai/docs
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/c/CognitionAI/Devin/2026.5.5-0/CognitionAI.Devin.locale.zh-CN.yaml b/manifests/c/CognitionAI/Devin/2026.5.5-0/CognitionAI.Devin.locale.zh-CN.yaml
new file mode 100644
index 000000000000..1f856cec7790
--- /dev/null
+++ b/manifests/c/CognitionAI/Devin/2026.5.5-0/CognitionAI.Devin.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: CognitionAI.Devin
+PackageVersion: 2026.5.5-0
+PackageLocale: zh-CN
+License: 专有软件
+ShortDescription: 一款快速且极简的智能体,既可在终端本地运行,也可在云端部署。
+Tags:
+- 人工智能
+- 代码
+- 大语言模型
+- 智能体
+- 编程
+- 聊天机器人
+- 自主智能
+Documentations:
+- DocumentLabel: 文档
+ DocumentUrl: https://cli.devin.ai/docs
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/c/CognitionAI/Devin/2026.5.5-0/CognitionAI.Devin.yaml b/manifests/c/CognitionAI/Devin/2026.5.5-0/CognitionAI.Devin.yaml
new file mode 100644
index 000000000000..b671a8331454
--- /dev/null
+++ b/manifests/c/CognitionAI/Devin/2026.5.5-0/CognitionAI.Devin.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: CognitionAI.Devin
+PackageVersion: 2026.5.5-0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/c/ccseer/Seer/4.3.2/ccseer.Seer.installer.yaml b/manifests/c/ccseer/Seer/4.3.2/ccseer.Seer.installer.yaml
new file mode 100644
index 000000000000..cae776a42129
--- /dev/null
+++ b/manifests/c/ccseer/Seer/4.3.2/ccseer.Seer.installer.yaml
@@ -0,0 +1,25 @@
+PackageIdentifier: ccseer.Seer
+PackageVersion: 4.3.2
+InstallerLocale: en-US
+InstallerType: nullsoft
+Scope: machine
+InstallModes:
+ - interactive
+ - silent
+ - silentWithProgress
+UpgradeBehavior: install
+Protocols:
+ - seer
+FileExtensions:
+ - png
+ - jpg
+ - pdf
+ - zip
+ - rar
+Installers:
+ - Architecture: x64
+ InstallerUrl: https://github.com/ccseer/Seer/releases/download/v4.3.2/Seer-4.3.2.exe
+ InstallerSha256: f1f9d647aa0d097a566151270d685cbab4a04ea3e2f91ff5d182fd4de8b604a1
+ ProductCode: Seer
+ManifestType: installer
+ManifestVersion: 1.6.0
diff --git a/manifests/c/ccseer/Seer/4.3.2/ccseer.Seer.locale.en-US.yaml b/manifests/c/ccseer/Seer/4.3.2/ccseer.Seer.locale.en-US.yaml
new file mode 100644
index 000000000000..5cbcbd5fc865
--- /dev/null
+++ b/manifests/c/ccseer/Seer/4.3.2/ccseer.Seer.locale.en-US.yaml
@@ -0,0 +1,20 @@
+PackageIdentifier: ccseer.Seer
+PackageVersion: 4.3.2
+PackageLocale: en-US
+Publisher: ccseer
+PublisherUrl: https://1218.io
+PublisherSupportUrl: https://github.com/ccseer/Seer/issues
+Author: ccseer
+PackageName: Seer
+PackageUrl: https://1218.io
+License: Proprietary
+LicenseUrl: https://1218.io/seer/eula.txt
+Copyright: Copyright (c) 2015-present 1218.io
+ShortDescription: A windows quick look tool.
+Description: Seer is a Windows tool that allows you to preview files quickly by pressing the Space key.
+Tags:
+ - quicklook
+ - preview
+ - tool
+ManifestType: defaultLocale
+ManifestVersion: 1.6.0
diff --git a/manifests/c/ccseer/Seer/4.3.2/ccseer.Seer.yaml b/manifests/c/ccseer/Seer/4.3.2/ccseer.Seer.yaml
new file mode 100644
index 000000000000..1f6b9c8feb67
--- /dev/null
+++ b/manifests/c/ccseer/Seer/4.3.2/ccseer.Seer.yaml
@@ -0,0 +1,5 @@
+PackageIdentifier: ccseer.Seer
+PackageVersion: 4.3.2
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.6.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/Devolutions/UniGetUI/2026.1.8/Devolutions.UniGetUI.installer.yaml b/manifests/d/Devolutions/UniGetUI/2026.1.8/Devolutions.UniGetUI.installer.yaml
new file mode 100644
index 000000000000..9c190f60a528
--- /dev/null
+++ b/manifests/d/Devolutions/UniGetUI/2026.1.8/Devolutions.UniGetUI.installer.yaml
@@ -0,0 +1,47 @@
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Devolutions.UniGetUI
+PackageVersion: 2026.1.8
+InstallerType: inno
+InstallModes:
+- interactive
+- silent
+- silentWithProgress
+UpgradeBehavior: install
+ProductCode: '{889610CC-4337-4BDB-AC3B-4F21806C0BDE}_is1'
+ReleaseDate: 2026-05-05
+AppsAndFeaturesEntries:
+- ProductCode: '{889610CC-4337-4BDB-AC3B-4F21806C0BDE}_is1'
+ElevationRequirement: elevatesSelf
+Installers:
+- Architecture: x64
+ Scope: user
+ InstallerUrl: https://cdn.devolutions.net/download/Devolutions.UniGetUI.win-x64.2026.1.8.0.exe
+ InstallerSha256: 00C46AA2D20582016AFA9EFF64A0B141E0B2D413B9FF944375105AC6BF40B8CE
+ InstallerSwitches:
+ Custom: /CURRENTUSER /NoWinGet /NoAutoStart
+- Architecture: x64
+ Scope: machine
+ InstallerUrl: https://cdn.devolutions.net/download/Devolutions.UniGetUI.win-x64.2026.1.8.0.exe
+ InstallerSha256: 00C46AA2D20582016AFA9EFF64A0B141E0B2D413B9FF944375105AC6BF40B8CE
+ InstallerSwitches:
+ Custom: /ALLUSERS /NoWinGet /NoAutoStart
+ InstallationMetadata:
+ DefaultInstallLocation: '%ProgramFiles%\UniGetUI'
+- Architecture: arm64
+ Scope: user
+ InstallerUrl: https://cdn.devolutions.net/download/Devolutions.UniGetUI.win-arm64.2026.1.8.0.exe
+ InstallerSha256: F1AF1B695A3C8616A455916DE3530744C20813CB2A70579A8BD64E43E0FC329F
+ InstallerSwitches:
+ Custom: /CURRENTUSER /NoWinGet /NoAutoStart
+- Architecture: arm64
+ Scope: machine
+ InstallerUrl: https://cdn.devolutions.net/download/Devolutions.UniGetUI.win-arm64.2026.1.8.0.exe
+ InstallerSha256: F1AF1B695A3C8616A455916DE3530744C20813CB2A70579A8BD64E43E0FC329F
+ InstallerSwitches:
+ Custom: /ALLUSERS /NoWinGet /NoAutoStart
+ InstallationMetadata:
+ DefaultInstallLocation: '%ProgramFiles%\UniGetUI'
+ManifestType: installer
+ManifestVersion: 1.12.0
+
diff --git a/manifests/d/Devolutions/UniGetUI/2026.1.8/Devolutions.UniGetUI.locale.en-US.yaml b/manifests/d/Devolutions/UniGetUI/2026.1.8/Devolutions.UniGetUI.locale.en-US.yaml
new file mode 100644
index 000000000000..4312bd369d8f
--- /dev/null
+++ b/manifests/d/Devolutions/UniGetUI/2026.1.8/Devolutions.UniGetUI.locale.en-US.yaml
@@ -0,0 +1,32 @@
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Devolutions.UniGetUI
+PackageVersion: 2026.1.8
+PackageLocale: en-US
+Publisher: Devolutions Inc.
+PublisherUrl: https://devolutions.net/
+PublisherSupportUrl: https://devolutions.net/support/
+PackageName: UniGetUI
+PackageUrl: https://devolutions.net/unigetui/
+License: MIT
+LicenseUrl: https://github.com/Devolutions/UniGetUI/blob/HEAD/LICENSE
+ShortDescription: The Graphical Interface for your package managers.
+Description: UniGetUI is an intuitive GUI for the most common CLI package managers on Windows, including WinGet, Scoop, Chocolatey, Pip, Npm, .NET Tool, PowerShell Gallery, and more. With UniGetUI, you can discover, install, update, and uninstall software from multiple package managers through one interface.
+Moniker: unigetui
+Tags:
+- chocolatey
+- dotnet-tool
+- microsoft-store
+- npm
+- pip
+- powershell-gallery
+- scoop
+- uniget-ui
+- winget
+- winget-ui
+- wingetui
+Copyright: Copyright (c) 2026 Devolutions Inc.
+ReleaseNotesUrl: https://github.com/Devolutions/UniGetUI/releases/tag/v2026.1.8
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
+
diff --git a/manifests/d/Devolutions/UniGetUI/2026.1.8/Devolutions.UniGetUI.yaml b/manifests/d/Devolutions/UniGetUI/2026.1.8/Devolutions.UniGetUI.yaml
new file mode 100644
index 000000000000..6bfa404a623b
--- /dev/null
+++ b/manifests/d/Devolutions/UniGetUI/2026.1.8/Devolutions.UniGetUI.yaml
@@ -0,0 +1,8 @@
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: Devolutions.UniGetUI
+PackageVersion: 2026.1.8
+DefaultLocale: en-US
+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/e/EastMoney/EastMoney/11.9.1/EastMoney.EastMoney.locale.en-US.yaml b/manifests/e/EastMoney/EastMoney/11.9.1/EastMoney.EastMoney.locale.en-US.yaml
index 0a777174a61d..5cfcd4ade0fe 100644
--- a/manifests/e/EastMoney/EastMoney/11.9.1/EastMoney.EastMoney.locale.en-US.yaml
+++ b/manifests/e/EastMoney/EastMoney/11.9.1/EastMoney.EastMoney.locale.en-US.yaml
@@ -13,15 +13,17 @@ PackageName: Eastmoney
PackageUrl: https://emdesk.eastmoney.com/pc_activity/Pages/VIPTrade/pages/
License: Proprietary
LicenseUrl: https://zqhd.eastmoney.com/cp/yhxkxy2.htm
-Copyright: Copyright (C) 2004-2026
+Copyright: © 2004-2026
CopyrightUrl: https://about.eastmoney.com/home/legal
-ShortDescription: Your one-stop financial platform
+ShortDescription: Your one-stop financial platform.
Description: East Money provides a one-stop solution for trading stocks, buying funds, and managing investments. It supports real-time global market data, including A-shares, US stocks, Hong Kong stocks, funds, bonds, indices, futures, options, spot markets, and forex. Users can access timely and professional financial news updates 24/7, along with instant synchronization of individual stock announcements and research reports. It also features an interactive stock community, where users can engage with fund managers, investment advisors, and stock experts. It offers advanced indicators to track capital flows and analyze transaction data, helping investors make informed decisions. Additionally, the software includes convenient trading systems with quick order execution and customizable window settings, making it ideal for working professionals.
Tags:
- finance
- index
- market
- stock
+- prc
+- china
ReleaseNotesUrl: https://eminfo.eastmoney.com/helpcenternew/pages/helper.html
Documentations:
- DocumentLabel: Help
diff --git a/manifests/e/Elastic/Filebeat/9.4.0/Elastic.Filebeat.installer.yaml b/manifests/e/Elastic/Filebeat/9.4.0/Elastic.Filebeat.installer.yaml
new file mode 100644
index 000000000000..07d7d0826dba
--- /dev/null
+++ b/manifests/e/Elastic/Filebeat/9.4.0/Elastic.Filebeat.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: Elastic.Filebeat
+PackageVersion: 9.4.0
+InstallerType: wix
+Scope: machine
+InstallerSwitches:
+ InstallLocation: INSTALLDIR=""
+UpgradeBehavior: install
+Commands:
+- filebeat
+ProductCode: '{84CD8645-4DB1-5D89-81E3-071FF2CC0EAE}'
+ReleaseDate: 2026-05-05
+AppsAndFeaturesEntries:
+- UpgradeCode: '{84CD8645-4DB1-5D89-81E3-071F628CFEAE}'
+Installers:
+- Architecture: x64
+ InstallerUrl: https://artifacts.elastic.co/downloads/beats/filebeat/filebeat-9.4.0-windows-x86_64.msi
+ InstallerSha256: A1FA781E3D14B876A9B6A30C8367337961373EC0CEC97033EBFD9984E538FF5A
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Elastic/Filebeat/9.4.0/Elastic.Filebeat.locale.en-US.yaml b/manifests/e/Elastic/Filebeat/9.4.0/Elastic.Filebeat.locale.en-US.yaml
new file mode 100644
index 000000000000..05723abc96af
--- /dev/null
+++ b/manifests/e/Elastic/Filebeat/9.4.0/Elastic.Filebeat.locale.en-US.yaml
@@ -0,0 +1,21 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Elastic.Filebeat
+PackageVersion: 9.4.0
+PackageLocale: en-US
+Publisher: Elastic
+PublisherUrl: https://www.elastic.co/
+PublisherSupportUrl: https://github.com/elastic/beats/issues
+PrivacyUrl: https://www.elastic.co/legal/privacy-statement
+Author: Elasticsearch B.V.
+PackageName: Beats filebeat
+PackageUrl: https://www.elastic.co/downloads/beats/filebeat
+License: Elastic-2.0
+LicenseUrl: https://github.com/elastic/beats/blob/HEAD/LICENSE.txt
+Copyright: © 2026. Elasticsearch B.V. All Rights Reserved
+ShortDescription: Tails and ships log files
+Description: Filebeat is an open source file harvester, mostly used to fetch logs files and feed them into logstash. Together with the libbeat lumberjack output is a replacement for logstash-forwarder.
+ReleaseNotesUrl: https://www.elastic.co/docs/release-notes/beats
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Elastic/Filebeat/9.4.0/Elastic.Filebeat.locale.zh-CN.yaml b/manifests/e/Elastic/Filebeat/9.4.0/Elastic.Filebeat.locale.zh-CN.yaml
new file mode 100644
index 000000000000..c85c33a009f6
--- /dev/null
+++ b/manifests/e/Elastic/Filebeat/9.4.0/Elastic.Filebeat.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: Elastic.Filebeat
+PackageVersion: 9.4.0
+PackageLocale: zh-CN
+ShortDescription: 跟踪和传输日志文件
+Description: Filebeat 是一款开源的文件采集器,主要用于收集日志文件并将其传输至 Logstash。结合 libbeat 的 lumberjack 输出功能,它可作为 logstash-forwarder 的替代方案。
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Elastic/Filebeat/9.4.0/Elastic.Filebeat.yaml b/manifests/e/Elastic/Filebeat/9.4.0/Elastic.Filebeat.yaml
new file mode 100644
index 000000000000..f7b4f6e66f3e
--- /dev/null
+++ b/manifests/e/Elastic/Filebeat/9.4.0/Elastic.Filebeat.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: Elastic.Filebeat
+PackageVersion: 9.4.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/e/ente-io/photos-desktop/1.7.23/ente-io.photos-desktop.installer.yaml b/manifests/e/ente-io/photos-desktop/1.7.23/ente-io.photos-desktop.installer.yaml
new file mode 100644
index 000000000000..61b369a401cc
--- /dev/null
+++ b/manifests/e/ente-io/photos-desktop/1.7.23/ente-io.photos-desktop.installer.yaml
@@ -0,0 +1,25 @@
+# Created with komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: ente-io.photos-desktop
+PackageVersion: 1.7.23
+InstallerLocale: en-US
+InstallerType: nullsoft
+ProductCode: fb682768-51c6-5397-92da-171dc1777808
+ReleaseDate: 2026-05-05
+AppsAndFeaturesEntries:
+- DisplayName: ente 1.7.23
+ Publisher: Ente
+ ProductCode: fb682768-51c6-5397-92da-171dc1777808
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/ente-io/photos-desktop/releases/download/v1.7.23/ente-1.7.23-x64.exe
+ InstallerSha256: FF4B195B779D0D56D19E0730D487E13AB407C6B7BBD8CB0F8499316D60196A03
+- Architecture: x86
+ InstallerUrl: https://github.com/ente-io/photos-desktop/releases/download/v1.7.23/ente-1.7.23.exe
+ InstallerSha256: A90358B002588EE8B58CD322DC8CA657C5D022D020E210E12B883B5550C7B9D5
+- Architecture: arm64
+ InstallerUrl: https://github.com/ente-io/photos-desktop/releases/download/v1.7.23/ente-1.7.23-arm64.exe
+ InstallerSha256: 63AA433399B555088FD8721FB88800DDC89514BF9AC660659E004CC4BC653083
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/e/ente-io/photos-desktop/1.7.23/ente-io.photos-desktop.locale.en-US.yaml b/manifests/e/ente-io/photos-desktop/1.7.23/ente-io.photos-desktop.locale.en-US.yaml
new file mode 100644
index 000000000000..74910efc0b49
--- /dev/null
+++ b/manifests/e/ente-io/photos-desktop/1.7.23/ente-io.photos-desktop.locale.en-US.yaml
@@ -0,0 +1,25 @@
+# Created with komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: ente-io.photos-desktop
+PackageVersion: 1.7.23
+PackageLocale: en-US
+Publisher: ente
+PublisherUrl: https://github.com/ente-io
+PublisherSupportUrl: https://github.com/ente-io/photos-desktop/issues
+PackageName: ente
+PackageUrl: https://github.com/ente-io/photos-desktop
+License: AGPL-3.0
+LicenseUrl: https://github.com/ente-io/photos-desktop/blob/HEAD/LICENSE
+Copyright: Copyright © 2022 ente
+ShortDescription: Desktop client for ente.io
+Moniker: ente-photos
+ReleaseNotes: |-
+ - All People dialogs shows entire face clusters
+ - Public Albums app separated from Photos app
+ - Faster and Light-weight public albums
+ - Memory and Memory Lane links
+ - Improvements (Public albums, file viewer, metadata preservation on editing, and more)
+ReleaseNotesUrl: https://github.com/ente-io/photos-desktop/releases/tag/v1.7.23
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/e/ente-io/photos-desktop/1.7.23/ente-io.photos-desktop.yaml b/manifests/e/ente-io/photos-desktop/1.7.23/ente-io.photos-desktop.yaml
new file mode 100644
index 000000000000..7f171dc52c26
--- /dev/null
+++ b/manifests/e/ente-io/photos-desktop/1.7.23/ente-io.photos-desktop.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: ente-io.photos-desktop
+PackageVersion: 1.7.23
+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/f/Freelensapp/Freelens/1.9.0/Freelensapp.Freelens.yaml b/manifests/f/Freelensapp/Freelens/1.9.0/Freelensapp.Freelens.yaml
new file mode 100644
index 000000000000..61ab99b3094c
--- /dev/null
+++ b/manifests/f/Freelensapp/Freelens/1.9.0/Freelensapp.Freelens.yaml
@@ -0,0 +1,7 @@
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json
+#
+PackageIdentifier: Freelensapp.Freelens
+PackageVersion: 1.9.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.10.0
diff --git a/manifests/f/FunRoutine/WorkFlowy/4.3.2605051101/FunRoutine.WorkFlowy.installer.yaml b/manifests/f/FunRoutine/WorkFlowy/4.3.2605051101/FunRoutine.WorkFlowy.installer.yaml
new file mode 100644
index 000000000000..b9556fd5d201
--- /dev/null
+++ b/manifests/f/FunRoutine/WorkFlowy/4.3.2605051101/FunRoutine.WorkFlowy.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: FunRoutine.WorkFlowy
+PackageVersion: 4.3.2605051101
+InstallerType: nullsoft
+InstallerSwitches:
+ Upgrade: --updated
+UpgradeBehavior: install
+Protocols:
+- workflowy
+ProductCode: 338bed7b-1324-505d-8cb6-5c266cbaa6b3
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x86
+ InstallerUrl: https://github.com/workflowy/desktop/releases/download/v4.3.2605051101/WorkFlowy-Installer-4.3.2605051101.exe
+ InstallerSha256: A39831ED163DD39AC1E4859864C9F5A1EC9F6D8B5F48A816520C04829A1421DC
+- Architecture: x64
+ InstallerUrl: https://github.com/workflowy/desktop/releases/download/v4.3.2605051101/WorkFlowy-Installer-4.3.2605051101.exe
+ InstallerSha256: A39831ED163DD39AC1E4859864C9F5A1EC9F6D8B5F48A816520C04829A1421DC
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/f/FunRoutine/WorkFlowy/4.3.2605051101/FunRoutine.WorkFlowy.locale.en-US.yaml b/manifests/f/FunRoutine/WorkFlowy/4.3.2605051101/FunRoutine.WorkFlowy.locale.en-US.yaml
new file mode 100644
index 000000000000..99a00fcd07bb
--- /dev/null
+++ b/manifests/f/FunRoutine/WorkFlowy/4.3.2605051101/FunRoutine.WorkFlowy.locale.en-US.yaml
@@ -0,0 +1,38 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: FunRoutine.WorkFlowy
+PackageVersion: 4.3.2605051101
+PackageLocale: en-US
+Publisher: WorkFlowy
+PublisherUrl: https://workflowy.com/
+PublisherSupportUrl: https://workflowy.zendesk.com/
+PrivacyUrl: https://workflowy.com/privacy-policy/
+Author: FunRoutine Inc.
+PackageName: WorkFlowy
+PackageUrl: https://workflowy.com/
+License: Proprietary
+Copyright: Copyright © 2026 WorkFlowy
+ShortDescription: Collect your ideas, develop them, share them, and turn them into reality.
+Tags:
+- agenda
+- calendar
+- checklist
+- gtd
+- list
+- memo
+- memorandum
+- notes
+- schedule
+- task
+- to-do
+- todo
+ReleaseNotesUrl: https://github.com/workflowy/desktop/releases/tag/v4.3.2605051101
+PurchaseUrl: https://workflowy.com/pricing/
+Documentations:
+- DocumentLabel: Guides
+ DocumentUrl: https://workflowy.com/guides/
+- DocumentLabel: Knowledge Base
+ DocumentUrl: https://workflowy.com/learn/
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/f/FunRoutine/WorkFlowy/4.3.2605051101/FunRoutine.WorkFlowy.locale.zh-CN.yaml b/manifests/f/FunRoutine/WorkFlowy/4.3.2605051101/FunRoutine.WorkFlowy.locale.zh-CN.yaml
new file mode 100644
index 000000000000..064df38b0cfd
--- /dev/null
+++ b/manifests/f/FunRoutine/WorkFlowy/4.3.2605051101/FunRoutine.WorkFlowy.locale.zh-CN.yaml
@@ -0,0 +1,40 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: FunRoutine.WorkFlowy
+PackageVersion: 4.3.2605051101
+PackageLocale: zh-CN
+Publisher: WorkFlowy
+PublisherUrl: https://workflowy.com/
+PublisherSupportUrl: https://workflowy.zendesk.com/
+PrivacyUrl: https://workflowy.com/privacy-policy/
+Author: FunRoutine Inc.
+PackageName: WorkFlowy
+PackageUrl: https://workflowy.com/
+License: 专有软件
+Copyright: Copyright © 2026 WorkFlowy
+ShortDescription: 收集你的想法,开发、分享它们,并将其变为现实。
+Tags:
+- 任务
+- 列表
+- 备忘
+- 备忘录
+- 待办
+- 待办事项
+- 提醒事项
+- 日历
+- 日程
+- 日程管理
+- 时间管理
+- 清单
+- 笔记
+- 议程
+ReleaseNotesUrl: https://github.com/workflowy/desktop/releases/tag/v4.3.2605051101
+PurchaseUrl: https://workflowy.com/pricing/
+Documentations:
+- DocumentLabel: 指南
+ DocumentUrl: https://workflowy.com/guides/
+- DocumentLabel: 知识库
+ DocumentUrl: https://workflowy.com/learn/
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/f/FunRoutine/WorkFlowy/4.3.2605051101/FunRoutine.WorkFlowy.yaml b/manifests/f/FunRoutine/WorkFlowy/4.3.2605051101/FunRoutine.WorkFlowy.yaml
new file mode 100644
index 000000000000..30cf97e3c670
--- /dev/null
+++ b/manifests/f/FunRoutine/WorkFlowy/4.3.2605051101/FunRoutine.WorkFlowy.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: FunRoutine.WorkFlowy
+PackageVersion: 4.3.2605051101
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/f/freenginx/nginx/1.31.0/freenginx.nginx.installer.yaml b/manifests/f/freenginx/nginx/1.31.0/freenginx.nginx.installer.yaml
new file mode 100644
index 000000000000..ee43c499d824
--- /dev/null
+++ b/manifests/f/freenginx/nginx/1.31.0/freenginx.nginx.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: freenginx.nginx
+PackageVersion: 1.31.0
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: freenginx-1.31.0\nginx.exe
+InstallModes:
+- silent
+UpgradeBehavior: install
+Installers:
+- Architecture: x86
+ InstallerUrl: https://freenginx.org/download/freenginx-1.31.0.zip
+ InstallerSha256: 82A3A4AF497322E9A30330F53C6A7F7203CCB1941240D15673316FC359812C5A
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/f/freenginx/nginx/1.31.0/freenginx.nginx.locale.en-US.yaml b/manifests/f/freenginx/nginx/1.31.0/freenginx.nginx.locale.en-US.yaml
new file mode 100644
index 000000000000..7b3226eff84b
--- /dev/null
+++ b/manifests/f/freenginx/nginx/1.31.0/freenginx.nginx.locale.en-US.yaml
@@ -0,0 +1,15 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: freenginx.nginx
+PackageVersion: 1.31.0
+PackageLocale: en-US
+Publisher: freenginx
+PublisherUrl: https://freenginx.org/
+PackageName: nginx
+PackageUrl: https://freenginx.org/
+License: BSD-2
+LicenseUrl: https://freenginx.org/LICENSE
+ShortDescription: freenginx is an effort to preserve free and open development of nginx [engine x], an HTTP and reverse proxy server, a mail proxy server, and a generic TCP/UDP proxy server, originally written by Igor Sysoev.
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/f/freenginx/nginx/1.31.0/freenginx.nginx.yaml b/manifests/f/freenginx/nginx/1.31.0/freenginx.nginx.yaml
new file mode 100644
index 000000000000..fbc1f090a65e
--- /dev/null
+++ b/manifests/f/freenginx/nginx/1.31.0/freenginx.nginx.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: freenginx.nginx
+PackageVersion: 1.31.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/g/GitHub/Copilot/Prerelease/v1.0.41-1/GitHub.Copilot.Prerelease.installer.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.41-1/GitHub.Copilot.Prerelease.installer.yaml
new file mode 100644
index 000000000000..620395ab152f
--- /dev/null
+++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.41-1/GitHub.Copilot.Prerelease.installer.yaml
@@ -0,0 +1,23 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: GitHub.Copilot.Prerelease
+PackageVersion: v1.0.41-1
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: copilot.exe
+Dependencies:
+ PackageDependencies:
+ - PackageIdentifier: Microsoft.PowerShell
+ MinimumVersion: 7.0.0
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/github/copilot-cli/releases/download/v1.0.41-1/copilot-win32-x64.zip
+ InstallerSha256: EF7CA1B1C2E5838D096DCAB29A695D2643B7BA32E6F245A9E16E5E446752E84D
+- Architecture: arm64
+ InstallerUrl: https://github.com/github/copilot-cli/releases/download/v1.0.41-1/copilot-win32-arm64.zip
+ InstallerSha256: 3951CB11DE93C2F77B7BEC1B079802A9AC0934B747D248A6A1FB25A256705849
+ManifestType: installer
+ManifestVersion: 1.12.0
+ReleaseDate: 2026-05-05
diff --git a/manifests/g/GitHub/Copilot/Prerelease/v1.0.41-1/GitHub.Copilot.Prerelease.locale.en-US.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.41-1/GitHub.Copilot.Prerelease.locale.en-US.yaml
new file mode 100644
index 000000000000..f0b2e7f6c401
--- /dev/null
+++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.41-1/GitHub.Copilot.Prerelease.locale.en-US.yaml
@@ -0,0 +1,29 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: GitHub.Copilot.Prerelease
+PackageVersion: v1.0.41-1
+PackageLocale: en-US
+Publisher: GitHub, Inc.
+PublisherUrl: https://github.com/home/
+PublisherSupportUrl: https://support.github.com/
+PrivacyUrl: https://docs.github.com/site-policy/privacy-policies/github-privacy-statement
+PackageName: Copilot CLI (Preview)
+PackageUrl: https://github.com/github/copilot-cli
+License: Proprietary
+LicenseUrl: https://docs.github.com/en/site-policy/github-terms/github-pre-release-license-terms
+Copyright: Copyright (c) GitHub 2025. All rights reserved.
+CopyrightUrl: https://github.com/github/copilot-cli?tab=License-1-ov-file
+ShortDescription: GitHub Copilot CLI brings the power of Copilot coding agent directly to your terminal.
+Description: GitHub Copilot CLI brings AI-powered coding assistance directly to your command line, enabling you to build, debug, and understand code through natural language conversations. Powered by the same agentic harness as GitHub's Copilot coding agent, it provides intelligent assistance while staying deeply integrated with your GitHub workflow.
+Moniker: copilot-prerelease
+Tags:
+- cli
+- copilot
+- github
+ReleaseNotesUrl: https://github.com/github/copilot-cli/releases/tag/v1.0.41-1
+Documentations:
+- DocumentLabel: Wiki
+ DocumentUrl: https://github.com/github/copilot-cli/wiki
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/g/GitHub/Copilot/Prerelease/v1.0.41-1/GitHub.Copilot.Prerelease.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.41-1/GitHub.Copilot.Prerelease.yaml
new file mode 100644
index 000000000000..8c1ebc1306dd
--- /dev/null
+++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.41-1/GitHub.Copilot.Prerelease.yaml
@@ -0,0 +1,8 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: GitHub.Copilot.Prerelease
+PackageVersion: v1.0.41-1
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/g/Google/AndroidStudio/2025.3.4.7/Google.AndroidStudio.installer.yaml b/manifests/g/Google/AndroidStudio/2025.3.4.7/Google.AndroidStudio.installer.yaml
new file mode 100644
index 000000000000..848af2a45e54
--- /dev/null
+++ b/manifests/g/Google/AndroidStudio/2025.3.4.7/Google.AndroidStudio.installer.yaml
@@ -0,0 +1,22 @@
+# Created by Anthelion using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Google.AndroidStudio
+PackageVersion: 2025.3.4.7
+InstallerType: nullsoft
+Scope: machine
+InstallModes:
+- interactive
+- silent
+InstallerSuccessCodes:
+- 1223
+UpgradeBehavior: deny
+ReleaseDate: 2026-05-05
+RequireExplicitUpgrade: true
+ElevationRequirement: elevatesSelf
+Installers:
+- Architecture: x64
+ InstallerUrl: https://edgedl.me.gvt1.com/android/studio/install/2025.3.4.7/android-studio-panda4-patch1-windows.exe
+ InstallerSha256: D0DD178A3D92B4151FD895BB8E6937C0A722AE5B6CCADAC5F88D24F213B44BF2
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/g/Google/AndroidStudio/2025.3.4.7/Google.AndroidStudio.locale.en-US.yaml b/manifests/g/Google/AndroidStudio/2025.3.4.7/Google.AndroidStudio.locale.en-US.yaml
new file mode 100644
index 000000000000..6cf26eeb425b
--- /dev/null
+++ b/manifests/g/Google/AndroidStudio/2025.3.4.7/Google.AndroidStudio.locale.en-US.yaml
@@ -0,0 +1,47 @@
+# Created by Anthelion using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Google.AndroidStudio
+PackageVersion: 2025.3.4.7
+PackageLocale: en-US
+Publisher: Google LLC
+PublisherUrl: https://developer.android.com/
+PublisherSupportUrl: https://developer.android.com/studio/intro
+PrivacyUrl: https://policies.google.com/privacy
+PackageName: Android Studio
+PackageUrl: https://developer.android.com/studio
+License: Android Software Development Kit License Agreement
+LicenseUrl: https://developer.android.com/studio/terms
+Copyright: Copyright © 2000–2024 Google
+CopyrightUrl: https://developer.android.com/studio/terms
+ShortDescription: The official Integrated Development Environment (IDE) for Android app development.
+Description: |-
+ Android Studio is the official Integrated Development Environment (IDE) for Android app development.
+ Based on the powerful code editor and developer tools from IntelliJ IDEA,
+ Android Studio offers even more features that enhance your productivity when building Android apps.
+Moniker: android-studio
+Tags:
+- aab
+- adb
+- android
+- androidstudio
+- apk
+- app
+- debug
+- development
+- emulator
+- fastboot
+- ide
+- intellij
+- studio
+Agreements:
+- AgreementLabel: Android Software Development Kit License Agreement
+ AgreementUrl: https://developer.android.com/studio/terms
+ReleaseNotesUrl: https://androidstudio.googleblog.com/
+Documentations:
+- DocumentLabel: Known Issues
+ DocumentUrl: https://developer.android.com/studio/known-issues
+- DocumentLabel: Troubleshoot
+ DocumentUrl: https://developer.android.com/studio/troubleshoot
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/g/Google/AndroidStudio/2025.3.4.7/Google.AndroidStudio.yaml b/manifests/g/Google/AndroidStudio/2025.3.4.7/Google.AndroidStudio.yaml
new file mode 100644
index 000000000000..8f4cb6043a5e
--- /dev/null
+++ b/manifests/g/Google/AndroidStudio/2025.3.4.7/Google.AndroidStudio.yaml
@@ -0,0 +1,8 @@
+# Created by Anthelion using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: Google.AndroidStudio
+PackageVersion: 2025.3.4.7
+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/g/goshkow/ZapretHub/1.4.4.0/goshkow.ZapretHub.installer.yaml b/manifests/g/goshkow/ZapretHub/1.4.4.0/goshkow.ZapretHub.installer.yaml
new file mode 100644
index 000000000000..86583610f0f8
--- /dev/null
+++ b/manifests/g/goshkow/ZapretHub/1.4.4.0/goshkow.ZapretHub.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: goshkow.ZapretHub
+PackageVersion: 1.4.4.0
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: zapret_hub\zapret_hub.exe
+ArchiveBinariesDependOnPath: true
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/goshkow/Zapret-Hub/releases/download/v1.4.4/zapret_hub_1.4.4_portable_win_x64.zip
+ InstallerSha256: 1e55830e50079bb247541ced396e6bad692dc4b540c007d1080120df0d74a9dd
+ManifestType: installer
+ManifestVersion: 1.12.0
+ReleaseDate: 2026-04-29
diff --git a/manifests/g/goshkow/ZapretHub/1.4.4.0/goshkow.ZapretHub.locale.en-US.yaml b/manifests/g/goshkow/ZapretHub/1.4.4.0/goshkow.ZapretHub.locale.en-US.yaml
new file mode 100644
index 000000000000..faa8997350d8
--- /dev/null
+++ b/manifests/g/goshkow/ZapretHub/1.4.4.0/goshkow.ZapretHub.locale.en-US.yaml
@@ -0,0 +1,36 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: goshkow.ZapretHub
+PackageVersion: 1.4.4.0
+PackageLocale: en-US
+Publisher: goshkow
+PublisherUrl: https://github.com/goshkow
+PublisherSupportUrl: https://github.com/goshkow/Zapret-Hub/issues
+PackageName: Zapret Hub
+PackageUrl: https://github.com/goshkow/Zapret-Hub
+License: MIT License
+ShortDescription: GUI for zapret and TG WS Proxy
+Tags:
+- arm
+- discord-youtube
+- dpi-bypassing
+- gui
+- launcher
+- portable-app
+- python
+- russian
+- telegram-proxy
+- tg-ws-proxy
+- ui
+- unblocker
+- windivert
+- windows
+- x64
+- youtube-unblocker
+ReleaseNotesUrl: https://github.com/goshkow/Zapret-Hub/releases/tag/v1.4.4
+Documentations:
+- DocumentLabel: Wiki
+ DocumentUrl: https://github.com/goshkow/Zapret-Hub/wiki
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/g/goshkow/ZapretHub/1.4.4.0/goshkow.ZapretHub.yaml b/manifests/g/goshkow/ZapretHub/1.4.4.0/goshkow.ZapretHub.yaml
new file mode 100644
index 000000000000..a5f52dce7f47
--- /dev/null
+++ b/manifests/g/goshkow/ZapretHub/1.4.4.0/goshkow.ZapretHub.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: goshkow.ZapretHub
+PackageVersion: 1.4.4.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/k/KDE/Bomber/master/KDE.Bomber.installer.yaml b/manifests/k/KDE/Bomber/master/KDE.Bomber.installer.yaml
index 570bdd4af32e..9754dd2ee06e 100644
--- a/manifests/k/KDE/Bomber/master/KDE.Bomber.installer.yaml
+++ b/manifests/k/KDE/Bomber/master/KDE.Bomber.installer.yaml
@@ -9,14 +9,14 @@ ProductCode: bomber
Installers:
- Architecture: x64
Scope: user
- InstallerUrl: https://cdn.kde.org/ci-builds/games/bomber/master/windows/bomber-master-837-windows-cl-msvc2022-x86_64.exe
- InstallerSha256: 9F9EB0D31B651108EB6FC0968BBB3305213AA8FA78D2864FE347762B19C5A7DB
+ InstallerUrl: https://cdn.kde.org/ci-builds/games/bomber/master/windows/bomber-master-839-windows-cl-msvc2022-x86_64.exe
+ InstallerSha256: F0E26B305E9405BB1F1A256229709758476F14E1FA5C229AADFF6626723FA774
InstallerSwitches:
Custom: /CurrentUser
- Architecture: x64
Scope: machine
- InstallerUrl: https://cdn.kde.org/ci-builds/games/bomber/master/windows/bomber-master-837-windows-cl-msvc2022-x86_64.exe
- InstallerSha256: 9F9EB0D31B651108EB6FC0968BBB3305213AA8FA78D2864FE347762B19C5A7DB
+ InstallerUrl: https://cdn.kde.org/ci-builds/games/bomber/master/windows/bomber-master-839-windows-cl-msvc2022-x86_64.exe
+ InstallerSha256: F0E26B305E9405BB1F1A256229709758476F14E1FA5C229AADFF6626723FA774
InstallerSwitches:
Custom: /AllUsers
ManifestType: installer
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/KSpaceDuel/master/KDE.KSpaceDuel.installer.yaml b/manifests/k/KDE/KSpaceDuel/master/KDE.KSpaceDuel.installer.yaml
index dc1eb7abaad3..a469372f798e 100644
--- a/manifests/k/KDE/KSpaceDuel/master/KDE.KSpaceDuel.installer.yaml
+++ b/manifests/k/KDE/KSpaceDuel/master/KDE.KSpaceDuel.installer.yaml
@@ -9,14 +9,14 @@ ProductCode: kspaceduel
Installers:
- Architecture: x64
Scope: user
- InstallerUrl: https://cdn.kde.org/ci-builds/games/kspaceduel/master/windows/kspaceduel-master-770-windows-cl-msvc2022-x86_64.exe
- InstallerSha256: FD909878D3385C5251E3FEE6EBE4E6E0E437C7F29BDD1F6B814C13ADE7B660CA
+ InstallerUrl: https://cdn.kde.org/ci-builds/games/kspaceduel/master/windows/kspaceduel-master-772-windows-cl-msvc2022-x86_64.exe
+ InstallerSha256: 96C5DA398EA568BECECAFF8785AF2EDD8F3B18F202411E586AF9A7A28E302B7B
InstallerSwitches:
Custom: /CurrentUser
- Architecture: x64
Scope: machine
- InstallerUrl: https://cdn.kde.org/ci-builds/games/kspaceduel/master/windows/kspaceduel-master-770-windows-cl-msvc2022-x86_64.exe
- InstallerSha256: FD909878D3385C5251E3FEE6EBE4E6E0E437C7F29BDD1F6B814C13ADE7B660CA
+ InstallerUrl: https://cdn.kde.org/ci-builds/games/kspaceduel/master/windows/kspaceduel-master-772-windows-cl-msvc2022-x86_64.exe
+ InstallerSha256: 96C5DA398EA568BECECAFF8785AF2EDD8F3B18F202411E586AF9A7A28E302B7B
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/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/Kubis1982/GitFlow/2.0.0/Kubis1982.GitFlow.installer.yaml b/manifests/k/Kubis1982/GitFlow/2.0.0/Kubis1982.GitFlow.installer.yaml
new file mode 100644
index 000000000000..4eceaf16cb56
--- /dev/null
+++ b/manifests/k/Kubis1982/GitFlow/2.0.0/Kubis1982.GitFlow.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: Kubis1982.GitFlow
+PackageVersion: 2.0.0
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: GitFlow.exe
+ PortableCommandAlias: gitflow
+ArchiveBinariesDependOnPath: true
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/kubis1982/GitFlow/releases/download/v2.0.0/gitflow-win-x64-v2.0.0.zip
+ InstallerSha256: 3600CDB32B04C6BF1F6E755CD23963B1614EABCCF3EE3543A691543128FB76B5
+ManifestType: installer
+ManifestVersion: 1.12.0
+ReleaseDate: 2026-05-02
diff --git a/manifests/k/Kubis1982/GitFlow/2.0.0/Kubis1982.GitFlow.locale.en-US.yaml b/manifests/k/Kubis1982/GitFlow/2.0.0/Kubis1982.GitFlow.locale.en-US.yaml
new file mode 100644
index 000000000000..80807e3a45a9
--- /dev/null
+++ b/manifests/k/Kubis1982/GitFlow/2.0.0/Kubis1982.GitFlow.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: Kubis1982.GitFlow
+PackageVersion: 2.0.0
+PackageLocale: en-US
+Publisher: Kubis1982
+PublisherUrl: https://github.com/kubis1982
+PublisherSupportUrl: https://github.com/kubis1982/GitFlow/issues
+PackageName: GitFlow
+PackageUrl: https://github.com/kubis1982/GitFlow
+License: MIT Licence
+ShortDescription: Git workflow management tool implementing the GitFlow branching model
+ReleaseNotesUrl: https://github.com/kubis1982/GitFlow/releases/tag/v2.0.0
+Documentations:
+- DocumentLabel: Wiki
+ DocumentUrl: https://github.com/kubis1982/GitFlow/wiki
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/k/Kubis1982/GitFlow/2.0.0/Kubis1982.GitFlow.yaml b/manifests/k/Kubis1982/GitFlow/2.0.0/Kubis1982.GitFlow.yaml
new file mode 100644
index 000000000000..0f66ed83f96e
--- /dev/null
+++ b/manifests/k/Kubis1982/GitFlow/2.0.0/Kubis1982.GitFlow.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.GitFlow
+PackageVersion: 2.0.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/LeiGod/LeiGodAcc/11.3.1.7/LeiGod.LeiGodAcc.locale.zh-CN.yaml b/manifests/l/LeiGod/LeiGodAcc/11.3.1.7/LeiGod.LeiGodAcc.locale.zh-CN.yaml
index 65a3650dadaa..be880f390358 100644
--- a/manifests/l/LeiGod/LeiGodAcc/11.3.1.7/LeiGod.LeiGodAcc.locale.zh-CN.yaml
+++ b/manifests/l/LeiGod/LeiGodAcc/11.3.1.7/LeiGod.LeiGodAcc.locale.zh-CN.yaml
@@ -20,5 +20,7 @@ Tags:
- Accelerator
- Connection
- Fast
+- PRC
+- China
ManifestType: defaultLocale
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/l/LuisPater/CLIProxyAPI/6.10.8/LuisPater.CLIProxyAPI.installer.yaml b/manifests/l/LuisPater/CLIProxyAPI/6.10.8/LuisPater.CLIProxyAPI.installer.yaml
new file mode 100644
index 000000000000..4be2e8e0ca85
--- /dev/null
+++ b/manifests/l/LuisPater/CLIProxyAPI/6.10.8/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.8
+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.8/CLIProxyAPI_6.10.8_windows_amd64.zip
+ InstallerSha256: A024B36A3476DF4A660867AB912361FACB1CAC0FF3FDE542572C8200A1608B45
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/l/LuisPater/CLIProxyAPI/6.10.8/LuisPater.CLIProxyAPI.locale.en-US.yaml b/manifests/l/LuisPater/CLIProxyAPI/6.10.8/LuisPater.CLIProxyAPI.locale.en-US.yaml
new file mode 100644
index 000000000000..a7ede7b183b0
--- /dev/null
+++ b/manifests/l/LuisPater/CLIProxyAPI/6.10.8/LuisPater.CLIProxyAPI.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: LuisPater.CLIProxyAPI
+PackageVersion: 6.10.8
+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
+ - 61b39d49bd8cad26c8d74eb0bd0f6b8fda16ab2c feat(management): add usage record retrieval endpoint
+ - da6c599efd8da34d23d3668371fbb5ac70399e9d refactor(management): rename GetUsage to GetUsageQueue and update routes/tests
+ReleaseNotesUrl: https://github.com/router-for-me/CLIProxyAPI/releases/tag/v6.10.8
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/l/LuisPater/CLIProxyAPI/6.10.8/LuisPater.CLIProxyAPI.locale.zh-CN.yaml b/manifests/l/LuisPater/CLIProxyAPI/6.10.8/LuisPater.CLIProxyAPI.locale.zh-CN.yaml
new file mode 100644
index 000000000000..ebe93ddd190d
--- /dev/null
+++ b/manifests/l/LuisPater/CLIProxyAPI/6.10.8/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.8
+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.8/LuisPater.CLIProxyAPI.yaml b/manifests/l/LuisPater/CLIProxyAPI/6.10.8/LuisPater.CLIProxyAPI.yaml
new file mode 100644
index 000000000000..6654d9210a99
--- /dev/null
+++ b/manifests/l/LuisPater/CLIProxyAPI/6.10.8/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.8
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/l/loop-uh/ZapretKVN/0.4.58/loop-uh.ZapretKVN.installer.yaml b/manifests/l/loop-uh/ZapretKVN/0.4.58/loop-uh.ZapretKVN.installer.yaml
new file mode 100644
index 000000000000..2f60685f43e2
--- /dev/null
+++ b/manifests/l/loop-uh/ZapretKVN/0.4.58/loop-uh.ZapretKVN.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: loop-uh.ZapretKVN
+PackageVersion: 0.4.58
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: ZapretKVN.exe
+ArchiveBinariesDependOnPath: true
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/youtubediscord/zapret-kvn/releases/download/v0.4.58/ZapretKVN-v0.4.58-windows-x64.zip
+ InstallerSha256: 697A109CF80762F2D87333C54DD6FA914BB47272A70F2C240DB2A6269C418120
+ManifestType: installer
+ManifestVersion: 1.12.0
+ReleaseDate: 2026-04-08
diff --git a/manifests/l/loop-uh/ZapretKVN/0.4.58/loop-uh.ZapretKVN.locale.ru-RU.yaml b/manifests/l/loop-uh/ZapretKVN/0.4.58/loop-uh.ZapretKVN.locale.ru-RU.yaml
new file mode 100644
index 000000000000..d22599d44e85
--- /dev/null
+++ b/manifests/l/loop-uh/ZapretKVN/0.4.58/loop-uh.ZapretKVN.locale.ru-RU.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: loop-uh.ZapretKVN
+PackageVersion: 0.4.58
+PackageLocale: ru-RU
+Publisher: loop-uh
+PublisherUrl: https://github.com/youtubediscord
+PublisherSupportUrl: https://github.com/youtubediscord/zapret-kvn/issues
+PackageName: ZapretKVN
+PackageUrl: https://github.com/youtubediscord/zapret-kvn
+License: Unknown
+ShortDescription: Simple VLESS GUI client
+Tags:
+- v2ray
+- v2rayng
+- vless
+- vless-reality
+- vless-reality-vision
+- vless-ws-tls
+- zapret
+- zapret-discord-youtube
+ReleaseNotesUrl: https://github.com/youtubediscord/zapret-kvn/releases/tag/v0.4.58
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/l/loop-uh/ZapretKVN/0.4.58/loop-uh.ZapretKVN.yaml b/manifests/l/loop-uh/ZapretKVN/0.4.58/loop-uh.ZapretKVN.yaml
new file mode 100644
index 000000000000..3c0a83f8e90f
--- /dev/null
+++ b/manifests/l/loop-uh/ZapretKVN/0.4.58/loop-uh.ZapretKVN.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: loop-uh.ZapretKVN
+PackageVersion: 0.4.58
+DefaultLocale: ru-RU
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/m/ManticoreSoftware/Weatherbot/1.2.0/ManticoreSoftware.Weatherbot.installer.yaml b/manifests/m/ManticoreSoftware/Weatherbot/1.2.0/ManticoreSoftware.Weatherbot.installer.yaml
new file mode 100644
index 000000000000..b08758e35224
--- /dev/null
+++ b/manifests/m/ManticoreSoftware/Weatherbot/1.2.0/ManticoreSoftware.Weatherbot.installer.yaml
@@ -0,0 +1,19 @@
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: ManticoreSoftware.Weatherbot
+PackageVersion: 1.2.0
+ReleaseDate: 2025-02-07
+MinimumOSVersion: 4.10.1998.0 # Windows 98
+Platform:
+- Windows.Desktop
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: Weatherbot 1.2\Weatherbot.exe
+ PortableCommandAlias: weatherbot
+Installers:
+- Architecture: x86
+ InstallerUrl: https://files.mac-attic.com/downloads/manticoresw/weatherbot/Weatherbot-windows-1.2.0.zip
+ InstallerSha256: BFD49F4391F4CE3C50A7A366EE33DDD6622D32C351022801821C1FC943F27DC9
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/m/ManticoreSoftware/Weatherbot/1.2.0/ManticoreSoftware.Weatherbot.locale.en-US.yaml b/manifests/m/ManticoreSoftware/Weatherbot/1.2.0/ManticoreSoftware.Weatherbot.locale.en-US.yaml
new file mode 100644
index 000000000000..2daef26e1203
--- /dev/null
+++ b/manifests/m/ManticoreSoftware/Weatherbot/1.2.0/ManticoreSoftware.Weatherbot.locale.en-US.yaml
@@ -0,0 +1,19 @@
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: ManticoreSoftware.Weatherbot
+PackageVersion: 1.2.0
+PackageLocale: en-US
+Publisher: Manticore Software
+PackageName: Weatherbot
+PackageUrl: https://manticore.nz/weatherbot
+License: Proprietary
+ShortDescription: A weather forecasting application with live weather updates. It displays the current weather conditions and provides a 7 day forecast of upcoming conditions.
+Tags:
+- temperature
+- wind
+- uv-index
+- uvindex
+- sunrise-sunset
+- precipitation
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
\ No newline at end of file
diff --git a/manifests/m/ManticoreSoftware/Weatherbot/1.2.0/ManticoreSoftware.Weatherbot.yaml b/manifests/m/ManticoreSoftware/Weatherbot/1.2.0/ManticoreSoftware.Weatherbot.yaml
new file mode 100644
index 000000000000..c70f0c81592a
--- /dev/null
+++ b/manifests/m/ManticoreSoftware/Weatherbot/1.2.0/ManticoreSoftware.Weatherbot.yaml
@@ -0,0 +1,7 @@
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: ManticoreSoftware.Weatherbot
+PackageVersion: 1.2.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
\ No newline at end of file
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/MRDL/UnityPeriodicTable/1.0.10/Microsoft.MRDL.UnityPeriodicTable.installer.yaml b/manifests/m/Microsoft/MRDL/UnityPeriodicTable/1.0.10/Microsoft.MRDL.UnityPeriodicTable.installer.yaml
new file mode 100644
index 000000000000..0a9754728e28
--- /dev/null
+++ b/manifests/m/Microsoft/MRDL/UnityPeriodicTable/1.0.10/Microsoft.MRDL.UnityPeriodicTable.installer.yaml
@@ -0,0 +1,20 @@
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Microsoft.MRDL.UnityPeriodicTable
+PackageVersion: "1.0.10"
+ReleaseDate: 2021-04-16
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: Periodic%20Table%20of%20the%20Elements.exe
+Installers:
+- Architecture: arm64
+ InstallerUrl: https://github.com/microsoft/MRDL_Unity_PeriodicTable/releases/download/2.6.0/Periodic.Table.of.the.Elements_1.0.10.0_ARM64_Master.appx
+ InstallerSha256: c1d998b0f6a097640aaf400a8a3725f8a61d9e43a6e247781fba749089f31e91
+Dependencies:
+ PackageDependencies:
+ - PackageIdentifier: Microsoft.DotNet.Framework.Runtime
+ - PackageIdentifier: Microsoft.VCLibs.14
+ElevationRequirement: elevationRequired
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/m/Microsoft/MRDL/UnityPeriodicTable/1.0.10/Microsoft.MRDL.UnityPeriodicTable.locale.en-US.yaml b/manifests/m/Microsoft/MRDL/UnityPeriodicTable/1.0.10/Microsoft.MRDL.UnityPeriodicTable.locale.en-US.yaml
new file mode 100644
index 000000000000..af3b8803f51c
--- /dev/null
+++ b/manifests/m/Microsoft/MRDL/UnityPeriodicTable/1.0.10/Microsoft.MRDL.UnityPeriodicTable.locale.en-US.yaml
@@ -0,0 +1,23 @@
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Microsoft.MRDL.UnityPeriodicTable
+PackageVersion: "1.0.10"
+PackageLocale: en-US
+Publisher: Microsoft
+PackageName: MRDL Periodic Table of the Elements
+PackageUrl: https://github.com/microsoft/MRDL_Unity_PeriodicTable/releases/tag/2.6.0
+License: MIT
+ShortDescription: Periodic Table of the Elements for HoloLens and Immersive headsets.
+Tags:
+- hololens
+- windows-mixed-reality
+- windowsmixedreality
+- mrdl-periodic-table-of-the-elements
+- mrdlperiodictableoftheelements
+- mrdl_unity_periodictable
+- mrdl-unity-periodictable
+- mrtk-demo-app
+- mixed-reality-design-labs
+- mixedrealitydesignlabs
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
\ No newline at end of file
diff --git a/manifests/m/Microsoft/MRDL/UnityPeriodicTable/1.0.10/Microsoft.MRDL.UnityPeriodicTable.yaml b/manifests/m/Microsoft/MRDL/UnityPeriodicTable/1.0.10/Microsoft.MRDL.UnityPeriodicTable.yaml
new file mode 100644
index 000000000000..0d1a60a1df45
--- /dev/null
+++ b/manifests/m/Microsoft/MRDL/UnityPeriodicTable/1.0.10/Microsoft.MRDL.UnityPeriodicTable.yaml
@@ -0,0 +1,7 @@
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: Microsoft.MRDL.UnityPeriodicTable
+PackageVersion: "1.0.10"
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
\ No newline at end of file
diff --git a/manifests/m/Microsoft/VisualStudioCode/Insiders/1.120.0/Microsoft.VisualStudioCode.Insiders.installer.yaml b/manifests/m/Microsoft/VisualStudioCode/Insiders/1.120.0/Microsoft.VisualStudioCode.Insiders.installer.yaml
new file mode 100644
index 000000000000..787ee2f65ee6
--- /dev/null
+++ b/manifests/m/Microsoft/VisualStudioCode/Insiders/1.120.0/Microsoft.VisualStudioCode.Insiders.installer.yaml
@@ -0,0 +1,29 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Microsoft.VisualStudioCode.Insiders
+PackageVersion: 1.120.0
+InstallerType: inno
+InstallerSwitches:
+ Custom: /mergetasks=!runcode
+Commands:
+- code-insiders
+Installers:
+- Architecture: arm64
+ Scope: machine
+ InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/79d6cea3bc9cb9b9e60039d303c2700b8042fb52/VSCodeSetup-arm64-1.120.0-insider.exe
+ InstallerSha256: 1D868F5AACB39682A51D76687F1847CEBA0377C133AB17FDBB1FDD472A8D9309
+- Architecture: arm64
+ Scope: user
+ InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/79d6cea3bc9cb9b9e60039d303c2700b8042fb52/VSCodeUserSetup-arm64-1.120.0-insider.exe
+ InstallerSha256: 7FCB065950A5C681640F77DADECA1A964710646128A54FF37C8F53F02D06594D
+- Architecture: x64
+ Scope: machine
+ InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/79d6cea3bc9cb9b9e60039d303c2700b8042fb52/VSCodeSetup-x64-1.120.0-insider.exe
+ InstallerSha256: 9A6943CD67F2146015BBAAB95B61592F7ACAB642A3E380DAC24864FE31EBAD8F
+- Architecture: x64
+ Scope: user
+ InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/79d6cea3bc9cb9b9e60039d303c2700b8042fb52/VSCodeUserSetup-x64-1.120.0-insider.exe
+ InstallerSha256: 4BB0E9F544D7D0A1D982D1642459AEB10CB78EB8DADEB58F8CFE2FEC0609350E
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/m/Microsoft/VisualStudioCode/Insiders/1.120.0/Microsoft.VisualStudioCode.Insiders.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudioCode/Insiders/1.120.0/Microsoft.VisualStudioCode.Insiders.locale.en-US.yaml
new file mode 100644
index 000000000000..e051d5646cb8
--- /dev/null
+++ b/manifests/m/Microsoft/VisualStudioCode/Insiders/1.120.0/Microsoft.VisualStudioCode.Insiders.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
+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
+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
+Tags:
+- developer-tools
+- editor
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/m/Microsoft/VisualStudioCode/Insiders/1.120.0/Microsoft.VisualStudioCode.Insiders.yaml b/manifests/m/Microsoft/VisualStudioCode/Insiders/1.120.0/Microsoft.VisualStudioCode.Insiders.yaml
new file mode 100644
index 000000000000..332b926be7da
--- /dev/null
+++ b/manifests/m/Microsoft/VisualStudioCode/Insiders/1.120.0/Microsoft.VisualStudioCode.Insiders.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
+PackageVersion: 1.120.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/Mozilla/Firefox/DeveloperEdition/xh/151.0/Mozilla.Firefox.DeveloperEdition.xh.installer.yaml b/manifests/m/Mozilla/Firefox/DeveloperEdition/xh/151.0/Mozilla.Firefox.DeveloperEdition.xh.installer.yaml
index 0df28fc9bfca..41d0874035d4 100644
--- a/manifests/m/Mozilla/Firefox/DeveloperEdition/xh/151.0/Mozilla.Firefox.DeveloperEdition.xh.installer.yaml
+++ b/manifests/m/Mozilla/Firefox/DeveloperEdition/xh/151.0/Mozilla.Firefox.DeveloperEdition.xh.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/xh/Firefox%20Setup%20151.0b5.exe
- InstallerSha256: AA5A85F2F1749367E944B37B9E1D87A60813E9D5033177EB134EA07B0EDE0856
+ InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b6/win32/xh/Firefox%20Setup%20151.0b6.exe
+ InstallerSha256: 456C87BD6B46A4672526CACD25A3073A2F1569D826FA6F22D391576E622FDA28
- Architecture: x64
- InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b5/win64/xh/Firefox%20Setup%20151.0b5.exe
- InstallerSha256: 33CE45EE425901C45F2B5E9DF007CD74C449EF6D2D03D9120C8857DA484627DB
+ InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b6/win64/xh/Firefox%20Setup%20151.0b6.exe
+ InstallerSha256: 07285B7DD082B8954398E8D966E786B58515082A6B0722098DA913C118399097
- Architecture: arm64
- InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b5/win64-aarch64/xh/Firefox%20Setup%20151.0b5.exe
- InstallerSha256: F10E92AC086E016FBA21156A2DD78E931FC1E99530A7DA712686CBCB87D99D1E
+ InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b6/win64-aarch64/xh/Firefox%20Setup%20151.0b6.exe
+ InstallerSha256: 3C335F4F46B7FF42D3C99070246E134BF0ECFFC97BB12854C18C8063EB86D056
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/m/mikf/gallery-dl/Nightly/2026.04.17/mikf.gallery-dl.Nightly.installer.yaml b/manifests/m/mikf/gallery-dl/Nightly/2026.05.05/mikf.gallery-dl.Nightly.installer.yaml
similarity index 67%
rename from manifests/m/mikf/gallery-dl/Nightly/2026.04.17/mikf.gallery-dl.Nightly.installer.yaml
rename to manifests/m/mikf/gallery-dl/Nightly/2026.05.05/mikf.gallery-dl.Nightly.installer.yaml
index acd8b9455327..8b5d3ac5aecf 100644
--- a/manifests/m/mikf/gallery-dl/Nightly/2026.04.17/mikf.gallery-dl.Nightly.installer.yaml
+++ b/manifests/m/mikf/gallery-dl/Nightly/2026.05.05/mikf.gallery-dl.Nightly.installer.yaml
@@ -2,24 +2,24 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
PackageIdentifier: mikf.gallery-dl.Nightly
-PackageVersion: 2026.04.17
+PackageVersion: 2026.05.05
InstallerType: portable
InstallModes:
- interactive
- silent
- silentWithProgress
UpgradeBehavior: install
-ReleaseDate: 2026-04-17
+ReleaseDate: 2026-05-05
Installers:
- Architecture: x86
- InstallerUrl: https://github.com/gdl-org/builds/releases/download/2026.04.17/gallery-dl_windows_x86.exe
- InstallerSha256: D253C234FDDFD9640C373ECE3C3A269C4C633A93A7DC657E7038F3F024C12FA1
+ InstallerUrl: https://github.com/gdl-org/builds/releases/download/2026.05.05/gallery-dl_windows_x86.exe
+ InstallerSha256: CA66F3B8FA3993907C604AB40C598671B9596B807B03774A6A3A87FE9F28F696
Dependencies:
PackageDependencies:
- PackageIdentifier: Microsoft.VCRedist.2015+.x86
- Architecture: x64
- InstallerUrl: https://github.com/gdl-org/builds/releases/download/2026.04.17/gallery-dl_windows.exe
- InstallerSha256: 6887369E1E2B64C51D4F4DFA771E81CBB40904152A55F80E7D35E3A0AB4C8A81
+ InstallerUrl: https://github.com/gdl-org/builds/releases/download/2026.05.05/gallery-dl_windows.exe
+ InstallerSha256: FD0EEE4D869F056776A3498D73CD3AC4490849DB82AE44FDF5F31917806E78F2
Dependencies:
PackageDependencies:
- PackageIdentifier: Microsoft.VCRedist.2015+.x64
diff --git a/manifests/m/mikf/gallery-dl/Nightly/2026.04.17/mikf.gallery-dl.Nightly.locale.en-US.yaml b/manifests/m/mikf/gallery-dl/Nightly/2026.05.05/mikf.gallery-dl.Nightly.locale.en-US.yaml
similarity index 88%
rename from manifests/m/mikf/gallery-dl/Nightly/2026.04.17/mikf.gallery-dl.Nightly.locale.en-US.yaml
rename to manifests/m/mikf/gallery-dl/Nightly/2026.05.05/mikf.gallery-dl.Nightly.locale.en-US.yaml
index 66b7d79cc693..cfe2c7a8475a 100644
--- a/manifests/m/mikf/gallery-dl/Nightly/2026.04.17/mikf.gallery-dl.Nightly.locale.en-US.yaml
+++ b/manifests/m/mikf/gallery-dl/Nightly/2026.05.05/mikf.gallery-dl.Nightly.locale.en-US.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
PackageIdentifier: mikf.gallery-dl.Nightly
-PackageVersion: 2026.04.17
+PackageVersion: 2026.05.05
PackageLocale: en-US
Publisher: Mike Fährmann
PublisherUrl: https://github.com/mikf
@@ -27,7 +27,7 @@ Tags:
- pixiv
- tumblr
- twitter
-ReleaseNotes: c7030456 [tumblr] improve inline file regex (gh#6505)
-ReleaseNotesUrl: https://github.com/gdl-org/builds/releases/tag/2026.04.17
+ReleaseNotes: 0b999633 [scripts] implement 'fmt.py'
+ReleaseNotesUrl: https://github.com/gdl-org/builds/releases/tag/2026.05.05
ManifestType: defaultLocale
ManifestVersion: 1.12.0
diff --git a/manifests/m/mikf/gallery-dl/Nightly/2026.04.17/mikf.gallery-dl.Nightly.yaml b/manifests/m/mikf/gallery-dl/Nightly/2026.05.05/mikf.gallery-dl.Nightly.yaml
similarity index 86%
rename from manifests/m/mikf/gallery-dl/Nightly/2026.04.17/mikf.gallery-dl.Nightly.yaml
rename to manifests/m/mikf/gallery-dl/Nightly/2026.05.05/mikf.gallery-dl.Nightly.yaml
index ef8e7765ac83..4b768147a438 100644
--- a/manifests/m/mikf/gallery-dl/Nightly/2026.04.17/mikf.gallery-dl.Nightly.yaml
+++ b/manifests/m/mikf/gallery-dl/Nightly/2026.05.05/mikf.gallery-dl.Nightly.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
PackageIdentifier: mikf.gallery-dl.Nightly
-PackageVersion: 2026.04.17
+PackageVersion: 2026.05.05
DefaultLocale: en-US
ManifestType: version
ManifestVersion: 1.12.0
diff --git a/manifests/n/NetSentinel/NetSentinel/1.7.0/NetSentinel.NetSentinel.installer.yaml b/manifests/n/NetSentinel/NetSentinel/1.7.0/NetSentinel.NetSentinel.installer.yaml
new file mode 100644
index 000000000000..174fe36893ba
--- /dev/null
+++ b/manifests/n/NetSentinel/NetSentinel/1.7.0/NetSentinel.NetSentinel.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: NetSentinel.NetSentinel
+PackageVersion: 1.7.0
+InstallerLocale: en-US
+InstallerType: inno
+Scope: machine
+InstallModes:
+- interactive
+- silent
+InstallerSwitches:
+ Silent: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /TASKS="!installookla"
+ SilentWithProgress: /SILENT /SUPPRESSMSGBOXES /NORESTART /TASKS="!installookla"
+ Log: /"{localappdata}\NetSentinel\install.log"
+UpgradeBehavior: install
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/ossianericson/netsentinel/releases/download/v1.7.0/NetSentinel-Setup-1.7.0.exe
+ InstallerSha256: 8702504328D8441D61F9DA93C80D067A1906F41ADEAA041BBEB812389A45A506
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/n/NetSentinel/NetSentinel/1.7.0/NetSentinel.NetSentinel.locale.en-US.yaml b/manifests/n/NetSentinel/NetSentinel/1.7.0/NetSentinel.NetSentinel.locale.en-US.yaml
new file mode 100644
index 000000000000..6918eb9e6516
--- /dev/null
+++ b/manifests/n/NetSentinel/NetSentinel/1.7.0/NetSentinel.NetSentinel.locale.en-US.yaml
@@ -0,0 +1,54 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: NetSentinel.NetSentinel
+PackageVersion: 1.7.0
+PackageLocale: en-US
+Publisher: NetSentinel Project
+PublisherUrl: https://github.com/ossianericson/netsentinel
+PublisherSupportUrl: https://github.com/ossianericson/netsentinel/issues
+PackageName: NetSentinel
+PackageUrl: https://github.com/ossianericson/netsentinel
+License: MIT
+LicenseUrl: https://raw.githubusercontent.com/ossianericson/netsentinel/master/LICENSE
+ShortDescription: Network security scanner — rogue device detector, STP monitor, and connectivity analyser
+Description: |-
+ NetSentinel is a one-stop network diagnostic and security tool for Windows.
+ It combines several tools that previously required separate utilities:
+
+ • Device Fingerprinter — scans your LAN's ARP table and identifies every
+ device by MAC OUI, hostname, and device type (camera, smart speaker, router, etc.)
+ • Rogue Bridge Detector — captures 802.1D/RSTP BPDUs and flags any device
+ that steals the Root Bridge role and causes periodic 15-45 second outages.
+ • Broadcast Storm Analyser — measures broadcast/multicast packet rates and
+ identifies which device is flooding the network.
+ • IoT Behavioral Baseline — learns normal IoT traffic patterns and raises
+ an alert if your smart fridge starts port-scanning or talking to a C2 server.
+ • Root Cause Correlator — links trace results, storm data, and STP findings
+ into a single plain-English verdict with actionable remediation steps.
+ • Connection Stability Monitor — long-term background ping logger with
+ outage detection, jitter analysis, and a 24-hour stability score.
+ • TCP Port Scanner, OS Fingerprinter, CVE Lookup, DNS Leak Test, Speed Test,
+ ARP spoof detector, DHCP monitor, SNMP poller, and more.
+
+ Most features require Administrator privileges for raw packet capture.
+ Install Npcap (https://npcap.com) for STP, Storm, and ARP modules.
+Moniker: netsentinel
+Tags:
+- network
+- security
+- scanner
+- rogue-device
+- stp
+- lan
+- diagnostics
+- iot
+- monitoring
+- arp
+- broadcast-storm
+- wifi
+- dns
+- port-scanner
+ReleaseNotesUrl: https://github.com/ossianericson/netsentinel/releases/tag/v1.7.0
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/n/NetSentinel/NetSentinel/1.7.0/NetSentinel.NetSentinel.yaml b/manifests/n/NetSentinel/NetSentinel/1.7.0/NetSentinel.NetSentinel.yaml
new file mode 100644
index 000000000000..25741f71f759
--- /dev/null
+++ b/manifests/n/NetSentinel/NetSentinel/1.7.0/NetSentinel.NetSentinel.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: NetSentinel.NetSentinel
+PackageVersion: 1.7.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/NoFaff/InstallerClean/1.6.0/NoFaff.InstallerClean.installer.yaml b/manifests/n/NoFaff/InstallerClean/1.6.0/NoFaff.InstallerClean.installer.yaml
new file mode 100644
index 000000000000..027939233c1e
--- /dev/null
+++ b/manifests/n/NoFaff/InstallerClean/1.6.0/NoFaff.InstallerClean.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: NoFaff.InstallerClean
+PackageVersion: 1.6.0
+InstallerType: inno
+Scope: machine
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/no-faff/InstallerClean/releases/download/v1.6.0/InstallerClean-setup.exe
+ InstallerSha256: A77492370D647470737D6FF4A12C029879B1BB5EC97500BC589933EA8BBF2007
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/n/NoFaff/InstallerClean/1.6.0/NoFaff.InstallerClean.locale.en-GB.yaml b/manifests/n/NoFaff/InstallerClean/1.6.0/NoFaff.InstallerClean.locale.en-GB.yaml
new file mode 100644
index 000000000000..e3f151a5c9d7
--- /dev/null
+++ b/manifests/n/NoFaff/InstallerClean/1.6.0/NoFaff.InstallerClean.locale.en-GB.yaml
@@ -0,0 +1,30 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: NoFaff.InstallerClean
+PackageVersion: 1.6.0
+PackageLocale: en-GB
+Publisher: No Faff
+PublisherUrl: https://github.com/no-faff
+PublisherSupportUrl: https://github.com/no-faff/InstallerClean/issues
+Author: No Faff
+PackageName: InstallerClean
+PackageUrl: https://github.com/no-faff/InstallerClean
+License: MIT License
+LicenseUrl: https://github.com/no-faff/InstallerClean/blob/main/LICENSE
+Copyright: Copyright (c) 2026 No Faff
+ShortDescription: Open source tool to safely clean orphaned Windows Installer files and reclaim disk space
+Description: |-
+ InstallerClean safely reclaims disk space by removing orphaned files from C:\Windows\Installer, the hidden folder Windows never cleans up. It queries the Windows Installer API to find installers left behind by uninstalled software and patches replaced by newer ones, then lets you delete them to the Recycle Bin or move them somewhere safe. Free, open source, no telemetry.
+Moniker: installerclean
+Tags:
+- cleanup
+- disk-space
+- installer
+- msi
+- open-source
+- patchcleaner
+- windows-installer
+ReleaseNotesUrl: https://github.com/no-faff/InstallerClean/releases/tag/v1.6.0
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
\ No newline at end of file
diff --git a/manifests/n/NoFaff/InstallerClean/1.6.0/NoFaff.InstallerClean.yaml b/manifests/n/NoFaff/InstallerClean/1.6.0/NoFaff.InstallerClean.yaml
new file mode 100644
index 000000000000..959c6bb6ae41
--- /dev/null
+++ b/manifests/n/NoFaff/InstallerClean/1.6.0/NoFaff.InstallerClean.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: NoFaff.InstallerClean
+PackageVersion: 1.6.0
+DefaultLocale: en-GB
+ManifestType: version
+ManifestVersion: 1.12.0
\ No newline at end of file
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/PixelSoft/ChimeralandSEA/0.0.6.128/PixelSoft.ChimeralandSEA.installer.yaml b/manifests/p/PixelSoft/ChimeralandSEA/0.0.6.128/PixelSoft.ChimeralandSEA.installer.yaml
deleted file mode 100644
index 3b314b249a20..000000000000
--- a/manifests/p/PixelSoft/ChimeralandSEA/0.0.6.128/PixelSoft.ChimeralandSEA.installer.yaml
+++ /dev/null
@@ -1,12 +0,0 @@
-# Created using wingetcreate 1.2.7.0
-# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.4.0.schema.json
-
-PackageIdentifier: PixelSoft.ChimeralandSEA
-PackageVersion: 0.0.6.128
-Installers:
-- InstallerUrl: https://www.chimeraland.com/download/Chimeraland-int-Installer-2201050739.exe
- Architecture: x86
- InstallerType: nullsoft
- InstallerSha256: 9E7B247304C7460802049E3959A4DED3459AF66B8AEC4747604D898C87C7A295
-ManifestType: installer
-ManifestVersion: 1.4.0
diff --git a/manifests/p/PixelSoft/ChimeralandSEA/0.0.6.128/PixelSoft.ChimeralandSEA.locale.en-US.yaml b/manifests/p/PixelSoft/ChimeralandSEA/0.0.6.128/PixelSoft.ChimeralandSEA.locale.en-US.yaml
deleted file mode 100644
index 9f88a3f6ac40..000000000000
--- a/manifests/p/PixelSoft/ChimeralandSEA/0.0.6.128/PixelSoft.ChimeralandSEA.locale.en-US.yaml
+++ /dev/null
@@ -1,12 +0,0 @@
-# Created using wingetcreate 1.2.7.0
-# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.4.0.schema.json
-
-PackageIdentifier: PixelSoft.ChimeralandSEA
-PackageVersion: 0.0.6.128
-PackageLocale: en-US
-Publisher: Level Infinite
-PackageName: Chimeraland SEA
-License: Proprietary
-ShortDescription: Chimeraland is an open-world survival game with strong RPG elements set in a prehistoric, mythical world.
-ManifestType: defaultLocale
-ManifestVersion: 1.4.0
diff --git a/manifests/p/PixelSoft/ChimeralandSEA/0.0.6.128/PixelSoft.ChimeralandSEA.yaml b/manifests/p/PixelSoft/ChimeralandSEA/0.0.6.128/PixelSoft.ChimeralandSEA.yaml
deleted file mode 100644
index b57cde9fe8be..000000000000
--- a/manifests/p/PixelSoft/ChimeralandSEA/0.0.6.128/PixelSoft.ChimeralandSEA.yaml
+++ /dev/null
@@ -1,8 +0,0 @@
-# Created using wingetcreate 1.2.7.0
-# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.4.0.schema.json
-
-PackageIdentifier: PixelSoft.ChimeralandSEA
-PackageVersion: 0.0.6.128
-DefaultLocale: en-US
-ManifestType: version
-ManifestVersion: 1.4.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/Pulumi/Pulumi/3.235.0/Pulumi.Pulumi.installer.yaml b/manifests/p/Pulumi/Pulumi/3.235.0/Pulumi.Pulumi.installer.yaml
new file mode 100644
index 000000000000..bf0edef44ac0
--- /dev/null
+++ b/manifests/p/Pulumi/Pulumi/3.235.0/Pulumi.Pulumi.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: Pulumi.Pulumi
+PackageVersion: 3.235.0
+MinimumOSVersion: 10.0.0.0
+InstallerType: wix
+ProductCode: '{3292EEC2-FCA7-4EFB-84E5-AA982E7145E3}'
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/pulumi/pulumi-winget/releases/download/v3.235.0/pulumi-3.235.0-windows-x64.msi
+ InstallerSha256: FA30FAE2F67118A76C59B94AC4FA64D40AA019F20FE597E702A74FE2CCCE1781
+ManifestType: installer
+ManifestVersion: 1.12.0
+ReleaseDate: 2026-05-05
diff --git a/manifests/p/Pulumi/Pulumi/3.235.0/Pulumi.Pulumi.locale.en-US.yaml b/manifests/p/Pulumi/Pulumi/3.235.0/Pulumi.Pulumi.locale.en-US.yaml
new file mode 100644
index 000000000000..560055b292e7
--- /dev/null
+++ b/manifests/p/Pulumi/Pulumi/3.235.0/Pulumi.Pulumi.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: Pulumi.Pulumi
+PackageVersion: 3.235.0
+PackageLocale: en-US
+Publisher: Pulumi Corp
+PublisherUrl: https://github.com/pulumi
+PublisherSupportUrl: https://github.com/pulumi/pulumi-winget/issues
+PackageName: Pulumi
+PackageUrl: https://www.pulumi.com
+License: Apache License 2.0
+LicenseUrl: https://github.com/pulumi/pulumi/blob/master/LICENSE
+ShortDescription: Pulumi CLI for managing modern infrastructure as code
+Tags:
+- aws
+- azure
+- containers
+- cloud
+- cloud-computing
+- dotnet
+- gcp
+- go
+- iac
+- infrastructure-as-code
+- kubernetes
+- python
+- serverless
+- typescript
+ReleaseNotesUrl: https://github.com/pulumi/pulumi-winget/releases/tag/v3.235.0
+Documentations:
+- DocumentLabel: Wiki
+ DocumentUrl: https://github.com/pulumi/pulumi-winget/wiki
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/p/Pulumi/Pulumi/3.235.0/Pulumi.Pulumi.yaml b/manifests/p/Pulumi/Pulumi/3.235.0/Pulumi.Pulumi.yaml
new file mode 100644
index 000000000000..e757e2015267
--- /dev/null
+++ b/manifests/p/Pulumi/Pulumi/3.235.0/Pulumi.Pulumi.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: Pulumi.Pulumi
+PackageVersion: 3.235.0
+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/opencode/1.14.39/SST.opencode.installer.yaml b/manifests/s/SST/opencode/1.14.39/SST.opencode.installer.yaml
new file mode 100644
index 000000000000..314180819445
--- /dev/null
+++ b/manifests/s/SST/opencode/1.14.39/SST.opencode.installer.yaml
@@ -0,0 +1,21 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: SST.opencode
+PackageVersion: 1.14.39
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: opencode.exe
+Commands:
+- opencode
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/anomalyco/opencode/releases/download/v1.14.39/opencode-windows-x64.zip
+ InstallerSha256: 71F2DF77DD634F8515A894F76B284B68507E7CE7CA0B32627D2429095F481FC1
+- Architecture: arm64
+ InstallerUrl: https://github.com/anomalyco/opencode/releases/download/v1.14.39/opencode-windows-arm64.zip
+ InstallerSha256: 20F0592EE2E193E4099926329B8D329594DB668F6A3B8D789DFE599B96567133
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/s/SST/opencode/1.14.39/SST.opencode.locale.en-US.yaml b/manifests/s/SST/opencode/1.14.39/SST.opencode.locale.en-US.yaml
new file mode 100644
index 000000000000..df0c5f3ae5d5
--- /dev/null
+++ b/manifests/s/SST/opencode/1.14.39/SST.opencode.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: SST.opencode
+PackageVersion: 1.14.39
+PackageLocale: en-US
+Publisher: SST
+PublisherUrl: https://sst.dev/
+PublisherSupportUrl: https://github.com/sst/opencode/issues
+PackageName: opencode
+PackageUrl: https://opencode.ai/
+License: MIT
+LicenseUrl: https://github.com/sst/opencode/blob/HEAD/LICENSE
+Copyright: Copyright (c) 2026 opencode
+ShortDescription: The AI coding agent built for the terminal.
+Description: |-
+ opencode is an AI coding agent built for the terminal. It features:
+ - A responsive, native, themeable terminal UI.
+ - Automatically loads the right LSPs, so the LLMs make fewer mistakes.
+ - Have multiple agents working in parallel on the same project.
+ - Create shareable links to any session for reference or to debug.
+ - Log in with Anthropic to use your Claude Pro or Claude Max account.
+ - Supports 75+ LLM providers through Models.dev, including local models.
+Tags:
+- ai
+- code
+- coding
+- develop
+- development
+- programming
+ReleaseNotes: |-
+ Desktop
+ Bugfixes
+ - Respect HTTP_PROXY and related proxy environment variables in the desktop app.
+ - Return null instead of failing when the desktop app cannot read a stored value.
+ReleaseNotesUrl: https://github.com/anomalyco/opencode/releases/tag/v1.14.39
+Documentations:
+- DocumentLabel: Docs
+ DocumentUrl: https://opencode.ai/docs/
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/s/SST/opencode/1.14.39/SST.opencode.locale.zh-CN.yaml b/manifests/s/SST/opencode/1.14.39/SST.opencode.locale.zh-CN.yaml
new file mode 100644
index 000000000000..213aa09f1840
--- /dev/null
+++ b/manifests/s/SST/opencode/1.14.39/SST.opencode.locale.zh-CN.yaml
@@ -0,0 +1,25 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: SST.opencode
+PackageVersion: 1.14.39
+PackageLocale: zh-CN
+ShortDescription: 专为终端打造的 AI 编程助手
+Description: |-
+ opencode 是一款专为终端打造的 AI 编程助手,具备以下特性:
+ - 响应式、原生、可主题定制的终端界面
+ - 自动加载正确的 LSP,减少 LLM 的错误率
+ - 支持多个智能体并行处理同一项目
+ - 可为任何会话生成可分享链接,便于参考或调试
+ - 支持通过 Anthropic 登录使用 Claude Pro 或 Claude Max 账户
+ - 通过 Models.dev 集成 75+ 个 LLM 服务提供商,包括本地模型
+Tags:
+- ai
+- 代码
+- 开发
+- 编程
+Documentations:
+- DocumentLabel: 文档
+ DocumentUrl: https://opencode.ai/docs/
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/s/SST/opencode/1.14.39/SST.opencode.yaml b/manifests/s/SST/opencode/1.14.39/SST.opencode.yaml
new file mode 100644
index 000000000000..18e52283ffcc
--- /dev/null
+++ b/manifests/s/SST/opencode/1.14.39/SST.opencode.yaml
@@ -0,0 +1,8 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: SST.opencode
+PackageVersion: 1.14.39
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/s/SerialTool/SerialTool/3.3.0/SerialTool.SerialTool.installer.yaml b/manifests/s/SerialTool/SerialTool/3.3.0/SerialTool.SerialTool.installer.yaml
new file mode 100644
index 000000000000..61ecbc6c9bc0
--- /dev/null
+++ b/manifests/s/SerialTool/SerialTool/3.3.0/SerialTool.SerialTool.installer.yaml
@@ -0,0 +1,20 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: SerialTool.SerialTool
+PackageVersion: 3.3.0
+InstallerType: zip
+NestedInstallerType: exe
+NestedInstallerFiles:
+- RelativeFilePath: SerialTool_Setup.exe
+InstallerSwitches:
+ Silent: /exenoui /q
+ SilentWithProgress: /exebasicui /q
+Installers:
+- Architecture: x64
+ Scope: machine
+ InstallerUrl: https://www.serialtool.com/dist/SerialTool_3.3.0_Windows_Setup.zip
+ InstallerSha256: 3F59300D14604BB2FF1C9B925D8B5279A0538733B0CD1FE531B04A2C6A6FF1D4
+ ProductCode: '{C3A2649B-BCB8-4B31-863B-D1C398C71F8C}'
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/s/SerialTool/SerialTool/3.3.0/SerialTool.SerialTool.locale.en-US.yaml b/manifests/s/SerialTool/SerialTool/3.3.0/SerialTool.SerialTool.locale.en-US.yaml
new file mode 100644
index 000000000000..9aa021e87f25
--- /dev/null
+++ b/manifests/s/SerialTool/SerialTool/3.3.0/SerialTool.SerialTool.locale.en-US.yaml
@@ -0,0 +1,32 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: SerialTool.SerialTool
+PackageVersion: 3.3.0
+PackageLocale: en-US
+Publisher: SerialTool
+PublisherUrl: https://www.serialtool.com/
+PublisherSupportUrl: https://www.serialtool.com/_it/contacts
+PrivacyUrl: https://www.serialtool.com/_it/privacy
+Author: SerialTool Team
+PackageName: SerialTool
+PackageUrl: https://www.serialtool.com/
+License: Freeware
+Copyright: © Copyright SerialTool 2021-2026 - All Rights Reserved
+ShortDescription: Professional cross-platform serial port utility for communication, monitoring and debugging.
+Description: SerialTool is a professional, cross-platform serial port utility for Windows, macOS and Linux. It allows developers and engineers to communicate, monitor and debug serial port traffic (RS232, RS485, UART) with features like Python scripting, Modbus support and a built-in Hex editor.
+Moniker: serialtool
+Tags:
+- serial
+- com-port
+- terminal
+- rs232
+- rs485
+- uart
+- modbus
+- hex-editor
+- debugging
+- monitoring
+PurchaseUrl: https://www.serialtool.com/_it/serial-port-license
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/s/SerialTool/SerialTool/3.3.0/SerialTool.SerialTool.yaml b/manifests/s/SerialTool/SerialTool/3.3.0/SerialTool.SerialTool.yaml
new file mode 100644
index 000000000000..8eb6d7822390
--- /dev/null
+++ b/manifests/s/SerialTool/SerialTool/3.3.0/SerialTool.SerialTool.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: SerialTool.SerialTool
+PackageVersion: 3.3.0
+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/s/SteelSeries/GG/110.0.0/SteelSeries.GG.installer.yaml b/manifests/s/SteelSeries/GG/110.0.0/SteelSeries.GG.installer.yaml
new file mode 100644
index 000000000000..faca7d414486
--- /dev/null
+++ b/manifests/s/SteelSeries/GG/110.0.0/SteelSeries.GG.installer.yaml
@@ -0,0 +1,25 @@
+# Created by Anthelion using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: SteelSeries.GG
+PackageVersion: 110.0.0
+InstallerType: nullsoft
+Scope: machine
+InstallModes:
+- interactive
+- silent
+UpgradeBehavior: install
+ProductCode: SteelSeries GG
+ReleaseDate: 2026-05-05
+AppsAndFeaturesEntries:
+- DisplayName: SteelSeries GG 109.1.0
+ ProductCode: SteelSeries GG
+ElevationRequirement: elevatesSelf
+InstallationMetadata:
+ DefaultInstallLocation: '%ProgramFiles(x86)%\SteelSeries\GG'
+Installers:
+- Architecture: x64
+ InstallerUrl: https://engine.steelseriescdn.com/SteelSeriesGG110.0.0Setup.exe
+ InstallerSha256: 71A849A76A7E14041C09195BAC5B7D2B7E6CDDE71468D82CBC826BDAE148D94E
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/s/SteelSeries/GG/110.0.0/SteelSeries.GG.locale.en-US.yaml b/manifests/s/SteelSeries/GG/110.0.0/SteelSeries.GG.locale.en-US.yaml
new file mode 100644
index 000000000000..25ba7ea024a5
--- /dev/null
+++ b/manifests/s/SteelSeries/GG/110.0.0/SteelSeries.GG.locale.en-US.yaml
@@ -0,0 +1,44 @@
+# Created by Anthelion using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: SteelSeries.GG
+PackageVersion: 110.0.0
+PackageLocale: en-US
+Publisher: SteelSeries ApS
+PublisherUrl: https://steelseries.com/gg
+PublisherSupportUrl: https://support.steelseries.com/
+PrivacyUrl: https://steelseries.com/policies/privacy/
+Author: SteelSeries ApS
+PackageName: SteelSeries GG
+PackageUrl: https://steelseries.com/gg
+License: Proprietary
+LicenseUrl: https://steelseries.com/policies
+Copyright: Copyright (c) SteelSeries ApS
+ShortDescription: SteelSeries GG helps create better connections with your gear, your people and your game.
+Description: |-
+ SteelSeries GG helps create better connections with your gear, your people and your game.
+ Try new services that enhance your game like the Moments gameplay clipping tool and manage your hardware from the same software platform.
+Moniker: steelseriesgg
+Tags:
+- apex
+- arctis
+- controller
+- engine
+- gg
+- headphones
+- headset
+- keyboard
+- mice
+- mouse
+- mousepad
+- qck
+- rival
+- sonar
+- steelseriesengine
+Documentations:
+- DocumentLabel: Engine
+ DocumentUrl: https://steelseries.com/gg/engine
+- DocumentLabel: Sonar
+ DocumentUrl: https://steelseries.com/gg/sonar
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/s/SteelSeries/GG/110.0.0/SteelSeries.GG.yaml b/manifests/s/SteelSeries/GG/110.0.0/SteelSeries.GG.yaml
new file mode 100644
index 000000000000..ff1fc65b8006
--- /dev/null
+++ b/manifests/s/SteelSeries/GG/110.0.0/SteelSeries.GG.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: SteelSeries.GG
+PackageVersion: 110.0.0
+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/t/Tutanota/Tutanota/348.260505.1/Tutanota.Tutanota.installer.yaml b/manifests/t/Tutanota/Tutanota/348.260505.1/Tutanota.Tutanota.installer.yaml
new file mode 100644
index 000000000000..261e38f36a5d
--- /dev/null
+++ b/manifests/t/Tutanota/Tutanota/348.260505.1/Tutanota.Tutanota.installer.yaml
@@ -0,0 +1,27 @@
+# Created by Anthelion using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Tutanota.Tutanota
+PackageVersion: 348.260505.1
+InstallerType: nullsoft
+InstallModes:
+- interactive
+- silent
+UpgradeBehavior: install
+ProductCode: 450699d2-1c81-5ee5-aec6-08dddb7af9d7
+ReleaseDate: 2026-05-05
+AppsAndFeaturesEntries:
+- DisplayName: Tuta Mail 348.260505.1
+ ProductCode: 450699d2-1c81-5ee5-aec6-08dddb7af9d7
+Installers:
+- Architecture: x64
+ Scope: user
+ InstallerUrl: https://github.com/tutao/tutanota/releases/download/tutanota-desktop-release-348.260505.1/tutanota-desktop-win.exe
+ InstallerSha256: BB0433F10F6114D868564A6634F21C9C6C5893E5EE4A6EED383699F36E2773CB
+- Architecture: x64
+ Scope: machine
+ InstallerUrl: https://github.com/tutao/tutanota/releases/download/tutanota-desktop-release-348.260505.1/tutanota-desktop-win.exe
+ InstallerSha256: BB0433F10F6114D868564A6634F21C9C6C5893E5EE4A6EED383699F36E2773CB
+ ElevationRequirement: elevatesSelf
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Tutanota/Tutanota/348.260505.1/Tutanota.Tutanota.locale.en-US.yaml b/manifests/t/Tutanota/Tutanota/348.260505.1/Tutanota.Tutanota.locale.en-US.yaml
new file mode 100644
index 000000000000..e4a2171ce33a
--- /dev/null
+++ b/manifests/t/Tutanota/Tutanota/348.260505.1/Tutanota.Tutanota.locale.en-US.yaml
@@ -0,0 +1,58 @@
+# Created by Anthelion using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Tutanota.Tutanota
+PackageVersion: 348.260505.1
+PackageLocale: en-US
+Publisher: Tutao GmbH
+PublisherUrl: https://tuta.com/
+PublisherSupportUrl: https://github.com/tutao/tutanota/issues
+Author: Tutao GmbH
+PackageName: Tutanota Desktop
+PackageUrl: https://github.com/tutao/tutanota
+License: GPL-3.0
+LicenseUrl: https://github.com/tutao/tutanota/blob/HEAD/LICENSE.txt
+Copyright: Copyright © 2022 Tutao GmbH
+ShortDescription: Tutanota is an email client with a strong focus on security and privacy that lets you encrypt emails on all your devices.
+Description: |-
+ Tutanota is the worlds most secure email service, easy to use and private by design.
+ With end-to-end encryption and 2FA, your emails have never been more secure.
+ The built-in encryption guarantees that your mailbox belongs to you.
+ Nobody can decrypt or read your data.
+Moniker: tutanota
+Tags:
+- calendar
+- email
+- email-client
+- encryption
+- end-to-end-encryption
+- privacy
+- private
+- secure
+ReleaseNotes: |-
+ What's new
+ - improvements to support dialog
+ - improvements to invoice rendering
+ - new illustrations
+
+ Bugfixes
+ - Add offline migration to fix MailSetEntry ranges broken by offline cleaner #10750
+ - Cannot see mails older than offline storage range #10694
+
+ Milestone
+ https://github.com/tutao/tutanota/milestone/427?closed=1
+
+ Asset Checksums (SHA256)
+ tutanota-desktop-linux.AppImage:
+ 40b9852e7893a11df5e52c2bbbd0bd817febe70e3d14a541ca5382ca1cf75a93
+ tutanota-desktop-win.exe:
+ bb0433f10f6114d868564a6634f21c9c6c5893e5ee4a6eed383699f36e2773cb
+ tutanota-desktop-mac.dmg:
+ 3f49b1e902f6a0656a3760100b7af93863968d38e44c609897158fd51a3a7f36
+ReleaseNotesUrl: https://github.com/tutao/tutanota/releases/tag/tutanota-desktop-release-348.260505.1
+PurchaseUrl: https://tutanota.com/pricing
+Documentations:
+- DocumentLabel: FAQ
+ DocumentUrl: https://tutanota.com/faq
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Tutanota/Tutanota/348.260505.1/Tutanota.Tutanota.yaml b/manifests/t/Tutanota/Tutanota/348.260505.1/Tutanota.Tutanota.yaml
new file mode 100644
index 000000000000..da6db260f1e8
--- /dev/null
+++ b/manifests/t/Tutanota/Tutanota/348.260505.1/Tutanota.Tutanota.yaml
@@ -0,0 +1,8 @@
+# Created by Anthelion using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: Tutanota.Tutanota
+PackageVersion: 348.260505.1
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/t/tonhowtf/OmniGet/0.5.1/tonhowtf.OmniGet.installer.yaml b/manifests/t/tonhowtf/OmniGet/0.5.1/tonhowtf.OmniGet.installer.yaml
new file mode 100644
index 000000000000..66420eca67f2
--- /dev/null
+++ b/manifests/t/tonhowtf/OmniGet/0.5.1/tonhowtf.OmniGet.installer.yaml
@@ -0,0 +1,27 @@
+# Created with WinGet Tracker using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: tonhowtf.OmniGet
+PackageVersion: 0.5.1
+InstallerLocale: en-US
+InstallerType: nullsoft
+Scope: user
+InstallModes:
+- interactive
+- silent
+- silentWithProgress
+UpgradeBehavior: install
+ProductCode: omniget
+ReleaseDate: 2026-05-05
+AppsAndFeaturesEntries:
+- DisplayName: omniget
+ Publisher: tonho
+ ProductCode: omniget
+InstallationMetadata:
+ DefaultInstallLocation: '%LocalAppData%\omniget'
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/tonhowtf/omniget/releases/download/v0.5.1/omniget_0.5.1_x64-setup.exe
+ InstallerSha256: 3F45F26A4116E3A3A14B912BF748216730958C01B09446B7D18573CCFF6030B8
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/t/tonhowtf/OmniGet/0.5.1/tonhowtf.OmniGet.locale.en-US.yaml b/manifests/t/tonhowtf/OmniGet/0.5.1/tonhowtf.OmniGet.locale.en-US.yaml
new file mode 100644
index 000000000000..47e39be8019d
--- /dev/null
+++ b/manifests/t/tonhowtf/OmniGet/0.5.1/tonhowtf.OmniGet.locale.en-US.yaml
@@ -0,0 +1,37 @@
+# Created with WinGet Tracker using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: tonhowtf.OmniGet
+PackageVersion: 0.5.1
+PackageLocale: en-US
+Publisher: tonhowtf
+PublisherUrl: https://github.com/tonhowtf
+PublisherSupportUrl: https://github.com/tonhowtf/omniget/issues
+Author: tonhowtf
+PackageName: OmniGet
+PackageUrl: https://github.com/tonhowtf/omniget
+License: GPL-3.0
+LicenseUrl: https://github.com/tonhowtf/omniget/blob/HEAD/LICENSE
+ShortDescription: Desktop app to download videos, courses, and media from 50+ platforms.
+Description: Desktop app to download videos, courses, and media from 50+ platforms. YouTube, Instagram, TikTok, Bilibili (哔哩哔哩), Douyin (抖音), 小红书, 快手, 优酷, Hotmart, Udemy, Kiwify, Telegram, and 1000+ more via yt-dlp. Download torrents and send files between devices over P2P.
+Tags:
+- bilibili-downloader
+- course-downloader
+- download-manager
+- hotmart-downloader
+- instagram-downloader
+- media-downloader
+- reddit-downloader
+- rust
+- tauri
+- tiktok-downloader
+- twitter-downloader
+- udemy
+- udemy-downloader
+- video-downloader
+- youtube-downloader
+- yt-dlp
+ReleaseNotes: Download the installer for your platform below.
+ReleaseNotesUrl: https://github.com/tonhowtf/omniget/releases/tag/v0.5.1
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/tonhowtf/OmniGet/0.5.1/tonhowtf.OmniGet.yaml b/manifests/t/tonhowtf/OmniGet/0.5.1/tonhowtf.OmniGet.yaml
new file mode 100644
index 000000000000..aba2c4cb1d28
--- /dev/null
+++ b/manifests/t/tonhowtf/OmniGet/0.5.1/tonhowtf.OmniGet.yaml
@@ -0,0 +1,8 @@
+# Created with WinGet Tracker using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: tonhowtf.OmniGet
+PackageVersion: 0.5.1
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/u/UNIkeEN/SJMCL/1.0.0/UNIkeEN.SJMCL.installer.yaml b/manifests/u/UNIkeEN/SJMCL/1.0.0/UNIkeEN.SJMCL.installer.yaml
new file mode 100644
index 000000000000..97164f41dff2
--- /dev/null
+++ b/manifests/u/UNIkeEN/SJMCL/1.0.0/UNIkeEN.SJMCL.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: UNIkeEN.SJMCL
+PackageVersion: 1.0.0
+InstallerType: nullsoft
+Scope: user
+UpgradeBehavior: install
+Protocols:
+- sjmcl
+ProductCode: SJMCL
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x86
+ InstallerUrl: https://mc.sjtu.cn/sjmcl/releases/SJMCL_1.0.0_windows_i686_setup.exe
+ InstallerSha256: 432C7C63B102FD7E9180E90F22FD36A1DA65BC2DF5451BD2B620614616348D5C
+- Architecture: x64
+ InstallerUrl: https://mc.sjtu.cn/sjmcl/releases/SJMCL_1.0.0_windows_x86_64_setup.exe
+ InstallerSha256: 88D1A718A9656E2F9DAD450E96B12D7EF74D33BAC9D4816178A99B2F124F5180
+- Architecture: arm64
+ InstallerUrl: https://mc.sjtu.cn/sjmcl/releases/SJMCL_1.0.0_windows_aarch64_setup.exe
+ InstallerSha256: 52D138F394501145BBFA5D3B0783D68412B14AC70FF423F9670C580E4BDF0E3E
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/u/UNIkeEN/SJMCL/1.0.0/UNIkeEN.SJMCL.locale.en-US.yaml b/manifests/u/UNIkeEN/SJMCL/1.0.0/UNIkeEN.SJMCL.locale.en-US.yaml
new file mode 100644
index 000000000000..a9b93fd6f54f
--- /dev/null
+++ b/manifests/u/UNIkeEN/SJMCL/1.0.0/UNIkeEN.SJMCL.locale.en-US.yaml
@@ -0,0 +1,74 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: UNIkeEN.SJMCL
+PackageVersion: 1.0.0
+PackageLocale: en-US
+Author: Shanghai Jiao Tong University Minecraft Club
+PackageUrl: https://mc.sjtu.cn/sjmcl/en
+ShortDescription: Next‑generation open-source cross‑platform Minecraft launcher.
+Description: SJMC Launcher is a modern, cross-platform Minecraft launcher built on the Tauri framework, independently developed by members of the Shanghai Jiao Tong University Minecraft Club.
+Tags:
+- china
+- prc
+ReleaseNotes: |-
+ Introducing the first official release of SJMCL. 现已推出 SJMCL 首个正式版本 🚀
+ - 🔥 UI Updates:
+ - Redesigned window title bar and top navigation bar, delivering an elegant, dynamic, and cross-platform consistent visual experience. #1444 #1446 #1453 #1464 #1482 @UNIkeEN @no6rainer
+ - New built-in launcher wallpapers with adaptive variations across different color modes. @funkthesky-ops @UNIkeEN @Neuteria
+ - 🔥 Core Features:
+ - Support exporting instances as modpacks, compatible with Modrinth and MultiMC formats. #1344 #1477 @w1049 @UNIkeEN @Stya-hr
+ - A brand-new Discover page, allowing users to browse Minecraft news, download various resources, or search local content in one place. #1359 #1418 #1514 #1538 @SundayChen @zaixiZaixiSJTU @UNIkeEN
+ - Support installing and modifying the Quilt loader, with automatic QF API download. #1434 #1459 #1586 @baiyuansjtu @UNIkeEN
+ - Support dragging modpacks, mods, saves, and other files into the launcher window for quick import. #1561 @UNIkeEN @zaixiZaixiSJTU
+ - 🔥 Intelligence Services:
+ - Introduce the MCP service for the launcher, enabling external agent applications to connect for automation control. #1370 #1475 #1532 #1587 @UNIkeEN @xunying123 @ToolmanP @AinurCody
+ - Add a CLI tool for the launcher, providing terminal-based control via the MCP service. @UNIkeEN
+ - 🔥 Extension System:
+ - Introduce an extension system, allowing third-party developers to extend the launcher with various practical features. #1409 #1487 #1497 #1504 #1509 #1510 #1517 #1521 #1528 #1530 #1547 #1549 #1553 #1556 #1564 @UNIkeEN @Stya-hr @hans362 @xunying123 @zaixiZaixiSJTU
+ - 🌟 Support modifying installed OptiFine loaders and installing preview versions of OptiFine. #1374 @xunying123 @baiyuansjtu @UNIkeEN
+ - 🌟 Support clearing history in the download task list. #1400
+ - 🌟 Support importing profiles from MultiMC. #1419 @xunying123
+ - 🌟 When launching via deeplink, allow users to select the target profile and instance, and directly enter a specified world or server. #1427 #1442 @UNIkeEN
+ - 🌟 Support viewing game server latency within the launcher. #1436 @HsxMark
+ - 🌟 Support adding color tags to instances and categorizing them accordingly. #1447 @UNIkeEN
+ - 🌟 Support automatically downloading a suitable Java version when creating instances. #1460 @UNIkeEN
+ - 🌟 Support applying the LWJGL Unsafe Agent from HMCL @Glavo to affected Minecraft versions to fix performance issues. #1481 #1568 @w1049 @xunying123
+ - 🌟 Support manually selecting the Java garbage collector used when launching the game. #1505 @UNIkeEN
+ - 🌟 Support Classical Chinese (Wenyan) in the launcher UI. #1512 @ff98sha @UNIkeEN @Lawrenclia
+ - 🌟 Support quickly copying screenshots on Windows and Linux for sharing. #1526 @zaixiZaixiSJTU
+ - 🐛 Fix and improve a series of UI display issues. #1379 #1404 #1473 #1563 @UNIkeEN @hbz114514 @baiyuansjtu @zaixiZaixiSJTU @Reqwey
+ - 🐛 Fix an issue where certain modpacks could not be imported. #1392 @Reqwey
+ - 🐛 Fix incorrect detection of mod loader types for installed mods. #1408 @UNIkeEN @w1049 @3gf8jv4dv
+ - 🐛 Fix an issue where certain Minecraft versions were incorrectly classified as April Fools versions. #1476 @xunying123
+ - 🐛 Fix crashes caused by resource downloads in certain scenarios. #1496 #1535 @Xiaxiaobaii
+ - 🐛 Fix incorrect placement of additional datapacks when importing certain modpacks. #1542 @Copilot @3gf8jv4dv
+ - 🐛 Fix incorrect system dialog language on macOS. #1557 @UNIkeEN
+ - 🐛 Fix frontend state synchronization issues after renaming instances. #1558 @UNIkeEN @xunying123
+ - 🐛 Fix lag when opening folders in certain scenarios on Windows. @UNIkeEN
+ - ⚡️ Extend the cache lifetime of mod translations to improve the experience when viewing installed mods. #1527 @w1049
+ - ⚡️ Optimize launcher startup speed in development mode. #1555 @UNIkeEN
+ - 🛠 Desktop shortcut icons for instances are now generated by combining instance and launcher icons. #1411 @icgnos @funkthesky-ops @RobertZhang0901
+ - 🛠 Adjust links to certain launcher documentation and acknowledgements. #1426 #1474 @hbz114514 @suhang12332
+ - 🛠 Set the default level of game integrity checks to “normal”. #1428 @HsxMark
+ - 🛠 Show a modal warning when the launcher did not exit properly last time. #1472 @UNIkeEN
+ - 🛠 Change the shortcut for aggregated search to Ctrl (Command) + F. #1544 @zaixiZaixiSJTU
+ - 🛠 Provide more detailed error messages for XSTS errors during Microsoft login. #1571 @zaixiZaixiSJTU @xphost008
+ - 🛠 Adjust the result sorting logic of aggregated search. #1583 @UNIkeEN
+ - 🛠 Adjust the placement of certain settings; “Sync and Restore” related features are no longer shown on a separate page. @UNIkeEN
+ - 🛠 Remove support for dragging buttons from Blessing Skin-based sites to add authentication servers.
+ - 💄 Refactor parts of the codebase to improve style and maintainability.
+ - 🌐 Update multilingual translations for the launcher UI. #1539 @VhahahaV
+ - 📦 Discontinue AppImage distribution for Linux. #1573 @pangbo13
+ - 📦 Update multiple dependencies to patch versions. @dependabot[bot] @Codex
+ - Workflow:
+ - Fix incorrect links in the AUR release workflow. #1416 @KodateMitsuru
+ - Automatically add labels to PRs to indicate the scope of changes. #1483 @pangbo13
+ - Web & Docs:
+ - Update the Code of Conduct to version 3.0. @UNIkeEN
+ - Launch a brand-new official website and documentation powered by VitePress. @UNIkeEN @baiyuansjtu @hans362 @hbz114514 @KodateMitsuru @Dainsleif233 @Lawrenclia
+Documentations:
+- DocumentLabel: Docs
+ DocumentUrl: https://mc.sjtu.cn/sjmcl/en/docs
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/u/UNIkeEN/SJMCL/1.0.0/UNIkeEN.SJMCL.locale.zh-CN.yaml b/manifests/u/UNIkeEN/SJMCL/1.0.0/UNIkeEN.SJMCL.locale.zh-CN.yaml
new file mode 100644
index 000000000000..0e32a12378d9
--- /dev/null
+++ b/manifests/u/UNIkeEN/SJMCL/1.0.0/UNIkeEN.SJMCL.locale.zh-CN.yaml
@@ -0,0 +1,79 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: UNIkeEN.SJMCL
+PackageVersion: 1.0.0
+PackageLocale: zh-CN
+Publisher: SJMCL
+PublisherUrl: https://mc.sjtu.cn/
+PublisherSupportUrl: https://github.com/UNIkeEN/SJMCL/issues
+Author: 上海交通大学 Minecraft 社
+PackageName: SJMCL
+PackageUrl: https://mc.sjtu.cn/sjmcl
+License: GPL-3.0
+LicenseUrl: https://github.com/UNIkeEN/SJMCL/blob/HEAD/LICENSE
+Copyright: 2026 © SJMCL Team
+ShortDescription: 新一代开源跨平台 Minecraft 启动器
+Description: SJMC Launcher 是一款基于 Tauri 框架打造的现代化、跨平台 Minecraft 启动器,由上海交通大学 Minecraft 社的成员自主开发。
+Tags:
+- mc
+- minecraft
+- 我的世界
+ReleaseNotes: |-
+ - 🔥 外观更新:
+ - 全新设计的窗口标题栏与顶部导航栏,带来优雅、灵动、跨平台一致的视觉体验。#1444 #1446 #1453 #1464 #1482 @UNIkeEN @no6rainer
+ - 全新的启动器预设壁纸,在不同的颜色模式下灵活变化。 @funkthesky-ops @UNIkeEN @Neuteria
+ - 🔥 核心功能更新:
+ - 支持将实例导出为整合包,支持 Modrinth 与 MultiMC 格式。#1344 #1477 @w1049 @UNIkeEN @Stya-hr
+ - 全新发现页,支持在一处浏览 Minecraft 新闻、下载各类游戏资源或搜索本地内容。#1359 #1418 #1514 #1538 @SundayChen @zaixiZaixiSJTU @UNIkeEN
+ - 支持安装与修改 Quilt 加载器并同时下载 QF API 模组。#1434 #1459 #1586 @baiyuansjtu @UNIkeEN
+ - 支持将整合包、模组、存档等文件拖入启动器窗口以快捷导入。#1561 @UNIkeEN @zaixiZaixiSJTU
+ - 🔥 智能服务:
+ - 新增启动器 MCP 服务,允许外部 Agent 应用连接以实现自动化控制。#1370 #1475 #1532 #1587 @UNIkeEN @xunying123 @ToolmanP @AinurCody
+ - 新增启动器 CLI 工具,基于 MCP 服务提供终端控制能力。 @UNIkeEN
+ - 🔥 扩展系统:
+ - 新增扩展系统,支持第三方开发者为启动器扩展各类实用功能。#1409 #1487 #1497 #1504 #1509 #1510 #1517 #1521 #1528 #1530 #1547 #1549 #1553 #1556 #1564 @UNIkeEN @Stya-hr @hans362 @xunying123 @zaixiZaixiSJTU
+ - 🌟 支持修改已安装的 OptiFine 加载器,支持安装 OptiFine 的预览版本。#1374 @xunying123 @baiyuansjtu @UNIkeEN
+ - 🌟 支持在下载任务列表页清空历史。#1400
+ - 🌟 支持从 MultiMC 导入角色信息。#1419 @xunying123
+ - 🌟 以 Deeplink 唤起启动流程时,支持让用户选择待游玩的角色与实例、支持直接进入指定存档或服务器。#1427 #1442 @UNIkeEN
+ - 🌟 支持在启动器内查看游戏服务器延迟。#1436 @HsxMark
+ - 🌟 支持为实例添加颜色标签,并按标签分类展示实例。#1447 @UNIkeEN
+ - 🌟 支持在创建实例时自动下载合适版本的 Java。#1460 @UNIkeEN
+ - 🌟 支持为受影响的 Minecraft 版本使用来自 HMCL @Glavo 的 LWJGL Unsafe Agent 修复性能问题。#1481 #1568 @w1049 @xunying123
+ - 🌟 支持手动设置启动游戏时使用的 Java 内存垃圾回收器。#1505 @UNIkeEN
+ - 🌟 启动器界面支持文言文。#1512 @ff98sha @UNIkeEN @Lawrenclia
+ - 🌟 支持在 Windows 和 Linux 平台快捷复制屏幕截图以分享。#1526 @zaixiZaixiSJTU
+ - 🐛 修复与优化一系列界面显示问题。#1379 #1404 #1473 #1563 @UNIkeEN @hbz114514 @baiyuansjtu @zaixiZaixiSJTU @Reqwey
+ - 🐛 修复部分整合包无法导入的问题。#1392 @Reqwey
+ - 🐛 修复已安装模组所属加载器识别错误的问题。#1408 @UNIkeEN @w1049 @3gf8jv4dv
+ - 🐛 修复部分 Minecraft 版本被错误分类为愚人节版本的问题。#1476 @xunying123
+ - 🐛 修复特定情况下,下载资源导致启动器崩溃的问题。#1496 #1535 @Xiaxiaobaii
+ - 🐛 修复导入部分整合包时,额外数据包存放位置错误的问题。#1542 @Copilot @3gf8jv4dv
+ - 🐛 修复 macOS 平台下,系统对话框界面语言错误的问题。#1557 @UNIkeEN
+ - 🐛 修复更改实例名称后的前端状态同步问题。#1558 @UNIkeEN @xunying123
+ - 🐛 修复 Windows 平台下,部分场景打开文件夹卡顿的问题。@UNIkeEN
+ - ⚡️ 延长模组翻译的本地缓存有效期,提升查看已安装模组时的用户体验。#1527 @w1049
+ - ⚡️ 优化开发模式下的启动器启动速度。#1555 @UNIkeEN
+ - 🛠 现在创建实例桌面快捷方式的图标,将使用实例与启动器图标合成。#1411 @icgnos @funkthesky-ops @RobertZhang0901
+ - 🛠 调整部分启动器文档、鸣谢信息的跳转链接。#1426 #1474 @hbz114514 @suhang12332
+ - 🛠 调整游戏完整性检查等级的默认设置为普通检查。#1428 @HsxMark
+ - 🛠 启动器上次未正常退出时,显示对话框以提示用户。#1472 @UNIkeEN
+ - 🛠 调整聚合搜索的快捷键为 Ctrl(Command)+ F。#1544 @zaixiZaixiSJTU
+ - 🛠 对于微软登录流程中的 XSTS 错误,提供更详细的错误提示。#1571 @zaixiZaixiSJTU @xphost008
+ - 🛠 调整聚合搜索的结果排序逻辑。#1583 @UNIkeEN
+ - 🛠 调整部分设置项的位置,“同步与还原” 相关功能将不再展示单独页面。@UNIkeEN
+ - 🛠 不再支持从 Blessing Skin 系列皮肤站拖动按钮以添加第三方认证服务器。
+ - 💄 重构部分代码以提升代码风格与可维护性。
+ - 🌐 更新启动器界面文本的多语言翻译。#1539 @VhahahaV
+ - 📦 终止为 Linux 平台分发 AppImage 格式。#1573 @pangbo13
+ - 📦 更新多项依赖至补丁版本。@dependabot[bot] @Codex
+ - 工作流:
+ - 修复 AUR 发版流程中的链接错误。#1416 @KodateMitsuru
+ - 为 PR 自动添加标签以指示修改量。#1483 @pangbo13
+ - 网页与文档:
+ - 更新 Code of Conduct 至 3.0 版本。@UNIkeEN
+ - 上线基于 VitePress 的全新官网(文档)。@UNIkeEN @baiyuansjtu @hans362 @hbz114514 @KodateMitsuru @Dainsleif233 @Lawrenclia
+ReleaseNotesUrl: https://github.com/UNIkeEN/SJMCL/releases/tag/v1.0.0
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/u/UNIkeEN/SJMCL/1.0.0/UNIkeEN.SJMCL.yaml b/manifests/u/UNIkeEN/SJMCL/1.0.0/UNIkeEN.SJMCL.yaml
new file mode 100644
index 000000000000..adec5a4780f6
--- /dev/null
+++ b/manifests/u/UNIkeEN/SJMCL/1.0.0/UNIkeEN.SJMCL.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: UNIkeEN.SJMCL
+PackageVersion: 1.0.0
+DefaultLocale: zh-CN
+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/w/WinsiderSS/SystemInformer/Canary/4.0.26125.851/WinsiderSS.SystemInformer.Canary.installer.yaml b/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26125.851/WinsiderSS.SystemInformer.Canary.installer.yaml
new file mode 100644
index 000000000000..3171d8171961
--- /dev/null
+++ b/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26125.851/WinsiderSS.SystemInformer.Canary.installer.yaml
@@ -0,0 +1,25 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: WinsiderSS.SystemInformer.Canary
+PackageVersion: 4.0.26125.851
+InstallerType: exe
+Scope: machine
+InstallModes:
+- silent
+- silentWithProgress
+- interactive
+InstallerSwitches:
+ Silent: -install -silent
+ SilentWithProgress: -install -silent
+ Interactive: -install
+ Upgrade: -update -silent
+ProductCode: SystemInformer-Canary
+ElevationRequirement: elevatesSelf
+Installers:
+- Architecture: neutral
+ InstallerUrl: https://github.com/winsiderss/si-builds/releases/download/4.0.26125.851/systeminformer-build-canary-setup.exe
+ InstallerSha256: 407BC71A0F9BD2781F83304D13DD012F7D99A73ADB8D965BD4972F6B48497B72
+ManifestType: installer
+ManifestVersion: 1.12.0
+ReleaseDate: 2026-05-05
diff --git a/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26125.851/WinsiderSS.SystemInformer.Canary.locale.en-US.yaml b/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26125.851/WinsiderSS.SystemInformer.Canary.locale.en-US.yaml
new file mode 100644
index 000000000000..5cdc972d795a
--- /dev/null
+++ b/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26125.851/WinsiderSS.SystemInformer.Canary.locale.en-US.yaml
@@ -0,0 +1,37 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: WinsiderSS.SystemInformer.Canary
+PackageVersion: 4.0.26125.851
+PackageLocale: en-US
+Publisher: Winsider Seminars & Solutions, Inc.
+PublisherUrl: https://windows-internals.com/
+PublisherSupportUrl: https://github.com/winsiderss/systeminformer/issues
+PackageName: System Informer (Canary)
+PackageUrl: https://system-informer.com/
+License: MIT License
+LicenseUrl: https://github.com/winsiderss/systeminformer/blob/master/LICENSE.txt
+Copyright: Copyright (c) Winsider Seminars & Solutions, Inc. All rights reserved.
+CopyrightUrl: https://github.com/winsiderss/systeminformer/blob/master/COPYRIGHT.txt
+ShortDescription: System Informer is a free, powerful, multi-purpose tool that helps you monitor system resources, debug software and detect malware.
+Moniker: systeminformer-canary
+Tags:
+- windows
+- debugger
+- security
+- benchmarking
+- process-manager
+- performance
+- monitor
+- monitoring
+- realtime
+- administrator
+- process-monitor
+- performance-tuning
+- profiling
+- monitor-performance
+- performance-monitoring
+- system-monitor
+ReleaseNotesUrl: https://github.com/winsiderss/si-builds/releases/tag/4.0.26125.851
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26125.851/WinsiderSS.SystemInformer.Canary.yaml b/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26125.851/WinsiderSS.SystemInformer.Canary.yaml
new file mode 100644
index 000000000000..08eca87359c2
--- /dev/null
+++ b/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26125.851/WinsiderSS.SystemInformer.Canary.yaml
@@ -0,0 +1,8 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: WinsiderSS.SystemInformer.Canary
+PackageVersion: 4.0.26125.851
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/y/Yuejing/Kocard/3.0.4/Yuejing.Kocard.locale.en-US.yaml b/manifests/y/Yuejing/Kocard/3.0.4/Yuejing.Kocard.locale.en-US.yaml
index c4ab86cb0734..337987d5657e 100644
--- a/manifests/y/Yuejing/Kocard/3.0.4/Yuejing.Kocard.locale.en-US.yaml
+++ b/manifests/y/Yuejing/Kocard/3.0.4/Yuejing.Kocard.locale.en-US.yaml
@@ -13,9 +13,9 @@ PackageName: Kocard
PackageUrl: https://www.kocard.net/
License: Proprietary
LicenseUrl: https://www.kocard.net/Kocard用户协议.html
-Copyright: Copyright 2021-2023 kocard.net
+Copyright: 2021-2023 kocard.net
# CopyrightUrl:
-ShortDescription: Material backup and management software
+ShortDescription: Material backup and management software.
Description: KOCARD is a professional material cloning and management software that provides you with efficient, convenient and secure card cloning experience. It features multi-path backup, file verification, export report, push notification and more functionalities.
# Moniker:
Tags:
@@ -26,6 +26,8 @@ Tags:
- manage
- material
- resource
+- prc
+- china
# ReleaseNotes:
# ReleaseNotesUrl:
# PurchaseUrl:
diff --git a/manifests/z/Zellij/Zellij/0.44.2/Zellij.Zellij.installer.yaml b/manifests/z/Zellij/Zellij/0.44.2/Zellij.Zellij.installer.yaml
new file mode 100644
index 000000000000..57ab8d953fc7
--- /dev/null
+++ b/manifests/z/Zellij/Zellij/0.44.2/Zellij.Zellij.installer.yaml
@@ -0,0 +1,23 @@
+# Created with komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Zellij.Zellij
+PackageVersion: 0.44.2
+InstallerLocale: en-US
+InstallerType: wix
+UpgradeBehavior: install
+Commands:
+- zellij
+ProductCode: '{328E7AF7-2882-4618-B835-626B6C0B7E06}'
+ReleaseDate: 2026-05-05
+AppsAndFeaturesEntries:
+- ProductCode: '{328E7AF7-2882-4618-B835-626B6C0B7E06}'
+ UpgradeCode: '{BEE7A897-6DE0-4243-9977-5924C8CDB391}'
+InstallationMetadata:
+ DefaultInstallLocation: '%ProgramFiles(x86)%\Zellij'
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/zellij-org/zellij/releases/download/v0.44.2/zellij-x86_64-pc-windows-msvc-installer.msi
+ InstallerSha256: 5FABA42C1A81D7DCA4AF8C8CF09E875B4341B747CAC564951DCDA65A1BF4660B
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/z/Zellij/Zellij/0.44.2/Zellij.Zellij.locale.en-US.yaml b/manifests/z/Zellij/Zellij/0.44.2/Zellij.Zellij.locale.en-US.yaml
new file mode 100644
index 000000000000..df0ea6cd4d24
--- /dev/null
+++ b/manifests/z/Zellij/Zellij/0.44.2/Zellij.Zellij.locale.en-US.yaml
@@ -0,0 +1,37 @@
+# Created with komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Zellij.Zellij
+PackageVersion: 0.44.2
+PackageLocale: en-US
+Publisher: Zellij Contributors
+PublisherUrl: https://github.com/zellij-org
+PublisherSupportUrl: https://github.com/zellij-org/zellij/issues
+Author: Aram Drevekenin
+PackageName: Zellij
+PackageUrl: https://zellij.dev/
+License: MIT
+LicenseUrl: https://github.com/zellij-org/zellij/blob/HEAD/LICENSE.md
+Copyright: Copyright (c) 2020 Zellij contributors
+CopyrightUrl: https://github.com/zellij-org/zellij/blob/main/LICENSE.md
+ShortDescription: A terminal workspace with batteries included
+Moniker: zellij
+Tags:
+- multiplexer
+- terminal
+- workspace
+ReleaseNotes: |-
+ This is a small patch release to fix some issues found recently in 0.44, as well as some minor long standing annoyances.
+ The only major feature introduced in this patch is support for CSI 2031: automatically switching between dark/light theme (assuming the terminal emulator itself supports it), as well as forwarding these instructions to the apps running inside Zellij. With this change, comes the new theme_dark and theme_light configuration parameters, that will be used by Zellij when it is instructed to switch, eg.
+ theme "dracula" // normal theme as it was up until now
+ theme_dark "dracula" // Zellij will use this when instructed to change to a dark theme
+ theme_light "catppuccin-latte" // Zellij will use this when instructed to change to a light theme
+ For convenience (eg. when using a terminal emulator that does not support theme switching), Zellij also now includes the zellij action set-light-theme, zellij action set-dark-theme and zellij action toggle-theme CLI commands to allow doing this manually. (note: when issuing these commands, Zellij will also send a CSI2031 to running terminal applications inside it that requested it, even if the host terminal itself does not support them).
+ For a full list of changes, please see the changelog.
+ Please Support the Zellij Developer ❤️
+ Zellij is a labor of love and is provided free and open-source to anyone who wishes to use it.
+ Zellij will never display ads or collect your data.
+ To help sustain the project, please consider a recurring donation so that the developer can pay their bills: https://github.com/sponsors/imsnif
+ReleaseNotesUrl: https://github.com/zellij-org/zellij/releases/tag/v0.44.2
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/z/Zellij/Zellij/0.44.2/Zellij.Zellij.yaml b/manifests/z/Zellij/Zellij/0.44.2/Zellij.Zellij.yaml
new file mode 100644
index 000000000000..9405b7fb6989
--- /dev/null
+++ b/manifests/z/Zellij/Zellij/0.44.2/Zellij.Zellij.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: Zellij.Zellij
+PackageVersion: 0.44.2
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0