diff --git a/Tools/SandboxTest.ps1 b/Tools/SandboxTest.ps1
index 0aa67b02b452..2f9790b85d25 100644
--- a/Tools/SandboxTest.ps1
+++ b/Tools/SandboxTest.ps1
@@ -528,7 +528,11 @@ if (!$SkipManifestValidation -and ![String]::IsNullOrWhiteSpace($Manifest)) {
Start-Sleep -Seconds 5 # Allow the user 5 seconds to read the warnings before moving on
}
default {
- Write-Information $validateCommandOutput.Trim() # On the success, print an empty line after the command output
+ # Avoid writing a raw object array when `winget validate` returns multiple lines
+ $validateSuccessOutput = @($validateCommandOutput).ForEach({ $_.ToString().Trim() }).Where({ -not [String]::IsNullOrWhiteSpace($_) })
+ if ($validateSuccessOutput) {
+ Write-Information ($validateSuccessOutput -join [Environment]::NewLine)
+ }
}
}
}
@@ -767,19 +771,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 +816,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 +876,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/3/360/360File/1.0.0.1200/360.360File.installer.yaml b/manifests/3/360/360File/1.0.0.1200/360.360File.installer.yaml
new file mode 100644
index 000000000000..087e72f9203c
--- /dev/null
+++ b/manifests/3/360/360File/1.0.0.1200/360.360File.installer.yaml
@@ -0,0 +1,25 @@
+# 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: 360.360File
+PackageVersion: 1.0.0.1200
+InstallerType: exe
+Scope: user
+InstallModes:
+- interactive
+- silent
+InstallerSwitches:
+ Silent: /S
+ SilentWithProgress: /S
+UpgradeBehavior: install
+Installers:
+- Architecture: x86
+ InstallerUrl: https://down.360safe.com/pcnewapp/360FileSetup.exe
+ InstallerSha256: 276BA9C112935BC9EC47AA6C97B194A3F6415EFD17A5C00D0E140B6A5EF6F5CA
+ ProductCode: 360FileBrowser
+- Architecture: x64
+ InstallerUrl: https://down.360safe.com/pcnewapp/360FileSetup.exe
+ InstallerSha256: 276BA9C112935BC9EC47AA6C97B194A3F6415EFD17A5C00D0E140B6A5EF6F5CA
+ ProductCode: 360FileBrowser
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/3/360/360File/1.0.0.1200/360.360File.locale.en-US.yaml b/manifests/3/360/360File/1.0.0.1200/360.360File.locale.en-US.yaml
new file mode 100644
index 000000000000..8e5ea14109c1
--- /dev/null
+++ b/manifests/3/360/360File/1.0.0.1200/360.360File.locale.en-US.yaml
@@ -0,0 +1,29 @@
+# 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: 360.360File
+PackageVersion: 1.0.0.1200
+PackageLocale: en-US
+Publisher: 360.cn
+PublisherUrl: https://www.360.cn/
+PublisherSupportUrl: https://bbs.360.cn/thread-16040300-1-1.html
+Author: Beijing Qihoo Technology Co., Ltd.
+PackageName: 360文件夹
+PackageUrl: https://bbs.360.cn/thread-16040300-1-1.html
+License: Freeware
+Copyright: (C) 360.cn All Rights Reserved.
+CopyrightUrl: https://www.360.cn/about/banquanshengming.html
+ShortDescription: Multi-tab File Explorer
+Description: 360 File is a single-window, multi-tab file explorer that improves the efficiency of using various types of folders.
+Tags:
+- directory
+- explorer
+- file
+- file-explorer
+- folder
+- manage
+- management
+- system
+ReleaseNotesUrl: https://bbs.360.cn/thread-16040300-1-1.html
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/3/360/360File/1.0.0.1200/360.360File.locale.zh-CN.yaml b/manifests/3/360/360File/1.0.0.1200/360.360File.locale.zh-CN.yaml
new file mode 100644
index 000000000000..77036001f393
--- /dev/null
+++ b/manifests/3/360/360File/1.0.0.1200/360.360File.locale.zh-CN.yaml
@@ -0,0 +1,27 @@
+# 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: 360.360File
+PackageVersion: 1.0.0.1200
+PackageLocale: zh-CN
+Publisher: 360.cn
+PublisherUrl: https://www.360.cn/
+PublisherSupportUrl: https://bbs.360.cn/thread-16040300-1-1.html
+Author: 北京奇虎科技有限公司
+PackageName: 360文件夹
+PackageUrl: https://bbs.360.cn/thread-16040300-1-1.html
+License: 免费软件
+Copyright: (C) 360.cn All Rights Reserved.
+CopyrightUrl: https://www.360.cn/about/banquanshengming.html
+ShortDescription: 多标签文件管理器
+Description: 360 文件是一款单窗口多标签的资源管理器,提高了使用各类文件夹操作效率。
+Tags:
+- 文件
+- 文件夹
+- 文件资源管理器
+- 目录
+- 管理
+- 系统
+ReleaseNotesUrl: https://bbs.360.cn/thread-16040300-1-1.html
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/3/360/360File/1.0.0.1200/360.360File.yaml b/manifests/3/360/360File/1.0.0.1200/360.360File.yaml
new file mode 100644
index 000000000000..46868f0c0fb9
--- /dev/null
+++ b/manifests/3/360/360File/1.0.0.1200/360.360File.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: 360.360File
+PackageVersion: 1.0.0.1200
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/5/5E/5EClient/8.2.6/5E.5EClient.installer.yaml b/manifests/5/5E/5EClient/8.2.6/5E.5EClient.installer.yaml
index d5acb97eff4e..967cd411662e 100644
--- a/manifests/5/5E/5EClient/8.2.6/5E.5EClient.installer.yaml
+++ b/manifests/5/5E/5EClient/8.2.6/5E.5EClient.installer.yaml
@@ -1,18 +1,18 @@
-# Created with YamlCreate.ps1 Dumplings Mod
-# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json
-
-PackageIdentifier: 5E.5EClient
-PackageVersion: 8.2.6
-InstallerType: nullsoft
-Scope: machine
-InstallerSwitches:
- Upgrade: --updated
-UpgradeBehavior: install
-ProductCode: b8243c8b-3ace-5d95-b4f0-bc984c2373da
-ReleaseDate: 2025-12-25
-Installers:
-- Architecture: x64
- InstallerUrl: https://oss-arena.5eplay.com/client/5EClient-8.2.6.exe
- InstallerSha256: 53DB52DE86FD1CE2CB695B66033314311E59E13FDA5E473DA0D7278469C24825
-ManifestType: installer
-ManifestVersion: 1.10.0
+# 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: 5E.5EClient
+PackageVersion: 8.2.6
+InstallerType: nullsoft
+Scope: machine
+InstallerSwitches:
+ Upgrade: --updated
+UpgradeBehavior: install
+ProductCode: b8243c8b-3ace-5d95-b4f0-bc984c2373da
+ReleaseDate: 2025-12-25
+Installers:
+- Architecture: x64
+ InstallerUrl: https://oss-arena.5eplay.com/client/5EClient-8.2.6.exe
+ InstallerSha256: 0F620DBC793E51E6E567A9FB1B3125775D723045C9B16696DDF5166F5B36A5AA
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/5/5E/5EClient/8.2.6/5E.5EClient.locale.en-US.yaml b/manifests/5/5E/5EClient/8.2.6/5E.5EClient.locale.en-US.yaml
index 75756f13d048..2e0f77343965 100644
--- a/manifests/5/5E/5EClient/8.2.6/5E.5EClient.locale.en-US.yaml
+++ b/manifests/5/5E/5EClient/8.2.6/5E.5EClient.locale.en-US.yaml
@@ -1,20 +1,20 @@
-# Created with YamlCreate.ps1 Dumplings Mod
-# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json
-
-PackageIdentifier: 5E.5EClient
-PackageVersion: 8.2.6
-PackageLocale: en-US
-Publisher: 杭州赛凡科技有限公司
-Author: Every Technology Co., Ltd. Hangzhou
-PackageName: 5EClient
-License: Proprietary
-Copyright: ©2011-2025 Every Technology Co., Ltd. Hangzhou
-ShortDescription: 'A professional CS: GO matchmaking platform from 5EPlay'
-Description: '5EClient is a CS: GO matchmaking software that boasts over ten million registered active players and is the preferred platform for CS: GO players. The platform features proprietary state-of-the-art anti-cheating technologies as well as in-game reporting and voting to ensure a fair and enjoyable gaming experience for all players. Additionally, the platform has 128-tick competitive-grade servers to deliver a smooth gaming experience for all players. Moreover, the platform offers comprehensive game data analysis, helping players review their matches and providing professional analysis results.'
-Tags:
-- csgo
-- game
-- gaming
-- matchmaking
-ManifestType: defaultLocale
-ManifestVersion: 1.10.0
+# 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: 5E.5EClient
+PackageVersion: 8.2.6
+PackageLocale: en-US
+Publisher: 杭州赛凡科技有限公司
+Author: Every Technology Co., Ltd. Hangzhou
+PackageName: 5EClient
+License: Proprietary
+Copyright: ©2011-2025 Every Technology Co., Ltd. Hangzhou
+ShortDescription: 'A professional CS: GO matchmaking platform from 5EPlay'
+Description: '5EClient is a CS: GO matchmaking software that boasts over ten million registered active players and is the preferred platform for CS: GO players. The platform features proprietary state-of-the-art anti-cheating technologies as well as in-game reporting and voting to ensure a fair and enjoyable gaming experience for all players. Additionally, the platform has 128-tick competitive-grade servers to deliver a smooth gaming experience for all players. Moreover, the platform offers comprehensive game data analysis, helping players review their matches and providing professional analysis results.'
+Tags:
+- csgo
+- game
+- gaming
+- matchmaking
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/5/5E/5EClient/8.2.6/5E.5EClient.locale.zh-CN.yaml b/manifests/5/5E/5EClient/8.2.6/5E.5EClient.locale.zh-CN.yaml
index 8727ef7ed8b9..913b36971e0b 100644
--- a/manifests/5/5E/5EClient/8.2.6/5E.5EClient.locale.zh-CN.yaml
+++ b/manifests/5/5E/5EClient/8.2.6/5E.5EClient.locale.zh-CN.yaml
@@ -1,18 +1,18 @@
-# Created with YamlCreate.ps1 Dumplings Mod
-# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json
-
-PackageIdentifier: 5E.5EClient
-PackageVersion: 8.2.6
-PackageLocale: zh-CN
-Publisher: 杭州赛凡科技有限公司
-Author: 杭州赛凡科技有限公司
-PackageName: 5EClient
-License: 专有软件
-Copyright: ©2011-2025 杭州赛凡科技有限公司
-ShortDescription: '5EPlay 旗下专业 CS: GO 对战平台'
-Description: '5E 对战平台是由 5EPlay 开发的一款 CS: GO 对战软件,拥有超过千万注册活跃玩家,是 CS: GO 玩家的首选平台。平台采用自主研发的最新反作弊技术和游戏内举报投票功能,全面保护玩家的游戏体验。同时,平台提供 128tick 竞赛级服务器,能够给玩家带来丝滑的游戏体验。此外,平台还提供专业全面的游戏数据分析,帮助玩家全面回顾整场对局,并给出专业的分析结果。'
-Tags:
-- csgo
-- 游戏
-ManifestType: locale
-ManifestVersion: 1.10.0
+# 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: 5E.5EClient
+PackageVersion: 8.2.6
+PackageLocale: zh-CN
+Publisher: 杭州赛凡科技有限公司
+Author: 杭州赛凡科技有限公司
+PackageName: 5EClient
+License: 专有软件
+Copyright: ©2011-2025 杭州赛凡科技有限公司
+ShortDescription: '5EPlay 旗下专业 CS: GO 对战平台'
+Description: '5E 对战平台是由 5EPlay 开发的一款 CS: GO 对战软件,拥有超过千万注册活跃玩家,是 CS: GO 玩家的首选平台。平台采用自主研发的最新反作弊技术和游戏内举报投票功能,全面保护玩家的游戏体验。同时,平台提供 128tick 竞赛级服务器,能够给玩家带来丝滑的游戏体验。此外,平台还提供专业全面的游戏数据分析,帮助玩家全面回顾整场对局,并给出专业的分析结果。'
+Tags:
+- csgo
+- 游戏
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/5/5E/5EClient/8.2.6/5E.5EClient.yaml b/manifests/5/5E/5EClient/8.2.6/5E.5EClient.yaml
index 9068b1ad13bc..f1ef43acac47 100644
--- a/manifests/5/5E/5EClient/8.2.6/5E.5EClient.yaml
+++ b/manifests/5/5E/5EClient/8.2.6/5E.5EClient.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
-
-PackageIdentifier: 5E.5EClient
-PackageVersion: 8.2.6
-DefaultLocale: en-US
-ManifestType: version
-ManifestVersion: 1.10.0
+# 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: 5E.5EClient
+PackageVersion: 8.2.6
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AOMEI/Backupper/Standard/8.3.0.0/AOMEI.Backupper.Standard.installer.yaml b/manifests/a/AOMEI/Backupper/Standard/8.3.0.0/AOMEI.Backupper.Standard.installer.yaml
new file mode 100644
index 000000000000..0a47e3d4f993
--- /dev/null
+++ b/manifests/a/AOMEI/Backupper/Standard/8.3.0.0/AOMEI.Backupper.Standard.installer.yaml
@@ -0,0 +1,13 @@
+# 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: AOMEI.Backupper.Standard
+PackageVersion: 8.3.0.0
+InstallerType: inno
+Scope: machine
+Installers:
+- Architecture: x86
+ InstallerUrl: https://www2.aomeisoftware.com/download/adb/AOMEIBackupperStd.exe
+ InstallerSha256: E6449321B2F69E5036ACCA4BB1B8FB06AB821343C8F1B652A2EDD5D21DF65AA9
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AOMEI/Backupper/Standard/8.3.0.0/AOMEI.Backupper.Standard.locale.en-US.yaml b/manifests/a/AOMEI/Backupper/Standard/8.3.0.0/AOMEI.Backupper.Standard.locale.en-US.yaml
new file mode 100644
index 000000000000..3424b82b642c
--- /dev/null
+++ b/manifests/a/AOMEI/Backupper/Standard/8.3.0.0/AOMEI.Backupper.Standard.locale.en-US.yaml
@@ -0,0 +1,22 @@
+# 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: AOMEI.Backupper.Standard
+PackageVersion: 8.3.0.0
+PackageLocale: en-US
+Publisher: AOMEI International Network Limited.
+PublisherUrl: https://www.aomeitech.com
+PublisherSupportUrl: https://www.aomeitech.com/support.html
+PrivacyUrl: https://www.aomeitech.com/privacy.html
+PackageName: AOMEI Backupper
+PackageUrl: https://www.ubackup.com/ab
+License: Proprietary
+LicenseUrl: https://www.aomeitech.com/terms.html
+Copyright: Copyright (c) 2009-2023 AOMEI. All rights reserved.
+ShortDescription: Reliable Windows backup software to safeguard operating system, data and applications using backup, restore or clone feature.
+PurchaseUrl: https://www.aomeitech.com/ab/buy-pro.html
+Documentations:
+- DocumentLabel: Tutorials
+ DocumentUrl: https://www.ubackup.com/tutorials.html
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AOMEI/Backupper/Standard/8.3.0.0/AOMEI.Backupper.Standard.yaml b/manifests/a/AOMEI/Backupper/Standard/8.3.0.0/AOMEI.Backupper.Standard.yaml
new file mode 100644
index 000000000000..0b8d57a4ac91
--- /dev/null
+++ b/manifests/a/AOMEI/Backupper/Standard/8.3.0.0/AOMEI.Backupper.Standard.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: AOMEI.Backupper.Standard
+PackageVersion: 8.3.0.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AOMEI/PartitionAssistant/10.10.1/AOMEI.PartitionAssistant.installer.yaml b/manifests/a/AOMEI/PartitionAssistant/10.10.1/AOMEI.PartitionAssistant.installer.yaml
new file mode 100644
index 000000000000..f745c18b5214
--- /dev/null
+++ b/manifests/a/AOMEI/PartitionAssistant/10.10.1/AOMEI.PartitionAssistant.installer.yaml
@@ -0,0 +1,29 @@
+# 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: AOMEI.PartitionAssistant
+PackageVersion: 10.10.1
+InstallerLocale: en-US
+Platform:
+- Windows.Desktop
+InstallerType: inno
+Scope: machine
+InstallModes:
+- interactive
+- silent
+- silentWithProgress
+UpgradeBehavior: install
+ProductCode: '{02F850ED-FD0E-4ED1-BE0B-54981f5BD3D4}_is1'
+ReleaseDate: 2026-02-05
+AppsAndFeaturesEntries:
+- DisplayName: AOMEI Partition Assistant 10.10.0
+ ProductCode: '{02F850ED-FD0E-4ED1-BE0B-54981f5BD3D4}_is1'
+ElevationRequirement: elevatesSelf
+InstallationMetadata:
+ DefaultInstallLocation: '%ProgramFiles%\AOMEI Partition Assistant'
+Installers:
+- Architecture: x86
+ InstallerUrl: https://www2.aomeisoftware.com/download/pa/PAssist_Std.exe
+ InstallerSha256: 0C244FF57E35174E9FA017DF06CA54B7EDF5927D164E2ABD22AD44B8D7BBDE2C
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AOMEI/PartitionAssistant/10.10.1/AOMEI.PartitionAssistant.locale.en-US.yaml b/manifests/a/AOMEI/PartitionAssistant/10.10.1/AOMEI.PartitionAssistant.locale.en-US.yaml
new file mode 100644
index 000000000000..d69cc3eda6ea
--- /dev/null
+++ b/manifests/a/AOMEI/PartitionAssistant/10.10.1/AOMEI.PartitionAssistant.locale.en-US.yaml
@@ -0,0 +1,35 @@
+# 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: AOMEI.PartitionAssistant
+PackageVersion: 10.10.1
+PackageLocale: en-US
+Publisher: AOMEI International Network Limited.
+PublisherUrl: https://www.aomeitech.com/
+PublisherSupportUrl: https://www.aomeitech.com/support.html
+PrivacyUrl: https://www.aomeitech.com/privacy.html
+PackageName: AOMEI Partition Assistant
+PackageUrl: https://www.aomeitech.com/aomei-partition-assistant.html
+License: Proprietary
+LicenseUrl: https://www.diskpart.com/eula/pa-standard.pdf
+Copyright: Copyright © AOMEI International Network Limited.
+ShortDescription: Safely partition and manage your hard disks without any data loss.
+Tags:
+- bitlocker
+- defragmentation
+- ext2 ext3 ext4
+- fat32 exfat
+- gptpartitions
+- harddisk
+- harddrive
+- mbrpartitions
+- mergepartitions
+- ntfs
+- partitionalignment
+- partitionschemes
+- splitpartitions
+- uefibiosbootoptionsmanager
+- windowsrecoveryenvironment
+- windowstogo
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AOMEI/PartitionAssistant/10.10.1/AOMEI.PartitionAssistant.yaml b/manifests/a/AOMEI/PartitionAssistant/10.10.1/AOMEI.PartitionAssistant.yaml
new file mode 100644
index 000000000000..505340f9f6b0
--- /dev/null
+++ b/manifests/a/AOMEI/PartitionAssistant/10.10.1/AOMEI.PartitionAssistant.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: AOMEI.PartitionAssistant
+PackageVersion: 10.10.1
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
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/AdGuard/AdGuard/Beta/8.0.5436.0/AdGuard.AdGuard.Beta.installer.yaml b/manifests/a/AdGuard/AdGuard/Beta/8.0.5436.0/AdGuard.AdGuard.Beta.installer.yaml
new file mode 100644
index 000000000000..cc7e5576f979
--- /dev/null
+++ b/manifests/a/AdGuard/AdGuard/Beta/8.0.5436.0/AdGuard.AdGuard.Beta.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: AdGuard.AdGuard.Beta
+PackageVersion: 8.0.5436.0
+InstallerType: burn
+Installers:
+- Architecture: x86
+ InstallerUrl: https://agrd.io/windows_beta
+ InstallerSha256: F11C3582D806F45E941CE5C7A71C4F346ED21A8F8173660F4D61FD67F2318CA9
+Scope: machine
+InstallModes:
+- interactive
+- silent
+InstallerSwitches:
+ Silent: -quiet
+ SilentWithProgress: -quiet
+UpgradeBehavior: install
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AdGuard/AdGuard/Beta/8.0.5436.0/AdGuard.AdGuard.Beta.locale.en-US.yaml b/manifests/a/AdGuard/AdGuard/Beta/8.0.5436.0/AdGuard.AdGuard.Beta.locale.en-US.yaml
new file mode 100644
index 000000000000..7622e60b3927
--- /dev/null
+++ b/manifests/a/AdGuard/AdGuard/Beta/8.0.5436.0/AdGuard.AdGuard.Beta.locale.en-US.yaml
@@ -0,0 +1,32 @@
+# 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: AdGuard.AdGuard.Beta
+PackageVersion: 8.0.5436.0
+PackageLocale: en-US
+Publisher: Adguard Software Ltd
+PackageName: AdGuard Beta
+PackageUrl: https://adguard.com/en/beta.html
+License: Proprietary
+Copyright: © All rights reserved
+ShortDescription: AdGuard is a unique adblock program for Windows that has all the necessary features for the best web experience.
+Description: |-
+ AdGuard is a unique desktop program that has all the necessary features for the best web experience.
+ The software combines the world's most advanced ad blocker for Windows, a whole privacy protection module, and a parental control tool — all working in any browser or app.
+Tags:
+- adblock
+- adblocker
+- adblocking
+- internet
+- network
+- privacy
+- protect
+- protection
+- security
+- antitracking
+- web
+- webpage
+- antimalware
+PurchaseUrl: https://adguard.com/license.html
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AdGuard/AdGuard/Beta/8.0.5436.0/AdGuard.AdGuard.Beta.yaml b/manifests/a/AdGuard/AdGuard/Beta/8.0.5436.0/AdGuard.AdGuard.Beta.yaml
new file mode 100644
index 000000000000..04c8c36ec309
--- /dev/null
+++ b/manifests/a/AdGuard/AdGuard/Beta/8.0.5436.0/AdGuard.AdGuard.Beta.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: AdGuard.AdGuard.Beta
+PackageVersion: 8.0.5436.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AdLock/AdLock/2.1.8.3/AdLock.AdLock.installer.yaml b/manifests/a/AdLock/AdLock/2.1.8.3/AdLock.AdLock.installer.yaml
new file mode 100644
index 000000000000..8913d01e6362
--- /dev/null
+++ b/manifests/a/AdLock/AdLock/2.1.8.3/AdLock.AdLock.installer.yaml
@@ -0,0 +1,12 @@
+# 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: AdLock.AdLock
+PackageVersion: 2.1.8.3
+InstallerType: inno
+Installers:
+- Architecture: x86
+ InstallerUrl: https://downloads.adlock.com/windows/Adlock_Installer.exe
+ InstallerSha256: 85C2C4933DF7B5EEDA2666F9E70546C776A7742916AC700B52211225F7A2CAB0
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AdLock/AdLock/2.1.8.3/AdLock.AdLock.locale.en-US.yaml b/manifests/a/AdLock/AdLock/2.1.8.3/AdLock.AdLock.locale.en-US.yaml
new file mode 100644
index 000000000000..3115f450b1a7
--- /dev/null
+++ b/manifests/a/AdLock/AdLock/2.1.8.3/AdLock.AdLock.locale.en-US.yaml
@@ -0,0 +1,21 @@
+# 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: AdLock.AdLock
+PackageVersion: 2.1.8.3
+PackageLocale: en-US
+Publisher: Hankuper s.r.o.
+PackageName: AdLock
+PackageUrl: https://adlock.com/adlock-for-windows/
+License: Proprietary (Trialware)
+ShortDescription: Removes ads from all browsers, games, and other apps providing top-notch privacy security all along.
+Tags:
+- adblock
+- adblocking
+- adblocker
+- antimalware
+- privacy
+- adguardsyntax
+PurchaseUrl: https://adlock.com/purchase/
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AdLock/AdLock/2.1.8.3/AdLock.AdLock.yaml b/manifests/a/AdLock/AdLock/2.1.8.3/AdLock.AdLock.yaml
new file mode 100644
index 000000000000..a770c7251515
--- /dev/null
+++ b/manifests/a/AdLock/AdLock/2.1.8.3/AdLock.AdLock.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: AdLock.AdLock
+PackageVersion: 2.1.8.3
+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/Aerosoft/One/0.16.14/Aerosoft.One.installer.yaml b/manifests/a/Aerosoft/One/0.16.14/Aerosoft.One.installer.yaml
new file mode 100644
index 000000000000..a2ed3fbcc191
--- /dev/null
+++ b/manifests/a/Aerosoft/One/0.16.14/Aerosoft.One.installer.yaml
@@ -0,0 +1,23 @@
+# 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: Aerosoft.One
+PackageVersion: 0.16.14
+InstallerType: nullsoft
+InstallModes:
+- silent
+- silentWithProgress
+UpgradeBehavior: install
+AppsAndFeaturesEntries:
+- DisplayName: Aerosoft One 0.16.3
+ReleaseDate: 2024-02-14
+InstallerSwitches:
+ Silent: '/S'
+ SilentWithProgress: '/S'
+Installers:
+- Architecture: x64
+ InstallerUrl: https://cdnone.aerosoft.com/client/installers/Aerosoft%20One%20Setup.exe
+ InstallerSha256: 918BECC052279848627E44002D4B3E6CF55BA6376538CBA0356D17528DBA31EF
+ ProductCode: '{6CFBC6F2-D82C-56DD-8CBB-177A5D4B5B90}'
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/a/Aerosoft/One/0.16.14/Aerosoft.One.locale.en-US.yaml b/manifests/a/Aerosoft/One/0.16.14/Aerosoft.One.locale.en-US.yaml
new file mode 100644
index 000000000000..3d55d02aa9b8
--- /dev/null
+++ b/manifests/a/Aerosoft/One/0.16.14/Aerosoft.One.locale.en-US.yaml
@@ -0,0 +1,16 @@
+# 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: Aerosoft.One
+PackageVersion: 0.16.14
+PackageLocale: en-US
+Publisher: Aerosoft GmbH
+PublisherUrl: https://www.aerosoft.com/en/
+PackageName: Aerosoft One
+PackageUrl: https://one.aerosoft.com/
+License: Freeware
+Copyright: Copyright © 2024 Aerosoft GmbH
+ShortDescription: Aerosoft One is a client that can be used for installing and updating products and displaying news and product information.
+Moniker: aerosoft-one
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/Aerosoft/One/0.16.14/Aerosoft.One.yaml b/manifests/a/Aerosoft/One/0.16.14/Aerosoft.One.yaml
new file mode 100644
index 000000000000..fbfca90aac41
--- /dev/null
+++ b/manifests/a/Aerosoft/One/0.16.14/Aerosoft.One.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: Aerosoft.One
+PackageVersion: 0.16.14
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AlanJhu/OXWUEEW/4.1.3/AlanJhu.OXWUEEW.installer.yaml b/manifests/a/AlanJhu/OXWUEEW/4.1.3/AlanJhu.OXWUEEW.installer.yaml
new file mode 100644
index 000000000000..bd5c65b8e59f
--- /dev/null
+++ b/manifests/a/AlanJhu/OXWUEEW/4.1.3/AlanJhu.OXWUEEW.installer.yaml
@@ -0,0 +1,16 @@
+# 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
+
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+PackageIdentifier: AlanJhu.OXWUEEW
+PackageVersion: 4.1.3
+InstallerType: nullsoft
+Installers:
+- Architecture: x64
+ InstallerUrl: https://eew.earthquake.tw/releases/win/x64/oxwu-win-x64.exe
+ InstallerSha256: F881FC8FE516DF7421AD3F59547C8066C4A83EBE41B39103E7EC29BA2C9EFA5D
+- Architecture: x86
+ InstallerUrl: https://eew.earthquake.tw/releases/win/ia32/oxwu-win-ia32.exe
+ InstallerSha256: 5184F72C8EE97091C745A7E0964319F3E3488891BCE1F42699499111C2DB3264
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AlanJhu/OXWUEEW/4.1.3/AlanJhu.OXWUEEW.locale.en-US.yaml b/manifests/a/AlanJhu/OXWUEEW/4.1.3/AlanJhu.OXWUEEW.locale.en-US.yaml
new file mode 100644
index 000000000000..8b4e7a4fd43b
--- /dev/null
+++ b/manifests/a/AlanJhu/OXWUEEW/4.1.3/AlanJhu.OXWUEEW.locale.en-US.yaml
@@ -0,0 +1,30 @@
+# 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
+
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+PackageIdentifier: AlanJhu.OXWUEEW
+PackageVersion: 4.1.3
+PackageLocale: en-US
+Publisher: Alan Jhu
+PackageName: 地牛 Wake Up!
+PackageUrl: https://eew.earthquake.tw/
+License: Proprietary (Freeware)
+Copyright: © 2025 Alan Jhu
+ShortDescription: Receiver app for the Taiwan Central Weather Administration's early earthquake warning messages. Note that the app is in Chinese only.
+Tags:
+- earthquakeearlywarning
+- earthquake-early-warning
+- eew
+- p-alert
+- earth-ox-wake-up
+- earthoxwakeup
+- centralweatheradministration
+- central-weather-administration
+- earthquakes
+- alanjhu
+- taiwan
+- republicofchina
+- republic-of-china
+- roc
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AlanJhu/OXWUEEW/4.1.3/AlanJhu.OXWUEEW.locale.zh-CN.yaml b/manifests/a/AlanJhu/OXWUEEW/4.1.3/AlanJhu.OXWUEEW.locale.zh-CN.yaml
new file mode 100644
index 000000000000..a2f62b418ff5
--- /dev/null
+++ b/manifests/a/AlanJhu/OXWUEEW/4.1.3/AlanJhu.OXWUEEW.locale.zh-CN.yaml
@@ -0,0 +1,18 @@
+# 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
+
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+PackageIdentifier: AlanJhu.OXWUEEW
+PackageVersion: 4.1.3
+PackageLocale: zh-CN
+Publisher: Alan Jhu
+PackageName: 地牛 Wake Up!
+PackageUrl: https://eew.earthquake.tw/
+License: 专有软件
+Copyright: © 2025 Alan Jhu
+ShortDescription: 台湾地震速报
+ReleaseNotes: |
+ v4.1.1 (2025/02/16)
+ 移除连动功能中,传递给指定程序的预估震度以及震波抵达秒数参数。[(详见)](https://www.facebook.com/share/p/1BYehqMVzE/)
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AlanJhu/OXWUEEW/4.1.3/AlanJhu.OXWUEEW.locale.zh-TW.yaml b/manifests/a/AlanJhu/OXWUEEW/4.1.3/AlanJhu.OXWUEEW.locale.zh-TW.yaml
new file mode 100644
index 000000000000..e7c4a1349aff
--- /dev/null
+++ b/manifests/a/AlanJhu/OXWUEEW/4.1.3/AlanJhu.OXWUEEW.locale.zh-TW.yaml
@@ -0,0 +1,26 @@
+# 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
+
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+PackageIdentifier: AlanJhu.OXWUEEW
+PackageVersion: 4.1.3
+PackageLocale: zh-TW
+Publisher: Alan Jhu
+PackageName: 地牛 Wake Up!
+PackageUrl: https://eew.earthquake.tw/
+License: Proprietary (免費軟體)
+Copyright: © 2025 Alan Jhu
+ShortDescription: 台灣地震速報
+ReleaseNotes: |
+ v4.1.1 (2025/02/16)
+ 移除連動功能中,傳遞給指定程式的預估震度以及震波抵達秒數參數。[(詳見)](https://www.facebook.com/share/p/1BYehqMVzE/)
+Tags:
+- 強震即時警報
+- 臺灣
+- 台灣
+- 中華民國
+- ㄊㄞˊㄨㄢㄉㄧˋㄓㄣˋㄙㄨˋㄅㄠˋ
+- ㄑㄧㄤˊㄓㄣˋㄐㄧˊㄕˊㄐㄧㄥˇㄅㄠˋ
+- ㄓㄨㄥㄏㄨㄚˊㄇㄧㄣˊㄍㄨㄛˊ
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AlanJhu/OXWUEEW/4.1.3/AlanJhu.OXWUEEW.yaml b/manifests/a/AlanJhu/OXWUEEW/4.1.3/AlanJhu.OXWUEEW.yaml
new file mode 100644
index 000000000000..8f02a965b117
--- /dev/null
+++ b/manifests/a/AlanJhu/OXWUEEW/4.1.3/AlanJhu.OXWUEEW.yaml
@@ -0,0 +1,9 @@
+# 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
+
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+PackageIdentifier: AlanJhu.OXWUEEW
+PackageVersion: 4.1.3
+DefaultLocale: zh-TW
+ManifestType: version
+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/Amazon/SendToKindle/1.1.1.260/Amazon.SendToKindle.installer.yaml b/manifests/a/Amazon/SendToKindle/1.1.1.260/Amazon.SendToKindle.installer.yaml
new file mode 100644
index 000000000000..0b3792a4d46e
--- /dev/null
+++ b/manifests/a/Amazon/SendToKindle/1.1.1.260/Amazon.SendToKindle.installer.yaml
@@ -0,0 +1,41 @@
+# 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: Amazon.SendToKindle
+PackageVersion: 1.1.1.260
+MinimumOSVersion: 10.0.0.0
+FileExtensions:
+- txt
+- doc
+- docx
+- rtf
+- pdf
+- png
+- jpg
+- bmp
+- jpeg
+- gif
+- azw
+- mobi
+- prc
+- psz
+InstallModes:
+- interactive
+- silent
+- silentWithProgress
+InstallerSuccessCodes:
+- 1223
+Dependencies:
+ PackageDependencies:
+ - PackageIdentifier: Microsoft.VCRedist.2015+.x86
+ MinimumVersion: 14.0.23026.0
+Installers:
+- Architecture: x86
+ InstallerType: nullsoft
+ InstallerUrl: https://s3.amazonaws.com/sendtokindle/SendToKindleForPC-installer.exe
+ InstallerSha256: 9F828E94884ED1AA2C7634183783538EF5E493402F3C9F6A97F690F47BD045B3
+ Scope: machine
+ InstallerLocale: en-US
+ UpgradeBehavior: install
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/a/Amazon/SendToKindle/1.1.1.260/Amazon.SendToKindle.locale.en-US.yaml b/manifests/a/Amazon/SendToKindle/1.1.1.260/Amazon.SendToKindle.locale.en-US.yaml
new file mode 100644
index 000000000000..2e2db0528db5
--- /dev/null
+++ b/manifests/a/Amazon/SendToKindle/1.1.1.260/Amazon.SendToKindle.locale.en-US.yaml
@@ -0,0 +1,28 @@
+# 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: Amazon.SendToKindle
+PackageVersion: 1.1.1.260
+PackageLocale: en-US
+Publisher: Amazon
+PublisherUrl: https://www.amazon.com/
+Author: Amazon
+PackageName: Amazon Send to Kindle
+PackageUrl: https://www.amazon.com/gp/sendtokindle
+License: Copyright (c) 1996-2021, Amazon.com, Inc. or its affiliates
+Copyright: Copyright (c) 1996-2021, Amazon.com, Inc. or its affiliates
+ShortDescription: Send personal documents to your Kindle from your PC.
+Description: Send to Kindle will appear when you right click on a file in Windows Explorer or in the print dialog of any Windows application. To send multiple documents to Kindle without opening them, simply select documents and choose Send to Kindle from the right-click menu in Windows Explorer. You can download archived personal documents from any Kindle device or using the free reading app on your iOS or Android device. Whispersync of notes, highlights, bookmarks and last page read is available on your archived personal documents that have been converted into Kindle format.
+Moniker: sendtokindle
+Tags:
+- epub
+- books
+- amazon
+- kindle
+- ebook
+- e-book
+- ereader
+- e-reader
+- library
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/Amazon/SendToKindle/1.1.1.260/Amazon.SendToKindle.yaml b/manifests/a/Amazon/SendToKindle/1.1.1.260/Amazon.SendToKindle.yaml
new file mode 100644
index 000000000000..5537d42a7940
--- /dev/null
+++ b/manifests/a/Amazon/SendToKindle/1.1.1.260/Amazon.SendToKindle.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: Amazon.SendToKindle
+PackageVersion: 1.1.1.260
+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/AntonioOrionus/Arroxy/0.2.24/AntonioOrionus.Arroxy.installer.yaml b/manifests/a/AntonioOrionus/Arroxy/0.2.24/AntonioOrionus.Arroxy.installer.yaml
new file mode 100644
index 000000000000..8c96be3a9a65
--- /dev/null
+++ b/manifests/a/AntonioOrionus/Arroxy/0.2.24/AntonioOrionus.Arroxy.installer.yaml
@@ -0,0 +1,23 @@
+# 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: AntonioOrionus.Arroxy
+PackageVersion: 0.2.24
+InstallerLocale: en-US
+InstallerType: nullsoft
+InstallModes:
+- interactive
+- silent
+- silentWithProgress
+UpgradeBehavior: install
+ProductCode: 676f1cb1-b4d3-53ac-88ee-2c2f796d54e2
+ReleaseDate: 2026-05-05
+AppsAndFeaturesEntries:
+- DisplayName: Arroxy 0.2.24
+ ProductCode: 676f1cb1-b4d3-53ac-88ee-2c2f796d54e2
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/antonio-orionus/Arroxy/releases/download/v0.2.24/Arroxy-Setup-0.2.24.exe
+ InstallerSha256: 013BE5C8E66CA82A907F14FCC863DD811581379D2EE0559D49D508F3E9868FDE
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AntonioOrionus/Arroxy/0.2.24/AntonioOrionus.Arroxy.locale.en-US.yaml b/manifests/a/AntonioOrionus/Arroxy/0.2.24/AntonioOrionus.Arroxy.locale.en-US.yaml
new file mode 100644
index 000000000000..65f069aa7429
--- /dev/null
+++ b/manifests/a/AntonioOrionus/Arroxy/0.2.24/AntonioOrionus.Arroxy.locale.en-US.yaml
@@ -0,0 +1,38 @@
+# 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: AntonioOrionus.Arroxy
+PackageVersion: 0.2.24
+PackageLocale: en-US
+Publisher: Antonio Orionus
+PublisherUrl: https://github.com/antonio-orionus
+PublisherSupportUrl: https://github.com/antonio-orionus/Arroxy/issues
+Author: Antonio Orionus
+PackageName: Arroxy
+PackageUrl: https://github.com/antonio-orionus/Arroxy
+License: MIT
+LicenseUrl: https://github.com/antonio-orionus/Arroxy/blob/HEAD/LICENSE
+Copyright: Copyright © 2026 Antonio Orionus
+ShortDescription: Free open-source YouTube downloader GUI based on yt-dlp for Windows, macOS, and Linux. Download videos, Shorts, 4K, 1080p60, HDR, and subtitles with no ads, tracking, cookies, or login. Supports 9 languages.
+Description: Arroxy is a free, open-source desktop app for downloading YouTube videos and Shorts in up to 4K, 1080p60, HDR, and audio-only formats with no ads, tracking, or login required.
+Moniker: arroxy
+Tags:
+- audio-downloader
+- cross-platform
+- desktop-app
+- downloader-for-youtube
+- media-downloader
+- mp4-downloader
+- video-download
+- video-download-tool
+- video-downloader
+- youtube-4k-downloader
+- youtube-download
+- youtube-downloader
+- youtube-shorts-download
+- yt-dlp
+- yt-dlp-gui
+ReleaseNotes: 'Full Changelog: v0.2.22...v0.2.24'
+ReleaseNotesUrl: https://github.com/antonio-orionus/Arroxy/releases/tag/v0.2.24
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AntonioOrionus/Arroxy/0.2.24/AntonioOrionus.Arroxy.yaml b/manifests/a/AntonioOrionus/Arroxy/0.2.24/AntonioOrionus.Arroxy.yaml
new file mode 100644
index 000000000000..3aa1721da4da
--- /dev/null
+++ b/manifests/a/AntonioOrionus/Arroxy/0.2.24/AntonioOrionus.Arroxy.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: AntonioOrionus.Arroxy
+PackageVersion: 0.2.24
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AntonioOrionus/Arroxy/0.2.25/AntonioOrionus.Arroxy.installer.yaml b/manifests/a/AntonioOrionus/Arroxy/0.2.25/AntonioOrionus.Arroxy.installer.yaml
new file mode 100644
index 000000000000..6bd5444668e8
--- /dev/null
+++ b/manifests/a/AntonioOrionus/Arroxy/0.2.25/AntonioOrionus.Arroxy.installer.yaml
@@ -0,0 +1,23 @@
+# 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: AntonioOrionus.Arroxy
+PackageVersion: 0.2.25
+InstallerLocale: en-US
+InstallerType: nullsoft
+InstallModes:
+- interactive
+- silent
+- silentWithProgress
+UpgradeBehavior: install
+ProductCode: 676f1cb1-b4d3-53ac-88ee-2c2f796d54e2
+ReleaseDate: 2026-05-05
+AppsAndFeaturesEntries:
+- DisplayName: Arroxy 0.2.25
+ ProductCode: 676f1cb1-b4d3-53ac-88ee-2c2f796d54e2
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/antonio-orionus/Arroxy/releases/download/v0.2.25/Arroxy-Setup-0.2.25.exe
+ InstallerSha256: 319DD0C6EF91C4F39507C929F8A561D3F18040EDF8A3C71F665F13B879C426E1
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AntonioOrionus/Arroxy/0.2.25/AntonioOrionus.Arroxy.locale.en-US.yaml b/manifests/a/AntonioOrionus/Arroxy/0.2.25/AntonioOrionus.Arroxy.locale.en-US.yaml
new file mode 100644
index 000000000000..6c80432c32cd
--- /dev/null
+++ b/manifests/a/AntonioOrionus/Arroxy/0.2.25/AntonioOrionus.Arroxy.locale.en-US.yaml
@@ -0,0 +1,38 @@
+# 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: AntonioOrionus.Arroxy
+PackageVersion: 0.2.25
+PackageLocale: en-US
+Publisher: Antonio Orionus
+PublisherUrl: https://github.com/antonio-orionus
+PublisherSupportUrl: https://github.com/antonio-orionus/Arroxy/issues
+Author: Antonio Orionus
+PackageName: Arroxy
+PackageUrl: https://github.com/antonio-orionus/Arroxy
+License: MIT
+LicenseUrl: https://github.com/antonio-orionus/Arroxy/blob/HEAD/LICENSE
+Copyright: Copyright © 2026 Antonio Orionus
+ShortDescription: Free open-source YouTube downloader GUI based on yt-dlp for Windows, macOS, and Linux. Download videos, Shorts, 4K, 1080p60, HDR, and subtitles with no ads, tracking, cookies, or login. Supports 9 languages.
+Description: Arroxy is a free, open-source desktop app for downloading YouTube videos and Shorts in up to 4K, 1080p60, HDR, and audio-only formats with no ads, tracking, or login required.
+Moniker: arroxy
+Tags:
+- audio-downloader
+- cross-platform
+- desktop-app
+- downloader-for-youtube
+- media-downloader
+- mp4-downloader
+- video-download
+- video-download-tool
+- video-downloader
+- youtube-4k-downloader
+- youtube-download
+- youtube-downloader
+- youtube-shorts-download
+- yt-dlp
+- yt-dlp-gui
+ReleaseNotes: 'Full Changelog: v0.2.24...v0.2.25'
+ReleaseNotesUrl: https://github.com/antonio-orionus/Arroxy/releases/tag/v0.2.25
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/AntonioOrionus/Arroxy/0.2.25/AntonioOrionus.Arroxy.yaml b/manifests/a/AntonioOrionus/Arroxy/0.2.25/AntonioOrionus.Arroxy.yaml
new file mode 100644
index 000000000000..3a7840ce8b5f
--- /dev/null
+++ b/manifests/a/AntonioOrionus/Arroxy/0.2.25/AntonioOrionus.Arroxy.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: AntonioOrionus.Arroxy
+PackageVersion: 0.2.25
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/a/Apryse/XodoPDFReader/2026.0.0/Apryse.XodoPDFReader.installer.yaml b/manifests/a/Apryse/XodoPDFReader/2026.0.0/Apryse.XodoPDFReader.installer.yaml
new file mode 100644
index 000000000000..8ba81e9978e8
--- /dev/null
+++ b/manifests/a/Apryse/XodoPDFReader/2026.0.0/Apryse.XodoPDFReader.installer.yaml
@@ -0,0 +1,27 @@
+# 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: Apryse.XodoPDFReader
+PackageVersion: 2026.0.0
+InstallerLocale: en-US
+InstallerType: exe
+Scope: machine
+InstallModes:
+- interactive
+- silent
+- silentWithProgress
+InstallerSwitches:
+ Silent: -q
+ SilentWithProgress: -q -splash "Installing Xodo PDF Reader"
+ InstallLocation: -d ""
+ProductCode: '0810-2976-4416-1744'
+UpgradeBehavior: install
+FileExtensions:
+- pdf
+ReleaseDate: 2025-06-30
+Installers:
+- Architecture: x64
+ InstallerUrl: https://getpdfstudio.xodo.com/xodopdfreader/XodoPDFReader_win64.exe
+ InstallerSha256: C1EFDC0AE4D8D7ADA7D22CE8C56FEAC344E50511BDDF2C84C5CD530E2086CD9F
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/a/Apryse/XodoPDFReader/2026.0.0/Apryse.XodoPDFReader.locale.en-US.yaml b/manifests/a/Apryse/XodoPDFReader/2026.0.0/Apryse.XodoPDFReader.locale.en-US.yaml
new file mode 100644
index 000000000000..bbc306f95996
--- /dev/null
+++ b/manifests/a/Apryse/XodoPDFReader/2026.0.0/Apryse.XodoPDFReader.locale.en-US.yaml
@@ -0,0 +1,33 @@
+# 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: Apryse.XodoPDFReader
+PackageVersion: 2026.0.0
+PackageLocale: en-US
+Publisher: Apryse Software Corp.
+PublisherUrl: https://apryse.com/
+PublisherSupportUrl: https://feedback.xodo.com/support/home
+PrivacyUrl: https://xodo.com/privacy
+Author: Apryse Software Corp.
+PackageName: Xodo PDF Reader
+PackageUrl: https://xodo.com/pdf-studio/free-pdf-reader
+License: Freeware
+LicenseUrl: https://xodo.com/legal
+Copyright: Apryse Software Corp. @ 2025
+ShortDescription: Xodo PDF Reader is a fast, free, and highly-rated cross-platform PDF application for viewing, annotating, editing, and collaborating on PDF documents.
+Description: |-
+ Transform how you work with PDF files using Xodo PDF Reader. Our free, cross-platform reader lets you effortlessly open, navigate, highlight, and manage your documents.
+
+ Whether you're a student reviewing lecture notes, a professional analyzing reports, or an architect measuring blueprints, Xodo makes handling PDFs easier and more efficient than ever.
+
+ Break free from the limitations of other PDF readers and experience the flexibility of Xodo, seamlessly adapting to your needs across Windows, Mac, and Linux.
+
+ Streamline your PDF tasks with intuitive features:
+ * Seamlessly open and view your PDF files on Windows, macOS, and Linux devices.
+ * Add text and comments, insert notes and highlights, and draw directly on your PDF.
+ * Quickly complete and save your interactive PDF forms to easily share them with others.
+ * Apply digital signatures, and eSign important documents through Xodo Sign integration.
+ * Quickly find specific words, measure distances and print your documents with ease.
+ * Save and access your PDFs in Xodo Drive, Google Drive, Dropbox and OneDrive.
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/a/Apryse/XodoPDFReader/2026.0.0/Apryse.XodoPDFReader.yaml b/manifests/a/Apryse/XodoPDFReader/2026.0.0/Apryse.XodoPDFReader.yaml
new file mode 100644
index 000000000000..22414cffe103
--- /dev/null
+++ b/manifests/a/Apryse/XodoPDFReader/2026.0.0/Apryse.XodoPDFReader.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: Apryse.XodoPDFReader
+PackageVersion: 2026.0.0
+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/BitSum/ProcessLasso/18.0.1.24/BitSum.ProcessLasso.installer.yaml b/manifests/b/BitSum/ProcessLasso/18.1.0.44/BitSum.ProcessLasso.installer.yaml
similarity index 77%
rename from manifests/b/BitSum/ProcessLasso/18.0.1.24/BitSum.ProcessLasso.installer.yaml
rename to manifests/b/BitSum/ProcessLasso/18.1.0.44/BitSum.ProcessLasso.installer.yaml
index 29efc1fda4cb..1129008c500f 100644
--- a/manifests/b/BitSum/ProcessLasso/18.0.1.24/BitSum.ProcessLasso.installer.yaml
+++ b/manifests/b/BitSum/ProcessLasso/18.1.0.44/BitSum.ProcessLasso.installer.yaml
@@ -2,24 +2,24 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
PackageIdentifier: BitSum.ProcessLasso
-PackageVersion: 18.0.1.24
+PackageVersion: 18.1.0.44
InstallerLocale: en-US
InstallerType: nullsoft
Scope: machine
UpgradeBehavior: install
ProductCode: ProcessLasso
-ReleaseDate: 2026-04-15
+ReleaseDate: 2026-05-05
AppsAndFeaturesEntries:
- ProductCode: ProcessLasso
Installers:
- Architecture: x86
InstallerUrl: https://dl.bitsum.com/files/processlassosetup32.exe
- InstallerSha256: CA832111FFAA16257024244995A71F7DEB1ABC968F70E3CFB4F342B760852A8A
+ InstallerSha256: DDF1D8F1C1A36787EC74EABDDCE0116CDBCDF1C5A2428A32C9FE754612A6DD92
InstallationMetadata:
DefaultInstallLocation: '%ProgramFiles(x86)%\Process Lasso'
- Architecture: x64
InstallerUrl: https://dl.bitsum.com/files/processlassosetup64.exe
- InstallerSha256: D9216E1491AA130A3595A688DA9A5FFACA67A3BB7609CB069E86E000BABA041B
+ InstallerSha256: 674E99D5F803B6A12720D4A61812A51792EBD1129073581EE534858B5CDC7996
InstallationMetadata:
DefaultInstallLocation: '%ProgramFiles%\Process Lasso'
ManifestType: installer
diff --git a/manifests/b/BitSum/ProcessLasso/18.0.1.24/BitSum.ProcessLasso.locale.en-US.yaml b/manifests/b/BitSum/ProcessLasso/18.1.0.44/BitSum.ProcessLasso.locale.en-US.yaml
similarity index 78%
rename from manifests/b/BitSum/ProcessLasso/18.0.1.24/BitSum.ProcessLasso.locale.en-US.yaml
rename to manifests/b/BitSum/ProcessLasso/18.1.0.44/BitSum.ProcessLasso.locale.en-US.yaml
index 69ff572ec143..b8c9e92e2674 100644
--- a/manifests/b/BitSum/ProcessLasso/18.0.1.24/BitSum.ProcessLasso.locale.en-US.yaml
+++ b/manifests/b/BitSum/ProcessLasso/18.1.0.44/BitSum.ProcessLasso.locale.en-US.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
PackageIdentifier: BitSum.ProcessLasso
-PackageVersion: 18.0.1.24
+PackageVersion: 18.1.0.44
PackageLocale: en-US
Publisher: Bitsum
PublisherUrl: https://bitsum.com/
@@ -31,19 +31,20 @@ Tags:
- schedule
- scheduler
ReleaseNotes: |-
+ - Add GPU Preference rules
+ - Add display support for multiple GPUs
- Minor fixes and enhancements
- (5) GUI: Translate “pause” button
- (7) GUI: Add context menu to GPU utilization widget for an accessible way to disable it
- (7) GUI: When GPU data collection is off, show a hyphen in the GPU process columns
- (7) GUI: Minor optimizations
- (9) Build: Expand post-build performance profiling
- (9) GUI: Add custom color selection for GPU utilization
- (13) GUI: Reduce GPU use in rendering of CPU cores graphs
- (15) GUI/Core: Adjust RegEx caching to allow for delayed process metadata attribution
- (17) ThreadRacer: Mark AMD chip-indicated fastest cores with an asterisk
- (19) ThreadRacer: Move some strings to the resources
- (21) GUI: Translation updates
- (23) GUI: Dynamically size the pause button for longer languages
+ (1) GUI: Add multiple GPU support to the GPU widget and line graph
+ (3) GUI: Add GPU Preference rules
+ (3) GUI: Add toggle for whether line graph shows consolidated or individual GPUs
+ (3) GUI: Add multiple GPU support to status bar and tooltips
+ (5) GUI: Remove borders shown around CPU core graphs under some conditions
+ (15) GUI: Adjust log submenu ordering
+ (19) GUI: Add multiple GPU support to process lists
+ (21) GUI: Add a tooltip to the Active Processes threshold slider indicating value
+ (23) GUI/Core: Extend Regular Expression support to Instance Count Limit rules
+ (31) GUI: Add context menu to line graph with applicable View settings
+ (33) GUI: Translation updates
ReleaseNotesUrl: https://bitsum.com/changes/processlasso/
PurchaseUrl: https://bitsum.com/get-lasso-pro/
Documentations:
diff --git a/manifests/b/BitSum/ProcessLasso/18.0.1.24/BitSum.ProcessLasso.locale.zh-CN.yaml b/manifests/b/BitSum/ProcessLasso/18.1.0.44/BitSum.ProcessLasso.locale.zh-CN.yaml
similarity index 98%
rename from manifests/b/BitSum/ProcessLasso/18.0.1.24/BitSum.ProcessLasso.locale.zh-CN.yaml
rename to manifests/b/BitSum/ProcessLasso/18.1.0.44/BitSum.ProcessLasso.locale.zh-CN.yaml
index 311982af3868..0457c6359958 100644
--- a/manifests/b/BitSum/ProcessLasso/18.0.1.24/BitSum.ProcessLasso.locale.zh-CN.yaml
+++ b/manifests/b/BitSum/ProcessLasso/18.1.0.44/BitSum.ProcessLasso.locale.zh-CN.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
PackageIdentifier: BitSum.ProcessLasso
-PackageVersion: 18.0.1.24
+PackageVersion: 18.1.0.44
PackageLocale: zh-CN
License: 专有软件
ShortDescription: 实时 CPU 优化和自动化
diff --git a/manifests/b/BitSum/ProcessLasso/18.0.1.24/BitSum.ProcessLasso.yaml b/manifests/b/BitSum/ProcessLasso/18.1.0.44/BitSum.ProcessLasso.yaml
similarity index 90%
rename from manifests/b/BitSum/ProcessLasso/18.0.1.24/BitSum.ProcessLasso.yaml
rename to manifests/b/BitSum/ProcessLasso/18.1.0.44/BitSum.ProcessLasso.yaml
index 1e533a64c190..87c76390dbc5 100644
--- a/manifests/b/BitSum/ProcessLasso/18.0.1.24/BitSum.ProcessLasso.yaml
+++ b/manifests/b/BitSum/ProcessLasso/18.1.0.44/BitSum.ProcessLasso.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
PackageIdentifier: BitSum.ProcessLasso
-PackageVersion: 18.0.1.24
+PackageVersion: 18.1.0.44
DefaultLocale: en-US
ManifestType: version
ManifestVersion: 1.12.0
diff --git a/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/BitSum.ProcessLasso.Beta.installer.yaml b/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.44/BitSum.ProcessLasso.Beta.installer.yaml
similarity index 82%
rename from manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/BitSum.ProcessLasso.Beta.installer.yaml
rename to manifests/b/BitSum/ProcessLasso/Beta/18.1.0.44/BitSum.ProcessLasso.Beta.installer.yaml
index b3a922dee57b..a1d77e11a114 100644
--- a/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/BitSum.ProcessLasso.Beta.installer.yaml
+++ b/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.44/BitSum.ProcessLasso.Beta.installer.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
PackageIdentifier: BitSum.ProcessLasso.Beta
-PackageVersion: 18.1.0.43
+PackageVersion: 18.1.0.44
InstallerType: nullsoft
Scope: machine
UpgradeBehavior: install
@@ -12,6 +12,6 @@ InstallationMetadata:
Installers:
- Architecture: x64
InstallerUrl: https://dl.bitsum.com/files/beta/processlassosetup64.exe
- InstallerSha256: 6999F385FF7846BECF5DEDA512D88E49103BE72519D66D7BE8508EBFD9A177BA
+ InstallerSha256: 674E99D5F803B6A12720D4A61812A51792EBD1129073581EE534858B5CDC7996
ManifestType: installer
ManifestVersion: 1.12.0
diff --git a/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/BitSum.ProcessLasso.Beta.locale.en-US.yaml b/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.44/BitSum.ProcessLasso.Beta.locale.en-US.yaml
similarity index 99%
rename from manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/BitSum.ProcessLasso.Beta.locale.en-US.yaml
rename to manifests/b/BitSum/ProcessLasso/Beta/18.1.0.44/BitSum.ProcessLasso.Beta.locale.en-US.yaml
index 199814e9c519..0aea622ddd66 100644
--- a/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/BitSum.ProcessLasso.Beta.locale.en-US.yaml
+++ b/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.44/BitSum.ProcessLasso.Beta.locale.en-US.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
PackageIdentifier: BitSum.ProcessLasso.Beta
-PackageVersion: 18.1.0.43
+PackageVersion: 18.1.0.44
PackageLocale: en-US
Publisher: Bitsum
PublisherUrl: https://bitsum.com/
diff --git a/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml b/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.44/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml
similarity index 98%
rename from manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml
rename to manifests/b/BitSum/ProcessLasso/Beta/18.1.0.44/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml
index 2e33885edbad..14b302097e8a 100644
--- a/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml
+++ b/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.44/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
PackageIdentifier: BitSum.ProcessLasso.Beta
-PackageVersion: 18.1.0.43
+PackageVersion: 18.1.0.44
PackageLocale: zh-CN
License: 专有软件
ShortDescription: 实时 CPU 优化和自动化
diff --git a/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/BitSum.ProcessLasso.Beta.yaml b/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.44/BitSum.ProcessLasso.Beta.yaml
similarity index 90%
rename from manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/BitSum.ProcessLasso.Beta.yaml
rename to manifests/b/BitSum/ProcessLasso/Beta/18.1.0.44/BitSum.ProcessLasso.Beta.yaml
index 0f86582c3c34..2fd8b2cfa973 100644
--- a/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.43/BitSum.ProcessLasso.Beta.yaml
+++ b/manifests/b/BitSum/ProcessLasso/Beta/18.1.0.44/BitSum.ProcessLasso.Beta.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
PackageIdentifier: BitSum.ProcessLasso.Beta
-PackageVersion: 18.1.0.43
+PackageVersion: 18.1.0.44
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/b/Buct0r/PassPort/0.1.1/Buct0r.PassPort.installer.yaml b/manifests/b/Buct0r/PassPort/0.1.1/Buct0r.PassPort.installer.yaml
new file mode 100644
index 000000000000..66711b9eca70
--- /dev/null
+++ b/manifests/b/Buct0r/PassPort/0.1.1/Buct0r.PassPort.installer.yaml
@@ -0,0 +1,14 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json
+
+PackageIdentifier: Buct0r.PassPort
+PackageVersion: 0.1.1
+Installers:
+- InstallerLocale: en-US
+ Architecture: x64
+ InstallerType: inno
+ InstallerUrl: https://github.com/Buct0r/PassPort/releases/download/v0.1.1/PassPort-GUI-CLI-setup.exe
+ InstallerSha256: 78C07C0408AB43946CF0CBE2001A6373FB8B231CED0839EF74A5CB87DA6621DD
+ UpgradeBehavior: install
+ManifestType: installer
+ManifestVersion: 1.6.0
diff --git a/manifests/b/Buct0r/PassPort/0.1.1/Buct0r.PassPort.locale.en-US.yaml b/manifests/b/Buct0r/PassPort/0.1.1/Buct0r.PassPort.locale.en-US.yaml
new file mode 100644
index 000000000000..4e53bc2b2079
--- /dev/null
+++ b/manifests/b/Buct0r/PassPort/0.1.1/Buct0r.PassPort.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.6.0.schema.json
+
+PackageIdentifier: Buct0r.PassPort
+PackageVersion: 0.1.1
+PackageLocale: en-US
+Publisher: Buct0r
+PublisherUrl: https://github.com/Buct0r
+PublisherSupportUrl: https://github.com/Buct0r/PassPort/issues
+Author: Buct0r
+PackageName: PassPort
+PackageUrl: https://github.com/Buct0r/PassPort
+License: MIT
+LicenseUrl: https://github.com/Buct0r/PassPort/blob/main/LICENSE.md
+Copyright: Copyright (c) 2026 Buct0r
+CopyrightUrl: https://github.com/Buct0r/PassPort/blob/main/LICENSE.md
+ShortDescription: A secure, cross-platform password manager built with Go and Fyne
+Description: |
+ PassPort is a secure password manager featuring:
+ - AES encryption with PBKDF2 key derivation for maximum security
+ - Graphical User Interface (GUI) built with Fyne
+ - Command-Line Interface (CLI) for terminal users
+ - Master password protection for all stored credentials
+ - Cross-platform support (Windows, macOS, Linux)
+ - Local storage with no cloud synchronization
+Tags:
+- password-manager
+- encryption
+- security
+- golang
+- password-vault
+ReleaseNotesUrl: https://github.com/Buct0r/PassPort/releases/tag/v0.1.1
+ManifestType: defaultLocale
+ManifestVersion: 1.6.0
diff --git a/manifests/b/Buct0r/PassPort/0.1.1/Buct0r.PassPort.yaml b/manifests/b/Buct0r/PassPort/0.1.1/Buct0r.PassPort.yaml
new file mode 100644
index 000000000000..43c5703ad643
--- /dev/null
+++ b/manifests/b/Buct0r/PassPort/0.1.1/Buct0r.PassPort.yaml
@@ -0,0 +1,8 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json
+
+PackageIdentifier: Buct0r.PassPort
+PackageVersion: 0.1.1
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.6.0
diff --git a/manifests/b/BuildIso/BuildIso/2026.9/BuildIso.BuildIso.installer.yaml b/manifests/b/BuildIso/BuildIso/2026.9/BuildIso.BuildIso.installer.yaml
new file mode 100644
index 000000000000..99b92b2a8ea0
--- /dev/null
+++ b/manifests/b/BuildIso/BuildIso/2026.9/BuildIso.BuildIso.installer.yaml
@@ -0,0 +1,15 @@
+# Created using wingetcreate 1.10.3.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json
+
+PackageIdentifier: BuildIso.BuildIso
+PackageVersion: "2026.9"
+InstallerType: portable
+Commands:
+- BuildIso
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/BuildIso/BuildIso/releases/download/v2026.9/BuildIso.exe
+ InstallerSha256: 7429DDA0FA85BD01D0F9554D63AD4198EEBF3D19135AF5B3C2BEF6B1CB2FED83
+ManifestType: installer
+ManifestVersion: 1.10.0
+ReleaseDate: 2026-05-04
diff --git a/manifests/b/BuildIso/BuildIso/2026.9/BuildIso.BuildIso.locale.en-US.yaml b/manifests/b/BuildIso/BuildIso/2026.9/BuildIso.BuildIso.locale.en-US.yaml
new file mode 100644
index 000000000000..99fc057b7a07
--- /dev/null
+++ b/manifests/b/BuildIso/BuildIso/2026.9/BuildIso.BuildIso.locale.en-US.yaml
@@ -0,0 +1,27 @@
+# Created using wingetcreate 1.10.3.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json
+
+PackageIdentifier: BuildIso.BuildIso
+PackageVersion: "2026.9"
+PackageLocale: en-US
+Publisher: BuildIso
+PublisherUrl: https://github.com/BuildIso
+PublisherSupportUrl: https://github.com/BuildIso/BuildIso/issues
+PackageName: BuildIso
+PackageUrl: https://github.com/BuildIso/BuildIso
+License: MIT
+LicenseUrl: https://github.com/BuildIso/BuildIso/blob/HEAD/LICENSE
+ShortDescription: Lightweight ISO generator for OSDev.
+Tags:
+- build
+- build-system
+- build-tool
+- buildiso
+- eltorito
+- iso
+ReleaseNotesUrl: https://github.com/BuildIso/BuildIso/releases/tag/v2026.9
+Documentations:
+- DocumentLabel: Wiki
+ DocumentUrl: https://github.com/BuildIso/BuildIso/wiki
+ManifestType: defaultLocale
+ManifestVersion: 1.10.0
diff --git a/manifests/b/BuildIso/BuildIso/2026.9/BuildIso.BuildIso.yaml b/manifests/b/BuildIso/BuildIso/2026.9/BuildIso.BuildIso.yaml
new file mode 100644
index 000000000000..718bf38f08ac
--- /dev/null
+++ b/manifests/b/BuildIso/BuildIso/2026.9/BuildIso.BuildIso.yaml
@@ -0,0 +1,8 @@
+# Created using wingetcreate 1.10.3.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json
+
+PackageIdentifier: BuildIso.BuildIso
+PackageVersion: "2026.9"
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.10.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/CycloneDX/cdxgen/12.3.3/CycloneDX.cdxgen.installer.yaml b/manifests/c/CycloneDX/cdxgen/12.3.3/CycloneDX.cdxgen.installer.yaml
new file mode 100644
index 000000000000..2c6a7650fd06
--- /dev/null
+++ b/manifests/c/CycloneDX/cdxgen/12.3.3/CycloneDX.cdxgen.installer.yaml
@@ -0,0 +1,18 @@
+# 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: CycloneDX.cdxgen
+PackageVersion: 12.3.3
+InstallerType: portable
+InstallModes:
+- interactive
+- silent
+- silentWithProgress
+UpgradeBehavior: install
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/CycloneDX/cdxgen/releases/download/v12.3.3/cdxgen-windows-amd64.exe
+ InstallerSha256: 7BB2AFE76CD18086BB31B0BF7B4EE898E717A46A33E5C4C39496492A0785FF62
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/c/CycloneDX/cdxgen/12.3.3/CycloneDX.cdxgen.locale.en-US.yaml b/manifests/c/CycloneDX/cdxgen/12.3.3/CycloneDX.cdxgen.locale.en-US.yaml
new file mode 100644
index 000000000000..024c215d3533
--- /dev/null
+++ b/manifests/c/CycloneDX/cdxgen/12.3.3/CycloneDX.cdxgen.locale.en-US.yaml
@@ -0,0 +1,49 @@
+# 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: CycloneDX.cdxgen
+PackageVersion: 12.3.3
+PackageLocale: en-US
+Publisher: OWASP Foundation
+PublisherUrl: https://owasp.org/
+PublisherSupportUrl: https://github.com/CycloneDX/cdxgen/issues
+Author: CycloneDX
+PackageName: CycloneDX Generator (cdxgen)
+PackageUrl: https://github.com/CycloneDX/cdxgen
+License: Apache-2.0
+LicenseUrl: https://github.com/CycloneDX/cdxgen/blob/HEAD/LICENSE
+ShortDescription: A polyglot tool and a library for generating various Bill of Materials in CycloneDX specification.
+Description: Generate Software Bill of Materials (SBOM) for most applications and container images with a single command. Generate Operations Bill of Materials (OBOM) for Linux and Windows hosts. Integrate with any CI/CD pipeline. Automatically submit the generated BOM to your dependency track server for analysis.
+Moniker: cdxgen
+Tags:
+- bom
+- cbom
+- containers
+- cyclonedx
+- docker
+- oci
+- owasp
+- package-url
+- purl
+- saasbom
+- sbom
+- sca
+- software-bill-of-materials
+- supply-chain
+ReleaseNotes: |-
+ This release includes security fixes and some features.
+ What's Changed
+ 🤖 AI-auto Changes
+ - Trim non-runtime files from published npm artifacts, image context, and SEA bundles by @Copilot in #3957
+ - Add collider.lock support to C/C++ BOM generation by @Copilot in #3959
+ - Harden Dependency-Track submission host enforcement and redact secret-bearing BOM metadata by @Copilot in #3962
+ - Support staged rootfs inputs for remote/offline OBOM generation by @Copilot in #3956
+ - Ignore vendored Composer and jar artifacts in mixed npm source scans by @Copilot in #3955
+ - Refactor staged rootfs dockertests into CI helpers and fix staged all-layers path selection by @Copilot in #3963
+ - Populate evidence.identity.tools for externally identified components by @Copilot in #3960
+ - Add BOM audit rules for disabled setup caches with remote npm/PyPI sources by @Copilot in #3958
+ - Fix Docker registry auth: prevent credential leaks by enforcing host matching by @prabhu in #3964
+ Full Changelog: v12.3.2...v12.3.3
+ReleaseNotesUrl: https://github.com/cdxgen/cdxgen/releases/tag/v12.3.3
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/c/CycloneDX/cdxgen/12.3.3/CycloneDX.cdxgen.yaml b/manifests/c/CycloneDX/cdxgen/12.3.3/CycloneDX.cdxgen.yaml
new file mode 100644
index 000000000000..695a6545a2b1
--- /dev/null
+++ b/manifests/c/CycloneDX/cdxgen/12.3.3/CycloneDX.cdxgen.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: CycloneDX.cdxgen
+PackageVersion: 12.3.3
+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/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/d/DuckDuckGo/DesktopBrowser/0.155.7.0/DuckDuckGo.DesktopBrowser.installer.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/0.155.7.0/DuckDuckGo.DesktopBrowser.installer.yaml
new file mode 100644
index 000000000000..d0550c520998
--- /dev/null
+++ b/manifests/d/DuckDuckGo/DesktopBrowser/0.155.7.0/DuckDuckGo.DesktopBrowser.installer.yaml
@@ -0,0 +1,33 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: DuckDuckGo.DesktopBrowser
+PackageVersion: 0.155.7.0
+Platform:
+- Windows.Desktop
+- Windows.Universal
+MinimumOSVersion: 10.0.19041.0
+InstallerType: msix
+Protocols:
+- http
+- https
+FileExtensions:
+- htm
+- html
+- pdf
+PackageFamilyName: DuckDuckGo.DesktopBrowser_ya2fgkz3nks94
+Installers:
+- Architecture: x86
+ InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/0.155.7.0/DuckDuckGo_0.155.7.0.msixbundle
+ InstallerSha256: 2D366447A68689FC47D3BB46CB011D0F9ECC745BF6031EDB8642C63288AA28E8
+ SignatureSha256: CE0621CD3FDB9FBAA6CB6F9CA19F9D8920FDA4802CD35D71ECF6F2A82ED9910F
+- Architecture: x64
+ InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/0.155.7.0/DuckDuckGo_0.155.7.0.msixbundle
+ InstallerSha256: 2D366447A68689FC47D3BB46CB011D0F9ECC745BF6031EDB8642C63288AA28E8
+ SignatureSha256: CE0621CD3FDB9FBAA6CB6F9CA19F9D8920FDA4802CD35D71ECF6F2A82ED9910F
+- Architecture: arm64
+ InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/0.155.7.0/DuckDuckGo_0.155.7.0.msixbundle
+ InstallerSha256: 2D366447A68689FC47D3BB46CB011D0F9ECC745BF6031EDB8642C63288AA28E8
+ SignatureSha256: CE0621CD3FDB9FBAA6CB6F9CA19F9D8920FDA4802CD35D71ECF6F2A82ED9910F
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/0.155.7.0/DuckDuckGo.DesktopBrowser.locale.en-US.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/0.155.7.0/DuckDuckGo.DesktopBrowser.locale.en-US.yaml
new file mode 100644
index 000000000000..1779c36e7407
--- /dev/null
+++ b/manifests/d/DuckDuckGo/DesktopBrowser/0.155.7.0/DuckDuckGo.DesktopBrowser.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: DuckDuckGo.DesktopBrowser
+PackageVersion: 0.155.7.0
+PackageLocale: en-US
+Publisher: DuckDuckGo
+PublisherUrl: https://duckduckgo.com/
+PrivacyUrl: https://duckduckgo.com/privacy
+Author: Duck Duck Go, Inc.
+PackageName: DuckDuckGo
+PackageUrl: https://duckduckgo.com/windows
+License: Freeware
+LicenseUrl: https://duckduckgo.com/terms
+Copyright: © 2026 DuckDuckGo
+ShortDescription: An everyday browser that truly protects your privacy.
+Tags:
+- browser
+- chromium
+- web
+- webpage
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/0.155.7.0/DuckDuckGo.DesktopBrowser.locale.zh-CN.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/0.155.7.0/DuckDuckGo.DesktopBrowser.locale.zh-CN.yaml
new file mode 100644
index 000000000000..860b2f352f3e
--- /dev/null
+++ b/manifests/d/DuckDuckGo/DesktopBrowser/0.155.7.0/DuckDuckGo.DesktopBrowser.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: DuckDuckGo.DesktopBrowser
+PackageVersion: 0.155.7.0
+PackageLocale: zh-CN
+Publisher: DuckDuckGo
+PublisherUrl: https://duckduckgo.com/
+PrivacyUrl: https://duckduckgo.com/privacy
+Author: Duck Duck Go, Inc.
+PackageName: DuckDuckGo
+PackageUrl: https://duckduckgo.com/windows
+License: 免费软件
+LicenseUrl: https://duckduckgo.com/terms
+Copyright: © 2026 DuckDuckGo
+ShortDescription: 一款时刻并真正保护您隐私的浏览器
+Tags:
+- 浏览器
+- 网页
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/0.155.7.0/DuckDuckGo.DesktopBrowser.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/0.155.7.0/DuckDuckGo.DesktopBrowser.yaml
new file mode 100644
index 000000000000..5d8e39d9d07d
--- /dev/null
+++ b/manifests/d/DuckDuckGo/DesktopBrowser/0.155.7.0/DuckDuckGo.DesktopBrowser.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: DuckDuckGo.DesktopBrowser
+PackageVersion: 0.155.7.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/d/defendend/ast-index/3.40.4/defendend.ast-index.installer.yaml b/manifests/d/defendend/ast-index/3.40.4/defendend.ast-index.installer.yaml
new file mode 100644
index 000000000000..d85232b82c41
--- /dev/null
+++ b/manifests/d/defendend/ast-index/3.40.4/defendend.ast-index.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: defendend.ast-index
+PackageVersion: 3.40.4
+InstallerLocale: en-US
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: ast-index.exe
+Commands:
+- ast-index
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/defendend/Claude-ast-index-search/releases/download/v3.40.4/ast-index-v3.40.4-windows-x86_64.zip
+ InstallerSha256: 1AC0C085734E11D2E4DB3FD2F6904B10CA075078C24B6D50D640AF90060738FF
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/d/defendend/ast-index/3.40.4/defendend.ast-index.locale.en-US.yaml b/manifests/d/defendend/ast-index/3.40.4/defendend.ast-index.locale.en-US.yaml
new file mode 100644
index 000000000000..b37466faf25a
--- /dev/null
+++ b/manifests/d/defendend/ast-index/3.40.4/defendend.ast-index.locale.en-US.yaml
@@ -0,0 +1,28 @@
+# 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: defendend.ast-index
+PackageVersion: 3.40.4
+PackageLocale: en-US
+Publisher: defendend
+PublisherUrl: https://github.com/defendend
+PublisherSupportUrl: https://github.com/defendend/Claude-ast-index-search/issues
+Author: Alexandr Ivanov
+PackageName: ast-index
+PackageUrl: https://github.com/defendend/Claude-ast-index-search/releases
+License: MIT
+LicenseUrl: https://github.com/defendend/Claude-ast-index-search/blob/HEAD/LICENSE
+Copyright: Copyright (c) 2026 Alexandr Ivanov(defendend)
+ShortDescription: Fast code search CLI for Android, iOS, TypeScript, Rust, Ruby, C#, Python, Go, Perl, C++ projects
+Description: ast-index is a fast native Rust CLI for structural code search in Android/Kotlin/Java, iOS/Swift/ObjC, Dart/Flutter, TypeScript/JavaScript, Rust, Ruby, C#, PHP, Python, Go, Perl, C++, and Protocol Buffers projects.
+Moniker: ast-index
+Tags:
+- Android
+- claude
+- code-search
+- gemini
+- iOS
+ReleaseNotes: 'Full Changelog: v3.40.3...v3.40.4'
+ReleaseNotesUrl: https://github.com/defendend/Claude-ast-index-search/releases/tag/v3.40.4
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/d/defendend/ast-index/3.40.4/defendend.ast-index.yaml b/manifests/d/defendend/ast-index/3.40.4/defendend.ast-index.yaml
new file mode 100644
index 000000000000..caca43b3da77
--- /dev/null
+++ b/manifests/d/defendend/ast-index/3.40.4/defendend.ast-index.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: defendend.ast-index
+PackageVersion: 3.40.4
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/e/ENERCALC/ENERCALC/20.26.04.17/ENERCALC.ENERCALC.installer.yaml b/manifests/e/ENERCALC/ENERCALC/20.26.05.05/ENERCALC.ENERCALC.installer.yaml
similarity index 82%
rename from manifests/e/ENERCALC/ENERCALC/20.26.04.17/ENERCALC.ENERCALC.installer.yaml
rename to manifests/e/ENERCALC/ENERCALC/20.26.05.05/ENERCALC.ENERCALC.installer.yaml
index 8dc7dc8ccd92..b9ad995a13fa 100644
--- a/manifests/e/ENERCALC/ENERCALC/20.26.04.17/ENERCALC.ENERCALC.installer.yaml
+++ b/manifests/e/ENERCALC/ENERCALC/20.26.05.05/ENERCALC.ENERCALC.installer.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
PackageIdentifier: ENERCALC.ENERCALC
-PackageVersion: 20.26.04.17
+PackageVersion: 20.26.05.05
InstallerType: exe
Scope: machine
InstallModes:
@@ -17,6 +17,6 @@ ProductCode: '{4E7C8500-3D69-11DB-390C-1F56BA3C7E87}'
Installers:
- Architecture: x86
InstallerUrl: https://install.enercalc.com/ECSEL20_SETUP.EXE
- InstallerSha256: 75771A9A20F4DF211394B2F722584B28FCE82E51A17F53FCFB041C3D1E4A1D8C
+ InstallerSha256: 2575303789D3ED49A7E775C2E4DAE9AE646D4476EB3F2E5EE7D6C17C0C7BD7F1
ManifestType: installer
ManifestVersion: 1.12.0
diff --git a/manifests/e/ENERCALC/ENERCALC/20.26.04.17/ENERCALC.ENERCALC.locale.en-US.yaml b/manifests/e/ENERCALC/ENERCALC/20.26.05.05/ENERCALC.ENERCALC.locale.en-US.yaml
similarity index 98%
rename from manifests/e/ENERCALC/ENERCALC/20.26.04.17/ENERCALC.ENERCALC.locale.en-US.yaml
rename to manifests/e/ENERCALC/ENERCALC/20.26.05.05/ENERCALC.ENERCALC.locale.en-US.yaml
index 15faac2d8a13..b237aaf1899b 100644
--- a/manifests/e/ENERCALC/ENERCALC/20.26.04.17/ENERCALC.ENERCALC.locale.en-US.yaml
+++ b/manifests/e/ENERCALC/ENERCALC/20.26.05.05/ENERCALC.ENERCALC.locale.en-US.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
PackageIdentifier: ENERCALC.ENERCALC
-PackageVersion: 20.26.04.17
+PackageVersion: 20.26.05.05
PackageLocale: en-US
Publisher: ENERCALC, LLC.
PublisherUrl: https://enercalc.com/
diff --git a/manifests/e/ENERCALC/ENERCALC/20.26.04.17/ENERCALC.ENERCALC.locale.zh-CN.yaml b/manifests/e/ENERCALC/ENERCALC/20.26.05.05/ENERCALC.ENERCALC.locale.zh-CN.yaml
similarity index 97%
rename from manifests/e/ENERCALC/ENERCALC/20.26.04.17/ENERCALC.ENERCALC.locale.zh-CN.yaml
rename to manifests/e/ENERCALC/ENERCALC/20.26.05.05/ENERCALC.ENERCALC.locale.zh-CN.yaml
index 3b27d464b48d..5ca09c20c80e 100644
--- a/manifests/e/ENERCALC/ENERCALC/20.26.04.17/ENERCALC.ENERCALC.locale.zh-CN.yaml
+++ b/manifests/e/ENERCALC/ENERCALC/20.26.05.05/ENERCALC.ENERCALC.locale.zh-CN.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
PackageIdentifier: ENERCALC.ENERCALC
-PackageVersion: 20.26.04.17
+PackageVersion: 20.26.05.05
PackageLocale: zh-CN
License: 专有软件
ShortDescription: 结构工程软件
diff --git a/manifests/e/ENERCALC/ENERCALC/20.26.04.17/ENERCALC.ENERCALC.yaml b/manifests/e/ENERCALC/ENERCALC/20.26.05.05/ENERCALC.ENERCALC.yaml
similarity index 89%
rename from manifests/e/ENERCALC/ENERCALC/20.26.04.17/ENERCALC.ENERCALC.yaml
rename to manifests/e/ENERCALC/ENERCALC/20.26.05.05/ENERCALC.ENERCALC.yaml
index 5d90750a3362..596b582e038e 100644
--- a/manifests/e/ENERCALC/ENERCALC/20.26.04.17/ENERCALC.ENERCALC.yaml
+++ b/manifests/e/ENERCALC/ENERCALC/20.26.05.05/ENERCALC.ENERCALC.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
PackageIdentifier: ENERCALC.ENERCALC
-PackageVersion: 20.26.04.17
+PackageVersion: 20.26.05.05
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/Auditbeat/9.4.0/Elastic.Auditbeat.installer.yaml b/manifests/e/Elastic/Auditbeat/9.4.0/Elastic.Auditbeat.installer.yaml
new file mode 100644
index 000000000000..ca88a6251a35
--- /dev/null
+++ b/manifests/e/Elastic/Auditbeat/9.4.0/Elastic.Auditbeat.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.Auditbeat
+PackageVersion: 9.4.0
+InstallerType: wix
+Scope: machine
+InstallerSwitches:
+ InstallLocation: INSTALLDIR=""
+UpgradeBehavior: install
+Commands:
+- auditbeat
+ProductCode: '{F52C0025-5CB3-5DE7-84F7-A49A14B855F3}'
+ReleaseDate: 2026-05-05
+AppsAndFeaturesEntries:
+- UpgradeCode: '{F52C0025-5CB3-5DE7-84F7-A49A847845F3}'
+Installers:
+- Architecture: x64
+ InstallerUrl: https://artifacts.elastic.co/downloads/beats/auditbeat/auditbeat-9.4.0-windows-x86_64.msi
+ InstallerSha256: E55ACFB6C1C0CF902103298B8F8F5A0FC16E020244E08A19CEE4295F4A2E207B
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Elastic/Auditbeat/9.4.0/Elastic.Auditbeat.locale.en-US.yaml b/manifests/e/Elastic/Auditbeat/9.4.0/Elastic.Auditbeat.locale.en-US.yaml
new file mode 100644
index 000000000000..9fd0313a880a
--- /dev/null
+++ b/manifests/e/Elastic/Auditbeat/9.4.0/Elastic.Auditbeat.locale.en-US.yaml
@@ -0,0 +1,20 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Elastic.Auditbeat
+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 auditbeat
+PackageUrl: https://www.elastic.co/downloads/beats/auditbeat
+License: Elastic-2.0
+LicenseUrl: https://github.com/elastic/beats/blob/HEAD/LICENSE.txt
+Copyright: © 2026. Elasticsearch B.V. All Rights Reserved
+ShortDescription: Collect your Linux audit framework data and monitor the integrity of your files.
+ReleaseNotesUrl: https://www.elastic.co/docs/release-notes/beats
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Elastic/Auditbeat/9.4.0/Elastic.Auditbeat.locale.zh-CN.yaml b/manifests/e/Elastic/Auditbeat/9.4.0/Elastic.Auditbeat.locale.zh-CN.yaml
new file mode 100644
index 000000000000..4c19ef772cc4
--- /dev/null
+++ b/manifests/e/Elastic/Auditbeat/9.4.0/Elastic.Auditbeat.locale.zh-CN.yaml
@@ -0,0 +1,9 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: Elastic.Auditbeat
+PackageVersion: 9.4.0
+PackageLocale: zh-CN
+ShortDescription: 收集您的 Linux 审计框架数据并监控文件完整性。
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Elastic/Auditbeat/9.4.0/Elastic.Auditbeat.yaml b/manifests/e/Elastic/Auditbeat/9.4.0/Elastic.Auditbeat.yaml
new file mode 100644
index 000000000000..5a4557cfe6d0
--- /dev/null
+++ b/manifests/e/Elastic/Auditbeat/9.4.0/Elastic.Auditbeat.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.Auditbeat
+PackageVersion: 9.4.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
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/Elastic/Heartbeat/9.4.0/Elastic.Heartbeat.installer.yaml b/manifests/e/Elastic/Heartbeat/9.4.0/Elastic.Heartbeat.installer.yaml
new file mode 100644
index 000000000000..af740becf2c7
--- /dev/null
+++ b/manifests/e/Elastic/Heartbeat/9.4.0/Elastic.Heartbeat.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.Heartbeat
+PackageVersion: 9.4.0
+InstallerType: wix
+Scope: machine
+InstallerSwitches:
+ InstallLocation: INSTALLDIR=""
+UpgradeBehavior: install
+Commands:
+- heartbeat
+ProductCode: '{D1A2A571-99C7-52CE-B31F-D73B68BBC920}'
+ReleaseDate: 2026-05-05
+AppsAndFeaturesEntries:
+- UpgradeCode: '{D1A2A571-99C7-52CE-B31F-D73BD87BB920}'
+Installers:
+- Architecture: x64
+ InstallerUrl: https://artifacts.elastic.co/downloads/beats/heartbeat/heartbeat-9.4.0-windows-x86_64.msi
+ InstallerSha256: 06E19F81BEFDB98BAE775DAAC2AD216F5751377FDDD3996E492789323937F6C2
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Elastic/Heartbeat/9.4.0/Elastic.Heartbeat.locale.en-US.yaml b/manifests/e/Elastic/Heartbeat/9.4.0/Elastic.Heartbeat.locale.en-US.yaml
new file mode 100644
index 000000000000..6fc8c756bf98
--- /dev/null
+++ b/manifests/e/Elastic/Heartbeat/9.4.0/Elastic.Heartbeat.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.Heartbeat
+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 heartbeat
+PackageUrl: https://www.elastic.co/downloads/beats/heartbeat
+License: Elastic-2.0
+LicenseUrl: https://github.com/elastic/beats/blob/HEAD/LICENSE.txt
+Copyright: © 2026. Elasticsearch B.V. All Rights Reserved
+ShortDescription: Ping remote services for availability
+Description: Heartbeat is a beat for testing service availability using PING based on ICMP, TCP or higher level protocols.
+ReleaseNotesUrl: https://www.elastic.co/docs/release-notes/beats
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Elastic/Heartbeat/9.4.0/Elastic.Heartbeat.locale.zh-CN.yaml b/manifests/e/Elastic/Heartbeat/9.4.0/Elastic.Heartbeat.locale.zh-CN.yaml
new file mode 100644
index 000000000000..237df6c9d769
--- /dev/null
+++ b/manifests/e/Elastic/Heartbeat/9.4.0/Elastic.Heartbeat.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.Heartbeat
+PackageVersion: 9.4.0
+PackageLocale: zh-CN
+ShortDescription: 检测远程服务可用性
+Description: Heartbeat 是通过基于 ICMP、TCP 或更高层协议的 PING 测试服务可用性的 Beat。
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Elastic/Heartbeat/9.4.0/Elastic.Heartbeat.yaml b/manifests/e/Elastic/Heartbeat/9.4.0/Elastic.Heartbeat.yaml
new file mode 100644
index 000000000000..b4a67db94b28
--- /dev/null
+++ b/manifests/e/Elastic/Heartbeat/9.4.0/Elastic.Heartbeat.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.Heartbeat
+PackageVersion: 9.4.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Elastic/Metricbeat/9.4.0/Elastic.Metricbeat.installer.yaml b/manifests/e/Elastic/Metricbeat/9.4.0/Elastic.Metricbeat.installer.yaml
new file mode 100644
index 000000000000..bfe65beed0d1
--- /dev/null
+++ b/manifests/e/Elastic/Metricbeat/9.4.0/Elastic.Metricbeat.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.Metricbeat
+PackageVersion: 9.4.0
+InstallerType: wix
+Scope: machine
+InstallerSwitches:
+ InstallLocation: INSTALLDIR=""
+UpgradeBehavior: install
+Commands:
+- metricbeat
+ProductCode: '{493322A2-BB80-5176-867D-9F6A167D1E2B}'
+ReleaseDate: 2026-05-05
+AppsAndFeaturesEntries:
+- UpgradeCode: '{493322A2-BB80-5176-867D-9F6A863D0E2B}'
+Installers:
+- Architecture: x64
+ InstallerUrl: https://artifacts.elastic.co/downloads/beats/metricbeat/metricbeat-9.4.0-windows-x86_64.msi
+ InstallerSha256: 99F34CFC32C03CCF5F05E55D54F570DD0A0C5AA426D4A394E596273FADF188A9
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Elastic/Metricbeat/9.4.0/Elastic.Metricbeat.locale.en-US.yaml b/manifests/e/Elastic/Metricbeat/9.4.0/Elastic.Metricbeat.locale.en-US.yaml
new file mode 100644
index 000000000000..e40d5d0a42db
--- /dev/null
+++ b/manifests/e/Elastic/Metricbeat/9.4.0/Elastic.Metricbeat.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.Metricbeat
+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 metricbeat
+PackageUrl: https://www.elastic.co/downloads/beats/metricbeat
+License: Elastic-2.0
+LicenseUrl: https://github.com/elastic/beats/blob/HEAD/LICENSE.txt
+Copyright: © 2026. Elasticsearch B.V. All Rights Reserved
+ShortDescription: Fetches sets of metrics from the operating system and services
+Description: Metricbeat fetches a set of metrics on a predefined interval from the operating system and services such as Apache web server, Redis, and more and ships them to Elasticsearch or Logstash.
+ReleaseNotesUrl: https://www.elastic.co/docs/release-notes/beats
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Elastic/Metricbeat/9.4.0/Elastic.Metricbeat.locale.zh-CN.yaml b/manifests/e/Elastic/Metricbeat/9.4.0/Elastic.Metricbeat.locale.zh-CN.yaml
new file mode 100644
index 000000000000..b79d68d26a40
--- /dev/null
+++ b/manifests/e/Elastic/Metricbeat/9.4.0/Elastic.Metricbeat.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.Metricbeat
+PackageVersion: 9.4.0
+PackageLocale: zh-CN
+ShortDescription: 从操作系统和服务中获取指标集
+Description: Metricbeat 按照预定义的时间间隔,从操作系统及诸如 Apache 网页服务器、Redis 等服务中采集一组指标数据,并将其传输至 Elasticsearch 或 Logstash。
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Elastic/Metricbeat/9.4.0/Elastic.Metricbeat.yaml b/manifests/e/Elastic/Metricbeat/9.4.0/Elastic.Metricbeat.yaml
new file mode 100644
index 000000000000..6f0a928fc617
--- /dev/null
+++ b/manifests/e/Elastic/Metricbeat/9.4.0/Elastic.Metricbeat.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.Metricbeat
+PackageVersion: 9.4.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Elastic/Packetbeat/9.4.0/Elastic.Packetbeat.installer.yaml b/manifests/e/Elastic/Packetbeat/9.4.0/Elastic.Packetbeat.installer.yaml
new file mode 100644
index 000000000000..040a84101a27
--- /dev/null
+++ b/manifests/e/Elastic/Packetbeat/9.4.0/Elastic.Packetbeat.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.Packetbeat
+PackageVersion: 9.4.0
+InstallerType: wix
+Scope: machine
+InstallerSwitches:
+ InstallLocation: INSTALLDIR=""
+UpgradeBehavior: install
+Commands:
+- packetbeat
+ProductCode: '{2E7B78F4-AE35-56EE-867F-51E274925798}'
+ReleaseDate: 2026-05-05
+AppsAndFeaturesEntries:
+- UpgradeCode: '{2E7B78F4-AE35-56EE-867F-51E2E4524798}'
+Installers:
+- Architecture: x64
+ InstallerUrl: https://artifacts.elastic.co/downloads/beats/packetbeat/packetbeat-9.4.0-windows-x86_64.msi
+ InstallerSha256: 62249B970E002EBC470812333E7AD99DCB688F90D5293A6DBE83352649797738
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Elastic/Packetbeat/9.4.0/Elastic.Packetbeat.locale.en-US.yaml b/manifests/e/Elastic/Packetbeat/9.4.0/Elastic.Packetbeat.locale.en-US.yaml
new file mode 100644
index 000000000000..3dd32525edfe
--- /dev/null
+++ b/manifests/e/Elastic/Packetbeat/9.4.0/Elastic.Packetbeat.locale.en-US.yaml
@@ -0,0 +1,24 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Elastic.Packetbeat
+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 packetbeat
+PackageUrl: https://www.elastic.co/downloads/beats/packetbeat
+License: Elastic-2.0
+LicenseUrl: https://github.com/elastic/beats/blob/HEAD/LICENSE.txt
+Copyright: © 2026. Elasticsearch B.V. All Rights Reserved
+ShortDescription: Monitors the network and applications by sniffing packets
+Description: |-
+ Packetbeat is an open source network packet analyzer that ships the data to Elasticsearch. Think of it like a distributed real-time Wireshark with a lot more analytics features.
+ The Packetbeat shippers sniff the traffic between your application processes, parse on the fly protocols like HTTP, MySQL, PostgreSQL, Redis or Thrift and correlate the messages into transactions.
+ For each transaction, the shipper inserts a JSON document into Elasticsearch, where it is stored and indexed. You can then use Kibana to view key metrics and do ad-hoc queries against the data.
+ReleaseNotesUrl: https://www.elastic.co/docs/release-notes/beats
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Elastic/Packetbeat/9.4.0/Elastic.Packetbeat.locale.zh-CN.yaml b/manifests/e/Elastic/Packetbeat/9.4.0/Elastic.Packetbeat.locale.zh-CN.yaml
new file mode 100644
index 000000000000..3f7e01ab504e
--- /dev/null
+++ b/manifests/e/Elastic/Packetbeat/9.4.0/Elastic.Packetbeat.locale.zh-CN.yaml
@@ -0,0 +1,13 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: Elastic.Packetbeat
+PackageVersion: 9.4.0
+PackageLocale: zh-CN
+ShortDescription: 通过嗅探数据包来监视网络和应用程序
+Description: |-
+ Packetbeat 是一款开源网络数据包分析器,可将数据实时传输至 Elasticsearch。它如同一个具备丰富分析功能的分布式实时版 Wireshark。
+ Packetbeat 嗅探器能够实时捕获应用程序进程间的流量,动态解析 HTTP、MySQL、PostgreSQL、Redis 或 Thrift 等协议,并将消息关联为完整事务。
+ 对于每个事务,嗅探器会生成 JSON 格式文档并写入 Elasticsearch 进行存储和索引。随后您可通过 Kibana 可视化关键指标,并对数据进行即席查询。
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Elastic/Packetbeat/9.4.0/Elastic.Packetbeat.yaml b/manifests/e/Elastic/Packetbeat/9.4.0/Elastic.Packetbeat.yaml
new file mode 100644
index 000000000000..c5d6df4beff1
--- /dev/null
+++ b/manifests/e/Elastic/Packetbeat/9.4.0/Elastic.Packetbeat.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.Packetbeat
+PackageVersion: 9.4.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Elastic/Winlogbeat/9.4.0/Elastic.Winlogbeat.installer.yaml b/manifests/e/Elastic/Winlogbeat/9.4.0/Elastic.Winlogbeat.installer.yaml
new file mode 100644
index 000000000000..05315f0fd748
--- /dev/null
+++ b/manifests/e/Elastic/Winlogbeat/9.4.0/Elastic.Winlogbeat.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: Elastic.Winlogbeat
+PackageVersion: 9.4.0
+Commands:
+- winlogbeat
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerType: zip
+ NestedInstallerType: portable
+ NestedInstallerFiles:
+ - RelativeFilePath: winlogbeat-9.4.0-windows-x86_64\winlogbeat.exe
+ PortableCommandAlias: winlogbeat
+ InstallerUrl: https://artifacts.elastic.co/downloads/beats/winlogbeat/winlogbeat-9.4.0-windows-x86_64.zip
+ InstallerSha256: DA3A3F190E2A07CA1EC87CEE95C3F31730F0ADEE9AD95446735B521EFF6794C2
+ ArchiveBinariesDependOnPath: true
+- InstallerLocale: en-US
+ Architecture: x64
+ InstallerType: wix
+ Scope: machine
+ InstallerUrl: https://artifacts.elastic.co/downloads/beats/winlogbeat/winlogbeat-9.4.0-windows-x86_64.msi
+ InstallerSha256: FE412E64AB534CE74D9B7BC4279CD47CA81EAACE90DB56A0F97A988FA1E6D4DA
+ InstallerSwitches:
+ InstallLocation: INSTALLDIR=""
+ UpgradeBehavior: install
+ ProductCode: '{2DE7C165-4793-5EE1-9DF0-372082753E2B}'
+ AppsAndFeaturesEntries:
+ - DisplayName: Beats winlogbeat 9.4.0 (x86_64)
+ ProductCode: '{2DE7C165-4793-5EE1-9DF0-372082753E2B}'
+ UpgradeCode: '{2DE7C165-4793-5EE1-9DF0-3720F2352E2B}'
+ InstallationMetadata:
+ DefaultInstallLocation: '%ProgramFiles%\Elastic\Beats\9.1.2\winlogbeat'
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Elastic/Winlogbeat/9.4.0/Elastic.Winlogbeat.locale.en-US.yaml b/manifests/e/Elastic/Winlogbeat/9.4.0/Elastic.Winlogbeat.locale.en-US.yaml
new file mode 100644
index 000000000000..397fbd959d32
--- /dev/null
+++ b/manifests/e/Elastic/Winlogbeat/9.4.0/Elastic.Winlogbeat.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.Winlogbeat
+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 winlogbeat
+PackageUrl: https://www.elastic.co/downloads/beats/winlogbeat
+License: Elastic-2.0
+LicenseUrl: https://github.com/elastic/beats/blob/HEAD/LICENSE.txt
+Copyright: © 2026. Elasticsearch B.V. All Rights Reserved
+ShortDescription: Fetches and ships Windows Event logs
+Description: Winlogbeat is an open-source log collector that ships Windows Event Logs to Elasticsearch or Logstash. It installs and runs as a Windows service.
+ReleaseNotesUrl: https://www.elastic.co/docs/release-notes/beats
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Elastic/Winlogbeat/9.4.0/Elastic.Winlogbeat.locale.zh-CN.yaml b/manifests/e/Elastic/Winlogbeat/9.4.0/Elastic.Winlogbeat.locale.zh-CN.yaml
new file mode 100644
index 000000000000..853b6d3d4b82
--- /dev/null
+++ b/manifests/e/Elastic/Winlogbeat/9.4.0/Elastic.Winlogbeat.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.Winlogbeat
+PackageVersion: 9.4.0
+PackageLocale: zh-CN
+ShortDescription: 收集和传输 Windows 事件日志
+Description: Winlogbeat 是一款开源日志采集器,专用于将 Windows 事件日志传输至 Elasticsearch 或 Logstash。它以 Windows 服务的形式安装并运行。
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Elastic/Winlogbeat/9.4.0/Elastic.Winlogbeat.yaml b/manifests/e/Elastic/Winlogbeat/9.4.0/Elastic.Winlogbeat.yaml
new file mode 100644
index 000000000000..eed158f62af3
--- /dev/null
+++ b/manifests/e/Elastic/Winlogbeat/9.4.0/Elastic.Winlogbeat.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.Winlogbeat
+PackageVersion: 9.4.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Everless321/dYm/1.8.3/Everless321.dYm.installer.yaml b/manifests/e/Everless321/dYm/1.8.3/Everless321.dYm.installer.yaml
new file mode 100644
index 000000000000..8fb8cc6fe2a9
--- /dev/null
+++ b/manifests/e/Everless321/dYm/1.8.3/Everless321.dYm.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: Everless321.dYm
+PackageVersion: 1.8.3
+InstallerType: nullsoft
+Scope: user
+InstallerSwitches:
+ Upgrade: --updated
+UpgradeBehavior: install
+ProductCode: 43ee9364-0fb6-5a92-bf50-2da690f094b2
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/Everless321/dYm/releases/download/v1.8.3/dym-1.8.3-setup.exe
+ InstallerSha256: A12CF31DDB77A112761AAE16D8DD900ECDE8C4B10BABEFB15C77FB75914223C3
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Everless321/dYm/1.8.3/Everless321.dYm.locale.en-US.yaml b/manifests/e/Everless321/dYm/1.8.3/Everless321.dYm.locale.en-US.yaml
new file mode 100644
index 000000000000..e86eaba06e84
--- /dev/null
+++ b/manifests/e/Everless321/dYm/1.8.3/Everless321.dYm.locale.en-US.yaml
@@ -0,0 +1,15 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: Everless321.dYm
+PackageVersion: 1.8.3
+PackageLocale: en-US
+License: Freeware
+ShortDescription: Douyin Video Download and Intelligent Analysis Management Tool
+Tags:
+- douyin
+- download
+- parsing
+- video
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Everless321/dYm/1.8.3/Everless321.dYm.locale.zh-CN.yaml b/manifests/e/Everless321/dYm/1.8.3/Everless321.dYm.locale.zh-CN.yaml
new file mode 100644
index 000000000000..1fdf429c814d
--- /dev/null
+++ b/manifests/e/Everless321/dYm/1.8.3/Everless321.dYm.locale.zh-CN.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: Everless321.dYm
+PackageVersion: 1.8.3
+PackageLocale: zh-CN
+Publisher: example.com
+PublisherUrl: https://github.com/Everless321
+PublisherSupportUrl: https://github.com/Everless321/dYm/issues
+PackageName: dYm
+PackageUrl: https://github.com/Everless321/dYm
+License: 免费软件
+Copyright: Copyright © 2026 example.com
+ShortDescription: 抖音视频下载与智能分析管理工具
+Tags:
+- 下载
+- 抖音
+- 视频
+- 解析
+ReleaseNotes: 'Full Changelog: https://github.com/Everless321/dYm/compare/v1.8.2...v1.8.3'
+ReleaseNotesUrl: https://github.com/Everless321/dYm/releases/tag/v1.8.3
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/e/Everless321/dYm/1.8.3/Everless321.dYm.yaml b/manifests/e/Everless321/dYm/1.8.3/Everless321.dYm.yaml
new file mode 100644
index 000000000000..3e6e13744a09
--- /dev/null
+++ b/manifests/e/Everless321/dYm/1.8.3/Everless321.dYm.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: Everless321.dYm
+PackageVersion: 1.8.3
+DefaultLocale: zh-CN
+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/FunRoutine/WorkFlowy/4.3.2605051613/FunRoutine.WorkFlowy.installer.yaml b/manifests/f/FunRoutine/WorkFlowy/4.3.2605051613/FunRoutine.WorkFlowy.installer.yaml
new file mode 100644
index 000000000000..cdc848f0ed2a
--- /dev/null
+++ b/manifests/f/FunRoutine/WorkFlowy/4.3.2605051613/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.2605051613
+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.2605051613/WorkFlowy-Installer-4.3.2605051613.exe
+ InstallerSha256: F2BEE95482224C90B9324F69C26C3C221AB6666FDB29A74427B3C9173F4D70E0
+- Architecture: x64
+ InstallerUrl: https://github.com/workflowy/desktop/releases/download/v4.3.2605051613/WorkFlowy-Installer-4.3.2605051613.exe
+ InstallerSha256: F2BEE95482224C90B9324F69C26C3C221AB6666FDB29A74427B3C9173F4D70E0
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/f/FunRoutine/WorkFlowy/4.3.2605051613/FunRoutine.WorkFlowy.locale.en-US.yaml b/manifests/f/FunRoutine/WorkFlowy/4.3.2605051613/FunRoutine.WorkFlowy.locale.en-US.yaml
new file mode 100644
index 000000000000..ef5fc8472273
--- /dev/null
+++ b/manifests/f/FunRoutine/WorkFlowy/4.3.2605051613/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.2605051613
+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.2605051613
+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.2605051613/FunRoutine.WorkFlowy.locale.zh-CN.yaml b/manifests/f/FunRoutine/WorkFlowy/4.3.2605051613/FunRoutine.WorkFlowy.locale.zh-CN.yaml
new file mode 100644
index 000000000000..3d865a0fce18
--- /dev/null
+++ b/manifests/f/FunRoutine/WorkFlowy/4.3.2605051613/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.2605051613
+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.2605051613
+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.2605051613/FunRoutine.WorkFlowy.yaml b/manifests/f/FunRoutine/WorkFlowy/4.3.2605051613/FunRoutine.WorkFlowy.yaml
new file mode 100644
index 000000000000..1eb4d8ab99f5
--- /dev/null
+++ b/manifests/f/FunRoutine/WorkFlowy/4.3.2605051613/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.2605051613
+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/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/149.0.7827.2/Google.Chrome.Canary.installer.yaml
similarity index 57%
rename from manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.installer.yaml
rename to manifests/g/Google/Chrome/Canary/149.0.7827.2/Google.Chrome.Canary.installer.yaml
index 265a41253386..02d224dcdf12 100644
--- a/manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.installer.yaml
+++ b/manifests/g/Google/Chrome/Canary/149.0.7827.2/Google.Chrome.Canary.installer.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
PackageIdentifier: Google.Chrome.Canary
-PackageVersion: 149.0.7827.0
+PackageVersion: 149.0.7827.2
InstallerType: exe
Scope: user
InstallModes:
@@ -37,13 +37,13 @@ FileExtensions:
ProductCode: Google Chrome SxS
Installers:
- Architecture: x86
- InstallerUrl: https://dl.google.com/release2/chrome/acj6yujfvxlskynu73eymt4dtbia_149.0.7827.0/149.0.7827.0_chrome_installer_uncompressed.exe
- InstallerSha256: 5490EEA58A6A7FEB509CE573CFCFEA3929C7738B412629FA79850842C6887B3F
+ InstallerUrl: https://dl.google.com/release2/chrome/e3w3xkheu6kxoibhilebc7iwbm_149.0.7827.2/149.0.7827.2_chrome_installer_uncompressed.exe
+ InstallerSha256: C309D4335222E6A3BE2FE8CBB0EA993EDEEAD4437ADBDE05F7F763719F2F8443
- Architecture: x64
- InstallerUrl: https://dl.google.com/release2/chrome/iq65n2yvea6haqw6m7dh37ochq_149.0.7827.0/149.0.7827.0_chrome_installer_uncompressed.exe
- InstallerSha256: 636810C0DB1C1778B1EAA5A83D0CB7EC1355D50CC62CD2BF8A2BC1331864868F
+ InstallerUrl: https://dl.google.com/release2/chrome/av2vj2krqdkmln4nu6fywriz64_149.0.7827.2/149.0.7827.2_chrome_installer_uncompressed.exe
+ InstallerSha256: 940E1EC0C5E7F3BDE57F88A966373D0FB42C90F199FDCC5114028EB63816F0B6
- Architecture: arm64
- InstallerUrl: https://dl.google.com/release2/chrome/ff6sc3wcrqbcgspyeesiaaq2km_149.0.7827.0/149.0.7827.0_chrome_installer_uncompressed.exe
- InstallerSha256: ED4F6BEAC5AB1FDE9762413EC5773EF5F4DF697D04272948A021353ABB15CE9B
+ InstallerUrl: https://dl.google.com/release2/chrome/nftu7rcjp76xfhiy3yej4nir5a_149.0.7827.2/149.0.7827.2_chrome_installer_uncompressed.exe
+ InstallerSha256: B9B617B91FD9553FF3417999742F921D67287AB3C34F767C3FD5782872B6C96F
ManifestType: installer
ManifestVersion: 1.12.0
diff --git a/manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/149.0.7827.2/Google.Chrome.Canary.locale.en-US.yaml
similarity index 96%
rename from manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.locale.en-US.yaml
rename to manifests/g/Google/Chrome/Canary/149.0.7827.2/Google.Chrome.Canary.locale.en-US.yaml
index 8bbcc1b45b19..39ab5cdd81a2 100644
--- a/manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.locale.en-US.yaml
+++ b/manifests/g/Google/Chrome/Canary/149.0.7827.2/Google.Chrome.Canary.locale.en-US.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
PackageIdentifier: Google.Chrome.Canary
-PackageVersion: 149.0.7827.0
+PackageVersion: 149.0.7827.2
PackageLocale: en-US
Publisher: Google LLC
PublisherUrl: https://www.google.com/
diff --git a/manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/149.0.7827.2/Google.Chrome.Canary.locale.nb-NO.yaml
similarity index 96%
rename from manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.locale.nb-NO.yaml
rename to manifests/g/Google/Chrome/Canary/149.0.7827.2/Google.Chrome.Canary.locale.nb-NO.yaml
index 782799bcfc44..2132d2a3d9b2 100644
--- a/manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.locale.nb-NO.yaml
+++ b/manifests/g/Google/Chrome/Canary/149.0.7827.2/Google.Chrome.Canary.locale.nb-NO.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
PackageIdentifier: Google.Chrome.Canary
-PackageVersion: 149.0.7827.0
+PackageVersion: 149.0.7827.2
PackageLocale: nb-NO
Publisher: Google LLC
PublisherUrl: https://www.google.com/
diff --git a/manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/149.0.7827.2/Google.Chrome.Canary.locale.zh-CN.yaml
similarity index 96%
rename from manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.locale.zh-CN.yaml
rename to manifests/g/Google/Chrome/Canary/149.0.7827.2/Google.Chrome.Canary.locale.zh-CN.yaml
index 76a0bfe6948b..0b38eae92cc3 100644
--- a/manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.locale.zh-CN.yaml
+++ b/manifests/g/Google/Chrome/Canary/149.0.7827.2/Google.Chrome.Canary.locale.zh-CN.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
PackageIdentifier: Google.Chrome.Canary
-PackageVersion: 149.0.7827.0
+PackageVersion: 149.0.7827.2
PackageLocale: zh-CN
Publisher: Google LLC
PublisherUrl: https://www.google.com/
diff --git a/manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.yaml b/manifests/g/Google/Chrome/Canary/149.0.7827.2/Google.Chrome.Canary.yaml
similarity index 89%
rename from manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.yaml
rename to manifests/g/Google/Chrome/Canary/149.0.7827.2/Google.Chrome.Canary.yaml
index d0d4319d821b..4331f628a372 100644
--- a/manifests/g/Google/Chrome/Canary/149.0.7827.0/Google.Chrome.Canary.yaml
+++ b/manifests/g/Google/Chrome/Canary/149.0.7827.2/Google.Chrome.Canary.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
PackageIdentifier: Google.Chrome.Canary
-PackageVersion: 149.0.7827.0
+PackageVersion: 149.0.7827.2
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/HaiYing/AionUi/1.9.25/HaiYing.AionUi.installer.yaml b/manifests/h/HaiYing/AionUi/1.9.25/HaiYing.AionUi.installer.yaml
new file mode 100644
index 000000000000..71ce92b80f88
--- /dev/null
+++ b/manifests/h/HaiYing/AionUi/1.9.25/HaiYing.AionUi.installer.yaml
@@ -0,0 +1,32 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: HaiYing.AionUi
+PackageVersion: 1.9.25
+InstallerType: nullsoft
+InstallerSwitches:
+ Upgrade: --updated
+UpgradeBehavior: install
+ProductCode: f3bfde38-8429-545c-a4e9-a078d87dee6c
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ Scope: user
+ InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.25/AionUi-1.9.25-win-x64.exe
+ InstallerSha256: BE366EFDC69EE64EB3D28E354D3182A0D09B74D0DFE277AF1E89364EED8228BE
+ InstallerSwitches:
+ Custom: /currentuser
+- Architecture: x64
+ Scope: machine
+ InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.25/AionUi-1.9.25-win-x64.exe
+ InstallerSha256: BE366EFDC69EE64EB3D28E354D3182A0D09B74D0DFE277AF1E89364EED8228BE
+ InstallerSwitches:
+ Custom: /allusers
+- Architecture: arm64
+ Scope: machine
+ InstallerUrl: https://github.com/iOfficeAI/AionUi/releases/download/v1.9.25/AionUi-1.9.25-win-arm64.exe
+ InstallerSha256: F5A336C9F360AD2BC281AE2941E709814455F5570FB3832BC927A9FB6786A295
+ InstallerSwitches:
+ Custom: /allusers
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/h/HaiYing/AionUi/1.9.25/HaiYing.AionUi.locale.en-US.yaml b/manifests/h/HaiYing/AionUi/1.9.25/HaiYing.AionUi.locale.en-US.yaml
new file mode 100644
index 000000000000..436ac7889899
--- /dev/null
+++ b/manifests/h/HaiYing/AionUi/1.9.25/HaiYing.AionUi.locale.en-US.yaml
@@ -0,0 +1,44 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: HaiYing.AionUi
+PackageVersion: 1.9.25
+PackageLocale: en-US
+Publisher: aionui
+PublisherUrl: https://office-ai.net/
+PublisherSupportUrl: https://github.com/iOfficeAI/AionUi/issues
+PrivacyUrl: https://office-ai.net/privacy-policy/
+Author: Hying Technology Co., Ltd.
+PackageName: AionUi
+PackageUrl: https://github.com/iOfficeAI/AionUi
+License: Apache-2.0
+LicenseUrl: https://github.com/iOfficeAI/AionUi/blob/HEAD/LICENSE
+Copyright: Copyright 2026 AionUi (aionui.com)
+ShortDescription: Free, local, open-source GUI app for Gemini CLI — Enhance Chat Experience, Multi-tasking, Code Diff View, File & Project Management, and more
+Tags:
+- ai
+- code
+- coding
+- gemini
+- gemini-cli
+- large-language-model
+- llm
+- programming
+ReleaseNotes: |-
+ Highlights
+ OfficeCLI Skills Refreshed
+ - Bundled OfficeCLI skills (pptx, docx, xlsx, pitch-deck, word-form, data-dashboard, academic-paper, financial-model, morph-ppt, morph-ppt-3d) have been resynced from upstream. The PPTX skill was heavily streamlined for clarity, the Pitch Deck skill expanded with more guidance, and the Morph helper scripts updated.
+ - The built-in officecli generic skill also ships the latest upstream SKILL.md, so agents routed through the generic entry point get the same fresh rules.
+ Documentation
+ - README now showcases the Hermes and OpenClaw demo videos, with broader mentions of integrated agents across all localized readmes.
+ What's Changed
+ - docs: add Hermes/OpenClaw videos and expand agent mentions in all readmes by @ringringlin in https://github.com/iOfficeAI/AionUi/pull/2749
+ - chore(skills): sync officecli skills from upstream by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/2750
+ - chore: bump version to 1.9.25 by @IceyLiu in https://github.com/iOfficeAI/AionUi/pull/2753
+ Full Changelog: https://github.com/iOfficeAI/AionUi/compare/v1.9.24...v1.9.25
+ReleaseNotesUrl: https://github.com/iOfficeAI/AionUi/releases/tag/v1.9.25
+Documentations:
+- DocumentLabel: Wiki
+ DocumentUrl: https://github.com/iOfficeAI/AionUi/wiki
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/h/HaiYing/AionUi/1.9.25/HaiYing.AionUi.locale.zh-CN.yaml b/manifests/h/HaiYing/AionUi/1.9.25/HaiYing.AionUi.locale.zh-CN.yaml
new file mode 100644
index 000000000000..ca9b51c951aa
--- /dev/null
+++ b/manifests/h/HaiYing/AionUi/1.9.25/HaiYing.AionUi.locale.zh-CN.yaml
@@ -0,0 +1,19 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: HaiYing.AionUi
+PackageVersion: 1.9.25
+PackageLocale: zh-CN
+PublisherUrl: https://www.haiyingsec.cn/
+PrivacyUrl: https://www.office-ai.cn/privacy-policy
+Author: 珠海海鹦安全科技有限公司
+ShortDescription: 免费、本地、开源的 Gemini CLI 图形界面应用 — 提升聊天体验、支持多任务处理、代码差异对比、文件与项目管理,以及更多功能
+Tags:
+- gemini
+- gemini-cli
+- 人工智能
+- 代码
+- 大语言模型
+- 编程
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/h/HaiYing/AionUi/1.9.25/HaiYing.AionUi.yaml b/manifests/h/HaiYing/AionUi/1.9.25/HaiYing.AionUi.yaml
new file mode 100644
index 000000000000..4a8e10f3fdfc
--- /dev/null
+++ b/manifests/h/HaiYing/AionUi/1.9.25/HaiYing.AionUi.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: HaiYing.AionUi
+PackageVersion: 1.9.25
+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/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/i/iMBC/mini/3.0.16/iMBC.mini.installer.yaml b/manifests/i/iMBC/mini/3.0.16/iMBC.mini.installer.yaml
new file mode 100644
index 000000000000..9e081d5989e3
--- /dev/null
+++ b/manifests/i/iMBC/mini/3.0.16/iMBC.mini.installer.yaml
@@ -0,0 +1,15 @@
+# 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: iMBC.mini
+PackageVersion: 3.0.16
+InstallerType: nullsoft
+Installers:
+- Architecture: x64
+ InstallerUrl: https://img.imbc.com/mini/install/Win/MBC%20mini%20Setup.exe
+ InstallerSha256: 0DEE3428CC773BE75EA9A387AD4DEA4A98E1AB98D4522A7D28A1575015FB6292
+ AppsAndFeaturesEntries:
+ - ProductCode: d952fa26-0ff2-5f42-9ec0-53b3cd8ae877
+ Publisher: MBC mini
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/i/iMBC/mini/3.0.16/iMBC.mini.locale.en-US.yaml b/manifests/i/iMBC/mini/3.0.16/iMBC.mini.locale.en-US.yaml
new file mode 100644
index 000000000000..8fb077664ab9
--- /dev/null
+++ b/manifests/i/iMBC/mini/3.0.16/iMBC.mini.locale.en-US.yaml
@@ -0,0 +1,18 @@
+# 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: iMBC.mini
+PackageVersion: 3.0.16
+PackageLocale: en-US
+Publisher: iMBC
+PublisherUrl: https://www.imbc.com/
+PublisherSupportUrl: https://help.imbc.com/
+PrivacyUrl: https://help.imbc.com/rules/privacy.html
+PackageName: MBC mini
+PackageUrl: https://mini.imbc.com/
+License: Proprietary
+Copyright: Copyright © 2024 MBC mini
+ShortDescription: MBC Radio
+Moniker: mbc-mini
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/i/iMBC/mini/3.0.16/iMBC.mini.yaml b/manifests/i/iMBC/mini/3.0.16/iMBC.mini.yaml
new file mode 100644
index 000000000000..8ec8362293f1
--- /dev/null
+++ b/manifests/i/iMBC/mini/3.0.16/iMBC.mini.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: iMBC.mini
+PackageVersion: 3.0.16
+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/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/Kurokeita/TruyenazzCrawler/1.0.1/Kurokeita.TruyenazzCrawler.installer.yaml b/manifests/k/Kurokeita/TruyenazzCrawler/1.0.1/Kurokeita.TruyenazzCrawler.installer.yaml
new file mode 100644
index 000000000000..64d67d92337e
--- /dev/null
+++ b/manifests/k/Kurokeita/TruyenazzCrawler/1.0.1/Kurokeita.TruyenazzCrawler.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: Kurokeita.TruyenazzCrawler
+PackageVersion: 1.0.1
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: truyenazz-crawl.exe
+ PortableCommandAlias: truyenazz-crawl
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/kurokeita/truyenazz-crawler/releases/download/v1.0.1/truyenazz-crawl-windows-x86_64.zip
+ InstallerSha256: 96EEC3C3B8DB97919FA2A5A011B3B38E900FAE8543CCC8A88AD15B6DD39A39FD
+ManifestType: installer
+ManifestVersion: 1.12.0
+ReleaseDate: 2026-05-05
diff --git a/manifests/k/Kurokeita/TruyenazzCrawler/1.0.1/Kurokeita.TruyenazzCrawler.locale.en-US.yaml b/manifests/k/Kurokeita/TruyenazzCrawler/1.0.1/Kurokeita.TruyenazzCrawler.locale.en-US.yaml
new file mode 100644
index 000000000000..c0ab5e13fd98
--- /dev/null
+++ b/manifests/k/Kurokeita/TruyenazzCrawler/1.0.1/Kurokeita.TruyenazzCrawler.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: Kurokeita.TruyenazzCrawler
+PackageVersion: 1.0.1
+PackageLocale: en-US
+Publisher: Kurokeita
+PublisherUrl: https://github.com/kurokeita
+PublisherSupportUrl: https://github.com/kurokeita/truyenazz-crawler/issues
+PackageName: truyenazz-crawler
+PackageUrl: https://github.com/kurokeita/truyenazz-crawler
+License: GPL-3.0
+ShortDescription: Rust crawler and EPUB builder for truyenazz.me novels
+ReleaseNotesUrl: https://github.com/kurokeita/truyenazz-crawler/releases/tag/v1.0.1
+Documentations:
+- DocumentLabel: Wiki
+ DocumentUrl: https://github.com/kurokeita/truyenazz-crawler/wiki
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/k/Kurokeita/TruyenazzCrawler/1.0.1/Kurokeita.TruyenazzCrawler.yaml b/manifests/k/Kurokeita/TruyenazzCrawler/1.0.1/Kurokeita.TruyenazzCrawler.yaml
new file mode 100644
index 000000000000..38fb87cbbf26
--- /dev/null
+++ b/manifests/k/Kurokeita/TruyenazzCrawler/1.0.1/Kurokeita.TruyenazzCrawler.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: Kurokeita.TruyenazzCrawler
+PackageVersion: 1.0.1
+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/k/kunobi-ninja/kunobi/0.1.0-beta.34/kunobi-ninja.kunobi.installer.yaml b/manifests/k/kunobi-ninja/kunobi/0.1.0-beta.34/kunobi-ninja.kunobi.installer.yaml
new file mode 100644
index 000000000000..a36169e65e2c
--- /dev/null
+++ b/manifests/k/kunobi-ninja/kunobi/0.1.0-beta.34/kunobi-ninja.kunobi.installer.yaml
@@ -0,0 +1,23 @@
+# Created with komac v2.15.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: kunobi-ninja.kunobi
+PackageVersion: 0.1.0-beta.34
+InstallerType: exe
+InstallModes:
+- interactive
+- silent
+- silentWithProgress
+InstallerSwitches:
+ Silent: /S
+ SilentWithProgress: /P
+UpgradeBehavior: install
+Protocols:
+- kunobi
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerUrl: https://r2.kunobi.ninja/v0.1.0-beta.34/Kunobi_0.1.0-beta.34_windows_x86_64.exe
+ InstallerSha256: A1B375F59C394FC685B7F86031D6231B30063E1D8086498E1C6637BE80169E31
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/k/kunobi-ninja/kunobi/0.1.0-beta.34/kunobi-ninja.kunobi.locale.en-US.yaml b/manifests/k/kunobi-ninja/kunobi/0.1.0-beta.34/kunobi-ninja.kunobi.locale.en-US.yaml
new file mode 100644
index 000000000000..552b658839d9
--- /dev/null
+++ b/manifests/k/kunobi-ninja/kunobi/0.1.0-beta.34/kunobi-ninja.kunobi.locale.en-US.yaml
@@ -0,0 +1,27 @@
+# Created with komac v2.15.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: kunobi-ninja.kunobi
+PackageVersion: 0.1.0-beta.34
+PackageLocale: en-US
+Publisher: Kunobi Ninja
+PublisherUrl: https://kunobi.ninja/
+PublisherSupportUrl: https://kunobi.ninja/contact
+Author: Zondax AG
+PackageName: kunobi
+PackageUrl: https://kunobi.ninja/download
+License: Proprietary
+LicenseUrl: https://kunobi.ninja/terms-of-use
+Copyright: Copyright (c) Zondax AG
+CopyrightUrl: https://kunobi.ninja/terms-of-use
+ShortDescription: Kubernetes and Gitops dashboard and management tool
+Description: Operations control for GitOps and Kubernetes at scale Kunobi helps platform teams understand what is deployed, what changed, and why. Across clusters and GitOps sources
+Moniker: kunobi
+Tags:
+- devops
+- gitops
+- k8s
+- kubernetes
+ReleaseNotesUrl: https://kunobi.ninja/changelog/v0.1.0-beta.34
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/k/kunobi-ninja/kunobi/0.1.0-beta.34/kunobi-ninja.kunobi.yaml b/manifests/k/kunobi-ninja/kunobi/0.1.0-beta.34/kunobi-ninja.kunobi.yaml
new file mode 100644
index 000000000000..6cd18feecf75
--- /dev/null
+++ b/manifests/k/kunobi-ninja/kunobi/0.1.0-beta.34/kunobi-ninja.kunobi.yaml
@@ -0,0 +1,8 @@
+# Created with komac v2.15.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: kunobi-ninja.kunobi
+PackageVersion: 0.1.0-beta.34
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/l/LabyMediaGmbH/LabyModLauncher/2.2.0/LabyMediaGmbH.LabyModLauncher.installer.yaml b/manifests/l/LabyMediaGmbH/LabyModLauncher/2.2.0/LabyMediaGmbH.LabyModLauncher.installer.yaml
new file mode 100644
index 000000000000..963d2d5d57cd
--- /dev/null
+++ b/manifests/l/LabyMediaGmbH/LabyModLauncher/2.2.0/LabyMediaGmbH.LabyModLauncher.installer.yaml
@@ -0,0 +1,12 @@
+# 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: LabyMediaGmbH.LabyModLauncher
+PackageVersion: 2.2.0
+InstallerType: exe
+Installers:
+- Architecture: x64
+ InstallerUrl: https://releases.r2.labymod.net/launcher/win32/x64/LabyModLauncherSetup-latest.exe
+ InstallerSha256: 54313EE2168388D3F28E208FA37837B9914CDB800A6F09672F08A008024A940F
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/l/LabyMediaGmbH/LabyModLauncher/2.2.0/LabyMediaGmbH.LabyModLauncher.locale.en-US.yaml b/manifests/l/LabyMediaGmbH/LabyModLauncher/2.2.0/LabyMediaGmbH.LabyModLauncher.locale.en-US.yaml
new file mode 100644
index 000000000000..1670fc500d89
--- /dev/null
+++ b/manifests/l/LabyMediaGmbH/LabyModLauncher/2.2.0/LabyMediaGmbH.LabyModLauncher.locale.en-US.yaml
@@ -0,0 +1,15 @@
+# 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: LabyMediaGmbH.LabyModLauncher
+PackageVersion: 2.2.0
+PackageLocale: en-US
+Publisher: LabyMedia GmbH
+PublisherUrl: https://labymod.net
+PackageName: LabyMod Launcher
+PackageUrl: https://labymod.net/en/download
+License: Proprietary
+Copyright: Copyright © 2023 LabyMedia GmbH
+ShortDescription: LabyMod Launcher
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/l/LabyMediaGmbH/LabyModLauncher/2.2.0/LabyMediaGmbH.LabyModLauncher.yaml b/manifests/l/LabyMediaGmbH/LabyModLauncher/2.2.0/LabyMediaGmbH.LabyModLauncher.yaml
new file mode 100644
index 000000000000..32912e9a2fda
--- /dev/null
+++ b/manifests/l/LabyMediaGmbH/LabyModLauncher/2.2.0/LabyMediaGmbH.LabyModLauncher.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: LabyMediaGmbH.LabyModLauncher
+PackageVersion: 2.2.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/Logitech/GHUB/2026.1.828335/Logitech.GHUB.installer.yaml b/manifests/l/Logitech/GHUB/2026.1.828335/Logitech.GHUB.installer.yaml
index 4ba219e525cf..b37236349116 100644
--- a/manifests/l/Logitech/GHUB/2026.1.828335/Logitech.GHUB.installer.yaml
+++ b/manifests/l/Logitech/GHUB/2026.1.828335/Logitech.GHUB.installer.yaml
@@ -18,6 +18,6 @@ ReleaseDate: 2026-02-03
Installers:
- Architecture: x64
InstallerUrl: https://download01.logi.com/web/ftp/pub/techsupport/gaming/lghub_installer.exe
- InstallerSha256: FF561ACD94B159BBE6ABAF1277371A76C42A7899C895EB8C520E9C18C44C7469
+ InstallerSha256: D13BF16FE50D6CAE4697482AB40A89A943903887E915542360F6329395704911
ManifestType: installer
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/Mega/MEGASync/6.2.2/Mega.MEGASync.installer.yaml b/manifests/m/Mega/MEGASync/6.3.0.1/Mega.MEGASync.installer.yaml
similarity index 52%
rename from manifests/m/Mega/MEGASync/6.2.2/Mega.MEGASync.installer.yaml
rename to manifests/m/Mega/MEGASync/6.3.0.1/Mega.MEGASync.installer.yaml
index df2c9e3bb404..2872903632fb 100644
--- a/manifests/m/Mega/MEGASync/6.2.2/Mega.MEGASync.installer.yaml
+++ b/manifests/m/Mega/MEGASync/6.3.0.1/Mega.MEGASync.installer.yaml
@@ -1,19 +1,25 @@
-# Created using wingetcreate 1.12.8.0
+# Created with komac v2.16.0
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
PackageIdentifier: Mega.MEGASync
-PackageVersion: 6.2.2
+PackageVersion: 6.3.0.1
InstallerLocale: en-US
InstallerType: nullsoft
+Scope: machine
UpgradeBehavior: install
ProductCode: MEGAsync
+AppsAndFeaturesEntries:
+- DisplayVersion: 6.3.0
+ ProductCode: MEGAsync
ElevationRequirement: elevatesSelf
+InstallationMetadata:
+ DefaultInstallLocation: '%ProgramFiles(x86)%\MEGAsync'
Installers:
- Architecture: x86
InstallerUrl: https://mega.nz/MEGAsyncSetup32.exe
- InstallerSha256: 3CFE7DB97A993945E06B9922C56001D7A4CE037CCC252FD9491A8260F3E6BEB1
+ InstallerSha256: 6A6A9CF4A4CD3BE846832EB5F1BC2327A6906A7793057BCFA3330B53E28DC213
- Architecture: x64
InstallerUrl: https://mega.nz/MEGAsyncSetup64.exe
- InstallerSha256: 46B3CEB1BF9FEFD1AE2BAC3874E8559728A0591DAEAA1C68FA46D7EB91AA0936
+ InstallerSha256: 229DC209A527297487B9A692056C63F85746E0E80C120721707F6B9AA6C0BC36
ManifestType: installer
ManifestVersion: 1.12.0
diff --git a/manifests/m/Mega/MEGASync/6.2.2/Mega.MEGASync.locale.en-US.yaml b/manifests/m/Mega/MEGASync/6.3.0.1/Mega.MEGASync.locale.en-US.yaml
similarity index 88%
rename from manifests/m/Mega/MEGASync/6.2.2/Mega.MEGASync.locale.en-US.yaml
rename to manifests/m/Mega/MEGASync/6.3.0.1/Mega.MEGASync.locale.en-US.yaml
index 1b813d582610..b370c5173525 100644
--- a/manifests/m/Mega/MEGASync/6.2.2/Mega.MEGASync.locale.en-US.yaml
+++ b/manifests/m/Mega/MEGASync/6.3.0.1/Mega.MEGASync.locale.en-US.yaml
@@ -1,8 +1,8 @@
-# Created using wingetcreate 1.12.8.0
+# Created with komac v2.16.0
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
PackageIdentifier: Mega.MEGASync
-PackageVersion: 6.2.2
+PackageVersion: 6.3.0.1
PackageLocale: en-US
Publisher: Mega Limited
PrivacyUrl: https://mega.io/privacy
diff --git a/manifests/m/Mega/MEGASync/6.3.0.1/Mega.MEGASync.yaml b/manifests/m/Mega/MEGASync/6.3.0.1/Mega.MEGASync.yaml
new file mode 100644
index 000000000000..cfc9b854df3d
--- /dev/null
+++ b/manifests/m/Mega/MEGASync/6.3.0.1/Mega.MEGASync.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: Mega.MEGASync
+PackageVersion: 6.3.0.1
+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/Microstockr/Desktopapp/3.3.34/Microstockr.Desktopapp.installer.yaml b/manifests/m/Microstockr/Desktopapp/3.3.34/Microstockr.Desktopapp.installer.yaml
new file mode 100644
index 000000000000..b5523c1f342d
--- /dev/null
+++ b/manifests/m/Microstockr/Desktopapp/3.3.34/Microstockr.Desktopapp.installer.yaml
@@ -0,0 +1,23 @@
+# 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: Microstockr.Desktopapp
+PackageVersion: 3.3.34
+InstallerLocale: en-US
+Platform:
+- Windows.Desktop
+MinimumOSVersion: 10.0.0.0
+InstallerType: exe
+Scope: user
+InstallModes:
+- silent
+InstallerSwitches:
+ Silent: --silent
+ SilentWithProgress: --silent
+UpgradeBehavior: install
+Installers:
+- Architecture: x64
+ InstallerUrl: https://microstockr.com/downloads/MicrostockrSetup.exe
+ InstallerSha256: 49366ACED29BCBBB3EC73D166455827F4E384338585E63D324F76B4D1D6BD53B
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/m/Microstockr/Desktopapp/3.3.34/Microstockr.Desktopapp.locale.en-US.yaml b/manifests/m/Microstockr/Desktopapp/3.3.34/Microstockr.Desktopapp.locale.en-US.yaml
new file mode 100644
index 000000000000..88df537eef99
--- /dev/null
+++ b/manifests/m/Microstockr/Desktopapp/3.3.34/Microstockr.Desktopapp.locale.en-US.yaml
@@ -0,0 +1,21 @@
+# 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: Microstockr.Desktopapp
+PackageVersion: 3.3.34
+PackageLocale: en-US
+Publisher: Microstockr
+PublisherUrl: https://microstockr.com
+PublisherSupportUrl: https://microstockr.com/faq
+PrivacyUrl: https://microstockr.com/privacy-policy
+Author: Microstockr
+PackageName: Microstockr
+PackageUrl: https://microstockr.com
+License: Proprietary
+LicenseUrl: https://microstockr.com/terms-conditions
+Copyright: Copyright © 2021 Microstockr
+CopyrightUrl: https://microstockr.com/terms-conditions
+ShortDescription: Microstock photography made easy
+Moniker: microstockr
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/m/Microstockr/Desktopapp/3.3.34/Microstockr.Desktopapp.yaml b/manifests/m/Microstockr/Desktopapp/3.3.34/Microstockr.Desktopapp.yaml
new file mode 100644
index 000000000000..25bb55cb670a
--- /dev/null
+++ b/manifests/m/Microstockr/Desktopapp/3.3.34/Microstockr.Desktopapp.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: Microstockr.Desktopapp
+PackageVersion: 3.3.34
+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/MoganLab/Mogan/2026.2.3/MoganLab.Mogan.installer.yaml b/manifests/m/MoganLab/Mogan/2026.2.3/MoganLab.Mogan.installer.yaml
new file mode 100644
index 000000000000..32c395c00592
--- /dev/null
+++ b/manifests/m/MoganLab/Mogan/2026.2.3/MoganLab.Mogan.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: MoganLab.Mogan
+PackageVersion: 2026.2.3
+InstallerType: nullsoft
+Scope: machine
+UpgradeBehavior: install
+FileExtensions:
+- tm
+- tp
+- ts
+ProductCode: MoganResearch
+ReleaseDate: 2026-04-30
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/MoganLab/mogan/releases/download/v2026.2.3/MoganSTEM-v2026.2.3-64bit-installer.exe
+ InstallerSha256: 997FAF522260D832F0C4CA40B5AD26AC13BFE164C6BB9318D02AC224A9675EAE
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/m/MoganLab/Mogan/2026.2.3/MoganLab.Mogan.locale.en-US.yaml b/manifests/m/MoganLab/Mogan/2026.2.3/MoganLab.Mogan.locale.en-US.yaml
new file mode 100644
index 000000000000..9d34a8fb3439
--- /dev/null
+++ b/manifests/m/MoganLab/Mogan/2026.2.3/MoganLab.Mogan.locale.en-US.yaml
@@ -0,0 +1,135 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: MoganLab.Mogan
+PackageVersion: 2026.2.3
+PackageLocale: en-US
+Publisher: XmacsLabs
+PublisherUrl: https://github.com/MoganLab
+PublisherSupportUrl: https://github.com/MoganLab/mogan/issues
+Author: Darcy Shen
+PackageName: Mogan Research
+PackageUrl: https://mogan.app/
+License: GPL-3.0
+LicenseUrl: https://github.com/MoganLab/mogan/blob/branch-1.2/LICENSE
+Copyright: © 2020-2026 by Xmacs Labs
+CopyrightUrl: https://github.com/MoganLab/mogan/blob/branch-1.2/COPYING
+ShortDescription: A structured editor based on GNU TeXmacs
+Description: |-
+ Mogan Editor is a structure editor delivered by the Xmacs Labs.
+ Mogan Editor is a libre software forked from GNU TeXmacs.
+Tags:
+- article
+- docs
+- document
+- editing
+- editor
+- latex
+- tex
+- texmacs
+- writing
+ReleaseNotes: |-
+ What's Changed
+ - [221_3] 软件首次启动时全屏 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3142
+ - [222_69] 修改引导教程第三步的完成判定条件 by @wumoin in https://github.com/MoganLab/mogan/pull/3147
+ - [222_68] 教程卡片接入通用 dpi 工具类 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3146
+ - [209_20] 增加 Fish(Itasca)代码块及高亮支持 by @JerryMain521 in https://github.com/MoganLab/mogan/pull/3018
+ - [221_3] 再次实现软件启动时全屏 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3151
+ - [216_11] 商业版标签页命名 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3154
+ - [216_12] 模版中心的 pdf,png 增加 cache,修正 tmu 文件缓存位置 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3155
+ - [216_15] 修复启动页标签点击时取消选中的问题和拖拽普通页无法编辑问题 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3159
+ - [216_14] 启动页通用键盘桥接 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3158
+ - [216_10] template 页面阅览优化 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3150
+ - [216_16] 启动页 Recent 与“文件->最近使用”对齐并支持实时刷新 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3160
+ - [201_25] 有序列表添加括号和半括号 by @jackmath5261-bit in https://github.com/MoganLab/mogan/pull/3153
+ - [222_68] 首次启动教程第三步魔法粘贴修复 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3161
+ - [216_13] 模板分类 JSON 缓存 (categories.json) 和 缩略图显示 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3163
+ - [212_6] 修复 pdf 导出功能在遇到不可见字符后出现的问题 by @da-liii in https://github.com/MoganLab/mogan/pull/3156
+ - [209_20] 添加 FISH 语言语法高亮 by @wumoin in https://github.com/MoganLab/mogan/pull/3148
+ - [203_29] 修复 MathML 文字上下标导入错误 by @wumoin in https://github.com/MoganLab/mogan/pull/3149
+ - [216_17] 删去设置里的导言区板块 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3166
+ - [216_18] 设置页数学板块图标更换 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3167
+ - [216_19] 样式卡片响应式布局 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3170
+ - [222_68] 删去登录引导步骤 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3165
+ - [201_46] 强制用户登录 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3168
+ - [222_68] 错误的 OCR 快捷键修改 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3169
+ - [222_68] OCR 快捷键触发修复 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3171
+ - [201_104] 修复数学模式下连续输入字母不为正体的问题 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3172
+ - [216_20] 模板中心改为进入页面后马上刷新 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3174
+ - [216_21] 修复存在本地缓存时不会重新下载模版的问题 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3175
+ - [202_14] 合并 updatenotificationbar 和 guestnotificationbar by @jackmath5261-bit in https://github.com/MoganLab/mogan/pull/3162
+ - [200_53] 支持 fedora by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3177
+ - [200_53] 更新 fedora-CI by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3179
+ - [201_46] 添加“开启自动备份”勾选框 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3180
+ - Revert "[202_14] 合并 updatenotificationbar 和 guestnotificationbar (#3… by @GatsbyUSTC in https://github.com/MoganLab/mogan/pull/3185
+ - [201_46] 引导弹窗改为异步启动 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3186
+ - [202 114] 调整 membership 提醒窗口与按钮,迁出 update/guest 通知项 by @jackmath5261-bit in https://github.com/MoganLab/mogan/pull/3183
+ - [216_22] PDF 阅览功能优化 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3181
+ - [201_46] 为主窗口添加遮罩并固定登录窗口位置 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3187
+ - [201_46] 完全强制登录 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3188
+ - [213_27] README 添加 UTM 链接 by @JackYansongLi in https://github.com/MoganLab/mogan/pull/3192
+ - [200_33] login 按钮未登录提示,增加会员升级按钮 by @GatsbyUSTC in https://github.com/MoganLab/mogan/pull/3184
+ - [222_70] 在用户首选项窗口中添加自动备份的选项 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3195
+ - [201_46] 登录弹窗允许离线模式 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3193
+ - [216_23] 优化模版下载 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3189
+ - [216_24] 修复暗色模式下启动页勾选框不可见 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3157
+ - [200_53] fedora-cd by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3196
+ - [216_25] 模版板块效果优化 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3200
+ - [222_71] 调整快捷键编辑器在黑夜模式下的样式 by @wumoin in https://github.com/MoganLab/mogan/pull/3199
+ - [200_33] 增加版本更新小红点 by @GatsbyUSTC in https://github.com/MoganLab/mogan/pull/3202
+ - [216_26] 新增从旧版 .scm 存储向新版 .json 存储的兼容迁移层 by @wumoin in https://github.com/MoganLab/mogan/pull/3201
+ - [200_53] fedora-cd 修复 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3197
+ - [216_27] 模版中心样式调整 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3206
+ - [222_72] 隐藏 Beamer Blackboard 选项 by @wumoin in https://github.com/MoganLab/mogan/pull/3208
+ - [202_114] 调整顶部通知条黑夜模式下的边界 by @jackmath5261-bit in https://github.com/MoganLab/mogan/pull/3209
+ - [216_28] 优化启动页的设置页顶部的按钮 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3210
+ - [216_30] File 页面简化为单一新建空白文档入口 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3212
+ - [200_46] 打包脚本更新,by goldfish 17.11.46 by @yinyuscloor in https://github.com/MoganLab/mogan/pull/3214
+ - [216_31] 启动页代码优化与 Scheme 字符串转义统一 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3213
+ - [216_29] 模版页面格式优化 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3211
+ - [200_54] 修复 gnome 上输入法定位问题 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3217
+ - [200_53] 优化 linux 打包-针对 gnome by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3215
+ - [216_32] 最近文档优化 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3219
+ - [200_46] 打包脚本加上苹果开发者处理 by @yinyuscloor in https://github.com/MoganLab/mogan/pull/3216
+ - [200_21] 升级到 Goldfish Scheme v17.11.55 by @wumoin in https://github.com/MoganLab/mogan/pull/3220
+ - [216_33] Recent 列表 tooltip 闪烁修复与 Windows 重复记录去重 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3221
+ - [200_55] 增加 STEM 初始化文件配置项 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3224
+ - [222_68] 更换 GIF (#16) by @GatsbyUSTC in https://github.com/MoganLab/mogan/pull/3226
+ - [221_4] 添加分享按钮 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3227
+ - [222_73] 修复 macOS x64 平台 ui 异常的问题 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3223
+ - [216_34] 更新 LLM 插件与 OCR 功能的中文翻译 by @GatsbyUSTC in https://github.com/MoganLab/mogan/pull/3225
+ - [200_33] 若用户没有邮箱,则不展示 by @yinyuscloor in https://github.com/MoganLab/mogan/pull/3228
+ - [203_31] 新建文档默认不分页 by @jackmath5261-bit in https://github.com/MoganLab/mogan/pull/3230
+ - [200_46] cd_on_macos_arm64 工作流使用该打包脚本 by @yinyuscloor in https://github.com/MoganLab/mogan/pull/3233
+ - [222_74] 修复加粗和斜体按钮快捷键显示错误 by @jackmath5261-bit in https://github.com/MoganLab/mogan/pull/3232
+ - [203_29] 新增快捷键 Ctrl/Command Shift L 用于复制到 LaTeX by @jackmath5261-bit in https://github.com/MoganLab/mogan/pull/3229
+ - [216_35] 首页默认模板添加 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3222
+ - [221_5] 修复首次复制经常失效的问题 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3236
+ - [216_1] 修复 216_1 引入的初始化延后导致的 section tag 问题 by @da-liii in https://github.com/MoganLab/mogan/pull/3239
+ - [222_74] 优化标签栏比例和样式 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3237
+ - [222_75] 针对 macos 的标签栏进行优化 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3241
+ - [204_1] 半角符号压缩修复 by @jackmath5261-bit in https://github.com/MoganLab/mogan/pull/3243
+ - [222_75] 针对 windows/linux 的标签栏优化 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3244
+ - [200_56] 引导教程根据 is_community 自动开关 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3245
+ - [221_6] 同步删去启动页设置页面的 default 主题选项 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3246
+ - [200_33] 增加自动备份功能 by @GatsbyUSTC in https://github.com/MoganLab/mogan/pull/3240
+ - [203_32] 修复 LaTeX 粘贴时 \setlength 解析导致多余 } 的问题 by @yinyuscloor in https://github.com/MoganLab/mogan/pull/3238
+ - [200_57] 修复 macOS 安装包重复二进制的问题 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3247
+ - [222_75] 标签栏 vip 按钮样式调整 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3248
+ - [221_7] 修复右键菜单 “复制到” 的 crash 问题 by @MoonL79 in https://github.com/MoganLab/mogan/pull/3249
+ - [222_76] 修改 script-status 样式 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3251
+ - [222_76] 加粗和斜体的 toggle 操作逻辑优化 by @da-liii in https://github.com/MoganLab/mogan/pull/3250
+ - [222_76] generic-prompt/input-color 修改 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3252
+ - [222_77] macos 系统按钮位置跳动问题修复 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3253
+ - [222_78] Revert 工具栏位置调整记忆 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3254
+ - [200_33] 保存时也触发备份 by @GatsbyUSTC in https://github.com/MoganLab/mogan/pull/3257
+ - [200_58] 自动备份中文文件名支持 by @GatsbyUSTC in https://github.com/MoganLab/mogan/pull/3258
+ - [200_59] 修复 backup 按钮默认项为 on by @GatsbyUSTC in https://github.com/MoganLab/mogan/pull/3259
+ - [222_79] 简化 paragraph/subparagraph 标题样式机制 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3262
+ - [216_36] 删去启动页设置相关代码 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3261
+ - [216_37] 启动页背景颜色调整 by @Yuki-Nagori in https://github.com/MoganLab/mogan/pull/3264
+ - [200_60] 修复自动备份时图片错误的问题 by @GatsbyUSTC in https://github.com/MoganLab/mogan/pull/3265
+ Full Changelog: https://github.com/MoganLab/mogan/compare/v2026.2.2...v2026.2.3
+ReleaseNotesUrl: https://github.com/MoganLab/mogan/releases/tag/v2026.2.3
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/m/MoganLab/Mogan/2026.2.3/MoganLab.Mogan.locale.zh-CN.yaml b/manifests/m/MoganLab/Mogan/2026.2.3/MoganLab.Mogan.locale.zh-CN.yaml
new file mode 100644
index 000000000000..e1edcebb2ac7
--- /dev/null
+++ b/manifests/m/MoganLab/Mogan/2026.2.3/MoganLab.Mogan.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: MoganLab.Mogan
+PackageVersion: 2026.2.3
+PackageLocale: zh-CN
+Publisher: XmacsLabs
+PublisherUrl: https://gitee.com/MoganLab
+Author: 沈浪熊猫儿
+PackageName: Mogan Research
+PackageUrl: https://mogan.app/
+License: GPL-3.0
+LicenseUrl: https://gitee.com/MoganLab/mogan/blob/branch-1.2/LICENSE
+Copyright: © 2020-2026 by Xmacs Labs
+CopyrightUrl: https://gitee.com/MoganLab/mogan/blob/branch-1.2/COPYING
+ShortDescription: 基于 GNU TeXmacs 的结构化编辑器
+Description: |-
+ 墨干编辑器是墨者实验室旗下的结构化编辑器。
+ 墨干编辑器基于 GNU TeXmacs 研发定制的自由软件。
+Tags:
+- latex
+- tex
+- texmacs
+- 写作
+- 文档
+- 文稿
+- 文章
+- 编辑
+- 编辑器
+- 墨干编辑器
+ReleaseNotesUrl: https://github.com/MoganLab/mogan/releases/tag/v2026.2.3
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/m/MoganLab/Mogan/2026.2.3/MoganLab.Mogan.yaml b/manifests/m/MoganLab/Mogan/2026.2.3/MoganLab.Mogan.yaml
new file mode 100644
index 000000000000..51e1de55c0fd
--- /dev/null
+++ b/manifests/m/MoganLab/Mogan/2026.2.3/MoganLab.Mogan.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: MoganLab.Mogan
+PackageVersion: 2026.2.3
+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/es-ES/151.0/Mozilla.Firefox.DeveloperEdition.es-ES.installer.yaml b/manifests/m/Mozilla/Firefox/DeveloperEdition/es-ES/151.0/Mozilla.Firefox.DeveloperEdition.es-ES.installer.yaml
index 1859b682d1f3..c552cf9d6b4b 100644
--- a/manifests/m/Mozilla/Firefox/DeveloperEdition/es-ES/151.0/Mozilla.Firefox.DeveloperEdition.es-ES.installer.yaml
+++ b/manifests/m/Mozilla/Firefox/DeveloperEdition/es-ES/151.0/Mozilla.Firefox.DeveloperEdition.es-ES.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/es-ES/Firefox%20Setup%20151.0b5.exe
- InstallerSha256: 35167C26F966D063C9DAC23569A55D24C0A13CC0DC1CD33B66AEB5D8F332E3B2
+ InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b6/win32/es-ES/Firefox%20Setup%20151.0b6.exe
+ InstallerSha256: 15D259E7CA39B74FEFF3EFD2D9A2BAF35D2A6687FEB58F17149AEFD93AF6867B
- Architecture: x64
- InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b5/win64/es-ES/Firefox%20Setup%20151.0b5.exe
- InstallerSha256: ACAD4E76406FF5B6109FAC4687B721F8656404DCEB0E08ADE92BD8F856F798AE
+ InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b6/win64/es-ES/Firefox%20Setup%20151.0b6.exe
+ InstallerSha256: 80960087194F6F5D50C6FFAF8DA35B6C2DF37E8FC3F8B2A41BAC92926BE87725
- Architecture: arm64
- InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b5/win64-aarch64/es-ES/Firefox%20Setup%20151.0b5.exe
- InstallerSha256: 01F54E44CE49C6317F43DD59F5E73E8E5282FE5FC4EF16E4C885619EC1091F97
+ InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b6/win64-aarch64/es-ES/Firefox%20Setup%20151.0b6.exe
+ InstallerSha256: 22E70BCE2001C07899D280258BADF9889259AF96FC77EC41B79E63A92A1DCD7D
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/NoVirusThanks/OSArmor/Business/2.0.6.0/NoVirusThanks.OSArmor.Business.installer.yaml b/manifests/n/NoVirusThanks/OSArmor/Business/2.0.6.0/NoVirusThanks.OSArmor.Business.installer.yaml
new file mode 100644
index 000000000000..156fa8bc1f0b
--- /dev/null
+++ b/manifests/n/NoVirusThanks/OSArmor/Business/2.0.6.0/NoVirusThanks.OSArmor.Business.installer.yaml
@@ -0,0 +1,25 @@
+# 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: NoVirusThanks.OSArmor.Business
+PackageVersion: 2.0.6.0
+InstallerLocale: en-US
+InstallerType: inno
+Scope: machine
+InstallModes:
+- interactive
+- silent
+- silentWithProgress
+UpgradeBehavior: install
+AppsAndFeaturesEntries:
+- ProductCode: NoVirusThanks OSArmor_is1
+ElevationRequirement: elevatesSelf
+InstallationMetadata:
+ DefaultInstallLocation: '%ProgramFiles%\NoVirusThanks\OSArmorDevSvc'
+Installers:
+- Architecture: x86
+ InstallerUrl: https://downloads.osarmor.com/latest/osarmor-business/setup
+ InstallerSha256: 8044AA7D5F7FEC22E8B2C6892CB9065254E1687A4BE56C988DE075960E0BA08B
+ ProductCode: NoVirusThanks OSArmor_is1
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/n/NoVirusThanks/OSArmor/Business/2.0.6.0/NoVirusThanks.OSArmor.Business.locale.en-US.yaml b/manifests/n/NoVirusThanks/OSArmor/Business/2.0.6.0/NoVirusThanks.OSArmor.Business.locale.en-US.yaml
new file mode 100644
index 000000000000..16edce8a5ca5
--- /dev/null
+++ b/manifests/n/NoVirusThanks/OSArmor/Business/2.0.6.0/NoVirusThanks.OSArmor.Business.locale.en-US.yaml
@@ -0,0 +1,30 @@
+# 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: NoVirusThanks.OSArmor.Business
+PackageVersion: 2.0.6.0
+PackageLocale: en-US
+Publisher: NoVirusThanks Company Srl
+PublisherUrl: https://www.novirusthanks.com/company/
+PublisherSupportUrl: https://www.wilderssecurity.com/threads/novirusthanks-osarmor-an-additional-layer-of-defense.398859/page-99999
+PrivacyUrl: https://www.osarmor.com/terms/#tab2:~:text=Application
+PackageName: NoVirusThanks OSArmor (BUSINESS)
+PackageUrl: https://www.osarmor.com/download/
+License: Proprietary (ToS)
+LicenseUrl: https://www.osarmor.com/terms/
+Copyright: (c) 2020-2025 NoVirusThanks™ Company Srl - All rights reserved
+CopyrightUrl: https://www.osarmor.com/download/#:~:text=%C2%A9
+ShortDescription: Prevent Malware & Ransomware
+Description: >
+ OSArmor is a Windows OS application that monitors and blocks suspicious processes behaviors to prevent infections by malware, ransomware, and other threats. This tool analyzes parent processes and prevents, for example, MS Word from running cmd.exe or powershell.exe. It prevents ransomware from deleting shadow copies of files via vssadmin.exe, blocks processes with double file extensions (i.e invoice.pdf.exe), blocks USB-spreading malware, and much more. It is lightweight, requires zero user input and protects your system while running in the background. In combination with OSArmor you can also use SysHardener to harden even more Windows OS settings.
+Agreements:
+- AgreementLabel: Terms & Privacy Policy
+ AgreementUrl: https://www.osarmor.com/terms/#tab2:~:text=Application
+PurchaseUrl: https://www.osarmor.com/pricing/
+Documentations:
+- DocumentLabel: FAQs
+ DocumentUrl: https://www.osarmor.com/faqs/
+- DocumentLabel: Video Tutorials
+ DocumentUrl: https://www.osarmor.com/video-tutorials/
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/n/NoVirusThanks/OSArmor/Business/2.0.6.0/NoVirusThanks.OSArmor.Business.yaml b/manifests/n/NoVirusThanks/OSArmor/Business/2.0.6.0/NoVirusThanks.OSArmor.Business.yaml
new file mode 100644
index 000000000000..7fa3e826fd34
--- /dev/null
+++ b/manifests/n/NoVirusThanks/OSArmor/Business/2.0.6.0/NoVirusThanks.OSArmor.Business.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: NoVirusThanks.OSArmor.Business
+PackageVersion: 2.0.6.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/n/NoVirusThanks/OSArmor/Enterprise/2.0.6.0/NoVirusThanks.OSArmor.Enterprise.installer.yaml b/manifests/n/NoVirusThanks/OSArmor/Enterprise/2.0.6.0/NoVirusThanks.OSArmor.Enterprise.installer.yaml
new file mode 100644
index 000000000000..53a3744b1480
--- /dev/null
+++ b/manifests/n/NoVirusThanks/OSArmor/Enterprise/2.0.6.0/NoVirusThanks.OSArmor.Enterprise.installer.yaml
@@ -0,0 +1,25 @@
+# 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: NoVirusThanks.OSArmor.Enterprise
+PackageVersion: 2.0.6.0
+InstallerLocale: en-US
+InstallerType: inno
+Scope: machine
+InstallModes:
+- interactive
+- silent
+- silentWithProgress
+UpgradeBehavior: install
+AppsAndFeaturesEntries:
+- ProductCode: NoVirusThanks OSArmor_is1
+ElevationRequirement: elevatesSelf
+InstallationMetadata:
+ DefaultInstallLocation: '%ProgramFiles%\NoVirusThanks\OSArmorDevSvc'
+Installers:
+- Architecture: x86
+ InstallerUrl: https://downloads.osarmor.com/latest/osarmor-enterprise/setup
+ InstallerSha256: 612E6BDFF297F531FA1E2BB8B2DC4DDF39D56AF65D7F9C3448D338A0A4DF8F72
+ ProductCode: NoVirusThanks OSArmor_is1
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/n/NoVirusThanks/OSArmor/Enterprise/2.0.6.0/NoVirusThanks.OSArmor.Enterprise.locale.en-US.yaml b/manifests/n/NoVirusThanks/OSArmor/Enterprise/2.0.6.0/NoVirusThanks.OSArmor.Enterprise.locale.en-US.yaml
new file mode 100644
index 000000000000..0ecf2fdbb546
--- /dev/null
+++ b/manifests/n/NoVirusThanks/OSArmor/Enterprise/2.0.6.0/NoVirusThanks.OSArmor.Enterprise.locale.en-US.yaml
@@ -0,0 +1,30 @@
+# 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: NoVirusThanks.OSArmor.Enterprise
+PackageVersion: 2.0.6.0
+PackageLocale: en-US
+Publisher: NoVirusThanks Company Srl
+PublisherUrl: https://www.novirusthanks.com/company/
+PublisherSupportUrl: https://www.wilderssecurity.com/threads/novirusthanks-osarmor-an-additional-layer-of-defense.398859/page-99999
+PrivacyUrl: https://www.osarmor.com/terms/#tab2:~:text=Application
+PackageName: NoVirusThanks OSArmor (ENTERPRISE)
+PackageUrl: https://www.osarmor.com/download/
+License: Proprietary (ToS)
+LicenseUrl: https://www.osarmor.com/terms/
+Copyright: (c) 2020-2025 NoVirusThanks™ Company Srl - All rights reserved
+CopyrightUrl: https://www.osarmor.com/download/#:~:text=%C2%A9
+ShortDescription: Prevent Malware & Ransomware
+Description: >
+ OSArmor is a Windows OS application that monitors and blocks suspicious processes behaviors to prevent infections by malware, ransomware, and other threats. This tool analyzes parent processes and prevents, for example, MS Word from running cmd.exe or powershell.exe. It prevents ransomware from deleting shadow copies of files via vssadmin.exe, blocks processes with double file extensions (i.e invoice.pdf.exe), blocks USB-spreading malware, and much more. It is lightweight, requires zero user input and protects your system while running in the background. In combination with OSArmor you can also use SysHardener to harden even more Windows OS settings.
+Agreements:
+- AgreementLabel: Terms & Privacy Policy
+ AgreementUrl: https://www.osarmor.com/terms/#tab2:~:text=Application
+PurchaseUrl: https://www.osarmor.com/pricing/
+Documentations:
+- DocumentLabel: FAQs
+ DocumentUrl: https://www.osarmor.com/faqs/
+- DocumentLabel: Video Tutorials
+ DocumentUrl: https://www.osarmor.com/video-tutorials/
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/n/NoVirusThanks/OSArmor/Enterprise/2.0.6.0/NoVirusThanks.OSArmor.Enterprise.yaml b/manifests/n/NoVirusThanks/OSArmor/Enterprise/2.0.6.0/NoVirusThanks.OSArmor.Enterprise.yaml
new file mode 100644
index 000000000000..8576c819acc2
--- /dev/null
+++ b/manifests/n/NoVirusThanks/OSArmor/Enterprise/2.0.6.0/NoVirusThanks.OSArmor.Enterprise.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: NoVirusThanks.OSArmor.Enterprise
+PackageVersion: 2.0.6.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/n/NovaBACKUPCorporation/NovaBACKUP/21.3.410.2/NovaBACKUPCorporation.NovaBACKUP.installer.yaml b/manifests/n/NovaBACKUPCorporation/NovaBACKUP/21.3.410.2/NovaBACKUPCorporation.NovaBACKUP.installer.yaml
new file mode 100644
index 000000000000..d481da711937
--- /dev/null
+++ b/manifests/n/NovaBACKUPCorporation/NovaBACKUP/21.3.410.2/NovaBACKUPCorporation.NovaBACKUP.installer.yaml
@@ -0,0 +1,15 @@
+# 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: NovaBACKUPCorporation.NovaBACKUP
+PackageVersion: 21.3.410.2
+InstallerType: exe
+InstallerSwitches:
+ Silent: /q /noreboot /ComponentArgs "Backup Client":"REBOOT=ReallySuppress SUPPRESS_ONLINE_ACTIVATION=yes"
+ SilentWithProgress: /q /noreboot /ComponentArgs "Backup Client":"REBOOT=ReallySuppress SUPPRESS_ONLINE_ACTIVATION=yes"
+Installers:
+- Architecture: x64
+ InstallerUrl: https://filestore.novabackup.com/Downloads/NovaBACKUP/Current/Setup-NB-Server-Agent.exe
+ InstallerSha256: E61782243205803A4B4CFFD5A1767B0EC499DF4E36F76E46B9DA8B2B33CCFCD1
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/n/NovaBACKUPCorporation/NovaBACKUP/21.3.410.2/NovaBACKUPCorporation.NovaBACKUP.locale.en-US.yaml b/manifests/n/NovaBACKUPCorporation/NovaBACKUP/21.3.410.2/NovaBACKUPCorporation.NovaBACKUP.locale.en-US.yaml
new file mode 100644
index 000000000000..92cbd7aa218c
--- /dev/null
+++ b/manifests/n/NovaBACKUPCorporation/NovaBACKUP/21.3.410.2/NovaBACKUPCorporation.NovaBACKUP.locale.en-US.yaml
@@ -0,0 +1,13 @@
+# 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: NovaBACKUPCorporation.NovaBACKUP
+PackageVersion: 21.3.410.2
+PackageLocale: en-US
+Publisher: NovaBACKUP Corporation
+PackageName: NovaBACKUP
+License: Proprietary
+Copyright: Copyright © 1987-2025 NovaStor Corporation. All rights reserved.
+ShortDescription: NovaBACKUP
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/n/NovaBACKUPCorporation/NovaBACKUP/21.3.410.2/NovaBACKUPCorporation.NovaBACKUP.yaml b/manifests/n/NovaBACKUPCorporation/NovaBACKUP/21.3.410.2/NovaBACKUPCorporation.NovaBACKUP.yaml
new file mode 100644
index 000000000000..6602f8953dc8
--- /dev/null
+++ b/manifests/n/NovaBACKUPCorporation/NovaBACKUP/21.3.410.2/NovaBACKUPCorporation.NovaBACKUP.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: NovaBACKUPCorporation.NovaBACKUP
+PackageVersion: 21.3.410.2
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/n/nelsonduarte/PDFApps/1.13.6/nelsonduarte.PDFApps.installer.yaml b/manifests/n/nelsonduarte/PDFApps/1.13.6/nelsonduarte.PDFApps.installer.yaml
new file mode 100644
index 000000000000..e2e9c4898c18
--- /dev/null
+++ b/manifests/n/nelsonduarte/PDFApps/1.13.6/nelsonduarte.PDFApps.installer.yaml
@@ -0,0 +1,16 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: nelsonduarte.PDFApps
+PackageVersion: 1.13.6
+InstallerType: portable
+Scope: user
+Commands:
+- pdfapps
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/nelsonduarte/PDFApps/releases/download/v1.13.6/PDFAppsSetup.exe
+ InstallerSha256: 4726C105C6603351D64765B106465F449A4D90DA8C45C211641C9B428C115ABC
+ManifestType: installer
+ManifestVersion: 1.12.0
+ReleaseDate: 2026-05-05
diff --git a/manifests/n/nelsonduarte/PDFApps/1.13.6/nelsonduarte.PDFApps.locale.en-US.yaml b/manifests/n/nelsonduarte/PDFApps/1.13.6/nelsonduarte.PDFApps.locale.en-US.yaml
new file mode 100644
index 000000000000..2894f8871a43
--- /dev/null
+++ b/manifests/n/nelsonduarte/PDFApps/1.13.6/nelsonduarte.PDFApps.locale.en-US.yaml
@@ -0,0 +1,47 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: nelsonduarte.PDFApps
+PackageVersion: 1.13.6
+PackageLocale: en-US
+Publisher: Nelson Duarte
+PublisherUrl: https://github.com/nelsonduarte
+PublisherSupportUrl: https://github.com/nelsonduarte/PDFApps/issues
+Author: Nelson Duarte
+PackageName: PDFApps
+PackageUrl: https://nelsonduarte.github.io/PDFApps/
+License: MIT
+LicenseUrl: https://github.com/nelsonduarte/PDFApps/blob/main/LICENSE
+Copyright: Copyright (c) Nelson Duarte
+ShortDescription: Fast, offline, subscription-free PDF editor
+Description: |-
+ PDFApps is an all-in-one PDF editor with 13 built-in tools: split, merge, rotate,
+ extract, reorder, compress, encrypt, watermark, OCR, convert (PNG/JPG/DOCX/TXT),
+ visual editor (redact, text, images, signatures, highlights, notes), import
+ (TXT/images/Markdown), and metadata viewer.
+
+ Features include continuous-scroll viewer, presentation mode (F5), fullscreen
+ (F11), tabbed viewing, dark/light themes, drag and drop, multi-select PDF open,
+ and 8-language interface (EN, PT, ES, FR, DE, ZH, IT, NL).
+
+ 100% offline. No subscriptions, no cloud uploads, no account required.
+Moniker: pdfapps
+Tags:
+- pdf
+- pdf-editor
+- pdf-viewer
+- pdf-tools
+- offline
+- open-source
+- ocr
+- split
+- merge
+- compress
+- encrypt
+- watermark
+ReleaseNotesUrl: https://github.com/nelsonduarte/PDFApps/releases/tag/v1.13.6
+Documentations:
+- DocumentLabel: Wiki
+ DocumentUrl: https://github.com/nelsonduarte/PDFApps/wiki
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/n/nelsonduarte/PDFApps/1.13.6/nelsonduarte.PDFApps.yaml b/manifests/n/nelsonduarte/PDFApps/1.13.6/nelsonduarte.PDFApps.yaml
new file mode 100644
index 000000000000..853811d8d79c
--- /dev/null
+++ b/manifests/n/nelsonduarte/PDFApps/1.13.6/nelsonduarte.PDFApps.yaml
@@ -0,0 +1,8 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+
+PackageIdentifier: nelsonduarte.PDFApps
+PackageVersion: 1.13.6
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/n/nelsonduarte/PDFApps/1.13.7/nelsonduarte.PDFApps.installer.yaml b/manifests/n/nelsonduarte/PDFApps/1.13.7/nelsonduarte.PDFApps.installer.yaml
new file mode 100644
index 000000000000..50b954ac1dd1
--- /dev/null
+++ b/manifests/n/nelsonduarte/PDFApps/1.13.7/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.7
+InstallerType: portable
+Scope: user
+Commands:
+- pdfapps
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/nelsonduarte/PDFApps/releases/download/v1.13.7/PDFAppsSetup.exe
+ InstallerSha256: B3516D2FD5CD8709015D70BBA461B975885BC6312C16138FD4D2DF3A1A00D923
+ManifestType: installer
+ManifestVersion: 1.12.0
+ReleaseDate: 2026-05-05
diff --git a/manifests/n/nelsonduarte/PDFApps/1.13.7/nelsonduarte.PDFApps.locale.en-US.yaml b/manifests/n/nelsonduarte/PDFApps/1.13.7/nelsonduarte.PDFApps.locale.en-US.yaml
new file mode 100644
index 000000000000..9c111ecd9896
--- /dev/null
+++ b/manifests/n/nelsonduarte/PDFApps/1.13.7/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.7
+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.7
+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.7/nelsonduarte.PDFApps.yaml b/manifests/n/nelsonduarte/PDFApps/1.13.7/nelsonduarte.PDFApps.yaml
new file mode 100644
index 000000000000..1dc9782288d2
--- /dev/null
+++ b/manifests/n/nelsonduarte/PDFApps/1.13.7/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.7
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/o/OlexSysLtd/Olex2Installer/1.0.0.7/OlexSysLtd.Olex2Installer.installer.yaml b/manifests/o/OlexSysLtd/Olex2Installer/1.0.0.7/OlexSysLtd.Olex2Installer.installer.yaml
new file mode 100644
index 000000000000..bf8f29833762
--- /dev/null
+++ b/manifests/o/OlexSysLtd/Olex2Installer/1.0.0.7/OlexSysLtd.Olex2Installer.installer.yaml
@@ -0,0 +1,12 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: OlexSysLtd.Olex2Installer
+PackageVersion: 1.0.0.7
+InstallerType: exe
+Installers:
+- Architecture: x86
+ InstallerUrl: https://secure.olex2.org/olex2-distro/olex2-installer.exe
+ InstallerSha256: 0FBDB64F2BC263E7DCA9F815D0E8D3FB9A464B24B6BB1E84C8A55F2F576ED008
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/o/OlexSysLtd/Olex2Installer/1.0.0.7/OlexSysLtd.Olex2Installer.locale.en-US.yaml b/manifests/o/OlexSysLtd/Olex2Installer/1.0.0.7/OlexSysLtd.Olex2Installer.locale.en-US.yaml
new file mode 100644
index 000000000000..ce2ef51fe347
--- /dev/null
+++ b/manifests/o/OlexSysLtd/Olex2Installer/1.0.0.7/OlexSysLtd.Olex2Installer.locale.en-US.yaml
@@ -0,0 +1,13 @@
+# Created using wingetcreate 1.12.8.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: OlexSysLtd.Olex2Installer
+PackageVersion: 1.0.0.7
+PackageLocale: en-US
+Publisher: OlexSys Ltd
+PackageName: Olex2 Installer
+License: BSD
+Copyright: (c) OlexSys Ltd, 2009-2021. All rights reserved.
+ShortDescription: Olex2 Installer
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/o/OlexSysLtd/Olex2Installer/1.0.0.7/OlexSysLtd.Olex2Installer.yaml b/manifests/o/OlexSysLtd/Olex2Installer/1.0.0.7/OlexSysLtd.Olex2Installer.yaml
new file mode 100644
index 000000000000..163f7dd13548
--- /dev/null
+++ b/manifests/o/OlexSysLtd/Olex2Installer/1.0.0.7/OlexSysLtd.Olex2Installer.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: OlexSysLtd.Olex2Installer
+PackageVersion: 1.0.0.7
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/o/oxc-project/oxlint/1.63.0/oxc-project.oxlint.installer.yaml b/manifests/o/oxc-project/oxlint/1.63.0/oxc-project.oxlint.installer.yaml
new file mode 100644
index 000000000000..b450952217e4
--- /dev/null
+++ b/manifests/o/oxc-project/oxlint/1.63.0/oxc-project.oxlint.installer.yaml
@@ -0,0 +1,31 @@
+# Created by Anthelion using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: oxc-project.oxlint
+PackageVersion: 1.63.0
+InstallerType: zip
+NestedInstallerType: portable
+Commands:
+- oxlint
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x86
+ NestedInstallerFiles:
+ - RelativeFilePath: oxlint-i686-pc-windows-msvc.exe
+ PortableCommandAlias: oxlint
+ InstallerUrl: https://github.com/oxc-project/oxc/releases/download/apps_v1.63.0/oxlint-i686-pc-windows-msvc.zip
+ InstallerSha256: 2E8F4CED504CDC418B5A931372F1C5733C6A56971F5D656AEC6F1C9B21C7205C
+- Architecture: x64
+ NestedInstallerFiles:
+ - RelativeFilePath: oxlint-x86_64-pc-windows-msvc.exe
+ PortableCommandAlias: oxlint
+ InstallerUrl: https://github.com/oxc-project/oxc/releases/download/apps_v1.63.0/oxlint-x86_64-pc-windows-msvc.zip
+ InstallerSha256: D514B21945DEECB1ACE4B08CE9F851403F57519E1D5787DF8975FC21E79E1826
+- Architecture: arm64
+ NestedInstallerFiles:
+ - RelativeFilePath: oxlint-aarch64-pc-windows-msvc.exe
+ PortableCommandAlias: oxlint
+ InstallerUrl: https://github.com/oxc-project/oxc/releases/download/apps_v1.63.0/oxlint-aarch64-pc-windows-msvc.zip
+ InstallerSha256: 3D1E9BE29D70F7E3CDB2A1718EF6B3830C7581AE54032D2598FC09AB261A2532
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/o/oxc-project/oxlint/1.63.0/oxc-project.oxlint.locale.en-US.yaml b/manifests/o/oxc-project/oxlint/1.63.0/oxc-project.oxlint.locale.en-US.yaml
new file mode 100644
index 000000000000..ac784e0003f4
--- /dev/null
+++ b/manifests/o/oxc-project/oxlint/1.63.0/oxc-project.oxlint.locale.en-US.yaml
@@ -0,0 +1,133 @@
+# Created by Anthelion using komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: oxc-project.oxlint
+PackageVersion: 1.63.0
+PackageLocale: en-US
+Publisher: VoidZero Inc. & Contributors
+PublisherUrl: https://oxc.rs/
+PublisherSupportUrl: https://github.com/oxc-project/oxc/issues
+Author: VoidZero Inc. & Contributors
+PackageName: oxlint
+PackageUrl: https://oxc.rs/docs/guide/usage/linter.html
+License: MIT
+LicenseUrl: https://github.com/oxc-project/oxc/blob/HEAD/LICENSE
+Copyright: Copyright (c) 2024-present VoidZero Inc. & Contributors
+CopyrightUrl: https://github.com/oxc-project/oxc/blob/HEAD/LICENSE
+ShortDescription: oxlint is a blazing-fast JavaScript and TypeScript linter that is 50–100× faster than ESLint. It is designed to catch erroneous or useless code without requiring any configurations by default.
+Tags:
+- compiler
+- javascript
+- linter
+- minifier
+- parser
+- transpiler
+- typescript
+ReleaseNotes: |-
+ 🚀 Features
+ - 1884833 linter/plugins: Implement SourceCode.getDisableDirectives method (#21029) (Nicolas Le Cam)
+ - 00f9a9d linter/sort-keys: Support autofix with comments (#22061) (Amund Eggen Svandal)
+ - 5b9ea93 linter/eslint: Implement require-unicode-regexp rule (#22096) (Mikhail Baev)
+ - 1d40d60 linter: Implement SARIF formatter (#22067) (camchenry)
+ - c0982fe linter/eslint: Implement no-restricted-properties rule (#22080) (AJ Bienz)
+ - 5699d53 linter: Add help text to agent formatter (#22064) (camchenry)
+ - fe7194d oxlint: Add agent output mode (#21955) (Jovi De Croock)
+ - fb2f052 linter: Suggest moving shared branch code (#22022) (camc314)
+ - 5868335 linter/no-else-return: Improve nested if diagnostic spans (#22009) (camc314)
+ - 8b4829b linter: Split no-negated-condition rule to unicorn & eslint (#21998) (Sysix)
+ - fea301a linter: Split jest/prefer-to-be into separate vitest rule (#21977) (camchenry)
+ - 44aa0d6 linter: Split jest/prefer-strict-equal into separate vitest rule (#21976) (camchenry)
+ - 2262b27 linter: Split jest/prefer-spy-on into separate vitest rule (#21975) (camchenry)
+ - fef9143 linter: Split jest/prefer-mock-return-shorthand into separate vitest rule (#21974) (camchenry)
+ - 2bda504 linter: Split jest/prefer-mock-promise-shorthand into separate vitest rule (#21973) (camchenry)
+ - 6ef6c7d linter: Split jest/prefer-lowercase into separate vitest rule (#21972) (camchenry)
+ - f4d2498 linter: Split jest/prefer-hooks-on-top into separate vitest rule (#21971) (camchenry)
+ - fb8e366 linter: Split jest/prefer-hooks-in-order into separate vitest rule (#21970) (camchenry)
+ - adcd85c linter: Split jest/prefer-expect-resolves into separate vitest rule (#21969) (camchenry)
+ - 8ddc7ec linter: Split jest/prefer-equality-matcher into separate vitest rule (#21968) (camchenry)
+ - 46bb1f3 linter: Split jest/prefer-each into separate vitest rule (#21967) (camchenry)
+ - bdbff66 linter: Implement interactive-supports-focus (#21767) (mehm8128)
+ - 733b094 linter: Split prefer-to-have-been-called-times rule (#21898) (Said Atrahouch)
+ - 8804425 linter/eslint: Implement logical-assignment-operators rule (#21900) (Mikhail Baev)
+ - 296d147 linter: Split jest/prefer-comparison-matcher into separate vitest rule (#21929) (camchenry)
+ - 38146b6 linter: Split jest/prefer-called-with into separate vitest rule (#21927) (camchenry)
+ - 6f86175 linter/vue: Implement return-in-computed-property rule (#21909) (bab)
+ - dc2d0e4 linter: Split jest/no-unneeded-async-expect-function into separate vitest rule (#21878) (camchenry)
+ - a03fc37 linter: Split jest/no-test-return-statement into separate vitest rule (#21877) (camchenry)
+ - f11313e linter: Split jest/no-test-prefixes into separate vitest rule (#21876) (camchenry)
+ - 4380812 linter: Split prefer-to-have-length rule (#21893) (Said Atrahouch)
+ - 511bcc1 linter: Split jest require-hook rule (#21889) (Said Atrahouch)
+ - 64a8180 linter: Split jest/prefer-snapshot-hint into a Jest rule and a Vitest rule. (#21881) (connorshea)
+ - ae7924a linter/vue: Implement no-deprecated-model-definition rule (#21886) (bab)
+ - 0dfe8b3 linter: Split jest/require-to-throw-message into Jest and Vitest rules. (#21879) (connorshea)
+ - 51229ff linter: Split jest valid-describe-callback rule (#21882) (Said Atrahouch)
+ - 2d102fd linter: Split no-standalone-expect rule into jest and vitest (#21862) (Sysix)
+ - ee46a29 linter: Split no-restricted-matchers rule into jest and vitest (#21860) (Sysix)
+ - 1f29459 linter: Split no-restricted-jest-methods rule into jest and vitest (#21859) (Sysix)
+ - e7f8d55 linter: Remove eslint prefixes from plugin names in diagnostics (#21806) (Connor Shea)
+ - 89fff8b linter: Split valid-expect-in-promise/jest rule into jest and vitest rules (#21854) (Said Atrahouch)
+
+ 🐛 Bug Fixes
+ - 7c9bf88 linter/no-single-promise-in-promise-methods: Avoid unused array fix (#22116) (camc314)
+ - 0b48848 linter/prefer-array-some: Make find rewrite a suggestion (#22103) (camc314)
+ - d24027e linter/prefer-array-some: Preserve find comparison fixes (#22094) (camc314)
+ - af2d26c linter/astro: Handle js --- after frontmatter in .astro files (#22091) (Andrew Powell)
+ - 78d4ff0 linter/jsdoc/require-returns: Only look at the nearest jsdoc block (#22077) (camc314)
+ - fa88857 linter/no-map-spread: Use default codegen options for fix (#22074) (camc314)
+ - 2047a35 linter: Treat adjacent fixes as overlapping (#22071) (camc314)
+ - 75fc551 linter: Handle no-extra-boolean-cast edge cases (#22031) (camc314)
+ - e9d5284 linter/sort-keys: Don't autofix if comment could be misplaced (#22052) (Amund Eggen Svandal)
+ - d7230b0 linter/no-constant-condition: Handle generator yields (#22046) (camc314)
+ - e8dbc56 linter/array-type: Enable edge case tests (#22047) (camc314)
+ - d57b51f linter/no-constant-condition: Propagate config errors (#22045) (camc314)
+ - bdb6d95 linter/typescript: Remove duplicate rule tests (#22044) (camc314)
+ - 0beaffc linter: Print resolved extended config (#22040) (camc314)
+ - 192ad0e linter/react/only-export-components: Align rule with upstream cases (#22039) (camc314)
+ - cdf4c53 linter/only-export-components: Support tanstack router (#21937) (camc314)
+ - 893e18f linter: Stop gitignore lookup at repo boundary (#22033) (camc314)
+ - 7100712 linter/constructor-super: Clarify duplicate super diagnostics (#22035) (camc314)
+ - fce5b7c linter/constructor-super: Improve invalid super calls diagnostic (#22032) (camc314)
+ - b3de93c linter/rules-of-hooks: Clarify conditional diagnostics (#22030) (camc314)
+ - 4f9f629 linter/rules-of-hooks: Clarify loop diagnostics (#22029) (camc314)
+ - e6f0978 linter/rules-of-hooks: Clarify async component diagnostics (#22024) (camc314)
+ - e262f51 linter/rules-of-hooks: Improve diagnostic for hook inside class component (#22023) (camc314)
+ - 7b71b0d linter/no-restricted-imports: Report once per import declaration (#22021) (camc314)
+ - 3d5ae3d linter/vitest/require-mock-type-parameters: Handle chained typed mocks (#22019) (camc314)
+ - 959a2db linter/reporter/github: Omit empty file annotations (#22017) (camc314)
+ - 16003a1 linter/unicorn: Remove duplicate rule tests (#22018) (camc314)
+ - 86b7547 linter/no-unreachable: Suppress nested unreachable diagnostics (#22011) (camc314)
+ - 1d92ae8 linter/oxc: Remove duplicate rule tests (#22013) (camc314)
+ - f270246 linter/branches-sharing-code: Ignore empty statements (#22012) (camc314)
+ - f1c25dd linter: Stabilize debug diagnostic comparison (#22010) (camc314)
+ - b6bc421 linter: Skip linting astro scripts with non JS script types (#21954) (camc314)
+ - a77547d linter: Support plugin-qualified disable directives (#21999) (camc314)
+ - 079cfdd linter: Match disable directive rule names exactly, not by substring (#21906) (Christian Vuerings)
+ - 11a4e67 linter: Comptibles rules need to be disabled in jest and vitest at same time (#21982) (Said Atrahouch)
+ - ce62f16 linter: jsx-a11y/prefer-tag-over-role detect more roles (#21933) (bab)
+ - 024c390 linter/jest/vitest: Padding around after all blocks not working as expected (#21952) (kapobajza)
+ - 05a8f75 linter/jest/no-standalone-expect: False positive with expect in an ObjectProperty (#21948) (Said Atrahouch)
+ - 6a37c98 linter/no-unused-vars: Report unused re-exported imports (#21938) (camc314)
+ - 2d5fc16 linter: jsx-a11y/media-has-caption report only once for self-closing tags (#21934) (bab)
+ - 5adca29 linter: jsx-a11y/no-autofocus ignore false attribute values (#21918) (Sysix)
+ - 2e5c18e linter/max-nested-describe: Reset nested describe depth (#21891) (camc314)
+
+ ⚡ Performance
+ - a77f0f7 linter/require-returns: Avoid jsdoc tag vec allocation (#22081) (camc314)
+ - d9a1b32 linter/plugins: Avoid array lookups where possible in CFG visitor (#21940) (overlookmotel)
+ - fefefd8 linter/plugins: Replace addition with bitwise OR in CFG visitor (#21939) (overlookmotel)
+
+ 📚 Documentation
+ - cacbc4a linter: Fix jest settings docs. (#22127) (connorshea)
+ - a15c5bb linter: Note that the --format flag accepts an agent option. (#22126) (connorshea)
+ - d58f594 oxlint/lsp: Auto generate docs for LSP options (#22082) (Sysix)
+ - 9adc3b3 linter/no-misused-new: Clarify construct signatures behaviour (#22016) (camc314)
+ - 1caf5ad linter/plugins: Reformat comments (#21873) (overlookmotel)
+
+ 🛡️ Security
+ - 82dbbec deps: Update npm packages (major) (#21558) (renovate[bot])
+ReleaseNotesUrl: https://github.com/oxc-project/oxc/releases/tag/apps_v1.63.0
+Documentations:
+- DocumentLabel: Docs
+ DocumentUrl: https://oxc.rs/docs/guide/usage/linter.html
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/o/oxc-project/oxlint/1.63.0/oxc-project.oxlint.yaml b/manifests/o/oxc-project/oxlint/1.63.0/oxc-project.oxlint.yaml
new file mode 100644
index 000000000000..2b1933c3ce20
--- /dev/null
+++ b/manifests/o/oxc-project/oxlint/1.63.0/oxc-project.oxlint.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: oxc-project.oxlint
+PackageVersion: 1.63.0
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/p/Perplexity/Comet/145.2.7632.5936/Perplexity.Comet.installer.yaml b/manifests/p/Perplexity/Comet/147.0.7727.1860/Perplexity.Comet.installer.yaml
similarity index 86%
rename from manifests/p/Perplexity/Comet/145.2.7632.5936/Perplexity.Comet.installer.yaml
rename to manifests/p/Perplexity/Comet/147.0.7727.1860/Perplexity.Comet.installer.yaml
index d62163df5e62..385217f1b86a 100644
--- a/manifests/p/Perplexity/Comet/145.2.7632.5936/Perplexity.Comet.installer.yaml
+++ b/manifests/p/Perplexity/Comet/147.0.7727.1860/Perplexity.Comet.installer.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
PackageIdentifier: Perplexity.Comet
-PackageVersion: 145.2.7632.5936
+PackageVersion: 147.0.7727.1860
InstallerType: exe
Scope: machine
InstallModes:
@@ -33,6 +33,6 @@ ProductCode: Perplexity Comet
Installers:
- Architecture: x64
InstallerUrl: https://www.perplexity.ai/rest/browser/download?platform=win_x64&channel=stable
- InstallerSha256: 99CE4E8DEC49087F62AD3E157EA5345E03CD2B7E0FD29990DC312A8AB247D32B
+ InstallerSha256: 56A895BB34A78E9E713953E0009DEE1E3FD8B57B0637199EFE8CB6474A0B1D6A
ManifestType: installer
ManifestVersion: 1.12.0
diff --git a/manifests/p/Perplexity/Comet/145.2.7632.5936/Perplexity.Comet.locale.en-US.yaml b/manifests/p/Perplexity/Comet/147.0.7727.1860/Perplexity.Comet.locale.en-US.yaml
similarity index 96%
rename from manifests/p/Perplexity/Comet/145.2.7632.5936/Perplexity.Comet.locale.en-US.yaml
rename to manifests/p/Perplexity/Comet/147.0.7727.1860/Perplexity.Comet.locale.en-US.yaml
index d1be3531fb3a..3f759793c720 100644
--- a/manifests/p/Perplexity/Comet/145.2.7632.5936/Perplexity.Comet.locale.en-US.yaml
+++ b/manifests/p/Perplexity/Comet/147.0.7727.1860/Perplexity.Comet.locale.en-US.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
PackageIdentifier: Perplexity.Comet
-PackageVersion: 145.2.7632.5936
+PackageVersion: 147.0.7727.1860
PackageLocale: en-US
Publisher: The Comet Authors
Author: Perplexity AI, Inc.
diff --git a/manifests/p/Perplexity/Comet/145.2.7632.5936/Perplexity.Comet.locale.zh-CN.yaml b/manifests/p/Perplexity/Comet/147.0.7727.1860/Perplexity.Comet.locale.zh-CN.yaml
similarity index 95%
rename from manifests/p/Perplexity/Comet/145.2.7632.5936/Perplexity.Comet.locale.zh-CN.yaml
rename to manifests/p/Perplexity/Comet/147.0.7727.1860/Perplexity.Comet.locale.zh-CN.yaml
index 037543e93cdb..413ef4131027 100644
--- a/manifests/p/Perplexity/Comet/145.2.7632.5936/Perplexity.Comet.locale.zh-CN.yaml
+++ b/manifests/p/Perplexity/Comet/147.0.7727.1860/Perplexity.Comet.locale.zh-CN.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
PackageIdentifier: Perplexity.Comet
-PackageVersion: 145.2.7632.5936
+PackageVersion: 147.0.7727.1860
PackageLocale: zh-CN
License: 专有软件
ShortDescription: 个人 AI 助手
diff --git a/manifests/p/Perplexity/Comet/145.2.7632.5936/Perplexity.Comet.yaml b/manifests/p/Perplexity/Comet/147.0.7727.1860/Perplexity.Comet.yaml
similarity index 88%
rename from manifests/p/Perplexity/Comet/145.2.7632.5936/Perplexity.Comet.yaml
rename to manifests/p/Perplexity/Comet/147.0.7727.1860/Perplexity.Comet.yaml
index e1b00f49e585..a53950fe2ca5 100644
--- a/manifests/p/Perplexity/Comet/145.2.7632.5936/Perplexity.Comet.yaml
+++ b/manifests/p/Perplexity/Comet/147.0.7727.1860/Perplexity.Comet.yaml
@@ -2,7 +2,7 @@
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
PackageIdentifier: Perplexity.Comet
-PackageVersion: 145.2.7632.5936
+PackageVersion: 147.0.7727.1860
DefaultLocale: en-US
ManifestType: version
ManifestVersion: 1.12.0
diff --git a/manifests/p/Piriform/CCleaner/Slim/6.40.0.11562/Piriform.CCleaner.Slim.installer.yaml b/manifests/p/Piriform/CCleaner/Slim/6.40.0.11562/Piriform.CCleaner.Slim.installer.yaml
new file mode 100644
index 000000000000..99f75d7c37f9
--- /dev/null
+++ b/manifests/p/Piriform/CCleaner/Slim/6.40.0.11562/Piriform.CCleaner.Slim.installer.yaml
@@ -0,0 +1,29 @@
+# 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: Piriform.CCleaner.Slim
+PackageVersion: '6.40.0.11562'
+InstallerType: nullsoft
+Scope: machine
+InstallModes:
+- interactive
+- silent
+- silentWithProgress
+UpgradeBehavior: install
+Protocols:
+- cclaunch
+ProductCode: CCleaner
+ReleaseDate: 2025-03-23
+ElevationRequirement: elevatesSelf
+AppsAndFeaturesEntries:
+- Publisher: Piriform
+ ProductCode: CCleaner
+Installers:
+- Architecture: x86
+ InstallerUrl: https://bits.avcdn.net/productfamily_CCLEANER/insttype_SLIM/platform_WIN_PIR/installertype_ONLINE/build_RELEASE
+ InstallerSha256: 0A42725880BAEDBFA28FB343E360DDF09D518EC15EBD94FA0E1FB5AC595D1602
+- Architecture: x64
+ InstallerUrl: https://bits.avcdn.net/productfamily_CCLEANER/insttype_SLIM/platform_WIN_PIR/installertype_ONLINE/build_RELEASE
+ InstallerSha256: 0A42725880BAEDBFA28FB343E360DDF09D518EC15EBD94FA0E1FB5AC595D1602
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/p/Piriform/CCleaner/Slim/6.40.0.11562/Piriform.CCleaner.Slim.locale.en-US.yaml b/manifests/p/Piriform/CCleaner/Slim/6.40.0.11562/Piriform.CCleaner.Slim.locale.en-US.yaml
new file mode 100644
index 000000000000..d6e2ffb36fd1
--- /dev/null
+++ b/manifests/p/Piriform/CCleaner/Slim/6.40.0.11562/Piriform.CCleaner.Slim.locale.en-US.yaml
@@ -0,0 +1,56 @@
+# 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: Piriform.CCleaner.Slim
+PackageVersion: '6.40.0.11562'
+PackageLocale: en-US
+Publisher: Gen Digital Inc.
+PublisherUrl: https://www.ccleaner.com/
+PublisherSupportUrl: https://support.ccleaner.com/
+PrivacyUrl: https://www.ccleaner.com/legal/general-privacy-policy
+Author: Gen Digital Inc.
+PackageName: CCleaner
+PackageUrl: https://www.ccleaner.com/ccleaner/builds
+License: Freeware
+LicenseUrl: https://www.ccleaner.com/legal/end-user-license-agreement
+Copyright: Copyright © 2005-2025 Gen Digital Inc. All rights reserved.
+CopyrightUrl: https://www.ccleaner.com/about/terms-of-use
+ShortDescription: >
+ CCleaner for PC helps you clean up your Windows computer, optimize performance, and maintain your online privacy.
+Description: >
+ Inject instant speed into your machine by freezing resource-hogging apps and programs and by removing the unnecessary files taking up room on your hard drive. Clear out errors, broken settings, and update drivers to improve stability. Protect your privacy by securely erasing tracking cookies and history.
+Moniker: ccleaner-slim
+Tags:
+- accelerate
+- application
+- apps
+- clean
+- cleaner
+- cleanup
+- optimize
+- program
+- software
+- startup
+- uninstall
+ReleaseNotes: |-
+ Taking the hassle out of PC maintenance
+
+ - We've updated the engines and libraries of Software Updater and Driver
+ Updater for better performance and stability.
+ - We've improved the cleaning of Microsoft 365.
+ - We've added cache cleaning for the WebDAV application on Windows 10 and 11.
+
+ Fixing bugs and other improvements
+
+ - We fixed a networking issue that was affecting some customers' ability to
+ register their licenses.
+ - We resolved an issue that was causing Health Check to freeze for users
+ running Windows 7 x86.
+ - The counter of outdated drivers on the Driver Updater icon now displays the
+ correct number of drivers in all cases without having to perform another
+ scan.
+ - We fixed a Software Updater issue that was preventing some users from
+ updating Microsoft Defender.
+ReleaseNotesUrl: https://www.ccleaner.com/ccleaner/version-history
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/p/Piriform/CCleaner/Slim/6.40.0.11562/Piriform.CCleaner.Slim.locale.zh-CN.yaml b/manifests/p/Piriform/CCleaner/Slim/6.40.0.11562/Piriform.CCleaner.Slim.locale.zh-CN.yaml
new file mode 100644
index 000000000000..1f417e486cdb
--- /dev/null
+++ b/manifests/p/Piriform/CCleaner/Slim/6.40.0.11562/Piriform.CCleaner.Slim.locale.zh-CN.yaml
@@ -0,0 +1,26 @@
+# 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: Piriform.CCleaner.Slim
+PackageVersion: '6.40.0.11562'
+PackageLocale: zh-CN
+PublisherUrl: https://www.ccleaner.com/zh-cn
+PackageUrl: https://www.ccleaner.com/zh-cn/ccleaner
+License: 免费软件
+ShortDescription: CCleaner for PC 帮您清理 Windows 计算机,优化性能并维护网络隐私。
+Description: |-
+ 冻结占用资源的应用和程序,删除占用硬盘空间的多余文件,为您的计算机注入活力。清除错误、损坏的设
+ 置,并更新驱动程序以提高稳定性。通过安全擦除追踪 Cookie 和历史记录来保护您的隐私。
+Tags:
+- 优化
+- 加速
+- 卸载
+- 启动
+- 垃圾
+- 应用
+- 清理
+- 程序
+- 自启
+- 软件
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/p/Piriform/CCleaner/Slim/6.40.0.11562/Piriform.CCleaner.Slim.yaml b/manifests/p/Piriform/CCleaner/Slim/6.40.0.11562/Piriform.CCleaner.Slim.yaml
new file mode 100644
index 000000000000..f9190e8175a2
--- /dev/null
+++ b/manifests/p/Piriform/CCleaner/Slim/6.40.0.11562/Piriform.CCleaner.Slim.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: Piriform.CCleaner.Slim
+PackageVersion: '6.40.0.11562'
+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/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/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/s/sinelaw/fresh-editor/0.3.2/sinelaw.fresh-editor.installer.yaml b/manifests/s/sinelaw/fresh-editor/0.3.2/sinelaw.fresh-editor.installer.yaml
new file mode 100644
index 000000000000..36ea7c8b73e6
--- /dev/null
+++ b/manifests/s/sinelaw/fresh-editor/0.3.2/sinelaw.fresh-editor.installer.yaml
@@ -0,0 +1,17 @@
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+PackageIdentifier: sinelaw.fresh-editor
+PackageVersion: 0.3.2
+InstallerLocale: en-US
+InstallerType: zip
+Scope: user
+NestedInstallerType: portable
+UpgradeBehavior: uninstallPrevious
+NestedInstallerFiles:
+ - RelativeFilePath: fresh.exe
+ PortableCommandAlias: fresh
+Installers:
+ - Architecture: x64
+ InstallerUrl: https://github.com/sinelaw/fresh/releases/download/v0.3.2/fresh-editor-x86_64-pc-windows-msvc.zip
+ InstallerSha256: f72395c1232d68382ca3b39d6726dafc554243cddbc0c6eda1801cf93fc7b3b3
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/s/sinelaw/fresh-editor/0.3.2/sinelaw.fresh-editor.locale.en-US.yaml b/manifests/s/sinelaw/fresh-editor/0.3.2/sinelaw.fresh-editor.locale.en-US.yaml
new file mode 100644
index 000000000000..be770d447428
--- /dev/null
+++ b/manifests/s/sinelaw/fresh-editor/0.3.2/sinelaw.fresh-editor.locale.en-US.yaml
@@ -0,0 +1,26 @@
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+PackageIdentifier: sinelaw.fresh-editor
+PackageVersion: 0.3.2
+PackageLocale: en-US
+Publisher: sinelaw
+PublisherUrl: https://github.com/sinelaw
+PublisherSupportUrl: https://github.com/sinelaw/fresh/issues
+Author: Noam Lewis
+PackageName: fresh-editor
+PackageUrl: https://github.com/sinelaw/fresh
+License: GPL-2.0
+LicenseUrl: https://github.com/sinelaw/fresh/blob/main/LICENSE
+Copyright: Copyright (c) sinelaw
+ShortDescription: A modern terminal-based text editor with TypeScript plugin support
+Description: Fresh is a modern terminal-based text editor. It features LSP support, syntax highlighting, multi-cursor editing, TypeScript plugins, and an intuitive interface.
+Tags:
+ - editor
+ - terminal
+ - text-editor
+ - tui
+ - lsp
+ - syntax-highlighting
+ - plugins
+ReleaseNotesUrl: https://github.com/sinelaw/fresh/releases/tag/v0.3.2
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/s/sinelaw/fresh-editor/0.3.2/sinelaw.fresh-editor.yaml b/manifests/s/sinelaw/fresh-editor/0.3.2/sinelaw.fresh-editor.yaml
new file mode 100644
index 000000000000..98178ef7ed69
--- /dev/null
+++ b/manifests/s/sinelaw/fresh-editor/0.3.2/sinelaw.fresh-editor.yaml
@@ -0,0 +1,6 @@
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
+PackageIdentifier: sinelaw.fresh-editor
+PackageVersion: 0.3.2
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/s/sonicboom15/daimon/0.0.2/sonicboom15.daimon.installer.yaml b/manifests/s/sonicboom15/daimon/0.0.2/sonicboom15.daimon.installer.yaml
new file mode 100644
index 000000000000..c58bd667e453
--- /dev/null
+++ b/manifests/s/sonicboom15/daimon/0.0.2/sonicboom15.daimon.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: sonicboom15.daimon
+PackageVersion: 0.0.2
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: daimon.exe
+ PortableCommandAlias: daimon
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/sonicboom15/daimon/releases/download/v0.0.2/daimon_0.0.2_windows_amd64.zip
+ InstallerSha256: 6CC99E7BC9F64AE412C26EA87AE41B72F0153E67CB412B8982D460322105DE64
+ManifestType: installer
+ManifestVersion: 1.12.0
+ReleaseDate: 2026-05-05
diff --git a/manifests/s/sonicboom15/daimon/0.0.2/sonicboom15.daimon.locale.en-US.yaml b/manifests/s/sonicboom15/daimon/0.0.2/sonicboom15.daimon.locale.en-US.yaml
new file mode 100644
index 000000000000..b04dd0852221
--- /dev/null
+++ b/manifests/s/sonicboom15/daimon/0.0.2/sonicboom15.daimon.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: sonicboom15.daimon
+PackageVersion: 0.0.2
+PackageLocale: en-US
+Publisher: sonicboom15
+PublisherUrl: https://github.com/sonicboom15
+PublisherSupportUrl: https://github.com/sonicboom15/daimon/issues
+PackageName: daimon
+PackageUrl: https://github.com/sonicboom15/daimon
+License: Apache-2.0
+ShortDescription: The spirit that runs alongside your AI app. A pluggable sidecar runtime for LLMs, memory, and tools.
+ReleaseNotesUrl: https://github.com/sonicboom15/daimon/releases/tag/v0.0.2
+Documentations:
+- DocumentLabel: Wiki
+ DocumentUrl: https://github.com/sonicboom15/daimon/wiki
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/s/sonicboom15/daimon/0.0.2/sonicboom15.daimon.yaml b/manifests/s/sonicboom15/daimon/0.0.2/sonicboom15.daimon.yaml
new file mode 100644
index 000000000000..c9d843a5df95
--- /dev/null
+++ b/manifests/s/sonicboom15/daimon/0.0.2/sonicboom15.daimon.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: sonicboom15.daimon
+PackageVersion: 0.0.2
+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/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/Tixati/Tixati/Portable/3.42-1/Tixati.Tixati.Portable.installer.yaml b/manifests/t/Tixati/Tixati/Portable/3.42-1/Tixati.Tixati.Portable.installer.yaml
new file mode 100644
index 000000000000..1a3b3cf9361e
--- /dev/null
+++ b/manifests/t/Tixati/Tixati/Portable/3.42-1/Tixati.Tixati.Portable.installer.yaml
@@ -0,0 +1,26 @@
+# Created with komac v2.16.0
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
+
+PackageIdentifier: Tixati.Tixati.Portable
+PackageVersion: 3.42-1
+InstallerLocale: en-US
+InstallerType: zip
+NestedInstallerType: portable
+Protocols:
+- magnet
+FileExtensions:
+- torrent
+ReleaseDate: 2025-12-05
+Installers:
+- Architecture: x86
+ NestedInstallerFiles:
+ - RelativeFilePath: Tixati_portable\tixati_Windows32bit.exe
+ InstallerUrl: https://download.tixati.com/tixati-3.42-1.portable.zip
+ InstallerSha256: 5937206984DA48CA6BC2BD3EDA22D46BFE3445BA79BC5C6070F1C2D0BAE7972E
+- Architecture: x64
+ NestedInstallerFiles:
+ - RelativeFilePath: Tixati_portable\tixati_Windows64bit.exe
+ InstallerUrl: https://download.tixati.com/tixati-3.42-1.portable.zip
+ InstallerSha256: 5937206984DA48CA6BC2BD3EDA22D46BFE3445BA79BC5C6070F1C2D0BAE7972E
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Tixati/Tixati/Portable/3.42-1/Tixati.Tixati.Portable.locale.en-US.yaml b/manifests/t/Tixati/Tixati/Portable/3.42-1/Tixati.Tixati.Portable.locale.en-US.yaml
new file mode 100644
index 000000000000..e8899aa9091a
--- /dev/null
+++ b/manifests/t/Tixati/Tixati/Portable/3.42-1/Tixati.Tixati.Portable.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: Tixati.Tixati.Portable
+PackageVersion: 3.42-1
+PackageLocale: en-US
+Publisher: Tixati
+PublisherUrl: https://tixati.com/
+PublisherSupportUrl: https://support.tixati.com/
+PackageName: Tixati
+PackageUrl: https://www.tixati.com/
+License: Proprietary
+LicenseUrl: https://www.tixati.com/tixati_eula.txt
+Copyright: Copyright 2024 Tixati Software Inc.
+ShortDescription: Tixati is a proprietary Linux and Windows BitTorrent client written in C++.
+Description: >
+ Tixati is a New and Powerful P2P System, 100% Free, Simple and Easy to Use Bittorrent Client
+ Contains NO Spyware and NO Ads, and it has Windows and Linux Native Versions Available.
+Moniker: tixati
+Tags:
+- p2p-file-sharing
+- torrent
+- torrenting
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Tixati/Tixati/Portable/3.42-1/Tixati.Tixati.Portable.yaml b/manifests/t/Tixati/Tixati/Portable/3.42-1/Tixati.Tixati.Portable.yaml
new file mode 100644
index 000000000000..54546e22c9ce
--- /dev/null
+++ b/manifests/t/Tixati/Tixati/Portable/3.42-1/Tixati.Tixati.Portable.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: Tixati.Tixati.Portable
+PackageVersion: 3.42-1
+DefaultLocale: en-US
+ManifestType: version
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Tricerat/ScrewDriversClient/7.9.6/Tricerat.ScrewDriversClient.installer.yaml b/manifests/t/Tricerat/ScrewDriversClient/7.9.6/Tricerat.ScrewDriversClient.installer.yaml
new file mode 100644
index 000000000000..4344aa891e09
--- /dev/null
+++ b/manifests/t/Tricerat/ScrewDriversClient/7.9.6/Tricerat.ScrewDriversClient.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: Tricerat.ScrewDriversClient
+PackageVersion: 7.9.6
+InstallerType: msi
+Scope: machine
+InstallerSwitches:
+ InstallLocation: APPDIR=""
+Dependencies:
+ PackageDependencies:
+ - PackageIdentifier: Microsoft.VCRedist.2015+.x86
+ - PackageIdentifier: Microsoft.VCRedist.2015+.x64
+ProductCode: '{62F3C2DF-4369-4F90-AFE8-A6FD57490F03}'
+AppsAndFeaturesEntries:
+- UpgradeCode: '{6CE3200F-E515-4D06-976F-73007971AF04}'
+Installers:
+- Architecture: x64
+ InstallerUrl: https://www.tricerat.com/hubfs/software-downloads/Version%207/v7.9.6/ScrewDriversClient_7.9.6.21339_x64.msi
+ InstallerSha256: ADBFF08BB9EC23281E8C30073868A20A6EE03AEB7D2335D345992F6989AB66C7
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Tricerat/ScrewDriversClient/7.9.6/Tricerat.ScrewDriversClient.locale.en-US.yaml b/manifests/t/Tricerat/ScrewDriversClient/7.9.6/Tricerat.ScrewDriversClient.locale.en-US.yaml
new file mode 100644
index 000000000000..0e6d91b2d44d
--- /dev/null
+++ b/manifests/t/Tricerat/ScrewDriversClient/7.9.6/Tricerat.ScrewDriversClient.locale.en-US.yaml
@@ -0,0 +1,24 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
+
+PackageIdentifier: Tricerat.ScrewDriversClient
+PackageVersion: 7.9.6
+PackageLocale: en-US
+Publisher: Tricerat
+PublisherUrl: https://www.tricerat.com/
+PublisherSupportUrl: https://www.tricerat.com/support
+PrivacyUrl: https://www.tricerat.com/privacy-policy
+Author: Tricerat, Inc.
+PackageName: ScrewDrivers Client
+PackageUrl: https://www.tricerat.com/client-downloads
+License: Proprietary
+LicenseUrl: https://www.tricerat.com/privacy/EULA
+Copyright: Copyright © 2026 Tricerat, Inc. All rights reserved.
+CopyrightUrl: https://www.tricerat.com/privacy/EULA
+ShortDescription: Instant access to better printing and scanning for your organization with ScrewDrivers enterprise print management and monitoring tools.
+Tags:
+- print
+- printer
+ReleaseNotesUrl: https://tricerat.atlassian.net/wiki/spaces/TKB/pages/1045954573/Version+7+History
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Tricerat/ScrewDriversClient/7.9.6/Tricerat.ScrewDriversClient.locale.zh-CN.yaml b/manifests/t/Tricerat/ScrewDriversClient/7.9.6/Tricerat.ScrewDriversClient.locale.zh-CN.yaml
new file mode 100644
index 000000000000..f8acd7e6fc2a
--- /dev/null
+++ b/manifests/t/Tricerat/ScrewDriversClient/7.9.6/Tricerat.ScrewDriversClient.locale.zh-CN.yaml
@@ -0,0 +1,13 @@
+# Created with YamlCreate.ps1 Dumplings Mod
+# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json
+
+PackageIdentifier: Tricerat.ScrewDriversClient
+PackageVersion: 7.9.6
+PackageLocale: zh-CN
+License: 专有软件
+ShortDescription: 通过 ScrewDrivers 企业级打印管理与监控工具,为您的组织即时提供更优质的打印和扫描服务。
+Tags:
+- 打印
+- 打印机
+ManifestType: locale
+ManifestVersion: 1.12.0
diff --git a/manifests/t/Tricerat/ScrewDriversClient/7.9.6/Tricerat.ScrewDriversClient.yaml b/manifests/t/Tricerat/ScrewDriversClient/7.9.6/Tricerat.ScrewDriversClient.yaml
new file mode 100644
index 000000000000..9d573e48f7db
--- /dev/null
+++ b/manifests/t/Tricerat/ScrewDriversClient/7.9.6/Tricerat.ScrewDriversClient.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: Tricerat.ScrewDriversClient
+PackageVersion: 7.9.6
+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/m/Mega/MEGASync/6.2.2/Mega.MEGASync.yaml b/manifests/u/Urin/moove/0.4.6/Urin.moove.yaml
similarity index 75%
rename from manifests/m/Mega/MEGASync/6.2.2/Mega.MEGASync.yaml
rename to manifests/u/Urin/moove/0.4.6/Urin.moove.yaml
index 479f7d89fb73..152bb83a132f 100644
--- a/manifests/m/Mega/MEGASync/6.2.2/Mega.MEGASync.yaml
+++ b/manifests/u/Urin/moove/0.4.6/Urin.moove.yaml
@@ -1,8 +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: Mega.MEGASync
-PackageVersion: 6.2.2
+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/WilsonGlasser/BaseMaster/0.4.2/WilsonGlasser.BaseMaster.installer.yaml b/manifests/w/WilsonGlasser/BaseMaster/0.4.2/WilsonGlasser.BaseMaster.installer.yaml
new file mode 100644
index 000000000000..3441ecba6155
--- /dev/null
+++ b/manifests/w/WilsonGlasser/BaseMaster/0.4.2/WilsonGlasser.BaseMaster.installer.yaml
@@ -0,0 +1,22 @@
+# 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: WilsonGlasser.BaseMaster
+PackageVersion: 0.4.2
+InstallerLocale: en-US
+InstallerType: nullsoft
+Scope: user
+ProductCode: BaseMaster
+ReleaseDate: 2026-05-05
+AppsAndFeaturesEntries:
+- DisplayName: BaseMaster
+ Publisher: basemaster
+ ProductCode: BaseMaster
+InstallationMetadata:
+ DefaultInstallLocation: '%LocalAppData%\BaseMaster'
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/wilsonglasser/basemaster/releases/download/v0.4.2/BaseMaster_0.4.2_x64-setup.exe
+ InstallerSha256: 2AA03D3A9136F8C4AB313D26CD5D993044670F3CE85E5A61E8DEE6141C0AD483
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/w/WilsonGlasser/BaseMaster/0.4.2/WilsonGlasser.BaseMaster.locale.en-US.yaml b/manifests/w/WilsonGlasser/BaseMaster/0.4.2/WilsonGlasser.BaseMaster.locale.en-US.yaml
new file mode 100644
index 000000000000..875069d442d1
--- /dev/null
+++ b/manifests/w/WilsonGlasser/BaseMaster/0.4.2/WilsonGlasser.BaseMaster.locale.en-US.yaml
@@ -0,0 +1,33 @@
+# 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: WilsonGlasser.BaseMaster
+PackageVersion: 0.4.2
+PackageLocale: en-US
+Publisher: Wilson Glasser
+PublisherUrl: https://basemaster.org/
+PublisherSupportUrl: https://github.com/wilsonglasser/basemaster/issues
+Author: Wilson Glasser
+PackageName: https://basemaster.org
+PackageUrl: https://basemaster.org/
+License: MIT
+LicenseUrl: https://github.com/wilsonglasser/basemaster/blob/HEAD/LICENSE
+ShortDescription: Desktop database tool for developers — MySQL, MariaDB, PostgreSQL, SQLite.
+Description: Desktop database tool for developers — MySQL, MariaDB, PostgreSQL, SQLite.
+Tags:
+- database
+- mariadb
+- mysql
+- postgreesql
+- rust
+- sqlite
+ReleaseNotes: |-
+ BaseMaster v0.4.2
+ Download disponível em Assets abaixo.
+ - Windows: .msi (instalador) e .exe (portable)
+ - macOS: .dmg (Apple Silicon / Intel)
+ - Linux: .deb, .rpm, .AppImage
+ 🤖 Build automatizado via GitHub Actions.
+ReleaseNotesUrl: https://github.com/wilsonglasser/basemaster/releases/tag/v0.4.2
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/w/WilsonGlasser/BaseMaster/0.4.2/WilsonGlasser.BaseMaster.yaml b/manifests/w/WilsonGlasser/BaseMaster/0.4.2/WilsonGlasser.BaseMaster.yaml
new file mode 100644
index 000000000000..23738e32ed4e
--- /dev/null
+++ b/manifests/w/WilsonGlasser/BaseMaster/0.4.2/WilsonGlasser.BaseMaster.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: WilsonGlasser.BaseMaster
+PackageVersion: 0.4.2
+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/w/wasmCloud/wash/2.0.7/wasmCloud.wash.installer.yaml b/manifests/w/wasmCloud/wash/2.0.7/wasmCloud.wash.installer.yaml
new file mode 100644
index 000000000000..4fd87d7aeed9
--- /dev/null
+++ b/manifests/w/wasmCloud/wash/2.0.7/wasmCloud.wash.installer.yaml
@@ -0,0 +1,17 @@
+# 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: wasmCloud.wash
+PackageVersion: 2.0.7
+InstallerType: zip
+NestedInstallerType: portable
+NestedInstallerFiles:
+- RelativeFilePath: wash.exe
+ PortableCommandAlias: wash
+ReleaseDate: 2026-05-05
+Installers:
+- Architecture: x64
+ InstallerUrl: https://github.com/wasmCloud/wasmCloud/releases/download/v2.0.7/wash-x86_64-pc-windows-msvc.zip
+ InstallerSha256: 2455D08C9BFDEA18A9718615266BBAF8D1939BBDE819DFD8EE407D2CB6963C0B
+ManifestType: installer
+ManifestVersion: 1.12.0
diff --git a/manifests/w/wasmCloud/wash/2.0.7/wasmCloud.wash.locale.en-US.yaml b/manifests/w/wasmCloud/wash/2.0.7/wasmCloud.wash.locale.en-US.yaml
new file mode 100644
index 000000000000..d9483480c5b2
--- /dev/null
+++ b/manifests/w/wasmCloud/wash/2.0.7/wasmCloud.wash.locale.en-US.yaml
@@ -0,0 +1,76 @@
+# 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: wasmCloud.wash
+PackageVersion: 2.0.7
+PackageLocale: en-US
+Publisher: wasmCloud
+PublisherUrl: https://wasmcloud.com/
+PublisherSupportUrl: https://github.com/wasmCloud/wasmCloud/issues
+Author: The wasmCloud Authors
+PackageName: wash
+PackageUrl: https://wasmcloud.com/docs/wash/
+License: Apache-2.0
+LicenseUrl: https://github.com/wasmCloud/wasmCloud/blob/HEAD/LICENSE
+Copyright: Copyright The wasmCloud Authors
+ShortDescription: The wasmCloud Shell (wash) - a CLI for building, running, and managing WebAssembly components and wasmCloud applications.
+Description: |-
+ wash is the wasmCloud Shell, a single CLI tool for working with WebAssembly components and wasmCloud.
+ - Build WebAssembly components from multiple languages with `wash build`
+ - Iterate quickly with a live dev loop using `wash dev`
+ - Run a local wasmCloud host and deploy applications
+ - Manage plugins and WIT interfaces
+Moniker: wash
+Tags:
+- cli
+- component
+- rust
+- wasi
+- wasm
+- wasmcloud
+- webassembly
+- wit
+ReleaseNotes: |-
+ What's Changed
+ - fix(http): return typed RouteError with accurate HTTP status codes by @Aditya1404Sal in #5082
+ - chore: rm passing wash prefix to brew by @dphilla in #5083
+ - feat: Expand DevRouter and DynamicRouter Tests by @Aditya1404Sal in #5064
+ - chore: upgrade async-nats to 0.47 by @ricochet in #5087
+ - [bugfix] Add port name to hello-world by @jfleitz in #5090
+ - Fix workload readiness for NATS subs by @ricochet in #5086
+ - docs(templates): reorganize Rust templates and add HTTP handler set by @ericgregory in #5084
+ - ci: re-enable dependabot for main and release-1.9.x by @officialasishkumar in #5035
+ - chore(deps): bump the all-docker group across 2 directories with 1 update by @dependabot[bot] in #5091
+ - chore: upgrade to go 1.26 by @ricochet in #5095
+ - chore(deps): bump the all-github-actions group across 6 directories with 24 updates by @dependabot[bot] in #5093
+ - chore(deps): bump the all-go group across 2 directories with 12 updates by @dependabot[bot] in #5092
+ - fix(test): wait on the host by @ricochet in #5100
+ - fix(operator): gate WorkloadDeployment Ready on replica availability by @ricochet in #5101
+ - chore(security): bump wasmtime, drop rustls-pemfile, add cargo audit by @ricochet in #5102
+ - ci: automated release train by @ricochet in #5098
+ - ci: disable 1.9 dependabot by @ricochet in #5097
+ - fix: remove canary-v2 now that canary exists by @ricochet in #5104
+ - chore(deps): bump the all-go group across 1 directory with 3 updates by @dependabot[bot] in #5103
+ - ci: fix sed for release-train by @ricochet in #5105
+ - backout publishing wash-runtime by @ricochet in #5106
+ - release: v2.0.6 by @automation-wasmcloud in #5107
+ - harden release train CI by @ricochet in #5108
+ - pass sha input for release-tag by @ricochet in #5109
+ - chore(deps): bump the all-github-actions group across 2 directories with 1 update by @dependabot[bot] in #5112
+ - chore(deps): bump go.wasmcloud.dev/runtime-operator/v2 from 2.0.5 to 2.0.6 in /runtime-gateway in the all-go group across 1 directory by @dependabot[bot] in #5111
+ - ci: make package-manager publishing best-effort by @ricochet in #5110
+ - fix(dev): friendly url by @ricochet in #5114
+ - ci: OpenSSF Scorecard workflow by @ricochet in #5115
+ - ci: fix scorecard publish and harden workflows by @ricochet in #5118
+ - Revert "ci: fix scorecard publish and harden workflows" by @ricochet in #5119
+ - ci: lint workflows and actions by @ricochet in #5120
+ - ci(zizmor): grant write for security upload by @ricochet in #5123
+ - release: v2.0.7 by @automation-wasmcloud in #5124
+ New Contributors
+ - @officialasishkumar made their first contribution in #5035
+ Full Changelog: v2.0.5...v2.0.7
+ReleaseNotesUrl: https://github.com/wasmCloud/wasmCloud/releases/tag/v2.0.7
+Documentations:
+- DocumentUrl: https://wasmcloud.com/docs/
+ManifestType: defaultLocale
+ManifestVersion: 1.12.0
diff --git a/manifests/w/wasmCloud/wash/2.0.7/wasmCloud.wash.yaml b/manifests/w/wasmCloud/wash/2.0.7/wasmCloud.wash.yaml
new file mode 100644
index 000000000000..1bcfca02795a
--- /dev/null
+++ b/manifests/w/wasmCloud/wash/2.0.7/wasmCloud.wash.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: wasmCloud.wash
+PackageVersion: 2.0.7
+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
diff --git a/manifests/z/Zenpaw/Skypaw/1.0.0/Zenpaw.Skypaw.locale.en-US.yaml b/manifests/z/Zenpaw/Skypaw/1.0.0/Zenpaw.Skypaw.locale.en-US.yaml
index 25f3a33720f5..5e1e0ed23bfc 100644
--- a/manifests/z/Zenpaw/Skypaw/1.0.0/Zenpaw.Skypaw.locale.en-US.yaml
+++ b/manifests/z/Zenpaw/Skypaw/1.0.0/Zenpaw.Skypaw.locale.en-US.yaml
@@ -12,5 +12,14 @@ PackageUrl: https://github.com/zenpaw-labs/skypaw
License: MIT License
ShortDescription: "Minimal weather CLI for the terminal \U0001F324️"
ReleaseNotesUrl: https://github.com/zenpaw-labs/skypaw/releases/tag/v1.0.0
+Tags:
+- weather
+- temperature
+- celsius
+- clock-with-seconds
+- clockwithseconds
+- open-meteo
+- openmeteo
+- requirescmd
ManifestType: defaultLocale
ManifestVersion: 1.12.0