diff --git a/Tools/SetPackageMoniker.ps1 b/Tools/SetPackageMoniker.ps1 deleted file mode 100644 index 5ffb9ef442f0..000000000000 --- a/Tools/SetPackageMoniker.ps1 +++ /dev/null @@ -1,122 +0,0 @@ -<# -.SYNOPSIS - Sets the moniker for a single package -.DESCRIPTION - This script will update the moniker for all versions of a package identifier -.EXAMPLE - PS C:\Projects\winget-pkgs> Get-Help .\Tools\SetPackageMoniker.ps1 -Full - Show this script's help -.EXAMPLE - PS C:\Projects\winget-pkgs> .\Tools\SetPackageMoniker.ps1 Google.Chrome chrome - Set the identifier of Google.Chrome to 'chrome' -.NOTES - Please file an issue if you run into errors with this script: - https://github.com/microsoft/winget-pkgs/issues -.LINK - https://github.com/microsoft/winget-pkgs/blob/master/Tools/SetPackageMoniker.ps1 -#> -#Requires -Version 5 - -[CmdletBinding()] -param ( - [Parameter(Mandatory = $true)] - [string] $PackageIdentifier, - [Parameter(Mandatory = $true)] - [string] $Moniker -) - -$ProgressPreference = 'SilentlyContinue' -$PSDefaultParameterValues = @{ '*:Encoding' = 'UTF8' } -$Utf8NoBomEncoding = New-Object System.Text.UTF8Encoding $False -$ManifestVersion = '1.6.0' -$Schema = "https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v$ManifestVersion/manifest.defaultLocale.$ManifestVersion.json" - -Function Restore-YamlKeyOrder { - [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSReviewUnusedParameter', 'InputObject', Justification = 'The variable is used inside a conditional but ScriptAnalyser does not recognize the scope')] - [Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSReviewUnusedParameter', 'NoComments', Justification = 'The variable is used inside a conditional but ScriptAnalyser does not recognize the scope')] - Param - ( - [Parameter(Mandatory = $true, Position = 0)] - [PSCustomObject] $InputObject, - [Parameter(Mandatory = $true, Position = 1)] - [PSCustomObject] $SortOrder - ) - - - $_Temp = [ordered] @{} - $SortOrder.GetEnumerator() | ForEach-Object { - if ($InputObject.Contains($_)) { - $_Temp.Add($_, $InputObject[$_]) - } - } - return $_Temp -} - - -# Installs `powershell-yaml` as a dependency for parsing yaml content -if (-not(Get-Module -ListAvailable -Name powershell-yaml)) { - try { - Write-Verbose "PowerShell module 'powershell-yaml' was not found. Attempting to install it. . ." - Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force -Scope CurrentUser - Install-Module -Name powershell-yaml -Force -Repository PSGallery -Scope CurrentUser - } catch { - # If there was an exception while installing, pass it as an InternalException for further debugging - throw [UnmetDependencyException]::new("'powershell-yaml' unable to be installed successfully", $_.Exception) - } finally { - # Double check that it was installed properly - if (-not(Get-Module -ListAvailable -Name powershell-yaml)) { - throw [UnmetDependencyException]::new("'powershell-yaml' is not found") - } - Write-Verbose "PowerShell module 'powershell-yaml' was installed successfully" - } -} - -# Fetch Schema data from github for entry validation, key ordering, and automatic commenting -try { - $LocaleSchema = @(Invoke-WebRequest $Schema -UseBasicParsing | ConvertFrom-Json) - $LocaleProperties = (ConvertTo-Yaml $LocaleSchema.properties | ConvertFrom-Yaml -Ordered).Keys -} catch { - # Here we want to pass the exception as an inner exception for debugging if necessary - throw [System.Net.WebException]::new('Manifest schemas could not be downloaded. Try running the script again', $_.Exception) -} - -# Set the root folder where manifests should be loaded from -if (Test-Path -Path "$PSScriptRoot\..\manifests") { - $ManifestsFolder = (Resolve-Path "$PSScriptRoot\..\manifests").Path -} else { - $ManifestsFolder = (Resolve-Path '.\').Path -} - -$ManifestsFolder = Join-Path -Path $ManifestsFolder -ChildPath $PackageIdentifier.ToLower()[0] -AdditionalChildPath $PackageIdentifier.Split('.') - -Write-Verbose "Fetching list of manifests from $ManifestsFolder . . ." -$localeManifests = Get-ChildItem $ManifestsFolder -Recurse -Filter "$PackageIdentifier.locale.*.yaml" -Write-Verbose "Found $($localeManifests.Count) locale manifests" - -Write-Verbose 'Filtering manifests for Default Locale. . .' -$defaultLocaleManifests = $localeManifests.Where({ $_ | Get-Content -Raw | Select-String 'defaultLocale' }) -Write-Verbose "$($defaultLocaleManifests.Count) manifests are defaultLocale" - -Write-Information 'Updating monikers. . .' - -$defaultLocaleManifests | ForEach-Object { - $YamlContent = $_ | Get-Content | ConvertFrom-Yaml - if (-not ($YamlContent['Moniker'] -ceq $Moniker)) { - $YamlContent['Moniker'] = $Moniker - $YamlContent = Restore-YamlKeyOrder $YamlContent $LocaleProperties - [System.IO.File]::WriteAllLines($_.FullName, @( - # This regex looks for lines with the special character ⍰ and comments them out - $(ConvertTo-Yaml $YamlContent).TrimEnd() -replace "(.*)\s+$([char]0x2370)", "# `$1" - ), $Utf8NoBomEncoding) - - Write-Verbose "Updated $($_.FullName)" - } else { - Write-Verbose "Skipped $($_.FullName)" - } -} - - -class UnmetDependencyException : Exception { - UnmetDependencyException([string] $message) : base($message) {} - UnmetDependencyException([string] $message, [Exception] $exception) : base($message, $exception) {} -} diff --git a/manifests/a/AdaLang/Alire/Portable/2.1.1/AdaLang.Alire.Portable.installer.yaml b/manifests/a/AdaLang/Alire/Portable/2.1.1/AdaLang.Alire.Portable.installer.yaml new file mode 100644 index 000000000000..827dd89ccc2d --- /dev/null +++ b/manifests/a/AdaLang/Alire/Portable/2.1.1/AdaLang.Alire.Portable.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: AdaLang.Alire.Portable +PackageVersion: 2.1.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: bin/alr.exe +UpgradeBehavior: install +ReleaseDate: 2026-05-25 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/alire-project/alire/releases/download/v2.1.1/alr-2.1.1-bin-x86_64-windows.zip + InstallerSha256: 863013B1F94DA6F3B7D0D5A74022AC3370424EEEA9A470EBDB33D188D61B9125 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/AdaLang/Alire/Portable/2.1.1/AdaLang.Alire.Portable.locale.en-US.yaml b/manifests/a/AdaLang/Alire/Portable/2.1.1/AdaLang.Alire.Portable.locale.en-US.yaml new file mode 100644 index 000000000000..8f0e31ea42c0 --- /dev/null +++ b/manifests/a/AdaLang/Alire/Portable/2.1.1/AdaLang.Alire.Portable.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: AdaLang.Alire.Portable +PackageVersion: 2.1.1 +PackageLocale: en-US +Publisher: The Alire Developers +PublisherUrl: https://github.com/alire-project/ +PublisherSupportUrl: https://github.com/alire-project/alire/issues +Author: The Alire Developers +PackageName: Alire +PackageUrl: https://alire.ada.dev/ +License: GPL-3.0 +LicenseUrl: https://github.com/alire-project/alire/blob/HEAD/LICENSE.txt +ShortDescription: Ada/SPARK Source Package Manager +Description: A catalog of ready-to-use Ada libraries plus a command-line tool (alr) to obtain, build, and incorporate them into your own projects. It aims to fulfill a similar role to Rust's cargo or OCaml's opam. +Moniker: alr-portable +Tags: +- ada +- ada-2012 +- package-management +- package-manager +- package-manager-tool +- reproducible-builds +ReleaseNotes: |- + Maintenance release with bugfixes and MSYS2 updated installer. + Full Changelog: v2.1.0...v2.1.1 +ReleaseNotesUrl: https://github.com/alire-project/alire/releases/tag/v2.1.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/AdaLang/Alire/Portable/2.1.1/AdaLang.Alire.Portable.yaml b/manifests/a/AdaLang/Alire/Portable/2.1.1/AdaLang.Alire.Portable.yaml new file mode 100644 index 000000000000..33146588e7bb --- /dev/null +++ b/manifests/a/AdaLang/Alire/Portable/2.1.1/AdaLang.Alire.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: AdaLang.Alire.Portable +PackageVersion: 2.1.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.installer.yaml b/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.installer.yaml new file mode 100644 index 000000000000..8084a131b9b2 --- /dev/null +++ b/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.installer.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Astronet.Scholaread +PackageVersion: 1.1.70 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- scholaread +FileExtensions: +- caj +- pdf +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.scholaread.com/assets/pc-releases/1.1.70/com/Scholaread-win-x64-1.1.70.exe + InstallerSha256: 4C1BB3DC1A7C5E0E2DDD82822809AE65BC25F2E2D1FD4693B7771EFB5A8628F1 + ProductCode: c9fcbc5f-d2c1-524e-9455-a0098593a16f +- InstallerLocale: zh-CN + Architecture: x64 + InstallerUrl: https://cdn.scholaread.cn/assets/pc-releases/1.1.70/cn/Scholaread-win-x64-1.1.70.exe + InstallerSha256: 4409F7D00D1DAA3EA2A1A17D8277DC87E342E4B453498C910A11A978B5894AC6 + ProductCode: b171b469-051b-5b40-8791-79ac366d1e4b +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.locale.en-US.yaml b/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.locale.en-US.yaml new file mode 100644 index 000000000000..364b36d42208 --- /dev/null +++ b/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.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: Astronet.Scholaread +PackageVersion: 1.1.70 +PackageLocale: en-US +Publisher: Astronet Technology PTE LTD +PublisherUrl: https://www.scholaread.com/ +PublisherSupportUrl: https://workspace.jianguoyun.com/inbox/collect/c2bf8ec4adc34609a1420825dfab9866/submitv2 +PrivacyUrl: https://www.scholaread.com/help/privacy +Author: Astronet Technology PTE LTD. +PackageName: Scholaread +PackageUrl: https://www.scholaread.com/download +License: Proprietary +LicenseUrl: https://www.scholaread.com/help/terms +Copyright: Copyright © Astronet Technology PTE LTD 2026. All rights reserved. +CopyrightUrl: https://www.scholaread.com/help/terms +ShortDescription: AI-powered Research, Insights at Your Fingertips +Description: |- + Scholaread is committed to creating a premier academic reading experience, helping every scholar enhance the value of their time. + Amidst the sea of knowledge, countless papers and scholarly works serve as lighthouses guiding our intellectual journey. We aim to reshape academic reading, enabling scholars to navigate more smoothly and sail towards a broader and more distant future. + By utilizing advanced PDF layout parsing algorithms, we convert complexly formatted literature into clean, screen-friendly formats, allowing reading to transcend device limitations, and ensuring text, graphics, formulas, and tables are displayed with clarity. Our paragraph-by-paragraph full-text translations not only make reading more fluid but also allow the transfer of knowledge to transcend language barriers. We firmly believe that every paper has its value, and every piece of research deserves recognition. We hope that scholars around the globe can overcome linguistic obstacles and collectively contribute to the advancement of the world. + In the future, Scholaread will also provide a more comprehensive literature management solution, ensuring an efficient linkage between reading and writing so that every ounce of effort in scientific research is preserved and reflected. + The path to scientific discovery, though rugged and lengthy, can be made broader and brighter with technological innovation. Scholaread aspires to be an indispensable tool for scholars worldwide, ensuring that every precious minute is spent productively. + We sincerely welcome you and your colleagues, peers, study groups, and anyone interested to share in the Scholaread experience! +Tags: +- academics +- article +- book +- citation +- cite +- journal +- literature +- paper +- pdf +- reader +- reading +- research +- thesis +- viewer +ReleaseNotes: |- + - New “Research” is now in beta: manage AI Agent chats and generated content by research project. + - In a project, AI Agentuses your Library, project files, and web search to generate results. + - Save Agent outputs as project files to continue outlines, reviews, and drafts. + - Fixed known issues and improved the experience. +PurchaseUrl: https://www.scholaread.com/pricing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.locale.zh-CN.yaml b/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.locale.zh-CN.yaml new file mode 100644 index 000000000000..7e5695a8baa2 --- /dev/null +++ b/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.locale.zh-CN.yaml @@ -0,0 +1,48 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Astronet.Scholaread +PackageVersion: 1.1.70 +PackageLocale: zh-CN +Publisher: 上海亦答网络科技有限公司 +PublisherUrl: https://www.scholaread.cn/ +PublisherSupportUrl: https://workspace.jianguoyun.com/inbox/collect/308c02d2d43944d5a787b9c01735698f/submitv2 +PrivacyUrl: https://www.scholaread.cn/help/privacy +Author: 上海亦答网络科技有限公司 +PackageName: Scholaread +PackageUrl: https://www.scholaread.cn/download +License: 专有软件 +LicenseUrl: https://www.scholaread.cn/help/terms +Copyright: Copyright © 上海亦答网络科技有限公司 2026. All Rights Reserved. +CopyrightUrl: https://www.scholaread.cn/help/terms +ShortDescription: AI 助力,让科研变轻松 +Description: |- + 靠岸学术(Scholaread)致力于创造一流的学术阅读体验,帮助每一位学者提升时间价值。 + 在知识之海上,无数论文著作就像指引航途的灯塔。我们希望能重塑学术阅读,让学者们更顺利地探索航行,驶向更远更广阔的未来。 + 因此,通过先进的 PDF 排版解析算法,我们将复杂排版的文献转换成适合屏幕的简洁版式,让阅读不再受限于设备,图文、公式、数表都能清晰展现。而逐段对照全文翻译不仅能让阅读变得流畅,更让知识的传播不再受语言的限制。我们坚信,每一篇论文都有其价值,每一项研究都应被看见。我们希望全球的学者都能够跨越语言的障碍,共同促进世界的进步。 + 未来,靠岸学术(Scholaread)还将提供更完善的文献管理解决方案,实现阅读写作的高效衔接,让科研工作的每一分努力都能得到保存与体现。 + 科研的道路虽崎岖漫长,但技术创新能让这条道路变得更为宽广与明亮。靠岸学术(Scholaread)希望成为全球学者的必备工具,让宝贵的每一分钟都能用在刀刃上。 + 我们真诚欢迎您与您的同事、同行、学习小组以及任何对此感兴趣的人分享靠岸学术(Scholaread)! +Tags: +- pdf +- 书籍 +- 学术 +- 引文 +- 引用 +- 引用文献 +- 文献 +- 期刊 +- 查看器 +- 研究 +- 论文 +- 阅读 +- 阅读器 +- 靠岸学术 +ReleaseNotes: |- + - 「研究」功能上线内测,可按研究项目管理 AI Agent 会话和生成内容。 + - 在项目中提问,AI Agent 会结合文献库、项目文件和全网搜索生成结果。 + - Agent 生成内容可保存为项目文件,方便继续整理大纲、综述和论文草稿。 + - 修复已知问题,优化使用体验。 +PurchaseUrl: https://www.scholaread.cn/pricing +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.yaml b/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.yaml new file mode 100644 index 000000000000..f1384e6a2044 --- /dev/null +++ b/manifests/a/Astronet/Scholaread/1.1.70/Astronet.Scholaread.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: Astronet.Scholaread +PackageVersion: 1.1.70 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.installer.yaml b/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.installer.yaml new file mode 100644 index 000000000000..d2e541a3f6f6 --- /dev/null +++ b/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.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: Baidu.BaiduNetdisk +PackageVersion: 8.4.8 +InstallerType: nullsoft +Scope: machine +InstallerSuccessCodes: +- 2 +UpgradeBehavior: install +Protocols: +- baiduyunguanjia +ProductCode: 百度云管家 +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x86 + InstallerUrl: https://issuepcdn.baidupcs.com/issue/netdisk/yunguanjia/BaiduNetdisk_8.4.8.102.exe + InstallerSha256: 766C61C6FBFDC8BB84DB44A9C90FE2D74D1E0797BDFAAF749AF57D0EBC9F2B54 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.locale.en-US.yaml b/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.locale.en-US.yaml new file mode 100644 index 000000000000..2c945727b6f2 --- /dev/null +++ b/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.locale.en-US.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: Baidu.BaiduNetdisk +PackageVersion: 8.4.8 +PackageLocale: en-US +Author: Beijing Duyou Technology Co., Ltd. +License: Proprietary +ShortDescription: Personal cloud service product by Baidu. +Description: Baidu Netdisk is a convenient and easy-to-use cloud storage product that is serving more than 700 million users, which has mass storage and several self-hosted data centers, supports backup, sharing, viewing and processing multiple types of files, and protects users' data security under two top international security certifications ISO27001 and ISO27018. It would be your best choice if you want to back up your data, free up your phone's space, share files with others or operate files online. +Tags: +- backup +- china +- cloud +- cloud-drive +- download +- drive +- file +- netdisk +- prc +- share +- sync +- upload +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.locale.zh-CN.yaml b/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.locale.zh-CN.yaml new file mode 100644 index 000000000000..f458757a98a6 --- /dev/null +++ b/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.locale.zh-CN.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: Baidu.BaiduNetdisk +PackageVersion: 8.4.8 +PackageLocale: zh-CN +Publisher: 北京度友科技有限公司 +PublisherUrl: https://www.baidu.com/ +PublisherSupportUrl: https://pan.baidu.com/disk/help +PrivacyUrl: https://privacy.baidu.com/policy +Author: 北京度友科技有限公司 +PackageName: 百度网盘 +PackageUrl: https://pan.baidu.com/ +License: 专有软件 +LicenseUrl: https://pan.baidu.com/disk/main#/protocol/duty_mobi +Copyright: Copyright © 2026 Baidu, Inc. All rights reserved. +CopyrightUrl: https://www.baidu.com/duty/copyright.html +ShortDescription: 百度公司出品的个人云服务产品 +Description: 百度网盘是一款省心、好用的超级云存储产品,已为超过 7 亿用户提供云服务,空间超大,支持多类型文件的备份、分享、查看和处理,自建多个数据存储中心,更有两项国际顶尖安全认证 ISO27001&ISO27018 为用户数据安全提供护航。如果你想备份文件数据,释放手机空间,给别人分享文件或是对文件进行在线操作,选百度网盘就对了! +Tags: +- 上传 +- 下载 +- 云 +- 云盘 +- 共享 +- 分享 +- 同步 +- 备份 +- 文件 +- 百度云 +- 百度云管家 +- 网盘 +ReleaseNotes: |- + 1. 百度网盘新版升级 + 2. 体验升级:支持查看外链转存和访问记录。 +PurchaseUrl: https://pan.baidu.com/buy/center +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.yaml b/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.yaml new file mode 100644 index 000000000000..515a58b9fb72 --- /dev/null +++ b/manifests/b/Baidu/BaiduNetdisk/8.4.8/Baidu.BaiduNetdisk.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: Baidu.BaiduNetdisk +PackageVersion: 8.4.8 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.installer.yaml b/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.installer.yaml new file mode 100644 index 000000000000..3ae4767e570e --- /dev/null +++ b/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.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: ByteDance.Douyin +PackageVersion: 7.9.0 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: douyin +ReleaseDate: 2026-05-27 +Installers: +- Architecture: x86 + InstallerUrl: https://lf-douyin-pc-web.douyinstatic.com/obj/douyin-pc-web/douyin-pc-client/7044145585217083655/releases/383001056/7.9.0/win32-ia32/douyin-v7.9.0-win32-ia32-default.exe + InstallerSha256: 7AAEBC190E94CF7F3F78B0E91D79B059402860D17056155C25A43D9343678680 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.locale.en-US.yaml b/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.locale.en-US.yaml new file mode 100644 index 000000000000..ba2b3d4f3cc4 --- /dev/null +++ b/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.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: ByteDance.Douyin +PackageVersion: 7.9.0 +PackageLocale: en-US +Publisher: Beijing Microlive Vision Technology Co., Ltd. +PublisherUrl: https://www.douyin.com/ +PublisherSupportUrl: https://www.douyin.com/aboutus/#contact +PrivacyUrl: https://www.douyin.com/draft/douyin_agreement/douyin_agreement_privacy.html +Author: Beijing Microlive Vision Technology Co., Ltd. +PackageName: 抖音 +PackageUrl: https://www.douyin.com/downloadpage/pc +License: Freeware +LicenseUrl: https://www.douyin.com/draft/douyin_agreement/douyin_agreement_user.html +Copyright: 2026© Douyin +ShortDescription: Discover good content and watch freely. +Tags: +- china +- douyin +- prc +- short-video +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.locale.zh-CN.yaml b/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.locale.zh-CN.yaml new file mode 100644 index 000000000000..cc5f5f72735e --- /dev/null +++ b/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.locale.zh-CN.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: ByteDance.Douyin +PackageVersion: 7.9.0 +PackageLocale: zh-CN +Publisher: Beijing Microlive Vision Technology Co., Ltd. +PublisherUrl: https://www.douyin.com/ +PublisherSupportUrl: https://www.douyin.com/aboutus/#contact +PrivacyUrl: https://www.douyin.com/draft/douyin_agreement/douyin_agreement_privacy.html +Author: 北京微播视界科技有限公司 +PackageName: 抖音 +PackageUrl: https://www.douyin.com/downloadpage/pc +License: 免费软件 +LicenseUrl: https://www.douyin.com/draft/douyin_agreement/douyin_agreement_user.html +Copyright: 2026© 抖音 +ShortDescription: 发现好内容畅快看 +Tags: +- 抖音 +- 短视频 +ReleaseNotes: 新版本修复了一些已知问题,并针对性能进行优化 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.yaml b/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.yaml new file mode 100644 index 000000000000..cf6558812f3c --- /dev/null +++ b/manifests/b/ByteDance/Douyin/7.9.0/ByteDance.Douyin.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: ByteDance.Douyin +PackageVersion: 7.9.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.installer.yaml b/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.installer.yaml new file mode 100644 index 000000000000..983c7bdbbbef --- /dev/null +++ b/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.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: ByteDance.TraeSolo.CN +PackageVersion: 2.3.33252 +InstallerType: inno +Scope: user +InstallerSwitches: + Custom: /mergetasks=!runcode +UpgradeBehavior: install +Protocols: +- solo-cn +ProductCode: '{953A2114-1972-4389-9722-1F54639F3958}_is1' +ReleaseDate: 2026-05-28 +Installers: +- Architecture: x64 + InstallerUrl: https://lf-cdn.trae.ai/obj/trae-ai-us/pkg/app/releases/stable/2.3.33252/win32/TRAE_SOLO_CN-Setup-x64.exe + InstallerSha256: D187DCDC40024643B760C039FCF074C132DB93797BDF77FCB54C586B6A7718C6 +- InstallerLocale: zh-CN + Architecture: x64 + InstallerUrl: https://lf-cdn.trae.com.cn/obj/trae-com-cn/pkg/app/releases/stable/2.3.33252/win32/TRAE_SOLO_CN-Setup-x64.exe + InstallerSha256: D187DCDC40024643B760C039FCF074C132DB93797BDF77FCB54C586B6A7718C6 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.locale.en-US.yaml b/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.locale.en-US.yaml new file mode 100644 index 000000000000..4e33b6416063 --- /dev/null +++ b/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.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: ByteDance.TraeSolo.CN +PackageVersion: 2.3.33252 +PackageLocale: en-US +Publisher: Beijing Yinli Catapult Technology Co., Ltd. +PublisherUrl: https://www.trae.cn/ +PublisherSupportUrl: https://docs.trae.cn/solo/support +PrivacyUrl: https://www.trae.cn/privacy-policy +Author: Beijing Yinli Catapult Technology Co., Ltd. +PackageName: TRAE SOLO CN +PackageUrl: https://www.trae.cn/ide/download +License: Proprietary +LicenseUrl: https://www.trae.cn/terms-of-service +Copyright: Copyright © 2026. All rights reserved. +ShortDescription: More than Coding +Description: TRAE SOLO is an AI-native workspace that offers web, desktop, and mobile clients. It features two modes—More Than Coding (MTC) and Code—designed for different user groups. TRAE SOLO builds upon the original TRAE IDE SOLO mode with further enhanced capabilities, aiming to provide users with a unified, efficient, and customizable AI collaboration experience that covers scenarios ranging from professional development to everyday office work. +Tags: +- ai +- code +- coding +- develop +- development +- large-language-model +- llm +- programming +ReleaseNotesUrl: https://www.trae.cn/changelog +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.trae.cn/solo +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.locale.zh-CN.yaml b/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.locale.zh-CN.yaml new file mode 100644 index 000000000000..e1e7315988a8 --- /dev/null +++ b/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.locale.zh-CN.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: ByteDance.TraeSolo.CN +PackageVersion: 2.3.33252 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: More than Coding +Description: TRAE SOLO 是一款 AI 原生工作台,提供网页版、桌面版和移动版三种形态,并设有为不同用户群体设计的 More Than Coding (MTC) 与 Code 双模式。TRAE SOLO 的能力在原有 TRAE IDE SOLO 模式的基础上得到了进一步提升,旨在为用户提供统一、高效、可定制的 AI 协作体验,覆盖从专业开发到日常办公的各类场景。​ +Tags: +- ai +- llm +- 人工智能 +- 代码 +- 大语言模型 +- 开发 +- 编程 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.trae.cn/solo +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.yaml b/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.yaml new file mode 100644 index 000000000000..520344c509f1 --- /dev/null +++ b/manifests/b/ByteDance/TraeSolo/CN/2.3.33252/ByteDance.TraeSolo.CN.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: ByteDance.TraeSolo.CN +PackageVersion: 2.3.33252 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/DefangLabs/Defang/3.0.1/DefangLabs.Defang.installer.yaml b/manifests/d/DefangLabs/Defang/3.0.1/DefangLabs.Defang.installer.yaml deleted file mode 100644 index c5321bbe96bb..000000000000 --- a/manifests/d/DefangLabs/Defang/3.0.1/DefangLabs.Defang.installer.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# This file was generated by GoReleaser. DO NOT EDIT. -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json -PackageIdentifier: DefangLabs.Defang -PackageVersion: 3.0.1 -InstallerLocale: en-US -InstallerType: zip -ReleaseDate: "2026-01-24" -Installers: - - Architecture: arm64 - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: defang.exe - PortableCommandAlias: defang - InstallerUrl: https://s.defang.io/defang_3.0.1_windows_arm64.zip?x-defang-source=winget - InstallerSha256: da2450848646efb7299394f2c41c48e28395a1e432ac2575a50e1035549d520d - UpgradeBehavior: uninstallPrevious - - Architecture: x64 - NestedInstallerType: portable - NestedInstallerFiles: - - RelativeFilePath: defang.exe - PortableCommandAlias: defang - InstallerUrl: https://s.defang.io/defang_3.0.1_windows_amd64.zip?x-defang-source=winget - InstallerSha256: c9d7e96ae29fa67c53425d7dccd37747e7b28ccecce65764f3b4e23afd24574b - UpgradeBehavior: uninstallPrevious -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/d/DefangLabs/Defang/3.0.1/DefangLabs.Defang.locale.en-US.yaml b/manifests/d/DefangLabs/Defang/3.0.1/DefangLabs.Defang.locale.en-US.yaml deleted file mode 100644 index 5da452438556..000000000000 --- a/manifests/d/DefangLabs/Defang/3.0.1/DefangLabs.Defang.locale.en-US.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# This file was generated by GoReleaser. DO NOT EDIT. -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json -PackageIdentifier: DefangLabs.Defang -PackageVersion: 3.0.1 -PackageLocale: en-US -Publisher: DefangLabs -PublisherUrl: https://defang.io/ -PublisherSupportUrl: https://github.com/DefangLabs/defang/issues/ -PackageName: Defang -PackageUrl: https://github.com/DefangLabs/defang/ -License: MIT -Copyright: Defang Software Labs Inc. -ShortDescription: The Defang command-line interface (CLI) -Description: Develop Anything, Deploy Anywhere. -Moniker: Defang -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/d/DimitarRadenkov/Pointframe/6.2.2/DimitarRadenkov.Pointframe.installer.yaml b/manifests/d/DimitarRadenkov/Pointframe/6.2.2/DimitarRadenkov.Pointframe.installer.yaml new file mode 100644 index 000000000000..8f3af53285e0 --- /dev/null +++ b/manifests/d/DimitarRadenkov/Pointframe/6.2.2/DimitarRadenkov.Pointframe.installer.yaml @@ -0,0 +1,27 @@ +# 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: DimitarRadenkov.Pointframe +PackageVersion: 6.2.2 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- + SilentWithProgress: /SILENT /SUPPRESSMSGBOXES /NORESTART /SP- +ProductCode: '{67DE561D-F02A-4E9F-AF4A-44D98A092D54}_is1' +ReleaseDate: 2026-05-29 +AppsAndFeaturesEntries: +- ProductCode: '{67DE561D-F02A-4E9F-AF4A-44D98A092D54}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Pointframe' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/dimitar-radenkov/Pointframe/releases/download/v6.2.2/Pointframe-6.2.2-x64-Setup.exe + InstallerSha256: DD6821E1DF84BC135B71E12A210D17E222A3824F35AFAACB1F67B454E3DC6A48 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DimitarRadenkov/Pointframe/6.2.2/DimitarRadenkov.Pointframe.locale.en-US.yaml b/manifests/d/DimitarRadenkov/Pointframe/6.2.2/DimitarRadenkov.Pointframe.locale.en-US.yaml new file mode 100644 index 000000000000..287243320755 --- /dev/null +++ b/manifests/d/DimitarRadenkov/Pointframe/6.2.2/DimitarRadenkov.Pointframe.locale.en-US.yaml @@ -0,0 +1,34 @@ +# 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: DimitarRadenkov.Pointframe +PackageVersion: 6.2.2 +PackageLocale: en-US +Publisher: Dimitar Radenkov +PublisherUrl: https://github.com/dimitar-radenkov +PublisherSupportUrl: https://github.com/dimitar-radenkov/Pointframe/issues +PackageName: Pointframe +PackageUrl: https://github.com/dimitar-radenkov/Pointframe +License: MIT +LicenseUrl: https://github.com/dimitar-radenkov/Pointframe/blob/HEAD/LICENSE +Copyright: Copyright (c) Dimitar Radenkov +ShortDescription: Open-source Windows screen capture and recording tool with OCR and annotation +Description: |- + Pointframe is a lightweight Windows screen capture and annotation tool. + Press Print Screen to draw a region, annotate with arrows, shapes, text, blur, + and numbered steps, then copy to clipboard, pin as a floating always-on-top window, + or record your screen to MP4 with optional microphone audio. Includes built-in OCR + to extract text from any screenshot. No subscription, no telemetry. +Moniker: pointframe +Tags: +- annotation +- ocr +- screen-capture +- screen-recorder +- screenshot +- windows +- wpf +ReleaseNotes: 'What''s Changed - Update .gitignore, changelog, and installer publisher @dimitar-radenkov (#107) Full Changelog: v6.2.1...v6.2.2' +ReleaseNotesUrl: https://github.com/dimitar-radenkov/Pointframe/releases/tag/v6.2.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DimitarRadenkov/Pointframe/6.2.2/DimitarRadenkov.Pointframe.yaml b/manifests/d/DimitarRadenkov/Pointframe/6.2.2/DimitarRadenkov.Pointframe.yaml new file mode 100644 index 000000000000..c6fdb41ba374 --- /dev/null +++ b/manifests/d/DimitarRadenkov/Pointframe/6.2.2/DimitarRadenkov.Pointframe.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: DimitarRadenkov.Pointframe +PackageVersion: 6.2.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/Docker/Agent/v1.70.0/Docker.Agent.installer.yaml b/manifests/d/Docker/Agent/v1.70.0/Docker.Agent.installer.yaml new file mode 100644 index 000000000000..c236fc64c9df --- /dev/null +++ b/manifests/d/Docker/Agent/v1.70.0/Docker.Agent.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: Docker.Agent +PackageVersion: v1.70.0 +InstallerType: portable +Commands: +- docker-agent +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/docker/docker-agent/releases/download/v1.70.0/docker-agent-windows-amd64.exe + InstallerSha256: 33BD75E6F70F9FC9625923757827CDA0EF7AD133F18B465CCB2A02E812DD2840 +- Architecture: arm64 + InstallerUrl: https://github.com/docker/docker-agent/releases/download/v1.70.0/docker-agent-windows-arm64.exe + InstallerSha256: 97F978E7D62EA9BFDDDC9575044D2E8D92322E5BB32A1B64D4951194B9D8E3B6 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-05-29 diff --git a/manifests/d/Docker/Agent/v1.70.0/Docker.Agent.locale.en-US.yaml b/manifests/d/Docker/Agent/v1.70.0/Docker.Agent.locale.en-US.yaml new file mode 100644 index 000000000000..fa0a14c86558 --- /dev/null +++ b/manifests/d/Docker/Agent/v1.70.0/Docker.Agent.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Docker.Agent +PackageVersion: v1.70.0 +PackageLocale: en-US +Publisher: Docker +PublisherUrl: https://github.com/docker +PublisherSupportUrl: https://github.com/docker/cagent/issues +PackageName: Agent +PackageUrl: https://github.com/docker/cagent +License: Apache-2.0 +ShortDescription: Agent Builder and Runtime by Docker Engineering. +Tags: +- docker-agent +- dockeragent +- agents +- artificial-intelligence +- artificialintelligence +- ai +ReleaseNotesUrl: https://github.com/docker/docker-agent/releases/tag/v1.70.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Docker/Agent/v1.70.0/Docker.Agent.yaml b/manifests/d/Docker/Agent/v1.70.0/Docker.Agent.yaml new file mode 100644 index 000000000000..82238d787c04 --- /dev/null +++ b/manifests/d/Docker/Agent/v1.70.0/Docker.Agent.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: Docker.Agent +PackageVersion: v1.70.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/e/electerm/electerm/3.7.16/electerm.electerm.installer.yaml b/manifests/e/electerm/electerm/3.12.0/electerm.electerm.installer.yaml similarity index 66% rename from manifests/e/electerm/electerm/3.7.16/electerm.electerm.installer.yaml rename to manifests/e/electerm/electerm/3.12.0/electerm.electerm.installer.yaml index 3c0b588d27f3..4d51e5b97938 100644 --- a/manifests/e/electerm/electerm/3.7.16/electerm.electerm.installer.yaml +++ b/manifests/e/electerm/electerm/3.12.0/electerm.electerm.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: electerm.electerm -PackageVersion: 3.7.16 +PackageVersion: 3.12.0 InstallerLocale: en-US InstallerType: nullsoft InstallModes: @@ -10,21 +10,21 @@ InstallModes: - silent UpgradeBehavior: install ProductCode: cdebb73f-ddf5-57cd-a4a4-998a5c7283dd -ReleaseDate: 2026-04-29 +ReleaseDate: 2026-05-29 AppsAndFeaturesEntries: -- DisplayName: electerm 3.7.16 +- DisplayName: electerm 3.12.0 ProductCode: cdebb73f-ddf5-57cd-a4a4-998a5c7283dd Installers: - Architecture: x64 Scope: user - InstallerUrl: https://github.com/electerm/electerm/releases/download/v3.7.16/electerm-3.7.16-win-x64-installer.exe - InstallerSha256: 3EAB7858F58B6C61EB05823F69918CD7095B02C2962E1FB55871835262E722D7 + InstallerUrl: https://github.com/electerm/electerm/releases/download/v3.12.0/electerm-3.12.0-win-x64-installer.exe + InstallerSha256: 07F1F1D1F9EEA7A6D4B43305D59FDE2AEE0D24C151A0C5A7D9562D1B3AD57B76 InstallerSwitches: Custom: /CURRENTUSER - Architecture: x64 Scope: machine - InstallerUrl: https://github.com/electerm/electerm/releases/download/v3.7.16/electerm-3.7.16-win-x64-installer.exe - InstallerSha256: 3EAB7858F58B6C61EB05823F69918CD7095B02C2962E1FB55871835262E722D7 + InstallerUrl: https://github.com/electerm/electerm/releases/download/v3.12.0/electerm-3.12.0-win-x64-installer.exe + InstallerSha256: 07F1F1D1F9EEA7A6D4B43305D59FDE2AEE0D24C151A0C5A7D9562D1B3AD57B76 InstallerSwitches: Custom: /ALLUSERS ManifestType: installer diff --git a/manifests/e/electerm/electerm/3.12.0/electerm.electerm.locale.en-US.yaml b/manifests/e/electerm/electerm/3.12.0/electerm.electerm.locale.en-US.yaml new file mode 100644 index 000000000000..66014d38c031 --- /dev/null +++ b/manifests/e/electerm/electerm/3.12.0/electerm.electerm.locale.en-US.yaml @@ -0,0 +1,71 @@ +# 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: electerm.electerm +PackageVersion: 3.12.0 +PackageLocale: en-US +Publisher: ZHAO Xudong +PublisherUrl: https://github.com/electerm/electerm +PublisherSupportUrl: https://github.com/electerm/electerm/issues +PrivacyUrl: https://github.com/electerm/electerm/wiki/privacy-notice +Author: ZHAO Xudong +PackageName: electerm +PackageUrl: https://github.com/electerm/electerm +License: MIT +LicenseUrl: https://github.com/electerm/electerm/blob/HEAD/LICENSE +Copyright: Copyright (c) 2017~tomorrow electerm, ZHAO Xudong +CopyrightUrl: https://raw.githubusercontent.com/electerm/electerm/master/LICENSE +ShortDescription: Terminal/ssh/sftp/ftp/telnet/serialport/RDP/VNC/Spice client(linux, mac, win) +Description: Terminal/ssh/sftp/ftp/telnet/serialport/RDP/VNC/Spice client(linux, mac, win) +Moniker: electerm +Tags: +- developer-tools +- file-manager +- powershell +- rdp +- serialport +- sftp +- shell +- spice +- ssh +- telnet +- terminal +- utilities +- vnc +- wsl +ReleaseNotes: |- + New features/UI/Updates + - serialport: Add XMODEM protocol support for file transfers in serialport session (#4358) + - serialport: Support TX/RX line endings for serialport session + - AI Agent: Add close_tab function for tab management + - AI Agent: Support sftp transfer + - MCP/AI Agent: Add open tab tool to directly open session without creating bookmark + - MCP: Enhance bookmark create by adding data validation and sanitization + - MCP/AI Agent: Fix MCP/AI run command ability, now can run in any tab + - Add confirmation for clearing AI chat history + - Add AI chat mode persistence with local storage + - UI: Improve bookmark list mouse over UI + - UI: Improve history UI logic + Bug fixes + - Fix sftp upload folder modify time issue + - Fix server info code, avoid potential crash (#4362) + - Fix backspace can not trigger terminal scroll to bottom issue + 新功能/界面/更新 + - serialport: 为串口会话添加 XMODEM 协议支持,用于文件传输 (#4358) + - serialport: 支持串口会话的 TX/RX 行尾符设置 + - AI 代理:添加 close_tab 功能用于标签页管理 + - AI 代理:支持 SFTP 文件传输 + - MCP/AI 代理:添加 open tab 工具,可直接打开会话而无需创建书签 + - MCP:通过添加数据验证和清理增强书签创建功能 + - MCP/AI 代理:修复 MCP/AI 运行命令功能,现在可在任意标签页中运行 + - 添加清空 AI 聊天历史的确认提示 + - 添加 AI 聊天模式的本地存储持久化 + - 界面:改进书签列表鼠标悬停效果 + - 界面:改进历史记录界面逻辑 + 问题修复 + - 修复 SFTP 上传文件夹修改时间的问题 + - 修复服务器信息代码,避免潜在崩溃 (#4362) + - 修复退格键无法触发终端滚动到底部的问题 +ReleaseNotesUrl: https://github.com/electerm/electerm/releases/tag/v3.12.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/e/electerm/electerm/3.7.16/electerm.electerm.yaml b/manifests/e/electerm/electerm/3.12.0/electerm.electerm.yaml similarity index 88% rename from manifests/e/electerm/electerm/3.7.16/electerm.electerm.yaml rename to manifests/e/electerm/electerm/3.12.0/electerm.electerm.yaml index 0ac38c4957b2..43e0c6fb7409 100644 --- a/manifests/e/electerm/electerm/3.7.16/electerm.electerm.yaml +++ b/manifests/e/electerm/electerm/3.12.0/electerm.electerm.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: electerm.electerm -PackageVersion: 3.7.16 +PackageVersion: 3.12.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/e/electerm/electerm/3.7.16/electerm.electerm.locale.en-US.yaml b/manifests/e/electerm/electerm/3.7.16/electerm.electerm.locale.en-US.yaml deleted file mode 100644 index 30dfcf68b954..000000000000 --- a/manifests/e/electerm/electerm/3.7.16/electerm.electerm.locale.en-US.yaml +++ /dev/null @@ -1,59 +0,0 @@ -# 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: electerm.electerm -PackageVersion: 3.7.16 -PackageLocale: en-US -Publisher: ZHAO Xudong -PublisherUrl: https://github.com/electerm/electerm -PublisherSupportUrl: https://github.com/electerm/electerm/issues -PrivacyUrl: https://github.com/electerm/electerm/wiki/privacy-notice -Author: ZHAO Xudong -PackageName: electerm -PackageUrl: https://github.com/electerm/electerm -License: MIT -LicenseUrl: https://github.com/electerm/electerm/blob/HEAD/LICENSE -Copyright: Copyright (c) 2017~tomorrow electerm, ZHAO Xudong -CopyrightUrl: https://raw.githubusercontent.com/electerm/electerm/master/LICENSE -ShortDescription: Terminal/ssh/sftp/ftp/telnet/serialport/RDP/VNC/Spice client(linux, mac, win) -Description: Terminal/ssh/sftp/ftp/telnet/serialport/RDP/VNC/Spice client(linux, mac, win) -Moniker: electerm -Tags: -- developer-tools -- file-manager -- powershell -- rdp -- serialport -- sftp -- shell -- spice -- ssh -- telnet -- terminal -- utilities -- vnc -- wsl -ReleaseNotes: |- - New features/UI/Updates - - Improve tree list performance - Bug fixes - - Fix AI generate bookmark logic for profile auth type - - Fix open AI form not open issue for the first time click menu issue - - When add AI created bookmarks, add one by one to avoid crash the app - - Fix shell detect logic in terminal - - Fix terminal background when terminal initialized - - Fix ssh login for some 2FA server - - Fix widget load security issue - 新功能/界面/更新 - - 提升树状列表性能 - 问题修复 - - 修复 AI 生成书签逻辑对 profile auth 类型的支持 - - 修复首次点击菜单时 AI 表单不打开的问题 - - 添加 AI 创建的书签时逐个添加以避免应用崩溃 - - 修复终端中的 shell 检测逻辑 - - 修复终端初始化时的背景问题 - - 修复部分 2FA 服务器的 SSH 登录问题 - - 修复 widget 加载安全问题 -ReleaseNotesUrl: https://github.com/electerm/electerm/releases/tag/v3.7.16 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/e/electerm/electerm/3.7.18/electerm.electerm.installer.yaml b/manifests/e/electerm/electerm/3.7.18/electerm.electerm.installer.yaml deleted file mode 100644 index 631173eac6e9..000000000000 --- a/manifests/e/electerm/electerm/3.7.18/electerm.electerm.installer.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# 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: electerm.electerm -PackageVersion: 3.7.18 -InstallerLocale: en-US -InstallerType: nullsoft -InstallModes: -- interactive -- silent -UpgradeBehavior: install -ProductCode: cdebb73f-ddf5-57cd-a4a4-998a5c7283dd -ReleaseDate: 2026-04-29 -AppsAndFeaturesEntries: -- DisplayName: electerm 3.7.18 - ProductCode: cdebb73f-ddf5-57cd-a4a4-998a5c7283dd -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/electerm/electerm/releases/download/v3.7.18/electerm-3.7.18-win-x64-installer.exe - InstallerSha256: CED1C743BD92D497C69F08F48D739549B96A6F434AA101DB702FEDF9581E6B3E - InstallerSwitches: - Custom: /CURRENTUSER -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/electerm/electerm/releases/download/v3.7.18/electerm-3.7.18-win-x64-installer.exe - InstallerSha256: CED1C743BD92D497C69F08F48D739549B96A6F434AA101DB702FEDF9581E6B3E - InstallerSwitches: - Custom: /ALLUSERS -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/e/electerm/electerm/3.7.18/electerm.electerm.locale.en-US.yaml b/manifests/e/electerm/electerm/3.7.18/electerm.electerm.locale.en-US.yaml deleted file mode 100644 index 8858c314ec6e..000000000000 --- a/manifests/e/electerm/electerm/3.7.18/electerm.electerm.locale.en-US.yaml +++ /dev/null @@ -1,43 +0,0 @@ -# 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: electerm.electerm -PackageVersion: 3.7.18 -PackageLocale: en-US -Publisher: ZHAO Xudong -PublisherUrl: https://github.com/electerm/electerm -PublisherSupportUrl: https://github.com/electerm/electerm/issues -PrivacyUrl: https://github.com/electerm/electerm/wiki/privacy-notice -Author: ZHAO Xudong -PackageName: electerm -PackageUrl: https://github.com/electerm/electerm -License: MIT -LicenseUrl: https://github.com/electerm/electerm/blob/HEAD/LICENSE -Copyright: Copyright (c) 2017~tomorrow electerm, ZHAO Xudong -CopyrightUrl: https://raw.githubusercontent.com/electerm/electerm/master/LICENSE -ShortDescription: Terminal/ssh/sftp/ftp/telnet/serialport/RDP/VNC/Spice client(linux, mac, win) -Description: Terminal/ssh/sftp/ftp/telnet/serialport/RDP/VNC/Spice client(linux, mac, win) -Moniker: electerm -Tags: -- developer-tools -- file-manager -- powershell -- rdp -- serialport -- sftp -- shell -- spice -- ssh -- telnet -- terminal -- utilities -- vnc -- wsl -ReleaseNotes: |- - Quick bug fix release - - Fix ssh agent login - 快速修复发布 - - 修复 ssh agent 登录问题 -ReleaseNotesUrl: https://github.com/electerm/electerm/releases/tag/v3.7.18 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/e/evilmartians/lefthook/2.1.9/evilmartians.lefthook.installer.yaml b/manifests/e/evilmartians/lefthook/2.1.9/evilmartians.lefthook.installer.yaml new file mode 100644 index 000000000000..5678d3a6dc0b --- /dev/null +++ b/manifests/e/evilmartians/lefthook/2.1.9/evilmartians.lefthook.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: evilmartians.lefthook +PackageVersion: 2.1.9 +InstallerType: portable +UpgradeBehavior: install +Commands: +- lefthook +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/evilmartians/lefthook/releases/download/v2.1.9/lefthook_2.1.9_Windows_i386.exe + InstallerSha256: 65D9AB3A911616299E7BC2AB3D5536CABDD14B345BA7907C047BE2F74558847F +- Architecture: x64 + InstallerUrl: https://github.com/evilmartians/lefthook/releases/download/v2.1.9/lefthook_2.1.9_Windows_x86_64.exe + InstallerSha256: BCB94C2524153E8E003A4FE3AE77F86E84729C9F089EFC1C6B20C00E832DE046 +- Architecture: arm64 + InstallerUrl: https://github.com/evilmartians/lefthook/releases/download/v2.1.9/lefthook_2.1.9_Windows_arm64.exe + InstallerSha256: 5EF7B4446D14F23F2A4CC935FB8F68A93A9DAF6BC98752726137657A14DB1C40 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/e/evilmartians/lefthook/2.1.9/evilmartians.lefthook.locale.en-US.yaml b/manifests/e/evilmartians/lefthook/2.1.9/evilmartians.lefthook.locale.en-US.yaml new file mode 100644 index 000000000000..f2a1b46a5f4e --- /dev/null +++ b/manifests/e/evilmartians/lefthook/2.1.9/evilmartians.lefthook.locale.en-US.yaml @@ -0,0 +1,30 @@ +# 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: evilmartians.lefthook +PackageVersion: 2.1.9 +PackageLocale: en-US +Publisher: Evil Martians +PublisherUrl: https://evilmartians.com/ +PublisherSupportUrl: https://github.com/evilmartians/lefthook/issues +PackageName: Lefthook +PackageUrl: https://github.com/evilmartians/lefthook +License: MIT +LicenseUrl: https://github.com/evilmartians/lefthook/blob/HEAD/LICENSE +ShortDescription: Fast and powerful Git hooks manager for any type of projects. +Tags: +- git +- go +- golang +- hacktoberfest +- hooks +- lefthook +- manager +ReleaseNotes: |- + Changelog + - 1d35cba chore: add pretty gradient (#1432) + - 22be6c5 deps: May 2026 (#1415) + - 1bae568 fix: update hooks path after resetting (#1431) +ReleaseNotesUrl: https://github.com/evilmartians/lefthook/releases/tag/v2.1.9 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/e/evilmartians/lefthook/2.1.9/evilmartians.lefthook.yaml b/manifests/e/evilmartians/lefthook/2.1.9/evilmartians.lefthook.yaml new file mode 100644 index 000000000000..937fb3278bff --- /dev/null +++ b/manifests/e/evilmartians/lefthook/2.1.9/evilmartians.lefthook.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: evilmartians.lefthook +PackageVersion: 2.1.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/f/FeiXiangShi/Rustle/0.4.4/FeiXiangShi.Rustle.installer.yaml b/manifests/f/FeiXiangShi/Rustle/0.4.4/FeiXiangShi.Rustle.installer.yaml new file mode 100644 index 000000000000..cda671129f84 --- /dev/null +++ b/manifests/f/FeiXiangShi/Rustle/0.4.4/FeiXiangShi.Rustle.installer.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: FeiXiangShi.Rustle +PackageVersion: 0.4.4 +InstallerType: portable +InstallModes: +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- rustle +FileExtensions: +- flac +- m4a +- mp3 +- ogg +- opus +- wav +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Fei-xiangShi/Rustle/releases/download/v0.4.4/rustle-windows-x86_64.exe + InstallerSha256: 943DFE48A257A46626472A768FB8056105932F65CCF24008273A50C3C73BBF81 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-05-29 diff --git a/manifests/f/FeiXiangShi/Rustle/0.4.4/FeiXiangShi.Rustle.locale.zh-CN.yaml b/manifests/f/FeiXiangShi/Rustle/0.4.4/FeiXiangShi.Rustle.locale.zh-CN.yaml new file mode 100644 index 000000000000..69cb9b1bf02b --- /dev/null +++ b/manifests/f/FeiXiangShi/Rustle/0.4.4/FeiXiangShi.Rustle.locale.zh-CN.yaml @@ -0,0 +1,31 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: FeiXiangShi.Rustle +PackageVersion: 0.4.4 +PackageLocale: zh-CN +Publisher: Fei_xiangShi +PublisherUrl: https://github.com/Fei-xiangShi +PublisherSupportUrl: https://github.com/Fei-xiangShi/Rustle/issues +Author: Fei_xiangShi +PackageName: rustle +PackageUrl: https://github.com/Fei-xiangShi/Rustle +License: AGPL-3.0-or-later +LicenseUrl: https://github.com/Fei-xiangShi/Rustle/blob/HEAD/LICENSE +ShortDescription: 一款带有 Apple Music 风格歌词、支持 GPU 加速渲染、使用 Rust 编写的跨平台音乐播放器。 +Description: Rustle 是一款使用 Rust 和 iced 构建的现代音乐播放器,支持网易云音乐在线播放、GPU 加速歌词渲染以及多种音频格式。 +Moniker: rustle +Tags: +- iced +- music +- netease +- netease-cloud-music +- netease-music +- rust +- wayland +ReleaseNotesUrl: https://github.com/Fei-xiangShi/Rustle/releases/tag/v0.4.4 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/Fei-xiangShi/Rustle/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/FeiXiangShi/Rustle/0.4.4/FeiXiangShi.Rustle.yaml b/manifests/f/FeiXiangShi/Rustle/0.4.4/FeiXiangShi.Rustle.yaml new file mode 100644 index 000000000000..39c0cab08825 --- /dev/null +++ b/manifests/f/FeiXiangShi/Rustle/0.4.4/FeiXiangShi.Rustle.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: FeiXiangShi.Rustle +PackageVersion: 0.4.4 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/f/Filedini/Filedini/0.6.1309.1327/Filedini.Filedini.installer.yaml b/manifests/f/Filedini/Filedini/0.6.1309.1327/Filedini.Filedini.installer.yaml new file mode 100644 index 000000000000..47f60ca8b5ec --- /dev/null +++ b/manifests/f/Filedini/Filedini/0.6.1309.1327/Filedini.Filedini.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: Filedini.Filedini +PackageVersion: 0.6.1309.1327 +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://installer.filedini.app/Filedini-0.6.1309.1327-Installer.exe + InstallerSha256: 215340C2F56DCD05E698B4434DDBA49743AF122ACA130EBFD49F9236F0623976 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/f/Filedini/Filedini/0.6.1309.1327/Filedini.Filedini.locale.en-US.yaml b/manifests/f/Filedini/Filedini/0.6.1309.1327/Filedini.Filedini.locale.en-US.yaml new file mode 100644 index 000000000000..5bd9bb0db98f --- /dev/null +++ b/manifests/f/Filedini/Filedini/0.6.1309.1327/Filedini.Filedini.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: Filedini.Filedini +PackageVersion: 0.6.1309.1327 +PackageLocale: en-US +Publisher: Filedini +PackageName: Filedini +License: Proprietary +ShortDescription: A fast, keyboard-first file manager for Windows. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/Filedini/Filedini/0.6.1309.1327/Filedini.Filedini.yaml b/manifests/f/Filedini/Filedini/0.6.1309.1327/Filedini.Filedini.yaml new file mode 100644 index 000000000000..ac8a46fa49e1 --- /dev/null +++ b/manifests/f/Filedini/Filedini/0.6.1309.1327/Filedini.Filedini.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: Filedini.Filedini +PackageVersion: 0.6.1309.1327 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/GodotEngine/GodotEngine/Mono/4.6.3/GodotEngine.GodotEngine.Mono.installer.yaml b/manifests/g/GodotEngine/GodotEngine/Mono/4.6.3/GodotEngine.GodotEngine.Mono.installer.yaml new file mode 100644 index 000000000000..73b449870905 --- /dev/null +++ b/manifests/g/GodotEngine/GodotEngine/Mono/4.6.3/GodotEngine.GodotEngine.Mono.installer.yaml @@ -0,0 +1,35 @@ +# Created with AutoPublish using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GodotEngine.GodotEngine.Mono +PackageVersion: 4.6.3 +InstallerType: zip +NestedInstallerType: portable +ReleaseDate: 2026-05-20 +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: Godot_v4.6.3-stable_mono_win32/Godot_v4.6.3-stable_mono_win32.exe + PortableCommandAlias: godot + - RelativeFilePath: Godot_v4.6.3-stable_mono_win32/Godot_v4.6.3-stable_mono_win32_console.exe + PortableCommandAlias: godot_console + InstallerUrl: https://github.com/godotengine/godot/releases/download/4.6.3-stable/Godot_v4.6.3-stable_mono_win32.zip + InstallerSha256: 6B7D84EE6C3017253A605F00A0F8CB669B05E958C345FD14896B5F4067B246A7 +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: Godot_v4.6.3-stable_mono_win64/Godot_v4.6.3-stable_mono_win64.exe + PortableCommandAlias: godot + - RelativeFilePath: Godot_v4.6.3-stable_mono_win64/Godot_v4.6.3-stable_mono_win64_console.exe + PortableCommandAlias: godot_console + InstallerUrl: https://github.com/godotengine/godot/releases/download/4.6.3-stable/Godot_v4.6.3-stable_mono_win64.zip + InstallerSha256: 0015A6F2FAB16E255919380864E8B5320017B1258C01121D5521B133DBE705F6 +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: Godot_v4.6.3-stable_mono_windows_arm64/Godot_v4.6.3-stable_mono_windows_arm64.exe + PortableCommandAlias: godot + - RelativeFilePath: Godot_v4.6.3-stable_mono_windows_arm64/Godot_v4.6.3-stable_mono_windows_arm64_console.exe + PortableCommandAlias: godot_console + InstallerUrl: https://github.com/godotengine/godot/releases/download/4.6.3-stable/Godot_v4.6.3-stable_mono_windows_arm64.zip + InstallerSha256: 3DA5650A6B7F56211233FBE4B334A40BEB538B9990FE44BB0106913BF0068472 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/GodotEngine/GodotEngine/Mono/4.6.3/GodotEngine.GodotEngine.Mono.locale.en-US.yaml b/manifests/g/GodotEngine/GodotEngine/Mono/4.6.3/GodotEngine.GodotEngine.Mono.locale.en-US.yaml new file mode 100644 index 000000000000..d9e7e6d57ae8 --- /dev/null +++ b/manifests/g/GodotEngine/GodotEngine/Mono/4.6.3/GodotEngine.GodotEngine.Mono.locale.en-US.yaml @@ -0,0 +1,50 @@ +# Created with AutoPublish using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GodotEngine.GodotEngine.Mono +PackageVersion: 4.6.3 +PackageLocale: en-US +Publisher: Godot Engine +PublisherUrl: https://godotengine.org/ +PublisherSupportUrl: https://github.com/godotengine/godot/issues +PrivacyUrl: https://godotengine.org/privacy-policy +Author: Godot Engine +PackageName: Godot Engine (Mono) +PackageUrl: https://github.com/godotengine/godot +License: MIT +LicenseUrl: https://github.com/godotengine/godot/blob/HEAD/LICENSE.txt +Copyright: |- + Copyright (c) 2014-present Godot Engine contributors. + Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. +CopyrightUrl: https://godotengine.org/license +ShortDescription: The Mono version of the Godot Engine +Moniker: godot-mono +Tags: +- game-development +- game-engine +- gamedev +- godot +- godotengine +- hacktoberfest +- multi-platform +- open-source +ReleaseNotes: |- + Godot 4.6.3 is a maintenance release addressing stability and usability issues, and fixing all sorts of bugs. Maintenance releases are compatible with previous releases and are recommended for adoption. + Report bugs on GitHub after checking that they haven't been reported: + - https://github.com/godotengine/godot/issues + - Release notes + - Complete changelog + - Curated changelog + - Download (GitHub): Expand Assets below +ReleaseNotesUrl: https://github.com/godotengine/godot/releases/tag/4.6.3-stable +InstallationNotes: |- + Note when running WinGet to Install This Package *Without Admin Privileges*: + WinGet *Can Not* Create Command Line Alias(es) unless Admin Privileges are provided, as without Admin Privileges Winget *Can Not* Create Symbolic Links for those Command Lines Aliases. + More Details: + https://github.com/microsoft/winget-cli/issues/549 + https://github.com/microsoft/winget-cli/issues/361 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.godotengine.org/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GodotEngine/GodotEngine/Mono/4.6.3/GodotEngine.GodotEngine.Mono.yaml b/manifests/g/GodotEngine/GodotEngine/Mono/4.6.3/GodotEngine.GodotEngine.Mono.yaml new file mode 100644 index 000000000000..c9dfcac9fa98 --- /dev/null +++ b/manifests/g/GodotEngine/GodotEngine/Mono/4.6.3/GodotEngine.GodotEngine.Mono.yaml @@ -0,0 +1,8 @@ +# Created with AutoPublish using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: GodotEngine.GodotEngine.Mono +PackageVersion: 4.6.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/GrafanaLabs/Grafana/Enterprise/8.0.1.0/GrafanaLabs.Grafana.Enterprise.locale.en-US.yaml b/manifests/g/GrafanaLabs/Grafana/Enterprise/8.0.1.0/GrafanaLabs.Grafana.Enterprise.locale.en-US.yaml index df0fa9550d5c..a12e67fb1b30 100644 --- a/manifests/g/GrafanaLabs/Grafana/Enterprise/8.0.1.0/GrafanaLabs.Grafana.Enterprise.locale.en-US.yaml +++ b/manifests/g/GrafanaLabs/Grafana/Enterprise/8.0.1.0/GrafanaLabs.Grafana.Enterprise.locale.en-US.yaml @@ -17,7 +17,7 @@ LicenseUrl: https://grafana.com/legal/grafana-labs-license/ # CopyrightUrl: ShortDescription: Grafana allows you to query, visualize, alert on and understand your metrics no matter where they are stored. Create, explore, and share dashboards with your team and foster a data driven culture. Description: Grafana allows you to query, visualize, alert on and understand your metrics no matter where they are stored. Create, explore, and share dashboards with your team and foster a data driven culture. The Enterprise Edition has the same features as the Open Source Edition and can be used free of charge. It also has the benefit of allowing an upgrade to the full Enterprise feature set, including support for Enterprise plugins. -Moniker: grafana-e +Moniker: grafana-enterprise Tags: - dashboard - data diff --git a/manifests/g/ggml/llamacpp/b9401/ggml.llamacpp.installer.yaml b/manifests/g/ggml/llamacpp/b9401/ggml.llamacpp.installer.yaml new file mode 100644 index 000000000000..27b029bc3df6 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b9401/ggml.llamacpp.installer.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b9401 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: llama-batched-bench.exe +- RelativeFilePath: llama-bench.exe +- RelativeFilePath: llama-cli.exe +- RelativeFilePath: llama-gguf-split.exe +- RelativeFilePath: llama-imatrix.exe +- RelativeFilePath: llama-mtmd-cli.exe +- RelativeFilePath: llama-perplexity.exe +- RelativeFilePath: llama-quantize.exe +- RelativeFilePath: llama-server.exe +- RelativeFilePath: llama-tokenize.exe +- RelativeFilePath: llama-tts.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2026-05-29 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ggml-org/llama.cpp/releases/download/b9401/llama-b9401-bin-win-vulkan-x64.zip + InstallerSha256: 0E7766391C44C6E27C9FBA58756E4E1255525A376B6011BD8736026C61B333A8 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/ggml/llamacpp/b9401/ggml.llamacpp.locale.en-US.yaml b/manifests/g/ggml/llamacpp/b9401/ggml.llamacpp.locale.en-US.yaml new file mode 100644 index 000000000000..efbd68c3e218 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b9401/ggml.llamacpp.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b9401 +PackageLocale: en-US +Publisher: ggml +PublisherUrl: https://github.com/ggml-org +PublisherSupportUrl: https://github.com/ggml-org/llama.cpp/issues +PackageName: llama.cpp +PackageUrl: https://github.com/ggml-org/llama.cpp +License: MIT +LicenseUrl: https://github.com/ggml-org/llama.cpp/blob/HEAD/LICENSE +ShortDescription: LLM inference in C/C++ +Tags: +- ggml +- llama +ReleaseNotes: |- + mtmd-debug: add color and rainbow mode (#23829) + - mtmd-debug: add color and rainbow mode + - fix M_PI + - max_dist + macOS/iOS: + - macOS Apple Silicon (arm64) + - macOS Apple Silicon (arm64, KleidiAI enabled) DISABLED + - macOS Intel (x64) + - iOS XCFramework + Linux: + - Ubuntu x64 (CPU) + - Ubuntu arm64 (CPU) + - Ubuntu s390x (CPU) + - Ubuntu x64 (Vulkan) + - Ubuntu arm64 (Vulkan) + - Ubuntu x64 (ROCm 7.2) + - Ubuntu x64 (OpenVINO) + - Ubuntu x64 (SYCL FP32) DISABLED + Android: + - Android arm64 (CPU) + Windows: + - Windows x64 (CPU) + - Windows arm64 (CPU) + - Windows x64 (CUDA 12) - CUDA 12.4 DLLs + - Windows x64 (CUDA 13) - CUDA 13.3 DLLs + - Windows x64 (Vulkan) + - Windows x64 (SYCL) DISABLED + - Windows x64 (HIP) + openEuler: + - DISABLED + - openEuler x86 (310p) + - openEuler x86 (910b, ACL Graph) + - openEuler aarch64 (310p) + - openEuler aarch64 (910b, ACL Graph) + UI: + - UI +ReleaseNotesUrl: https://github.com/ggml-org/llama.cpp/releases/tag/b9401 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/ggml-org/llama.cpp/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/ggml/llamacpp/b9401/ggml.llamacpp.yaml b/manifests/g/ggml/llamacpp/b9401/ggml.llamacpp.yaml new file mode 100644 index 000000000000..95f5d497ec69 --- /dev/null +++ b/manifests/g/ggml/llamacpp/b9401/ggml.llamacpp.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.15.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: ggml.llamacpp +PackageVersion: b9401 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.installer.yaml b/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.installer.yaml new file mode 100644 index 000000000000..8caa991178f1 --- /dev/null +++ b/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: hellodigua.ChatLab +PackageVersion: 0.22.1 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 5c93c6d5-cfd9-53ea-a37a-26c1e3d35c8d +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/ChatLab/ChatLab/releases/download/v0.22.1/ChatLab-0.22.1-setup.exe + InstallerSha256: 7A5EDF9685FC76F38363966C0BA841E425BF39C9440B03E21059F4E1F3B4F802 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/ChatLab/ChatLab/releases/download/v0.22.1/ChatLab-0.22.1-setup.exe + InstallerSha256: 7A5EDF9685FC76F38363966C0BA841E425BF39C9440B03E21059F4E1F3B4F802 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.locale.en-US.yaml b/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.locale.en-US.yaml new file mode 100644 index 000000000000..5d65549b555c --- /dev/null +++ b/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: hellodigua.ChatLab +PackageVersion: 0.22.1 +PackageLocale: en-US +Publisher: digua +PublisherUrl: https://digua.moe/ +PublisherSupportUrl: https://github.com/hellodigua/ChatLab/issues +PackageName: ChatLab +PackageUrl: https://chatlab.fun/ +License: AGPL-3.0 +LicenseUrl: https://github.com/hellodigua/ChatLab/blob/HEAD/LICENSE +Copyright: Copyright © 2026 ChatLab +ShortDescription: 'A Local-first chat analysis tool: Relive your social memories powered by SQL and AI Agents.' +Description: |- + ChatLab is a free, open-source, and local-first application dedicated to analyzing chat records. Through an AI Agent and a flexible SQL engine, you can freely dissect, query, and even reconstruct your social data. + We refuse to upload your privacy to the cloud; instead, we bring powerful analytics directly to your computer. + Currently supported: Chat record analysis for LINE, WeChat, QQ, WhatsApp, Instagram and Discord. Upcoming support: Messenger, iMessage. + The project is still in early iteration, so there are many bugs and unfinished features. If you encounter any issues, feel free to provide feedback. + Core Features + - 🚀 Ultimate Performance: Utilizing stream computing and multi-threaded parallel architecture, it maintains fluid interaction and response even with millions of chat records. + - 🔒 Privacy Protection: Chat records and configurations are stored in your local database, and all analysis is performed locally (with the exception of AI features). + - 🤖 Intelligent AI Agent: Integrated with 10+ Function Calling tools and supporting dynamic scheduling to deeply excavate interesting insights from chat records. + - 📊 Multi-dimensional Data Visualization: Provides intuitive analysis charts for activity trends, time distribution patterns, member rankings, and more. + - 🧩 Format Standardization: Through a powerful data abstraction layer, it bridges the format differences between various chat applications, allowing any chat records to be analyzed. +Tags: +- chat +- chat-records +ReleaseNotesUrl: https://github.com/ChatLab/ChatLab/releases/tag/v0.22.1 +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://chatlab.fun/usage/how-to-export.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.locale.zh-CN.yaml b/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.locale.zh-CN.yaml new file mode 100644 index 000000000000..522a1a84a302 --- /dev/null +++ b/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.locale.zh-CN.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: hellodigua.ChatLab +PackageVersion: 0.22.1 +PackageLocale: zh-CN +PackageUrl: https://chatlab.fun/cn/ +ShortDescription: 本地化的聊天记录分析工具,通过 SQL 和 AI Agent 回顾你的社交记忆。 +Description: |- + ChatLab 是一个免费、开源、本地化的,专注于分析聊天记录的应用。通过 AI Agent 和灵活的 SQL 引擎,你可以自由地拆解、查询甚至重构你的社交数据。 + 目前已支持: WhatsApp、LINE、微信、QQ、Discord、Instagram 的聊天记录分析,即将支持: iMessage、Messenger、Kakao Talk。 + 核心特性 + - 🚀 极致性能:使用流式计算与多线程并行架构,就算是百万条级别的聊天记录,依然拥有丝滑交互和响应。 + - 🔒 保护隐私:聊天记录和配置都存在你的本地数据库,所有分析都在本地进行(AI 功能例外)。 + - 🤖 智能 AI Agent:集成 10+ Function Calling 工具,支持动态调度,深度挖掘聊天记录中的更多有趣。 + - 📊 多维数据可视化:提供活跃度趋势、时间规律分布、成员排行等多个维度的直观分析图表。 + - 🧩 格式标准化:通过强大的数据抽象层,抹平不同聊天软件的格式差异,任何聊天记录都能分析。 +Tags: +- 聊天 +- 聊天记录 +ReleaseNotes: |- + What's New + Adds session summary detail level settings, and fixes CLI Web batch summary freeze, AI config edit misidentification, and several API credential detection issues. + 更新内容 + 新增会话摘要详细程度配置,修复服务版批量摘要卡死、AI 配置编辑误判及多处 AI 凭据检测问题。 +ReleaseNotesUrl: https://github.com/hellodigua/ChatLab/releases/tag/v0.9.3 +Documentations: +- DocumentLabel: 用户手册 + DocumentUrl: https://chatlab.fun/cn/usage/how-to-export.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.yaml b/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.yaml new file mode 100644 index 000000000000..27186329ea4f --- /dev/null +++ b/manifests/h/hellodigua/ChatLab/0.22.1/hellodigua.ChatLab.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: hellodigua.ChatLab +PackageVersion: 0.22.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.installer.yaml b/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.installer.yaml index d09bd18317a6..bd997deb2b85 100644 --- a/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.installer.yaml +++ b/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.installer.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2026/May/19 +# Created using wingetcreate 1.12.8.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: iTop.iTopEasyDesktop @@ -15,4 +15,4 @@ Installers: InstallerSha256: 2460BC2C81DAED88B4EDBF437EFB61A2CD7FAD5A7AE14C13A138B98620CA9D80 ManifestType: installer ManifestVersion: 1.12.0 -ReleaseDate: 2026-03-30 +ReleaseDate: 2026-05-19 diff --git a/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.locale.en-US.yaml b/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.locale.en-US.yaml index d5a8b5b69cc5..f3ccc639d235 100644 --- a/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.locale.en-US.yaml +++ b/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2026/May/19 +# Created using wingetcreate 1.12.8.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: iTop.iTopEasyDesktop @@ -16,15 +16,13 @@ Copyright: Copyright © iTop Inc. All rights reserved. CopyrightUrl: https://www.itopvpn.com/terms/ ShortDescription: Free Desktop Organizer and Lively Wallpapers - iTop Easy Desktop ReleaseNotes: |- - v4.2 (2026-03-27) - - [Box] Optimized layout logic for smarter detection and auto-adjustment of desktop changes - - [Box] Added support for common shortcut operations, such as copying (Ctrl + drag icon) and creating shortcuts (Alt + drag icon) - - [Wallpapers] Added multi-monitor support: set separate static wallpapers to differentiate work and personal spaces - - [Personalization] Newly added Desktop Icons settings, including background color, border color, transparency, and more - - [Personalization] Added two new Vivi-themed mouse styles - - [Widgets] iNotes now supports title editing for easier note labeling - - Streamlined application installation for a faster setup - - General performance improvements and bug fixes + v4.3 (2026-05-19) + - [Box] Optimized the layout of uncategorized desktop icons to match Windows system settings + - [Box] Improved compatibility with OneDrive to resolve the blank icon issues + - [Wallpapers] Added over 2000 dynamic and static wallpapers + - [Wallpapers] Optimized wallpaper upload function + - [Widgets] Newly supported world clock in Clock widget + - Fixed known issues PurchaseUrl: https://www.itopvpn.com/store/ Documentations: - DocumentLabel: Blog diff --git a/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.yaml b/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.yaml index cc5436c443ba..70afb79bf96f 100644 --- a/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.yaml +++ b/manifests/i/iTop/iTopEasyDesktop/4.3.0.342/iTop.iTopEasyDesktop.yaml @@ -1,4 +1,4 @@ -# Automatically updated by the winget bot at 2026/May/19 +# Created using wingetcreate 1.12.8.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: iTop.iTopEasyDesktop diff --git a/manifests/j/Jackett/Jackett/0.24.1970/Jackett.Jackett.installer.yaml b/manifests/j/Jackett/Jackett/0.24.1970/Jackett.Jackett.installer.yaml new file mode 100644 index 000000000000..e61e5588b6bb --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.24.1970/Jackett.Jackett.installer.yaml @@ -0,0 +1,26 @@ +# 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: Jackett.Jackett +PackageVersion: 0.24.1970 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ReleaseDate: 2026-05-28 +AppsAndFeaturesEntries: +- ProductCode: '{C2A9FC00-AA48-4F17-9A72-62FBCEE2785B}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramData%\Jackett' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Jackett/Jackett/releases/download/v0.24.1970/Jackett.Installer.Windows.exe + InstallerSha256: 1CB5FFF5C75FC7E5624EA17CEC3A71608768C0E3B8F7FC4CA25826276B235F75 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/Jackett/Jackett/0.24.1970/Jackett.Jackett.locale.en-US.yaml b/manifests/j/Jackett/Jackett/0.24.1970/Jackett.Jackett.locale.en-US.yaml new file mode 100644 index 000000000000..a13a983915f9 --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.24.1970/Jackett.Jackett.locale.en-US.yaml @@ -0,0 +1,40 @@ +# 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: Jackett.Jackett +PackageVersion: 0.24.1970 +PackageLocale: en-US +Publisher: Jackett +PublisherUrl: https://github.com/Jackett/Jackett +PublisherSupportUrl: https://github.com/Jackett/Jackett/issues +Author: Jackett Contributors +PackageName: Jackett +PackageUrl: https://github.com/Jackett/Jackett +License: GPL-2.0 +LicenseUrl: https://github.com/Jackett/Jackett/blob/HEAD/LICENSE +Copyright: Copyright (C) 1989, 1991 Free Software Foundation, Inc. +CopyrightUrl: https://github.com/Jackett/Jackett/blob/master/LICENSE +ShortDescription: API Support for your favorite torrent trackers. +Description: |- + Jackett works as a proxy server, it translates queries from apps (Sonarr, Radarr, SickRage, CouchPotato, Mylar, etc) into tracker-site-specific http queries, parses the html response, then sends results back to the requesting software. + This allows for getting recent uploads (like RSS) and performing searches. + Jackett is a single repository of maintained indexer scraping and translation logic - removing the burden from other apps. +Moniker: jackett +Tags: +- indexer +- p2p +- proxy +- rss +- sonarr +- torent-management +- torrent +- torrent-search-engine +- trackers +ReleaseNotes: |- + Changes: + - 7c2b5a8 ebooks-shares: new cat + - 2113977 zenith: comment out MR as global-only + This list of changes was auto generated. +ReleaseNotesUrl: https://github.com/Jackett/Jackett/releases/tag/v0.24.1970 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/Jackett/Jackett/0.24.1970/Jackett.Jackett.yaml b/manifests/j/Jackett/Jackett/0.24.1970/Jackett.Jackett.yaml new file mode 100644 index 000000000000..57c10bbf34cc --- /dev/null +++ b/manifests/j/Jackett/Jackett/0.24.1970/Jackett.Jackett.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: Jackett.Jackett +PackageVersion: 0.24.1970 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.3.0.2/Jellyfin2Samsung.Jellyfin2Samsung.installer.yaml b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.3.0.2/Jellyfin2Samsung.Jellyfin2Samsung.installer.yaml new file mode 100644 index 000000000000..0bdc2d65c9a5 --- /dev/null +++ b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.3.0.2/Jellyfin2Samsung.Jellyfin2Samsung.installer.yaml @@ -0,0 +1,21 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Jellyfin2Samsung.Jellyfin2Samsung +PackageVersion: 2.3.0.2 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +ProductCode: '{A9E1B43B-0D46-475B-B11D-F6E96A661A4D}' +ReleaseDate: 2026-05-29 +AppsAndFeaturesEntries: +- ProductCode: '{A9E1B43B-0D46-475B-B11D-F6E96A661A4D}' + UpgradeCode: '{6F3E2A1B-4C5D-4E6F-A7B8-9C0D1E2F3A4B}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Jellyfin2Samsung' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Jellyfin2Samsung/Samsung-Jellyfin-Installer/releases/download/v2.3.0.2/Jellyfin2Samsung-v2.3.0.2-win-x64.msi + InstallerSha256: 77D777792A5CB754C6CCE15337E6C6FF855ACCF93158E88E2E5147A7CBC7C454 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.3.0.2/Jellyfin2Samsung.Jellyfin2Samsung.locale.en-US.yaml b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.3.0.2/Jellyfin2Samsung.Jellyfin2Samsung.locale.en-US.yaml new file mode 100644 index 000000000000..8d646eb0fec3 --- /dev/null +++ b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.3.0.2/Jellyfin2Samsung.Jellyfin2Samsung.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Jellyfin2Samsung.Jellyfin2Samsung +PackageVersion: 2.3.0.2 +PackageLocale: en-US +Publisher: Jellyfin2Samsung +PublisherUrl: https://github.com/Jellyfin2Samsung +PublisherSupportUrl: https://github.com/Jellyfin2Samsung/Samsung-Jellyfin-Installer/issues +PackageName: Jellyfin2Samsung +PackageUrl: https://github.com/Jellyfin2Samsung/Samsung-Jellyfin-Installer +License: MIT +LicenseUrl: https://github.com/Jellyfin2Samsung/Samsung-Jellyfin-Installer/blob/HEAD/LICENSE +ShortDescription: Bridge tool to install Jellyfin on all Samsung Tizen Devices +Tags: +- jellyfin +- jellyfin-tizen +- sdb +- tizen +- tizen-studio +- tizen-tv +ReleaseNotes: |- + 📦 [v2.3.0.2] – 2026-05-29 + ✅ What's New & Improved + - Added macos-arm64 binary path + ─────────────────────┬─────────┬─────────────────────────── + Platform │Status │Notes + ─────────────────────┼─────────┼─────────────────────────── + 🍎 macOS (.app + dmg)│✅ Stable│ARM64 + Intel + ─────────────────────┼─────────┼─────────────────────────── + 🍎 macOS (CLI) │✅ Stable│Per-arch tar.gz + ─────────────────────┼─────────┼─────────────────────────── + 🐧 Linux │✅ Stable│x64 + ARM64 (tar.gz / .deb) + ─────────────────────┼─────────┼─────────────────────────── + 🪟 Windows │✅ Stable│CI-built + ─────────────────────┴─────────┴─────────────────────────── + 🛡️ Security Notice + Antivirus warnings may occur and are likely false positives. +ReleaseNotesUrl: https://github.com/Jellyfin2Samsung/Samsung-Jellyfin-Installer/releases/tag/v2.3.0.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.3.0.2/Jellyfin2Samsung.Jellyfin2Samsung.yaml b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.3.0.2/Jellyfin2Samsung.Jellyfin2Samsung.yaml new file mode 100644 index 000000000000..9ff87d4783a8 --- /dev/null +++ b/manifests/j/Jellyfin2Samsung/Jellyfin2Samsung/2.3.0.2/Jellyfin2Samsung.Jellyfin2Samsung.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Jellyfin2Samsung.Jellyfin2Samsung +PackageVersion: 2.3.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.installer.yaml b/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.installer.yaml new file mode 100644 index 000000000000..58446fea2f5c --- /dev/null +++ b/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.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: JetBrains.TeamCity +PackageVersion: 2026.1.1 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +ProductCode: JetBrains TeamCity +ReleaseDate: 2026-05-29 +AppsAndFeaturesEntries: +- DisplayVersion: Build 222577 +Installers: +- Architecture: x64 + InstallerUrl: https://download.jetbrains.com/teamcity/TeamCity-2026.1.1.exe + InstallerSha256: FB54DE766E1C7F5E6F1A4F97DF853CCE061F0EC1EE853E81F618E7ED7E98B964 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.locale.en-US.yaml b/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.locale.en-US.yaml new file mode 100644 index 000000000000..570794ec10fe --- /dev/null +++ b/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: JetBrains.TeamCity +PackageVersion: 2026.1.1 +PackageLocale: en-US +Publisher: JetBrains s.r.o. +PublisherUrl: https://www.jetbrains.com/ +PublisherSupportUrl: https://www.jetbrains.com/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: JetBrains TeamCity +PackageUrl: https://www.jetbrains.com/teamcity/ +License: Proprietary +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2026 JetBrains s.r.o. +ShortDescription: Powerful continuous integration for DevOps-centric teams +Description: The powerful Continuous Integration and Deployment tool for Developers and DevOps Engineers. +Moniker: teamcity +Tags: +- cd +- ci +- develop +- development +- devops +ReleaseNotesUrl: https://www.jetbrains.com/help/teamcity/2026.1/teamcity-2026-1-1-release-notes.html +PurchaseUrl: https://www.jetbrains.com/teamcity/buy/ +Documentations: +- DocumentLabel: Learn TeamCity + DocumentUrl: https://www.jetbrains.com/teamcity/learn/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.locale.zh-CN.yaml b/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.locale.zh-CN.yaml new file mode 100644 index 000000000000..f4cc54c33c70 --- /dev/null +++ b/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.locale.zh-CN.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: JetBrains.TeamCity +PackageVersion: 2026.1.1 +PackageLocale: zh-CN +Publisher: JetBrains s.r.o. +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: JetBrains TeamCity +PackageUrl: https://www.jetbrains.com/zh-cn/teamcity/ +License: 专有软件 +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2026 JetBrains s.r.o. +ShortDescription: 面向以 DevOps 为中心的团队的强大持续集成 +Description: 面向开发者和 DevOps 工程师的强大持续集成和部署工具。 +Tags: +- devops +- 开发 +- 持续交付 +- 持续部署 +- 持续集成 +ReleaseNotesUrl: https://www.jetbrains.com/help/teamcity/2026.1/teamcity-2026-1-1-release-notes.html +PurchaseUrl: https://www.jetbrains.com/zh-cn/teamcity/buy/ +Documentations: +- DocumentLabel: 学习 TeamCity + DocumentUrl: https://www.jetbrains.com/zh-cn/teamcity/learn/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.yaml b/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.yaml new file mode 100644 index 000000000000..be609a1b4fb3 --- /dev/null +++ b/manifests/j/JetBrains/TeamCity/2026.1.1/JetBrains.TeamCity.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: JetBrains.TeamCity +PackageVersion: 2026.1.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/j/janosmiko/lfk/0.12.9/janosmiko.lfk.installer.yaml b/manifests/j/janosmiko/lfk/0.12.9/janosmiko.lfk.installer.yaml new file mode 100644 index 000000000000..f17b7246a121 --- /dev/null +++ b/manifests/j/janosmiko/lfk/0.12.9/janosmiko.lfk.installer.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: janosmiko.lfk +PackageVersion: 0.12.9 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-05-29" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: lfk.exe + PortableCommandAlias: lfk + InstallerUrl: https://github.com/janosmiko/lfk/releases/download/v0.12.9/lfk_0.12.9_windows_amd64.zip + InstallerSha256: 7b7b8029efb3f578b33f6a76ae30efb08fe5f49bfef71b57994595fb2f71429e + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: lfk.exe + PortableCommandAlias: lfk + InstallerUrl: https://github.com/janosmiko/lfk/releases/download/v0.12.9/lfk_0.12.9_windows_arm64.zip + InstallerSha256: 4e29452f08a2ac456bc1be98be3598b54c843ad93fa5760096ebdfa87702c2b0 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/janosmiko/lfk/0.12.9/janosmiko.lfk.locale.en-US.yaml b/manifests/j/janosmiko/lfk/0.12.9/janosmiko.lfk.locale.en-US.yaml new file mode 100644 index 000000000000..dc98b009940e --- /dev/null +++ b/manifests/j/janosmiko/lfk/0.12.9/janosmiko.lfk.locale.en-US.yaml @@ -0,0 +1,28 @@ +# 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: janosmiko.lfk +PackageVersion: 0.12.9 +PackageLocale: en-US +Publisher: janosmiko +PublisherUrl: https://github.com/janosmiko +PublisherSupportUrl: https://github.com/janosmiko/lfk/issues +PackageName: lfk +PackageUrl: https://github.com/janosmiko/lfk +License: Apache-2.0 +LicenseUrl: https://github.com/janosmiko/lfk/blob/main/LICENSE +ShortDescription: Lightning Fast Kubernetes navigator +Description: | + LFK is a lightning-fast, keyboard-focused, yazi-inspired terminal user + interface for navigating and managing Kubernetes clusters. Built for + speed and efficiency, it brings a three-column Miller columns layout + with an owner-based resource hierarchy to your terminal. +Moniker: lfk +Tags: + - kubernetes + - tui + - devops + - k8s + - cli +ReleaseNotesUrl: https://github.com/janosmiko/lfk/releases/tag/v0.12.9 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DefangLabs/Defang/3.0.1/DefangLabs.Defang.yaml b/manifests/j/janosmiko/lfk/0.12.9/janosmiko.lfk.yaml similarity index 59% rename from manifests/d/DefangLabs/Defang/3.0.1/DefangLabs.Defang.yaml rename to manifests/j/janosmiko/lfk/0.12.9/janosmiko.lfk.yaml index 17025e1547fa..5c6025c1a22c 100644 --- a/manifests/d/DefangLabs/Defang/3.0.1/DefangLabs.Defang.yaml +++ b/manifests/j/janosmiko/lfk/0.12.9/janosmiko.lfk.yaml @@ -1,7 +1,7 @@ # This file was generated by GoReleaser. DO NOT EDIT. -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json -PackageIdentifier: DefangLabs.Defang -PackageVersion: 3.0.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: janosmiko.lfk +PackageVersion: 0.12.9 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/k/kubescape/kubescape/4.0.9/kubescape.kubescape.installer.yaml b/manifests/k/kubescape/kubescape/4.0.9/kubescape.kubescape.installer.yaml new file mode 100644 index 000000000000..3a934cd245f3 --- /dev/null +++ b/manifests/k/kubescape/kubescape/4.0.9/kubescape.kubescape.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: kubescape.kubescape +PackageVersion: 4.0.9 +InstallerType: portable +UpgradeBehavior: uninstallPrevious +Commands: +- kubescape +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/kubescape/kubescape/releases/download/v4.0.9/kubescape_4.0.9_windows_amd64.exe + InstallerSha256: C9F9E268FF974F3C4A2E1960DFAA5C8ABED3B24760E727790632427853CAF387 +- Architecture: arm64 + InstallerUrl: https://github.com/kubescape/kubescape/releases/download/v4.0.9/kubescape_4.0.9_windows_arm64.exe + InstallerSha256: 0D41DA98C24C036317DD6FAC2C95636B4A54662D7ADF4D6E59B34805B1EECF43 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/k/kubescape/kubescape/4.0.9/kubescape.kubescape.locale.en-US.yaml b/manifests/k/kubescape/kubescape/4.0.9/kubescape.kubescape.locale.en-US.yaml new file mode 100644 index 000000000000..fd8a5978be41 --- /dev/null +++ b/manifests/k/kubescape/kubescape/4.0.9/kubescape.kubescape.locale.en-US.yaml @@ -0,0 +1,150 @@ +# 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: kubescape.kubescape +PackageVersion: 4.0.9 +PackageLocale: en-US +Publisher: kubescape +PublisherUrl: https://kubescape.io/ +PublisherSupportUrl: https://github.com/kubescape/kubescape/issues +Author: The Kubescape Authors +PackageName: kubescape +PackageUrl: https://github.com/kubescape/kubescape +License: Apache-2.0 +LicenseUrl: https://github.com/kubescape/kubescape/blob/HEAD/LICENSE +Copyright: Copyright 2021-2023, the Kubescape Authors +ShortDescription: An open-source Kubernetes security platform for your IDE, CI/CD pipelines, and clusters +Description: Kubescape is an open-source Kubernetes security platform. It includes risk analysis, security compliance, and misconfiguration scanning. Targeted at the DevSecOps practitioner or platform engineer, it offers an easy-to-use CLI interface, flexible output formats, and automated scanning capabilities. It saves Kubernetes users and admins precious time, effort, and resources. Kubescape scans clusters, YAML files, and Helm charts. It detects misconfigurations according to multiple frameworks (including NSA-CISA, MITRE ATT&CK® and the CIS Benchmark). Kubescape was created by ARMO and is a Cloud Native Computing Foundation (CNCF) sandbox project. +Moniker: kubescape +Tags: +- best-practice +- devops +- kubernetes +- mitre-attack +- nsa +- security +- vulnerability-detection +ReleaseNotes: |- + Changelog + - ff48571 fix(resourcehandler): surface partial GVR collection failures instead of silently suppressing them + - 7da1924 Accept advertised base URI format in vulnerability manifest parser + - b503153 Add BoolPtrFlag unit tests + - 46f5695 Add image command RunE tests (#2182) + - e435fde Add threshold bounds unit tests + - fdf58c8 Add workload identifier parsing tests + - de1b3a1 Avoid nil source dereference in report marshal logging + - 969470d Emit SecurityException events for posture exception matches (#2291) + - d4d4d38 Feat/vap enforcement reconcile (#2307) + - 94ae647 Fix control scan validator error + - 0282a3e Fix false-positive master node taint classification + - a1a50ee Fix field selector state carryover across resource queries + - 1666f7b Fix inverted keepResults cleanup logic + - eedf923 Fix lint baseline issues + - 4ac5a3e Improve validation and error handling for config set + - 4bb74d3 Merge branch 'master' into test/imagescan-db-load-validation-pr + - 5d70480 Merge branch 'master' into test/imagescan-db-load-validation-pr + - 93bb574 Merge branch 'master' into test/imagescan-default-db-config-validation + - 07ea4bb Merge branch 'master' into test/listener-tls-key-error-cases + - 2437c87 Merge branch 'master' into test/rootutils-logger-env + - 5c2ad60 Merge branch 'master' of https://github.com/kubescape/kubescape into 2185 + - 9e2990f Merge branch 'master' of https://github.com/kubescape/kubescape into fix/pdf-html-default-output-file + - 35874cb Merge pull request #2062 from pfarikrispy/master + - ce8aa66 Merge pull request #2067 from Shreya2005-2005/docs/fix-operator-vulnerabilities-short-description + - 126add7 Merge pull request #2069 from Sanchit2662/feat/scan-coverage-not-evaluated + - 5347768 Merge pull request #2070 from Shreya2005-2005/fix/patch-buildchannel-goroutine-leak + - c69b285 Merge pull request #2072 from Shreya2005-2005/fix/findfile-walkfn-error-handling + - 04e9228 Merge pull request #2074 from Varadraj75/test/results-compliance-score-coverage + - c82ca31 Merge pull request #2076 from kimjune01/fix/vulnerability-manifest-uri-parsing + - f44d7ee Merge pull request #2077 from yugal07/2065 + - c0788db Merge pull request #2078 from Sanchit2662/fix/bump-k8s-interface-multi-group-clean + - 34bf98b Merge pull request #2079 from Mujib-Ahasan/format-output + - 2b13b27 Merge pull request #2081 from kubescape/dependabot/go_modules/github.com/in-toto/in-toto-golang-0.11.0 + - 8243904 Merge pull request #2082 from kubescape/dependabot/go_modules/httphandler/github.com/in-toto/in-toto-golang-0.11.0 + - b79ec88 Merge pull request #2085 from Varadraj75/test/compliance-results-comprehensive + - 9f210ac Merge pull request #2088 from Shreya2005-2005/docs/fix-patch-format-flag-description + - 983dfa3 Merge pull request #2090 from jijo-OO7/feat/anonymize-resource-metadata + - 04c6953 Merge pull request #2091 from Shreya2005-2005/feat/junit-skip-message-from-status-info + - 0fdacad Merge pull request #2093 from Shreya2005-2005/fix/list-policy-type-requeued-typo + - 0ac1f21 Merge pull request #2094 from anxovatomica/fix/typo-requeued-required + - 1879192 Merge pull request #2095 from looooown2006/fix/list-policy-type-required-2092 + - 658df04 Merge pull request #2098 from Shreya2005-2005/fix/remove-unreachable-args-check-and-fix-typo + - 8c0a6de Merge pull request #2100 from Sanchit2662/feat/fail-coverage-below + - 51a3f0c Merge pull request #2101 from yugal07/fix/junit-output-spec-compliance + - 70f2cd2 Merge pull request #2103 from Ridhi-03Kumari/refactor/replace-context-todo-initutils-test + - 8b91c03 Merge pull request #2105 from Ridhi-03Kumari/refactor/replace-context-todo-downloader + - 9661b0d Merge pull request #2106 from workwithsarang/fix/krew-release-template + - 7669efa Merge pull request #2107 from workwithsarang/fix/junit-skip-message + - e62afd0 Merge pull request #2109 from ThakurUjjwal1706/fix-results-idor-security + - 85dcb5f Merge pull request #2112 from Shreya2005-2005/fix/mcpserver-marshal-error-handling + - e61b7f1 Merge pull request #2114 from Shreya2005-2005/test/anonymizer-package-coverage + - 649b676 Merge pull request #2117 from Ridhi-03Kumari/fix/handle-scorewrapper-calculate-error + - 5440b19 Merge pull request #2120 from Shreya2005-2005/fix/mask-envfrom-in-remove-containers-data + - 8a688a7 Merge pull request #2121 from yugal07/fix/2108-report-unfixed-controls + - 2ca64ba Merge pull request #2125 from Sanchit2662/test/httphandler-status-serverstate-coverage + - 6d28916 Merge pull request #2126 from aaa-aashna/improve-config-set-validation + - c42ca75 Merge pull request #2127 from dakshhhhh16/add-core-patch-os-tests + - 4bf9530 Merge pull request #2129 from jijo-OO7/feat/anonymize-container-metadata + - 7aa2f39 Merge pull request #2130 from Ridhi-03Kumari/refactor/replace-log-printf-with-logger-in-mcpserver + - 9adb0dc Merge pull request #2132 from Shreya2005-2005/fix/clear-valuefrom-in-remove-containers-data + - a36a457 Merge pull request #2133 from Ridhi-03Kumari/fix/typo-argument-in-completion.go + - 0a50515 Merge pull request #2136 from Shreya2005-2005/fix/anonymize-container-list-type-assertion + - f8070cb Merge pull request #2137 from Ridhi-03Kumari/fix/handle-fclose-error-in-requestshandlerutils + - 17f115b Merge pull request #2141 from dakshhhhh16/add-rbac-report-tests + - 008d045 Merge pull request #2142 from dakshhhhh16/add-attacktrack-printer-tests + - 85d8a57 Merge pull request #2143 from dakshhhhh16/add-scaninfo-policy-tests + - 726f60f Merge pull request #2144 from dakshhhhh16/add-account-id-validation-tests + - de558df Merge pull request #2146 from Shreya2005-2005/fix/mcp-calltool-propagate-request-context + - 4e41dab Merge pull request #2148 from Shreya2005-2005/fix/anonymize-labels-to-copy-when-hide-set + - 854dee1 Merge pull request #2150 from Shreya2005-2005/docs/fix-patch-command-short-and-long-description + - 8984a78 Merge pull request #2154 from aaa-aashna/fix-fieldselector-state-leak + - c933ea3 Merge pull request #2155 from jijo-OO7/fix/anonymize-unstructured-container-support + - 02be936 Merge pull request #2157 from aaa-aashna/avoid-nil-source-panic-in-report-logging + - dc94733 Merge pull request #2158 from aaa-aashna/fix-master-node-taint-classification + - 02cbaf2 Merge pull request #2159 from aaa-aashna/fix-unfixed-control-summary-count + - 8e38a7b Merge pull request #2160 from Sanchit2662/fix/include-selector-cluster-scoped-dedup + - 33e8929 Merge pull request #2168 from Varadraj75/fix/ci-fork-workflow-permissions + - 729cd7f Merge pull request #2169 from Shreya2005-2005/fix/patch-format-flag-validation + - a31a6a3 Merge pull request #2170 from Sanchit2662/fix/partial-collection-silent-pass + - ae42f87 Merge pull request #2171 from Sanchit2662/test/httphandler-results-coverage + - 6f58086 Merge pull request #2173 from aaa-aashna/fix-keepresults-cleanup-logic + - d0c9afe Merge pull request #2175 from Shreya2005-2005/fix/list-vulnerability-manifests-namespace-filter + - 659352e Merge pull request #2177 from AnvayKharb/test/workload-scan-unit-tests + - 76cf64e Merge pull request #2178 from Shreya2005-2005/fix/prometheus-score-writes-to-writer + - 3854ebc Merge pull request #2179 from AnvayKharb/test/scan-validator-unit-tests + - 1217bfc Merge pull request #2180 from AnvayKharb/test/parse-workload-identifier + - 8da81dc Merge pull request #2181 from AnvayKharb/test/thresholds-only-unit-tests + - c625827 Merge pull request #2183 from AnvayKharb/test/boolptr-flag-unit-tests + - 53f9950 Merge pull request #2184 from krrishverma1805-web/fix/lint-baseline-cleanup + - 54f5387 Merge pull request #2186 from AnvayKharb/test/require-resource-match-unit-tests + - f8176b7 Merge pull request #2187 from krrishverma1805-web/perf/parallel-resource-pull + - cc39e1d Merge pull request #2188 from krrishverma1805-web/fix/propagate-context-storage + - 27d6620 Merge pull request #2192 from yugal07/fix/pdf-html-default-output-file + - 0f27f85 Merge pull request #2195 from Ridhi-03Kumari/refactor/structured-log-initutils + - 231cb67 Merge pull request #2197 from AnvayKharb/test/patch-default-tag-unit-tests + - dd8b0b1 Merge pull request #2199 from yugal07/2185 + - a240ed6 Merge pull request #2200 from AnvayKharb/test/imagescan-default-db-config-pr + - b3552da Merge pull request #2201 from AnvayKharb/test/imagescan-db-load-validation-pr + - b784931 Merge pull request #2202 from jijo-OO7/test/reorganize-anonymizer-unit-tests + - fe9fbff Merge pull request #2203 from yugal07/2189 + - 5f9c637 Merge pull request #2204 from Shreya2005-2005/fix/prometheus-missing-help-type-headers + - e796919 Merge pull request #2206 from Ridhi-03Kumari/refactor/structured-log-customerloader + - c8456f3 Merge pull request #2209 from AnvayKharb/test/imagescan-default-db-config-validation + - aed2947 Merge pull request #2212 from AnvayKharb/test/listener-env-port-offline + - 622def7 Merge pull request #2213 from AnvayKharb/test/listener-tls-key-error-cases + - e8f898a Merge pull request #2214 from Ridhi-03Kumari/fix/log-message-processruleslistener + - 4c10e6b Merge pull request #2215 from AnvayKharb/test/opaprocessor-summary-manual-review + - ed52292 Merge pull request #2219 from ivaresarthak-cloud/security/pin-actions-to-sha + - bcffe4e Merge pull request #2221 from AnvayKharb/test/boolptr-httpurl-helpers-unit-tests + - fec3c13 Merge pull request #2222 from AnvayKharb/test/fileformat-yaml-separator-unit-tests + - 070d57b Merge pull request #2224 from dakshhhhh16/test-prometheusutils-extract + - 037e508 Merge pull request #2225 from dakshhhhh16/test-metrics-init-update + - 245e6b0 Merge pull request #2226 from dakshhhhh16/test-datastructures-helpers + - 365760e Merge pull request #2227 from dakshhhhh16/test-operatorscaninfo-validation + - 33aeb83 Merge pull request #2228 from AnvayKharb/test/imagescan-default-matcher-config + - 5b46aa7 Merge pull request #2229 from dakshhhhh16/test-scancoverage-helpers + - dfd2421 Merge pull request #2230 from AnvayKharb/test/rootutils-logger-env + - 99fee16 Merge pull request #2231 from AnvayKharb/test/rootutils-logger-name-env + - 75c1a7f Merge pull request #2232 from AnvayKharb/test/rootutils-logger-name-precedence +ReleaseNotesUrl: https://github.com/kubescape/kubescape/releases/tag/v4.0.9 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/k/kubescape/kubescape/4.0.9/kubescape.kubescape.yaml b/manifests/k/kubescape/kubescape/4.0.9/kubescape.kubescape.yaml new file mode 100644 index 000000000000..85e47ade228a --- /dev/null +++ b/manifests/k/kubescape/kubescape/4.0.9/kubescape.kubescape.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: kubescape.kubescape +PackageVersion: 4.0.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.installer.yaml b/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.installer.yaml new file mode 100644 index 000000000000..5fa168e91f4a --- /dev/null +++ b/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.installer.yaml @@ -0,0 +1,23 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: LedgerHQ.LedgerLive +PackageVersion: 4.6.0 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +Protocols: +- ledgerlive +ProductCode: c62032b2-0bca-5abc-b458-fd67cfc9e49b +ReleaseDate: 2025-07-24 +AppsAndFeaturesEntries: +- DisplayName: Ledger Wallet 4.6.00 + Publisher: Ledger Wallet Team + ProductCode: c62032b2-0bca-5abc-b458-fd67cfc9e49b +Installers: +- Architecture: x64 + InstallerUrl: https://download.live.ledger.com/ledger-live-desktop-4.6.0-win-x64.exe + InstallerSha256: 6B9AC8ED75614B882AE790B9B05C59C810C0B28DAC4F2E013E9FD3D0BE5B0397 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.locale.en-US.yaml b/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.locale.en-US.yaml new file mode 100644 index 000000000000..310696794c51 --- /dev/null +++ b/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: LedgerHQ.LedgerLive +PackageVersion: 4.6.0 +PackageLocale: en-US +Publisher: Ledger Live Team +PublisherUrl: https://www.ledger.com/ +PublisherSupportUrl: https://support.ledger.com/ +PrivacyUrl: https://www.ledger.com/privacy-policy +Author: Ledger SAS +PackageName: Ledger Live +PackageUrl: https://www.ledger.com/ledger-live +License: Proprietary +LicenseUrl: https://shop.ledger.com/pages/ledger-live-terms-of-use +Copyright: Copyright © Ledger SAS. All rights reserved. +CopyrightUrl: https://shop.ledger.com/pages/ledger-live-terms-of-use +ShortDescription: A crypto wallet app and Web3 gateway +Description: |- + The Ledger Live app is a safe and easy interface for managing your cryptocurrencies using your Ledger device. + Unlike most apps, the Ledger Live crypto wallet app keeps your data directly on your phone or computer, so there’s no need to sign in using an email and password. All that’s required is your Ledger device and of course, you. +Tags: +- blockchain +- crypto +- nft +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.locale.zh-CN.yaml b/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.locale.zh-CN.yaml new file mode 100644 index 000000000000..82ac2107d781 --- /dev/null +++ b/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.locale.zh-CN.yaml @@ -0,0 +1,21 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: LedgerHQ.LedgerLive +PackageVersion: 4.6.0 +PackageLocale: zh-CN +PublisherUrl: https://www.ledger.com/zh-hans +PublisherSupportUrl: https://support.ledger.com/zh-CN/ +PrivacyUrl: https://www.ledger.com/zh-hans/privacy-policy +PackageUrl: https://www.ledger.com/zh-hans/ledger-live +License: 专有软件 +ShortDescription: 加密钱包应用程序和 Web3 门户 +Description: |- + Ledger Live 应用程序提供一个安全且简单的界面,与 Ledger 设备结合使用,轻松管理您的加密货币。 + 与大多数应用程序不同,Ledger Live 加密钱包应用程序将您的数据直接保存在您的手机或计算机上,因此无需使用电子邮件和密码登录。 所需的全部只是您的 Ledger 设备,当然还需要:您本人。 +Tags: +- nft +- 加密货币 +- 区块链 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.yaml b/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.yaml new file mode 100644 index 000000000000..6581c9029f3f --- /dev/null +++ b/manifests/l/LedgerHQ/LedgerLive/4.6.0/LedgerHQ.LedgerLive.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: LedgerHQ.LedgerLive +PackageVersion: 4.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/LinuxContainers/Incus/7.1.0/LinuxContainers.Incus.installer.yaml b/manifests/l/LinuxContainers/Incus/7.1.0/LinuxContainers.Incus.installer.yaml new file mode 100644 index 000000000000..e1ae86c4dd10 --- /dev/null +++ b/manifests/l/LinuxContainers/Incus/7.1.0/LinuxContainers.Incus.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: LinuxContainers.Incus +PackageVersion: 7.1.0 +InstallerType: portable +Commands: +- incus +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/lxc/incus/releases/download/v7.1.0/bin.windows.incus.x86_64.exe + InstallerSha256: 0FD7F6B82DD0D80F6967B601C063937EFDCD2570A0A496347A7CFDD7BFD4F960 +- Architecture: arm64 + InstallerUrl: https://github.com/lxc/incus/releases/download/v7.1.0/bin.windows.incus.aarch64.exe + InstallerSha256: B5BEAD3343D2A41AB27CA79C38518ACA06847C5E7E14B0C82F3B9AC45B6D0B6C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/LinuxContainers/Incus/7.1.0/LinuxContainers.Incus.locale.en-US.yaml b/manifests/l/LinuxContainers/Incus/7.1.0/LinuxContainers.Incus.locale.en-US.yaml new file mode 100644 index 000000000000..4357c3ce6fcc --- /dev/null +++ b/manifests/l/LinuxContainers/Incus/7.1.0/LinuxContainers.Incus.locale.en-US.yaml @@ -0,0 +1,104 @@ +# 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: LinuxContainers.Incus +PackageVersion: 7.1.0 +PackageLocale: en-US +Publisher: LinuxContainers +PublisherUrl: https://github.com/lxc +PublisherSupportUrl: https://github.com/lxc/incus/issues +PackageName: Incus +PackageUrl: https://github.com/lxc/incus +License: Apache-2.0 +ShortDescription: Incus is a modern, secure and powerful system container and virtual machine manager. +Tags: +- cloud +- containers +- hacktoberfest +- virtual-machines +ReleaseNotes: |- + What's Changed + - Translations update from Hosted Weblate by @weblate in #3296 + - Translations update from Hosted Weblate by @weblate in #3298 + - doc/devices/disk: Fix broken link by @stgraber in #3297 + - Translations update from Hosted Weblate by @weblate in #3309 + - Fix some initial 7.0 issues by @stgraber in #3311 + - Fix some network issues by @stgraber in #3312 + - doc/authorization: Fix reference to old "manager" relation by @stgraber in #3313 + - incusd/projects: Fix targeting on project delete by @stgraber in #3315 + - incusd/network/acl: Fix issue with instances in different project tha… by @stgraber in #3314 + - incusd/instance/qemu: Remove deprecated QEMU flag by @stgraber in #3318 + - Fix NBD swagger by @stgraber in #3317 + - incusd/cluster: Skip operation creation on shutdown evacuate by @stgraber in #3320 + - Fix some simple bugs by @stgraber in #3325 + - Implement bridge.multicast_snooping by @stgraber in #3327 + - Add lock handling for NBD operations by @presztak in #3331 + - devcontainer: fix golangci-lint install source by @breml in #3336 + - build(deps): bump actions/dependency-review-action from 4 to 5 by @dependabot[bot] in #3338 + - Restore config volume as part of VM block restoration (LVM storage) by @presztak in #3343 + - Update Ansible section with incus-client details by @chrisjsimpson in #3345 + - Update list of Ubuntu LTS releases that get pre-built Incus packages by @meeque in #3346 + - Use correct host:port format for ClusterAddress by @stephendotcarter in #3349 + - Various bugfixes by @stgraber in #3352 + - doc/storage_volume: Fix outdated information by @bensmrs in #3360 + - test: Disable volume shrinking with LINSTOR by @bensmrs in #3354 + - incusd/storage/s3: Implement S3 CopyObject by @stgraber in #3365 + - Allow volume creation on attach by @stgraber in #3363 + - Add workaround for lvmcluster pool removal by @presztak in #3369 + - Translations update from Hosted Weblate by @weblate in #3370 + - Various bugfixes by @stgraber in #3362 + - Performance improvements by @stgraber in #3372 + - Fix forward duplicate ip check by @DarkressX in #3373 + - doc: Extend description for OCI-compliant remotes by @UweKrause in #3374 + - incus/operation: Fix default column layout in help text by @urbalazs in #3347 + - Fix another set of explanation typos. by @kazan417 in #3299 + - incusd/instance/qemu: add virtio vga feature gating by @damex in #3305 + - Translations update from Hosted Weblate by @weblate in #3376 + - Add support for block.create_options by @stgraber in #3377 + - incus/utils: Tweak environment file handling to strip matching outer … by @stgraber in #3378 + - shared/archive: Improved ENOSPC detection by @stgraber in #3379 + - Allow setting up a TPM certificate authority by @stgraber in #3380 + - incusd/devices: Set volatileGet on Refresh by @stgraber in #3381 + - Translations update from Hosted Weblate by @weblate in #3384 + - Update cluster.go by @kazan417 in #3383 + - Update network_forward.go by @kazan417 in #3387 + - incus/config: Fix YAML file name in help text by @urbalazs in #3390 + - Translations update from Hosted Weblate by @weblate in #3393 + - Fix incus-simplestreams issues by @stgraber in #3391 + - Fix forkdhcp issues by @stgraber in #3392 + - Allow editing raw LINSTOR properties by @bensmrs in #3396 + - Implement ranges in network address sets by @stgraber in #3394 + - incusd/network/ovn: Use dnat_and_snat for fully mapped external addre… by @stgraber in #3397 + - Enable TPM live migration by @presztak in #3398 + - Translations update from Hosted Weblate by @weblate in #3399 + - Translations update from Hosted Weblate by @weblate in #3400 + - Fix push behavior with UID/GID/mode overrides by @bensmrs in #3401 + - More bugfixes by @stgraber in #3395 + - Fix remaining golangci-lint issues by @stgraber in #3405 + - Always return the total disk size on instances by @stgraber in #3402 + - More codebase cleanup by @stgraber in #3407 + - VLAN filtering fixes by @stgraber in #3408 + - incusd/instance/lxc: Use os.Root for templating by @stgraber in #3403 + - Implement storage volume rebuild by @stgraber in #3404 + - Add support for static round-robin remotes by @bensmrs in #3409 + - Implement S3 pre-signed URLs by @stgraber in #3411 + - client: handle absolute paths for simplestream files by @breml in #3414 + - Translations update from Hosted Weblate by @weblate in #3413 + - Translations update from Hosted Weblate by @weblate in #3419 + - Fix daemon volume accounting by @bensmrs in #3412 + - CLI wording fixes by @kazan417 in #3416 + - Allow for specific VM vCPU configuration by @stgraber in #3420 + - Push operation follow-up by @bensmrs in #3418 + - incusd/devices: Cleanup leftover forkproxy on startup by @stgraber in #3421 + - Fix security issues for Incus 7.1 by @stgraber in #3425 + - Adjust instance-agent events by @stgraber in #3426 + - Fix a couple of issues with instance memory changes by @stgraber in #3427 + - Add additional validation to device names by @stgraber in #3423 + New Contributors + - @chrisjsimpson made their first contribution in #3345 + - @meeque made their first contribution in #3346 + - @stephendotcarter made their first contribution in #3349 + Full Changelog: v7.0.0...v7.1.0 +ReleaseNotesUrl: https://github.com/lxc/incus/releases/tag/v7.1.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LinuxContainers/Incus/7.1.0/LinuxContainers.Incus.yaml b/manifests/l/LinuxContainers/Incus/7.1.0/LinuxContainers.Incus.yaml new file mode 100644 index 000000000000..46a335ef6728 --- /dev/null +++ b/manifests/l/LinuxContainers/Incus/7.1.0/LinuxContainers.Incus.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: LinuxContainers.Incus +PackageVersion: 7.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/laurentiu021/SysManager/1.17.1/laurentiu021.SysManager.installer.yaml b/manifests/l/laurentiu021/SysManager/1.17.1/laurentiu021.SysManager.installer.yaml new file mode 100644 index 000000000000..18e139c69a6d --- /dev/null +++ b/manifests/l/laurentiu021/SysManager/1.17.1/laurentiu021.SysManager.installer.yaml @@ -0,0 +1,18 @@ +# 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: laurentiu021.SysManager +PackageVersion: 1.17.1 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: portable +Commands: +- SysManager +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/laurentiu021/SystemManager/releases/download/v1.17.1/SysManager-v1.17.1.exe + InstallerSha256: F2101C365CE382FD8AA39DDA5925FA4BF6E5882C8CA9E290D1465FC8ABE604D1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/laurentiu021/SysManager/1.17.1/laurentiu021.SysManager.locale.en-US.yaml b/manifests/l/laurentiu021/SysManager/1.17.1/laurentiu021.SysManager.locale.en-US.yaml new file mode 100644 index 000000000000..c0df251ae270 --- /dev/null +++ b/manifests/l/laurentiu021/SysManager/1.17.1/laurentiu021.SysManager.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: laurentiu021.SysManager +PackageVersion: 1.17.1 +PackageLocale: en-US +Publisher: laurentiu021 +PublisherUrl: https://github.com/laurentiu021 +PublisherSupportUrl: https://github.com/laurentiu021/SystemManager/issues +PackageName: SysManager +PackageUrl: https://github.com/laurentiu021/SystemManager +License: MIT +LicenseUrl: https://github.com/laurentiu021/SystemManager/blob/HEAD/LICENSE +ShortDescription: Modern Windows system toolkit — network monitor, performance tuning, cleanup, battery health, process manager, and more. +Description: |- + SysManager is a modern Windows system toolkit built with WPF and .NET 9. + It provides a comprehensive set of tools in a single application including + live network monitoring, ping and traceroute, speed tests, performance tuning + with power plan management, deep disk cleanup, duplicate file finder, disk + analyzer, battery health monitoring, process manager, app uninstaller, + startup control, Windows services manager, Windows features manager, driver + information, and system health overview. +Tags: +- battery +- cleanup +- dotnet +- network-monitor +- open-source +- performance +- process-manager +- system-utility +- uninstaller +- windows +- wpf +ReleaseNotes: |- + [1.17.1] - 2026-05-29 + Fixed + - Documentation — ARCHITECTURE.md updated with new TemperatureService, ActivityLogService, and rewritten DashboardViewModel description to reflect v1.17.0 redesign. + Verify the download + Get-FileHash .\SysManager-v1.17.1.exe -Algorithm SHA256 + Expected SHA256: F2101C365CE382FD8AA39DDA5925FA4BF6E5882C8CA9E290D1465FC8ABE604D1 +ReleaseNotesUrl: https://github.com/laurentiu021/SystemManager/releases/tag/v1.17.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/laurentiu021/SysManager/1.17.1/laurentiu021.SysManager.yaml b/manifests/l/laurentiu021/SysManager/1.17.1/laurentiu021.SysManager.yaml new file mode 100644 index 000000000000..2a45993f0f70 --- /dev/null +++ b/manifests/l/laurentiu021/SysManager/1.17.1/laurentiu021.SysManager.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: laurentiu021.SysManager +PackageVersion: 1.17.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/Azd/1.25.400/Microsoft.Azd.installer.yaml b/manifests/m/Microsoft/Azd/1.25.400/Microsoft.Azd.installer.yaml new file mode 100644 index 000000000000..4a2f0f0a310c --- /dev/null +++ b/manifests/m/Microsoft/Azd/1.25.400/Microsoft.Azd.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: Microsoft.Azd +PackageVersion: 1.25.400 +InstallerLocale: en-US +InstallerType: wix +InstallerSwitches: + Custom: INSTALLEDBY="winget" +ProductCode: '{423FB38B-837E-410E-B5DB-53EA05C532F8}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Azure/azure-dev/releases/download/azure-dev-cli_1.25.3/azd-windows-amd64.msi + InstallerSha256: 84A327DEC509533D30B4E66F7BB3980350F3ACC74ABFCCF3E01C4C3C4713E816 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-05-29 diff --git a/manifests/m/Microsoft/Azd/1.25.400/Microsoft.Azd.locale.en-US.yaml b/manifests/m/Microsoft/Azd/1.25.400/Microsoft.Azd.locale.en-US.yaml new file mode 100644 index 000000000000..2ae772bec686 --- /dev/null +++ b/manifests/m/Microsoft/Azd/1.25.400/Microsoft.Azd.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.Azd +PackageVersion: 1.25.400 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://github.com/Azure/azure-dev/ +PublisherSupportUrl: https://github.com/Azure/azure-dev/issues +PrivacyUrl: https://go.microsoft.com/fwlink/?LinkId=521839 +PackageName: Azure Developer CLI +PackageUrl: https://github.com/Azure/azure-dev/releases/tag/azure-dev-cli_0.6.0-beta.2 +License: MIT License +LicenseUrl: https://github.com/Azure/azure-dev/blob/main/LICENSE +Copyright: Copyright 2022 (c) Microsoft Corporation. +ShortDescription: A developer CLI that accelerates the time it takes for you to get started on Azure. +Description: A developer CLI that accelerates the time it takes for you to get started on Azure. The Azure Developer CLI (azd) provides a set of developer-friendly commands that map to key stages in your workflow - code, build, deploy, monitor, repeat. +Moniker: azd +Tags: +- azure +- hacktoberfest +- microsoft +ReleaseNotesUrl: https://github.com/Azure/azure-dev/releases/tag/azure-dev-cli_1.25.3 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/Azure/azure-dev/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/Azd/1.25.400/Microsoft.Azd.yaml b/manifests/m/Microsoft/Azd/1.25.400/Microsoft.Azd.yaml new file mode 100644 index 000000000000..a8440e48a3a6 --- /dev/null +++ b/manifests/m/Microsoft/Azd/1.25.400/Microsoft.Azd.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.Azd +PackageVersion: 1.25.400 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.installer.yaml b/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.installer.yaml new file mode 100644 index 000000000000..7230e2558532 --- /dev/null +++ b/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.installer.yaml @@ -0,0 +1,51 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.Edge +PackageVersion: 148.0.3967.96 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Commands: +- msedge +Protocols: +- http +- https +FileExtensions: +- crx +- htm +- html +- pdf +- url +ReleaseDate: 2026-05-28 +Installers: +- Architecture: x86 + InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/e50790e3-cf2e-4023-a596-00ac90788516/MicrosoftEdgeEnterpriseX86.msi + InstallerSha256: 24566ECB7BC9128193C3D93B82E50BCD0C5BA9241960B683B81FE48262A646A7 + ProductCode: '{A48E77DA-A55A-3321-99ED-81D024AFC102}' + AppsAndFeaturesEntries: + - ProductCode: '{A48E77DA-A55A-3321-99ED-81D024AFC102}' + UpgradeCode: '{883C2625-37F7-357F-A0F4-DFAF391B2B9C}' +- Architecture: x64 + InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/1e31b6ea-8368-4a80-b494-2ffa12a70507/MicrosoftEdgeEnterpriseX64.msi + InstallerSha256: 022D78C7B2DFBE62DC97A1E5B6F7E373B2C90D91A484A98548928575C0AA2AC4 + ProductCode: '{B88B1266-51A5-378D-8E29-F8E4836E7B19}' + AppsAndFeaturesEntries: + - ProductCode: '{B88B1266-51A5-378D-8E29-F8E4836E7B19}' + UpgradeCode: '{883C2625-37F7-357F-A0F4-DFAF391B2B9C}' +- Architecture: arm64 + InstallerUrl: https://msedge.sf.dl.delivery.mp.microsoft.com/filestreamingservice/files/cd1dfbac-a5ec-4fcb-9255-943b746d4adb/MicrosoftEdgeEnterpriseARM64.msi + InstallerSha256: a192c2408a8a6754d8ab797515691e7c56c3c51279ca76dee6641e98f0d52e18 + ProductCode: '{9E9C7C95-CF47-3F30-9A82-A8D454F31398}' + AppsAndFeaturesEntries: + - ProductCode: '{9E9C7C95-CF47-3F30-9A82-A8D454F31398}' + UpgradeCode: '{883C2625-37F7-357F-A0F4-DFAF391B2B9C}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.locale.en-US.yaml b/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.locale.en-US.yaml new file mode 100644 index 000000000000..a43d09a9976c --- /dev/null +++ b/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.Edge +PackageVersion: 148.0.3967.96 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/en-US +PublisherSupportUrl: https://support.microsoft.com/en-us/microsoft-edge +PrivacyUrl: https://privacy.microsoft.com/en-US/privacystatement +Author: Microsoft Corporation +PackageName: Microsoft Edge +PackageUrl: https://www.microsoft.com/en-us/edge +License: Microsoft Software License +LicenseUrl: https://www.microsoft.com/en-us/servicesagreement +Copyright: Copyright (C) Microsoft Corporation +CopyrightUrl: https://www.microsoft.com/en-us/servicesagreement +ShortDescription: World-class performance with more privacy, more productivity, and more value while you browse. +Moniker: microsoft-edge +Tags: +- blink +- browser +- chromium +- edge +- web +- web-browser +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.locale.nb-NO.yaml b/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.locale.nb-NO.yaml new file mode 100644 index 000000000000..b60552e4d858 --- /dev/null +++ b/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.locale.nb-NO.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.Edge +PackageVersion: 148.0.3967.96 +PackageLocale: nb-NO +Publisher: Microsoft Corporation +PublisherSupportUrl: https://support.microsoft.com/nb-NO/microsoft-edge +PrivacyUrl: https://privacy.microsoft.com/en-us/privacystatement +Author: Microsoft Corporation +PackageName: Microsoft Edge +PackageUrl: https://www.microsoft.com/nb-no/edge +License: Microsoft Software License +LicenseUrl: https://www.microsoft.com/nb-NO/servicesagreement +Copyright: Copyright (C) Microsoft Corporation +CopyrightUrl: https://www.microsoft.com/nb-NO/servicesagreement +ShortDescription: Ytelse i verdensklasse med mer privatliv, mer produktivitet og mer verdi mens du surfer. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.yaml b/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.yaml new file mode 100644 index 000000000000..5ca2395e2253 --- /dev/null +++ b/manifests/m/Microsoft/Edge/148.0.3967.96/Microsoft.Edge.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: Microsoft.Edge +PackageVersion: 148.0.3967.96 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.451.156.0/Microsoft.SafetyScanner.installer.yaml b/manifests/m/Microsoft/SafetyScanner/1.451.156.0/Microsoft.SafetyScanner.installer.yaml new file mode 100644 index 000000000000..c36e2b2f2b25 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.451.156.0/Microsoft.SafetyScanner.installer.yaml @@ -0,0 +1,18 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.451.156.0 +InstallerType: portable +Commands: +- safetyscanner +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x86 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.451.156.0&arch=x86 + InstallerSha256: D93031830F3CAD3D88BFFE9CE819FAD750AF93F98A7D3A123971D0754E93718C +- Architecture: x64 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.451.156.0&arch=amd64 + InstallerSha256: 49246A38D8F765C974079454EECF7530D1511AEC449D12ECD0320FF23BC6BBF2 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.451.156.0/Microsoft.SafetyScanner.locale.en-US.yaml b/manifests/m/Microsoft/SafetyScanner/1.451.156.0/Microsoft.SafetyScanner.locale.en-US.yaml new file mode 100644 index 000000000000..1856a76149a8 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.451.156.0/Microsoft.SafetyScanner.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.451.156.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft Safety Scanner +PackageUrl: https://learn.microsoft.com/en-us/defender-endpoint/safety-scanner-download +License: Proprietary +Copyright: © Microsoft Corporation. All rights reserved. +ShortDescription: A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. +Description: |- + A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. + + The tool uses the same security intelligence update definitions as (among others) Microsoft Defender Antivirus. Safety Scanner does however not have an internal definition update checker, but does get app updates every 3-4 hours. Thus, the Winget package may lag some days behind Windows Update + Microsoft Defender Antivirus. +Tags: +- microsoft-defender-antivirus +- microsoft-safety-scanner +- msert +- windows-security +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.451.156.0/Microsoft.SafetyScanner.yaml b/manifests/m/Microsoft/SafetyScanner/1.451.156.0/Microsoft.SafetyScanner.yaml new file mode 100644 index 000000000000..ec4297773ad3 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.451.156.0/Microsoft.SafetyScanner.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: Microsoft.SafetyScanner +PackageVersion: 1.451.156.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.451.158.0/Microsoft.SafetyScanner.installer.yaml b/manifests/m/Microsoft/SafetyScanner/1.451.158.0/Microsoft.SafetyScanner.installer.yaml new file mode 100644 index 000000000000..9dc360f39b82 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.451.158.0/Microsoft.SafetyScanner.installer.yaml @@ -0,0 +1,18 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.451.158.0 +InstallerType: portable +Commands: +- safetyscanner +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x86 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.451.158.0&arch=x86 + InstallerSha256: E40AA92FA0446804D22C15E3AF6C5B8F941BBAADA3DCFD425D9A0936DFFDFCFD +- Architecture: x64 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.451.158.0&arch=amd64 + InstallerSha256: 019FDCDB194A783343BEE611D266AC78490E7F82E66B27C8B7F9CD092D73DFAF +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.451.158.0/Microsoft.SafetyScanner.locale.en-US.yaml b/manifests/m/Microsoft/SafetyScanner/1.451.158.0/Microsoft.SafetyScanner.locale.en-US.yaml new file mode 100644 index 000000000000..8706738bf7f7 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.451.158.0/Microsoft.SafetyScanner.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.451.158.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft Safety Scanner +PackageUrl: https://learn.microsoft.com/en-us/defender-endpoint/safety-scanner-download +License: Proprietary +Copyright: © Microsoft Corporation. All rights reserved. +ShortDescription: A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. +Description: |- + A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. + + The tool uses the same security intelligence update definitions as (among others) Microsoft Defender Antivirus. Safety Scanner does however not have an internal definition update checker, but does get app updates every 3-4 hours. Thus, the Winget package may lag some days behind Windows Update + Microsoft Defender Antivirus. +Tags: +- microsoft-defender-antivirus +- microsoft-safety-scanner +- msert +- windows-security +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.451.158.0/Microsoft.SafetyScanner.yaml b/manifests/m/Microsoft/SafetyScanner/1.451.158.0/Microsoft.SafetyScanner.yaml new file mode 100644 index 000000000000..969fc2a94cf7 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.451.158.0/Microsoft.SafetyScanner.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: Microsoft.SafetyScanner +PackageVersion: 1.451.158.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.451.161.0/Microsoft.SafetyScanner.installer.yaml b/manifests/m/Microsoft/SafetyScanner/1.451.161.0/Microsoft.SafetyScanner.installer.yaml new file mode 100644 index 000000000000..1885df0919ab --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.451.161.0/Microsoft.SafetyScanner.installer.yaml @@ -0,0 +1,18 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.451.161.0 +InstallerType: portable +Commands: +- safetyscanner +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x86 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.451.161.0&arch=x86 + InstallerSha256: 06C9E4C423879C9EB78F661F40365E21E8C5D3B36B1534200B45B5EAA1FF261C +- Architecture: x64 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.451.161.0&arch=amd64 + InstallerSha256: B0F026DCCDC8A09CBB603DC16069EBA7AE077577ABFE9BB8009EE90ABBEFD2EC +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.451.161.0/Microsoft.SafetyScanner.locale.en-US.yaml b/manifests/m/Microsoft/SafetyScanner/1.451.161.0/Microsoft.SafetyScanner.locale.en-US.yaml new file mode 100644 index 000000000000..73c74b8c26e6 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.451.161.0/Microsoft.SafetyScanner.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.SafetyScanner +PackageVersion: 1.451.161.0 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft Safety Scanner +PackageUrl: https://learn.microsoft.com/en-us/defender-endpoint/safety-scanner-download +License: Proprietary +Copyright: © Microsoft Corporation. All rights reserved. +ShortDescription: A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. +Description: |- + A scan tool designed to find and remove malware from Windows computers. Download it and run a scan to find malware and try to reverse changes made by identified threats. + + The tool uses the same security intelligence update definitions as (among others) Microsoft Defender Antivirus. Safety Scanner does however not have an internal definition update checker, but does get app updates every 3-4 hours. Thus, the Winget package may lag some days behind Windows Update + Microsoft Defender Antivirus. +Tags: +- microsoft-defender-antivirus +- microsoft-safety-scanner +- msert +- windows-security +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.451.161.0/Microsoft.SafetyScanner.yaml b/manifests/m/Microsoft/SafetyScanner/1.451.161.0/Microsoft.SafetyScanner.yaml new file mode 100644 index 000000000000..b9a88e54efe2 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.451.161.0/Microsoft.SafetyScanner.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: Microsoft.SafetyScanner +PackageVersion: 1.451.161.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/VisualStudioCode/1.122.1/Microsoft.VisualStudioCode.installer.yaml b/manifests/m/Microsoft/VisualStudioCode/1.122.1/Microsoft.VisualStudioCode.installer.yaml new file mode 100644 index 000000000000..c95aed088e70 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudioCode/1.122.1/Microsoft.VisualStudioCode.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 +PackageVersion: 1.122.1 +InstallerType: inno +InstallerSwitches: + Custom: /mergetasks=!runcode +Commands: +- code +Installers: +- Architecture: arm64 + Scope: machine + InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/stable/8761a5560cfd65fdd19ce7e2bd18dab5c0a4d84e/VSCodeSetup-arm64-1.122.1.exe + InstallerSha256: 88F21C82134875C3DBB1FD99F5AE538E80A25E8109EFF918E35F4BA594921C06 +- Architecture: arm64 + Scope: user + InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/stable/8761a5560cfd65fdd19ce7e2bd18dab5c0a4d84e/VSCodeUserSetup-arm64-1.122.1.exe + InstallerSha256: FECF4C32D3CE6C9C2A05DF123BEF1468E898669286E507668C0DB14E3E83E6F8 +- Architecture: x64 + Scope: machine + InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/stable/8761a5560cfd65fdd19ce7e2bd18dab5c0a4d84e/VSCodeSetup-x64-1.122.1.exe + InstallerSha256: 0508A23A33F25EC0B3BDB0EFBF270147D6A860635BD9216EDB80963059C3816B +- Architecture: x64 + Scope: user + InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/stable/8761a5560cfd65fdd19ce7e2bd18dab5c0a4d84e/VSCodeUserSetup-x64-1.122.1.exe + InstallerSha256: 90E66400580978037A721B4BEE586C3C99B8BE3C276AFD553D9A99FBE48CDA02 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/VisualStudioCode/1.122.1/Microsoft.VisualStudioCode.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudioCode/1.122.1/Microsoft.VisualStudioCode.locale.en-US.yaml new file mode 100644 index 000000000000..979a48ac4b72 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudioCode/1.122.1/Microsoft.VisualStudioCode.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 +PackageVersion: 1.122.1 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/ +PrivacyUrl: https://privacy.microsoft.com/ +PackageName: Microsoft Visual Studio Code +PackageUrl: https://code.visualstudio.com +License: Microsoft Software License +LicenseUrl: https://code.visualstudio.com/license +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 +Tags: +- developer-tools +- editor +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/VisualStudioCode/1.122.1/Microsoft.VisualStudioCode.yaml b/manifests/m/Microsoft/VisualStudioCode/1.122.1/Microsoft.VisualStudioCode.yaml new file mode 100644 index 000000000000..0aecf78795c1 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudioCode/1.122.1/Microsoft.VisualStudioCode.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 +PackageVersion: 1.122.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.installer.yaml b/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.installer.yaml new file mode 100644 index 000000000000..c2658361fa7d --- /dev/null +++ b/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.installer.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: NetEase.UURemote +PackageVersion: 4.26.0.8259 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +ProductCode: GameViewer +Installers: +- Architecture: x64 + InstallerUrl: https://a56.gdl.netease.com/UURemote_Setup_4.26.0.8259_0529201533_gwqd.exe + InstallerSha256: 97BF752ED99BAA67323577F4FF40FE42616D54A04DE0D1F84657CE501C492A17 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.locale.en-US.yaml b/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.locale.en-US.yaml new file mode 100644 index 000000000000..58f46d3b5363 --- /dev/null +++ b/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: NetEase.UURemote +PackageVersion: 4.26.0.8259 +PackageLocale: en-US +Publisher: Netease +PublisherUrl: https://www.163.com/ +PublisherSupportUrl: https://gv.163.com/help/ +PrivacyUrl: https://gv.163.com/help/20240402/40294_1146067.html +Author: NetEase (Hangzhou) Network Co., Ltd. +PackageName: UU远程 +PackageUrl: https://gv.163.com/ +License: Proprietary +LicenseUrl: https://gv.163.com/help/20240402/40294_1146884.html +Copyright: Copyright © 1997-2026 NetEase Inc. All rights reserved. +ShortDescription: An ultra-low latency remote tool designed for gaming +Tags: +- gaming +- remote +- remote-access +- remote-control +- remote-desktop +- streaming +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.locale.zh-CN.yaml b/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.locale.zh-CN.yaml new file mode 100644 index 000000000000..bc70f8dc2527 --- /dev/null +++ b/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.locale.zh-CN.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: NetEase.UURemote +PackageVersion: 4.26.0.8259 +PackageLocale: zh-CN +Publisher: Netease +PublisherUrl: https://www.163.com/ +PublisherSupportUrl: https://gv.163.com/help/ +PrivacyUrl: https://gv.163.com/help/20240402/40294_1146067.html +Author: 网易(杭州)网络有限公司 +PackageName: UU远程 +PackageUrl: https://gv.163.com/ +License: 专有软件 +LicenseUrl: https://gv.163.com/help/20240402/40294_1146884.html +Copyright: 网易公司版权所有 ©1997-2026 +ShortDescription: 专为游戏打造的超低延迟远程工具 +Tags: +- 串流 +- 游戏 +- 远程 +- 远程控制 +- 远程桌面 +- 远程访问 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.yaml b/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.yaml new file mode 100644 index 000000000000..d0b751c974bb --- /dev/null +++ b/manifests/n/NetEase/UURemote/4.26.0.8259/NetEase.UURemote.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: NetEase.UURemote +PackageVersion: 4.26.0.8259 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/n/nukeop/nuclear/1.38.0/nukeop.nuclear.installer.yaml b/manifests/n/nukeop/nuclear/1.38.0/nukeop.nuclear.installer.yaml new file mode 100644 index 000000000000..eff3dc23a977 --- /dev/null +++ b/manifests/n/nukeop/nuclear/1.38.0/nukeop.nuclear.installer.yaml @@ -0,0 +1,27 @@ +# 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: nukeop.nuclear +PackageVersion: 1.38.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: user +InstallModes: +- silent +UpgradeBehavior: install +ProductCode: Nuclear +ReleaseDate: 2026-05-29 +AppsAndFeaturesEntries: +- DisplayName: Nuclear + Publisher: nuclearplayer + ProductCode: Nuclear +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\Nuclear' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/nukeop/nuclear/releases/download/player@1.38.0/Nuclear_1.38.0_x64-setup.exe + InstallerSha256: 7C260843255AAD3B2F8809A8C94F9E1E467B56DE0C7137E62904A851A74BF726 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/nukeop/nuclear/1.38.0/nukeop.nuclear.locale.en-US.yaml b/manifests/n/nukeop/nuclear/1.38.0/nukeop.nuclear.locale.en-US.yaml new file mode 100644 index 000000000000..2113fc52403e --- /dev/null +++ b/manifests/n/nukeop/nuclear/1.38.0/nukeop.nuclear.locale.en-US.yaml @@ -0,0 +1,54 @@ +# 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: nukeop.nuclear +PackageVersion: 1.38.0 +PackageLocale: en-US +Publisher: nukeop +PublisherUrl: https://github.com/nukeop +PublisherSupportUrl: https://github.com/nukeop/nuclear/issues +Author: nukeop +PackageName: nuclear +PackageUrl: https://github.com/nukeop/nuclear +License: AGPL-3.0 +LicenseUrl: https://github.com/nukeop/nuclear/blob/HEAD/LICENSE +Copyright: Copyright (c) nukeop 2021 +CopyrightUrl: https://raw.githubusercontent.com/nukeop/nuclear/master/LICENSE +ShortDescription: Streaming music player that finds free music for you. +Description: |- + nuclear is a free music streaming program that pulls content from free sources all over the internet. + Features + • Searching for and playing music from YouTube (including integration with playlists and SponsorBlock), Jamendo, Audius and SoundCloud + • Searching for albums (powered by Last.fm and Discogs), album view, automatic song lookup based on artist and track name (in progress, can be dodgy sometimes) + • Song queue, which can be exported as a playlist + • Loading saved playlists (stored in json files) + • Scrobbling to last.fm (along with updating the 'now playing' status) + • Newest releases with reviews - tracks and albums + • Browsing by genre + • Radio mode (automatically queue similar tracks) + • Unlimited downloads (powered by youtube) + • Realtime lyrics + • Browsing by popularity + • List of favorite tracks + • Listening from local library + • No accounts + • No ads + • No CoC + • No CLA +Moniker: nuclear-music +Tags: +- cross-platform +- electron +- foss +- music +- music-player +- stream +- streaming +- youtube +ReleaseNotes: |- + What's New in v1.38.0 + - Feature: Nuclear Jam lets you control playback from any device on your local network. Enable it in Settings -> Integrations, then scan the QR code with your phone. Integrations - @nukeop + > macOS: If the app won't open, run sudo xattr -r -d com.apple.quarantine /Applications/Nuclear.app in Terminal. +ReleaseNotesUrl: https://github.com/nukeop/nuclear/releases/tag/player@1.38.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/e/electerm/electerm/3.7.18/electerm.electerm.yaml b/manifests/n/nukeop/nuclear/1.38.0/nukeop.nuclear.yaml similarity index 75% rename from manifests/e/electerm/electerm/3.7.18/electerm.electerm.yaml rename to manifests/n/nukeop/nuclear/1.38.0/nukeop.nuclear.yaml index b31106a54593..5d3948718a34 100644 --- a/manifests/e/electerm/electerm/3.7.18/electerm.electerm.yaml +++ b/manifests/n/nukeop/nuclear/1.38.0/nukeop.nuclear.yaml @@ -1,8 +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: electerm.electerm -PackageVersion: 3.7.18 +PackageIdentifier: nukeop.nuclear +PackageVersion: 1.38.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.installer.yaml b/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.installer.yaml new file mode 100644 index 000000000000..dea683ac7939 --- /dev/null +++ b/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.installer.yaml @@ -0,0 +1,81 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: PeterPawlowski.foobar2000 +PackageVersion: 2.25.9 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +FileExtensions: +- 8svx +- aac +- ac3 +- afc +- aif +- aifc +- aiff +- ape +- apl +- asx +- au +- bwf +- cda +- cue +- dts +- dtshd +- dtsma +- dtswav +- eac3 +- fb2k-component +- fla +- flac +- fpl +- fth +- m3u +- m3u8 +- m4a +- m4b +- m4r +- mac +- mka +- mp+ +- mp1 +- mp2 +- mp3 +- mp4 +- mpc +- mpp +- oga +- ogg +- ogx +- opus +- pls +- rf64 +- snd +- spx +- svx +- tak +- w64 +- wav +- wave +- wax +- wma +- wv +- wvx +ReleaseDate: 2026-05-29 +ElevationRequirement: elevationRequired +Installers: +- Architecture: x86 + InstallerUrl: https://www.foobar2000.org/files/foobar2000_v2.25.9.exe + InstallerSha256: 28A69EE37C25A3366C5EF5FE499E44A3F02954FACF0FEC151157A6E3F3CD4746 + ProductCode: foobar2000 +- Architecture: x64 + InstallerUrl: https://www.foobar2000.org/files/foobar2000-x64_v2.25.9.exe + InstallerSha256: 70D365A747BDA8C3B7309FF7BB91A93F40BAB0C19763C8D869031154B37E281B + ProductCode: foobar2000 (x64) +- Architecture: arm64 + InstallerUrl: https://www.foobar2000.org/files/foobar2000-arm64ec_v2.25.9.exe + InstallerSha256: DECECBD32AC1169D25C6FC8920670473D602E24D5FCD578AE75754A214EB4270 + ProductCode: foobar2000 (ARM64EC) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.locale.en-US.yaml b/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.locale.en-US.yaml new file mode 100644 index 000000000000..260028d6d3ed --- /dev/null +++ b/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.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: PeterPawlowski.foobar2000 +PackageVersion: 2.25.9 +PackageLocale: en-US +Publisher: Peter Pawlowski +PublisherUrl: https://perkele.cc/ +PublisherSupportUrl: https://www.foobar2000.org/support +Author: Peter Pawlowski +PackageName: foobar2000 +PackageUrl: https://www.foobar2000.org/ +License: Freeware +LicenseUrl: https://www.foobar2000.org/license +Copyright: (C) Peter Pawlowski and contributors +CopyrightUrl: https://www.foobar2000.org/license +ShortDescription: foobar2000 is an advanced freeware audio player for the Windows platform. +Moniker: foobar2000 +Tags: +- audio +- audio-player +- media +- media-player +- music +- music-player +- player +- song +ReleaseNotes: |- + - Restored correct channel mask for 6.1 FLAC. + - Better remapping of back center channel to 5.1-side speaker setup. + - Fixed "remove chapters" not working on Ogg files with chapters. + - Improved WebDAV reliability. + - Some UPnP bug fixes backported from 2.26 series. + - Made send Windows version number when checking for component updates, to prevent installation of updates that require specific newer operating system build. + - Updated zlib to v1.3.2. + - Fixed some windows discarding multimedia keyboard events. + - Visual C++ runtime updated. +ReleaseNotesUrl: https://www.foobar2000.org/changelog +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://www.foobar2000.org/FAQ +- DocumentLabel: Wiki + DocumentUrl: https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Foobar2000 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.locale.zh-CN.yaml b/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.locale.zh-CN.yaml new file mode 100644 index 000000000000..ff94319698d3 --- /dev/null +++ b/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.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: PeterPawlowski.foobar2000 +PackageVersion: 2.25.9 +PackageLocale: zh-CN +Publisher: Peter Pawlowski +PublisherUrl: https://perkele.cc/ +PublisherSupportUrl: https://www.foobar2000.org/support +Author: Peter Pawlowski +PackageName: foobar2000 +PackageUrl: https://www.foobar2000.org/ +License: 免费软件 +LicenseUrl: https://www.foobar2000.org/license +Copyright: (C) Peter Pawlowski and contributors +CopyrightUrl: https://www.foobar2000.org/license +ShortDescription: foobar2000 是一款适用于 Windows 平台的高级免费音频播放器。 +Tags: +- 媒体 +- 播放器 +- 歌曲 +- 音乐 +- 音频 +ReleaseNotesUrl: https://www.foobar2000.org/changelog +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://www.foobar2000.org/FAQ +- DocumentLabel: Wiki + DocumentUrl: https://wiki.hydrogenaudio.org/index.php?title=Foobar2000:Foobar2000 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.yaml b/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.yaml new file mode 100644 index 000000000000..10bd0580241b --- /dev/null +++ b/manifests/p/PeterPawlowski/foobar2000/2.25.9/PeterPawlowski.foobar2000.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: PeterPawlowski.foobar2000 +PackageVersion: 2.25.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/Postman/Postman/12.12.6/Postman.Postman.installer.yaml b/manifests/p/Postman/Postman/12.12.6/Postman.Postman.installer.yaml new file mode 100644 index 000000000000..c2e37378f1be --- /dev/null +++ b/manifests/p/Postman/Postman/12.12.6/Postman.Postman.installer.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Postman.Postman +PackageVersion: 12.12.6 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Protocols: +- postman +ProductCode: Postman +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.pstmn.io/download/version/12.12.6/windows_64 + InstallerSha256: F133FCFF9F2A6A238E585FB0DDA55287D998E698649EED9E434AC38C9DA8E58C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/Postman/Postman/12.12.6/Postman.Postman.locale.en-US.yaml b/manifests/p/Postman/Postman/12.12.6/Postman.Postman.locale.en-US.yaml new file mode 100644 index 000000000000..38ba76465bb1 --- /dev/null +++ b/manifests/p/Postman/Postman/12.12.6/Postman.Postman.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Postman.Postman +PackageVersion: 12.12.6 +PackageLocale: en-US +Publisher: Postman +PublisherUrl: https://www.postman.com/ +PublisherSupportUrl: https://www.postman.com/support/ +PrivacyUrl: https://www.postman.com/legal/privacy-policy/ +Author: Postman, Inc. +PackageName: Postman +PackageUrl: https://www.postman.com/downloads/ +License: Proprietary +LicenseUrl: https://www.postman.com/legal/terms/ +Copyright: © 2026 Postman, Inc. +CopyrightUrl: https://www.postman.com/legal/terms/ +ShortDescription: The Collaboration Platform for API Development +Description: Postman is a collaboration platform for API development. Postman's features simplify each step of building an API and streamline collaboration so you can create better APIs — faster. +Moniker: postman +Tags: +- api +- automation +- debug +- develop +- development +- interface +- internet +- network +- request +- response +ReleaseNotes: |- + Bug Fixes + Some critical bug fixes and enhancements were added in this release. +PurchaseUrl: https://www.postman.com/pricing/ +Documentations: +- DocumentLabel: Learning Center + DocumentUrl: https://learning.postman.com/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/Postman/Postman/12.12.6/Postman.Postman.locale.zh-CN.yaml b/manifests/p/Postman/Postman/12.12.6/Postman.Postman.locale.zh-CN.yaml new file mode 100644 index 000000000000..a3c33bd51fe0 --- /dev/null +++ b/manifests/p/Postman/Postman/12.12.6/Postman.Postman.locale.zh-CN.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Postman.Postman +PackageVersion: 12.12.6 +PackageLocale: zh-CN +Publisher: Postman +PublisherUrl: https://www.postman.com/ +PublisherSupportUrl: https://www.postman.com/support/ +PrivacyUrl: https://www.postman.com/legal/privacy-policy/ +Author: Postman, Inc. +PackageName: Postman +PackageUrl: https://www.postman.com/downloads/ +License: 专有软件 +LicenseUrl: https://www.postman.com/legal/terms/ +Copyright: © 2026 Postman, Inc. +CopyrightUrl: https://www.postman.com/legal/terms/ +ShortDescription: API 开发协作平台 +Description: Postman 是一个 API 开发协作平台,简化构建 API 流程的每一步,并让协作流水线化,从而更快更好地创建 API。 +Tags: +- api +- 互联网 +- 响应 +- 开发 +- 接口 +- 网络 +- 自动化 +- 请求 +- 调试 +PurchaseUrl: https://www.postman.com/pricing/ +Documentations: +- DocumentLabel: 学习中心 + DocumentUrl: https://learning.postman.com/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/p/Postman/Postman/12.12.6/Postman.Postman.yaml b/manifests/p/Postman/Postman/12.12.6/Postman.Postman.yaml new file mode 100644 index 000000000000..2427174d22b8 --- /dev/null +++ b/manifests/p/Postman/Postman/12.12.6/Postman.Postman.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Postman.Postman +PackageVersion: 12.12.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/Proton/ProtonPass/CLI/2.1.2/Proton.ProtonPass.CLI.installer.yaml b/manifests/p/Proton/ProtonPass/CLI/2.1.2/Proton.ProtonPass.CLI.installer.yaml new file mode 100644 index 000000000000..df53433b253c --- /dev/null +++ b/manifests/p/Proton/ProtonPass/CLI/2.1.2/Proton.ProtonPass.CLI.installer.yaml @@ -0,0 +1,21 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Proton.ProtonPass.CLI +PackageVersion: 2.1.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: pass-cli.exe + PortableCommandAlias: pass-cli +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2026-05-29 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://proton.me/download/pass-cli/2.1.2/pass-cli-windows-x86_64.zip + InstallerSha256: C6A7C09D32E0C36A5FAEB1B15BF82253247778110DABAD5147F7EE0C4212A5A5 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/Proton/ProtonPass/CLI/2.1.2/Proton.ProtonPass.CLI.locale.en-US.yaml b/manifests/p/Proton/ProtonPass/CLI/2.1.2/Proton.ProtonPass.CLI.locale.en-US.yaml new file mode 100644 index 000000000000..c039199b251f --- /dev/null +++ b/manifests/p/Proton/ProtonPass/CLI/2.1.2/Proton.ProtonPass.CLI.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Proton.ProtonPass.CLI +PackageVersion: 2.1.2 +PackageLocale: en-US +Publisher: Proton AG +PublisherUrl: https://proton.me/ +PublisherSupportUrl: https://proton.me/support/pass +PrivacyUrl: https://proton.me/legal/privacy +Author: Proton AG +PackageName: Proton Pass CLI +PackageUrl: https://proton.me/pass +License: Proprietary +Copyright: © 2026 Proton AG. All rights reserved. +ShortDescription: Proton Pass CLI is a command-line interface for managing your Proton Pass vaults, items, and secrets. +Description: |- + The Proton Pass CLI allows you to manage your Proton Pass vaults and items directly from the command line, bringing the power of secure secret management to your terminal workflow. With the CLI, you can create, list, view, and delete vaults and items seamlessly, making it an great tool for developers and system administrators who prefer working in the command line. + + Beyond basic vault management, the CLI allows you to inject secrets into your applications through environment variables or template files, enabling easy integration with your deployment workflows. The tool also provides comprehensive SSH integration, allowing you to use your SSH keys stored in Proton Pass with your existing SSH workflows. + + Key features + Flexible secret management + - The CLI offers a flexible and intuitive approach to secret management through a simple URI syntax. You can reference any secret using the format pass://vault/item/field, making it easy to access specific credentials programmatically. This design allows you to inject secrets into environment variables for your applications or process template files that contain secret references. + SSH agent integration + - For developers working with SSH keys, the CLI provides robust SSH agent integration capabilities. You can load SSH keys stored in Proton Pass directly into your existing SSH agent, or run the Proton Pass CLI as a standalone SSH agent. +Tags: +- password +- password-manager +- proton +- vault +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://protonpass.github.io/pass-cli/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/Proton/ProtonPass/CLI/2.1.2/Proton.ProtonPass.CLI.yaml b/manifests/p/Proton/ProtonPass/CLI/2.1.2/Proton.ProtonPass.CLI.yaml new file mode 100644 index 000000000000..50ced77d7607 --- /dev/null +++ b/manifests/p/Proton/ProtonPass/CLI/2.1.2/Proton.ProtonPass.CLI.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Proton.ProtonPass.CLI +PackageVersion: 2.1.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.installer.yaml b/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.installer.yaml new file mode 100644 index 000000000000..624844ac934e --- /dev/null +++ b/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.installer.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: paopaoandlingyia.PrismCat +PackageVersion: 1.9.0 +InstallerType: portable +Commands: +- prismcat +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/paopaoandlingyia/PrismCat/releases/download/v1.9.0/prismcat-v1.9.0-windows-amd64.exe + InstallerSha256: CF54D6C338B2171A4AAE05EFB0BDE2E5887B5315B3140DF87E650648688ECA70 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.locale.en-US.yaml b/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.locale.en-US.yaml new file mode 100644 index 000000000000..d53a627c6120 --- /dev/null +++ b/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.locale.en-US.yaml @@ -0,0 +1,53 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: paopaoandlingyia.PrismCat +PackageVersion: 1.9.0 +PackageLocale: en-US +Publisher: Etgpao +PublisherUrl: https://github.com/paopaoandlingyia +PublisherSupportUrl: https://github.com/paopaoandlingyia/PrismCat/issues +PackageName: PrismCat +PackageUrl: https://github.com/paopaoandlingyia/PrismCat +License: MIT +LicenseUrl: https://github.com/paopaoandlingyia/PrismCat/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 paopaoandlingyia +ShortDescription: A self-hosted, transparent proxy and debugging console for LLM APIs. +Description: PrismCat is a self-hosted, transparent proxy and debugging console for LLM APIs. Change one line — your base_url — and instantly see every request and response between your app and OpenAI / Claude / Gemini / Ollama / any LLM API, including streaming (SSE). +Tags: +- ai +- chatbot +- large-language-model +- llm +- proxy +ReleaseNotes: |- + 中文 + v1.9.0 引入了基于存储空间上限的自动清理机制、日志快捷导航,以及 Web 界面 JSON 浏览器的多项显示和渲染优化。 + - 新增日志存储空间上限限制:支持通过 max_storage_bytes 配置或环境变量 PRISMCAT_MAX_STORAGE_BYTES 限制最大存储。超出时将按时间限制顺序删除未保存的历史日志,并自动触发 WAL checkpoint 和 VACUUM 整理数据库物理空间。可在设置页面直观配置。 + - 新增日志快捷导航:在日志详情视图(Dashboard 和 Trace 详情)中增加“上一条 / 下一条”切换按钮,方便了连续排查日志的操作。 + - 优化 JSON 浏览器显示与渲染: + - 将 JSON 视图字体大小调整为 13px,修复 Windows ClearType 下 11px 中文字体模糊的视觉问题。 + - 去除强行指定的 -webkit-font-smoothing,使 Windows 系统能够保留边缘清晰的 ClearType 渲染。 + - 在字体栈中显式增加了 PingFang SC 和 Microsoft YaHei 中文字体。 + - 本地化托管 Inter 和 Fira Code 字体,摆脱 Google CDN 字体加载依赖。 + - 为 JSON 缩进层级添加垂直辅助线,提升复杂结构下的可读性。 + - 修复 SQLite 日志清理锁表问题:日志保留期(Retention)清理逻辑调整为每批次限制删除 2000 条,并在清理后自动进行 WAL checkpoint,避免单次删除海量日志导致 SQLite 长时间锁表。 + - 修复流式日志 (SSE) 的 Token 提取解析:处理流式事件时,Token 提取器由原先的“仅保留最后一次匹配”改为“增量合并”方式,避免旧事件的数据被完全覆盖。 + - 修复默认超时初始化:统一规范在配置及 UI 修改中的 Upstream 缺省超时时间为 120 秒。 + English + v1.9.0 introduces size-based log storage limit cleanup, quick log navigation, and multiple display and font rendering enhancements to the JSON viewer in the Web UI. + - Added log storage size limit: Allows setting a storage limit via max_storage_bytes config or PRISMCAT_MAX_STORAGE_BYTES env var. When exceeded, oldest unsaved logs are deleted, followed by WAL checkpoint and database VACUUM to reclaim physical disk space. Can be easily configured on the settings page. + - Added log navigation: Prev/Next buttons added in log details panel on both Dashboard and Trace Detail pages for seamless traversal of consecutive log records. + - Improved JSON viewer display & rendering: + - Bumped JSON viewer font size to 13px to fix blurry CJK text rendering at 11px under Windows. + - Dropped forced -webkit-font-smoothing so Windows keeps crisp ClearType rendering. + - Added explicit CJK fonts (PingFang SC / Microsoft YaHei) to font stacks. + - Self-hosted Inter & Fira Code fonts via @fontsource, removing Google CDN dependency. + - Added bordered vertical lines for JSON indentation guidelines to enhance readability. + - Fixed SQLite retention cleanup locking: The log retention background worker now deletes logs in batches of 2000 and triggers WAL checkpoint, preventing long-running write transactions from locking the database. + - Fixed SSE token usage parsing: SSE parser now correctly merges input/output token counts from sequential events rather than overwriting them. + - Standardized default upstream timeout: Unified upstream proxy default timeout to 120s across config loader and UI creation. + Full Changelog: https://github.com/paopaoandlingyia/PrismCat/compare/v1.8.0...v1.9.0 +ReleaseNotesUrl: https://github.com/paopaoandlingyia/PrismCat/releases/tag/v1.2.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.locale.zh-CN.yaml b/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.locale.zh-CN.yaml new file mode 100644 index 000000000000..a7498c93b9e4 --- /dev/null +++ b/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.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: paopaoandlingyia.PrismCat +PackageVersion: 1.9.0 +PackageLocale: zh-CN +ShortDescription: 一款面向大语言模型 API 的自托管透明代理与调试控制台。 +Description: PrismCat 是一款可自行部署的、面向大语言模型 API 的透明代理与调试控制台。只需修改一行代码——你的 base_url(基础请求地址),即可即时查看你的应用与 OpenAI/Claude/Gemini/Ollama 等任意大语言模型 API 之间的所有请求和响应,包括流式传输(SSE)内容。 +Tags: +- 人工智能 +- 代理 +- 大语言模型 +- 聊天机器人 +ReleaseNotesUrl: https://github.com/paopaoandlingyia/PrismCat/releases/tag/v1.9.0 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.yaml b/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.yaml new file mode 100644 index 000000000000..e3ddd96dca9b --- /dev/null +++ b/manifests/p/paopaoandlingyia/PrismCat/1.9.0/paopaoandlingyia.PrismCat.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: paopaoandlingyia.PrismCat +PackageVersion: 1.9.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.installer.yaml b/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.installer.yaml new file mode 100644 index 000000000000..17e3ce658cba --- /dev/null +++ b/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Reqable.Reqable +PackageVersion: 3.1.3 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- chls +- chlsj +- har +ProductCode: '{64920BD9-D19F-4537-84AA-42BF46FEB27E}_is1' +ReleaseDate: 2026-05-29 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/reqable/reqable-app/releases/download/3.1.3/reqable-app-windows-x86_64.exe + InstallerSha256: F12D5EA71A42DE314C0F7A3A70E17C26AE7629BE24D0AB897F12B258F9ECA5C6 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.locale.en-US.yaml b/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.locale.en-US.yaml new file mode 100644 index 000000000000..260c97661009 --- /dev/null +++ b/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.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: Reqable.Reqable +PackageVersion: 3.1.3 +PackageLocale: en-US +Publisher: Reqqable Inc. +PublisherUrl: https://reqable.com/ +PublisherSupportUrl: https://github.com/reqable/reqable-app/issues +PrivacyUrl: https://reqable.com/policy +Author: Reqqable Inc. +PackageName: Reqable +PackageUrl: https://reqable.com/ +License: Proprietary +LicenseUrl: https://reqable.com/policy +Copyright: Copyright (C) 2026 Reqable All rights reserved. +ShortDescription: Advanced API Debugging Proxy. +Description: Reqable is a flutter-based, cross-platform app, which enables developers to capture, inspect, and manipulate HTTP(s) requests/responses with ease. Support Windows, macOS, linux, iOS and Android devices. +Tags: +- capture +- china +- debug +- network +- prc +- proxy +- request +- response +- traffic +- web +ReleaseNotes: |- + 💪 [OPT] Update Android certificate installation Magisk module. + 💪 [OPT] In the Base64 tool, decoded binary results can now be directly opened in the image viewer. + 💪 [OPT] Disable file drag-and-drop when a popup dialog is covering. + 💪 [OPT] The executable file version and product version no longer includes the build number. + 💪 [OPT] The application can now correctly restore the previous window maximized state after a restart. + 🐞 [FIX] The bug where SSL was not compatible with unsafe legacy renegotiation. + 🐞 [FIX] The bug where URL was not correctly encoded in some language code snippet. + 🐞 [FIX] The bug where numeric domain names could not be resolved. + 🐞 [FIX] The bug where clearing cache in settings did not completely delete all cache files. + 🐞 [FIX] The bug where clearing cache in settings would delete user scripts. + 🐞 [FIX] The bug where API authorization did not correctly navigate to the inherited authorization page. + 🐞 [FIX] The bug where importing some ApiPost collection files did not correctly retrieve the URL. +ReleaseNotesUrl: https://reqable.com/docs/changelogs/windows/ +PurchaseUrl: https://reqable.com/pricing/ +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://reqable.com/docs/introduction +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.locale.zh-CN.yaml b/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.locale.zh-CN.yaml new file mode 100644 index 000000000000..e333c2477d1d --- /dev/null +++ b/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.locale.zh-CN.yaml @@ -0,0 +1,47 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Reqable.Reqable +PackageVersion: 3.1.3 +PackageLocale: zh-CN +Publisher: Reqqable Inc. +PublisherUrl: https://reqable.com/zh-CN/ +PublisherSupportUrl: https://github.com/reqable/reqable-app/issues +PrivacyUrl: https://reqable.com/zh-CN/policy +Author: 上海日夸宝信息技术有限公司 +PackageName: Reqable +PackageUrl: https://reqable.com/zh-CN/ +License: 专有软件 +LicenseUrl: https://reqable.com/zh-CN/policy +Copyright: Copyright (C) 2026 Reqable All rights reserved. +ShortDescription: 先进 API 生产力工具 +Description: Reqable = Fiddler + Charles + Postman,网络抓包和 API 测试一站化国产解决方案,全平台支持 HTTP1、HTTP2 和 HTTP3(QUIC)。 +Tags: +- 代理 +- 响应 +- 抓包 +- 流量 +- 网络 +- 网页 +- 请求 +- 调试 +ReleaseNotes: |- + 💪【优化】更新 Android 证书安装 Magisk 模块。 + 💪【优化】Base64 工具中解码二进制结果可以直接打开图片查看器进行查看。 + 💪【优化】当有弹窗遮盖时禁用下层文件拖拽功能。 + 💪【优化】可执行文件版本号不再包含构建版本号。 + 💪【优化】应用重启后可以正常恢复之前窗口最大化的状态。 + 🐞【修复】SSL 不兼容旧版重协商机制的 bug。 + 🐞【修复】部分语言生成代码中 URL 未正确编码的 bug。 + 🐞【修复】数字域名无法解析的 bug。 + 🐞【修复】设置中清理缓存未能删干净的 bug。 + 🐞【修复】设置中清理缓存会导致用户调试脚本被删除的 bug。 + 🐞【修复】API 授权未能正确跳转到继承授权页面的 bug。 + 🐞【修复】导入部分 ApiPost 集合文件时 URL 未正确获取的 bug。 +ReleaseNotesUrl: https://reqable.com/zh-CN/docs/changelogs/windows/ +PurchaseUrl: https://reqable.com/zh-CN/pricing/ +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://reqable.com/zh-CN/docs/introduction +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.yaml b/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.yaml new file mode 100644 index 000000000000..157e8e012beb --- /dev/null +++ b/manifests/r/Reqable/Reqable/3.1.3/Reqable.Reqable.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Reqable.Reqable +PackageVersion: 3.1.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.installer.yaml b/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.installer.yaml new file mode 100644 index 000000000000..43a74817394b --- /dev/null +++ b/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.installer.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Sourcegraph.Amp +PackageVersion: 0.0.1780032159-g3925ab +InstallerType: portable +Commands: +- amp +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +Installers: +- Architecture: x64 + InstallerUrl: https://static.ampcode.com/cli/0.0.1780032159-g3925ab/amp-windows-x64-baseline.exe + InstallerSha256: 11CEE8B20C4F5ADC1C1D58DEDF346DDE1D911D4D4C6948A50D9EF69FC75117D2 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.locale.en-US.yaml b/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.locale.en-US.yaml new file mode 100644 index 000000000000..69e203e9e4d0 --- /dev/null +++ b/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Sourcegraph.Amp +PackageVersion: 0.0.1780032159-g3925ab +PackageLocale: en-US +Publisher: Sourcegraph, Inc. +PublisherUrl: https://ampcode.com/ +PrivacyUrl: https://ampcode.com/privacy-policy +Author: Sourcegraph, Inc. +PackageName: Amp CLI +PackageUrl: https://ampcode.com/ +License: Proprietary +LicenseUrl: https://ampcode.com/terms +CopyrightUrl: https://ampcode.com/terms +ShortDescription: The frontier coding agent for your terminal and editor. +Description: |- + Amp is the frontier coding agent for your terminal and editor. + - Multi-Model: Opus 4.7, GPT-5.4, fast models—Amp uses them all, for what each model is best at. + - Opinionated: You’re always using the good parts of Amp. If we don’t use and love a feature, we kill it. + - On the Frontier: Amp goes where the models take it. No backcompat, no legacy features. + - Threads: You can save and share your interactions with Amp. You wouldn’t code without version control, would you? + Amp has 3 modes: smart (unconstrained state-of-the-art model use), rush (faster, cheaper, suited for small, well-defined tasks), and deep (deep reasoning with extended thinking for complex problems). +Tags: +- agent +- agentic +- ai +- chatbot +- code +- coding +- large-language-model +- llm +- programming +PurchaseUrl: https://ampcode.com/manual#pricing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.locale.zh-CN.yaml b/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.locale.zh-CN.yaml new file mode 100644 index 000000000000..7c9c6e4a2563 --- /dev/null +++ b/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.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: Sourcegraph.Amp +PackageVersion: 0.0.1780032159-g3925ab +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 适用于终端与编辑器的前沿编码智能体。 +Description: |- + Amp 是适用于终端与编辑器的前沿编码智能体。 + - 多模型支持:Opus 4.7、GPT-5.4、速型模型——Amp 会调用所有模型,各展所长。 + - 去芜存菁:你始终能用到 Amp 的核心优质功能。如果我们自己不用、也不喜欢某个功能,就会直接砍掉它。 + - 前沿迭代:Amp 跟随大模型的发展持续更新。不保留向后兼容,不遗留老旧功能。 + - 会话管理:你可以保存并分享你和 Amp 的交互记录。写代码总离不开版本控制,不是吗? + Amp 共有三种工作模式:智能模式(调用无限制的最先进模型)、快速模式(速度更快、成本更低,适合定义清晰的小型任务),以及深度模式(针对复杂问题提供带扩展思考的深度推理)。 +Tags: +- 人工智能 +- 代码 +- 大语言模型 +- 智能体 +- 编程 +- 聊天机器人 +- 自主智能 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.yaml b/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.yaml new file mode 100644 index 000000000000..8283928461ec --- /dev/null +++ b/manifests/s/Sourcegraph/Amp/0.0.1780032159-g3925ab/Sourcegraph.Amp.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: Sourcegraph.Amp +PackageVersion: 0.0.1780032159-g3925ab +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.installer.yaml b/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.installer.yaml new file mode 100644 index 000000000000..40706fd9ff7f --- /dev/null +++ b/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.installer.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Sourcegraph.Amp +PackageVersion: 0.0.1780045299-g6094cf +InstallerType: portable +Commands: +- amp +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +Installers: +- Architecture: x64 + InstallerUrl: https://static.ampcode.com/cli/0.0.1780045299-g6094cf/amp-windows-x64-baseline.exe + InstallerSha256: A11D9E880658B82FA60D959F17F144F59EAE529EA69FF8E17B19D692E0713700 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.locale.en-US.yaml b/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.locale.en-US.yaml new file mode 100644 index 000000000000..082f9db427d3 --- /dev/null +++ b/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Sourcegraph.Amp +PackageVersion: 0.0.1780045299-g6094cf +PackageLocale: en-US +Publisher: Sourcegraph, Inc. +PublisherUrl: https://ampcode.com/ +PrivacyUrl: https://ampcode.com/privacy-policy +Author: Sourcegraph, Inc. +PackageName: Amp CLI +PackageUrl: https://ampcode.com/ +License: Proprietary +LicenseUrl: https://ampcode.com/terms +CopyrightUrl: https://ampcode.com/terms +ShortDescription: The frontier coding agent for your terminal and editor. +Description: |- + Amp is the frontier coding agent for your terminal and editor. + - Multi-Model: Opus 4.7, GPT-5.4, fast models—Amp uses them all, for what each model is best at. + - Opinionated: You’re always using the good parts of Amp. If we don’t use and love a feature, we kill it. + - On the Frontier: Amp goes where the models take it. No backcompat, no legacy features. + - Threads: You can save and share your interactions with Amp. You wouldn’t code without version control, would you? + Amp has 3 modes: smart (unconstrained state-of-the-art model use), rush (faster, cheaper, suited for small, well-defined tasks), and deep (deep reasoning with extended thinking for complex problems). +Tags: +- agent +- agentic +- ai +- chatbot +- code +- coding +- large-language-model +- llm +- programming +PurchaseUrl: https://ampcode.com/manual#pricing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.locale.zh-CN.yaml b/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.locale.zh-CN.yaml new file mode 100644 index 000000000000..3b2307bc5d95 --- /dev/null +++ b/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.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: Sourcegraph.Amp +PackageVersion: 0.0.1780045299-g6094cf +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 适用于终端与编辑器的前沿编码智能体。 +Description: |- + Amp 是适用于终端与编辑器的前沿编码智能体。 + - 多模型支持:Opus 4.7、GPT-5.4、速型模型——Amp 会调用所有模型,各展所长。 + - 去芜存菁:你始终能用到 Amp 的核心优质功能。如果我们自己不用、也不喜欢某个功能,就会直接砍掉它。 + - 前沿迭代:Amp 跟随大模型的发展持续更新。不保留向后兼容,不遗留老旧功能。 + - 会话管理:你可以保存并分享你和 Amp 的交互记录。写代码总离不开版本控制,不是吗? + Amp 共有三种工作模式:智能模式(调用无限制的最先进模型)、快速模式(速度更快、成本更低,适合定义清晰的小型任务),以及深度模式(针对复杂问题提供带扩展思考的深度推理)。 +Tags: +- 人工智能 +- 代码 +- 大语言模型 +- 智能体 +- 编程 +- 聊天机器人 +- 自主智能 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.yaml b/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.yaml new file mode 100644 index 000000000000..9dbc96f9cd7e --- /dev/null +++ b/manifests/s/Sourcegraph/Amp/0.0.1780045299-g6094cf/Sourcegraph.Amp.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: Sourcegraph.Amp +PackageVersion: 0.0.1780045299-g6094cf +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.installer.yaml b/manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.installer.yaml similarity index 80% rename from manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.installer.yaml rename to manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.installer.yaml index efe261543320..29742d99ba90 100644 --- a/manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.installer.yaml +++ b/manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Tencent.WeChat.Universal -PackageVersion: 4.1.10.24 +PackageVersion: 4.1.10.27 InstallerType: nullsoft Scope: machine UpgradeBehavior: install @@ -12,6 +12,6 @@ ProductCode: Weixin Installers: - Architecture: x64 InstallerUrl: https://dldir1v6.qq.com/weixin/Universal/Windows/WeChatWin_4.1.10.exe - InstallerSha256: 72200E92091DA921FB9520D72DB5A4FE7065839BAAB1E0AEABCA1D88EE4539E1 + InstallerSha256: 54203FC2B41983FA106B0AF0D67F86BEFC56CCD3DC1005D4BAB6DE8EA36B4F74 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.locale.en-US.yaml b/manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.locale.en-US.yaml similarity index 97% rename from manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.locale.en-US.yaml rename to manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.locale.en-US.yaml index bbf9e5341d18..45309e8ea235 100644 --- a/manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.locale.en-US.yaml +++ b/manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Tencent.WeChat.Universal -PackageVersion: 4.1.10.24 +PackageVersion: 4.1.10.27 PackageLocale: en-US Publisher: 腾讯科技(深圳)有限公司 PublisherUrl: https://www.wechat.com/en/ diff --git a/manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.locale.zh-Hans-CN.yaml b/manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.locale.zh-Hans-CN.yaml similarity index 97% rename from manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.locale.zh-Hans-CN.yaml rename to manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.locale.zh-Hans-CN.yaml index 1ad9eed58632..62ba31d04b87 100644 --- a/manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.locale.zh-Hans-CN.yaml +++ b/manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.locale.zh-Hans-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Tencent.WeChat.Universal -PackageVersion: 4.1.10.24 +PackageVersion: 4.1.10.27 PackageLocale: zh-Hans-CN Publisher: 腾讯科技(深圳)有限公司 PublisherUrl: https://weixin.qq.com/ diff --git a/manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.locale.zh-Hans.yaml b/manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.locale.zh-Hans.yaml similarity index 97% rename from manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.locale.zh-Hans.yaml rename to manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.locale.zh-Hans.yaml index 6c35ee9783b4..c094e9476581 100644 --- a/manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.locale.zh-Hans.yaml +++ b/manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.locale.zh-Hans.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Tencent.WeChat.Universal -PackageVersion: 4.1.10.24 +PackageVersion: 4.1.10.27 PackageLocale: zh-Hans Publisher: 腾讯科技(深圳)有限公司 PublisherUrl: https://www.wechat.com/zh_CN/ diff --git a/manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.yaml b/manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.yaml similarity index 90% rename from manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.yaml rename to manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.yaml index c84445c0b280..5a922ccb1099 100644 --- a/manifests/t/Tencent/WeChat/Universal/4.1.10.24/Tencent.WeChat.Universal.yaml +++ b/manifests/t/Tencent/WeChat/Universal/4.1.10.27/Tencent.WeChat.Universal.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Tencent.WeChat.Universal -PackageVersion: 4.1.10.24 +PackageVersion: 4.1.10.27 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.installer.yaml b/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.installer.yaml new file mode 100644 index 000000000000..a8d96a13ae38 --- /dev/null +++ b/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.installer.yaml @@ -0,0 +1,154 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Tencent.WorkBuddy +PackageVersion: 4.24.2 +InstallerType: inno +Scope: user +InstallerSwitches: + Custom: /mergetasks=!runcode +UpgradeBehavior: install +Protocols: +- workbuddy +FileExtensions: +- ascx +- asp +- aspx +- bash +- bash_login +- bash_logout +- bash_profile +- bashrc +- bib +- bowerrc +- c +- c++ +- cc +- cfg +- cjs +- clj +- cljs +- cljx +- clojure +- cls +- cmake +- code-workspace +- coffee +- config +- containerfile +- cpp +- cs +- cshtml +- csproj +- css +- csv +- csx +- ctp +- cxx +- dart +- diff +- dockerfile +- dot +- dtd +- editorconfig +- edn +- erb +- eyaml +- eyml +- fs +- fsi +- fsscript +- fsx +- gemspec +- gitattributes +- gitconfig +- gitignore +- go +- gradle +- groovy +- h +- h++ +- handlebars +- hbs +- hh +- hpp +- hxx +- ipynb +- jade +- jav +- java +- js +- jscsrc +- jshintrc +- jshtm +- json +- jsp +- jsx +- less +- lua +- m +- makefile +- markdown +- md +- mdoc +- mdown +- mdtext +- mdtxt +- mdwn +- mjs +- mk +- mkd +- mkdn +- ml +- mli +- npmignore +- php +- phtml +- pl +- pl6 +- plist +- pm +- pm6 +- pod +- pp +- profile +- properties +- psgi +- py +- pyi +- r +- rb +- rhistory +- rprofile +- rs +- rst +- rt +- sass +- scss +- sh +- shtml +- sql +- t +- tex +- toml +- ts +- tsx +- vb +- vue +- wxi +- wxl +- wxs +- xaml +- xhtml +- xml +- yaml +- yml +- zsh +ProductCode: '{BFD312E9-1019-4F57-9F44-F86246833B50}}_is1' +ReleaseDate: 2026-05-28 +Installers: +- Architecture: x64 + InstallerUrl: https://download.codebuddy.cn/workbuddy/saas/win32-x64-user/WorkBuddy-win32-x64-user-4.24.2.29266680-b451b1ea.exe + InstallerSha256: AB2710B5233636DA8D497D68E69AA8EED6E1BCBAC79FEE461274785BEA2F788E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.locale.en-US.yaml b/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.locale.en-US.yaml new file mode 100644 index 000000000000..c533f0d8a010 --- /dev/null +++ b/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Tencent.WorkBuddy +PackageVersion: 4.24.2 +PackageLocale: en-US +Author: Tencent Technology (Shenzhen) Company Limited +License: Proprietary +ShortDescription: Desktop Agents - A New Paradigm for Office Work +Description: WorkBuddy is an AI-native desktop agent workspace that drives office automation through natural language. With a single command, it handles data processing, content creation, and in-depth analysis, delivering ready-to-use results and redefining workplace efficiency standards. +Tags: +- agent +- agentic +- ai +- large-language-model +- llm +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.locale.zh-CN.yaml b/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.locale.zh-CN.yaml new file mode 100644 index 000000000000..3c054952fd96 --- /dev/null +++ b/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.locale.zh-CN.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Tencent.WorkBuddy +PackageVersion: 4.24.2 +PackageLocale: zh-CN +Publisher: Tencent Technology (Shenzhen) Company Limited +PublisherUrl: https://www.codebuddy.cn/ +PublisherSupportUrl: https://cloud.tencent.com/document/product/1749/104249 +PrivacyUrl: https://privacy.qq.com/document/preview/284d799a07164d09bfc7cedd0ec3e089 +Author: 腾讯科技(深圳)有限公司 +PackageName: WorkBuddy +PackageUrl: https://copilot.tencent.com/work/ +License: 专有软件 +LicenseUrl: https://cloud.tencent.com/document/product/301/106125 +Copyright: Copyright (C) 2026 Tencent. All rights reserved. +CopyrightUrl: https://cloud.tencent.com/document/product/301/106125 +ShortDescription: 桌面智能体 办公新范式 +Description: WorkBuddy 是 AI 原生的桌面智能体工作台,以自然语言驱动办公自动化,一句指令即可完成数据处理、内容创作与深度分析,直接验收可交付结果,重塑职场效率标准。 +Tags: +- 人工智能 +- 大语言模型 +- 智能体 +- 自主智能 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.yaml b/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.yaml new file mode 100644 index 000000000000..1c48a82a894f --- /dev/null +++ b/manifests/t/Tencent/WorkBuddy/4.24.2/Tencent.WorkBuddy.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Tencent.WorkBuddy +PackageVersion: 4.24.2 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.installer.yaml b/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.installer.yaml new file mode 100644 index 000000000000..33832bda3490 --- /dev/null +++ b/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.installer.yaml @@ -0,0 +1,94 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Vivaldi.Vivaldi +PackageVersion: 8.0.4033.35 +InstallerType: exe +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --vivaldi-silent + SilentWithProgress: --vivaldi-silent + InstallLocation: --vivaldi-install-dir="" + Log: --verbose-logging --log-file="" +ExpectedReturnCodes: +- InstallerReturnCode: 60 + ReturnResponse: installInProgress +- InstallerReturnCode: 22 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 7 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 4 + ReturnResponse: downgrade +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +- tel +FileExtensions: +- apng +- flac +- gif +- htm +- html +- ico +- jpeg +- jpg +- log +- m4v +- mht +- mhtml +- mp3 +- mp4 +- ogg +- pdf +- png +- shtml +- svg +- txt +- webp +- xht +- xhtml +- xml +ProductCode: Vivaldi +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://downloads.vivaldi.com/stable/Vivaldi.8.0.4033.35.exe + InstallerSha256: 6661F57A28399661EC9EA188E0D1D6552C4D92CE7FD5114854F788EEEFE44428 + InstallerSwitches: + Custom: --do-not-launch-chrome +- Architecture: x86 + Scope: machine + InstallerUrl: https://downloads.vivaldi.com/stable/Vivaldi.8.0.4033.35.exe + InstallerSha256: 6661F57A28399661EC9EA188E0D1D6552C4D92CE7FD5114854F788EEEFE44428 + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level +- Architecture: x64 + Scope: user + InstallerUrl: https://downloads.vivaldi.com/stable/Vivaldi.8.0.4033.35.x64.exe + InstallerSha256: 93B721E70D5D18A2604C8D6703490688C10559B5A89F6BAECE15041546E9B9FD + InstallerSwitches: + Custom: --do-not-launch-chrome +- Architecture: x64 + Scope: machine + InstallerUrl: https://downloads.vivaldi.com/stable/Vivaldi.8.0.4033.35.x64.exe + InstallerSha256: 93B721E70D5D18A2604C8D6703490688C10559B5A89F6BAECE15041546E9B9FD + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level +- Architecture: arm64 + Scope: user + InstallerUrl: https://downloads.vivaldi.com/stable/Vivaldi.8.0.4033.35.arm64.exe + InstallerSha256: 3633CA528F14A914466FFED86295F04F053803A3DB1D34115B12893888BBAE56 + InstallerSwitches: + Custom: --do-not-launch-chrome +- Architecture: arm64 + Scope: machine + InstallerUrl: https://downloads.vivaldi.com/stable/Vivaldi.8.0.4033.35.arm64.exe + InstallerSha256: 3633CA528F14A914466FFED86295F04F053803A3DB1D34115B12893888BBAE56 + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.locale.en-US.yaml b/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.locale.en-US.yaml new file mode 100644 index 000000000000..59bc300108d8 --- /dev/null +++ b/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Vivaldi.Vivaldi +PackageVersion: 8.0.4033.35 +PackageLocale: en-US +Publisher: Vivaldi Technologies AS. +PublisherUrl: https://vivaldi.com/ +PublisherSupportUrl: https://help.vivaldi.com/ +PrivacyUrl: https://vivaldi.com/privacy/browser/ +Author: Vivaldi Technologies AS +PackageName: Vivaldi +PackageUrl: https://vivaldi.com/desktop/ +License: Freeware +LicenseUrl: https://vivaldi.com/privacy/vivaldi-end-user-license-agreement/ +Copyright: Copyright 2026 Vivaldi Technologies AS. All rights reserved. +ShortDescription: Powerful, Personal and Private web browser. +Description: Vivaldi is a web browser. But fun. It comes with a bunch of clever features built-in. It’s super flexible and does not track you. +Moniker: vivaldi +Tags: +- browser +- chromium +- internet +- manifestv2 +- mv2 +- pdfreader +- protonvpn +- rssreader +- web +- webbrowser +- webpage +- xp99gvqdx7jpr4 +ReleaseNotes: '- [Chromium] Update to 148.0.7778.221' +ReleaseNotesUrl: https://update.vivaldi.com/update/1.0/relnotes/8.0.4033.35.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.locale.zh-CN.yaml b/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.locale.zh-CN.yaml new file mode 100644 index 000000000000..8783f04411ac --- /dev/null +++ b/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.locale.zh-CN.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Vivaldi.Vivaldi +PackageVersion: 8.0.4033.35 +PackageLocale: zh-CN +Publisher: Vivaldi Technologies AS. +PublisherUrl: https://vivaldi.com/zh-hans/ +PublisherSupportUrl: https://help.vivaldi.com/ +PrivacyUrl: https://vivaldi.com/zh-hans/privacy/browser/ +Author: Vivaldi Technologies AS. +PackageName: Vivaldi +PackageUrl: https://vivaldi.com/zh-hans/desktop/ +License: 免费软件 +LicenseUrl: https://vivaldi.com/zh-hans/privacy/vivaldi-end-user-license-agreement/ +Copyright: Copyright 2026 Vivaldi Technologies AS. 版权所有。 +ShortDescription: 功能强大、个性定制、注重隐私的浏览器 +Description: Vivaldi 是一个有趣的浏览器,内置了很多强大的功能,并且非常灵活,不会跟踪你。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +- 隐私 +ReleaseNotesUrl: https://update.vivaldi.com/update/1.0/relnotes/8.0.4033.35.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.yaml b/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.yaml new file mode 100644 index 000000000000..c170980f6fc6 --- /dev/null +++ b/manifests/v/Vivaldi/Vivaldi/8.0.4033.35/Vivaldi.Vivaldi.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: Vivaldi.Vivaldi +PackageVersion: 8.0.4033.35 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.installer.yaml b/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.installer.yaml index 39eb432949a8..2133166c818d 100644 --- a/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.installer.yaml +++ b/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.installer.yaml @@ -1,10 +1,17 @@ -# 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: Wakatime.DesktopWakatime PackageVersion: 3.0.0.1 InstallerLocale: en-US InstallerType: nullsoft +ProductCode: 085ff2ea-3820-5577-8454-91bfd2003971 +ReleaseDate: 2026-05-21 +AppsAndFeaturesEntries: +- DisplayName: WakaTime 3.0.0 + Publisher: Wakatime + DisplayVersion: 3.0.0 + ProductCode: 085ff2ea-3820-5577-8454-91bfd2003971 Installers: - Architecture: x86 InstallerUrl: https://github.com/wakatime/desktop-wakatime/releases/download/v3.0.0+1/wakatime-win32-ia32.exe @@ -26,4 +33,3 @@ Installers: - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 ManifestType: installer ManifestVersion: 1.12.0 -ReleaseDate: 2026-05-21 diff --git a/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.locale.en-US.yaml b/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.locale.en-US.yaml index f3e2a1128b0c..dda243273989 100644 --- a/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.locale.en-US.yaml +++ b/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.locale.en-US.yaml @@ -1,4 +1,4 @@ -# 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: Wakatime.DesktopWakatime @@ -21,7 +21,10 @@ Tags: - time-tracker - time-tracking-app - typescript -ReleaseNotesUrl: https://github.com/wakatime/desktop-wakatime/releases/tag/v3.0.0%2B1 +ReleaseNotes: |- + Changelog + 5e9143b Pin actions dependencies to prevent supply chain attacks +ReleaseNotesUrl: https://github.com/wakatime/desktop-wakatime/releases/tag/v3.0.0+1 Documentations: - DocumentLabel: Wiki DocumentUrl: https://github.com/wakatime/desktop-wakatime/wiki diff --git a/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.yaml b/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.yaml index a6619284334e..f23788e5eca7 100644 --- a/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.yaml +++ b/manifests/w/Wakatime/DesktopWakatime/3.0.0.1/Wakatime.DesktopWakatime.yaml @@ -1,4 +1,4 @@ -# Created using wingetcreate 1.12.8.0 +# Created with komac v2.16.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Wakatime.DesktopWakatime diff --git a/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.installer.yaml b/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.installer.yaml new file mode 100644 index 000000000000..abcb7f42b6af --- /dev/null +++ b/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.installer.yaml @@ -0,0 +1,75 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Wondershare.UniConverter.17 +PackageVersion: 17.4.0.589 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- wsvcu +FileExtensions: +- 3g2 +- 3gp +- aac +- ac3 +- aif +- aiff +- amr +- ape +- asf +- au +- avi +- caf +- divx +- dv +- f4v +- flac +- flv +- m2t +- m2ts +- m4a +- m4b +- m4p +- m4r +- m4v +- mka +- mkv +- mod +- mov +- mp2 +- mp3 +- mp4 +- mpa +- mpeg +- mpg +- mts +- mxf +- nsv +- ogg +- ogv +- opus +- ra +- ram +- rm +- rmvb +- tod +- tp +- trp +- ts +- ts4 +- use +- vob +- vro +- wav +- webm +- wma +- wmv +- wtv +ProductCode: UniConverter 17_is1 +Installers: +- Architecture: x64 + InstallerUrl: https://download.wondershare.com/cbs_down/uniconverter_64bit_17.4.0_full14204.exe + InstallerSha256: 492F283B8D8FD0D520166D895EDB11C45E056A5748929E6F02B593F91F2234EE +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.locale.en-US.yaml b/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.locale.en-US.yaml new file mode 100644 index 000000000000..e43f004fae92 --- /dev/null +++ b/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.locale.en-US.yaml @@ -0,0 +1,51 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Wondershare.UniConverter.17 +PackageVersion: 17.4.0.589 +PackageLocale: en-US +Publisher: Wondershare Software +PublisherUrl: https://www.wondershare.com/ +PublisherSupportUrl: https://support.wondershare.com/how-tos/uniconverter/ +PrivacyUrl: https://www.wondershare.com/privacy.html +Author: Wondershare Technology Group Co.,Ltd. +PackageName: Wondershare UniConverter 17 +PackageUrl: https://videoconverter.wondershare.com/ +License: Proprietary +LicenseUrl: https://www.wondershare.com/company/end-user-license-agreement.html +Copyright: Copyright © 2026 Wondershare. All rights reserved. +CopyrightUrl: https://www.wondershare.com/company/terms_conditions.html +ShortDescription: A high-speed converter for thousands of media formats. +Description: Wondershare UniConverter is a complete video conversion toolset (conversion, editing, screen recording) with a simple user interface. It is easy to learn, cost effective, and empowers you to work faster. Compress files to more manageable sizes, convert into over 1000 formats, and edit your videos all with one software. +Tags: +- audio +- capture +- compress +- convert +- converter +- crop +- edit +- encode +- format +- media +- merge +- music +- record +- trim +- video +- watermark +ReleaseNotes: |- + 1. Video Watermark Remover: New generative AI-powered Ultra model for higher-quality watermark removal, plus a Motion Tracking brush for erasing moving objects more naturally. + 2. Video Enhancer: Upgraded Video Stabilization capability and a new Motion Blur model help make shaky or choppy footage smoother. + 3. Image Enhancer: New AI model presets for removing Glare & Reflections, and enhancing cloudy photos. + 4. Video Background Remover: Cleaner cutouts, smoother preview, and an improved background replacement workflow. + 5. Noise Remover: Better audio denoising results and an improved interaction experience. + 6. Video Compressor: Quality-priority mode now supports GPU acceleration on Windows with NVIDIA graphics cards. + This update also includes UX refinements and bug fixes for a smoother editing and exporting experience. +ReleaseNotesUrl: https://videoconverter.wondershare.com/what-is-new.html +PurchaseUrl: https://videoconverter.wondershare.com/store/windows-individuals.html +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://videoconverter.wondershare.com/guide/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.locale.zh-CN.yaml b/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.locale.zh-CN.yaml new file mode 100644 index 000000000000..7b63b9b2cb37 --- /dev/null +++ b/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.locale.zh-CN.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Wondershare.UniConverter.17 +PackageVersion: 17.4.0.589 +PackageLocale: zh-CN +Author: 万兴科技集团股份有限公司 +PackageName: Wondershare UniConverter 17 +License: 专有软件 +Copyright: © 2026 万兴科技集团股份有限公司 版权所有 +ShortDescription: 一款支持数千媒体格式的高速转换器 +Description: Wondershare UniConverter 提供视频转换、压缩、编辑、录屏等全方位的专业音视频解决方案,你可以通过 Wondershare UniConverter 进行 1000+ 种视频格式的转换,将文件压缩至更易于操作和管理的大小,并对您的视频进行编辑处理;同时,Wondershare UniConverter 还提供 DVD、CD 刻录以及数据修复、GIF 制作、图片格式转换等特色功能,简单的用户界面助你轻松快速地实现音视频以及图片的处理工作。 +Tags: +- 剪切 +- 压制 +- 压缩 +- 合并 +- 媒体 +- 录制 +- 录屏 +- 格式 +- 水印 +- 视频 +- 编辑 +- 裁剪 +- 转换 +- 转换器 +- 音乐 +- 音频 +Documentations: +- DocumentLabel: 用户手册 + DocumentUrl: https://videoconverter.wondershare.com/guide/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.yaml b/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.yaml new file mode 100644 index 000000000000..4c3455822a44 --- /dev/null +++ b/manifests/w/Wondershare/UniConverter/17/17.4.0.589/Wondershare.UniConverter.17.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: Wondershare.UniConverter.17 +PackageVersion: 17.4.0.589 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/x/xiaocang/EasydictforWindows/0.8.0/xiaocang.EasydictforWindows.installer.yaml b/manifests/x/xiaocang/EasydictforWindows/0.8.0/xiaocang.EasydictforWindows.installer.yaml new file mode 100644 index 000000000000..a5a3ef590280 --- /dev/null +++ b/manifests/x/xiaocang/EasydictforWindows/0.8.0/xiaocang.EasydictforWindows.installer.yaml @@ -0,0 +1,21 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: xiaocang.EasydictforWindows +PackageVersion: 0.8.0 +InstallerLocale: en-US +InstallerType: inno +Scope: user +InstallerSwitches: + Custom: /CURRENTUSER +ProductCode: '{B7E2A5F3-9C41-4D82-A6F0-1E8B3C5D7F9A}_is1' +ReleaseDate: 2026-05-29 +AppsAndFeaturesEntries: +- ProductCode: '{B7E2A5F3-9C41-4D82-A6F0-1E8B3C5D7F9A}_is1' +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/xiaocang/easydict_win32/releases/download/v0.8.0/Easydict-v0.8.0-x64-setup.unsigned.exe + InstallerSha256: D50DD97F2EA3A0E12517B93BB1DD67897800153028C8C4241B1C6042035B2F42 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/x/xiaocang/EasydictforWindows/0.8.0/xiaocang.EasydictforWindows.locale.en-US.yaml b/manifests/x/xiaocang/EasydictforWindows/0.8.0/xiaocang.EasydictforWindows.locale.en-US.yaml new file mode 100644 index 000000000000..df6ced785609 --- /dev/null +++ b/manifests/x/xiaocang/EasydictforWindows/0.8.0/xiaocang.EasydictforWindows.locale.en-US.yaml @@ -0,0 +1,36 @@ +# 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: xiaocang.EasydictforWindows +PackageVersion: 0.8.0 +PackageLocale: en-US +Publisher: xiaocang +PublisherUrl: https://github.com/xiaocang +PublisherSupportUrl: https://github.com/xiaocang/easydict_win32/issues +PrivacyUrl: https://github.com/xiaocang/easydict_win32/blob/master/PRIVACY.md +Author: xiaocang +PackageName: Easydict for Windows +PackageUrl: https://github.com/xiaocang/easydict_win32 +License: GPL-3.0 +LicenseUrl: https://github.com/xiaocang/easydict_win32/blob/HEAD/LICENSE +Copyright: Copyright (c) 2023 Tisfeng (macOS original), 2026 xiaocang (Windows port) +CopyrightUrl: https://github.com/xiaocang/easydict_win32/blob/master/LICENSE +ShortDescription: Windows port of Easydict - Dictionary and translation app +Description: Windows port of Easydict translation app. Supports 15+ translation services (Google, DeepL, OpenAI, Gemini, etc.), global hotkeys, multiple window modes, clipboard monitoring, and LLM streaming. Self-contained application with system tray support. +Moniker: easydict +Tags: +- clipboard +- dictionary +- hotkey +- multilingual +- translation +- translator +ReleaseNotes: |- + What's Changed + - perf(startup): defer local AI provider and OCR service construction by @xiaocang in #160 + - refactor(ui-tests): enhance UI automation tests and improve screenshot handling by @xiaocang in #162 + - perf(settings): speed up first Settings paint and immediate tab switches by @xiaocang in #163 + Full Changelog: v0.7.7...v0.8.0 +ReleaseNotesUrl: https://github.com/xiaocang/easydict_win32/releases/tag/v0.8.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/x/xiaocang/EasydictforWindows/0.8.0/xiaocang.EasydictforWindows.yaml b/manifests/x/xiaocang/EasydictforWindows/0.8.0/xiaocang.EasydictforWindows.yaml new file mode 100644 index 000000000000..e2042f306c7d --- /dev/null +++ b/manifests/x/xiaocang/EasydictforWindows/0.8.0/xiaocang.EasydictforWindows.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: xiaocang.EasydictforWindows +PackageVersion: 0.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.installer.yaml b/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.installer.yaml new file mode 100644 index 000000000000..6124fb27051e --- /dev/null +++ b/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Yandex.Disk +PackageVersion: 3.2.48.5143 +InstallerType: exe +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: -silent -norestart + SilentWithProgress: -silent -norestart +UpgradeBehavior: install +Protocols: +- telemost +- yandex-disk +ProductCode: YandexDisk2 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://disk.cdn.yandex.net/update/stable/00eb82dca8011e52c63bd59500676ded/YandexDisk30Setup_x86.exe + InstallerSha256: ED33B6884BA19EB349641A68F9DA5B3873BB2A5DFA19BA6D949B0B40473F8414 +- Architecture: x86 + Scope: machine + InstallerUrl: https://disk.cdn.yandex.net/update/stable/00eb82dca8011e52c63bd59500676ded/YandexDisk30Setup_x86.exe + InstallerSha256: ED33B6884BA19EB349641A68F9DA5B3873BB2A5DFA19BA6D949B0B40473F8414 + InstallerSwitches: + Custom: -permachine +- Architecture: x64 + Scope: user + InstallerUrl: https://disk.cdn.yandex.net/update/stable/4668bc5f07deaa84358da1d2f1acea76/YandexDisk30Setup_x64.exe + InstallerSha256: AF02F7D713D36C0489BC44F2431D8A37FB744C3484584015638FCDE36CA1A65D +- Architecture: x64 + Scope: machine + InstallerUrl: https://disk.cdn.yandex.net/update/stable/4668bc5f07deaa84358da1d2f1acea76/YandexDisk30Setup_x64.exe + InstallerSha256: AF02F7D713D36C0489BC44F2431D8A37FB744C3484584015638FCDE36CA1A65D + InstallerSwitches: + Custom: -permachine +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.locale.en-US.yaml b/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.locale.en-US.yaml new file mode 100644 index 000000000000..4ab12ba816d8 --- /dev/null +++ b/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Yandex.Disk +PackageVersion: 3.2.48.5143 +PackageLocale: en-US +Publisher: Yandex +PublisherUrl: https://yandex.com/ +PublisherSupportUrl: https://yandex.com/support/ +PrivacyUrl: https://yandex.com/legal/confidential/en/ +Author: YANDEX LLC +PackageName: Yandex.Disk +PackageUrl: https://360.yandex.com/disk/download/ +License: Proprietary +LicenseUrl: https://yandex.com/legal/disk_termsofuse/en/ +Copyright: © 2001—2026, Yandex +ShortDescription: A computer program that syncs your files with Yandex cloud storage so you can access them anywhere from different devices. +Tags: +- backup +- cloud +- cloud-drive +- download +- drive +- file +- netdisk +- share +- sync +- upload +PurchaseUrl: https://360.yandex.com/premium-plans +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.locale.zh-CN.yaml b/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.locale.zh-CN.yaml new file mode 100644 index 000000000000..0fbadde7f52c --- /dev/null +++ b/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.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: Yandex.Disk +PackageVersion: 3.2.48.5143 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 一款可将您的文件与 Yandex 云存储同步的电脑程序,这样您就可以通过不同设备随时随地访问这些文件。 +Tags: +- 上传 +- 下载 +- 云 +- 云盘 +- 共享 +- 分享 +- 同步 +- 备份 +- 文件 +- 网盘 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.yaml b/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.yaml new file mode 100644 index 000000000000..59a3afbc4812 --- /dev/null +++ b/manifests/y/Yandex/Disk/3.2.48.5143/Yandex.Disk.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: Yandex.Disk +PackageVersion: 3.2.48.5143 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0