diff --git a/Tools/SandboxTest.ps1 b/Tools/SandboxTest.ps1 index 57121784a733e..b84600af73d4d 100644 --- a/Tools/SandboxTest.ps1 +++ b/Tools/SandboxTest.ps1 @@ -23,6 +23,7 @@ param( [Parameter(HelpMessage = 'The folder to map in the Sandbox.')] [ValidateScript({ if (-not (Test-Path -Path $_ -PathType Container)) { throw "$_ is not a folder." } + if ($_ -match '[''"<>&]') { throw "MapFolder path contains forbidden characters (' `" < > &): $_" } return $true })] [String] $MapFolder = $pwd, @@ -31,6 +32,41 @@ param( [string] $WinGetVersion, # WinGetOptions [Parameter(HelpMessage = 'Additional options for WinGet')] + [ValidateScript({ + # Parse allowed flags only from flag definition lines in winget install --help + # These lines start with whitespace followed by a dash (e.g., " -h,--silent ...") + if (-not (Get-Command 'winget.exe' -ErrorAction SilentlyContinue)) { + Write-Warning 'WinGet is not installed on the host. Skipping WinGetOptions validation.' + return $true + } + $helpLines = winget install --help 2>&1 | Where-Object { $_ -match '^\s+-' } + $allowedFlags = @() + foreach ($line in $helpLines) { + # Extract the flag portion before the description (everything up to two consecutive spaces) + $flagPart = ($line.Trim() -split '\s{2,}')[0] + $parsedTokens = $flagPart -split ',' | ForEach-Object { $_.Trim() } + Write-Debug "WinGetOptions: Parsed line '$($line.Trim())' -> flags: $($parsedTokens -join ', ')" + $allowedFlags += $parsedTokens + } + $allowedFlags = $allowedFlags | Where-Object { $_ } | Select-Object -Unique + if (-not $allowedFlags) { + throw 'Could not parse winget install flags from --help output. Ensure winget is installed.' + } + Write-Debug "WinGetOptions: Allow-list ($($allowedFlags.Count) flags): $($allowedFlags -join ', ')" + $tokens = $_ -split '\s+' + foreach ($token in $tokens) { + if ($token.StartsWith('-')) { + $isAllowed = $token -in $allowedFlags + Write-Debug "WinGetOptions: Checking token '$token' -> $(if ($isAllowed) { 'ALLOWED' } else { 'BLOCKED' })" + if (-not $isAllowed) { + throw "WinGetOptions contains disallowed flag: $token. Allowed flags: $($allowedFlags -join ', ')" + } + } else { + Write-Debug "WinGetOptions: Skipping value token '$token'" + } + } + return $true + })] [string] $WinGetOptions, # Switches [switch] $SkipManifestValidation, @@ -872,19 +908,23 @@ Pop-Location # Create the WSB file # Although this could be done using the native XML processor, it's easier to just write the content directly as a string Write-Verbose 'Creating WSB file for launching the sandbox' +$escapedTestDataFolder = [System.Security.SecurityElement]::Escape($script:TestDataFolder) +$escapedPrimaryMappedFolder = [System.Security.SecurityElement]::Escape($script:PrimaryMappedFolder) +$escapedSandboxWorkingDirectory = [System.Security.SecurityElement]::Escape($script:SandboxWorkingDirectory) +$escapedSandboxBootstrapFile = [System.Security.SecurityElement]::Escape($script:SandboxBootstrapFile) @" Enable - $($script:TestDataFolder) + $($escapedTestDataFolder) - $($script:PrimaryMappedFolder) + $($escapedPrimaryMappedFolder) - PowerShell Start-Process PowerShell -WindowStyle Maximized -WorkingDirectory '$($script:SandboxWorkingDirectory)' -ArgumentList '-ExecutionPolicy Bypass -NoExit -NoLogo -File $($script:SandboxBootstrapFile)' + PowerShell Start-Process PowerShell -WindowStyle Maximized -WorkingDirectory '$($escapedSandboxWorkingDirectory)' -ArgumentList '-ExecutionPolicy Bypass -NoExit -NoLogo -File $($escapedSandboxBootstrapFile)' Disable Disable diff --git a/manifests/a/AmN/yasb/2.0.4/AmN.yasb.installer.yaml b/manifests/a/AmN/yasb/2.0.4/AmN.yasb.installer.yaml new file mode 100644 index 0000000000000..de9a696be2324 --- /dev/null +++ b/manifests/a/AmN/yasb/2.0.4/AmN.yasb.installer.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: AmN.yasb +PackageVersion: 2.0.4 +InstallerLocale: en-US +InstallerType: msi +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/amnweb/yasb/releases/download/v2.0.4/yasb-2.0.4-x64.msi + InstallerSha256: 85E41D377E994F37EEB2CFCB38943BCC0204CC10F85822EAF0856FF903359345 + ProductCode: '{0524DE13-FAAF-4DF5-BEE3-A13A479EEA97}' + AppsAndFeaturesEntries: + - DisplayName: YASB Reborn + ProductCode: '{0524DE13-FAAF-4DF5-BEE3-A13A479EEA97}' + UpgradeCode: '{3F620CF5-07B5-47FD-8E37-9CA8AD14B608}' +- Architecture: arm64 + InstallerUrl: https://github.com/amnweb/yasb/releases/download/v2.0.4/yasb-2.0.4-aarch64.msi + InstallerSha256: 5583F0355BEC890DB5CDE5285B92BB50A094B47B2EF3ECD76F031507579540A1 + ProductCode: '{A370D0AA-AFD0-4E45-AFB8-E8D912EF93B9}' + AppsAndFeaturesEntries: + - DisplayName: YASB Reborn + ProductCode: '{A370D0AA-AFD0-4E45-AFB8-E8D912EF93B9}' + UpgradeCode: '{3F620CF5-07B5-47FD-8E37-9CA8AD14B608}' +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-06-15 diff --git a/manifests/a/AmN/yasb/2.0.4/AmN.yasb.locale.en-US.yaml b/manifests/a/AmN/yasb/2.0.4/AmN.yasb.locale.en-US.yaml new file mode 100644 index 0000000000000..4ac55b8338848 --- /dev/null +++ b/manifests/a/AmN/yasb/2.0.4/AmN.yasb.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: AmN.yasb +PackageVersion: 2.0.4 +PackageLocale: en-US +Publisher: AmN +PublisherUrl: https://github.com/amnweb +PublisherSupportUrl: https://github.com/amnweb/yasb/issues +Author: AmN +PackageName: yasb +PackageUrl: https://github.com/amnweb/yasb +License: MIT License +LicenseUrl: https://github.com/amnweb/yasb/blob/HEAD/LICENSE +Copyright: Copyright 2024 AmN. All rights reserved. +CopyrightUrl: https://github.com/amnweb/yasb/blob/main/LICENSE +ShortDescription: A configurable Windows status bar. +Description: A configurable Windows status bar. +Tags: +- status bar +- topbar +ReleaseNotesUrl: https://github.com/amnweb/yasb/releases/tag/v2.0.4 +InstallationNotes: https://github.com/amnweb/yasb +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/amnweb/yasb/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/e/EmoteInteractive/RemoteMouse/4.708/EmoteInteractive.RemoteMouse.yaml b/manifests/a/AmN/yasb/2.0.4/AmN.yasb.yaml similarity index 53% rename from manifests/e/EmoteInteractive/RemoteMouse/4.708/EmoteInteractive.RemoteMouse.yaml rename to manifests/a/AmN/yasb/2.0.4/AmN.yasb.yaml index 10fe2abb8f466..a4908014001c5 100644 --- a/manifests/e/EmoteInteractive/RemoteMouse/4.708/EmoteInteractive.RemoteMouse.yaml +++ b/manifests/a/AmN/yasb/2.0.4/AmN.yasb.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2026/May/26 +# Created using wingetcreate 1.12.8.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: EmoteInteractive.RemoteMouse -PackageVersion: '4.708' +PackageIdentifier: AmN.yasb +PackageVersion: 2.0.4 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/a/AppByTroye/KoodoReader/2.3.7/AppByTroye.KoodoReader.installer.yaml b/manifests/a/AppByTroye/KoodoReader/2.3.7/AppByTroye.KoodoReader.installer.yaml new file mode 100644 index 0000000000000..83df32cfe8293 --- /dev/null +++ b/manifests/a/AppByTroye/KoodoReader/2.3.7/AppByTroye.KoodoReader.installer.yaml @@ -0,0 +1,48 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: AppByTroye.KoodoReader +PackageVersion: 2.3.7 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +FileExtensions: +- azw +- azw3 +- cb7 +- cbr +- cbt +- cbz +- epub +- fb2 +- mobi +- pdf +ProductCode: 233610fa-2bda-5a09-a37b-75e0bafa7920 +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://dl.koodoreader.com/v2.3.7/Koodo-Reader-2.3.7-x64.exe + InstallerSha256: 4FADFE6DD441E77F758943230A293914DAD185D0A71C153AD46995B11883BBE6 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://dl.koodoreader.com/v2.3.7/Koodo-Reader-2.3.7-x64.exe + InstallerSha256: 4FADFE6DD441E77F758943230A293914DAD185D0A71C153AD46995B11883BBE6 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: user + InstallerUrl: https://dl.koodoreader.com/v2.3.7/Koodo-Reader-2.3.7-arm64.exe + InstallerSha256: 6C755D23957A990E6C003C9EB54D3EE705BBC34928958F658DD0CD8AEBB572AC + InstallerSwitches: + Custom: /currentuser +- Architecture: arm64 + Scope: machine + InstallerUrl: https://dl.koodoreader.com/v2.3.7/Koodo-Reader-2.3.7-arm64.exe + InstallerSha256: 6C755D23957A990E6C003C9EB54D3EE705BBC34928958F658DD0CD8AEBB572AC + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/AppByTroye/KoodoReader/2.3.7/AppByTroye.KoodoReader.locale.en-US.yaml b/manifests/a/AppByTroye/KoodoReader/2.3.7/AppByTroye.KoodoReader.locale.en-US.yaml new file mode 100644 index 0000000000000..73ab8d3aa7981 --- /dev/null +++ b/manifests/a/AppByTroye/KoodoReader/2.3.7/AppByTroye.KoodoReader.locale.en-US.yaml @@ -0,0 +1,73 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: AppByTroye.KoodoReader +PackageVersion: 2.3.7 +PackageLocale: en-US +Publisher: App by Troye +PublisherUrl: https://www.koodoreader.com/ +PublisherSupportUrl: https://www.koodoreader.com/en/support +PrivacyUrl: https://www.koodoreader.com/en/privacy +Author: Troye +PackageName: Koodo Reader +PackageUrl: https://www.koodoreader.com/ +License: AGPL-3.0 +LicenseUrl: https://github.com/koodo-reader/koodo-reader/blob/HEAD/LICENSE +Copyright: © 2026 App by Troye. All rights reserved. +CopyrightUrl: https://www.koodoreader.com/en/term +ShortDescription: All-in-one ebook reader +Description: Koodo Reader is an all-in-one eBook reader for Windows, macOS, Linux, and the web, supporting over 15 formats. +Moniker: koodoreader +Tags: +- ebook +- ebook-reader +- epub +- pdf +- reader +ReleaseNotes: |- + New Features + - The window title bar will display a black theme in Dark Mode + - Support for searching and matching book covers and metadata online + - Support for syncing notes and highlights with Siyuan Notes; Siyuan Notes must be running with the network serving feature enabled + - Support for importing books via URL using the book's download link + - Browser extension support for clipping web pages from the web and saving them to your library + - Support for importing articles via URL links from the web + - Web version now supports restoring the book library and full-screen reading + - Added automatic sync feature after importing books + - Support for returning to the previous reading position after clicking notes, highlights, bookmarks, or table of contents + - Added 6 preset book layouts + - (Mobile) Support for searching and matching book covers and metadata online + - (Mobile) Supports syncing notes and highlights with Siyuan Notes; Siyuan Notes must be running with network serving enabled + - (Mobile) Added automatic sync feature after importing books + - (Mobile version) Added 6 new preset book layouts + - (Mobile) Added scheduled sync feature with customizable sync intervals; go to Settings > Sync Options + - (Mobile) Support for syncing reading progress with KOReader. Go to Settings > Sync Options + - (Mobile) Support for syncing new vocabulary to Eudic and Anki. Go to Settings > Sync Options + - (Mobile) Support for swiping the screen to turn pages after disabling page-turn animations + - (Mobile) Free users can now use OPDS and reading statistics features + - (Mobile) iOS now supports update notifications + - (Mobile) Page-turning animations are now supported when volume buttons are enabled for page turning + - (Mobile) Send to Kindle now displays uploading progress + - (Mobile) Support for backing up and restoring the book library; go to Settings and scroll to the bottom + Fixes + - Fixed an issue where the text being read aloud did not sync with the current position while listening to TTS + - Fixed an issue where the password-protected page would pop up repeatedly in certain situations + - Fixed an issue where books, notes, and highlights links could not be opened when the app was not running + - (Mobile) Fixed an issue where the narration did not sync with the current position while using TTS + - (Mobile) Fixed an issue where the TTS feature malfunctioned in certain situations + - (Mobile) Fixed an issue where page-turning animations were not disabled in E-ink mode + - (Mobile) Fixed an error when sending files to Kindle that were too large + - (Mobile) Fixed an issue where changes to TTS settings did not take effect immediately + - (Mobile) Fixed an issue where importing large books via sharing or as a default opening method caused an error + - (Mobile) Fixed an issue where books could not be imported or opened on older versions of iOS (caused by WebView compatibility issues) + - (Mobile) TTS stopped unexpectedly after locking the screen + [!NOTE] + This version has been selected as the stable release candidate. It should work fine in most cases. If you have any concerns, please download the previous stable version + [!TIP] + You can also download the installation package for this version from the our self-hosted mirror. +ReleaseNotesUrl: https://github.com/koodo-reader/koodo-reader/releases/tag/v2.3.7 +Documentations: +- DocumentLabel: Document + DocumentUrl: https://www.koodoreader.com/en/document +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/AppByTroye/KoodoReader/2.3.7/AppByTroye.KoodoReader.locale.zh-CN.yaml b/manifests/a/AppByTroye/KoodoReader/2.3.7/AppByTroye.KoodoReader.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7be3237468c61 --- /dev/null +++ b/manifests/a/AppByTroye/KoodoReader/2.3.7/AppByTroye.KoodoReader.locale.zh-CN.yaml @@ -0,0 +1,67 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: AppByTroye.KoodoReader +PackageVersion: 2.3.7 +PackageLocale: zh-CN +PublisherUrl: https://www.koodoreader.com/zh +PublisherSupportUrl: https://www.koodoreader.com/zh/support +PrivacyUrl: https://www.koodoreader.com/zh/privacy +PackageUrl: https://www.koodoreader.com/zh +CopyrightUrl: https://www.koodoreader.com/zh/term +ShortDescription: 开源电子阅读解决方案 +Description: Koodo Reader 是一个开源的电子书阅读器,支持多达 15 种主流电子书格式,内置笔记、高亮、翻译功能,助力高效书籍阅读和学习。 +Tags: +- epub +- pdf +- 电子书 +- 电子书阅读器 +- 阅读器 +ReleaseNotes: |- + 新增 + - 窗口标题栏在黑夜模式下将显示为黑色 + - 支持从网络上搜索和匹配图书封面和元数据,请在图书上右键,编辑图书 + - 支持将笔记和高亮同步思源笔记,需要保持思源笔记处于运行状态,并开启了网络伺服功能 + - 支持通过图书的下载链接从 URL 导入图书 + - 浏览器扩展支持从网络上剪藏网页保存到书库 + - 支持通过网络上的文章链接从 URL 导入文章 + - 网页版支持恢复图书库和全屏阅读功能 + - 导入图书之后新增自动同步功能 + - 点击笔记、高亮、书签、目录跳转之后,支持点击返回按钮返回之前的阅读位置 + - 新增 6 个预设的图书排版 + -(移动版)支持从网络上搜索和匹配图书封面和元数据 + -(移动版)支持将笔记和高亮同步思源笔记,需要保持思源笔记处于运行状态,并开启了网络伺服功能 + -(移动版)导入图书之后新增自动同步功能 + -(移动版)新增 6 个预设的图书排版 + -(移动版)新增定时同步功能,支持自定义同步间隔,请前往设置-同步选项 + -(移动版)支持和 KOReader 之间同步图书阅读进度,请前往设置-同步选项 + -(移动版)支持同步生词到欧路词典和 Anki,请前往设置-同步选项 + -(移动版)关闭翻页动画之后,支持滑动屏幕翻页 + -(移动版)免费用户支持使用 OPDS 和阅读统计功能 + -(移动版)iOS 支持更新提示 + -(移动版)开启音量键翻页之后支持翻页动画 + -(移动版)发送到 Kindle 支持展示上传进度 + -(移动版)支持备份和恢复图书库,请前往设置-滑动到底部 + 修复 + - 修复听书时朗读的内容和当前位置不同步的问题 + - 修复部分情况下密码保护页面重复弹出的问题 + - 修复软件不处于运行状态时,无法打开图书、笔记、高亮外链的问题 + - 修复无法备份图书库到百度网盘和阿里云盘的问题 + -(移动版)修复听书时朗读的内容和当前位置不同步的问题 + -(移动版)修复部分情况下听书功能的异常问题 + -(移动版)修复墨水屏模式下翻页动画未关闭的问题 + -(移动版)修复发送到 Kindle,文件体积太大时的报错 + -(移动版)修复修改听书配置之后,没有立即生效的问题 + -(移动版)修复通过分享和作为打开方式导入大体积图书时的异常 + -(移动版)修复低版本 iOS 上无法导入和打开图书的问题(Webview 的兼容性问题导致的) + -(移动版)修复锁屏时听书的中断问题 + [!NOTE] + 此版本由于功能已经稳定,bug 也基本修复,被选为下个稳定版候选。如果您对此有任何顾虑,可以下载上一个稳定版. + [!TIP] + 我们还提供了高速下载镜像,您也可以从 自托管镜像 下载此版本的安装包 +ReleaseNotesUrl: https://github.com/koodo-reader/koodo-reader/releases/tag/v2.3.7 +Documentations: +- DocumentLabel: 帮助文档 + DocumentUrl: https://www.koodoreader.com/zh/document +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/a/AppByTroye/KoodoReader/2.3.7/AppByTroye.KoodoReader.yaml b/manifests/a/AppByTroye/KoodoReader/2.3.7/AppByTroye.KoodoReader.yaml new file mode 100644 index 0000000000000..03815db539f9c --- /dev/null +++ b/manifests/a/AppByTroye/KoodoReader/2.3.7/AppByTroye.KoodoReader.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: AppByTroye.KoodoReader +PackageVersion: 2.3.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/AquaSecurity/Trivy/0.71.1/AquaSecurity.Trivy.installer.yaml b/manifests/a/AquaSecurity/Trivy/0.71.1/AquaSecurity.Trivy.installer.yaml new file mode 100644 index 0000000000000..60482e679aaac --- /dev/null +++ b/manifests/a/AquaSecurity/Trivy/0.71.1/AquaSecurity.Trivy.installer.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: AquaSecurity.Trivy +PackageVersion: 0.71.1 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: trivy.exe +Commands: +- trivy +FileExtensions: +- trivyignore +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/aquasecurity/trivy/releases/download/v0.71.1/trivy_0.71.1_windows-64bit.zip + InstallerSha256: BA67DAF06923F52938812D1AF134B3193E22B3BC7A525743B9F2A3DED7AB5904 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/AquaSecurity/Trivy/0.71.1/AquaSecurity.Trivy.locale.en-US.yaml b/manifests/a/AquaSecurity/Trivy/0.71.1/AquaSecurity.Trivy.locale.en-US.yaml new file mode 100644 index 0000000000000..a0dd1fc9b8418 --- /dev/null +++ b/manifests/a/AquaSecurity/Trivy/0.71.1/AquaSecurity.Trivy.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: AquaSecurity.Trivy +PackageVersion: 0.71.1 +PackageLocale: en-US +Publisher: Aqua Security Software +PublisherUrl: https://www.aquasec.com/ +PublisherSupportUrl: https://github.com/aquasecurity/trivy +PackageName: Trivy +PackageUrl: https://aquasecurity.github.io/trivy +License: Apache-2.0 +LicenseUrl: https://github.com/aquasecurity/trivy/blob/HEAD/LICENSE +ShortDescription: Trivy is a comprehensive and versatile security scanner. +Description: Find vulnerabilities, misconfigurations, secrets, SBOM in containers, Kubernetes, code repositories, clouds and more +Moniker: trivy +Tags: +- cli +- containers +- devops-tools +- docker +- golang +- infrastructure-as-code +- kubernetes +- sbom +- security +- security-tools +- vulnerability +- vulnerability-detector +- vulnerability-scanners +ReleaseNotes: |- + Changelog + - 164b383 release: v0.71.1 [release/v0.71] (#10818) + - a72d9a4 fix(oci): validate artifact filename + - 3dd9847 fix: forward ospkg detector options through ospkg.NewScanner [backport: release/v0.71] (#10825) + - a62cbe4 fix(vex): load VEX documents from within the repository directory [backport: release/v0.71] (#10821) + - 43d1d26 fix: surface the original analysis error instead of context cancellation [backport: release/v0.71] (#10812) + - ac7696c ci: expect GitHub App bot as backport PR author [backport: release/v0.71] (#10815) +ReleaseNotesUrl: https://github.com/aquasecurity/trivy/releases/tag/v0.71.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Docker/DockerDesktop/4.77.0/Docker.DockerDesktop.yaml b/manifests/a/AquaSecurity/Trivy/0.71.1/AquaSecurity.Trivy.yaml similarity index 72% rename from manifests/d/Docker/DockerDesktop/4.77.0/Docker.DockerDesktop.yaml rename to manifests/a/AquaSecurity/Trivy/0.71.1/AquaSecurity.Trivy.yaml index 3e0a1398a3987..192968374973c 100644 --- a/manifests/d/Docker/DockerDesktop/4.77.0/Docker.DockerDesktop.yaml +++ b/manifests/a/AquaSecurity/Trivy/0.71.1/AquaSecurity.Trivy.yaml @@ -1,8 +1,8 @@ # Created with komac v2.16.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: Docker.DockerDesktop -PackageVersion: 4.77.0 +PackageIdentifier: AquaSecurity.Trivy +PackageVersion: 0.71.1 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/a/AsterPrivacy/AsterMail/1.4.10/AsterPrivacy.AsterMail.installer.yaml b/manifests/a/AsterPrivacy/AsterMail/1.4.10/AsterPrivacy.AsterMail.installer.yaml new file mode 100644 index 0000000000000..1ebefd980ae4e --- /dev/null +++ b/manifests/a/AsterPrivacy/AsterMail/1.4.10/AsterPrivacy.AsterMail.installer.yaml @@ -0,0 +1,17 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: AsterPrivacy.AsterMail +PackageVersion: 1.4.10 +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2026-06-07 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/Aster-Privacy/Aster-Mail/releases/download/v1.4.10/Aster-Mail-x64-setup.exe + InstallerSha256: 4465440f0a1822681025fa943e5a0dd0283163a7e3638462e84c8ff858facd1f + InstallerSwitches: + Silent: /S + SilentWithProgress: /S +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/AsterPrivacy/AsterMail/1.4.10/AsterPrivacy.AsterMail.locale.en-US.yaml b/manifests/a/AsterPrivacy/AsterMail/1.4.10/AsterPrivacy.AsterMail.locale.en-US.yaml new file mode 100644 index 0000000000000..7d40e0ce0d627 --- /dev/null +++ b/manifests/a/AsterPrivacy/AsterMail/1.4.10/AsterPrivacy.AsterMail.locale.en-US.yaml @@ -0,0 +1,25 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: AsterPrivacy.AsterMail +PackageVersion: 1.4.10 +PackageLocale: en-US +Publisher: Aster Privacy +PublisherUrl: https://astermail.org +PublisherSupportUrl: https://github.com/Aster-Privacy/Aster-Mail/issues +PrivacyUrl: https://astermail.org/privacy +Author: Aster Privacy +PackageName: Aster Mail +PackageUrl: https://astermail.org +License: AGPL-3.0 +LicenseUrl: https://github.com/Aster-Privacy/Aster-Mail/blob/main/LICENSE +ShortDescription: Cross-platform encrypted email client +Description: Aster Mail is a cross-platform, end-to-end encrypted email client built for Aster Privacy. Features quantum-safe encryption and zero-knowledge architecture. +Tags: +- email +- privacy +- encryption +- secure-email +- end-to-end-encryption +ReleaseNotesUrl: https://github.com/Aster-Privacy/Aster-Mail/releases/tag/v1.4.10 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/AsterPrivacy/AsterMail/1.4.10/AsterPrivacy.AsterMail.yaml b/manifests/a/AsterPrivacy/AsterMail/1.4.10/AsterPrivacy.AsterMail.yaml new file mode 100644 index 0000000000000..32c00eb920286 --- /dev/null +++ b/manifests/a/AsterPrivacy/AsterMail/1.4.10/AsterPrivacy.AsterMail.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: AsterPrivacy.AsterMail +PackageVersion: 1.4.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/Astronet/Scholaread/1.1.72/Astronet.Scholaread.installer.yaml b/manifests/a/Astronet/Scholaread/1.1.72/Astronet.Scholaread.installer.yaml new file mode 100644 index 0000000000000..c492090c36e0d --- /dev/null +++ b/manifests/a/Astronet/Scholaread/1.1.72/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.72 +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.72/com/Scholaread-win-x64-1.1.72.exe + InstallerSha256: 821DAD715D630122E2A125B2760C14775C3E1524C35EB79B8113D5A576A04C82 + ProductCode: c9fcbc5f-d2c1-524e-9455-a0098593a16f +- InstallerLocale: zh-CN + Architecture: x64 + InstallerUrl: https://cdn.scholaread.cn/assets/pc-releases/1.1.72/cn/Scholaread-win-x64-1.1.72.exe + InstallerSha256: 67F49C6B3638B241728AA45B5289FCDD53B61FD135071BB3396A615447D72198 + ProductCode: b171b469-051b-5b40-8791-79ac366d1e4b +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/Astronet/Scholaread/1.1.72/Astronet.Scholaread.locale.en-US.yaml b/manifests/a/Astronet/Scholaread/1.1.72/Astronet.Scholaread.locale.en-US.yaml new file mode 100644 index 0000000000000..cb2e56691656c --- /dev/null +++ b/manifests/a/Astronet/Scholaread/1.1.72/Astronet.Scholaread.locale.en-US.yaml @@ -0,0 +1,50 @@ +# 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.72 +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: |- + Enhanced AI Research Agent: + - Source-Backed Answers: Answers now include traceable in-text citations and reference lists. + - Smart Mention (@): Type @ to query specific papers, folders, or project files. + - Automated Library Management: Simply ask the Agent to import, categorize, move, or batch-delete your papers and folders. + - Python Data Analysis: Automatically clean datasets, run Python stats, and plot charts. + - Web Automation (Browser Use): Agent can navigate academic sites to check submission guidelines and find supplementary data. +PurchaseUrl: https://www.scholaread.com/pricing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Astronet/Scholaread/1.1.72/Astronet.Scholaread.locale.zh-CN.yaml b/manifests/a/Astronet/Scholaread/1.1.72/Astronet.Scholaread.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6d53416c1a9f8 --- /dev/null +++ b/manifests/a/Astronet/Scholaread/1.1.72/Astronet.Scholaread.locale.zh-CN.yaml @@ -0,0 +1,50 @@ +# 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.72 +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 功能持续更新: + - 可溯源的回答:支持文内引用和参考文献列表,保证回答真实可溯源。 + - 精准上下文:支持@文献库文献、文件夹、项目文件等提问。 + - Agent 文献库整理:Agent 可帮你自动导入、分类、移动和批量删除文献与文件夹。 + - 新增 Python 数据分析能力:交个数据给 Agent,可自动清洗实验数据、完成统计计算并生成图表。 + - 新增「网页操控」能力:Agent 可操作学术网页,帮你核对投稿要求、查找补充材料、验证论文页面信息。 +PurchaseUrl: https://www.scholaread.cn/pricing +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/c/Citrix/Workspace/26.3.1.194/Citrix.Workspace.yaml b/manifests/a/Astronet/Scholaread/1.1.72/Astronet.Scholaread.yaml similarity index 76% rename from manifests/c/Citrix/Workspace/26.3.1.194/Citrix.Workspace.yaml rename to manifests/a/Astronet/Scholaread/1.1.72/Astronet.Scholaread.yaml index 435c2f61825c5..a40467921fc11 100644 --- a/manifests/c/Citrix/Workspace/26.3.1.194/Citrix.Workspace.yaml +++ b/manifests/a/Astronet/Scholaread/1.1.72/Astronet.Scholaread.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: Citrix.Workspace -PackageVersion: 26.3.1.194 +PackageIdentifier: Astronet.Scholaread +PackageVersion: 1.1.72 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/a/abgox/InputTip/3.6.6/abgox.InputTip.installer.yaml b/manifests/a/abgox/InputTip/3.6.6/abgox.InputTip.installer.yaml new file mode 100644 index 0000000000000..58e3f5691b953 --- /dev/null +++ b/manifests/a/abgox/InputTip/3.6.6/abgox.InputTip.installer.yaml @@ -0,0 +1,20 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: abgox.InputTip +PackageVersion: 3.6.6 +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2026-06-15 +InstallerType: portable +Installers: + # From GitHub repository + - Architecture: x64 + InstallerUrl: https://github.com/abgox/InputTip/releases/download/v3.6.6/InputTip.exe + InstallerSha256: 8dc4fbeb64a63e845e98fd5cd17e5e40ee7f429b24f4fddeb7b9b77540d9b15b + # From Gitee repository + - Architecture: x64 + InstallerUrl: https://gitee.com/abgox/InputTip/releases/download/v3.6.6/InputTip.exe + InstallerSha256: 8dc4fbeb64a63e845e98fd5cd17e5e40ee7f429b24f4fddeb7b9b77540d9b15b + InstallerLocale: zh-CN +ManifestType: installer +ManifestVersion: 1.12.0 + diff --git a/manifests/a/abgox/InputTip/3.6.6/abgox.InputTip.locale.en-US.yaml b/manifests/a/abgox/InputTip/3.6.6/abgox.InputTip.locale.en-US.yaml new file mode 100644 index 0000000000000..8c7c0c3d7faa2 --- /dev/null +++ b/manifests/a/abgox/InputTip/3.6.6/abgox.InputTip.locale.en-US.yaml @@ -0,0 +1,48 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: abgox.InputTip +PackageVersion: 3.6.6 +PackageLocale: en-US +Publisher: abgox +PublisherUrl: https://abgox.com +PublisherSupportUrl: https://inputtip.abgox.com/docs/issues +Author: abgox +PackageName: InputTip +PackageUrl: https://inputtip.abgox.com/ +License: AGPL-3.0-only +LicenseUrl: https://github.com/abgox/InputTip/blob/main/LICENSE +Copyright: Copyright (c) 2023-present abgox +CopyrightUrl: https://github.com/abgox/InputTip/blob/main/LICENSE +ShortDescription: Rule-driven Input Method Status Manager · Instant · Powerful · Productive +Description: | + An instant, powerful, and productive rule-driven input method status manager. + 1. Status Tip: Out-of-the-box support for Chinese, English, Japanese, Korean, and CapsLock, leveraging multiple highly customizable visual schemes such as Mouse Cursor, Overlay Popup, Caret Symbol, Mouse Symbol, and Window Border. + 2. Rule Scheduling: Integrates window/hotkey rules with text/hotkey monitoring to continuously evaluate active contexts, precisely executing defined action workflows—such as status switching, keyboard layout switching, dynamic hotkey registration, and window pinning—upon matching predefined rules. + Written in AutoHotkey, it guarantees instant responsiveness without capturing window focus, delivering a fully automated, friction-free typing experience for multilingual power users. +Tags: + - input-method + - ime-status + - status-indicator + - status-tip + - status-switching + - keyboard-switch + - keyboard-layout + - language-switch + - cjk-input + - caret-tip + - mouse-cursor + - caps-lock + - capitalization + - productivity + - autohotkey +ReleaseNotesUrl: https://github.com/abgox/InputTip/releases/tag/v3.6.6 +Documentations: + - DocumentLabel: Documentation + DocumentUrl: https://inputtip.abgox.com/docs/ + - DocumentLabel: README (GitHub) + DocumentUrl: https://github.com/abgox/InputTip/blob/main/README.md + - DocumentLabel: README (Gitee) + DocumentUrl: https://gitee.com/abgox/InputTip/blob/main/README.md +ManifestType: locale +ManifestVersion: 1.12.0 + diff --git a/manifests/a/abgox/InputTip/3.6.6/abgox.InputTip.locale.zh-CN.yaml b/manifests/a/abgox/InputTip/3.6.6/abgox.InputTip.locale.zh-CN.yaml new file mode 100644 index 0000000000000..4924f706c405d --- /dev/null +++ b/manifests/a/abgox/InputTip/3.6.6/abgox.InputTip.locale.zh-CN.yaml @@ -0,0 +1,48 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: abgox.InputTip +PackageVersion: 3.6.6 +PackageLocale: zh-CN +Publisher: abgox +PublisherUrl: https://abgox.com +PublisherSupportUrl: https://inputtip.abgox.com/docs/issues +Author: abgox +PackageName: InputTip +PackageUrl: https://inputtip.abgox.com/ +License: AGPL-3.0-only +LicenseUrl: https://gitee.com/abgox/InputTip/blob/main/LICENSE +Copyright: Copyright (c) 2023-present abgox +CopyrightUrl: https://gitee.com/abgox/InputTip/blob/main/LICENSE +ShortDescription: 规则驱动的输入法状态管理器 · 即时 · 强大 · 高效 +Description: | + 一个即时、强大、高效的,规则驱动的输入法状态管理器。 + 1. 状态提示:支持中、英、日、韩及大写锁定,提供鼠标样式、悬浮小窗、光标符号、鼠标符号、窗口边框等多种高度可定制的视觉方案。 + 2. 规则调度:集成窗口/热键规则与文本/热键监控,持续检测当前窗口和热键上下文,命中预设规则后精准执行特定的行为调度,如状态切换、键盘切换、热键动态注册、窗口置顶等。 + 软件使用 AutoHotkey 编写,响应即时且不抢占焦点,为多语言开发者与文字工作者打造全自动、零干扰的纯净输入体验。 +Tags: + - 输入法 + - 输入法状态 + - 状态提示 + - 状态指示器 + - 状态切换 + - 键盘切换 + - 键盘布局 + - 中英文切换 + - 日韩输入法 + - 光标提示 + - 鼠标指针 + - 大写锁定 + - caps-lock + - 效率工具 + - autohotkey +ReleaseNotesUrl: https://gitee.com/abgox/InputTip/releases/tag/v3.6.6 +Documentations: + - DocumentLabel: 文档 + DocumentUrl: https://inputtip.abgox.com/docs/ + - DocumentLabel: README (GitHub) + DocumentUrl: https://github.com/abgox/InputTip/blob/main/README.md + - DocumentLabel: README (Gitee) + DocumentUrl: https://gitee.com/abgox/InputTip/blob/main/README.md +ManifestType: defaultLocale +ManifestVersion: 1.12.0 + diff --git a/manifests/a/abgox/InputTip/3.6.6/abgox.InputTip.yaml b/manifests/a/abgox/InputTip/3.6.6/abgox.InputTip.yaml new file mode 100644 index 0000000000000..26b9b0a37d6dc --- /dev/null +++ b/manifests/a/abgox/InputTip/3.6.6/abgox.InputTip.yaml @@ -0,0 +1,8 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: abgox.InputTip +PackageVersion: 3.6.6 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 + diff --git a/manifests/a/aquaproj/aqua/2.60.1/aquaproj.aqua.installer.yaml b/manifests/a/aquaproj/aqua/2.60.1/aquaproj.aqua.installer.yaml new file mode 100644 index 0000000000000..b3718812761b1 --- /dev/null +++ b/manifests/a/aquaproj/aqua/2.60.1/aquaproj.aqua.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: aquaproj.aqua +PackageVersion: 2.60.1 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-06-16" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: aqua.exe + PortableCommandAlias: aqua + InstallerUrl: https://github.com/aquaproj/aqua/releases/download/v2.60.1/aqua_windows_arm64.zip + InstallerSha256: b22d69f3175a6d6fc0b263d6010cd41eb2da55ed4fddc75c3121ad894478b762 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: aqua.exe + PortableCommandAlias: aqua + InstallerUrl: https://github.com/aquaproj/aqua/releases/download/v2.60.1/aqua_windows_amd64.zip + InstallerSha256: fc0a9f4087297ec16b62a709b4cfffafef321d39250787957e9953c5e1fe9316 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/aquaproj/aqua/2.60.1/aquaproj.aqua.locale.en-US.yaml b/manifests/a/aquaproj/aqua/2.60.1/aquaproj.aqua.locale.en-US.yaml new file mode 100644 index 0000000000000..02301c3e1382f --- /dev/null +++ b/manifests/a/aquaproj/aqua/2.60.1/aquaproj.aqua.locale.en-US.yaml @@ -0,0 +1,20 @@ +# 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: aquaproj.aqua +PackageVersion: 2.60.1 +PackageLocale: en-US +Publisher: aquaproj +PublisherSupportUrl: https://github.com/aquaproj/aqua/discussions +PackageName: aqua +PackageUrl: https://github.com/aquaproj/aqua +License: mit +LicenseUrl: https://github.com/aquaproj/aqua/blob/main/LICENSE +ShortDescription: Declarative CLI Version manager written in Go +Description: | + Declarative CLI Version manager written in Go. + Support Lazy Install, Registry, and continuous update by Renovate. + CLI version is switched seamlessly +Moniker: aqua +ReleaseNotesUrl: https://github.com/aquaproj/aqua/releases/tag/v2.60.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/aquaproj/aqua/2.60.1/aquaproj.aqua.yaml b/manifests/a/aquaproj/aqua/2.60.1/aquaproj.aqua.yaml new file mode 100644 index 0000000000000..1b08bf5df6486 --- /dev/null +++ b/manifests/a/aquaproj/aqua/2.60.1/aquaproj.aqua.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: aquaproj.aqua +PackageVersion: 2.60.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/BereneFoundation/BereneApp/0.1/BereneFoundation.BereneApp.installer.yaml b/manifests/b/BereneFoundation/BereneApp/0.1/BereneFoundation.BereneApp.installer.yaml new file mode 100644 index 0000000000000..c712f6643d729 --- /dev/null +++ b/manifests/b/BereneFoundation/BereneApp/0.1/BereneFoundation.BereneApp.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: BereneFoundation.BereneApp +PackageVersion: "0.1" +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/berenefoundation/bereneapp-winx64/releases/download/v0.1/BereneApp-setup.exe + InstallerSha256: BC5CB834D75442800FDF44EF1A523223F808F5B2AF6E68B79F6BE6AE8746A586 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/BereneFoundation/BereneApp/0.1/BereneFoundation.BereneApp.locale.es-ES.yaml b/manifests/b/BereneFoundation/BereneApp/0.1/BereneFoundation.BereneApp.locale.es-ES.yaml new file mode 100644 index 0000000000000..4a919617b6926 --- /dev/null +++ b/manifests/b/BereneFoundation/BereneApp/0.1/BereneFoundation.BereneApp.locale.es-ES.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: BereneFoundation.BereneApp +PackageVersion: "0.1" +PackageLocale: es-ES +Publisher: Berene Foundation +PackageName: BereneApp +License: MIT +ShortDescription: Fast and secure desktop client for Berene Web +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/BereneFoundation/BereneApp/0.1/BereneFoundation.BereneApp.yaml b/manifests/b/BereneFoundation/BereneApp/0.1/BereneFoundation.BereneApp.yaml new file mode 100644 index 0000000000000..9decbd9d551b3 --- /dev/null +++ b/manifests/b/BereneFoundation/BereneApp/0.1/BereneFoundation.BereneApp.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: BereneFoundation.BereneApp +PackageVersion: "0.1" +DefaultLocale: es-ES +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/Blitz/Blitz/2.1.586/Blitz.Blitz.installer.yaml b/manifests/b/Blitz/Blitz/2.1.586/Blitz.Blitz.installer.yaml new file mode 100644 index 0000000000000..c3edcd5d87ca1 --- /dev/null +++ b/manifests/b/Blitz/Blitz/2.1.586/Blitz.Blitz.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Blitz.Blitz +PackageVersion: 2.1.586 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: 153f8ce0-b97a-575b-ba12-4ff8b1481894 +ReleaseDate: 2026-06-15 +AppsAndFeaturesEntries: +- ProductCode: 153f8ce0-b97a-575b-ba12-4ff8b1481894 +Installers: +- Architecture: x86 + InstallerUrl: https://blitz-main.blitz.gg/Blitz-2.1.586.exe + InstallerSha256: F670DF6995E859F6C62D500686782302914DE0F0001FB97A30B5761E0D351770 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/Blitz/Blitz/2.1.586/Blitz.Blitz.locale.en-US.yaml b/manifests/b/Blitz/Blitz/2.1.586/Blitz.Blitz.locale.en-US.yaml new file mode 100644 index 0000000000000..c149647596ebe --- /dev/null +++ b/manifests/b/Blitz/Blitz/2.1.586/Blitz.Blitz.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: Blitz.Blitz +PackageVersion: 2.1.586 +PackageLocale: en-US +Publisher: Blitz, Inc. +PublisherUrl: https://blitz.gg/ +PublisherSupportUrl: https://support.blitz.gg/ +PrivacyUrl: https://blitz.gg/privacy-policy +Author: Blitz, Inc. +PackageName: Blitz +PackageUrl: https://blitz.gg/ +License: Custom use license +LicenseUrl: https://www.blitz.gg/terms-of-service +Copyright: Copyright (c) 2022 Blitz, Inc. +CopyrightUrl: https://www.blitz.gg/terms-of-service +ShortDescription: Blitz App - Your personal gaming coach +Moniker: blitz.gg +Tags: +- gaming +- league-of-legends +- legends-of-runeterra +- lol +- teamfight-tactics +- valorant +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/Blitz/Blitz/2.1.586/Blitz.Blitz.yaml b/manifests/b/Blitz/Blitz/2.1.586/Blitz.Blitz.yaml new file mode 100644 index 0000000000000..eed8425986672 --- /dev/null +++ b/manifests/b/Blitz/Blitz/2.1.586/Blitz.Blitz.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: Blitz.Blitz +PackageVersion: 2.1.586 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/Brave/Brave/Nightly/149.1.93.67/Brave.Brave.Nightly.installer.yaml b/manifests/b/Brave/Brave/Nightly/149.1.93.67/Brave.Brave.Nightly.installer.yaml new file mode 100644 index 0000000000000..c1168739b135e --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/149.1.93.67/Brave.Brave.Nightly.installer.yaml @@ -0,0 +1,86 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Brave.Brave.Nightly +PackageVersion: 149.1.93.67 +InstallerType: exe +ExpectedReturnCodes: +- InstallerReturnCode: -2147219440 + ReturnResponse: cancelledByUser +- InstallerReturnCode: -2147219416 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: -2147218431 + ReturnResponse: invalidParameter +- InstallerReturnCode: -2147024809 + ReturnResponse: invalidParameter +UpgradeBehavior: install +Protocols: +- ftp +- http +- https +- mailto +- tel +FileExtensions: +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: BraveSoftware Brave-Browser-Nightly +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.93.67/BraveBrowserStandaloneSilentNightlySetup32.exe + InstallerSha256: 9C12DEBC2DBB7988CC45414117B28694D90B8DA615E11611A3E82BCDD6C5233A + InstallModes: + - silent +- Architecture: x86 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.93.67/BraveBrowserStandaloneNightlySetup32.exe + InstallerSha256: 690DC9D7FEFDC98346B81B319B245C523A92030F451D360062224463C5E289E5 + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + ElevationRequirement: elevationRequired +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.93.67/BraveBrowserStandaloneSilentNightlySetup.exe + InstallerSha256: C7A8C9516F572A76A0C0F796F35055BF712C240D0B25EC20CA26A0DDD0714ED5 + InstallModes: + - silent +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.93.67/BraveBrowserStandaloneNightlySetup.exe + InstallerSha256: B1A400C4CBCB5B66C25B141C59CE57E51236AACECAAB81E9360F461F80EF7545 + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.93.67/BraveBrowserStandaloneSilentNightlySetupArm64.exe + InstallerSha256: AFC44AF17C583A9B881712404ED3CF00862C0B097E5799A93984F17D180BACA2 + InstallModes: + - silent +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/brave/brave-browser/releases/download/v1.93.67/BraveBrowserStandaloneNightlySetupArm64.exe + InstallerSha256: EBF0FFC756B91B94A5B674C320223C5E3F995D327447F581EEAF0ACF9F9AE48A + InstallModes: + - interactive + - silent + InstallerSwitches: + Silent: /silent /install + SilentWithProgress: /silent /install + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/Brave/Brave/Nightly/149.1.93.67/Brave.Brave.Nightly.locale.en-US.yaml b/manifests/b/Brave/Brave/Nightly/149.1.93.67/Brave.Brave.Nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..466c7e73229e1 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/149.1.93.67/Brave.Brave.Nightly.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Brave.Brave.Nightly +PackageVersion: 149.1.93.67 +PackageLocale: en-US +Publisher: Brave Software Inc +PublisherUrl: https://brave.com +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave Nightly +PackageUrl: https://brave.com/download-nightly +License: MPL-2.0 +LicenseUrl: https://github.com/brave/brave-browser/blob/master/LICENSE +Copyright: Copyright © 2026 The Brave Authors. All rights reserved. +CopyrightUrl: https://brave.com/terms-of-use +ShortDescription: Brave Nightly is our testing and development version of Brave. Releases are updated every night. +Description: |- + Nightly is our testing and development version of Brave. + The releases are updated every night and may contain bugs that can result in data loss. + Nightly automatically sends us crash reports when things go wrong. +Tags: +- browser +- chromium +- internet +- privacy +- web +- webpage +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://brave.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/Brave/Brave/Nightly/149.1.93.67/Brave.Brave.Nightly.locale.zh-CN.yaml b/manifests/b/Brave/Brave/Nightly/149.1.93.67/Brave.Brave.Nightly.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b201d056a5fb9 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/149.1.93.67/Brave.Brave.Nightly.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Brave.Brave.Nightly +PackageVersion: 149.1.93.67 +PackageLocale: zh-CN +Publisher: Brave Software Inc +PublisherUrl: https://brave.com/zh +PrivacyUrl: https://brave.com/privacy/browser +Author: Brave Software, Inc. +PackageName: Brave Nightly +PackageUrl: https://brave.com/download-nightly +License: MPL-2.0 +LicenseUrl: https://github.com/brave/brave-browser/blob/master/LICENSE +Copyright: 版权所有2026 Brave Software Inc。保留所有权利。 +CopyrightUrl: https://brave.com/terms-of-use +ShortDescription: Brave Nightly 是 Brave 的测试和开发版本,每天晚上更新。 +Description: Nightly 是 Brave 的测试和开发版本,每天晚上更新,可能包含导致数据丢失的错误。当出现问题时,Nightly 会自动向我们发送崩溃报告。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +- 隐私 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://brave.com/zh/faq +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/Brave/Brave/Nightly/149.1.93.67/Brave.Brave.Nightly.yaml b/manifests/b/Brave/Brave/Nightly/149.1.93.67/Brave.Brave.Nightly.yaml new file mode 100644 index 0000000000000..bcccd60ddd920 --- /dev/null +++ b/manifests/b/Brave/Brave/Nightly/149.1.93.67/Brave.Brave.Nightly.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Brave.Brave.Nightly +PackageVersion: 149.1.93.67 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/Doudian/.validation b/manifests/b/ByteDance/Doudian/.validation new file mode 100644 index 0000000000000..a56e85f42e531 --- /dev/null +++ b/manifests/b/ByteDance/Doudian/.validation @@ -0,0 +1 @@ +{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"363823c8-81d3-4a49-8fc4-16bb4f380392","TestPlan":"Validation-Domain","PackagePath":"manifests/b/ByteDance/Doudian/1.1.7","CommitId":"a041a6103e137edf715572ad57b0e6bd0d157d29"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/b/BytecodeAlliance/Wasmtime/Portable/45.0.2/BytecodeAlliance.Wasmtime.Portable.installer.yaml b/manifests/b/BytecodeAlliance/Wasmtime/Portable/45.0.2/BytecodeAlliance.Wasmtime.Portable.installer.yaml new file mode 100644 index 0000000000000..7e34057b38f5f --- /dev/null +++ b/manifests/b/BytecodeAlliance/Wasmtime/Portable/45.0.2/BytecodeAlliance.Wasmtime.Portable.installer.yaml @@ -0,0 +1,25 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: BytecodeAlliance.Wasmtime.Portable +PackageVersion: 45.0.2 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: wasmtime-v45.0.2-x86_64-windows/wasmtime-min.exe + PortableCommandAlias: wasmtime-min +- RelativeFilePath: wasmtime-v45.0.2-x86_64-windows/wasmtime.exe + PortableCommandAlias: wasmtime +FileExtensions: +- wasm +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/bytecodealliance/wasmtime/releases/download/v45.0.2/wasmtime-v45.0.2-x86_64-windows.zip + InstallerSha256: DAC1587EC5705D6D26967D5F7EEB5EFB1F91804F49593B30A14A989C0ED9AC7A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/BytecodeAlliance/Wasmtime/Portable/45.0.2/BytecodeAlliance.Wasmtime.Portable.locale.en-US.yaml b/manifests/b/BytecodeAlliance/Wasmtime/Portable/45.0.2/BytecodeAlliance.Wasmtime.Portable.locale.en-US.yaml new file mode 100644 index 0000000000000..0b5dd39bbe354 --- /dev/null +++ b/manifests/b/BytecodeAlliance/Wasmtime/Portable/45.0.2/BytecodeAlliance.Wasmtime.Portable.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: BytecodeAlliance.Wasmtime.Portable +PackageVersion: 45.0.2 +PackageLocale: en-US +Publisher: Bytecode Alliance +PublisherUrl: https://bytecodealliance.org/ +PublisherSupportUrl: https://github.com/bytecodealliance/wasmtime/issues +PackageName: Wasmtime +PackageUrl: https://wasmtime.dev/ +License: Apache-2.0 +LicenseUrl: https://github.com/bytecodealliance/wasmtime/blob/HEAD/LICENSE +Copyright: Copyright © 2019-2023 the Bytecode Alliance contributors. +ShortDescription: A fast and secure runtime for WebAssembly +Description: Wasmtime is a Bytecode Alliance project that is a standalone wasm-only optimizing runtime for WebAssembly and WASI. It runs WebAssembly code outside of the Web, and can be used both as a command-line utility or as a library embedded in a larger application. +Tags: +- aot +- cranelift +- jit +- runtime +- rust +- sandbox +- standalone +- wasi +- wasm +- wasmtime +- webassembly +ReleaseNotes: |- + 45.0.2 + Released 2026-06-15. + Fixed + - Leak in WASIp1 fd_renumber implementation. + GHSA-3p27-qvp9-27qf +ReleaseNotesUrl: https://github.com/bytecodealliance/wasmtime/releases/tag/v45.0.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/BytecodeAlliance/Wasmtime/Portable/45.0.2/BytecodeAlliance.Wasmtime.Portable.yaml b/manifests/b/BytecodeAlliance/Wasmtime/Portable/45.0.2/BytecodeAlliance.Wasmtime.Portable.yaml new file mode 100644 index 0000000000000..930abf4f25952 --- /dev/null +++ b/manifests/b/BytecodeAlliance/Wasmtime/Portable/45.0.2/BytecodeAlliance.Wasmtime.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: BytecodeAlliance.Wasmtime.Portable +PackageVersion: 45.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/Citrix/Workspace/26.3.1.194/Citrix.Workspace.installer.yaml b/manifests/c/Citrix/Workspace/26.3.1.194/Citrix.Workspace.installer.yaml deleted file mode 100644 index 4be5439f09d6b..0000000000000 --- a/manifests/c/Citrix/Workspace/26.3.1.194/Citrix.Workspace.installer.yaml +++ /dev/null @@ -1,65 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Citrix.Workspace -PackageVersion: 26.3.1.194 -InstallerType: exe -Scope: machine -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: /silent /norestart - SilentWithProgress: /silent /norestart - InstallLocation: INSTALLDIR="" -ExpectedReturnCodes: -- InstallerReturnCode: 1601 - ReturnResponse: contactSupport -- InstallerReturnCode: 1602 - ReturnResponse: cancelledByUser -- InstallerReturnCode: 1618 - ReturnResponse: installInProgress -- InstallerReturnCode: 1623 - ReturnResponse: systemNotSupported -- InstallerReturnCode: 1625 - ReturnResponse: blockedByPolicy -- InstallerReturnCode: 1628 - ReturnResponse: invalidParameter -- InstallerReturnCode: 1633 - ReturnResponse: systemNotSupported -- InstallerReturnCode: 1638 - ReturnResponse: alreadyInstalled -- InstallerReturnCode: 1639 - ReturnResponse: invalidParameter -- InstallerReturnCode: 1641 - ReturnResponse: rebootInitiated -- InstallerReturnCode: 1640 - ReturnResponse: blockedByPolicy -- InstallerReturnCode: 1643 - ReturnResponse: blockedByPolicy -- InstallerReturnCode: 1644 - ReturnResponse: blockedByPolicy -- InstallerReturnCode: 1649 - ReturnResponse: blockedByPolicy -- InstallerReturnCode: 1650 - ReturnResponse: invalidParameter -- InstallerReturnCode: 1654 - ReturnResponse: systemNotSupported -- InstallerReturnCode: 3010 - ReturnResponse: rebootRequiredToFinish -- InstallerReturnCode: 40017 - ReturnResponse: cancelledByUser -UpgradeBehavior: install -Protocols: -- receiver -FileExtensions: -- cr -- ica -ProductCode: CitrixOnlinePluginPackWeb -ReleaseDate: 2026-05-12 -Installers: -- Architecture: x86 - InstallerUrl: https://downloadplugins.citrix.com/Windows/CitrixWorkspaceApp.exe - InstallerSha256: 030B2CCF9629A4E9F7B2D2028E771A85DFF8CA712EF932594FB31516008E049F -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/c/Citrix/Workspace/26.3.1.194/Citrix.Workspace.locale.en-US.yaml b/manifests/c/Citrix/Workspace/26.3.1.194/Citrix.Workspace.locale.en-US.yaml deleted file mode 100644 index c4a9207c5565b..0000000000000 --- a/manifests/c/Citrix/Workspace/26.3.1.194/Citrix.Workspace.locale.en-US.yaml +++ /dev/null @@ -1,28 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Citrix.Workspace -PackageVersion: 26.3.1.194 -PackageLocale: en-US -Publisher: Citrix Systems, Inc. -PublisherUrl: https://www.citrix.com/ -PublisherSupportUrl: https://support.citrix.com/knowledge-center/ -PrivacyUrl: https://www.cloud.com/privacy -Author: Citrix Systems, Inc. -PackageName: Citrix Workspace -PackageUrl: https://www.citrix.com/platform/receiver.html -License: Proprietary -LicenseUrl: https://www.cloud.com/content/dam/cloud/documents/legal/end-user-agreement.pdf -Copyright: © 2026 Citrix Systems, Inc. All rights reserved. -CopyrightUrl: https://www.cloud.com/content/dam/cloud/documents/legal/cloud-software-group-trademark-guidelines.pdf -ShortDescription: Citrix Workspace is a complete digital workspace solution that delivers secure access to the information, apps, and other content that is relevant to a person’s role in your organization. -Description: Citrix Workspace is a complete digital workspace solution that delivers secure access to the information, apps, and other content that is relevant to a person’s role in your organization. Users subscribe to the services you make available and can access them from anywhere, on any device. Citrix Workspace helps you organize and automate the most important details that your users need to collaborate, make better decisions, and focus on their work. -Moniker: citrix-workspace -Tags: -- desktop -- remote -- remote-access -- remote-desktop -- workspace -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/c/Citrix/Workspace/26.3.1.194/Citrix.Workspace.locale.zh-CN.yaml b/manifests/c/Citrix/Workspace/26.3.1.194/Citrix.Workspace.locale.zh-CN.yaml deleted file mode 100644 index c544ff1d5a0a0..0000000000000 --- a/manifests/c/Citrix/Workspace/26.3.1.194/Citrix.Workspace.locale.zh-CN.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: Citrix.Workspace -PackageVersion: 26.3.1.194 -PackageLocale: zh-CN -Publisher: Citrix Systems, Inc. -PublisherUrl: https://www.citrix.com/ -PublisherSupportUrl: https://support.citrix.com/knowledge-center/ -PrivacyUrl: https://www.cloud.com/privacy-policy -Author: Citrix Systems, Inc. -PackageName: Citrix Workspace -PackageUrl: https://www.citrix.com/platform/receiver.html -License: 专有软件 -LicenseUrl: https://www.cloud.com/content/dam/cloud/documents/legal/end-user-agreement.pdf -Copyright: © 2026 Citrix Systems, Inc. All rights reserved. -CopyrightUrl: https://www.cloud.com/content/dam/cloud/documents/legal/cloud-software-group-trademark-guidelines.pdf -ShortDescription: Citrix Workspace 是一个完整的数字工作区解决方案,可安全访问与个人在组织中的角色相关的信息、应用程序和其它内容。 -Description: Citrix Workspace 是一个完整的数字工作区解决方案,可安全访问与个人在组织中的角色相关的信息、应用程序和其它内容。用户可以订阅您提供的服务,并从任何地方、通过任何设备访问这些服务。Citrix Workspace 可帮助您组织并自动处理用户所需的最重要的细节,以便进行协作、做出更好的决策并专注于工作。 -Tags: -- 工作区 -- 桌面 -- 远程 -- 远程桌面 -- 远程访问 -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/c/Corail44/GoXLRStreamlabsSync/0.5.0/Corail44.GoXLRStreamlabsSync.installer.yaml b/manifests/c/Corail44/GoXLRStreamlabsSync/0.5.0/Corail44.GoXLRStreamlabsSync.installer.yaml new file mode 100644 index 0000000000000..568e9ad0ec767 --- /dev/null +++ b/manifests/c/Corail44/GoXLRStreamlabsSync/0.5.0/Corail44.GoXLRStreamlabsSync.installer.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Corail44.GoXLRStreamlabsSync +PackageVersion: 0.5.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: portable +Commands: +- goxlr-streamlabs-sync +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Corail44/goxlr-streamlabs-sync/releases/download/v0.5.0/goxlr-streamlabs-sync.exe + InstallerSha256: 58FC2F9C2CAFFB35AB3CEC5E68B1C1B21F50D70FDD392AE5AE5CC05E899FFCA8 +ManifestType: installer +ManifestVersion: 1.6.0 +ReleaseDate: 2026-06-11 diff --git a/manifests/c/Corail44/GoXLRStreamlabsSync/0.5.0/Corail44.GoXLRStreamlabsSync.locale.en-US.yaml b/manifests/c/Corail44/GoXLRStreamlabsSync/0.5.0/Corail44.GoXLRStreamlabsSync.locale.en-US.yaml new file mode 100644 index 0000000000000..ee7124e9f7223 --- /dev/null +++ b/manifests/c/Corail44/GoXLRStreamlabsSync/0.5.0/Corail44.GoXLRStreamlabsSync.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.6.0.schema.json + +PackageIdentifier: Corail44.GoXLRStreamlabsSync +PackageVersion: 0.5.0 +PackageLocale: en-US +Publisher: Corail44 +PublisherUrl: https://github.com/Corail44 +PublisherSupportUrl: https://github.com/Corail44/goxlr-streamlabs-sync/issues +PackageName: GoXLR Streamlabs Sync +PackageUrl: https://github.com/Corail44/goxlr-streamlabs-sync +License: MIT +LicenseUrl: https://github.com/Corail44/goxlr-streamlabs-sync/blob/main/LICENSE +Copyright: Copyright (c) 2026 goxlr-streamlabs-sync contributors +ShortDescription: Control your Streamlabs Desktop audio sources with your GoXLR's physical faders. +Description: Syncs GoXLR faders and mute buttons to Streamlabs Desktop audio sources in real time, through the GoXLR Utility websocket API and the Streamlabs JSON-RPC API. Designed for multi-track recording setups where each GoXLR channel (mic, game, music, chat, system) is captured as a separate Streamlabs source. Ships with a local web dashboard (live levels, settings, logs), a system tray icon, autostart with Windows and update notifications. +Moniker: goxlr-streamlabs-sync +Tags: +- audio +- fader +- goxlr +- goxlr-utility +- mixer +- streamlabs +- streaming +ReleaseNotesUrl: https://github.com/Corail44/goxlr-streamlabs-sync/releases/tag/v0.5.0 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/c/Corail44/GoXLRStreamlabsSync/0.5.0/Corail44.GoXLRStreamlabsSync.locale.fr-FR.yaml b/manifests/c/Corail44/GoXLRStreamlabsSync/0.5.0/Corail44.GoXLRStreamlabsSync.locale.fr-FR.yaml new file mode 100644 index 0000000000000..a62024e64530f --- /dev/null +++ b/manifests/c/Corail44/GoXLRStreamlabsSync/0.5.0/Corail44.GoXLRStreamlabsSync.locale.fr-FR.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json + +PackageIdentifier: Corail44.GoXLRStreamlabsSync +PackageVersion: 0.5.0 +PackageLocale: fr-FR +Publisher: Corail44 +PublisherUrl: https://github.com/Corail44 +PublisherSupportUrl: https://github.com/Corail44/goxlr-streamlabs-sync/issues +PackageName: GoXLR Streamlabs Sync +PackageUrl: https://github.com/Corail44/goxlr-streamlabs-sync +License: MIT +LicenseUrl: https://github.com/Corail44/goxlr-streamlabs-sync/blob/main/LICENSE +ShortDescription: Pilote tes sources audio Streamlabs Desktop avec les faders physiques de ton GoXLR. +Description: Synchronise en temps reel les faders et boutons mute du GoXLR avec les sources audio de Streamlabs Desktop, via l'API websocket du GoXLR Utility et l'API JSON-RPC de Streamlabs. Concu pour l'enregistrement multipiste, ou chaque canal GoXLR (micro, jeu, musique, chat, systeme) est capture comme source Streamlabs separee. Inclut un dashboard web local (niveaux en direct, reglages, journal), une icone de zone de notification, le demarrage avec Windows et la notification de mise a jour. +Tags: +- audio +- fader +- goxlr +- mixage +- streamlabs +- streaming +ReleaseNotesUrl: https://github.com/Corail44/goxlr-streamlabs-sync/releases/tag/v0.5.0 +ManifestType: locale +ManifestVersion: 1.6.0 diff --git a/manifests/c/Corail44/GoXLRStreamlabsSync/0.5.0/Corail44.GoXLRStreamlabsSync.yaml b/manifests/c/Corail44/GoXLRStreamlabsSync/0.5.0/Corail44.GoXLRStreamlabsSync.yaml new file mode 100644 index 0000000000000..f5310185900ee --- /dev/null +++ b/manifests/c/Corail44/GoXLRStreamlabsSync/0.5.0/Corail44.GoXLRStreamlabsSync.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Corail44.GoXLRStreamlabsSync +PackageVersion: 0.5.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/c/can1357/oh-my-pi/16.0.0/can1357.oh-my-pi.installer.yaml b/manifests/c/can1357/oh-my-pi/16.0.0/can1357.oh-my-pi.installer.yaml new file mode 100644 index 0000000000000..b746bae707cf7 --- /dev/null +++ b/manifests/c/can1357/oh-my-pi/16.0.0/can1357.oh-my-pi.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: can1357.oh-my-pi +PackageVersion: 16.0.0 +InstallerType: portable +Commands: +- omp +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/can1357/oh-my-pi/releases/download/v16.0.0/omp-windows-x64.exe + InstallerSha256: 3A794D82FFC29E958A9E2291010B041864CA0A624A08BF7B6DE55D4B14BF2ABC +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/can1357/oh-my-pi/16.0.0/can1357.oh-my-pi.locale.en-US.yaml b/manifests/c/can1357/oh-my-pi/16.0.0/can1357.oh-my-pi.locale.en-US.yaml new file mode 100644 index 0000000000000..1ec52b59c688c --- /dev/null +++ b/manifests/c/can1357/oh-my-pi/16.0.0/can1357.oh-my-pi.locale.en-US.yaml @@ -0,0 +1,119 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: can1357.oh-my-pi +PackageVersion: 16.0.0 +PackageLocale: en-US +Publisher: Can Bölük +PublisherUrl: https://can.ac/ +PublisherSupportUrl: https://github.com/can1357/oh-my-pi/issues +Author: Can Bölük +PackageName: oh-my-pi +PackageUrl: https://omp.sh/ +License: MIT +LicenseUrl: https://github.com/can1357/oh-my-pi/blob/HEAD/LICENSE +Copyright: |- + Copyright (c) 2025 Mario Zechner + Copyright (c) 2025-2026 Can Bölük +ShortDescription: ⌥ AI Coding agent for the terminal — hash-anchored edits, optimized tool harness, LSP, Python, browser, subagents, and more +Description: |- + omp is a terminal-first coding agent that runs on your machine, talks to any provider, and treats sessions like git branches. + omp (pronounced “oh-em-pi”, binary omp) is a fork of Mario Zechner’s Pi. It runs as a single Bun process, drives any model provider you have credentials for, and ships a flat tool surface the model uses to read code, run commands, edit files, drive a debugger, and spawn subagents that coordinate over an in-process IRC bus. + Sessions persist as JSONL under ~/.omp/agent/sessions/. You resume, fork, branch, and share them. Settings, credentials, plugins, and caches all live under ~/.omp/agent/. Nothing leaves the machine unless you call a tool that does. +Tags: +- agent +- agentic +- ai +- chatbot +- code +- coding +- large-language-model +- llm +- programming +ReleaseNotes: |- + @oh-my-pi/pi-agent-core + Breaking Changes + - Renamed owned tool-calling options from toolCallSyntax/exampleSyntax to dialect/exampleDialect. + - Changed compaction conversation serialization to use the target model's native dialect turn, thinking, tool-call, and tool-result envelopes when a dialect is selected. + - Renamed the owned dialect environment variable from PI_OWNED_TOOLS to PI_DIALECT. + Added + - Added onTurnEnd hook support (setOnTurnEnd/onTurnEnd) to run awaited per-turn bookkeeping with current messages before the next model request and skip callback execution for aborted or error turns + Changed + - Renamed toolCallSyntax option to dialect in AgentOptions and AgentLoopConfig + - Updated conversation serialization to use dialect's native transcript rendering when a dialect is selected + - Changed internal references from ToolCallSyntax type to Dialect type across agent loop and compaction modules + @oh-my-pi/pi-ai + Breaking Changes + - Renamed the public dialect entrypoint from @oh-my-pi/pi-ai/grammar to @oh-my-pi/pi-ai/dialect. + - Renamed grammar dialect identifiers from ToolCallSyntax to Dialect, renamed the Grammar interface to DialectDefinition, and renamed Grammar.syntax to DialectDefinition.dialect. + - Added DialectDefinition.renderThinking and DialectDefinition.renderTranscript so dialect implementations serialize complete native chat transcripts, not just tool call/result blocks. + Added + - Added renderTranscript method to dialect definitions for serializing complete native chat transcripts + - Added renderThinking method to dialect definitions for rendering thinking/reasoning blocks + - Added support for 11 dialect implementations: Anthropic, DeepSeek, Gemini, Gemma, GLM, Harmony, Hermes, Kimi, Pi-native, Qwen3, and XML + - Added createInbandScanner factory function to instantiate dialect-specific scanners + - Added getDialectDefinition function to retrieve dialect implementations by name + - Added renderToolCatalog and renderInbandToolPrompt functions for tool catalog rendering + - Added renderToolInventory function to generate human-readable per-tool documentation with examples + - Added renderToolExamples function to render tool usage examples in the model's native dialect + - Added encodeInbandToolHistory function to encode tool call history in dialect-specific format + - Added wrapInbandToolStream function to process streaming responses with in-band tool call parsing + - Added ThinkingInbandScanner for parsing thinking/reasoning blocks across dialects + - Added OwnedStream class for managing dialect-aware streaming with tool call events + - Added in-band thinking channels to every dialect that was missing one: gemini (a ```thinking fence mirroring ```tool_code), gemma (its native <|channel>thought… reasoning channel), kimi (), and pi (). Each scanner now parses reasoning into thinking events instead of leaking chain-of-thought into the visible reply, and every dialect's renderThinking is a real channel that round-trips back through its scanner (no passthrough renderers). + Changed + - Moved public dialect entrypoint from @oh-my-pi/pi-ai/grammar to @oh-my-pi/pi-ai/dialect in package exports + - Updated internal imports in stream-markup-healing.ts to use new dialect module path + - Changed renderToolInventory to demote a tool description's own markdown headers by one level when it contains a top-level # header, so they nest under the wrapping # Tool: heading instead of reading as sibling sections. Descriptions that already start at ## and headers inside fenced code blocks are left untouched. + Fixed + - Fixed Gemini, Gemma, Kimi, and Pi in-band scanners to respect parseThinking: false, leaving private reasoning markers in visible text when parsing is disabled + - Fixed thinking-channel parsing for streaming Gemini, Gemma, Kimi, and Pi outputs so split or partial blocks no longer leak into visible replies + - Fixed in-band thinking finalization and Kimi stream-healing interactions so leaked blocks are preserved when structured tool calls are present, not duplicated when explicit reasoning is present, and closed on stream flush. + Removed + - Removed src/grammar/factory.ts (replaced by src/dialect/factory.ts) + - Removed src/grammar/rendering.ts (functionality moved to src/dialect/rendering.ts) + - Removed src/grammar/xml.ts (replaced by src/dialect/xml.ts) + @oh-my-pi/pi-catalog + Breaking Changes + - Renamed the catalog-owned tool syntax API from ToolCallSyntax/FALLBACK_TOOL_SYNTAX/preferredToolSyntax to Dialect/FALLBACK_DIALECT/preferredDialect. + @oh-my-pi/pi-coding-agent + Breaking Changes + - Renamed the SDK tool format type and resolver from ToolCallFormat/resolveToolCallSyntax to DialectFormat/resolveDialect, and the agent option from toolCallSyntax to dialect. + - Changed /dump transcript output to render messages with the selected model's native dialect turn and thinking envelopes instead of markdown role headings. + Added + - Added advisor.syncBacklog setting (off, 1, 3, 5) to pause turn completion until advisor review backlog drops below the threshold, with a maximum 30-second wait + - Added advisor backlog synchronization at turn end when enabled so the main session stays aligned with the advisor's pending review turns + - Added automatic discovery of WATCHDOG.md files from user and project locations so advisor guidance from local watchdog instructions is appended to its system prompt + - Added /advisor on, /advisor off, /advisor status, and /advisor dump [raw] slash-command subcommands to manage the advisor at runtime + - Added advisor.enabled and advisor.subagents settings to enable the advisor and extend it to spawned task/eval subagents + - Added advisor status badge (++ in success color) to the status line when an advisor is active + - Added /dump [raw] flag to toggle between compact and legacy uncompact transcript output formats + - Added /advisor on, /advisor off, and /advisor status slash-command subcommands to enable or disable the advisor at runtime and view advisor status metrics + - Added a passive advisor: assign a second model to the advisor role and enable advisor.enabled to have it silently review each primary turn and inject severity-tagged advice notes via the advise tool. A nit rides the non-interrupting aside queue (batched into one card at the next step boundary), while a concern or blocker interrupts the running agent through the steering channel — aborting in-flight tools, or resuming the agent when it has already yielded — so high-severity advice is acted on immediately. Advice renders in the primary transcript as a distinct Advisor card, and the advisor gets hard-isolated read-only read/search/find access — bound to its own ToolSession so its reads never touch the primary's snapshot/seen-lines caches — to investigate the workspace before weighing in. The status line shows a ++ badge (in the success color, kept distinct from the model name) after the model name while an advisor is active, and /advisor dump copies the advisor's own transcript to the clipboard. Advisors are created only for the top-level session by default; enable advisor.subagents to extend them to spawned task/eval subagents. + - Animated "thinking" pulse (·‥…‥) shown in place of a hidden thinking block while the model is actively reasoning, so streaming progress is visible even with hideThinkingBlock enabled. + Changed + - Changed advisor prompting guidance to emit at most one advise per update and to prefer silence when the agent is on track + - Changed /dump default output to compact markdown format; use /dump raw for the legacy uncompact format + - Changed /dump and /advisor dump to default to compact transcript output and accept an optional raw flag for the legacy uncompact format + - Session dump output now renders message history using the model's native dialect turn envelope instead of markdown role headings + - Changed RPC, RPC-UI, and ACP hosts to default the advisor settings off instead of inheriting a user's interactive-session advisor preference. + Fixed + - Fixed advisor backlog tracking so failed advice prompts do not stall catch-up indefinitely by dropping pending backlog after repeated consecutive failures + - Fixed backlog accounting to decrement only after successful advisor prompts so sync waits correctly reflect advisor progress + - Fixed advisor context batching to still send pending review updates when context maintenance fails instead of dropping the batch + - Fixed explicit advisor enablement to clear protocol-default overrides so enabling the advisor applies immediately + - Fixed advisor message card notes getting truncated to two lines when the card is collapsed. + - Fixed advisor context handling to maintain its token budget by promoting or compacting/restarting advisor context while preserving advisor reasoning-off settings. + - Fixed startup.quiet leaving MCP and LSP startup status events visible during launch (#2639). + - Registered the Advisor group in the model settings tab so advisor settings render correctly in the settings panel. + - Fixed Windows bash path handling so MSYS/Git-Bash drive aliases like /d/project and WSL-style /mnt/d/project normalize to native drive paths consistently across the bash tool cwd validation and brush filesystem builtins (#2634). + What's Changed + - fix: align tool cache paths with XDG dirs by @Parsifa1 in https://github.com/can1357/oh-my-pi/pull/2637 + - fix(coding-agent): respect startup.quiet for startup statuses by @roboomp in https://github.com/can1357/oh-my-pi/pull/2640 + Full Changelog: https://github.com/can1357/oh-my-pi/compare/v15.13.3...v16.0.0 +ReleaseNotesUrl: https://github.com/can1357/oh-my-pi/releases/tag/v16.0.0 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://omp.sh/docs +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/can1357/oh-my-pi/16.0.0/can1357.oh-my-pi.locale.zh-CN.yaml b/manifests/c/can1357/oh-my-pi/16.0.0/can1357.oh-my-pi.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f9d4ff8995151 --- /dev/null +++ b/manifests/c/can1357/oh-my-pi/16.0.0/can1357.oh-my-pi.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: can1357.oh-my-pi +PackageVersion: 16.0.0 +PackageLocale: zh-CN +ShortDescription: ⌥ 用于终端的 AI 编码智能体 —— 哈希锚定编辑、优化的工具集成、LSP、Python、浏览器、子智能体等更多功能 +Description: |- + omp 是一个以终端为先的编码智能体,运行在你的机器上,可连接任意提供商,并将会话视为 git 分支处理。 + omp(读作“oh-em-pi”,二进制名为 omp)是 Mario Zechner 的 Pi 项目的一个分支。它作为一个独立的 Bun 进程运行,驱动任何你拥有凭据的模型提供商,并提供一个扁平化的工具接口,供模型用于读取代码、执行命令、编辑文件、控制调试器,以及生成通过进程内 IRC 总线进行协作的子智能体。 + 会话以 JSONL 格式持久化存储在 ~/.omp/agent/sessions/ 目录下。你可以恢复、分叉、分支和共享这些会话。设置、凭据、插件和缓存全部存放在 ~/.omp/agent/ 目录中。除非你调用某个会向外传输数据的工具,否则没有任何内容会离开你的机器。 +Tags: +- 人工智能 +- 代码 +- 大语言模型 +- 智能体 +- 编程 +- 聊天机器人 +- 自主智能 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://omp.sh/docs +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/c/can1357/oh-my-pi/16.0.0/can1357.oh-my-pi.yaml b/manifests/c/can1357/oh-my-pi/16.0.0/can1357.oh-my-pi.yaml new file mode 100644 index 0000000000000..b4ea0fe274da9 --- /dev/null +++ b/manifests/c/can1357/oh-my-pi/16.0.0/can1357.oh-my-pi.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: can1357.oh-my-pi +PackageVersion: 16.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/can1357/oh-my-pi/16.0.1/can1357.oh-my-pi.installer.yaml b/manifests/c/can1357/oh-my-pi/16.0.1/can1357.oh-my-pi.installer.yaml new file mode 100644 index 0000000000000..470b3cad9d839 --- /dev/null +++ b/manifests/c/can1357/oh-my-pi/16.0.1/can1357.oh-my-pi.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: can1357.oh-my-pi +PackageVersion: 16.0.1 +InstallerType: portable +Commands: +- omp +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/can1357/oh-my-pi/releases/download/v16.0.1/omp-windows-x64.exe + InstallerSha256: 6B9DFAA1CCDB64E603E550E2E18333E16628EADC6DC9F48961D42913D541406D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/can1357/oh-my-pi/16.0.1/can1357.oh-my-pi.locale.en-US.yaml b/manifests/c/can1357/oh-my-pi/16.0.1/can1357.oh-my-pi.locale.en-US.yaml new file mode 100644 index 0000000000000..128883562c40e --- /dev/null +++ b/manifests/c/can1357/oh-my-pi/16.0.1/can1357.oh-my-pi.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: can1357.oh-my-pi +PackageVersion: 16.0.1 +PackageLocale: en-US +Publisher: Can Bölük +PublisherUrl: https://can.ac/ +PublisherSupportUrl: https://github.com/can1357/oh-my-pi/issues +Author: Can Bölük +PackageName: oh-my-pi +PackageUrl: https://omp.sh/ +License: MIT +LicenseUrl: https://github.com/can1357/oh-my-pi/blob/HEAD/LICENSE +Copyright: |- + Copyright (c) 2025 Mario Zechner + Copyright (c) 2025-2026 Can Bölük +ShortDescription: ⌥ AI Coding agent for the terminal — hash-anchored edits, optimized tool harness, LSP, Python, browser, subagents, and more +Description: |- + omp is a terminal-first coding agent that runs on your machine, talks to any provider, and treats sessions like git branches. + omp (pronounced “oh-em-pi”, binary omp) is a fork of Mario Zechner’s Pi. It runs as a single Bun process, drives any model provider you have credentials for, and ships a flat tool surface the model uses to read code, run commands, edit files, drive a debugger, and spawn subagents that coordinate over an in-process IRC bus. + Sessions persist as JSONL under ~/.omp/agent/sessions/. You resume, fork, branch, and share them. Settings, credentials, plugins, and caches all live under ~/.omp/agent/. Nothing leaves the machine unless you call a tool that does. +Tags: +- agent +- agentic +- ai +- chatbot +- code +- coding +- large-language-model +- llm +- programming +ReleaseNotesUrl: https://github.com/can1357/oh-my-pi/releases/tag/v16.0.1 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://omp.sh/docs +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/can1357/oh-my-pi/16.0.1/can1357.oh-my-pi.locale.zh-CN.yaml b/manifests/c/can1357/oh-my-pi/16.0.1/can1357.oh-my-pi.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7f29292c08866 --- /dev/null +++ b/manifests/c/can1357/oh-my-pi/16.0.1/can1357.oh-my-pi.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: can1357.oh-my-pi +PackageVersion: 16.0.1 +PackageLocale: zh-CN +ShortDescription: ⌥ 用于终端的 AI 编码智能体 —— 哈希锚定编辑、优化的工具集成、LSP、Python、浏览器、子智能体等更多功能 +Description: |- + omp 是一个以终端为先的编码智能体,运行在你的机器上,可连接任意提供商,并将会话视为 git 分支处理。 + omp(读作“oh-em-pi”,二进制名为 omp)是 Mario Zechner 的 Pi 项目的一个分支。它作为一个独立的 Bun 进程运行,驱动任何你拥有凭据的模型提供商,并提供一个扁平化的工具接口,供模型用于读取代码、执行命令、编辑文件、控制调试器,以及生成通过进程内 IRC 总线进行协作的子智能体。 + 会话以 JSONL 格式持久化存储在 ~/.omp/agent/sessions/ 目录下。你可以恢复、分叉、分支和共享这些会话。设置、凭据、插件和缓存全部存放在 ~/.omp/agent/ 目录中。除非你调用某个会向外传输数据的工具,否则没有任何内容会离开你的机器。 +Tags: +- 人工智能 +- 代码 +- 大语言模型 +- 智能体 +- 编程 +- 聊天机器人 +- 自主智能 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://omp.sh/docs +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/c/can1357/oh-my-pi/16.0.1/can1357.oh-my-pi.yaml b/manifests/c/can1357/oh-my-pi/16.0.1/can1357.oh-my-pi.yaml new file mode 100644 index 0000000000000..1b5c167045333 --- /dev/null +++ b/manifests/c/can1357/oh-my-pi/16.0.1/can1357.oh-my-pi.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: can1357.oh-my-pi +PackageVersion: 16.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/ccseer/PinStack/2.0.0/ccseer.PinStack.installer.yaml b/manifests/c/ccseer/PinStack/2.0.0/ccseer.PinStack.installer.yaml new file mode 100644 index 0000000000000..21df741145905 --- /dev/null +++ b/manifests/c/ccseer/PinStack/2.0.0/ccseer.PinStack.installer.yaml @@ -0,0 +1,17 @@ +PackageIdentifier: ccseer.PinStack +PackageVersion: 2.0.0 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +InstallModes: + - interactive + - silent + - silentWithProgress +UpgradeBehavior: install +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/ccseer/PinStack/releases/download/v2.0.0/PinStack-2.0.0.exe + InstallerSha256: 15c32f5d9209cc4b6595f9e317ff5f695e3d1df2c57db432ffa024149734b332 + ProductCode: PinStack +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/c/ccseer/PinStack/2.0.0/ccseer.PinStack.locale.en-US.yaml b/manifests/c/ccseer/PinStack/2.0.0/ccseer.PinStack.locale.en-US.yaml new file mode 100644 index 0000000000000..f7ca032cf371f --- /dev/null +++ b/manifests/c/ccseer/PinStack/2.0.0/ccseer.PinStack.locale.en-US.yaml @@ -0,0 +1,20 @@ +PackageIdentifier: ccseer.PinStack +PackageVersion: 2.0.0 +PackageLocale: en-US +Publisher: ccseer +PublisherUrl: https://1218.io +PublisherSupportUrl: https://github.com/ccseer/PinStack/issues +Author: ccseer +PackageName: PinStack +PackageUrl: https://1218.io +License: Proprietary +LicenseUrl: https://1218.io/pinstack/eula.txt +Copyright: Copyright (c) 2016-present 1218.io +ShortDescription: A clipboard manager for Windows. +Description: PinStack is a Windows clipboard manager that helps you manage your clipboard history efficiently. +Tags: + - clipboard + - manager + - utility +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/c/ccseer/PinStack/2.0.0/ccseer.PinStack.yaml b/manifests/c/ccseer/PinStack/2.0.0/ccseer.PinStack.yaml new file mode 100644 index 0000000000000..827eff08d9589 --- /dev/null +++ b/manifests/c/ccseer/PinStack/2.0.0/ccseer.PinStack.yaml @@ -0,0 +1,5 @@ +PackageIdentifier: ccseer.PinStack +PackageVersion: 2.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/c/chrisant996/Clink/1.9.26/chrisant996.Clink.installer.yaml b/manifests/c/chrisant996/Clink/1.9.26/chrisant996.Clink.installer.yaml new file mode 100644 index 0000000000000..e90931c08f929 --- /dev/null +++ b/manifests/c/chrisant996/Clink/1.9.26/chrisant996.Clink.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: chrisant996.Clink +PackageVersion: 1.9.26 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: clink_chrisant996 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/chrisant996/clink/releases/download/v1.9.26/clink.1.9.26.ac0bbf_setup.exe + InstallerSha256: 2583004E3969349120F7723C69806CA0DA664588674AEE1CE4A953F43BF03671 +- Architecture: x64 + InstallerUrl: https://github.com/chrisant996/clink/releases/download/v1.9.26/clink.1.9.26.ac0bbf_setup.exe + InstallerSha256: 2583004E3969349120F7723C69806CA0DA664588674AEE1CE4A953F43BF03671 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-06-08 diff --git a/manifests/c/chrisant996/Clink/1.9.26/chrisant996.Clink.locale.en-US.yaml b/manifests/c/chrisant996/Clink/1.9.26/chrisant996.Clink.locale.en-US.yaml new file mode 100644 index 0000000000000..7a424eab70dc8 --- /dev/null +++ b/manifests/c/chrisant996/Clink/1.9.26/chrisant996.Clink.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: chrisant996.Clink +PackageVersion: 1.9.26 +PackageLocale: en-US +Publisher: Christopher Antos +PublisherUrl: https://github.com/chrisant996/ +PublisherSupportUrl: https://github.com/chrisant996/clink/issues +Author: Chris Antos +PackageName: Clink +PackageUrl: https://chrisant996.github.io/clink/ +License: GPL-3.0 +LicenseUrl: https://github.com/chrisant996/clink/blob/HEAD/LICENSE +CopyrightUrl: https://raw.githubusercontent.com/chrisant996/clink/master/LICENSE +ShortDescription: Clink combines the native Windows shell cmd.exe with the powerful command line editing features of the GNU Readline library, which provides rich completion, history, and line-editing capabilities. +Description: Clink combines the native Windows shell cmd.exe with the powerful command line editing features of the GNU Readline library, which provides rich completion, history, and line-editing capabilities. Readline is best known for its use in the well-known Unix shell Bash, the standard shell for Mac OS X and many Linux distributions. +Tags: +- cmd +- command-line +- readline +- shell +ReleaseNotesUrl: https://github.com/chrisant996/clink/releases/tag/v1.9.26 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/chrisant996/Clink/1.9.26/chrisant996.Clink.yaml b/manifests/c/chrisant996/Clink/1.9.26/chrisant996.Clink.yaml new file mode 100644 index 0000000000000..17191b587e4e4 --- /dev/null +++ b/manifests/c/chrisant996/Clink/1.9.26/chrisant996.Clink.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: chrisant996.Clink +PackageVersion: 1.9.26 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/DifferentAI/OpenWork/0.17.0/DifferentAI.OpenWork.installer.yaml b/manifests/d/DifferentAI/OpenWork/0.17.0/DifferentAI.OpenWork.installer.yaml new file mode 100644 index 0000000000000..0ffa920087b9e --- /dev/null +++ b/manifests/d/DifferentAI/OpenWork/0.17.0/DifferentAI.OpenWork.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: DifferentAI.OpenWork +PackageVersion: 0.17.0 +InstallerType: nullsoft +Scope: user +ProductCode: 29165f8a-586b-5470-a1cc-cfff30a85ed3 +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/different-ai/openwork/releases/download/v0.17.0/openwork-win-x64-0.17.0.exe + InstallerSha256: 187B76563B197E34B7A0B5B6F4B9E66A6FB41A14CFCB4F3CDAE2A222BE0B53C6 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DifferentAI/OpenWork/0.17.0/DifferentAI.OpenWork.locale.en-US.yaml b/manifests/d/DifferentAI/OpenWork/0.17.0/DifferentAI.OpenWork.locale.en-US.yaml new file mode 100644 index 0000000000000..e43e2f412c2c8 --- /dev/null +++ b/manifests/d/DifferentAI/OpenWork/0.17.0/DifferentAI.OpenWork.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: DifferentAI.OpenWork +PackageVersion: 0.17.0 +PackageLocale: en-US +Publisher: differentai +PublisherUrl: https://openwork.software/ +PublisherSupportUrl: https://github.com/different-ai/openwork/issues +Author: Different AI +PackageName: OpenWork +PackageUrl: https://openwork.software/ +License: MIT +LicenseUrl: https://github.com/different-ai/openwork/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Different AI +ShortDescription: An open-source alternative to Claude Cowork, powered by OpenCode +Description: |- + OpenWork is an extensible, open-source “Claude Work” style system for knowledge workers. + It’s a native desktop app that runs OpenCode under the hood, but presents it as a clean, guided workflow: + - pick a workspace + - start a run + - watch progress + plan updates + - approve permissions when needed + - reuse what works (templates + skills) + The goal: make “agentic work” feel like a product, not a terminal. +Tags: +- agent +- agentic +- ai +- large-language-model +- llm +- opencode +ReleaseNotes: |- + What's new + OpenWork v0.17.0 desktop release. + - Download the attached installer for your platform. + - Electron builds use the attached latest-mac.yml updater feed. + Windows Build free code signing provided by SignPath.io, certificate by SignPath Foundation +ReleaseNotesUrl: https://github.com/different-ai/openwork/releases/tag/v0.17.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DifferentAI/OpenWork/0.17.0/DifferentAI.OpenWork.locale.zh-CN.yaml b/manifests/d/DifferentAI/OpenWork/0.17.0/DifferentAI.OpenWork.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f2440c452d02b --- /dev/null +++ b/manifests/d/DifferentAI/OpenWork/0.17.0/DifferentAI.OpenWork.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: DifferentAI.OpenWork +PackageVersion: 0.17.0 +PackageLocale: zh-CN +ShortDescription: 由 OpenCode 驱动的 Claude Cowork 开源替代方案 +Description: |- + OpenWork 是一个可扩展的开源“Claude Work”风格系统,专为知识工作者设计。 + 它是一款原生桌面应用程序,底层运行 OpenCode,但以简洁、引导式的工作流呈现: + - 选择一个工作区 + - 开始执行任务 + - 查看进度并规划更新 + - 在需要时批准权限 + - 复用有效内容(模板 + 技能) + 目标:让“自主智能式工作”感觉像一个产品,而不是一个终端。 +Tags: +- opencode +- 人工智能 +- 大语言模型 +- 智能体 +- 自主智能 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DifferentAI/OpenWork/0.17.0/DifferentAI.OpenWork.yaml b/manifests/d/DifferentAI/OpenWork/0.17.0/DifferentAI.OpenWork.yaml new file mode 100644 index 0000000000000..5c3e4a09d4e69 --- /dev/null +++ b/manifests/d/DifferentAI/OpenWork/0.17.0/DifferentAI.OpenWork.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: DifferentAI.OpenWork +PackageVersion: 0.17.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.999/Discord.Discord.Canary.installer.yaml b/manifests/d/Discord/Discord/Canary/1.0.999/Discord.Discord.Canary.installer.yaml new file mode 100644 index 0000000000000..b054d4338fe39 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.999/Discord.Discord.Canary.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.999 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Protocols: +- discord +ProductCode: DiscordCanary +Installers: +- Architecture: x64 + InstallerUrl: https://canary.dl2.discordapp.net/distro/app/canary/win/x64/1.0.999/DiscordCanarySetup.exe + InstallerSha256: E40CE513850EB5B907DE21BD6F5AA5326469DDA3AAE00BA654538484DFC48512 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.999/Discord.Discord.Canary.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/1.0.999/Discord.Discord.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..2c4e7b53b6335 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.999/Discord.Discord.Canary.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.999 +PackageLocale: en-US +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Canary +PackageUrl: https://discord.com/download +License: Proprietary +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2026 Discord Inc. All rights reserved. +ShortDescription: Your Place to Talk and Hang Out +Description: |- + Discord is the easiest way to talk over voice, video, and text. + Talk, chat, hang out, and stay close with your friends and communities. +Moniker: discord-canary +Tags: +- chat +- community +- gaming +- hang-out +- talk +- video +- voice +- voice-chat +PurchaseUrl: https://discord.com/nitro +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.999/Discord.Discord.Canary.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/1.0.999/Discord.Discord.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..49fee013e9da8 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.999/Discord.Discord.Canary.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.999 +PackageLocale: zh-CN +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Canary +PackageUrl: https://discord.com/download +License: 专有软件 +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2026 Discord Inc. All rights reserved. +ShortDescription: 玩耍聊天的地方 +Description: |- + Discord 是最简单易用的通讯工具,兼具语音、视频以及文字信息功能。 + 您可以聊聊天,拉拉家常,一起玩耍,与好友和社区保持紧密联系。 +Tags: +- 开黑 +- 游戏 +- 聊天 +- 语音 +- 语音聊天 +PurchaseUrl: https://discord.com/nitro +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.999/Discord.Discord.Canary.yaml b/manifests/d/Discord/Discord/Canary/1.0.999/Discord.Discord.Canary.yaml new file mode 100644 index 0000000000000..19ff25b6900ea --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.999/Discord.Discord.Canary.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.999 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/arm64/1.0.330/Discord.Discord.Canary.arm64.installer.yaml b/manifests/d/Discord/Discord/Canary/arm64/1.0.330/Discord.Discord.Canary.arm64.installer.yaml new file mode 100644 index 0000000000000..be59700808d6f --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/arm64/1.0.330/Discord.Discord.Canary.arm64.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary.arm64 +PackageVersion: 1.0.330 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Protocols: +- discord +ProductCode: DiscordCanary +Installers: +- Architecture: arm64 + InstallerUrl: https://canary.dl2.discordapp.net/distro/app/canary/win/arm64/1.0.330/DiscordCanarySetup.exe + InstallerSha256: A0B1E4201CEC9AB535A001F011AF70683E5A84586B8CC390E3D374556044E232 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/arm64/1.0.330/Discord.Discord.Canary.arm64.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/arm64/1.0.330/Discord.Discord.Canary.arm64.locale.en-US.yaml new file mode 100644 index 0000000000000..5fcd84887cd95 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/arm64/1.0.330/Discord.Discord.Canary.arm64.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary.arm64 +PackageVersion: 1.0.330 +PackageLocale: en-US +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Canary (arm64) +PackageUrl: https://discord.com/download +License: Proprietary +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2026 Discord Inc. All rights reserved. +ShortDescription: Your Place to Talk and Hang Out +Description: |- + Discord is the easiest way to talk over voice, video, and text. + Talk, chat, hang out, and stay close with your friends and communities. +Moniker: discord-canary +Tags: +- chat +- community +- gaming +- hang-out +- talk +- video +- voice +- voice-chat +PurchaseUrl: https://discord.com/nitro +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/arm64/1.0.330/Discord.Discord.Canary.arm64.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/arm64/1.0.330/Discord.Discord.Canary.arm64.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e8c832330c1eb --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/arm64/1.0.330/Discord.Discord.Canary.arm64.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary.arm64 +PackageVersion: 1.0.330 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 玩耍聊天的地方 +Description: |- + Discord 是最简单易用的通讯工具,兼具语音、视频以及文字信息功能。 + 您可以聊聊天,拉拉家常,一起玩耍,与好友和社区保持紧密联系。 +Tags: +- 开黑 +- 游戏 +- 聊天 +- 语音 +- 语音聊天 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/arm64/1.0.330/Discord.Discord.Canary.arm64.yaml b/manifests/d/Discord/Discord/Canary/arm64/1.0.330/Discord.Discord.Canary.arm64.yaml new file mode 100644 index 0000000000000..cd82d248cc3ee --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/arm64/1.0.330/Discord.Discord.Canary.arm64.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary.arm64 +PackageVersion: 1.0.330 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.1003/Discord.Discord.Development.installer.yaml b/manifests/d/Discord/Discord/Development/1.0.1003/Discord.Discord.Development.installer.yaml new file mode 100644 index 0000000000000..bab25dd575411 --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.1003/Discord.Discord.Development.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Development +PackageVersion: 1.0.1003 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Protocols: +- discord +ProductCode: DiscordDevelopment +Installers: +- Architecture: x64 + InstallerUrl: https://development.dl2.discordapp.net/distro/app/development/win/x64/1.0.1003/DiscordDevelopmentSetup.exe + InstallerSha256: 533952BD92E74FB129ACDFB4BB097E537130410D702EA55DADF790F293B3B9AB +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.1003/Discord.Discord.Development.locale.en-US.yaml b/manifests/d/Discord/Discord/Development/1.0.1003/Discord.Discord.Development.locale.en-US.yaml new file mode 100644 index 0000000000000..34a33ccf04341 --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.1003/Discord.Discord.Development.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Development +PackageVersion: 1.0.1003 +PackageLocale: en-US +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Development +PackageUrl: https://discord.com/download +License: Proprietary +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2026 Discord Inc. All rights reserved. +ShortDescription: Your Place to Talk and Hang Out +Description: |- + Discord is the easiest way to talk over voice, video, and text. + Talk, chat, hang out, and stay close with your friends and communities. +Moniker: discord-development +Tags: +- chat +- community +- gaming +- hang-out +- talk +- video +- voice +- voice-chat +PurchaseUrl: https://discord.com/nitro +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.1003/Discord.Discord.Development.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Development/1.0.1003/Discord.Discord.Development.locale.zh-CN.yaml new file mode 100644 index 0000000000000..73f75bc319b47 --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.1003/Discord.Discord.Development.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Development +PackageVersion: 1.0.1003 +PackageLocale: zh-CN +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Development +PackageUrl: https://discord.com/download +License: 专有软件 +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2026 Discord Inc. All rights reserved. +ShortDescription: 玩耍聊天的地方 +Description: |- + Discord 是最简单易用的通讯工具,兼具语音、视频以及文字信息功能。 + 您可以聊聊天,拉拉家常,一起玩耍,与好友和社区保持紧密联系。 +Tags: +- 开黑 +- 游戏 +- 聊天 +- 语音 +- 语音聊天 +PurchaseUrl: https://discord.com/nitro +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.1003/Discord.Discord.Development.yaml b/manifests/d/Discord/Discord/Development/1.0.1003/Discord.Discord.Development.yaml new file mode 100644 index 0000000000000..dbc34abec0ef3 --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.1003/Discord.Discord.Development.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Development +PackageVersion: 1.0.1003 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.1004/Discord.Discord.Development.installer.yaml b/manifests/d/Discord/Discord/Development/1.0.1004/Discord.Discord.Development.installer.yaml new file mode 100644 index 0000000000000..2f72df14effc6 --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.1004/Discord.Discord.Development.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Development +PackageVersion: 1.0.1004 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Protocols: +- discord +ProductCode: DiscordDevelopment +Installers: +- Architecture: x64 + InstallerUrl: https://development.dl2.discordapp.net/distro/app/development/win/x64/1.0.1004/DiscordDevelopmentSetup.exe + InstallerSha256: 937D423C8650609117E63865E866EDC2B78EE5E4041893735DD6448AF3BC1B54 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.1004/Discord.Discord.Development.locale.en-US.yaml b/manifests/d/Discord/Discord/Development/1.0.1004/Discord.Discord.Development.locale.en-US.yaml new file mode 100644 index 0000000000000..a95411734e490 --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.1004/Discord.Discord.Development.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Development +PackageVersion: 1.0.1004 +PackageLocale: en-US +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Development +PackageUrl: https://discord.com/download +License: Proprietary +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2026 Discord Inc. All rights reserved. +ShortDescription: Your Place to Talk and Hang Out +Description: |- + Discord is the easiest way to talk over voice, video, and text. + Talk, chat, hang out, and stay close with your friends and communities. +Moniker: discord-development +Tags: +- chat +- community +- gaming +- hang-out +- talk +- video +- voice +- voice-chat +PurchaseUrl: https://discord.com/nitro +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.1004/Discord.Discord.Development.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Development/1.0.1004/Discord.Discord.Development.locale.zh-CN.yaml new file mode 100644 index 0000000000000..eec8a28ef80a3 --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.1004/Discord.Discord.Development.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Development +PackageVersion: 1.0.1004 +PackageLocale: zh-CN +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Development +PackageUrl: https://discord.com/download +License: 专有软件 +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2026 Discord Inc. All rights reserved. +ShortDescription: 玩耍聊天的地方 +Description: |- + Discord 是最简单易用的通讯工具,兼具语音、视频以及文字信息功能。 + 您可以聊聊天,拉拉家常,一起玩耍,与好友和社区保持紧密联系。 +Tags: +- 开黑 +- 游戏 +- 聊天 +- 语音 +- 语音聊天 +PurchaseUrl: https://discord.com/nitro +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Development/1.0.1004/Discord.Discord.Development.yaml b/manifests/d/Discord/Discord/Development/1.0.1004/Discord.Discord.Development.yaml new file mode 100644 index 0000000000000..d042f45f91d8c --- /dev/null +++ b/manifests/d/Discord/Discord/Development/1.0.1004/Discord.Discord.Development.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Development +PackageVersion: 1.0.1004 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/Docker/DockerDesktop/4.77.0/Docker.DockerDesktop.installer.yaml b/manifests/d/Docker/DockerDesktop/4.78.0.229452/Docker.DockerDesktop.installer.yaml similarity index 73% rename from manifests/d/Docker/DockerDesktop/4.77.0/Docker.DockerDesktop.installer.yaml rename to manifests/d/Docker/DockerDesktop/4.78.0.229452/Docker.DockerDesktop.installer.yaml index c1b226e4a7bbb..f3578ddebe9c6 100644 --- a/manifests/d/Docker/DockerDesktop/4.77.0/Docker.DockerDesktop.installer.yaml +++ b/manifests/d/Docker/DockerDesktop/4.78.0.229452/Docker.DockerDesktop.installer.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.16.0 +# Automatically updated by the winget bot at 2026/Jun/15 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Docker.DockerDesktop -PackageVersion: 4.77.0 +PackageVersion: 4.78.0.229452 InstallerLocale: en-US InstallerType: exe Scope: machine @@ -20,9 +20,9 @@ ElevationRequirement: elevatesSelf Installers: - Architecture: x64 InstallerUrl: https://desktop.docker.com/win/main/amd64/Docker%20Desktop%20Installer.exe - InstallerSha256: 5B866599F0DE9208F4594D64AA33658FA55CBDD64E0DB13648CFFE12C91795D2 + InstallerSha256: 99E275B54ED50AD758B5C9F5D243D0D715B40F909A4E4249FA4C37C0F1735A5E - Architecture: arm64 InstallerUrl: https://desktop.docker.com/win/main/arm64/Docker%20Desktop%20Installer.exe - InstallerSha256: 960376A2CCB8E8303FA25D94E3BAF2AE4DF3065967EB7CD9CD12F313F5EB7761 + InstallerSha256: 44D50063DE29DEAE6F6655225A19DA02EC0F907F7C09ECE040774E07EAC8E303 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/d/Docker/DockerDesktop/4.77.0/Docker.DockerDesktop.locale.en-GB.yaml b/manifests/d/Docker/DockerDesktop/4.78.0.229452/Docker.DockerDesktop.locale.en-GB.yaml similarity index 87% rename from manifests/d/Docker/DockerDesktop/4.77.0/Docker.DockerDesktop.locale.en-GB.yaml rename to manifests/d/Docker/DockerDesktop/4.78.0.229452/Docker.DockerDesktop.locale.en-GB.yaml index 2fe4b587a94d7..01e49d88187c8 100644 --- a/manifests/d/Docker/DockerDesktop/4.77.0/Docker.DockerDesktop.locale.en-GB.yaml +++ b/manifests/d/Docker/DockerDesktop/4.78.0.229452/Docker.DockerDesktop.locale.en-GB.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.16.0 +# Automatically updated by the winget bot at 2026/Jun/15 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Docker.DockerDesktop -PackageVersion: 4.77.0 +PackageVersion: 4.78.0.229452 PackageLocale: en-GB PackageName: Docker Desktop Copyright: © 2015-2026 Docker Inc. All rights reserved. diff --git a/manifests/d/Docker/DockerDesktop/4.77.0/Docker.DockerDesktop.locale.en-US.yaml b/manifests/d/Docker/DockerDesktop/4.78.0.229452/Docker.DockerDesktop.locale.en-US.yaml similarity index 91% rename from manifests/d/Docker/DockerDesktop/4.77.0/Docker.DockerDesktop.locale.en-US.yaml rename to manifests/d/Docker/DockerDesktop/4.78.0.229452/Docker.DockerDesktop.locale.en-US.yaml index d36f4c43b93d9..86709fc512851 100644 --- a/manifests/d/Docker/DockerDesktop/4.77.0/Docker.DockerDesktop.locale.en-US.yaml +++ b/manifests/d/Docker/DockerDesktop/4.78.0.229452/Docker.DockerDesktop.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.16.0 +# Automatically updated by the winget bot at 2026/Jun/15 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Docker.DockerDesktop -PackageVersion: 4.77.0 +PackageVersion: 4.78.0.229452 PackageLocale: en-US Publisher: Docker Inc. PublisherUrl: https://www.docker.com/ diff --git a/manifests/d/Docker/DockerDesktop/4.77.0/Docker.DockerDesktop.locale.zh-CN.yaml b/manifests/d/Docker/DockerDesktop/4.78.0.229452/Docker.DockerDesktop.locale.zh-CN.yaml similarity index 91% rename from manifests/d/Docker/DockerDesktop/4.77.0/Docker.DockerDesktop.locale.zh-CN.yaml rename to manifests/d/Docker/DockerDesktop/4.78.0.229452/Docker.DockerDesktop.locale.zh-CN.yaml index e3f6dbc9ae1c8..6a5c96d213728 100644 --- a/manifests/d/Docker/DockerDesktop/4.77.0/Docker.DockerDesktop.locale.zh-CN.yaml +++ b/manifests/d/Docker/DockerDesktop/4.78.0.229452/Docker.DockerDesktop.locale.zh-CN.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.16.0 +# Automatically updated by the winget bot at 2026/Jun/15 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Docker.DockerDesktop -PackageVersion: 4.77.0 +PackageVersion: 4.78.0.229452 PackageLocale: zh-CN Publisher: Docker Inc. PublisherUrl: https://www.docker.com/ diff --git a/manifests/d/Docker/DockerDesktop/4.78.0.229452/Docker.DockerDesktop.yaml b/manifests/d/Docker/DockerDesktop/4.78.0.229452/Docker.DockerDesktop.yaml new file mode 100644 index 0000000000000..0bbc64e336e11 --- /dev/null +++ b/manifests/d/Docker/DockerDesktop/4.78.0.229452/Docker.DockerDesktop.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2026/Jun/15 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Docker.DockerDesktop +PackageVersion: 4.78.0.229452 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/defendend/ast-index/3.47.2/defendend.ast-index.installer.yaml b/manifests/d/defendend/ast-index/3.47.2/defendend.ast-index.installer.yaml new file mode 100644 index 0000000000000..9362419eb66aa --- /dev/null +++ b/manifests/d/defendend/ast-index/3.47.2/defendend.ast-index.installer.yaml @@ -0,0 +1,19 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: defendend.ast-index +PackageVersion: 3.47.2 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ast-index.exe +Commands: +- ast-index +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/defendend/Claude-ast-index-search/releases/download/v3.47.2/ast-index-v3.47.2-windows-x86_64.zip + InstallerSha256: 58015B68396F04875A5DDA99879CFC1FDDC264A7A596DC8F45895E9810301ACC +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/defendend/ast-index/3.47.2/defendend.ast-index.locale.en-US.yaml b/manifests/d/defendend/ast-index/3.47.2/defendend.ast-index.locale.en-US.yaml new file mode 100644 index 0000000000000..e88a69e43b20d --- /dev/null +++ b/manifests/d/defendend/ast-index/3.47.2/defendend.ast-index.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: defendend.ast-index +PackageVersion: 3.47.2 +PackageLocale: en-US +Publisher: defendend +PublisherUrl: https://github.com/defendend +PublisherSupportUrl: https://github.com/defendend/Claude-ast-index-search/issues +Author: Alexandr Ivanov +PackageName: ast-index +PackageUrl: https://github.com/defendend/Claude-ast-index-search/releases +License: MIT +LicenseUrl: https://github.com/defendend/Claude-ast-index-search/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Alexandr Ivanov(defendend) +ShortDescription: Fast code search CLI for Android, iOS, TypeScript, Rust, Ruby, C#, Python, Go, Perl, C++ projects +Description: ast-index is a fast native Rust CLI for structural code search in Android/Kotlin/Java, iOS/Swift/ObjC, Dart/Flutter, TypeScript/JavaScript, Rust, Ruby, C#, PHP, Python, Go, Perl, C++, and Protocol Buffers projects. +Moniker: ast-index +Tags: +- Android +- claude +- code-search +- gemini +- iOS +ReleaseNotes: 'Full Changelog: v3.47.1...v3.47.2' +ReleaseNotesUrl: https://github.com/defendend/Claude-ast-index-search/releases/tag/v3.47.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/defendend/ast-index/3.47.2/defendend.ast-index.yaml b/manifests/d/defendend/ast-index/3.47.2/defendend.ast-index.yaml new file mode 100644 index 0000000000000..6196a4db4530f --- /dev/null +++ b/manifests/d/defendend/ast-index/3.47.2/defendend.ast-index.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: defendend.ast-index +PackageVersion: 3.47.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/dotenvx/dotenvx/1.72.0/dotenvx.dotenvx.installer.yaml b/manifests/d/dotenvx/dotenvx/1.72.0/dotenvx.dotenvx.installer.yaml new file mode 100644 index 0000000000000..b29c6e53eed18 --- /dev/null +++ b/manifests/d/dotenvx/dotenvx/1.72.0/dotenvx.dotenvx.installer.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: dotenvx.dotenvx +PackageVersion: 1.72.0 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: dotenvx.exe + PortableCommandAlias: dotenvx +UpgradeBehavior: uninstallPrevious +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/dotenvx/dotenvx/releases/download/v1.72.0/dotenvx-1.72.0-windows-x86_64.zip + InstallerSha256: 6E68F29BAEEAF6CC3DA97EC7B58E7CA34AA11127273B4F8F0853BF1F296B0FA4 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-06-15 diff --git a/manifests/d/dotenvx/dotenvx/1.72.0/dotenvx.dotenvx.locale.en-US.yaml b/manifests/d/dotenvx/dotenvx/1.72.0/dotenvx.dotenvx.locale.en-US.yaml new file mode 100644 index 0000000000000..20ec6c71b13b4 --- /dev/null +++ b/manifests/d/dotenvx/dotenvx/1.72.0/dotenvx.dotenvx.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: dotenvx.dotenvx +PackageVersion: 1.72.0 +PackageLocale: en-US +Publisher: dotenvx +PublisherUrl: https://dotenvx.com +PublisherSupportUrl: https://github.com/dotenvx/dotenvx/issues +Author: motdotla +PackageName: dotenvx +PackageUrl: https://github.com/dotenvx/dotenvx +License: BSD-3-Clause +ShortDescription: a better dotenv–from the creator of dotenv +Description: a better dotenv–from the creator of dotenv +Moniker: dotenvx +Tags: +- env +- dotenv +- environment +- variables +- dotenvx +- cli +- encryption +ReleaseNotesUrl: https://github.com/dotenvx/dotenvx/releases/tag/v1.72.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/dotenvx/dotenvx/1.72.0/dotenvx.dotenvx.yaml b/manifests/d/dotenvx/dotenvx/1.72.0/dotenvx.dotenvx.yaml new file mode 100644 index 0000000000000..7ed328adaf181 --- /dev/null +++ b/manifests/d/dotenvx/dotenvx/1.72.0/dotenvx.dotenvx.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: dotenvx.dotenvx +PackageVersion: 1.72.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/e/EKKOLearnAI/HermesStudio/0.6.15/EKKOLearnAI.HermesStudio.installer.yaml b/manifests/e/EKKOLearnAI/HermesStudio/0.6.15/EKKOLearnAI.HermesStudio.installer.yaml index 72a6d83211125..9a3627325dc1c 100644 --- a/manifests/e/EKKOLearnAI/HermesStudio/0.6.15/EKKOLearnAI.HermesStudio.installer.yaml +++ b/manifests/e/EKKOLearnAI/HermesStudio/0.6.15/EKKOLearnAI.HermesStudio.installer.yaml @@ -1,26 +1,26 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: EKKOLearnAI.HermesStudio -PackageVersion: 0.6.15 -InstallerType: nullsoft -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ProductCode: f6bd0604-87fa-534e-9fb2-f5a02394db55 -ReleaseDate: 2026-06-15 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/EKKOLearnAI/hermes-studio/releases/download/v0.6.15/Hermes.Studio-0.6.15-x64.exe - InstallerSha256: EE21C9E26FCABEDEBBBB5C2513955B99333355FC614388390985382600CD25C8 - InstallerSwitches: - Custom: /currentuser -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/EKKOLearnAI/hermes-studio/releases/download/v0.6.15/Hermes.Studio-0.6.15-x64.exe - InstallerSha256: EE21C9E26FCABEDEBBBB5C2513955B99333355FC614388390985382600CD25C8 - InstallerSwitches: - Custom: /allusers -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/Jun/15 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: EKKOLearnAI.HermesStudio +PackageVersion: 0.6.15 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: f6bd0604-87fa-534e-9fb2-f5a02394db55 +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/EKKOLearnAI/hermes-studio/releases/download/v0.6.15/Hermes.Studio-0.6.15-x64.exe + InstallerSha256: 11B4D3805A27D76F2B3E1DE3070615D165C257EAB1E9E4C9E1C7A7E8D37A3C93 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/EKKOLearnAI/hermes-studio/releases/download/v0.6.15/Hermes.Studio-0.6.15-x64.exe + InstallerSha256: 11B4D3805A27D76F2B3E1DE3070615D165C257EAB1E9E4C9E1C7A7E8D37A3C93 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/e/EKKOLearnAI/HermesStudio/0.6.15/EKKOLearnAI.HermesStudio.locale.en-US.yaml b/manifests/e/EKKOLearnAI/HermesStudio/0.6.15/EKKOLearnAI.HermesStudio.locale.en-US.yaml index 06eb8878687f7..8662b868485a6 100644 --- a/manifests/e/EKKOLearnAI/HermesStudio/0.6.15/EKKOLearnAI.HermesStudio.locale.en-US.yaml +++ b/manifests/e/EKKOLearnAI/HermesStudio/0.6.15/EKKOLearnAI.HermesStudio.locale.en-US.yaml @@ -1,24 +1,24 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: EKKOLearnAI.HermesStudio -PackageVersion: 0.6.15 -PackageLocale: en-US -ShortDescription: A full-featured desktop app for Hermes Agent. -Description: |- - A full-featured desktop app and web dashboard for Hermes Agent. - Manage AI chat sessions, monitor usage & costs, configure platform channels, - schedule cron jobs, browse skills — all from a clean, responsive web interface. -Tags: -- agent -- agentic -- ai -- hermes -- hermes-agent -- large-language-model -- llm -Documentations: -- DocumentLabel: Docs - DocumentUrl: https://hermes-studio.ai/#/docs/getting-started -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/Jun/15 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: EKKOLearnAI.HermesStudio +PackageVersion: 0.6.15 +PackageLocale: en-US +ShortDescription: A full-featured desktop app for Hermes Agent. +Description: |- + A full-featured desktop app and web dashboard for Hermes Agent. + Manage AI chat sessions, monitor usage & costs, configure platform channels, + schedule cron jobs, browse skills — all from a clean, responsive web interface. +Tags: +- agent +- agentic +- ai +- hermes +- hermes-agent +- large-language-model +- llm +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://hermes-studio.ai/#/docs/getting-started +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/e/EKKOLearnAI/HermesStudio/0.6.15/EKKOLearnAI.HermesStudio.locale.zh-CN.yaml b/manifests/e/EKKOLearnAI/HermesStudio/0.6.15/EKKOLearnAI.HermesStudio.locale.zh-CN.yaml index dcd00e959117a..94b50d089ba65 100644 --- a/manifests/e/EKKOLearnAI/HermesStudio/0.6.15/EKKOLearnAI.HermesStudio.locale.zh-CN.yaml +++ b/manifests/e/EKKOLearnAI/HermesStudio/0.6.15/EKKOLearnAI.HermesStudio.locale.zh-CN.yaml @@ -1,45 +1,45 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: EKKOLearnAI.HermesStudio -PackageVersion: 0.6.15 -PackageLocale: zh-CN -Publisher: Hermes Studio Contributors -PublisherUrl: https://hermes-studio.ai/ -PublisherSupportUrl: https://github.com/EKKOLearnAI/hermes-studio/issues -PackageName: Hermes Studio -PackageUrl: https://hermes-studio.ai/ -License: BUSL-1.1 -LicenseUrl: https://github.com/EKKOLearnAI/hermes-studio/blob/HEAD/LICENSE -Copyright: Copyright © 2026 -ShortDescription: Hermes Agent 的全功能桌面应用 -Description: |- - Hermes Agent 的全功能桌面应用和 Web 管理面板。 - 管理 AI 聊天会话、监控用量与成本、配置平台渠道、 - 管理定时任务、浏览技能 —— 全部在一个简洁响应式的 Web 界面中完成。 -Tags: -- hermes -- hermes-agent -- 人工智能 -- 大语言模型 -- 智能体 -- 自主智能 -ReleaseNotes: |- - Highlights - - Chat sidebars were redesigned, with clearer history loading controls for long conversations. - - Added the skill command picker for discovering and inserting available skill commands from chat input. - - Added Claude and Gemini OAuth providers, normalized Gemini model IDs, and added model selector refresh for config.yaml changes. - - Refreshed Thinking indicators and toolbar layout so reasoning progress is easier to read without interrupting message flow. - - Restored visible dark-theme borders for input and select form controls. - - Improved runtime startup checks, desktop self-update handling, gateway shutdown/respawn behavior, and desktop server shutdown cleanup. - - Updated README and website showcase media. - - Removed inline clear controls from the auxiliary model editor fields. - Validation - - Release created from main at f3365ce6. - - npm run build passed for the auxiliary model editor change before merge. -ReleaseNotesUrl: https://github.com/EKKOLearnAI/hermes-studio/releases/tag/v0.6.15 -Documentations: -- DocumentLabel: 文档 - DocumentUrl: https://hermes-studio.ai/#/docs/getting-started -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/Jun/15 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: EKKOLearnAI.HermesStudio +PackageVersion: 0.6.15 +PackageLocale: zh-CN +Publisher: Hermes Studio Contributors +PublisherUrl: https://hermes-studio.ai/ +PublisherSupportUrl: https://github.com/EKKOLearnAI/hermes-studio/issues +PackageName: Hermes Studio +PackageUrl: https://hermes-studio.ai/ +License: BUSL-1.1 +LicenseUrl: https://github.com/EKKOLearnAI/hermes-studio/blob/HEAD/LICENSE +Copyright: Copyright © 2026 +ShortDescription: Hermes Agent 的全功能桌面应用 +Description: |- + Hermes Agent 的全功能桌面应用和 Web 管理面板。 + 管理 AI 聊天会话、监控用量与成本、配置平台渠道、 + 管理定时任务、浏览技能 —— 全部在一个简洁响应式的 Web 界面中完成。 +Tags: +- hermes +- hermes-agent +- 人工智能 +- 大语言模型 +- 智能体 +- 自主智能 +ReleaseNotes: |- + Highlights + - Chat sidebars were redesigned, with clearer history loading controls for long conversations. + - Added the skill command picker for discovering and inserting available skill commands from chat input. + - Added Claude and Gemini OAuth providers, normalized Gemini model IDs, and added model selector refresh for config.yaml changes. + - Refreshed Thinking indicators and toolbar layout so reasoning progress is easier to read without interrupting message flow. + - Restored visible dark-theme borders for input and select form controls. + - Improved runtime startup checks, desktop self-update handling, gateway shutdown/respawn behavior, and desktop server shutdown cleanup. + - Updated README and website showcase media. + - Removed inline clear controls from the auxiliary model editor fields. + Validation + - Release created from main at f3365ce6. + - npm run build passed for the auxiliary model editor change before merge. +ReleaseNotesUrl: https://github.com/EKKOLearnAI/hermes-studio/releases/tag/v0.6.15 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://hermes-studio.ai/#/docs/getting-started +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/e/EKKOLearnAI/HermesStudio/0.6.15/EKKOLearnAI.HermesStudio.yaml b/manifests/e/EKKOLearnAI/HermesStudio/0.6.15/EKKOLearnAI.HermesStudio.yaml index 10269f5bff840..4843482eec3c4 100644 --- a/manifests/e/EKKOLearnAI/HermesStudio/0.6.15/EKKOLearnAI.HermesStudio.yaml +++ b/manifests/e/EKKOLearnAI/HermesStudio/0.6.15/EKKOLearnAI.HermesStudio.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: EKKOLearnAI.HermesStudio -PackageVersion: 0.6.15 -DefaultLocale: zh-CN -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/Jun/15 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: EKKOLearnAI.HermesStudio +PackageVersion: 0.6.15 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/e/EarendilWorks/pi/0.79.4/EarendilWorks.pi.installer.yaml b/manifests/e/EarendilWorks/pi/0.79.4/EarendilWorks.pi.installer.yaml new file mode 100644 index 0000000000000..a88d8d6b35fc8 --- /dev/null +++ b/manifests/e/EarendilWorks/pi/0.79.4/EarendilWorks.pi.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: EarendilWorks.pi +PackageVersion: 0.79.4 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: pi.exe +Commands: +- pi +ReleaseDate: 2026-06-15 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/earendil-works/pi/releases/download/v0.79.4/pi-windows-x64.zip + InstallerSha256: D81659E6590D180B4BC61196733A64DBBCFA0CFBA0EC388039AC529CC9910BC4 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/e/EarendilWorks/pi/0.79.4/EarendilWorks.pi.locale.en-US.yaml b/manifests/e/EarendilWorks/pi/0.79.4/EarendilWorks.pi.locale.en-US.yaml new file mode 100644 index 0000000000000..095b065d2ebf6 --- /dev/null +++ b/manifests/e/EarendilWorks/pi/0.79.4/EarendilWorks.pi.locale.en-US.yaml @@ -0,0 +1,56 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: EarendilWorks.pi +PackageVersion: 0.79.4 +PackageLocale: en-US +Publisher: EARENDIL INC. +PublisherUrl: https://github.com/earendil-works +PublisherSupportUrl: https://github.com/earendil-works/pi/issues +Author: Mario Zechner +PackageName: pi +PackageUrl: https://github.com/earendil-works/pi +License: MIT +LicenseUrl: https://github.com/earendil-works/pi/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Mario Zechner +ShortDescription: AI coding assistant with read, bash, edit, write tools +Description: |- + Pi is a minimal terminal coding harness. Adapt pi to your workflows, not the other way around, without having to fork and modify pi internals. Extend it with TypeScript Extensions, Skills, Prompt Templates, and Themes. Put your extensions, skills, prompt templates, and themes in Pi Packages and share them with others via npm or git. + Pi ships with powerful defaults but skips features like sub agents and plan mode. Instead, you can ask pi to build what you want or install a third party pi package that matches your workflow. + Pi runs in four modes: interactive, print or JSON, RPC for process integration, and an SDK for embedding in your own apps. See openclaw/openclaw for a real-world SDK integration. +Moniker: pi +Tags: +- agent +- agentic +- ai +- chatbot +- code +- coding +- large-language-model +- llm +- programming +ReleaseNotes: |- + New Features + - Automatic first-run theme selection - pi detects the terminal background on first run and defaults to the dark or light theme. See Selecting a Theme. + - Standalone binary integrity checksums - GitHub release assets now include SHA256SUMS files for verifying standalone binary downloads. See Quickstart Install. + Added + - Added SHA256SUMS integrity files to standalone binary GitHub release assets (#5739). + - Added first-run interactive theme detection from the terminal background (#5385 by @vegarsti). + Fixed + - Fixed bash tool output collection to keep draining stdout/stderr after the child exits while descendants still write, avoiding truncated late output (#5753 by @Mearman). + - Fixed /tree help rendering to show compact wrapped controls instead of truncating them on narrow terminals (#5055). + - Fixed SIGTERM/SIGHUP interactive shutdown to keep signal handlers installed until terminal cleanup completes, preventing signal-exit from re-sending the signal and leaving the terminal in raw/Kitty keyboard mode (#5724). + - Fixed extensions documentation to clarify that pi.getActiveTools() returns active tool names while pi.getAllTools() returns tool metadata (#5729). + - Fixed question and questionnaire extension examples to wrap long prompt, option, and help text instead of truncating it (#5708 by @xl0). + - Fixed package commands such as pi list, pi install, and pi update to terminate after completing even if an extension leaves background handles open (#5687). + - Fixed pi update for pnpm global installs whose configured global-bin-dir no longer matches the active pnpm home (#5689). + - Fixed npm package specs that use ranges or tags (for example @^1.2.7) so installed package resources still load instead of being treated as mismatched exact pins (#5695). + - Fixed inherited Anthropic 1-hour prompt-cache write cost accounting to price 1-hour cache writes at 2x input instead of the 5-minute cache-write rate (#5738 by @theBucky). + - Fixed inherited GitHub Copilot Claude adaptive-thinking effort metadata to match manually checked Copilot model capabilities (#4637). + - Fixed inherited OpenCode/OpenCode Go completion model metadata to omit long-retention cache fields for routes that reject prompt_cache_retention (#5702). + - Fixed inherited overlay compositing over CJK wide characters so borders stay aligned when an overlay starts inside a full-width cell (#5297). + - Fixed inherited WezTerm inline Kitty image rendering during full redraw fallbacks so image padding rows are reserved before the placement is drawn without regressing tall-image placement (#5618, #4415). + - Fixed custom provider config so plain uppercase API key and header values remain literals instead of being treated as legacy environment references; use explicit $ENV_VAR syntax for environment variables (#5661). +ReleaseNotesUrl: https://github.com/earendil-works/pi/releases/tag/v0.79.4 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/e/EarendilWorks/pi/0.79.4/EarendilWorks.pi.locale.zh-CN.yaml b/manifests/e/EarendilWorks/pi/0.79.4/EarendilWorks.pi.locale.zh-CN.yaml new file mode 100644 index 0000000000000..8371da98f35bf --- /dev/null +++ b/manifests/e/EarendilWorks/pi/0.79.4/EarendilWorks.pi.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: EarendilWorks.pi +PackageVersion: 0.79.4 +PackageLocale: zh-CN +ShortDescription: 具备读取、Bash、编辑、写入工具的 AI 编程助手 +Description: |- + Pi 是一款轻量型终端编码工具集。无需复刻并修改 Pi 的内部代码,就能让 Pi 适配你的工作流,而非反过来让你迁就 Pi。你可以通过 TypeScript 扩展、技能模块、提示词模板和主题对 Pi 进行拓展。把你开发的扩展、技能模块、提示词模板和主题打包为 Pi 包,即可通过 npm 或 git 分享给其他用户。 + Pi 默认搭载的功能十分强大,但未内置子代理、计划模式这类功能。你可以让 Pi 生成你需要的功能,或是安装适配你工作流的第三方 Pi 包即可。 + Pi 支持四种运行模式:交互模式、打印/JSON 输出模式、用于流程集成的 RPC 模式,以及可嵌入你自有应用的 SDK 模式。实际的 SDK 集成案例可参考 openclaw/openclaw 项目。 +Tags: +- 人工智能 +- 代码 +- 大语言模型 +- 智能体 +- 编程 +- 聊天机器人 +- 自主智能 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/e/EarendilWorks/pi/0.79.4/EarendilWorks.pi.yaml b/manifests/e/EarendilWorks/pi/0.79.4/EarendilWorks.pi.yaml new file mode 100644 index 0000000000000..b46eecd607388 --- /dev/null +++ b/manifests/e/EarendilWorks/pi/0.79.4/EarendilWorks.pi.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: EarendilWorks.pi +PackageVersion: 0.79.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/e/EclipseFoundation/SUMO/Extra/1.27.0/EclipseFoundation.SUMO.Extra.installer.yaml b/manifests/e/EclipseFoundation/SUMO/Extra/1.27.0/EclipseFoundation.SUMO.Extra.installer.yaml index 67c6d684c4c54..65b9e5ccf9c54 100644 --- a/manifests/e/EclipseFoundation/SUMO/Extra/1.27.0/EclipseFoundation.SUMO.Extra.installer.yaml +++ b/manifests/e/EclipseFoundation/SUMO/Extra/1.27.0/EclipseFoundation.SUMO.Extra.installer.yaml @@ -1,28 +1,30 @@ -# Created with komac v2.16.0 +# Created by Anthelion using komac v2.16.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: EclipseFoundation.SUMO.Extra PackageVersion: 1.27.0 -InstallerLocale: en-US InstallerType: wix -Scope: user +Scope: machine InstallModes: - interactive +- silent +- silentWithProgress +InstallerSwitches: + InstallLocation: INSTALLDIR="" UpgradeBehavior: install FileExtensions: +- csv +- osm +- py - sumocfg +- xml ProductCode: '{9C95BF51-2832-4040-835C-BE44A9724139}' ReleaseDate: 2026-05-21 AppsAndFeaturesEntries: -- DisplayName: SUMO - Publisher: Eclipse - DisplayVersion: 1.26.0.1677 +- DisplayVersion: 1.26.0.1677 ProductCode: '{9C95BF51-2832-4040-835C-BE44A9724139}' - UpgradeCode: '{A764BC4F-2B15-11E1-9E7E-028037EC0200}' -InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles(x86)%/Eclipse/Sumo' Installers: -- Architecture: x86 +- Architecture: x64 InstallerUrl: https://sumo.dlr.de/releases/1.27.0/sumo-win64extra-1.27.0.msi InstallerSha256: 4B4DB7BD22B7344BB32A255B275DD5E3653B1CF3162AE7FABF924C679F75E7B9 ManifestType: installer diff --git a/manifests/e/EclipseFoundation/SUMO/Extra/1.27.0/EclipseFoundation.SUMO.Extra.locale.en-US.yaml b/manifests/e/EclipseFoundation/SUMO/Extra/1.27.0/EclipseFoundation.SUMO.Extra.locale.en-US.yaml index 8f338420fd340..a7175e56791fb 100644 --- a/manifests/e/EclipseFoundation/SUMO/Extra/1.27.0/EclipseFoundation.SUMO.Extra.locale.en-US.yaml +++ b/manifests/e/EclipseFoundation/SUMO/Extra/1.27.0/EclipseFoundation.SUMO.Extra.locale.en-US.yaml @@ -1,33 +1,39 @@ -# Created with komac v2.16.0 +# Created by Anthelion using komac v2.16.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: EclipseFoundation.SUMO.Extra PackageVersion: 1.27.0 PackageLocale: en-US -Publisher: Eclipse Foundation +Publisher: Eclipse PublisherUrl: https://www.eclipse.org/ PublisherSupportUrl: https://github.com/eclipse/sumo/issues -Author: Eclipse -PackageName: SUMO.Extra +PrivacyUrl: https://www.eclipse.org/legal/privacy.php +Author: Eclipse Foundation +PackageName: SUMO Extra PackageUrl: https://eclipse.dev/sumo/ License: EPL-2.0 OR GPL-2.0-or-later LicenseUrl: https://www.eclipse.org/legal/epl-2.0/ Copyright: Copyright (C) German Aerospace Center (DLR) and others. ShortDescription: Eclipse SUMO is an open source, highly portable, microscopic and continuous traffic simulation package designed to handle large networks. The Extra package contains also video recording and 3D GUI. Description: |- - |- - Eclipse SUMO (Simulation of Urban MObility) is an open source, highly portable, microscopic and continuous traffic simulation package designed to handle large networks. - It allows for intermodal simulation including pedestrians and comes with a large set of tools for scenario creation. - Included with SUMO is a wealth of supporting tools which handle tasks such as route finding, visualization, network import and emission calculation. - SUMO can be enhanced with custom models and provides various APIs to remotely control the simulation. -Moniker: SUMO + Eclipse SUMO (Simulation of Urban MObility) is an open source, highly portable, microscopic and continuous traffic simulation package designed to handle large networks. + It allows for intermodal simulation including pedestrians and comes with a large set of tools for scenario creation. + Included with SUMO is a wealth of supporting tools which handle tasks such as route finding, visualization, network import and emission calculation. + SUMO can be enhanced with custom models and provides various APIs to remotely control the simulation. +Moniker: sumo-extra Tags: - c2x - network - python - simulation -- traci - traffic +- v2v - v2x +- vehicles +Documentations: +- DocumentLabel: Tutorials + DocumentUrl: https://sumo.dlr.de/docs/Tutorials/index.html +- DocumentLabel: User Documentation + DocumentUrl: https://sumo.dlr.de/docs ManifestType: defaultLocale ManifestVersion: 1.12.0 diff --git a/manifests/e/EclipseFoundation/SUMO/Extra/1.27.0/EclipseFoundation.SUMO.Extra.yaml b/manifests/e/EclipseFoundation/SUMO/Extra/1.27.0/EclipseFoundation.SUMO.Extra.yaml index 0801553c17efb..53c23691b955c 100644 --- a/manifests/e/EclipseFoundation/SUMO/Extra/1.27.0/EclipseFoundation.SUMO.Extra.yaml +++ b/manifests/e/EclipseFoundation/SUMO/Extra/1.27.0/EclipseFoundation.SUMO.Extra.yaml @@ -1,4 +1,4 @@ -# Created with komac v2.16.0 +# Created by Anthelion using komac v2.16.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: EclipseFoundation.SUMO.Extra diff --git a/manifests/e/EmoteInteractive/RemoteMouse/4.708/EmoteInteractive.RemoteMouse.installer.yaml b/manifests/e/EmoteInteractive/RemoteMouse/4.708/EmoteInteractive.RemoteMouse.installer.yaml deleted file mode 100644 index 405106a34b055..0000000000000 --- a/manifests/e/EmoteInteractive/RemoteMouse/4.708/EmoteInteractive.RemoteMouse.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Automatically updated by the winget bot at 2026/May/26 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: EmoteInteractive.RemoteMouse -PackageVersion: '4.708' -InstallerLocale: en-US -InstallerType: inno -Scope: machine -ProductCode: '{01E4BC6D-3ACC-45E1-8928-C2FF626F63F3}_is1' -ReleaseDate: 2026-02-28 -AppsAndFeaturesEntries: -- ProductCode: '{01E4BC6D-3ACC-45E1-8928-C2FF626F63F3}_is1' -ElevationRequirement: elevatesSelf -InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Remote Mouse' -InstallerSuccessCodes: -- 1 -Installers: -- Architecture: x86 - InstallerUrl: https://www.remotemouse.net/downloads/RemoteMouse.exe - InstallerSha256: B31E279290EA8ED4C3B5D94CF50B31E3EE43F4D013DDBA869418C8CDC0AED577 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/e/EmoteInteractive/RemoteMouse/4.708/EmoteInteractive.RemoteMouse.locale.en-US.yaml b/manifests/e/EmoteInteractive/RemoteMouse/4.708/EmoteInteractive.RemoteMouse.locale.en-US.yaml deleted file mode 100644 index e69fe5527e386..0000000000000 --- a/manifests/e/EmoteInteractive/RemoteMouse/4.708/EmoteInteractive.RemoteMouse.locale.en-US.yaml +++ /dev/null @@ -1,19 +0,0 @@ -# Automatically updated by the winget bot at 2026/May/26 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: EmoteInteractive.RemoteMouse -PackageVersion: '4.708' -PackageLocale: en-US -Publisher: Remote Mouse -PublisherUrl: https://www.remotemouse.net/ -PackageName: Remote Mouse -PackageUrl: https://www.remotemouse.net/ -License: Proprietary -Copyright: Remote Mouse © Copyright 2023 Emote Interactive - All Rights Reserved -ShortDescription: Turn your mobile phone or tablet into a set of wireless mouse, keyboard and trackpad. -Moniker: remotemouse -Documentations: -- DocumentLabel: FAQ - DocumentUrl: https://remotemouse.net/blog/faq/ -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/e/erictli/scratch/0.10.0/erictli.scratch.installer.yaml b/manifests/e/erictli/scratch/0.10.0/erictli.scratch.installer.yaml new file mode 100644 index 0000000000000..88493116f698e --- /dev/null +++ b/manifests/e/erictli/scratch/0.10.0/erictli.scratch.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: erictli.scratch +PackageVersion: 0.10.0 +InstallerType: nullsoft +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.EdgeWebView2Runtime +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/erictli/scratch/releases/download/v0.10.0/Scratch_0.10.0_x64-setup.exe + InstallerSha256: 9C1D7BE9E7F7D9091A8E58A56AEEE7D57CF8F344166E9CBED593E281E05674ED +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/e/erictli/scratch/0.10.0/erictli.scratch.locale.en-US.yaml b/manifests/e/erictli/scratch/0.10.0/erictli.scratch.locale.en-US.yaml new file mode 100644 index 0000000000000..96657da1f96ca --- /dev/null +++ b/manifests/e/erictli/scratch/0.10.0/erictli.scratch.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: erictli.scratch +PackageVersion: 0.10.0 +PackageLocale: en-US +Publisher: erictli +PublisherUrl: https://github.com/erictli +PublisherSupportUrl: https://github.com/erictli/scratch/issues +Author: Eric Li +PackageName: Scratch +PackageUrl: https://www.ericli.io/scratch +License: MIT +LicenseUrl: https://github.com/erictli/scratch#license +ShortDescription: A minimalist, offline-first markdown note-taking app +Description: |- + Scratch is a minimalist, offline-first markdown note-taking app built with Tauri. It's AI-friendly, keyboard-optimized, and design-centered. +ReleaseNotesUrl: https://github.com/erictli/scratch/releases/tag/v0.10.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/e/erictli/scratch/0.10.0/erictli.scratch.yaml b/manifests/e/erictli/scratch/0.10.0/erictli.scratch.yaml new file mode 100644 index 0000000000000..0938ef5e357a0 --- /dev/null +++ b/manifests/e/erictli/scratch/0.10.0/erictli.scratch.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: erictli.scratch +PackageVersion: 0.10.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/f/Filamental/Filamental/0.2.5/Filamental.Filamental.installer.yaml b/manifests/f/Filamental/Filamental/0.2.5/Filamental.Filamental.installer.yaml new file mode 100644 index 0000000000000..1c8022b79f80f --- /dev/null +++ b/manifests/f/Filamental/Filamental/0.2.5/Filamental.Filamental.installer.yaml @@ -0,0 +1,21 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Filamental.Filamental +PackageVersion: 0.2.5 +MinimumOSVersion: 10.0.17763.0 +InstallerType: nullsoft +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /S + SilentWithProgress: /S +UpgradeBehavior: install +ReleaseDate: 2026-06-09 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Scottnine/filamental/releases/download/v0.2.5/Filamental_0.2.5_x64-setup.exe + InstallerSha256: 8D694DD80CBD6AD602E0DBD5F3897AC71EA3401C97BFCEBDA8B9C1FAF57FCDBB +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/f/Filamental/Filamental/0.2.5/Filamental.Filamental.locale.en-US.yaml b/manifests/f/Filamental/Filamental/0.2.5/Filamental.Filamental.locale.en-US.yaml new file mode 100644 index 0000000000000..8689c6949b9cd --- /dev/null +++ b/manifests/f/Filamental/Filamental/0.2.5/Filamental.Filamental.locale.en-US.yaml @@ -0,0 +1,36 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Filamental.Filamental +PackageVersion: 0.2.5 +PackageLocale: en-US +Publisher: Filamental +PublisherUrl: https://filamental.space +PublisherSupportUrl: https://github.com/Scottnine/filamental/issues +Author: Scott Turnbull +PackageName: Filamental +PackageUrl: https://filamental.space +License: Proprietary +Copyright: Copyright (C) 2025 Filamental +ShortDescription: A local-first 3D knowledge graph desktop application +Description: |- + Filamental is a local-first 3D knowledge graph for Windows. Build and + navigate connected knowledge as a living visual network — nodes, edges, + and relationships rendered in interactive 3D space. Write Markdown notes + directly on nodes, attach files, filter by type, and connect Filamental + to Claude via MCP for live AI access to your vault. All data stays on + your machine as plain Markdown files. +Tags: +- graph +- knowledge +- knowledge-graph +- markdown +- notes +- productivity +- visualization +ReleaseNotes: |- + - MCP extension support for live AI vault access + - AI Integrations panel improvements + - Help content updates +ReleaseNotesUrl: https://github.com/Scottnine/filamental/releases/tag/v0.2.5 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/Filamental/Filamental/0.2.5/Filamental.Filamental.yaml b/manifests/f/Filamental/Filamental/0.2.5/Filamental.Filamental.yaml new file mode 100644 index 0000000000000..4e3b2fb8f97dc --- /dev/null +++ b/manifests/f/Filamental/Filamental/0.2.5/Filamental.Filamental.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Filamental.Filamental +PackageVersion: 0.2.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/f/FreakJS/FreakJS/0.1.0/FreakJS.FreakJS.installer.yaml b/manifests/f/FreakJS/FreakJS/0.1.0/FreakJS.FreakJS.installer.yaml new file mode 100644 index 0000000000000..0495ef86e15d8 --- /dev/null +++ b/manifests/f/FreakJS/FreakJS/0.1.0/FreakJS.FreakJS.installer.yaml @@ -0,0 +1,10 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json +PackageIdentifier: FreakJS.FreakJS +PackageVersion: 0.1.0 +Installers: + - Architecture: x64 + InstallerType: portable + InstallerUrl: https://github.com/lucas-s-santos/FreakJS/releases/download/v0.1.0/freakjs-windows-x64.exe + InstallerSha256: 3CA9E0AA0ACA82B6AEC1BF2433084A23B2465691B100B11C3F4E51683F37A565 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/f/FreakJS/FreakJS/0.1.0/FreakJS.FreakJS.locale.en-US.yaml b/manifests/f/FreakJS/FreakJS/0.1.0/FreakJS.FreakJS.locale.en-US.yaml new file mode 100644 index 0000000000000..3375261876c8a --- /dev/null +++ b/manifests/f/FreakJS/FreakJS/0.1.0/FreakJS.FreakJS.locale.en-US.yaml @@ -0,0 +1,19 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json +PackageIdentifier: FreakJS.FreakJS +PackageVersion: 0.1.0 +PackageLocale: en-US +Publisher: FreakJS +PublisherUrl: https://github.com/lucas-s-santos/FreakJS +PackageName: FreakJS +PackageUrl: https://github.com/lucas-s-santos/FreakJS +License: MIT +ShortDescription: Bun-native frontend framework - zero deps, edge-ready, free to deploy +Description: FreakJS is a minimal frontend framework built on Bun. Zero runtime npm dependencies. File-based routing. SSR plus Edge Functions. +Tags: + - bun + - frontend + - framework + - javascript + - typescript +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/FreakJS/FreakJS/0.1.0/FreakJS.FreakJS.yaml b/manifests/f/FreakJS/FreakJS/0.1.0/FreakJS.FreakJS.yaml new file mode 100644 index 0000000000000..7996312776410 --- /dev/null +++ b/manifests/f/FreakJS/FreakJS/0.1.0/FreakJS.FreakJS.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: FreakJS.FreakJS +PackageVersion: 0.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/f/flick9000/WinScript/2.18.2/flick9000.WinScript.installer.yaml b/manifests/f/flick9000/WinScript/2.18.2/flick9000.WinScript.installer.yaml new file mode 100644 index 0000000000000..947bacf32be46 --- /dev/null +++ b/manifests/f/flick9000/WinScript/2.18.2/flick9000.WinScript.installer.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: flick9000.WinScript +PackageVersion: 2.18.2 +InstallerType: nullsoft +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/flick9000/winscript/releases/download/v2.18.2/winscript-installer.exe + InstallerSha256: 995EC922CDB87CBCFED8A798E6722347D0ECBF598F38B56EE023A4AADAD0D0D7 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-06-15 diff --git a/manifests/f/flick9000/WinScript/2.18.2/flick9000.WinScript.locale.en-US.yaml b/manifests/f/flick9000/WinScript/2.18.2/flick9000.WinScript.locale.en-US.yaml new file mode 100644 index 0000000000000..cc9afdd9c339b --- /dev/null +++ b/manifests/f/flick9000/WinScript/2.18.2/flick9000.WinScript.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: flick9000.WinScript +PackageVersion: 2.18.2 +PackageLocale: en-US +Publisher: flick9000 +PublisherUrl: https://github.com/flick9000 +PublisherSupportUrl: https://github.com/flick9000/winscript/issues +PackageName: WinScript +PackageUrl: https://github.com/flick9000/winscript +License: GPL-3.0 +ShortDescription: Open-source tool to build your Windows 10/11 script from scratch. It includes debloat, privacy, performance & app installing scripts. +Tags: +- bloatware +- debloat +- debloater +- install-script +- installer-script +- optimize +- privacy +- privacy-tools +- script +- security +- security-tools +- telemetry +- tweaks +- windows +- windows-10 +- windows-11 +ReleaseNotesUrl: https://github.com/flick9000/winscript/releases/tag/v2.18.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/flick9000/WinScript/2.18.2/flick9000.WinScript.yaml b/manifests/f/flick9000/WinScript/2.18.2/flick9000.WinScript.yaml new file mode 100644 index 0000000000000..39a686ca83019 --- /dev/null +++ b/manifests/f/flick9000/WinScript/2.18.2/flick9000.WinScript.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: flick9000.WinScript +PackageVersion: 2.18.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/f/floatpane/matcha/0.42.0/floatpane.matcha.installer.yaml b/manifests/f/floatpane/matcha/0.42.0/floatpane.matcha.installer.yaml new file mode 100644 index 0000000000000..e3027404d6529 --- /dev/null +++ b/manifests/f/floatpane/matcha/0.42.0/floatpane.matcha.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: floatpane.matcha +PackageVersion: 0.42.0 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-06-15" +Installers: + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: matcha.exe + PortableCommandAlias: matcha + InstallerUrl: https://github.com/floatpane/matcha/releases/download/v0.42.0/matcha_0.42.0_windows_amd64.zip + InstallerSha256: 482c90c7e14e3a165a0f0b91dd2bd441535dd08b39d421dc26e11471fbd94a07 + UpgradeBehavior: uninstallPrevious + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: matcha.exe + PortableCommandAlias: matcha + InstallerUrl: https://github.com/floatpane/matcha/releases/download/v0.42.0/matcha_0.42.0_windows_arm64.zip + InstallerSha256: 12420d50b882e1dd289b758b096f8ac470d5f020a4565c3c43b53a1fcceed3b1 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/f/floatpane/matcha/0.42.0/floatpane.matcha.locale.en-US.yaml b/manifests/f/floatpane/matcha/0.42.0/floatpane.matcha.locale.en-US.yaml new file mode 100644 index 0000000000000..74e114e64bf55 --- /dev/null +++ b/manifests/f/floatpane/matcha/0.42.0/floatpane.matcha.locale.en-US.yaml @@ -0,0 +1,46 @@ +# 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: floatpane.matcha +PackageVersion: 0.42.0 +PackageLocale: en-US +Publisher: floatpane +PublisherUrl: https://matcha.email +PublisherSupportUrl: https://github.com/floatpane/matcha/issues +PackageName: matcha +PackageUrl: https://matcha.email +License: MIT +ShortDescription: A beautiful and functional email client for your terminal. +Description: | + A beautiful and functional email client for your terminal, built with Go and the charming Bubble Tea TUI library. + Never leave your command line to check your inbox or send an email again! +Moniker: matcha +Tags: + - email + - terminal + - tui +ReleaseNotes: | + + + ## What's Changed + ### New Features + * feat: grace period for any action by @andrinoff in https://github.com/floatpane/matcha/pull/1474 + ### Bug Fixes + * fix: keybinds working in search mode by @andrinoff in https://github.com/floatpane/matcha/pull/1469 + ### Dependencies + * chore(deps): golang.org/x/text ^ v0.38.0 by @floatpanebot in https://github.com/floatpane/matcha/pull/1459 + * chore(deps): golang.org/x/term ^ v0.44.0 by @floatpanebot in https://github.com/floatpane/matcha/pull/1458 + * chore(deps): greenmail/standalone ^ 2.1.9 by @floatpanebot in https://github.com/floatpane/matcha/pull/1465 + * chore(deps): charm.land/lipgloss/v2 ^ v2.0.4 by @floatpanebot in https://github.com/floatpane/matcha/pull/1464 + ### Continuous Integration + * ci: use plugins instead of list-plugins by @andrinoff in https://github.com/floatpane/matcha/pull/1468 + ### Chores + * chore: update flake.lock by @floatpanebot in https://github.com/floatpane/matcha/pull/1460 + * chore: sync gomod2nix.toml by @floatpanebot in https://github.com/floatpane/matcha/pull/1461 + * chore: update flake.lock by @floatpanebot in https://github.com/floatpane/matcha/pull/1470 + * chore: sync gomod2nix.toml by @floatpanebot in https://github.com/floatpane/matcha/pull/1471 + * chore: update the website by @andrinoff in https://github.com/floatpane/matcha/pull/1475 + + + **Full Changelog**: https://github.com/floatpane/matcha/compare/v0.41.1...v0.42.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/floatpane/matcha/0.42.0/floatpane.matcha.yaml b/manifests/f/floatpane/matcha/0.42.0/floatpane.matcha.yaml new file mode 100644 index 0000000000000..fdb3c3c237b00 --- /dev/null +++ b/manifests/f/floatpane/matcha/0.42.0/floatpane.matcha.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: floatpane.matcha +PackageVersion: 0.42.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/GeminiLight/MindOS/0.4.4/GeminiLight.MindOS.installer.yaml b/manifests/g/GeminiLight/MindOS/0.4.4/GeminiLight.MindOS.installer.yaml new file mode 100644 index 0000000000000..7e441379790ed --- /dev/null +++ b/manifests/g/GeminiLight/MindOS/0.4.4/GeminiLight.MindOS.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: GeminiLight.MindOS +PackageVersion: 0.4.4 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 15ac2c33-c2d1-5a44-9a65-f7cea47859e3 +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/GeminiLight/MindOS/releases/download/desktop-v0.4.4/MindOS-Setup-0.4.4-arm64.exe + InstallerSha256: CC31399D611B644852E890CE34AD9BA3CE5FD09F091D62A83A535FC388F7EC9D + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/GeminiLight/MindOS/releases/download/desktop-v0.4.4/MindOS-Setup-0.4.4-arm64.exe + InstallerSha256: CC31399D611B644852E890CE34AD9BA3CE5FD09F091D62A83A535FC388F7EC9D + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/GeminiLight/MindOS/0.4.4/GeminiLight.MindOS.locale.en-US.yaml b/manifests/g/GeminiLight/MindOS/0.4.4/GeminiLight.MindOS.locale.en-US.yaml new file mode 100644 index 0000000000000..25f410f0b684f --- /dev/null +++ b/manifests/g/GeminiLight/MindOS/0.4.4/GeminiLight.MindOS.locale.en-US.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GeminiLight.MindOS +PackageVersion: 0.4.4 +PackageLocale: en-US +Publisher: MindOS Team +PublisherUrl: https://mindos.you/ +PublisherSupportUrl: https://github.com/GeminiLight/MindOS/issues +PackageName: MindOS +PackageUrl: https://mindos.you/ +License: MIT +LicenseUrl: https://github.com/GeminiLight/MindOS/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 GeminiLight +ShortDescription: MindOS is where you think, and where your AI agents act — a local-first knowledge base shared between you and every AI you use. Share your brain with every AI — every thought grows. +Tags: +- ai +- artificial-intelligence +- artificialintelligence +- chatbot +- large-language-model +- llm +ReleaseNotes: |- + Downloads + Platform Device / CPU Recommended file Download + macOS Apple Silicon (M1/M2/M3/M4) MindOS-0.4.4-arm64.dmg Download DMG + macOS Intel MindOS-0.4.4.dmg Download DMG + Windows x64 MindOS-Setup-0.4.4.exe Download EXE + Windows ARM64 MindOS-Setup-0.4.4-arm64.exe Download EXE + Linux x64 AppImage MindOS-0.4.4.AppImage Download AppImage + Linux Debian / Ubuntu x64 mindos-desktop_0.4.4_amd64.deb Download DEB + What's included + Component Version + MindOS Desktop v0.4.4 + Bundled MindOS Core v1.1.21 + Notes + The .zip, .yml, .yaml, and .blockmap files are used by the auto-updater. Most users should download one of the installers above. + Changelog + Full changelog: https://github.com/GeminiLight/MindOS/compare/desktop-v0.4.3...desktop-v0.4.4 +ReleaseNotesUrl: https://github.com/GeminiLight/MindOS/releases/tag/desktop-v0.4.4 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GeminiLight/MindOS/0.4.4/GeminiLight.MindOS.locale.zh-CN.yaml b/manifests/g/GeminiLight/MindOS/0.4.4/GeminiLight.MindOS.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f9c582f06282f --- /dev/null +++ b/manifests/g/GeminiLight/MindOS/0.4.4/GeminiLight.MindOS.locale.zh-CN.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: GeminiLight.MindOS +PackageVersion: 0.4.4 +PackageLocale: zh-CN +ShortDescription: MindOS 是你思考的地方,也是 AI Agent 行动的起点——一个你和所有 AI 共享的本地知识库。每次思考,都在生长。 +Tags: +- 人工智能 +- 大语言模型 +- 聊天机器人 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GeminiLight/MindOS/0.4.4/GeminiLight.MindOS.yaml b/manifests/g/GeminiLight/MindOS/0.4.4/GeminiLight.MindOS.yaml new file mode 100644 index 0000000000000..c7ad7b2154bdd --- /dev/null +++ b/manifests/g/GeminiLight/MindOS/0.4.4/GeminiLight.MindOS.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: GeminiLight.MindOS +PackageVersion: 0.4.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/h/HalkyLauncher/HalkyLauncher/1.0.1/HalkyLauncher.HalkyLauncher.installer.yaml b/manifests/h/HalkyLauncher/HalkyLauncher/1.0.1/HalkyLauncher.HalkyLauncher.installer.yaml new file mode 100644 index 0000000000000..75cd2f85cd3da --- /dev/null +++ b/manifests/h/HalkyLauncher/HalkyLauncher/1.0.1/HalkyLauncher.HalkyLauncher.installer.yaml @@ -0,0 +1,30 @@ +# 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: HalkyLauncher.HalkyLauncher +PackageVersion: 1.0.1 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /S + SilentWithProgress: /S +ProductCode: HalkyLauncher +ReleaseDate: 2026-06-15 +AppsAndFeaturesEntries: +- Publisher: Halky Launcher Contributors + ProductCode: HalkyLauncher +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\Programs\HalkyLauncher' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/oleksandr1811/HalkyLauncher/releases/download/v1.0.1/HalkyLauncher-Windows-MSVC-Setup-v1.0.1.exe + InstallerSha256: B72A07330DB09F46F5AF6A9D8F5C21D20ABE54A98DF2A1EA5CC38ECB19FD0D65 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/HalkyLauncher/HalkyLauncher/1.0.1/HalkyLauncher.HalkyLauncher.locale.en-US.yaml b/manifests/h/HalkyLauncher/HalkyLauncher/1.0.1/HalkyLauncher.HalkyLauncher.locale.en-US.yaml new file mode 100644 index 0000000000000..f0efbd062710b --- /dev/null +++ b/manifests/h/HalkyLauncher/HalkyLauncher/1.0.1/HalkyLauncher.HalkyLauncher.locale.en-US.yaml @@ -0,0 +1,23 @@ +# 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: HalkyLauncher.HalkyLauncher +PackageVersion: 1.0.1 +PackageLocale: en-US +Publisher: HalkyLauncher +PublisherUrl: https://github.com/oleksandr1811/HalkyLauncher +PublisherSupportUrl: https://github.com/oleksandr1811/HalkyLauncher/issues +PackageName: Halky Launcher +PackageUrl: https://github.com/oleksandr1811/HalkyLauncher +License: GPL-3.0 +LicenseUrl: https://github.com/oleksandr1811/HalkyLauncher/blob/HEAD/LICENSE +ShortDescription: A Minecraft launcher based on Prism Launcher with a redesigned UI +Description: Halky Launcher is a custom Minecraft launcher based on Prism Launcher with a modern redesigned interface. +Tags: +- game +- launcher +- minecraft +ReleaseNotes: Bug fix and UI improvements +ReleaseNotesUrl: https://github.com/oleksandr1811/HalkyLauncher/releases/tag/v1.0.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/HalkyLauncher/HalkyLauncher/1.0.1/HalkyLauncher.HalkyLauncher.yaml b/manifests/h/HalkyLauncher/HalkyLauncher/1.0.1/HalkyLauncher.HalkyLauncher.yaml new file mode 100644 index 0000000000000..0525daa404845 --- /dev/null +++ b/manifests/h/HalkyLauncher/HalkyLauncher/1.0.1/HalkyLauncher.HalkyLauncher.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: HalkyLauncher.HalkyLauncher +PackageVersion: 1.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/1.1.5/Hitalin.NoteDeck.installer.yaml b/manifests/h/Hitalin/NoteDeck/1.1.5/Hitalin.NoteDeck.installer.yaml new file mode 100644 index 0000000000000..0ee615caefae0 --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/1.1.5/Hitalin.NoteDeck.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: Hitalin.NoteDeck +PackageVersion: 1.1.5 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +ProductCode: NoteDeck +ReleaseDate: 2026-06-15 +AppsAndFeaturesEntries: +- Publisher: notedeck + ProductCode: NoteDeck +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\NoteDeck' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/hitalin/notedeck/releases/download/v1.1.5/NoteDeck-1.1.5-windows-x64-setup.exe + InstallerSha256: EB58ED56D71DA27D4D7B73D2FEBA41E703046F14BC7EC7799DC21D8304374D2E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/1.1.5/Hitalin.NoteDeck.locale.en-US.yaml b/manifests/h/Hitalin/NoteDeck/1.1.5/Hitalin.NoteDeck.locale.en-US.yaml new file mode 100644 index 0000000000000..6c30773cc011f --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/1.1.5/Hitalin.NoteDeck.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Hitalin.NoteDeck +PackageVersion: 1.1.5 +PackageLocale: en-US +Publisher: hitalin +PublisherUrl: https://github.com/hitalin +PackageName: NoteDeck +PackageUrl: https://github.com/hitalin/notedeck +License: AGPL-3.0 +LicenseUrl: https://github.com/hitalin/notedeck/blob/main/LICENSE +ShortDescription: A multi-platform deck client for Misskey and its forks +Description: |- + NoteDeck is a deck client for Misskey and its forks. + It provides efficient multi-server timeline viewing with features like local full-text search, + AI integration, and localhost API that are only possible with a native desktop application. +Tags: +- deck +- fediverse +- misskey +- social-media +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/1.1.5/Hitalin.NoteDeck.locale.ja-JP.yaml b/manifests/h/Hitalin/NoteDeck/1.1.5/Hitalin.NoteDeck.locale.ja-JP.yaml new file mode 100644 index 0000000000000..db5e8cafd7c45 --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/1.1.5/Hitalin.NoteDeck.locale.ja-JP.yaml @@ -0,0 +1,31 @@ +# 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: Hitalin.NoteDeck +PackageVersion: 1.1.5 +PackageLocale: ja-JP +Publisher: hitalin +PublisherUrl: https://github.com/hitalin +PublisherSupportUrl: https://github.com/hitalin/notedeck/issues +PackageName: NoteDeck +PackageUrl: https://github.com/hitalin/notedeck +License: AGPL-3.0 +LicenseUrl: https://github.com/hitalin/notedeck/blob/HEAD/LICENSE +ShortDescription: Misskey とそのフォークに対応したマルチプラットフォーム対応デッキクライアント +Description: |- + NoteDeck は Misskey とそのフォークに対応したデッキクライアントです。 + 複数サーバーのタイムラインを効率よく閲覧でき、ローカル全文検索、AI 統合、localhost API など + デスクトップネイティブならではの機能を備えています。 +Tags: +- deck +- fediverse +- misskey +- social-media +ReleaseNotes: |- + What's Changed + Other Changes + - Release v1.1.5 by @hitalin in #633 + Full Changelog: v1.1.4...v1.1.5 +ReleaseNotesUrl: https://github.com/hitalin/notedeck/releases/tag/v1.1.5 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hitalin/NoteDeck/1.1.5/Hitalin.NoteDeck.yaml b/manifests/h/Hitalin/NoteDeck/1.1.5/Hitalin.NoteDeck.yaml new file mode 100644 index 0000000000000..a6d2eb843f704 --- /dev/null +++ b/manifests/h/Hitalin/NoteDeck/1.1.5/Hitalin.NoteDeck.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: Hitalin.NoteDeck +PackageVersion: 1.1.5 +DefaultLocale: ja-JP +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/h/HoangLong/DiskInfo/3.3/HoangLong.DiskInfo.installer.yaml b/manifests/h/HoangLong/DiskInfo/3.3/HoangLong.DiskInfo.installer.yaml new file mode 100644 index 0000000000000..751c56b37ec1a --- /dev/null +++ b/manifests/h/HoangLong/DiskInfo/3.3/HoangLong.DiskInfo.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: HoangLong.DiskInfo +PackageVersion: "3.3" +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: DiskInfo.exe + PortableCommandAlias: diskinfo +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Hoang-Long2012/DiskInfo/releases/download/3.3/DiskInfo.zip + InstallerSha256: B97878253DCDF64B049DA0D338FCCE197B98C0C4C2CE5C6369519605D274EA2A +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-06-15 diff --git a/manifests/h/HoangLong/DiskInfo/3.3/HoangLong.DiskInfo.locale.en-US.yaml b/manifests/h/HoangLong/DiskInfo/3.3/HoangLong.DiskInfo.locale.en-US.yaml new file mode 100644 index 0000000000000..b680c74f59799 --- /dev/null +++ b/manifests/h/HoangLong/DiskInfo/3.3/HoangLong.DiskInfo.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: HoangLong.DiskInfo +PackageVersion: "3.3" +PackageLocale: en-US +Publisher: Hoàng Long +PublisherUrl: https://github.com/Hoang-Long2012 +PublisherSupportUrl: https://github.com/Hoang-Long2012/DiskInfo/issues +PackageName: DiskInfo +PackageUrl: https://github.com/Hoang-Long2012/DiskInfo +License: MIT +LicenseUrl: https://github.com/Hoang-Long2012/DiskInfo/blob/HEAD/LICENSE +ShortDescription: A small utility to check basic information about your drive. +Tags: +- cli +- disk +- disk-usage +- drive +- info +- storage +- tool +- utility +- windows +ReleaseNotesUrl: https://github.com/Hoang-Long2012/DiskInfo/blob/main/CHANGELOG.md +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/Hoang-Long2012/DiskInfo/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/HoangLong/DiskInfo/3.3/HoangLong.DiskInfo.yaml b/manifests/h/HoangLong/DiskInfo/3.3/HoangLong.DiskInfo.yaml new file mode 100644 index 0000000000000..66259f21e0430 --- /dev/null +++ b/manifests/h/HoangLong/DiskInfo/3.3/HoangLong.DiskInfo.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: HoangLong.DiskInfo +PackageVersion: "3.3" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/Intel/OpenVINOToolkit/2026/2/0/2026.2.0.0/Intel.OpenVINOToolkit.2026.2.0.installer.yaml b/manifests/i/Intel/OpenVINOToolkit/2026/2/0/2026.2.0.0/Intel.OpenVINOToolkit.2026.2.0.installer.yaml new file mode 100644 index 0000000000000..3e8c411e064a4 --- /dev/null +++ b/manifests/i/Intel/OpenVINOToolkit/2026/2/0/2026.2.0.0/Intel.OpenVINOToolkit.2026.2.0.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: Intel.OpenVINOToolkit.2026.2.0 +PackageVersion: 2026.2.0.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: msix +PackageFamilyName: IntelCorporation.OpenVINOToolkit.2026.2.0_aqcv7fbxf4wm4 +Installers: +- Architecture: x64 + InstallerUrl: https://storage.openvinotoolkit.org/repositories/openvino/winget/2026.2.0.0/openvino_toolkit_2026.2.0.0.msix + InstallerSha256: 7E77F6457DCC1FDBEED40CED1164369789E6F185C6E01C092D1AB106C9B75006 + SignatureSha256: B6FECC07FC68AEC0F414AB89A14FB4175D36449D5A88C82E2523F5F3DCB5A2A2 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/Intel/OpenVINOToolkit/2026/2/0/2026.2.0.0/Intel.OpenVINOToolkit.2026.2.0.locale.en-US.yaml b/manifests/i/Intel/OpenVINOToolkit/2026/2/0/2026.2.0.0/Intel.OpenVINOToolkit.2026.2.0.locale.en-US.yaml new file mode 100644 index 0000000000000..af7f1084153e9 --- /dev/null +++ b/manifests/i/Intel/OpenVINOToolkit/2026/2/0/2026.2.0.0/Intel.OpenVINOToolkit.2026.2.0.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Intel.OpenVINOToolkit.2026.2.0 +PackageVersion: 2026.2.0.0 +PackageLocale: en-US +Publisher: Intel Corporation +# PublisherUrl: https://www.intel.com/content/www/us/en/developer/tools/openvino-toolkit/overview.html +# PublisherSupportUrl: https://community.intel.com/t5/Intel-Distribution-of-OpenVINO/bd-p/distribution-openvino-toolkit +PackageName: Intel® OpenVINO Toolkit +PackageUrl: https://docs.openvino.ai/2026/get-started/install-openvino.html +License: Apache 2.0 +LicenseUrl: https://github.com/openvinotoolkit/openvino/blob/master/LICENSE +Copyright: © Intel Corporation +# CopyrightUrl: https://www.intel.com/content/www/us/en/legal/terms-of-use.html +ShortDescription: OpenVINO™ is an open source toolkit for optimizing and deploying AI inference +Description: |- + OpenVINO™ is an open-source toolkit for deploying performant AI solutions in the cloud, on-prem, and on the edge alike. + Develop your applications with both generative and conventional AI models, coming from the most popular model frameworks. + Convert, optimize, and run inference utilizing the full potential of Intel® hardware. +ReleaseNotesUrl: https://docs.openvino.ai/2026/about-openvino/release-notes-openvino.html +Documentations: +- DocumentUrl: https://docs.openvino.ai/2026 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/Intel/OpenVINOToolkit/2026/2/0/2026.2.0.0/Intel.OpenVINOToolkit.2026.2.0.yaml b/manifests/i/Intel/OpenVINOToolkit/2026/2/0/2026.2.0.0/Intel.OpenVINOToolkit.2026.2.0.yaml new file mode 100644 index 0000000000000..47f4fcacc4dd1 --- /dev/null +++ b/manifests/i/Intel/OpenVINOToolkit/2026/2/0/2026.2.0.0/Intel.OpenVINOToolkit.2026.2.0.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: Intel.OpenVINOToolkit.2026.2.0 +PackageVersion: 2026.2.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/QodanaCLI/2026.1.3/JetBrains.QodanaCLI.installer.yaml b/manifests/j/JetBrains/QodanaCLI/2026.1.3/JetBrains.QodanaCLI.installer.yaml new file mode 100644 index 0000000000000..740f639084c79 --- /dev/null +++ b/manifests/j/JetBrains/QodanaCLI/2026.1.3/JetBrains.QodanaCLI.installer.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: JetBrains.QodanaCLI +PackageVersion: 2026.1.3 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: qodana.exe +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/JetBrains/qodana-cli/releases/download/v2026.1.3/qodana_windows_x86_64.zip + InstallerSha256: EFFB5A9B7AB95EB2C51C838E208F6F2C59B5FA3FF6325D044184A716510EE182 +- Architecture: arm64 + InstallerUrl: https://github.com/JetBrains/qodana-cli/releases/download/v2026.1.3/qodana_windows_arm64.zip + InstallerSha256: A6795D2BBB665A3CD871BFF2558AEFC1A8C32F552527B738A7A5B8BB9ABE0E77 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/j/JetBrains/QodanaCLI/2026.1.3/JetBrains.QodanaCLI.locale.en-US.yaml b/manifests/j/JetBrains/QodanaCLI/2026.1.3/JetBrains.QodanaCLI.locale.en-US.yaml new file mode 100644 index 0000000000000..7670b160bcc48 --- /dev/null +++ b/manifests/j/JetBrains/QodanaCLI/2026.1.3/JetBrains.QodanaCLI.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: JetBrains.QodanaCLI +PackageVersion: 2026.1.3 +PackageLocale: en-US +Publisher: JetBrains s.r.o. +PublisherUrl: https://www.jetbrains.com/ +PublisherSupportUrl: https://www.jetbrains.com/help/qodana/getting-started.html +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy +Author: JetBrains s.r.o. +PackageName: Qodana CLI +PackageUrl: https://www.jetbrains.com/qodana +License: Apache-2.0 +LicenseUrl: https://github.com/JetBrains/qodana-cli/blob/HEAD/LICENSE +Copyright: Copyright © JetBrains s.r.o. +ShortDescription: Qodana is a simple cross-platform command-line tool to run Qodana linters anywhere with minimum effort required. +Moniker: qodana +Tags: +- code-quality +- code-scanning +- jetbrains +- qodana +ReleaseNotes: "Changelog\n- :arrow_up: QD-12983: Bump the dependencies group (#968) (#969)\nInstall\n💡 The Qodana CLI is distributed and run as a binary. The Qodana linters with inspections are Docker Images or, starting from version 2023.2, your local/downloaded by CLI IDE installations (experimental support).\n- To run Qodana with a container (the default mode in CLI), you must have Docker or Podman installed and running locally to support this: https://www.docker.com/get-started, and, if you are using Linux, you should be able to run Docker from the current (non-root) user (https://docs.docker.com/engine/install/linux-postinstall/#manage-docker-as-a-non-root-user)\n- To run Qodana without a container, you must have the IDE installed locally to provide the IDE installation path to the CLI or specify the product code, and CLI will try to download the IDE automatically (experimental support).\n\nmacOS and Linux\nInstall with Homebrew (recommended)\nbrew install jetbrains/utils/qodana\n\nInstall with our installer\ncurl -fsSL https://jb.gg/qodana-cli/install | bash\n\nAlso, you can install nightly or any other version (e.g. v2023.2.9) the following way:\ncurl -fsSL https://jb.gg/qodana-cli/install | bash -s -- nightly\n\nWindows\nInstall with Windows Package Manager (recommended)\nwinget install -e --id JetBrains.QodanaCLI\n\nInstall with Chocolatey\nchoco install qodana\n\nInstall with Scoop\nscoop bucket add jetbrains \nscoop install qodana\n\nAnywhere else\nAlternatively, you can install the latest binary (or the apt/rpm/deb/archlinux package) from this page.Update\nUpdate to the latest version depends on how you choose to install qodana on your machine.Update with Homebrew\nbrew upgrade qodana\n\nUpdate with Scoop\nscoop update qodana\n\nUpdate with Chocolatey\nchoco upgrade qodana\n\nUpdate on Linux and macOS with the installer script\ncurl -fsSL https://jb.gg/qodana-cli/install | bash\n\nAlternatively, you can grab the latest binary (or the apt/rpm/deb package) from this page." +ReleaseNotesUrl: https://github.com/JetBrains/qodana-cli/releases/tag/v2026.1.3 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/j/JetBrains/QodanaCLI/2026.1.3/JetBrains.QodanaCLI.yaml b/manifests/j/JetBrains/QodanaCLI/2026.1.3/JetBrains.QodanaCLI.yaml new file mode 100644 index 0000000000000..6a7d663599037 --- /dev/null +++ b/manifests/j/JetBrains/QodanaCLI/2026.1.3/JetBrains.QodanaCLI.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: JetBrains.QodanaCLI +PackageVersion: 2026.1.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/j/JetBrains/dotUltimate/2026.1.3/JetBrains.dotUltimate.installer.yaml b/manifests/j/JetBrains/dotUltimate/2026.1.3/JetBrains.dotUltimate.installer.yaml new file mode 100644 index 0000000000000..98b1f950775a4 --- /dev/null +++ b/manifests/j/JetBrains/dotUltimate/2026.1.3/JetBrains.dotUltimate.installer.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: JetBrains.dotUltimate +PackageVersion: 2026.1.3 +InstallerType: exe +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /Silent=True + SilentWithProgress: /Silent=True + Log: /LogFile="" +UpgradeBehavior: install +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.jetbrains.com/resharper/dotUltimate.2026.1.3/JetBrains.dotUltimate.2026.1.3.exe + InstallerSha256: E06592BD075D660BADBE2B649F3570AFF08D0994E45F43697EC76408454B20DE + InstallerSwitches: + Custom: /SpecificProductNames=* /VsVersion=* +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/resharper/dotUltimate.2026.1.3/JetBrains.dotUltimate.2026.1.3.exe + InstallerSha256: E06592BD075D660BADBE2B649F3570AFF08D0994E45F43697EC76408454B20DE + InstallerSwitches: + Custom: /SpecificProductNames=* /VsVersion=* /PerMachine=True + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/dotUltimate/2026.1.3/JetBrains.dotUltimate.locale.en-US.yaml b/manifests/j/JetBrains/dotUltimate/2026.1.3/JetBrains.dotUltimate.locale.en-US.yaml new file mode 100644 index 0000000000000..5fbd1c2ee3d7c --- /dev/null +++ b/manifests/j/JetBrains/dotUltimate/2026.1.3/JetBrains.dotUltimate.locale.en-US.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: JetBrains.dotUltimate +PackageVersion: 2026.1.3 +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 dotUltimate +PackageUrl: https://www.jetbrains.com/dotnet/ +License: Proprietary +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2026 JetBrains s.r.o. +ShortDescription: All .NET tools, ReSharper C++, and JetBrains Rider, together in one pack +Moniker: dotultimate +Tags: +- .net +- c# +- csharp +- develop +- development +- dotcover +- dotmemory +- dotnet +- dotpeek +- dottrace +- resharper +- rider +ReleaseNotes: |- + ReSharper 2026.1.3 + This update includes a broad set of bug fixes and stability improvements for ReSharper and the .NET Tools. + For the complete list of issues resolved in this build, please refer to our release notes. +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/DOTNET-A-351/ReSharper-Tools-2026.1.3-release-notes +PurchaseUrl: https://www.jetbrains.com/store/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/dotUltimate/2026.1.3/JetBrains.dotUltimate.locale.zh-CN.yaml b/manifests/j/JetBrains/dotUltimate/2026.1.3/JetBrains.dotUltimate.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b0bf05138e7b9 --- /dev/null +++ b/manifests/j/JetBrains/dotUltimate/2026.1.3/JetBrains.dotUltimate.locale.zh-CN.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: JetBrains.dotUltimate +PackageVersion: 2026.1.3 +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 dotUltimate +PackageUrl: https://www.jetbrains.com/zh-cn/dotnet/ +License: 专有软件 +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2026 JetBrains s.r.o. +ShortDescription: 在一个包中提供所有 .NET 工具、ReSharper C ++ 和 JetBrains Rider +Tags: +- .net +- c# +- csharp +- dotcover +- dotmemory +- dotnet +- dotpeek +- dottrace +- resharper +- rider +- 开发 +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/DOTNET-A-351/ReSharper-Tools-2026.1.3-release-notes +PurchaseUrl: https://www.jetbrains.com/zh-cn/store/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/j/JetBrains/dotUltimate/2026.1.3/JetBrains.dotUltimate.yaml b/manifests/j/JetBrains/dotUltimate/2026.1.3/JetBrains.dotUltimate.yaml new file mode 100644 index 0000000000000..b4dce7c02bb4f --- /dev/null +++ b/manifests/j/JetBrains/dotUltimate/2026.1.3/JetBrains.dotUltimate.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.dotUltimate +PackageVersion: 2026.1.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/j/janosmiko/lfk/0.14.8/janosmiko.lfk.installer.yaml b/manifests/j/janosmiko/lfk/0.14.8/janosmiko.lfk.installer.yaml new file mode 100644 index 0000000000000..86a156b4e207a --- /dev/null +++ b/manifests/j/janosmiko/lfk/0.14.8/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.14.8 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2026-06-15" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: lfk.exe + PortableCommandAlias: lfk + InstallerUrl: https://github.com/janosmiko/lfk/releases/download/v0.14.8/lfk_0.14.8_windows_arm64.zip + InstallerSha256: 9bb9e9f23ccc7f1c5c91d27dd53820a225afe31b0f71ad0cc7cc20b9420d5520 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: lfk.exe + PortableCommandAlias: lfk + InstallerUrl: https://github.com/janosmiko/lfk/releases/download/v0.14.8/lfk_0.14.8_windows_amd64.zip + InstallerSha256: 296a5b85f825256c8c2cd38f4e4d6faa0bb9fc0544c8fde8a1eef576bb472dd8 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/janosmiko/lfk/0.14.8/janosmiko.lfk.locale.en-US.yaml b/manifests/j/janosmiko/lfk/0.14.8/janosmiko.lfk.locale.en-US.yaml new file mode 100644 index 0000000000000..1465b38494650 --- /dev/null +++ b/manifests/j/janosmiko/lfk/0.14.8/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.14.8 +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.14.8 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/janosmiko/lfk/0.14.8/janosmiko.lfk.yaml b/manifests/j/janosmiko/lfk/0.14.8/janosmiko.lfk.yaml new file mode 100644 index 0000000000000..b5410865ac0fc --- /dev/null +++ b/manifests/j/janosmiko/lfk/0.14.8/janosmiko.lfk.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json +PackageIdentifier: janosmiko.lfk +PackageVersion: 0.14.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/k/KDE/KBruch/26.07.70/KDE.KBruch.installer.yaml b/manifests/k/KDE/KBruch/26.07.70/KDE.KBruch.installer.yaml index ee3aad2a1ebfe..8bbe2a6743c8d 100644 --- a/manifests/k/KDE/KBruch/26.07.70/KDE.KBruch.installer.yaml +++ b/manifests/k/KDE/KBruch/26.07.70/KDE.KBruch.installer.yaml @@ -9,14 +9,14 @@ ProductCode: kbruch Installers: - Architecture: x64 Scope: user - InstallerUrl: https://cdn.kde.org/ci-builds/education/kbruch/master/windows/kbruch-master-853-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 86C7D2041E88FF5966ECD84E6A418D9E483DD8548BDCEE897E0D7E9C28BE00D9 + InstallerUrl: https://cdn.kde.org/ci-builds/education/kbruch/master/windows/kbruch-master-857-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 4FC1DA218C41FB1EBBAD1C37D06DEB7D4B2464314FD0EC65DDE42415FFA42EC3 InstallerSwitches: Custom: /CurrentUser - Architecture: x64 Scope: machine - InstallerUrl: https://cdn.kde.org/ci-builds/education/kbruch/master/windows/kbruch-master-853-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 86C7D2041E88FF5966ECD84E6A418D9E483DD8548BDCEE897E0D7E9C28BE00D9 + InstallerUrl: https://cdn.kde.org/ci-builds/education/kbruch/master/windows/kbruch-master-857-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 4FC1DA218C41FB1EBBAD1C37D06DEB7D4B2464314FD0EC65DDE42415FFA42EC3 InstallerSwitches: Custom: /AllUsers ManifestType: installer diff --git a/manifests/k/KDE/KDEConnect/AppX/26.402.6277.0/KDE.KDEConnect.AppX.installer.yaml b/manifests/k/KDE/KDEConnect/AppX/26.402.6289.0/KDE.KDEConnect.AppX.installer.yaml similarity index 76% rename from manifests/k/KDE/KDEConnect/AppX/26.402.6277.0/KDE.KDEConnect.AppX.installer.yaml rename to manifests/k/KDE/KDEConnect/AppX/26.402.6289.0/KDE.KDEConnect.AppX.installer.yaml index fe0622e29e331..46a253b33dfa0 100644 --- a/manifests/k/KDE/KDEConnect/AppX/26.402.6277.0/KDE.KDEConnect.AppX.installer.yaml +++ b/manifests/k/KDE/KDEConnect/AppX/26.402.6289.0/KDE.KDEConnect.AppX.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: KDE.KDEConnect.AppX -PackageVersion: 26.402.6277.0 +PackageVersion: 26.402.6289.0 Platform: - Windows.Desktop UpgradeBehavior: install @@ -10,9 +10,9 @@ Installers: - MinimumOSVersion: 10.0.14316.0 Architecture: x64 InstallerType: appx - InstallerUrl: https://cdn.kde.org/ci-builds/network/kdeconnect-kde/release-26.04/windows/kdeconnect-kde-release_26.04-6277-windows-cl-msvc2022-x86_64-sideload.appx - InstallerSha256: 43380C8E000FE5F1B2FAFEA995303B193817EC5DD827DBEBB6E5F19E5D661FEA - SignatureSha256: 7855DEDF7CD16E1B9B530D7B42F941A35C98F15059F51207FC5C700F33290722 + InstallerUrl: https://cdn.kde.org/ci-builds/network/kdeconnect-kde/release-26.04/windows/kdeconnect-kde-release_26.04-6289-windows-cl-msvc2022-x86_64-sideload.appx + InstallerSha256: 8E46577B3A3F554DB391B56AE604BCFF38D53163D702D8DEFE664D5D166ECD78 + SignatureSha256: 10B39F509E10845D3D28FA48BC73C3A65E18675A54A863FF8F6F28E0D894AD9E PackageFamilyName: KDEe.V.KDEConnect_5b9q37dtznz5e Capabilities: - globalMediaControl @@ -31,8 +31,8 @@ Installers: - RelativeFilePath: kdeconnect-sms.exe - RelativeFilePath: kioworker.exe - RelativeFilePath: snoretoast.exe - InstallerUrl: https://cdn.kde.org/ci-builds/network/kdeconnect-kde/release-26.04/windows/kdeconnect-kde-release_26.04-6277-windows-cl-msvc2022-x86_64-sideload.appx?_ - InstallerSha256: 43380C8E000FE5F1B2FAFEA995303B193817EC5DD827DBEBB6E5F19E5D661FEA + InstallerUrl: https://cdn.kde.org/ci-builds/network/kdeconnect-kde/release-26.04/windows/kdeconnect-kde-release_26.04-6289-windows-cl-msvc2022-x86_64-sideload.appx?_ + InstallerSha256: 8E46577B3A3F554DB391B56AE604BCFF38D53163D702D8DEFE664D5D166ECD78 AppsAndFeaturesEntries: - DisplayName: KDE Connect (Portable) ArchiveBinariesDependOnPath: true diff --git a/manifests/k/KDE/KDEConnect/AppX/26.402.6277.0/KDE.KDEConnect.AppX.locale.en-US.yaml b/manifests/k/KDE/KDEConnect/AppX/26.402.6289.0/KDE.KDEConnect.AppX.locale.en-US.yaml similarity index 94% rename from manifests/k/KDE/KDEConnect/AppX/26.402.6277.0/KDE.KDEConnect.AppX.locale.en-US.yaml rename to manifests/k/KDE/KDEConnect/AppX/26.402.6289.0/KDE.KDEConnect.AppX.locale.en-US.yaml index 436a357b3470a..5c3844de2194b 100644 --- a/manifests/k/KDE/KDEConnect/AppX/26.402.6277.0/KDE.KDEConnect.AppX.locale.en-US.yaml +++ b/manifests/k/KDE/KDEConnect/AppX/26.402.6289.0/KDE.KDEConnect.AppX.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: KDE.KDEConnect.AppX -PackageVersion: 26.402.6277.0 +PackageVersion: 26.402.6289.0 PackageLocale: en-US Publisher: KDE e.V. PublisherUrl: https://kde.org/ @@ -12,7 +12,6 @@ Author: KDE e.V. PackageName: KDE Connect (AppX / Portable) PackageUrl: https://kdeconnect.kde.org/ License: GPL-2.0-or-later -# LicenseUrl: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html Copyright: (c) 2026, Aleix Pol Gonzalez ShortDescription: Connect various devices (Windows, Linux, Android, etc.) to transfer files, share clipboards, remote view and control, see notifications from other devices, etc. Description: |- diff --git a/manifests/k/KDE/KDEConnect/AppX/26.402.6277.0/KDE.KDEConnect.AppX.locale.fr-FR.yaml b/manifests/k/KDE/KDEConnect/AppX/26.402.6289.0/KDE.KDEConnect.AppX.locale.fr-FR.yaml similarity index 96% rename from manifests/k/KDE/KDEConnect/AppX/26.402.6277.0/KDE.KDEConnect.AppX.locale.fr-FR.yaml rename to manifests/k/KDE/KDEConnect/AppX/26.402.6289.0/KDE.KDEConnect.AppX.locale.fr-FR.yaml index 368ccd52f93be..c8d35048c3274 100644 --- a/manifests/k/KDE/KDEConnect/AppX/26.402.6277.0/KDE.KDEConnect.AppX.locale.fr-FR.yaml +++ b/manifests/k/KDE/KDEConnect/AppX/26.402.6289.0/KDE.KDEConnect.AppX.locale.fr-FR.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: KDE.KDEConnect.AppX -PackageVersion: 26.402.6277.0 +PackageVersion: 26.402.6289.0 PackageLocale: fr-FR PackageUrl: https://apps.kde.org/fr/kdeconnect/ ShortDescription: Permet à votre téléphone et à votre ordinateur de mieux fonctionner ensemble. diff --git a/manifests/k/KDE/KDEConnect/AppX/26.402.6277.0/KDE.KDEConnect.AppX.locale.zh-CN.yaml b/manifests/k/KDE/KDEConnect/AppX/26.402.6289.0/KDE.KDEConnect.AppX.locale.zh-CN.yaml similarity index 97% rename from manifests/k/KDE/KDEConnect/AppX/26.402.6277.0/KDE.KDEConnect.AppX.locale.zh-CN.yaml rename to manifests/k/KDE/KDEConnect/AppX/26.402.6289.0/KDE.KDEConnect.AppX.locale.zh-CN.yaml index 7107bb50daffd..9b90b3855ca2a 100644 --- a/manifests/k/KDE/KDEConnect/AppX/26.402.6277.0/KDE.KDEConnect.AppX.locale.zh-CN.yaml +++ b/manifests/k/KDE/KDEConnect/AppX/26.402.6289.0/KDE.KDEConnect.AppX.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: KDE.KDEConnect.AppX -PackageVersion: 26.402.6277.0 +PackageVersion: 26.402.6289.0 PackageLocale: zh-CN PublisherUrl: https://kde.org/zh-cn/ ShortDescription: 连接各种设备(Windows、Linux、Android 等),传输文件、共享剪贴板、远程查看和控制、查看其它设备的通知等。 diff --git a/manifests/k/KDE/KDEConnect/AppX/26.402.6277.0/KDE.KDEConnect.AppX.yaml b/manifests/k/KDE/KDEConnect/AppX/26.402.6289.0/KDE.KDEConnect.AppX.yaml similarity index 88% rename from manifests/k/KDE/KDEConnect/AppX/26.402.6277.0/KDE.KDEConnect.AppX.yaml rename to manifests/k/KDE/KDEConnect/AppX/26.402.6289.0/KDE.KDEConnect.AppX.yaml index e970a430bb57c..adf6455567d34 100644 --- a/manifests/k/KDE/KDEConnect/AppX/26.402.6277.0/KDE.KDEConnect.AppX.yaml +++ b/manifests/k/KDE/KDEConnect/AppX/26.402.6289.0/KDE.KDEConnect.AppX.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: KDE.KDEConnect.AppX -PackageVersion: 26.402.6277.0 +PackageVersion: 26.402.6289.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/k/Kongkong/AskLink/4.0.40.4/Kongkong.AskLink.installer.yaml b/manifests/k/Kongkong/AskLink/4.0.40.4/Kongkong.AskLink.installer.yaml new file mode 100644 index 0000000000000..6fa5384a9f2be --- /dev/null +++ b/manifests/k/Kongkong/AskLink/4.0.40.4/Kongkong.AskLink.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: Kongkong.AskLink +PackageVersion: 4.0.40.4 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +ProductCode: 连连控_is1 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.asklink.com/download/windows/Full/AskLink_Full_v4.0.40.4_20260614_1705.exe + InstallerSha256: 3A5A7AC395C3C2C682EBDE648CEB9009C011D5D9747D590F6BFDA3AD67D67C67 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kongkong/AskLink/4.0.40.4/Kongkong.AskLink.locale.en-US.yaml b/manifests/k/Kongkong/AskLink/4.0.40.4/Kongkong.AskLink.locale.en-US.yaml new file mode 100644 index 0000000000000..f3f377d11262a --- /dev/null +++ b/manifests/k/Kongkong/AskLink/4.0.40.4/Kongkong.AskLink.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: Kongkong.AskLink +PackageVersion: 4.0.40.4 +PackageLocale: en-US +Publisher: 上海控控科技有限公司 +PublisherUrl: https://www.asklink.com/ +PrivacyUrl: https://oss.asklink.com/protocol/Privacy_Policy.html +Author: Shanghai Kongkong Technology Co., Ltd. +PackageName: 连连控 +PackageUrl: https://www.asklink.com/download +License: Proprietary +LicenseUrl: https://oss.asklink.com/protocol/Usage_Terms.html +Copyright: © Shanghai Kongkong Technology Co., Ltd. +CopyrightUrl: https://oss.asklink.com/protocol/Usage_Terms.html +ShortDescription: An efficient and professional remote desktop control solution +Tags: +- control +- remote +- remote-access +- remote-assistance +- remote-control +- remote-desktop +- remote-support +ReleaseNotes: Improved some features. +PurchaseUrl: https://www.asklink.com/pricing +Documentations: +- DocumentLabel: Tutorial + DocumentUrl: https://www.asklink.com/guide/quick_use/doc-1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kongkong/AskLink/4.0.40.4/Kongkong.AskLink.locale.zh-CN.yaml b/manifests/k/Kongkong/AskLink/4.0.40.4/Kongkong.AskLink.locale.zh-CN.yaml new file mode 100644 index 0000000000000..db55f4ca83d05 --- /dev/null +++ b/manifests/k/Kongkong/AskLink/4.0.40.4/Kongkong.AskLink.locale.zh-CN.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Kongkong.AskLink +PackageVersion: 4.0.40.4 +PackageLocale: zh-CN +Publisher: 上海控控科技有限公司 +PublisherUrl: https://www.asklink.com/ +PrivacyUrl: https://oss.asklink.com/protocol/Privacy_Policy.html +Author: 上海控控科技有限公司 +PackageName: 连连控 +PackageUrl: https://www.asklink.com/download +License: 专有软件 +LicenseUrl: https://oss.asklink.com/protocol/Usage_Terms.html +Copyright: © 上海控控科技有限公司 +CopyrightUrl: https://oss.asklink.com/protocol/Usage_Terms.html +ShortDescription: 高效专业的远程桌面控制解决方案 +Tags: +- 控制 +- 远程 +- 远程协助 +- 远程控制 +- 远程支持 +- 远程桌面 +- 远程访问 +- 远程连接 +ReleaseNotes: 优化部分功能。 +PurchaseUrl: https://www.asklink.com/pricing +Documentations: +- DocumentLabel: 使用教程 + DocumentUrl: https://www.asklink.com/guide/quick_use/doc-1 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kongkong/AskLink/4.0.40.4/Kongkong.AskLink.yaml b/manifests/k/Kongkong/AskLink/4.0.40.4/Kongkong.AskLink.yaml new file mode 100644 index 0000000000000..1a925efabe8db --- /dev/null +++ b/manifests/k/Kongkong/AskLink/4.0.40.4/Kongkong.AskLink.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: Kongkong.AskLink +PackageVersion: 4.0.40.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kopia/KopiaUI/0.23.1/Kopia.KopiaUI.installer.yaml b/manifests/k/Kopia/KopiaUI/0.23.1/Kopia.KopiaUI.installer.yaml new file mode 100644 index 0000000000000..50562d9e0c352 --- /dev/null +++ b/manifests/k/Kopia/KopiaUI/0.23.1/Kopia.KopiaUI.installer.yaml @@ -0,0 +1,32 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Kopia.KopiaUI +PackageVersion: 0.23.1 +Platform: +- Windows.Desktop +InstallerType: nullsoft +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: 7b332f95-7538-5e20-9252-40d703baa034 +ReleaseDate: 2026-06-16 +AppsAndFeaturesEntries: +- DisplayName: KopiaUI 0.23.1 + ProductCode: 7b332f95-7538-5e20-9252-40d703baa034 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/kopia/kopia/releases/download/v0.23.1/KopiaUI-Setup-0.23.1.exe + InstallerSha256: A945DB629E4456D6616595A9B9FDA4BC0407FC02A8D18FBCE8F7F89390307C13 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/kopia/kopia/releases/download/v0.23.1/KopiaUI-Setup-0.23.1.exe + InstallerSha256: A945DB629E4456D6616595A9B9FDA4BC0407FC02A8D18FBCE8F7F89390307C13 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kopia/KopiaUI/0.23.1/Kopia.KopiaUI.locale.en-US.yaml b/manifests/k/Kopia/KopiaUI/0.23.1/Kopia.KopiaUI.locale.en-US.yaml new file mode 100644 index 0000000000000..8e22c84af0a46 --- /dev/null +++ b/manifests/k/Kopia/KopiaUI/0.23.1/Kopia.KopiaUI.locale.en-US.yaml @@ -0,0 +1,45 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Kopia.KopiaUI +PackageVersion: 0.23.1 +PackageLocale: en-US +Publisher: Kopia Authors +PublisherUrl: https://github.com/kopia/kopia +PublisherSupportUrl: https://github.com/kopia/kopia/issues +PrivacyUrl: https://kopia.io/docs/privacy-policy +Author: Kopia Authors +PackageName: KopiaUI +PackageUrl: https://github.com/kopia/kopia +License: Apache-2.0 +LicenseUrl: https://github.com/kopia/kopia/blob/HEAD/LICENSE +CopyrightUrl: https://github.com/kopia/kopia/blob/master/LICENSE +ShortDescription: Cross-platform backup tool for Windows, macOS & Linux with fast, incremental backups, client-side end-to-end encryption, compression and data deduplication. CLI and GUI included. +Description: |- + Kopia is a fast and secure open-source backup/restore tool that allows you to create encrypted snapshots of your data and save the snapshots to remote or cloud storage of your choice, to network-attached storage or server, or locally on your machine. + Kopia does not 'image' your whole machine. + Rather, Kopia allows you to backup/restore any and all files/directories that you deem are important or critical. +Moniker: kopiaui +Tags: +- backup +- cloud +- encryption +- foss +ReleaseNotes: |- + Repository + - Basic tests for getting epoch manager blob set (#5418) by Julio López + - selection of next epoch to compact (#5373) by Julio López + + Storage Providers + - no_extra_providers build tag (#5375) by Julio López + + Linter + - annotations for other platforms (#5413) by Julio López + + Graphical User Interface +ReleaseNotesUrl: https://github.com/kopia/kopia/releases/tag/v0.23.1 +Documentations: +- DocumentLabel: What is Kopia? + DocumentUrl: https://kopia.io/docs +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kopia/KopiaUI/0.23.1/Kopia.KopiaUI.yaml b/manifests/k/Kopia/KopiaUI/0.23.1/Kopia.KopiaUI.yaml new file mode 100644 index 0000000000000..5abe15a20104b --- /dev/null +++ b/manifests/k/Kopia/KopiaUI/0.23.1/Kopia.KopiaUI.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: Kopia.KopiaUI +PackageVersion: 0.23.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kubernetes/aws-iam-authenticator/0.7.18/Kubernetes.aws-iam-authenticator.installer.yaml b/manifests/k/Kubernetes/aws-iam-authenticator/0.7.18/Kubernetes.aws-iam-authenticator.installer.yaml new file mode 100644 index 0000000000000..a7a5f2a42e932 --- /dev/null +++ b/manifests/k/Kubernetes/aws-iam-authenticator/0.7.18/Kubernetes.aws-iam-authenticator.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: Kubernetes.aws-iam-authenticator +PackageVersion: 0.7.18 +InstallerType: portable +Commands: +- aws-iam-authenticator +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/kubernetes-sigs/aws-iam-authenticator/releases/download/v0.7.18/aws-iam-authenticator_0.7.18_windows_amd64.exe + InstallerSha256: 51FE83610DCE3FD6EFE6F97DF91C93CE8F1B9FBB4EAB48A541FC2A4016A2B24B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kubernetes/aws-iam-authenticator/0.7.18/Kubernetes.aws-iam-authenticator.locale.en-US.yaml b/manifests/k/Kubernetes/aws-iam-authenticator/0.7.18/Kubernetes.aws-iam-authenticator.locale.en-US.yaml new file mode 100644 index 0000000000000..9a0d9414d0bf0 --- /dev/null +++ b/manifests/k/Kubernetes/aws-iam-authenticator/0.7.18/Kubernetes.aws-iam-authenticator.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Kubernetes.aws-iam-authenticator +PackageVersion: 0.7.18 +PackageLocale: en-US +Publisher: Kubernetes SIGs +PublisherUrl: https://kubernetes.io/ +PublisherSupportUrl: https://github.com/kubernetes-sigs/aws-iam-authenticator/issues +PackageName: AWS IAM Authenticator +PackageUrl: https://github.com/kubernetes-sigs/aws-iam-authenticator +License: Apache-2.0 +LicenseUrl: https://github.com/kubernetes-sigs/aws-iam-authenticator/blob/HEAD/LICENSE +Copyright: Copyright 2026 The Kubernetes Authors. +ShortDescription: A tool to use AWS IAM credentials to authenticate to a Kubernetes cluster +Tags: +- cluster +- docker +- k8s +- kubernetes +ReleaseNotes: |- + Changelog + - c0e2ecd6c9e352db19435db4d2c7e64282554d2f Merge pull request #1062 from CaidenBorrego/new-release + - 44fb83f82387d237b49bc8178ad9e3ff5192b8d0 Creating new release for CVE mitigation + - f13fbce49e5e3ffe159a3c97a674efd37c05e350 Merge pull request #1057 from CaidenBorrego/caidenb-versionbump + - 2201e0a36683847e60512205513f5423a72eae5e Merge remote-tracking branch 'upstream/master' into caidenb-versionbump + - 2b185f3bf2fba2f2d0bd95c09f101106367c6754 Bump x/net and x/sys to remediate CVEs +ReleaseNotesUrl: https://github.com/kubernetes-sigs/aws-iam-authenticator/releases/tag/v0.7.18 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kubernetes/aws-iam-authenticator/0.7.18/Kubernetes.aws-iam-authenticator.locale.zh-CN.yaml b/manifests/k/Kubernetes/aws-iam-authenticator/0.7.18/Kubernetes.aws-iam-authenticator.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1e6704c041cbe --- /dev/null +++ b/manifests/k/Kubernetes/aws-iam-authenticator/0.7.18/Kubernetes.aws-iam-authenticator.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: Kubernetes.aws-iam-authenticator +PackageVersion: 0.7.18 +PackageLocale: zh-CN +PublisherUrl: https://kubernetes.io/zh-cn/ +ShortDescription: 一款使用 AWS IAM 凭据验证 Kubernetes 集群的工具 +Tags: +- docker +- k8s +- kubernetes +- 集群 +ReleaseNotesUrl: https://github.com/kubernetes-sigs/aws-iam-authenticator/releases/tag/v0.7.18 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kubernetes/aws-iam-authenticator/0.7.18/Kubernetes.aws-iam-authenticator.yaml b/manifests/k/Kubernetes/aws-iam-authenticator/0.7.18/Kubernetes.aws-iam-authenticator.yaml new file mode 100644 index 0000000000000..ff15d08a147a1 --- /dev/null +++ b/manifests/k/Kubernetes/aws-iam-authenticator/0.7.18/Kubernetes.aws-iam-authenticator.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: Kubernetes.aws-iam-authenticator +PackageVersion: 0.7.18 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.5/LuisPater.CLIProxyAPI.installer.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.5/LuisPater.CLIProxyAPI.installer.yaml new file mode 100644 index 0000000000000..5e42eb8f7d1ea --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.5/LuisPater.CLIProxyAPI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 7.2.5 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: cli-proxy-api.exe +Commands: +- cli-proxy-api +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/router-for-me/CLIProxyAPI/releases/download/v7.2.5/CLIProxyAPI_7.2.5_windows_amd64.zip + InstallerSha256: 5B9A6930F4826F8A92FBF14EA5B2A7B84016C3A53032573C9593C289DEFC34A1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.5/LuisPater.CLIProxyAPI.locale.en-US.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.5/LuisPater.CLIProxyAPI.locale.en-US.yaml new file mode 100644 index 0000000000000..3f8683a3bf0dc --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.5/LuisPater.CLIProxyAPI.locale.en-US.yaml @@ -0,0 +1,45 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 7.2.5 +PackageLocale: en-US +Publisher: Luis Pater +PublisherUrl: https://github.com/router-for-me +PublisherSupportUrl: https://github.com/router-for-me/CLIProxyAPI/issues +Author: Luis Pater +PackageName: CLI Proxy API +PackageUrl: https://github.com/router-for-me/CLIProxyAPI +License: MIT +LicenseUrl: https://github.com/router-for-me/CLIProxyAPI/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Luis Pater +ShortDescription: Wrap Gemini CLI, ChatGPT Codex as an OpenAI/Gemini/Claude compatible API service, allowing you to enjoy the free Gemini 2.5 Pro, GPT 5 model through API +Description: |- + A proxy server that provides OpenAI/Gemini/Claude compatible API interfaces for CLI. + It now also supports OpenAI Codex (GPT models) and Claude Code via OAuth. + so you can use local or multi‑account CLI access with OpenAI‑compatible clients and SDKs. + Now, We added the first Chinese provider: Qwen Code. +Tags: +- ai +- chatbot +- chatgpt +- claude +- claude-code +- codex +- gemini +- large-language-model +- llm +- openai +ReleaseNotes: |- + Linux release assets + - CLIProxyAPI__linux_.tar.gz is the default Linux build. It supports dynamic library plugins and is built against a GLIBC 2.17 baseline. + - CLIProxyAPI__linux__no-plugin.tar.gz is the portable Linux build for musl-based or older systems such as OpenWrt. It does not support dynamic library plugins. + FreeBSD release assets + - CLIProxyAPI__freebsd_aarch64_no-plugin.tar.gz is the FreeBSD arm64 build. It is built without CGO and does not support dynamic library plugins. + Changelog + - feat(auth): add config API key exclusion management with tests (f85768ee) + - feat(videos): add video authentication binding and update handler behavior (bbef8da4) + Full Changelog: https://github.com/router-for-me/CLIProxyAPI/compare/v7.2.4...v7.2.5 +ReleaseNotesUrl: https://github.com/router-for-me/CLIProxyAPI/releases/tag/v7.2.5 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.5/LuisPater.CLIProxyAPI.locale.zh-CN.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.5/LuisPater.CLIProxyAPI.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a4cef62cf6b8a --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.5/LuisPater.CLIProxyAPI.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 7.2.5 +PackageLocale: zh-CN +ShortDescription: 封装 Gemini CLI 和 ChatGPT Codex 为兼容 OpenAI/Gemini/Claude 的 API 服务,让您通过 API 畅享免费的 Gemini 2.5 Pro 和 GPT 5 模型 +Description: |- + 一个为 CLI 提供 OpenAI/Gemini/Claude 兼容 API 接口的代理服务器。 + 现已支持通过 OAuth 登录接入 OpenAI Codex(GPT 系列)和 Claude Code。 + 可与本地或多账户方式配合,使用任何 OpenAI 兼容的客户端与 SDK。 + 现在,我们添加了第一个中国提供商:Qwen Code。 +Tags: +- chatgpt +- claude +- claude-code +- codex +- gemini +- openai +- 人工智能 +- 大语言模型 +- 聊天机器人 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.5/LuisPater.CLIProxyAPI.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.5/LuisPater.CLIProxyAPI.yaml new file mode 100644 index 0000000000000..0f218574751a9 --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.5/LuisPater.CLIProxyAPI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 7.2.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.6/LuisPater.CLIProxyAPI.installer.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.6/LuisPater.CLIProxyAPI.installer.yaml new file mode 100644 index 0000000000000..34cff2a06d9be --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.6/LuisPater.CLIProxyAPI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 7.2.6 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: cli-proxy-api.exe +Commands: +- cli-proxy-api +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/router-for-me/CLIProxyAPI/releases/download/v7.2.6/CLIProxyAPI_7.2.6_windows_amd64.zip + InstallerSha256: 99E0376FF25BB10065D4A03A85FC76FC3E96BF6DEB0C81D43D120F72B8CCC01C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.6/LuisPater.CLIProxyAPI.locale.en-US.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.6/LuisPater.CLIProxyAPI.locale.en-US.yaml new file mode 100644 index 0000000000000..9e1e0fd42970e --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.6/LuisPater.CLIProxyAPI.locale.en-US.yaml @@ -0,0 +1,57 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 7.2.6 +PackageLocale: en-US +Publisher: Luis Pater +PublisherUrl: https://github.com/router-for-me +PublisherSupportUrl: https://github.com/router-for-me/CLIProxyAPI/issues +Author: Luis Pater +PackageName: CLI Proxy API +PackageUrl: https://github.com/router-for-me/CLIProxyAPI +License: MIT +LicenseUrl: https://github.com/router-for-me/CLIProxyAPI/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Luis Pater +ShortDescription: Wrap Gemini CLI, ChatGPT Codex as an OpenAI/Gemini/Claude compatible API service, allowing you to enjoy the free Gemini 2.5 Pro, GPT 5 model through API +Description: |- + A proxy server that provides OpenAI/Gemini/Claude compatible API interfaces for CLI. + It now also supports OpenAI Codex (GPT models) and Claude Code via OAuth. + so you can use local or multi‑account CLI access with OpenAI‑compatible clients and SDKs. + Now, We added the first Chinese provider: Qwen Code. +Tags: +- ai +- chatbot +- chatgpt +- claude +- claude-code +- codex +- gemini +- large-language-model +- llm +- openai +ReleaseNotes: |- + Linux release assets + - CLIProxyAPI__linux_.tar.gz is the default Linux build. It supports dynamic library plugins and is built against a GLIBC 2.17 baseline. + - CLIProxyAPI__linux__no-plugin.tar.gz is the portable Linux build for musl-based or older systems such as OpenWrt. It does not support dynamic library plugins. + FreeBSD release assets + - CLIProxyAPI__freebsd_aarch64_no-plugin.tar.gz is the FreeBSD arm64 build. It is built without CGO and does not support dynamic library plugins. + Changelog + - Add log cursor helpers (c61453a8) + - Tail management logs with cursors (95a72a47) + - Read management logs from cursors (331daa24) + - Preserve management log line counts (0d82daca) + - Bound management log cursor reads (d417fa53) + - feat(plugins): implement asynchronous config reload after plugin deletion (3b0cc913) + - Continue log cursors across rotation (917cec3b) + - Disambiguate zero-offset log cursors (db3fdea4) + - Avoid counting all logs for tail reads (a47c3863) + - Fix ambiguous empty log cursor handling (5036513b) + - fix log cursor rotation gap (0b21b071) + - Merge pull request #3850 from router-for-me/feat/log-feat (e4059983) + What's Changed + - Feat/log feat by @LTbinglingfeng in https://github.com/router-for-me/CLIProxyAPI/pull/3850 + Full Changelog: https://github.com/router-for-me/CLIProxyAPI/compare/v7.2.5...v7.2.6 +ReleaseNotesUrl: https://github.com/router-for-me/CLIProxyAPI/releases/tag/v7.2.6 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.6/LuisPater.CLIProxyAPI.locale.zh-CN.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.6/LuisPater.CLIProxyAPI.locale.zh-CN.yaml new file mode 100644 index 0000000000000..62d67d301ebbe --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.6/LuisPater.CLIProxyAPI.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 7.2.6 +PackageLocale: zh-CN +ShortDescription: 封装 Gemini CLI 和 ChatGPT Codex 为兼容 OpenAI/Gemini/Claude 的 API 服务,让您通过 API 畅享免费的 Gemini 2.5 Pro 和 GPT 5 模型 +Description: |- + 一个为 CLI 提供 OpenAI/Gemini/Claude 兼容 API 接口的代理服务器。 + 现已支持通过 OAuth 登录接入 OpenAI Codex(GPT 系列)和 Claude Code。 + 可与本地或多账户方式配合,使用任何 OpenAI 兼容的客户端与 SDK。 + 现在,我们添加了第一个中国提供商:Qwen Code。 +Tags: +- chatgpt +- claude +- claude-code +- codex +- gemini +- openai +- 人工智能 +- 大语言模型 +- 聊天机器人 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.6/LuisPater.CLIProxyAPI.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.6/LuisPater.CLIProxyAPI.yaml new file mode 100644 index 0000000000000..a169b8f416f4c --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.6/LuisPater.CLIProxyAPI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 7.2.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.7/LuisPater.CLIProxyAPI.installer.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.7/LuisPater.CLIProxyAPI.installer.yaml new file mode 100644 index 0000000000000..8d9c90f66727e --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.7/LuisPater.CLIProxyAPI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 7.2.7 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: cli-proxy-api.exe +Commands: +- cli-proxy-api +ReleaseDate: 2026-06-16 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/router-for-me/CLIProxyAPI/releases/download/v7.2.7/CLIProxyAPI_7.2.7_windows_amd64.zip + InstallerSha256: EDFD55F1BDDA5D68919AFA81A1DF635AAA425BE19146D513BFF7FEBEC2F6AB3E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.7/LuisPater.CLIProxyAPI.locale.en-US.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.7/LuisPater.CLIProxyAPI.locale.en-US.yaml new file mode 100644 index 0000000000000..54c6e92ec9761 --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.7/LuisPater.CLIProxyAPI.locale.en-US.yaml @@ -0,0 +1,45 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 7.2.7 +PackageLocale: en-US +Publisher: Luis Pater +PublisherUrl: https://github.com/router-for-me +PublisherSupportUrl: https://github.com/router-for-me/CLIProxyAPI/issues +Author: Luis Pater +PackageName: CLI Proxy API +PackageUrl: https://github.com/router-for-me/CLIProxyAPI +License: MIT +LicenseUrl: https://github.com/router-for-me/CLIProxyAPI/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Luis Pater +ShortDescription: Wrap Gemini CLI, ChatGPT Codex as an OpenAI/Gemini/Claude compatible API service, allowing you to enjoy the free Gemini 2.5 Pro, GPT 5 model through API +Description: |- + A proxy server that provides OpenAI/Gemini/Claude compatible API interfaces for CLI. + It now also supports OpenAI Codex (GPT models) and Claude Code via OAuth. + so you can use local or multi‑account CLI access with OpenAI‑compatible clients and SDKs. + Now, We added the first Chinese provider: Qwen Code. +Tags: +- ai +- chatbot +- chatgpt +- claude +- claude-code +- codex +- gemini +- large-language-model +- llm +- openai +ReleaseNotes: |- + Linux release assets + - CLIProxyAPI__linux_.tar.gz is the default Linux build. It supports dynamic library plugins and is built against a GLIBC 2.17 baseline. + - CLIProxyAPI__linux__no-plugin.tar.gz is the portable Linux build for musl-based or older systems such as OpenWrt. It does not support dynamic library plugins. + FreeBSD release assets + - CLIProxyAPI__freebsd_aarch64_no-plugin.tar.gz is the FreeBSD arm64 build. It is built without CGO and does not support dynamic library plugins. + Changelog + - feat(executor): sanitize web search tool domains to meet Anthropic requirements (844b8559) + - feat(util): normalize Claude tool_result content and improve Gemini integration (2406daf3) + Full Changelog: https://github.com/router-for-me/CLIProxyAPI/compare/v7.2.6...v7.2.7 +ReleaseNotesUrl: https://github.com/router-for-me/CLIProxyAPI/releases/tag/v7.2.7 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.7/LuisPater.CLIProxyAPI.locale.zh-CN.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.7/LuisPater.CLIProxyAPI.locale.zh-CN.yaml new file mode 100644 index 0000000000000..ff97839a40ddb --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.7/LuisPater.CLIProxyAPI.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 7.2.7 +PackageLocale: zh-CN +ShortDescription: 封装 Gemini CLI 和 ChatGPT Codex 为兼容 OpenAI/Gemini/Claude 的 API 服务,让您通过 API 畅享免费的 Gemini 2.5 Pro 和 GPT 5 模型 +Description: |- + 一个为 CLI 提供 OpenAI/Gemini/Claude 兼容 API 接口的代理服务器。 + 现已支持通过 OAuth 登录接入 OpenAI Codex(GPT 系列)和 Claude Code。 + 可与本地或多账户方式配合,使用任何 OpenAI 兼容的客户端与 SDK。 + 现在,我们添加了第一个中国提供商:Qwen Code。 +Tags: +- chatgpt +- claude +- claude-code +- codex +- gemini +- openai +- 人工智能 +- 大语言模型 +- 聊天机器人 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LuisPater/CLIProxyAPI/7.2.7/LuisPater.CLIProxyAPI.yaml b/manifests/l/LuisPater/CLIProxyAPI/7.2.7/LuisPater.CLIProxyAPI.yaml new file mode 100644 index 0000000000000..f45166374f161 --- /dev/null +++ b/manifests/l/LuisPater/CLIProxyAPI/7.2.7/LuisPater.CLIProxyAPI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: LuisPater.CLIProxyAPI +PackageVersion: 7.2.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/lazyshrey/Melofy/1.0.5/lazyshrey.Melofy.installer.yaml b/manifests/l/lazyshrey/Melofy/1.0.5/lazyshrey.Melofy.installer.yaml new file mode 100644 index 0000000000000..fe4a6d250c728 --- /dev/null +++ b/manifests/l/lazyshrey/Melofy/1.0.5/lazyshrey.Melofy.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: lazyshrey.Melofy +PackageVersion: 1.0.5 +InstallerType: nullsoft +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/lazyshrey/melofy/releases/latest/download/Melofy_x64-setup.exe + InstallerSha256: F235810D1F76B121EFEAFE40B00A1A5BD2E734FAA2C4203FB9CA710BE0EC4C15 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/lazyshrey/Melofy/1.0.5/lazyshrey.Melofy.locale.en-US.yaml b/manifests/l/lazyshrey/Melofy/1.0.5/lazyshrey.Melofy.locale.en-US.yaml new file mode 100644 index 0000000000000..0817f14f7f09b --- /dev/null +++ b/manifests/l/lazyshrey/Melofy/1.0.5/lazyshrey.Melofy.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: lazyshrey.Melofy +PackageVersion: 1.0.5 +PackageLocale: en-US +Publisher: lazy shrey +PackageName: Melofy +License: MIT License +ShortDescription: A premium cross-platform music streaming platform +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/lazyshrey/Melofy/1.0.5/lazyshrey.Melofy.yaml b/manifests/l/lazyshrey/Melofy/1.0.5/lazyshrey.Melofy.yaml new file mode 100644 index 0000000000000..79782b1334fbf --- /dev/null +++ b/manifests/l/lazyshrey/Melofy/1.0.5/lazyshrey.Melofy.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: lazyshrey.Melofy +PackageVersion: 1.0.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Macabacus/Macabacus/9.9.0/Macabacus.Macabacus.installer.yaml b/manifests/m/Macabacus/Macabacus/9.9.0/Macabacus.Macabacus.installer.yaml new file mode 100644 index 0000000000000..e470f7b0e473c --- /dev/null +++ b/manifests/m/Macabacus/Macabacus/9.9.0/Macabacus.Macabacus.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Macabacus.Macabacus +PackageVersion: 9.9.0 +InstallerType: wix +InstallerSwitches: + InstallLocation: INSTALLLOCATION="" +ProductCode: '{513D30A2-DB89-4C55-A6AD-5E7BD8E0CC79}' +ReleaseDate: 2026-06-15 +AppsAndFeaturesEntries: +- UpgradeCode: '{B01A9684-FE17-41E3-A9CB-609D7A88D354}' +Installers: +- Architecture: x86 + InstallerUrl: https://downloads.macabacus.com/software/Macabacus-9.9.0.msi + InstallerSha256: A6455FCF708103988DD0D2AFDEE6761B280C197417CC03B25C96542374B4D6BE + InstallerSwitches: + Custom: OFFICE2016FOUND=1 EULA=1 +- Architecture: x64 + InstallerUrl: https://downloads.macabacus.com/software/Macabacus-9.9.0.msi + InstallerSha256: A6455FCF708103988DD0D2AFDEE6761B280C197417CC03B25C96542374B4D6BE + InstallerSwitches: + Custom: OFFICE2016X64FOUND=1 EULA=1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Macabacus/Macabacus/9.9.0/Macabacus.Macabacus.locale.en-US.yaml b/manifests/m/Macabacus/Macabacus/9.9.0/Macabacus.Macabacus.locale.en-US.yaml new file mode 100644 index 0000000000000..1a4e989064032 --- /dev/null +++ b/manifests/m/Macabacus/Macabacus/9.9.0/Macabacus.Macabacus.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Macabacus.Macabacus +PackageVersion: 9.9.0 +PackageLocale: en-US +Publisher: Macabacus Inc. +PublisherUrl: https://macabacus.com/ +PublisherSupportUrl: https://help.macabacus.com/ +PrivacyUrl: https://macabacus.com/legal/privacy +Author: Macabacus, Inc. +PackageName: Macabacus +PackageUrl: https://macabacus.com/downloads +License: Proprietary +LicenseUrl: https://macabacus.com/legal/eula +Copyright: © 2026 Macabacus Inc. +CopyrightUrl: https://macabacus.com/legal/eula +ShortDescription: 'The #1 Excel & PowerPoint Add-In for Finance & Banking' +Description: Macabacus is the go-to solution for finance professionals who demand speed, accuracy, and consistency in Excel, PowerPoint, and Word. Trusted by top firms worldwide, Macabacus streamlines financial modeling and presentation prep with powerful automation and brand compliance tools—so you can focus on insights, not formatting. +Tags: +- add-in +- excel +- extension +- office +- plugin +- powerpoint +- word +Agreements: +- AgreementLabel: End-User License Agreement (EULA) + AgreementUrl: https://macabacus.com/legal/eula +ReleaseNotes: |- + - Added new ability to track changes in presentations + - Improved on-load performance that helps Excel start faster + - Improved content governance that surfaces stale library content +ReleaseNotesUrl: https://macabacus.com/release-notes +PurchaseUrl: https://macabacus.com/pricing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Macabacus/Macabacus/9.9.0/Macabacus.Macabacus.locale.zh-CN.yaml b/manifests/m/Macabacus/Macabacus/9.9.0/Macabacus.Macabacus.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b5eb01db6c510 --- /dev/null +++ b/manifests/m/Macabacus/Macabacus/9.9.0/Macabacus.Macabacus.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: Macabacus.Macabacus +PackageVersion: 9.9.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 金融与银行业首选的 Excel 和 PowerPoint 插件 +Description: Macabacus 是金融专业人士在 Excel、PowerPoint、Word 中追求速度、精准与一致性的首选解决方案。作为全球顶尖企业信赖的合作伙伴,Macabacus 通过强大的自动化功能和品牌合规工具,大幅提升财务建模与演示文稿准备效率——让您专注于核心洞察,而非格式调整。 +Tags: +- excel +- office +- powerpoint +- word +- 加载项 +- 扩展 +- 插件 +Agreements: +- AgreementLabel: 最终用户许可协议 + AgreementUrl: https://macabacus.com/legal/eula +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Macabacus/Macabacus/9.9.0/Macabacus.Macabacus.yaml b/manifests/m/Macabacus/Macabacus/9.9.0/Macabacus.Macabacus.yaml new file mode 100644 index 0000000000000..771130ac922a1 --- /dev/null +++ b/manifests/m/Macabacus/Macabacus/9.9.0/Macabacus.Macabacus.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: Macabacus.Macabacus +PackageVersion: 9.9.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mach50/MiaAgent/0.1.1/Mach50.MiaAgent.installer.yaml b/manifests/m/Mach50/MiaAgent/0.1.1/Mach50.MiaAgent.installer.yaml new file mode 100644 index 0000000000000..4c97296ee2660 --- /dev/null +++ b/manifests/m/Mach50/MiaAgent/0.1.1/Mach50.MiaAgent.installer.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mach50.MiaAgent +PackageVersion: 0.1.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: mia.exe + PortableCommandAlias: mia +UpgradeBehavior: install +Commands: +- mia +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/mastermach50/mia-agent/releases/download/v0.1.1/mia-agent-windows-x86_64.zip + InstallerSha256: 4BC4F741B149B8A394E600E072817478057B761061B361AB78305392D8795BE4 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mach50/MiaAgent/0.1.1/Mach50.MiaAgent.locale.en-US.yaml b/manifests/m/Mach50/MiaAgent/0.1.1/Mach50.MiaAgent.locale.en-US.yaml new file mode 100644 index 0000000000000..53ae566b0929c --- /dev/null +++ b/manifests/m/Mach50/MiaAgent/0.1.1/Mach50.MiaAgent.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mach50.MiaAgent +PackageVersion: 0.1.1 +PackageLocale: en-US +Publisher: Mathew Manoj +PublisherUrl: https://github.com/mastermach50 +PublisherSupportUrl: https://github.com/mastermach50/mia-agent/issues +Author: Mathew Manoj +PackageName: Mia Agent +PackageUrl: https://github.com/mastermach50/mia-agent +License: MIT +LicenseUrl: https://github.com/mastermach50/mia-agent/blob/HEAD/LICENSE +ShortDescription: The configurable, easy to use, personal AI agent. +Description: The configurable, easy to use, personal AI agent. +Moniker: mia-agent +Tags: +- agent +- ai +- ai-agent +ReleaseNotes: |- + Added + - Multiline inputs (Shift+Enter/Alt+Enter) and file pasting in tui. + - GitHub action for release builds. + Fixed + - Race condition in Ctrl-C handler in agent_loop::run_agent. + - Fix changes requested by clippy. + Removed + - Gateway code (for now, will be made soon). + Full Changelog: v0.1.0...v0.1.1 +ReleaseNotesUrl: https://github.com/mastermach50/mia-agent/releases/tag/v0.1.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mach50/MiaAgent/0.1.1/Mach50.MiaAgent.yaml b/manifests/m/Mach50/MiaAgent/0.1.1/Mach50.MiaAgent.yaml new file mode 100644 index 0000000000000..26d6cc8248ed3 --- /dev/null +++ b/manifests/m/Mach50/MiaAgent/0.1.1/Mach50.MiaAgent.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: Mach50.MiaAgent +PackageVersion: 0.1.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/MattWhitwam/DiffThis/1.4.0/MattWhitwam.DiffThis.installer.yaml b/manifests/m/MattWhitwam/DiffThis/1.4.0/MattWhitwam.DiffThis.installer.yaml new file mode 100644 index 0000000000000..f9c4549d8c430 --- /dev/null +++ b/manifests/m/MattWhitwam/DiffThis/1.4.0/MattWhitwam.DiffThis.installer.yaml @@ -0,0 +1,16 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json +PackageIdentifier: MattWhitwam.DiffThis +PackageVersion: 1.4.0 +Installers: +- Architecture: x64 + InstallerType: zip + InstallerUrl: https://github.com/matt-dx/diffthis/releases/download/v1.4.0/DiffThis-windows-x64.zip + InstallerSha256: 6435c9931d8153cb34c30b5a709612aa924b126ec78ee746aec4ebb1e07aa3bb + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: DiffThis.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.EdgeWebView2Runtime +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/MattWhitwam/DiffThis/1.4.0/MattWhitwam.DiffThis.locale.en-US.yaml b/manifests/m/MattWhitwam/DiffThis/1.4.0/MattWhitwam.DiffThis.locale.en-US.yaml new file mode 100644 index 0000000000000..19f4d21696941 --- /dev/null +++ b/manifests/m/MattWhitwam/DiffThis/1.4.0/MattWhitwam.DiffThis.locale.en-US.yaml @@ -0,0 +1,15 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json +PackageIdentifier: MattWhitwam.DiffThis +PackageVersion: 1.4.0 +PackageLocale: en-US +Publisher: Matt Whitwam +PublisherUrl: https://github.com/matt-dx/diffthis +PackageName: DiffThis +License: The Unlicense +ShortDescription: A Windows desktop diff tool for comparing git branches, with AI-powered code review and explanation. +Tags: +- git +- diff +- developer-tools +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/MattWhitwam/DiffThis/1.4.0/MattWhitwam.DiffThis.yaml b/manifests/m/MattWhitwam/DiffThis/1.4.0/MattWhitwam.DiffThis.yaml new file mode 100644 index 0000000000000..eea672faaf7f2 --- /dev/null +++ b/manifests/m/MattWhitwam/DiffThis/1.4.0/MattWhitwam.DiffThis.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json +PackageIdentifier: MattWhitwam.DiffThis +PackageVersion: 1.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/m/Microsoft/Gaming/GDK/2510.3.6286/Microsoft.Gaming.GDK.installer.yaml b/manifests/m/Microsoft/Gaming/GDK/2510.3.6286/Microsoft.Gaming.GDK.installer.yaml new file mode 100644 index 0000000000000..0168347d124fd --- /dev/null +++ b/manifests/m/Microsoft/Gaming/GDK/2510.3.6286/Microsoft.Gaming.GDK.installer.yaml @@ -0,0 +1,24 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Microsoft.Gaming.GDK +PackageVersion: 2510.3.6286 +MinimumOSVersion: 10.0.17763.0 +Scope: machine +InstallerSwitches: + Silent: /q + SilentWithProgress: /q +AppsAndFeaturesEntries: +- DisplayName: Microsoft Game Development Kit - 251003 (October 2025 Update 3) + DisplayVersion: 10.1.26100.6286 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x64 + InstallerType: zip + NestedInstallerType: burn + NestedInstallerFiles: + - RelativeFilePath: PGDK.exe + InstallerUrl: https://github.com/microsoft/GDK/releases/download/October-2025-Update-3-v2510.3.6286/GDK_2510.3.6286.zip + InstallerSha256: 1E1F77340CBE46EEB8C996146B1F8858C3413D28150111330EF79DA37E8D06A5 + ProductCode: '{f001dbe8-e19f-4117-b2ef-f14bcc35be58}' +ManifestType: installer +ManifestVersion: 1.6.0 \ No newline at end of file diff --git a/manifests/m/Microsoft/Gaming/GDK/2510.3.6286/Microsoft.Gaming.GDK.locale.en-US.yaml b/manifests/m/Microsoft/Gaming/GDK/2510.3.6286/Microsoft.Gaming.GDK.locale.en-US.yaml new file mode 100644 index 0000000000000..2209091984044 --- /dev/null +++ b/manifests/m/Microsoft/Gaming/GDK/2510.3.6286/Microsoft.Gaming.GDK.locale.en-US.yaml @@ -0,0 +1,25 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Microsoft.Gaming.GDK +PackageVersion: 2510.3.6286 +PackageLocale: en-US +Publisher: Microsoft Corporation +Author: Microsoft +PackageName: October 2025 GDK Update 3 +PackageUrl: https://github.com/microsoft/GDK/releases +License: Proprietary +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: The Microsoft Game Development Kit (GDK) contains the common tools, libraries, and documentation needed to build games for Xbox Game Pass for PC on Windows 10/11, Xbox consoles (Xbox Series X|S, Xbox One), and cloud gaming with Xbox Game Pass Ultimate. +Tags: +- d3d12 +- GDK +Agreements: +- AgreementLabel: End User License Agreement (EULA) + AgreementUrl: https://aka.ms/GDK_EULA +InstallationNotes: |- + GDK Visual Studio extensions can be downloaded at https://aka.ms/GDKVSExtensions. +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://learn.microsoft.com/en-us/gaming/gdk/ +ManifestType: defaultLocale +ManifestVersion: 1.6.0 \ No newline at end of file diff --git a/manifests/m/Microsoft/Gaming/GDK/2510.3.6286/Microsoft.Gaming.GDK.locale.ja-JP.yaml b/manifests/m/Microsoft/Gaming/GDK/2510.3.6286/Microsoft.Gaming.GDK.locale.ja-JP.yaml new file mode 100644 index 0000000000000..63b152d49f874 --- /dev/null +++ b/manifests/m/Microsoft/Gaming/GDK/2510.3.6286/Microsoft.Gaming.GDK.locale.ja-JP.yaml @@ -0,0 +1,25 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json + +PackageIdentifier: Microsoft.Gaming.GDK +PackageVersion: 2510.3.6286 +PackageLocale: ja-JP +Publisher: Microsoft Corporation +Author: Microsoft +PackageName: October 2025 GDK Update 3 +PackageUrl: https://github.com/microsoft/GDK/releases +License: Proprietary +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +ShortDescription: Microsoft Game Development Kit (GDK) には、Windows 10/11 上の PC 用 Xbox Game Pass 用ゲーム、Xbox 本体 (Xbox Series X|S、Xbox One)、および Xbox Game Pass Ultimate を使用したクラウド ゲームを構築するために必要な一般的なツール、ライブラリ、およびドキュメントが含まれています。 +Tags: +- d3d12 +- GDK +Agreements: +- AgreementLabel: エンド ユーザー ライセンス契約 (EULA) + AgreementUrl: https://aka.ms/GDK_EULA +InstallationNotes: |- + GDK Visual Studio の拡張機能は https://aka.ms/GDKVSExtensions からダウンロードできます。 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://learn.microsoft.com/ja-jp/gaming/gdk/ +ManifestType: locale +ManifestVersion: 1.6.0 \ No newline at end of file diff --git a/manifests/m/Microsoft/Gaming/GDK/2510.3.6286/Microsoft.Gaming.GDK.yaml b/manifests/m/Microsoft/Gaming/GDK/2510.3.6286/Microsoft.Gaming.GDK.yaml new file mode 100644 index 0000000000000..de15df71abdc1 --- /dev/null +++ b/manifests/m/Microsoft/Gaming/GDK/2510.3.6286/Microsoft.Gaming.GDK.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Microsoft.Gaming.GDK +PackageVersion: 2510.3.6286 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 \ No newline at end of file diff --git a/manifests/m/Microsoft/SafetyScanner/1.453.105.0/Microsoft.SafetyScanner.installer.yaml b/manifests/m/Microsoft/SafetyScanner/1.453.105.0/Microsoft.SafetyScanner.installer.yaml new file mode 100644 index 0000000000000..e17b44b96929c --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.453.105.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.453.105.0 +InstallerType: portable +Commands: +- safetyscanner +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x86 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.453.105.0&arch=x86 + InstallerSha256: 4D28DE9A6D33CBB7F527D086D7AB951A5D2A806D992A8BD1065D3334C4EF46D6 +- Architecture: x64 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.453.105.0&arch=amd64 + InstallerSha256: D1946F85DE1CB9727727CA748177304942B8DE4F0E383C1001409761CA4A64D1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.453.105.0/Microsoft.SafetyScanner.locale.en-US.yaml b/manifests/m/Microsoft/SafetyScanner/1.453.105.0/Microsoft.SafetyScanner.locale.en-US.yaml new file mode 100644 index 0000000000000..d6d709d286b4c --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.453.105.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.453.105.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.453.105.0/Microsoft.SafetyScanner.yaml b/manifests/m/Microsoft/SafetyScanner/1.453.105.0/Microsoft.SafetyScanner.yaml new file mode 100644 index 0000000000000..53347595e0803 --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.453.105.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.453.105.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.453.108.0/Microsoft.SafetyScanner.installer.yaml b/manifests/m/Microsoft/SafetyScanner/1.453.108.0/Microsoft.SafetyScanner.installer.yaml new file mode 100644 index 0000000000000..869b514d7ebfd --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.453.108.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.453.108.0 +InstallerType: portable +Commands: +- safetyscanner +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x86 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.453.108.0&arch=x86 + InstallerSha256: A800900769F1E720F420990EE258C25B51C6C9E27025B04244D370307D352143 +- Architecture: x64 + InstallerUrl: https://definitionupdates.microsoft.com/packages/content/msert.exe?packageType=Scanner&packageVersion=1.453.108.0&arch=amd64 + InstallerSha256: 9AE02EE3C5FF31EF098AAA9743A7A61E9CAEC1E1588F6FB6F961892BD5D6934A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/SafetyScanner/1.453.108.0/Microsoft.SafetyScanner.locale.en-US.yaml b/manifests/m/Microsoft/SafetyScanner/1.453.108.0/Microsoft.SafetyScanner.locale.en-US.yaml new file mode 100644 index 0000000000000..2e8aec227d69d --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.453.108.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.453.108.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.453.108.0/Microsoft.SafetyScanner.yaml b/manifests/m/Microsoft/SafetyScanner/1.453.108.0/Microsoft.SafetyScanner.yaml new file mode 100644 index 0000000000000..3aada7e0eea6d --- /dev/null +++ b/manifests/m/Microsoft/SafetyScanner/1.453.108.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.453.108.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.125.0/Microsoft.VisualStudioCode.Insiders.CLI.installer.yaml b/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.125.0/Microsoft.VisualStudioCode.Insiders.CLI.installer.yaml index f6a0068e92139..f49c074638a67 100644 --- a/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.125.0/Microsoft.VisualStudioCode.Insiders.CLI.installer.yaml +++ b/manifests/m/Microsoft/VisualStudioCode/Insiders/CLI/1.125.0/Microsoft.VisualStudioCode.Insiders.CLI.installer.yaml @@ -13,7 +13,7 @@ Installers: InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/fd0fbb3f5bf3dafc048826e300f0e6b1888af2bd/vscode_cli_win32_arm64_cli.zip InstallerSha256: 7FD0FC358FA0DF066E667A48CBAA760927D23A2881EA8062F3766BB2F256A3C4 - Architecture: x64 - InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/fd0fbb3f5bf3dafc048826e300f0e6b1888af2bd/vscode_cli_win32_x64_cli.zip - InstallerSha256: 52278A1BBF7B163E7B0F6F6B767C8316A8D18F4078E18B4471E347B7948842CA + InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/93cfdd489c3b228840d0f86ec77c3636277c93ea/vscode_cli_win32_x64_cli.zip + InstallerSha256: 0F8F9329B2E9961D433667A8F53D2F21FFFE9AB12933D5F0E154E161F877F694 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/Nightly/MSIX/153.2605.2400.0/Mozilla.Firefox.Nightly.MSIX.installer.yaml b/manifests/m/Mozilla/Firefox/Nightly/MSIX/153.2606.1420.0/Mozilla.Firefox.Nightly.MSIX.installer.yaml similarity index 55% rename from manifests/m/Mozilla/Firefox/Nightly/MSIX/153.2605.2400.0/Mozilla.Firefox.Nightly.MSIX.installer.yaml rename to manifests/m/Mozilla/Firefox/Nightly/MSIX/153.2606.1420.0/Mozilla.Firefox.Nightly.MSIX.installer.yaml index afbfa43d8330e..caa879a9f6442 100644 --- a/manifests/m/Mozilla/Firefox/Nightly/MSIX/153.2605.2400.0/Mozilla.Firefox.Nightly.MSIX.installer.yaml +++ b/manifests/m/Mozilla/Firefox/Nightly/MSIX/153.2606.1420.0/Mozilla.Firefox.Nightly.MSIX.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Mozilla.Firefox.Nightly.MSIX -PackageVersion: 153.2605.2400.0 +PackageVersion: 153.2606.1420.0 Platform: - Windows.Desktop MinimumOSVersion: 10.0.17763.0 @@ -25,28 +25,28 @@ FileExtensions: PackageFamilyName: Mozilla.MozillaFirefoxNightly_jag0gd4e3s9p2 RestrictedCapabilities: - runFullTrust -ReleaseDate: 2026-05-24 +ReleaseDate: 2026-06-14 AppsAndFeaturesEntries: - DisplayName: Firefox Nightly Publisher: Mozilla Corporation Installers: - Architecture: x86 - InstallerUrl: https://ftp.mozilla.org/pub/firefox/nightly/2026/05/2026-05-24-00-14-56-mozilla-central/firefox-153.0a1.multi.win32.installer.msix - InstallerSha256: 3386B6AF3E3F87F2F49F92ACD7CF836BB760CA2015F24DC688D87913901B46A1 - SignatureSha256: 397EFC449C10BBC1FC7DC05EB8A54A4D1AD42BE1561E71F725979243BF0785A5 + InstallerUrl: https://ftp.mozilla.org/pub/firefox/nightly/2026/06/2026-06-14-20-18-51-mozilla-central/firefox-153.0a1.multi.win32.installer.msix + InstallerSha256: C4CFEFF12AF802F9E965C6B48D859E1D5D58D4F252F38B16931379CF34377A52 + SignatureSha256: 791F2AEC603211B64319C838EA585947D41372D2655DA2256C1AC1D43FA0F1F1 InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%/WindowsApps/Mozilla.MozillaFirefoxNightly_153.2605.2400.0_x86__jag0gd4e3s9p2' + DefaultInstallLocation: '%ProgramFiles%/WindowsApps/Mozilla.MozillaFirefoxNightly_153.2606.1420.0_x86__jag0gd4e3s9p2' - Architecture: x64 - InstallerUrl: https://ftp.mozilla.org/pub/firefox/nightly/2026/05/2026-05-24-00-14-56-mozilla-central/firefox-153.0a1.multi.win64.installer.msix - InstallerSha256: 2556F74B158250C7B1B23A175CA75572C8D1D84D94C8E9E8346E362E1ECFFA8C - SignatureSha256: F1BEE96B16052D7E62541807EF31F20BED54935F1CBC381803A68C856AE80823 + InstallerUrl: https://ftp.mozilla.org/pub/firefox/nightly/2026/06/2026-06-14-20-18-51-mozilla-central/firefox-153.0a1.multi.win64.installer.msix + InstallerSha256: A8981C7039323D844E695C8CC3DEB93673D5CDF87761BDDCB3575E3DFBEAD541 + SignatureSha256: F403073CA90DB7BEFFE84385FE29EC2C83798F521B317F21F974F59EABD02FD8 InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%/WindowsApps/Mozilla.MozillaFirefoxNightly_153.2605.2400.0_x64__jag0gd4e3s9p2' + DefaultInstallLocation: '%ProgramFiles%/WindowsApps/Mozilla.MozillaFirefoxNightly_153.2606.1420.0_x64__jag0gd4e3s9p2' - Architecture: arm64 - InstallerUrl: https://ftp.mozilla.org/pub/firefox/nightly/2026/05/2026-05-24-00-14-56-mozilla-central/firefox-153.0a1.multi.win64-aarch64.installer.msix - InstallerSha256: 108402B8D8C20960F629071C611DB8548AD2FD3CCFEBF04F65EBB01C10CD1E78 - SignatureSha256: 99358E9BA8411B72457D2FFBED0BE155147644E1FF275E163EE66CD70DBD04CD + InstallerUrl: https://ftp.mozilla.org/pub/firefox/nightly/2026/06/2026-06-14-20-18-51-mozilla-central/firefox-153.0a1.multi.win64-aarch64.installer.msix + InstallerSha256: 4E5DDA71CAC53C49250D863775A89B1AADB77CEEAE50D269B2CD13CFD30ED612 + SignatureSha256: C66BEE3737EAD43906EF5B2855AE6E8FDB1B1B32ECFE9858B6B2D48A2B688189 InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%/WindowsApps/Mozilla.MozillaFirefoxNightly_153.2605.2400.0_arm64__jag0gd4e3s9p2' + DefaultInstallLocation: '%ProgramFiles%/WindowsApps/Mozilla.MozillaFirefoxNightly_153.2606.1420.0_arm64__jag0gd4e3s9p2' ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/Nightly/MSIX/153.2605.2400.0/Mozilla.Firefox.Nightly.MSIX.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/Nightly/MSIX/153.2606.1420.0/Mozilla.Firefox.Nightly.MSIX.locale.en-US.yaml similarity index 94% rename from manifests/m/Mozilla/Firefox/Nightly/MSIX/153.2605.2400.0/Mozilla.Firefox.Nightly.MSIX.locale.en-US.yaml rename to manifests/m/Mozilla/Firefox/Nightly/MSIX/153.2606.1420.0/Mozilla.Firefox.Nightly.MSIX.locale.en-US.yaml index ea084abad3e57..cafaf513e1214 100644 --- a/manifests/m/Mozilla/Firefox/Nightly/MSIX/153.2605.2400.0/Mozilla.Firefox.Nightly.MSIX.locale.en-US.yaml +++ b/manifests/m/Mozilla/Firefox/Nightly/MSIX/153.2606.1420.0/Mozilla.Firefox.Nightly.MSIX.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Mozilla.Firefox.Nightly.MSIX -PackageVersion: 153.2605.2400.0 +PackageVersion: 153.2606.1420.0 PackageLocale: en-US Publisher: Mozilla PublisherUrl: https://www.mozilla.org/ diff --git a/manifests/m/Mozilla/Firefox/Nightly/MSIX/153.2605.2400.0/Mozilla.Firefox.Nightly.MSIX.yaml b/manifests/m/Mozilla/Firefox/Nightly/MSIX/153.2606.1420.0/Mozilla.Firefox.Nightly.MSIX.yaml similarity index 85% rename from manifests/m/Mozilla/Firefox/Nightly/MSIX/153.2605.2400.0/Mozilla.Firefox.Nightly.MSIX.yaml rename to manifests/m/Mozilla/Firefox/Nightly/MSIX/153.2606.1420.0/Mozilla.Firefox.Nightly.MSIX.yaml index 0bb89805a9d53..19aadbaeaf629 100644 --- a/manifests/m/Mozilla/Firefox/Nightly/MSIX/153.2605.2400.0/Mozilla.Firefox.Nightly.MSIX.yaml +++ b/manifests/m/Mozilla/Firefox/Nightly/MSIX/153.2606.1420.0/Mozilla.Firefox.Nightly.MSIX.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Mozilla.Firefox.Nightly.MSIX -PackageVersion: 153.2605.2400.0 +PackageVersion: 153.2606.1420.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/m/matchmycolor/ColibriBeta/26.1.1.17719/matchmycolor.ColibriBeta.installer.yaml b/manifests/m/matchmycolor/ColibriBeta/26.1.2.17725/matchmycolor.ColibriBeta.installer.yaml similarity index 71% rename from manifests/m/matchmycolor/ColibriBeta/26.1.1.17719/matchmycolor.ColibriBeta.installer.yaml rename to manifests/m/matchmycolor/ColibriBeta/26.1.2.17725/matchmycolor.ColibriBeta.installer.yaml index f8c99055ef630..ad478139e6ea7 100644 --- a/manifests/m/matchmycolor/ColibriBeta/26.1.1.17719/matchmycolor.ColibriBeta.installer.yaml +++ b/manifests/m/matchmycolor/ColibriBeta/26.1.2.17725/matchmycolor.ColibriBeta.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: matchmycolor.ColibriBeta -PackageVersion: 26.1.1.17719 +PackageVersion: 26.1.2.17725 InstallerType: exe InstallerSwitches: Silent: /s @@ -14,7 +14,7 @@ Dependencies: - PackageIdentifier: Microsoft.VCRedist.2015+.x86 Installers: - Architecture: x86 - InstallerUrl: https://cdn.matchmycolor.com/colibri/26.1.1/Colibri_26.1.1-beta.101.exe - InstallerSha256: 4040857E1B2934F95F186F84A0EDBE513FE1B06511E6782134164EC8E63365F8 + InstallerUrl: https://cdn.matchmycolor.com/colibri/26.1.2/Colibri_26.1.2-beta.4.exe + InstallerSha256: BD38A5D48F6138BB4FEB48287E8E61387817DBE30C00479DC53E98CF6362811A ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/m/matchmycolor/ColibriBeta/26.1.1.17719/matchmycolor.ColibriBeta.locale.en-US.yaml b/manifests/m/matchmycolor/ColibriBeta/26.1.2.17725/matchmycolor.ColibriBeta.locale.en-US.yaml similarity index 95% rename from manifests/m/matchmycolor/ColibriBeta/26.1.1.17719/matchmycolor.ColibriBeta.locale.en-US.yaml rename to manifests/m/matchmycolor/ColibriBeta/26.1.2.17725/matchmycolor.ColibriBeta.locale.en-US.yaml index 0b46e117509ca..0d3c19773094f 100644 --- a/manifests/m/matchmycolor/ColibriBeta/26.1.1.17719/matchmycolor.ColibriBeta.locale.en-US.yaml +++ b/manifests/m/matchmycolor/ColibriBeta/26.1.2.17725/matchmycolor.ColibriBeta.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: matchmycolor.ColibriBeta -PackageVersion: 26.1.1.17719 +PackageVersion: 26.1.2.17725 PackageLocale: en-US Publisher: matchmycolor PublisherUrl: https://www.matchmycolor.com/ diff --git a/manifests/m/matchmycolor/ColibriBeta/26.1.1.17719/matchmycolor.ColibriBeta.yaml b/manifests/m/matchmycolor/ColibriBeta/26.1.2.17725/matchmycolor.ColibriBeta.yaml similarity index 86% rename from manifests/m/matchmycolor/ColibriBeta/26.1.1.17719/matchmycolor.ColibriBeta.yaml rename to manifests/m/matchmycolor/ColibriBeta/26.1.2.17725/matchmycolor.ColibriBeta.yaml index c8f936d0fdb84..30a2ccc6470ad 100644 --- a/manifests/m/matchmycolor/ColibriBeta/26.1.1.17719/matchmycolor.ColibriBeta.yaml +++ b/manifests/m/matchmycolor/ColibriBeta/26.1.2.17725/matchmycolor.ColibriBeta.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: matchmycolor.ColibriBeta -PackageVersion: 26.1.1.17719 +PackageVersion: 26.1.2.17725 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/m/mmozeiko/wcap/.validation b/manifests/m/mmozeiko/wcap/.validation new file mode 100644 index 0000000000000..f0ffb688eb94f --- /dev/null +++ b/manifests/m/mmozeiko/wcap/.validation @@ -0,0 +1 @@ +{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"5f3b09e6-7d03-447a-aa47-6cd92c547f24","TestPlan":"Validation-Domain","PackagePath":"manifests/m/mmozeiko/wcap/2025.11.27","CommitId":"a55a17188a85704462e23cdac2721019476f4bde"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/m/mmozeiko/wcap/2025.05.26/mmozeiko.wcap.installer.yaml b/manifests/m/mmozeiko/wcap/2025.11.27/mmozeiko.wcap.installer.yaml similarity index 65% rename from manifests/m/mmozeiko/wcap/2025.05.26/mmozeiko.wcap.installer.yaml rename to manifests/m/mmozeiko/wcap/2025.11.27/mmozeiko.wcap.installer.yaml index 3331864283408..b62a4cf57bf54 100644 --- a/manifests/m/mmozeiko/wcap/2025.05.26/mmozeiko.wcap.installer.yaml +++ b/manifests/m/mmozeiko/wcap/2025.11.27/mmozeiko.wcap.installer.yaml @@ -1,25 +1,25 @@ -# Created with komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: mmozeiko.wcap -PackageVersion: 2025.05.26 +PackageVersion: 2025.11.27 InstallerType: portable Scope: user UpgradeBehavior: uninstallPrevious Installers: - Architecture: x64 InstallerUrl: https://raw.githubusercontent.com/wiki/mmozeiko/wcap/wcap-x64.exe - InstallerSha256: 207E9401D2334DB4886E1BB097A6144B48148C31D63ED2B84DE6986376111E27 + InstallerSha256: 4BD124FEBF537F0F569BD5CB7486DDBB9E664B509F39E421E6949767829B6BE6 UnsupportedOSArchitectures: - x86 - arm - arm64 - Architecture: arm64 InstallerUrl: https://raw.githubusercontent.com/wiki/mmozeiko/wcap/wcap-arm64.exe - InstallerSha256: E66EBFDDEEBA6D8AD2D593BED5A02ACD58DD1BAAB740A9E82B19F1F72B8BA2B0 + InstallerSha256: 1F8E6DFAB3B2E87E7570340173B021109A699D64CA656E255A15FB83E126E2D7 UnsupportedOSArchitectures: - x86 - x64 - arm ManifestType: installer -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/m/mmozeiko/wcap/2025.05.26/mmozeiko.wcap.locale.en-US.yaml b/manifests/m/mmozeiko/wcap/2025.11.27/mmozeiko.wcap.locale.en-US.yaml similarity index 58% rename from manifests/m/mmozeiko/wcap/2025.05.26/mmozeiko.wcap.locale.en-US.yaml rename to manifests/m/mmozeiko/wcap/2025.11.27/mmozeiko.wcap.locale.en-US.yaml index 9c35e5c9759ca..d59a412f36447 100644 --- a/manifests/m/mmozeiko/wcap/2025.05.26/mmozeiko.wcap.locale.en-US.yaml +++ b/manifests/m/mmozeiko/wcap/2025.11.27/mmozeiko.wcap.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: mmozeiko.wcap -PackageVersion: 2025.05.26 +PackageVersion: 2025.11.27 PackageLocale: en-US Publisher: Mārtiņš Možeiko PublisherUrl: https://github.com/mmozeiko @@ -13,11 +13,10 @@ License: Unlicense LicenseUrl: https://unlicense.org/ ShortDescription: Small and efficient screen recording utility for Windows 10 and 11. Description: > - wcap uses Windows.Graphics.Capture API available since Windows 10 version - 1903, May 2019 Update (19H1) to capture contents of window or whole monitor. - Captured texture is submitted to Media Foundation to encode video to mp4 file - with hardware accelerated codec. Using capture from compositor and hardware - accelerated encoder allows it to consume very little CPU and memory. + wcap uses Windows.Graphics.Capture API available since Windows 10 version 1903, May 2019 Update + (19H1) to capture contents of window or whole monitor. Captured texture is submitted to Media + Foundation to encode video to mp4 file with hardware accelerated codec. Using capture from + compositor and hardware accelerated encoder allows it to consume very little CPU and memory. Moniker: wcap Tags: - bandicam @@ -28,4 +27,4 @@ Tags: - video - vlc ManifestType: defaultLocale -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/m/mmozeiko/wcap/2025.05.26/mmozeiko.wcap.yaml b/manifests/m/mmozeiko/wcap/2025.11.27/mmozeiko.wcap.yaml similarity index 57% rename from manifests/m/mmozeiko/wcap/2025.05.26/mmozeiko.wcap.yaml rename to manifests/m/mmozeiko/wcap/2025.11.27/mmozeiko.wcap.yaml index adfb74bfdd149..ffeb249b7133e 100644 --- a/manifests/m/mmozeiko/wcap/2025.05.26/mmozeiko.wcap.yaml +++ b/manifests/m/mmozeiko/wcap/2025.11.27/mmozeiko.wcap.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.11.2 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: mmozeiko.wcap -PackageVersion: 2025.05.26 +PackageVersion: 2025.11.27 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/m/mulhamna/jirac/2.3.0/mulhamna.jirac.installer.yaml b/manifests/m/mulhamna/jirac/2.3.0/mulhamna.jirac.installer.yaml new file mode 100644 index 0000000000000..73397ab81f37a --- /dev/null +++ b/manifests/m/mulhamna/jirac/2.3.0/mulhamna.jirac.installer.yaml @@ -0,0 +1,15 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json +PackageIdentifier: mulhamna.jirac +PackageVersion: 2.3.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: + - RelativeFilePath: jirac-windows-x86_64.exe + PortableCommandAlias: jirac +ReleaseDate: 2026-06-15 +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/mulhamna/jira-commands/releases/download/v2.3.0/jirac-windows-x86_64.zip + InstallerSha256: f6f1259b151555fada6424707df2954f9f5b9df806e8c982b9600069977c2505 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/m/mulhamna/jirac/2.3.0/mulhamna.jirac.locale.en-US.yaml b/manifests/m/mulhamna/jirac/2.3.0/mulhamna.jirac.locale.en-US.yaml new file mode 100644 index 0000000000000..c4a16fa2faf5f --- /dev/null +++ b/manifests/m/mulhamna/jirac/2.3.0/mulhamna.jirac.locale.en-US.yaml @@ -0,0 +1,23 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json +PackageIdentifier: mulhamna.jirac +PackageVersion: 2.3.0 +PackageLocale: en-US +Publisher: mulhamna +PublisherUrl: https://github.com/mulhamna +PublisherSupportUrl: https://github.com/mulhamna/jira-commands/issues +Author: mulhamna +PackageName: jirac +PackageUrl: https://github.com/mulhamna/jira-commands +License: MIT OR Apache-2.0 +LicenseUrl: https://github.com/mulhamna/jira-commands/blob/main/LICENSE +ShortDescription: Jira terminal client with TUI, MCP support, and release archives for Windows, macOS, and Linux. +Description: jirac is a Rust-based Jira CLI with interactive TUI flows, issue transitions, comments, worklogs, attachments, and jirac-mcp for editor and agent integrations. +Moniker: jirac +Tags: + - jira + - atlassian + - cli + - tui + - mcp +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/m/mulhamna/jirac/2.3.0/mulhamna.jirac.yaml b/manifests/m/mulhamna/jirac/2.3.0/mulhamna.jirac.yaml new file mode 100644 index 0000000000000..5c443ee691d52 --- /dev/null +++ b/manifests/m/mulhamna/jirac/2.3.0/mulhamna.jirac.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json +PackageIdentifier: mulhamna.jirac +PackageVersion: 2.3.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/n/Nethermind/Nethermind/1.38.1/Nethermind.Nethermind.installer.yaml b/manifests/n/Nethermind/Nethermind/1.38.1/Nethermind.Nethermind.installer.yaml new file mode 100644 index 0000000000000..40b15dbe6fefa --- /dev/null +++ b/manifests/n/Nethermind/Nethermind/1.38.1/Nethermind.Nethermind.installer.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Nethermind.Nethermind +PackageVersion: 1.38.1 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: nethermind.exe + PortableCommandAlias: nethermind +InstallModes: +- silent +UpgradeBehavior: uninstallPrevious +Commands: +- nethermind +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/NethermindEth/nethermind/releases/download/1.38.1/nethermind-1.38.1-9c365772-windows-x64.zip + InstallerSha256: F4FACED2F81641C525510E20B1A279BAB45BA88F4A0AE11AF48F9B9EC54A29B9 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-06-15 diff --git a/manifests/n/Nethermind/Nethermind/1.38.1/Nethermind.Nethermind.locale.en-US.yaml b/manifests/n/Nethermind/Nethermind/1.38.1/Nethermind.Nethermind.locale.en-US.yaml new file mode 100644 index 0000000000000..3970e2759d068 --- /dev/null +++ b/manifests/n/Nethermind/Nethermind/1.38.1/Nethermind.Nethermind.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Nethermind.Nethermind +PackageVersion: 1.38.1 +PackageLocale: en-US +Publisher: Demerzel Solutions Limited +PublisherUrl: https://nethermind.io +PublisherSupportUrl: https://discord.gg/GXJFaYk +PrivacyUrl: https://nethermind.io/legal +Author: Demerzel Solutions Limited +PackageName: Nethermind +PackageUrl: https://nethermind.io/nethermind-client +License: LGPL-3.0-only +LicenseUrl: https://spdx.org/licenses/LGPL-3.0-only.html +Copyright: 2026 Demerzel Solutions Limited +ShortDescription: A robust, high-performance execution client for Ethereum node operators. +Description: |- + The Nethermind Ethereum execution client, built on .NET, delivers industry-leading performance in syncing and tip-of-chain processing. + With its modular design and plugin system, it offers extensibility and features for new chains. + As one of the most adopted execution clients on Ethereum, Nethermind plays a crucial role in enhancing the diversity and resilience of the Ethereum ecosystem. +Moniker: nethermind +Tags: +- blockchain +- ethereum +- evm +ReleaseNotesUrl: https://github.com/NethermindEth/nethermind/releases/tag/1.38.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/Nethermind/Nethermind/1.38.1/Nethermind.Nethermind.yaml b/manifests/n/Nethermind/Nethermind/1.38.1/Nethermind.Nethermind.yaml new file mode 100644 index 0000000000000..ec78a9a973041 --- /dev/null +++ b/manifests/n/Nethermind/Nethermind/1.38.1/Nethermind.Nethermind.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Nethermind.Nethermind +PackageVersion: 1.38.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/o/ONFStudios/OreNoFusen/4.0.1/ONFStudios.OreNoFusen.installer.yaml b/manifests/o/ONFStudios/OreNoFusen/4.0.1/ONFStudios.OreNoFusen.installer.yaml new file mode 100644 index 0000000000000..2d8fb3f8fa51f --- /dev/null +++ b/manifests/o/ONFStudios/OreNoFusen/4.0.1/ONFStudios.OreNoFusen.installer.yaml @@ -0,0 +1,17 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ONFStudios.OreNoFusen +PackageVersion: 4.0.1 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +ReleaseDate: 2026-06-15 +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\ore-no-fusen' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ore-no-fusen/ore-no-fusen/releases/download/v4.0.1/ore-no-fusen_4.0.1_x64-setup.exe + InstallerSha256: C6148A3A088ACDCF346F85277813DFFDCAFD35756BD61CB80819EB2F7A796A71 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/ONFStudios/OreNoFusen/4.0.1/ONFStudios.OreNoFusen.locale.en-US.yaml b/manifests/o/ONFStudios/OreNoFusen/4.0.1/ONFStudios.OreNoFusen.locale.en-US.yaml new file mode 100644 index 0000000000000..ffe24a8268408 --- /dev/null +++ b/manifests/o/ONFStudios/OreNoFusen/4.0.1/ONFStudios.OreNoFusen.locale.en-US.yaml @@ -0,0 +1,42 @@ +# 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: ONFStudios.OreNoFusen +PackageVersion: 4.0.1 +PackageLocale: en-US +Publisher: ONF Studios +PublisherUrl: https://github.com/ore-no-fusen +PublisherSupportUrl: https://github.com/ore-no-fusen/ore-no-fusen/issues +PackageName: 俺の付箋 +PackageUrl: https://github.com/ore-no-fusen/ore-no-fusen +License: MIT +LicenseUrl: https://github.com/ore-no-fusen/ore-no-fusen/blob/HEAD/LICENSE +Copyright: Copyright (c) ONF Studios +ShortDescription: A fast sticky note app that stays on your desktop +Description: |- + 俺の付箋 (Ore no Fusen) is a desktop sticky note app built with Tauri + Next.js. + Key features: + - Instant editing — cursor is ready on first click + - WYSIWYG rich text (bold, headings, lists, checkboxes) + - Auto-save with floating windows that stay on top + - Multi-window: each note is an independent window +Moniker: ore-no-fusen +Tags: +- desktop +- notes +- productivity +- sticky-notes +ReleaseNotes: |- + v4.0.1 + 🐛 修正 / Bug Fixes + - build-msix.ps1 を署名なし化+UTF-8 BOM で文字化け修正、手順書追記 (18ff193) + 📦 その他 / Other + - 署名失敗を直すパッチ (9a4b8f6) + - Do Release の戻しでの再テストをスキップ+運用補足を手順書に追記 (96e56fa) + Full Changelog: v4.0.0...v4.0.1 +ReleaseNotesUrl: https://github.com/ore-no-fusen/ore-no-fusen/releases/tag/v4.0.1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/ore-no-fusen/ore-no-fusen/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/ONFStudios/OreNoFusen/4.0.1/ONFStudios.OreNoFusen.yaml b/manifests/o/ONFStudios/OreNoFusen/4.0.1/ONFStudios.OreNoFusen.yaml new file mode 100644 index 0000000000000..66107e9623f05 --- /dev/null +++ b/manifests/o/ONFStudios/OreNoFusen/4.0.1/ONFStudios.OreNoFusen.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: ONFStudios.OreNoFusen +PackageVersion: 4.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/o/Objective/Trapeze/26.4.42420.3/Objective.Trapeze.locale.en-US.yaml b/manifests/o/Objective/Trapeze/26.4.42420.3/Objective.Trapeze.locale.en-US.yaml deleted file mode 100644 index 8c15682ced82c..0000000000000 --- a/manifests/o/Objective/Trapeze/26.4.42420.3/Objective.Trapeze.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Objective.Trapeze -PackageVersion: 26.4.42420.3 -PackageLocale: en-US -Publisher: Objective Corporation Limited. -PublisherUrl: https://www.objective.com/ -PublisherSupportUrl: https://www.objective.com/resources/help-centre -PrivacyUrl: https://www.objective.com/privacy-policy -Author: Objective Corporation Limited -PackageName: Objective Trapeze -PackageUrl: https://www.objective.com/products/objective-trapeze -License: Proprietary -LicenseUrl: https://www.objective.com/legal -Copyright: © Copyright 2026 Objective US -CopyrightUrl: https://www.objective.com/legal -ShortDescription: Software purpose-built for planning and building teams. All the tools you need to assess, compare, annotate and approve digital plans. -Tags: -- building -- construction -ReleaseNotes: |- - Changes - - Changed the default for web logins to allow SSO passthrough - Fixes - - Fix Salesforce/Arcus Global saving not working for content versions -ReleaseNotesUrl: https://www.objective.com/products/objective-trapeze-release-notes -PurchaseUrl: https://www.objective.com/products/objective-trapeze#pricing -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/o/Objective/Trapeze/26.4.42420.3/Objective.Trapeze.installer.yaml b/manifests/o/Objective/Trapeze/26.6.18240.0/Objective.Trapeze.installer.yaml similarity index 70% rename from manifests/o/Objective/Trapeze/26.4.42420.3/Objective.Trapeze.installer.yaml rename to manifests/o/Objective/Trapeze/26.6.18240.0/Objective.Trapeze.installer.yaml index 4a7905a91c733..95310dc26f48c 100644 --- a/manifests/o/Objective/Trapeze/26.4.42420.3/Objective.Trapeze.installer.yaml +++ b/manifests/o/Objective/Trapeze/26.6.18240.0/Objective.Trapeze.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Objective.Trapeze -PackageVersion: 26.4.42420.3 +PackageVersion: 26.6.18240.0 InstallerType: wix Scope: machine InstallerSwitches: @@ -21,17 +21,17 @@ FileExtensions: - tif - tiff - tpz -ReleaseDate: 2026-04-29 +ReleaseDate: 2026-06-16 AppsAndFeaturesEntries: - UpgradeCode: '{52B39D54-4513-49E0-B8DD-557D8CA64FAF}' Installers: - Architecture: x86 InstallerUrl: https://s3-ap-southeast-2.amazonaws.com/trapezedownload.objective.com/Objective_Trapeze_x86.msi - InstallerSha256: 4BF7CF0E2025DD17B2A22C8355C2468694E4565036E43321AB3EB7F3FD8F1FFA - ProductCode: '{08B63FB9-C31C-434D-8FB5-21A2F07F16A3}' + InstallerSha256: B28D7B1B4B8573B8537C02BE1B5F3D611C350AE3AD083E1A222CFAC840351AC0 + ProductCode: '{DA4CFA8D-FAEB-4283-B3B8-1DCEA9E2AC70}' - Architecture: x64 InstallerUrl: https://s3-ap-southeast-2.amazonaws.com/trapezedownload.objective.com/Objective_Trapeze_x64.msi - InstallerSha256: 41F82DD126E071CEEE5866C32B9EF0A8DEAF89333CE5DDB64E4F47CDE21D3A7F - ProductCode: '{2724CCD7-8B88-4A33-A271-2A6318CF596F}' + InstallerSha256: A20BF8C39EDE382092D3EF04ED863176DE4FB75E47896356C62915948670EA6A + ProductCode: '{439ECA67-5189-4728-94D0-0DC5E8D7BA5F}' ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/o/Objective/Trapeze/26.6.18240.0/Objective.Trapeze.locale.en-US.yaml b/manifests/o/Objective/Trapeze/26.6.18240.0/Objective.Trapeze.locale.en-US.yaml new file mode 100644 index 0000000000000..938076c53c0bd --- /dev/null +++ b/manifests/o/Objective/Trapeze/26.6.18240.0/Objective.Trapeze.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: Objective.Trapeze +PackageVersion: 26.6.18240.0 +PackageLocale: en-US +Publisher: Objective Corporation Limited. +PublisherUrl: https://www.objective.com/ +PublisherSupportUrl: https://www.objective.com/resources/help-centre +PrivacyUrl: https://www.objective.com/privacy-policy +Author: Objective Corporation Limited +PackageName: Objective Trapeze +PackageUrl: https://www.objective.com/products/objective-trapeze +License: Proprietary +LicenseUrl: https://www.objective.com/legal +Copyright: © Copyright 2026 Objective US +CopyrightUrl: https://www.objective.com/legal +ShortDescription: Software purpose-built for planning and building teams. All the tools you need to assess, compare, annotate and approve digital plans. +Tags: +- building +- construction +ReleaseNotes: |- + New + - A 64-bit Unicode version of Trapeze is now available + Changes + - Changed click-to-select annotations when selecting regions in document compare to allow only regions to be selected + - Changed the MSI installers to allow downgrades + - Changed the Trapeze version in About/System Information to include version type + - Changed to add settings for handling network errors when saving PDFs + - Changed to add support for opening OCR text when the OCR text tool is selected + - Changed to improve handling of large numbers of memory allocations + - Changed to show messages similar to bad bookmark messages for unsupported bookmarks + - Changed to show progress on slow Trapeze Cloud stamp uploads and slow stamp verification + Fixes + - Added a workaround for XML namespace error on WebDAV properties + - Fixed a memory leak + - Fixed a memory leak on error comparing regions in document compare + - Fixed a resource leak when dragging toolbars and panels + - Fixed a SharePoint forms based authentication endless loop + - Fixed a tools gallery issue when not themed + - Fixed an extra tool launcher separator when scanning isn't licensed + - Fixed an incorrect width calculation when opening bookmarks with italic or bold + - Fixed an issue with Classic mode re-selection after making changes to the document in another mode + - Fixed bookmark undo not handling Unicode characters, bold, italic or text colour + - Fixed PDF bookmark blue and red being reversed when reading bookmark colours + - Fixed PDF stamp dialog error display + - Fixed $pdftemp$ not working in the Run script command + - Fixed some copied SharePoint links not working when opened + - Fixed the Copy Text button showing in the rectangle selection panel when OCR isn't licensed +ReleaseNotesUrl: https://www.objective.com/products/objective-trapeze-release-notes +PurchaseUrl: https://www.objective.com/products/objective-trapeze#pricing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/Objective/Trapeze/26.4.42420.3/Objective.Trapeze.locale.zh-CN.yaml b/manifests/o/Objective/Trapeze/26.6.18240.0/Objective.Trapeze.locale.zh-CN.yaml similarity index 93% rename from manifests/o/Objective/Trapeze/26.4.42420.3/Objective.Trapeze.locale.zh-CN.yaml rename to manifests/o/Objective/Trapeze/26.6.18240.0/Objective.Trapeze.locale.zh-CN.yaml index fd362d7e07214..32df0af27f2c4 100644 --- a/manifests/o/Objective/Trapeze/26.4.42420.3/Objective.Trapeze.locale.zh-CN.yaml +++ b/manifests/o/Objective/Trapeze/26.6.18240.0/Objective.Trapeze.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Objective.Trapeze -PackageVersion: 26.4.42420.3 +PackageVersion: 26.6.18240.0 PackageLocale: zh-CN License: 专有软件 ShortDescription: 专为规划和施工团队打造的软件。提供评估、比较、批注和审批数字图纸所需的全套工具。 diff --git a/manifests/o/Objective/Trapeze/26.4.42420.3/Objective.Trapeze.yaml b/manifests/o/Objective/Trapeze/26.6.18240.0/Objective.Trapeze.yaml similarity index 89% rename from manifests/o/Objective/Trapeze/26.4.42420.3/Objective.Trapeze.yaml rename to manifests/o/Objective/Trapeze/26.6.18240.0/Objective.Trapeze.yaml index 458343a48f1ab..ae46dbed535b7 100644 --- a/manifests/o/Objective/Trapeze/26.4.42420.3/Objective.Trapeze.yaml +++ b/manifests/o/Objective/Trapeze/26.6.18240.0/Objective.Trapeze.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Objective.Trapeze -PackageVersion: 26.4.42420.3 +PackageVersion: 26.6.18240.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenAI/Codex/0.140.0/OpenAI.Codex.installer.yaml b/manifests/o/OpenAI/Codex/0.140.0/OpenAI.Codex.installer.yaml new file mode 100644 index 0000000000000..20c6d9d4dad0d --- /dev/null +++ b/manifests/o/OpenAI/Codex/0.140.0/OpenAI.Codex.installer.yaml @@ -0,0 +1,37 @@ +# 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: OpenAI.Codex +PackageVersion: 0.140.0 +InstallerType: zip +NestedInstallerType: portable +Commands: +- codex +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: codex-command-runner.exe + - RelativeFilePath: codex-windows-sandbox-setup.exe + - RelativeFilePath: codex-x86_64-pc-windows-msvc.exe + PortableCommandAlias: codex + InstallerUrl: https://github.com/openai/codex/releases/download/rust-v0.140.0/codex-x86_64-pc-windows-msvc.exe.zip + InstallerSha256: 2B985356725AAED62105AF55FFCDE27BC937C1ECF3A1E146FCF3575C1A293020 + Dependencies: + PackageDependencies: + - PackageIdentifier: BurntSushi.ripgrep.MSVC + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: codex-aarch64-pc-windows-msvc.exe + PortableCommandAlias: codex + - RelativeFilePath: codex-command-runner.exe + - RelativeFilePath: codex-windows-sandbox-setup.exe + InstallerUrl: https://github.com/openai/codex/releases/download/rust-v0.140.0/codex-aarch64-pc-windows-msvc.exe.zip + InstallerSha256: 1E7F48517AE742A85240B888C6D223BEE80C3490AA874910F175883BC0609B28 + Dependencies: + PackageDependencies: + - PackageIdentifier: BurntSushi.ripgrep.MSVC + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenAI/Codex/0.140.0/OpenAI.Codex.locale.en-US.yaml b/manifests/o/OpenAI/Codex/0.140.0/OpenAI.Codex.locale.en-US.yaml new file mode 100644 index 0000000000000..3858c94a8691c --- /dev/null +++ b/manifests/o/OpenAI/Codex/0.140.0/OpenAI.Codex.locale.en-US.yaml @@ -0,0 +1,166 @@ +# 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: OpenAI.Codex +PackageVersion: 0.140.0 +PackageLocale: en-US +Publisher: OpenAI, Inc. +PublisherUrl: https://github.com/openai +PublisherSupportUrl: https://github.com/openai/codex/issues +Author: OpenAI, Inc. +PackageName: Codex CLI +PackageUrl: https://github.com/openai/codex +License: Apache-2.0 +LicenseUrl: https://github.com/openai/codex/blob/HEAD/LICENSE +Copyright: Copyright 2025 OpenAI +CopyrightUrl: https://github.com/openai/codex/blob/HEAD/NOTICE +ShortDescription: Codex CLI is an open‑source local coding agent that runs in your terminal, letting you write, edit, and understand code without leaving the command line. +Moniker: codex +Tags: +- agent +- ai +- cli +- llm +- openai +ReleaseNotes: |- + New Features + - Added /usage views for daily, weekly, and cumulative account token activity. (#27925) + - /goal now preserves oversized text, large pasted blocks, and image attachments, including in remote app-server sessions. (#27508, #27509, #27510) + - Added permanent session deletion through codex delete, /delete, and app-server thread/delete, with confirmation safeguards and subagent cleanup. (#25018, #27476) + - Added /import for selectively importing setup, project configuration, and recent chats from Claude Code. (#27070, #27071, #27703) + - Typing @ now opens the unified mentions menu for files, plugins, and skills by default. (#27499) + - Added managed Amazon Bedrock API-key authentication and encrypted local storage for CLI and MCP OAuth credentials. (#27443, #27689, #27504, #27535, #27539, #27541) + Bug Fixes + - Corrupted SQLite state databases are now backed up and rebuilt automatically from rollout data, including malformed database-directory cases. (#26859, #27719) + - Prevented /review from crashing when Esc is pressed with queued guidance, while preserving that guidance when the review is canceled. (#22879) + - Improved MCP reliability by retrying transient startup failures, reporting unusable OAuth credentials as logged out, and preserving explicitly disabled servers. (#25147, #26713, #27414) + - Fixed remote plugin uninstall requests and correctly surfaced apps requiring authentication during installation. (#27085, #27223) + - Persisted “Don’t remind me” update dismissals reliably and cleared stale running-hook indicators after completed turns. (#27619, #27783) + - Non-TTY background commands can now be interrupted with Ctrl-C while preserving their final output and exit status. (#26734) + Documentation + - Clarified contributor guidance around keeping crate APIs narrow and supporting Linux, macOS, and Windows. (#27939, #27966) + Chores + - Improved responsiveness for large repositories and long sessions by preserving Git’s built-in filesystem monitor, avoiding duplicate history reads, accelerating archive lookup, and caching turn-diff rendering. (#26880, #27031, #27276, #27489) + - Removed the experimental /realtime voice controls and related audio dependencies from the TUI. (#27801) + Changelog + Full Changelog: rust-v0.139.0...rust-v0.140.0 + - #26880 [codex] preserve fsmonitor for worktree Git reads @tamird + - #27085 Use server app auth requirements for remote plugin install @xl-openai + - #27098 [codex] Return workspace directory installed plugins @xl-openai + - #27007 multi-agent: add path-based v2 activity tracking @jif-oai + - #27166 app-server: clear stale thread watches after v2 agent interruption @jif-oai + - #27080 [codex] Ignore pending PR review comments @anp-oai + - #26420 Avoid no-op backfill state writes @zanie-oai + - #27031 Avoid rereading rollout history during cold resume @zanie-oai + - #22879 fix: Prevent /review crash when entering Esc on steer message @canvrno-oai + - #27173 app-server: reject direct input to multi-agent v2 sub-agents @jif-oai + - #27184 Load selected executor skills through extensions @jif-oai + - #26835 [codex] Test extension API contracts @anp-oai + - #27063 [codex-analytics] add extensible feature thread sources @marksteinbrick-oai + - #26479 [codex] Speed up local nextest runs @anp-oai + - #27223 fix: use plugin service route for remote uninstall @ericning-o + - #22685 Add SOCKS5 TCP MITM coverage @winston-openai + - #26681 Allow creating a new goal after completion @etraut-openai + - #26711 Reduce TUI legacy core dependencies @etraut-openai + - #27110 [1/6] Add Python goal routing foundation @aibrahim-oai + - #27191 Route hosted Apps MCP through extensions @jif-oai + - #26830 [codex] Characterize global instruction lifecycle @anp-oai + - #26713 [codex] Report unusable MCP OAuth credentials as logged out @anp-oai + - #26734 [codex] Handle Ctrl-C for non-TTY unified exec @pakrym-oai + - #27116 Stop mirroring Codex user input into realtime @guinness-oai + - #27111 [2/6] Add private Python goal operations @aibrahim-oai + - #25147 [codex] Retry streamable HTTP initialize failures @ssetty-oai + - #27257 [codex] Tighten MCP connection manager API visibility and order @aibrahim-oai + - #26701 TUI Plugin Sharing 1 - add remote plugin identity @canvrno-oai + - #27129 feat: use provider defaults for memory models @celia-oai + - #27094 Add spans to build_tool_router @mchen-oai + - #24999 Add per-session realtime model and version overrides @guinness-oai + - #27078 [codex-analytics] emit goal lifecycle analytics @marksteinbrick-oai + - #27285 [codex] Fix post-merge analytics integration failures @anp-oai + - #27107 Add spans to run_turn @mchen-oai + - #27261 [codex] Make MCP connection startup fallible @aibrahim-oai + - #27174 feat: keep child MCP warnings out of parent transcript @jif-oai + - #27198 Use plugin-service MCP as the hosted plugin runtime @jif-oai + - #27375 [codex] Tag multi-agent spawn metrics with version @jif-oai + - #27383 Remove async-trait from extension contributors @jif-oai + - #27259 Use latest-wins MCP manager replacement @charliemarsh-oai + - #27264 [codex] Store compact window id in rollout @pakrym-oai + - #27280 [codex] add io PathUri native conversion APIs @anp-oai + - #27315 [codex] link Windows releases with LLD @tamird + - #27276 Reduce archive rollout lookup CPU @etraut-openai + - #27299 [codex] Outline ToolExecutor handler bodies @anp-oai + - #27391 Index visible thread list ordering @zanie-oai + - #27407 Fix compressed rollout search path matching @jif-oai + - #27304 [codex] Remove async_trait from ToolExecutor @anp-oai + - #26041 Add app-server background terminal process APIs @etraut-openai + - #25018 Add app-server thread/delete API @etraut-openai + - #26859 fix: Auto-recover from corrupted sqlite databases @ddr-oai + - #27064 [codex] remove blocking external agent migration flow @stefanstokic-oai + - #27421 [codex] Raise app-server recursion limit @anp-oai + - #27062 [codex] Retry transient Guardian review failures @kbazzi + - #27065 [codex] extract external agent import picker renderer @stefanstokic-oai + - #26409 [plugins] Inject remote_plugin_id into install elicitations @adaley-openai + - #27439 feat: make ThreadStore available on ThreadExtensionDependencies @bolinfest + - #27343 Guard core test subprocess cleanup @etraut-openai + - #27070 [codex] add external agent import picker UX @stefanstokic-oai + - #27321 [codex] Move release platform rules into bazel package @anp-oai + - #27071 [codex] add /import for external agents @stefanstokic-oai + - #27311 [codex] Skip local curated discovery for remote plugins @xl-openai + - #27414 [codex] Preserve disabled MCP servers across runtime overlays @e-provencher + - #27312 [codex] reuse release artifacts for npm staging @tamird + - #27319 Forward standalone assistant output to realtime @guinness-oai + - #27057 [codex] Add reusable OTEL gauge instruments @richardopenai + - #27245 image: add shared data URL preparation utilities @fjord-oai + - #27392 [codex-analytics] emit internally started turn events @marksteinbrick-oai + - #27322 [codex] Preserve build-script dependencies in rules_rs annotations @anp-oai + - #27489 core: cache turn diff rendering @nornagon-openai + - #27465 [codex] Remove redundant plugin app auth state @xl-openai + - #27484 Remove TUI legacy core test_support dependencies @etraut-openai + - #27476 Add session delete commands in CLI and TUI @etraut-openai + - #27247 core: resize all history images behind a feature flag @fjord-oai + - #27487 Trim TUI legacy telemetry and migration dependencies @etraut-openai + - #27438 [codex] Add token budget context feature @pakrym-oai + - #27501 [codex] Expand hosted web search citation guidance @yuning-oai + - #27526 tools: simplify default tool search text @sayan-oai + - #27488 [codex] Add new context window tool @pakrym-oai + - #27443 feat: add Bedrock API key as a managed auth mode @celia-oai + - #27532 [codex] Add comp_hash to model metadata @aibrahim-oai + - #27246 core: strip image detail from Responses Lite requests @fjord-oai + - #27517 [codex] Pass auth mode to plugin manager @xl-openai + - #27520 [codex] Compact when comp_hash changes @aibrahim-oai + - #27518 [codex] Add context remaining tool @pakrym-oai + - #27266 image: preserve metadata when resizing prompt images @fjord-oai + - #27103 [codex-analytics] report cached input tokens for v2 compaction @rhan-oai + - #27356 Use generic search metadata for dynamic tools @sayan-oai + - #27082 [codex-analytics] Emit structured compaction codex errors @rhan-oai + - #26513 [codex] Tune cloud config cache intervals @alexsong-oai + - #27387 skills: make backend plugin skills invocable without an executor @jif-oai + - #27403 skills: cache remote catalog failures per thread @jif-oai + - #27573 core: enable remote compaction v2 by default @jif-oai + - #27388 skills: expose remote skill resource tools @jif-oai + - #27569 multi-agent: move concurrency guidance into v2 usage hints @jif-oai + - #27585 nit: cap error @jif-oai + - #27404 test: cover referenced backend skill reads without an executor @jif-oai + - #27591 skills: render catalog locators by authority @jif-oai + - #27413 skills: decouple the skills extension from core @jif-oai + - #27527 [codex] publish npm packages concurrently @tamird + - #27528 [codex] publish DotSlash alongside npm @tamird + - #27529 [codex] download only release artifacts @tamird + - #27490 Remove TUI legacy Windows sandbox dependency @etraut-openai + - #27483 Emit plugin ID on MCP tool call analytics events @chrisdong-oai + - #27417 Print TUI session info on fatal exits @etraut-openai + - #27507 lint: allow self-documenting builder arguments @anp-oai + - #27420 [codex] Propagate plugin app categories @charlesgong-openai + - #27454 [codex] add cross-platform filesystem adapter coverage @anp-oai + - #27415 [codex] Surface runtime warnings in codex exec @anp-oai + - #27639 [codex] revert concurrent npm publishing @tamird + - #27646 feat: disable orchestrator skills for now @jif-oai + - #27323 [codex] Provide ARM64 MinGW powl compatibility support @anp-oai + - #27433 [codex] remove EnvironmentPathRef @anp-oai + - #27424 [codex] migrate ExecutorFileSystem paths to PathUri @anp-oai +ReleaseNotesUrl: https://github.com/openai/codex/releases/tag/rust-v0.140.0 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://developers.openai.com/codex/cli +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenAI/Codex/0.140.0/OpenAI.Codex.yaml b/manifests/o/OpenAI/Codex/0.140.0/OpenAI.Codex.yaml new file mode 100644 index 0000000000000..daedb3d2676ba --- /dev/null +++ b/manifests/o/OpenAI/Codex/0.140.0/OpenAI.Codex.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: OpenAI.Codex +PackageVersion: 0.140.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenCLICollective/codereview-cli/0.3.135/OpenCLICollective.codereview-cli.installer.yaml b/manifests/o/OpenCLICollective/codereview-cli/0.3.135/OpenCLICollective.codereview-cli.installer.yaml new file mode 100644 index 0000000000000..95cd3c4bb4e56 --- /dev/null +++ b/manifests/o/OpenCLICollective/codereview-cli/0.3.135/OpenCLICollective.codereview-cli.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: OpenCLICollective.codereview-cli +PackageVersion: 0.3.135 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: cr.exe + PortableCommandAlias: cr +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/open-cli-collective/codereview-cli/releases/download/v0.3.135/cr_v0.3.135_windows_amd64.zip + InstallerSha256: 9F0F96CA77FA99EBDE4E5F58B775C23B549919BE22F0EBB048D0EF33D1DB2023 +- Architecture: arm64 + InstallerUrl: https://github.com/open-cli-collective/codereview-cli/releases/download/v0.3.135/cr_v0.3.135_windows_arm64.zip + InstallerSha256: 727F06EA8FECC103136A048010B0C4EBFB71EA62318CCF3F79D71612195422E3 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-06-15 diff --git a/manifests/o/OpenCLICollective/codereview-cli/0.3.135/OpenCLICollective.codereview-cli.locale.en-US.yaml b/manifests/o/OpenCLICollective/codereview-cli/0.3.135/OpenCLICollective.codereview-cli.locale.en-US.yaml new file mode 100644 index 0000000000000..da5b1d3e34a86 --- /dev/null +++ b/manifests/o/OpenCLICollective/codereview-cli/0.3.135/OpenCLICollective.codereview-cli.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: OpenCLICollective.codereview-cli +PackageVersion: 0.3.135 +PackageLocale: en-US +Publisher: Open CLI Collective +PublisherUrl: https://github.com/open-cli-collective +PublisherSupportUrl: https://github.com/open-cli-collective/codereview-cli/issues +PackageName: Code Review CLI +PackageUrl: https://github.com/open-cli-collective/codereview-cli +License: MIT +LicenseUrl: https://github.com/open-cli-collective/codereview-cli/blob/main/LICENSE +ShortDescription: Automated pull-request review CLI +Description: |- + cr runs automated pull-request reviews, records review state locally, posts + review output back to GitHub, and keeps durable metadata to resume, repair, + inspect, and prune review runs. +Tags: +- code-review +- pull-request +- github +- cli +- automation +ReleaseNotesUrl: https://github.com/open-cli-collective/codereview-cli/releases/tag/v0.3.135 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenCLICollective/codereview-cli/0.3.135/OpenCLICollective.codereview-cli.yaml b/manifests/o/OpenCLICollective/codereview-cli/0.3.135/OpenCLICollective.codereview-cli.yaml new file mode 100644 index 0000000000000..0c063eaeddae6 --- /dev/null +++ b/manifests/o/OpenCLICollective/codereview-cli/0.3.135/OpenCLICollective.codereview-cli.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: OpenCLICollective.codereview-cli +PackageVersion: 0.3.135 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenCLICollective/codereview-cli/0.3.141/OpenCLICollective.codereview-cli.installer.yaml b/manifests/o/OpenCLICollective/codereview-cli/0.3.141/OpenCLICollective.codereview-cli.installer.yaml new file mode 100644 index 0000000000000..8f3756f66b3c5 --- /dev/null +++ b/manifests/o/OpenCLICollective/codereview-cli/0.3.141/OpenCLICollective.codereview-cli.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: OpenCLICollective.codereview-cli +PackageVersion: 0.3.141 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: cr.exe + PortableCommandAlias: cr +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/open-cli-collective/codereview-cli/releases/download/v0.3.141/cr_v0.3.141_windows_amd64.zip + InstallerSha256: 473520D702F02C30C65B95FD9B390C5C46DC56D62C7823C526D4F7DF9F962451 +- Architecture: arm64 + InstallerUrl: https://github.com/open-cli-collective/codereview-cli/releases/download/v0.3.141/cr_v0.3.141_windows_arm64.zip + InstallerSha256: D447DA306591F0F934905B17C3C6ED1FB55A586955E9FEDC2EAAED770A962782 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-06-15 diff --git a/manifests/o/OpenCLICollective/codereview-cli/0.3.141/OpenCLICollective.codereview-cli.locale.en-US.yaml b/manifests/o/OpenCLICollective/codereview-cli/0.3.141/OpenCLICollective.codereview-cli.locale.en-US.yaml new file mode 100644 index 0000000000000..4cc7a1c0d364f --- /dev/null +++ b/manifests/o/OpenCLICollective/codereview-cli/0.3.141/OpenCLICollective.codereview-cli.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: OpenCLICollective.codereview-cli +PackageVersion: 0.3.141 +PackageLocale: en-US +Publisher: Open CLI Collective +PublisherUrl: https://github.com/open-cli-collective +PublisherSupportUrl: https://github.com/open-cli-collective/codereview-cli/issues +PackageName: Code Review CLI +PackageUrl: https://github.com/open-cli-collective/codereview-cli +License: MIT +LicenseUrl: https://github.com/open-cli-collective/codereview-cli/blob/main/LICENSE +ShortDescription: Automated pull-request review CLI +Description: |- + cr runs automated pull-request reviews, records review state locally, posts + review output back to GitHub, and keeps durable metadata to resume, repair, + inspect, and prune review runs. +Tags: +- code-review +- pull-request +- github +- cli +- automation +ReleaseNotesUrl: https://github.com/open-cli-collective/codereview-cli/releases/tag/v0.3.141 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenCLICollective/codereview-cli/0.3.141/OpenCLICollective.codereview-cli.yaml b/manifests/o/OpenCLICollective/codereview-cli/0.3.141/OpenCLICollective.codereview-cli.yaml new file mode 100644 index 0000000000000..71eb6d28c3edc --- /dev/null +++ b/manifests/o/OpenCLICollective/codereview-cli/0.3.141/OpenCLICollective.codereview-cli.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: OpenCLICollective.codereview-cli +PackageVersion: 0.3.141 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenCLICollective/codereview-cli/0.3.142/OpenCLICollective.codereview-cli.installer.yaml b/manifests/o/OpenCLICollective/codereview-cli/0.3.142/OpenCLICollective.codereview-cli.installer.yaml new file mode 100644 index 0000000000000..f5215dadd9e04 --- /dev/null +++ b/manifests/o/OpenCLICollective/codereview-cli/0.3.142/OpenCLICollective.codereview-cli.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: OpenCLICollective.codereview-cli +PackageVersion: 0.3.142 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: cr.exe + PortableCommandAlias: cr +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/open-cli-collective/codereview-cli/releases/download/v0.3.142/cr_v0.3.142_windows_amd64.zip + InstallerSha256: 6B932F89279BA1D5968B62CD8F01CF2E9AA0EA1EFBC504C0DCDA5E010371C273 +- Architecture: arm64 + InstallerUrl: https://github.com/open-cli-collective/codereview-cli/releases/download/v0.3.142/cr_v0.3.142_windows_arm64.zip + InstallerSha256: BBDD00C66566EBAAF419DCC5F3CE1907E1CDFB40C9654694F030C5E9564ACB05 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-06-16 diff --git a/manifests/o/OpenCLICollective/codereview-cli/0.3.142/OpenCLICollective.codereview-cli.locale.en-US.yaml b/manifests/o/OpenCLICollective/codereview-cli/0.3.142/OpenCLICollective.codereview-cli.locale.en-US.yaml new file mode 100644 index 0000000000000..19552bf3280fb --- /dev/null +++ b/manifests/o/OpenCLICollective/codereview-cli/0.3.142/OpenCLICollective.codereview-cli.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: OpenCLICollective.codereview-cli +PackageVersion: 0.3.142 +PackageLocale: en-US +Publisher: Open CLI Collective +PublisherUrl: https://github.com/open-cli-collective +PublisherSupportUrl: https://github.com/open-cli-collective/codereview-cli/issues +PackageName: Code Review CLI +PackageUrl: https://github.com/open-cli-collective/codereview-cli +License: MIT +LicenseUrl: https://github.com/open-cli-collective/codereview-cli/blob/main/LICENSE +ShortDescription: Automated pull-request review CLI +Description: |- + cr runs automated pull-request reviews, records review state locally, posts + review output back to GitHub, and keeps durable metadata to resume, repair, + inspect, and prune review runs. +Tags: +- code-review +- pull-request +- github +- cli +- automation +ReleaseNotesUrl: https://github.com/open-cli-collective/codereview-cli/releases/tag/v0.3.142 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenCLICollective/codereview-cli/0.3.142/OpenCLICollective.codereview-cli.yaml b/manifests/o/OpenCLICollective/codereview-cli/0.3.142/OpenCLICollective.codereview-cli.yaml new file mode 100644 index 0000000000000..d960c7d0be5cb --- /dev/null +++ b/manifests/o/OpenCLICollective/codereview-cli/0.3.142/OpenCLICollective.codereview-cli.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: OpenCLICollective.codereview-cli +PackageVersion: 0.3.142 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenCLICollective/codereview-cli/0.3.143/OpenCLICollective.codereview-cli.installer.yaml b/manifests/o/OpenCLICollective/codereview-cli/0.3.143/OpenCLICollective.codereview-cli.installer.yaml new file mode 100644 index 0000000000000..a5aea0c7a3933 --- /dev/null +++ b/manifests/o/OpenCLICollective/codereview-cli/0.3.143/OpenCLICollective.codereview-cli.installer.yaml @@ -0,0 +1,20 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: OpenCLICollective.codereview-cli +PackageVersion: 0.3.143 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: cr.exe + PortableCommandAlias: cr +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/open-cli-collective/codereview-cli/releases/download/v0.3.143/cr_v0.3.143_windows_amd64.zip + InstallerSha256: 4F90B9C894E6DFFFD44204F35E9E8EFA4BD97E463A8FAA3E9D59521AA7FE2E62 +- Architecture: arm64 + InstallerUrl: https://github.com/open-cli-collective/codereview-cli/releases/download/v0.3.143/cr_v0.3.143_windows_arm64.zip + InstallerSha256: D15FF3AA90AFD86DDF1EC582063323E0FD4B9734B06E1A1AA2A5523DD2832FBF +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-06-16 diff --git a/manifests/o/OpenCLICollective/codereview-cli/0.3.143/OpenCLICollective.codereview-cli.locale.en-US.yaml b/manifests/o/OpenCLICollective/codereview-cli/0.3.143/OpenCLICollective.codereview-cli.locale.en-US.yaml new file mode 100644 index 0000000000000..e71dda7d0009e --- /dev/null +++ b/manifests/o/OpenCLICollective/codereview-cli/0.3.143/OpenCLICollective.codereview-cli.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: OpenCLICollective.codereview-cli +PackageVersion: 0.3.143 +PackageLocale: en-US +Publisher: Open CLI Collective +PublisherUrl: https://github.com/open-cli-collective +PublisherSupportUrl: https://github.com/open-cli-collective/codereview-cli/issues +PackageName: Code Review CLI +PackageUrl: https://github.com/open-cli-collective/codereview-cli +License: MIT +LicenseUrl: https://github.com/open-cli-collective/codereview-cli/blob/main/LICENSE +ShortDescription: Automated pull-request review CLI +Description: |- + cr runs automated pull-request reviews, records review state locally, posts + review output back to GitHub, and keeps durable metadata to resume, repair, + inspect, and prune review runs. +Tags: +- code-review +- pull-request +- github +- cli +- automation +ReleaseNotesUrl: https://github.com/open-cli-collective/codereview-cli/releases/tag/v0.3.143 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenCLICollective/codereview-cli/0.3.143/OpenCLICollective.codereview-cli.yaml b/manifests/o/OpenCLICollective/codereview-cli/0.3.143/OpenCLICollective.codereview-cli.yaml new file mode 100644 index 0000000000000..2dfb92a049969 --- /dev/null +++ b/manifests/o/OpenCLICollective/codereview-cli/0.3.143/OpenCLICollective.codereview-cli.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: OpenCLICollective.codereview-cli +PackageVersion: 0.3.143 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/o/oxc-project/oxlint/1.70.0/oxc-project.oxlint.installer.yaml b/manifests/o/oxc-project/oxlint/1.70.0/oxc-project.oxlint.installer.yaml new file mode 100644 index 0000000000000..cf41ee4b6b905 --- /dev/null +++ b/manifests/o/oxc-project/oxlint/1.70.0/oxc-project.oxlint.installer.yaml @@ -0,0 +1,31 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: oxc-project.oxlint +PackageVersion: 1.70.0 +InstallerType: zip +NestedInstallerType: portable +Commands: +- oxlint +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: oxlint-i686-pc-windows-msvc.exe + PortableCommandAlias: oxlint + InstallerUrl: https://github.com/oxc-project/oxc/releases/download/apps_v1.70.0/oxlint-i686-pc-windows-msvc.zip + InstallerSha256: E86966E34CA976CF73683C4864D0B8BC553E75757C557A9E4A1C70F887829B2D +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: oxlint-x86_64-pc-windows-msvc.exe + PortableCommandAlias: oxlint + InstallerUrl: https://github.com/oxc-project/oxc/releases/download/apps_v1.70.0/oxlint-x86_64-pc-windows-msvc.zip + InstallerSha256: 0B20A8EE0CF4A651277EF9803954351722C50DB486475D28945CA041938D75A1 +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: oxlint-aarch64-pc-windows-msvc.exe + PortableCommandAlias: oxlint + InstallerUrl: https://github.com/oxc-project/oxc/releases/download/apps_v1.70.0/oxlint-aarch64-pc-windows-msvc.zip + InstallerSha256: 8E54BB8B9557CA66537B8D1681578F7E36A9C3CDF51D25851DCCBC61BD612A1D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/oxc-project/oxlint/1.70.0/oxc-project.oxlint.locale.en-US.yaml b/manifests/o/oxc-project/oxlint/1.70.0/oxc-project.oxlint.locale.en-US.yaml new file mode 100644 index 0000000000000..43df666166a37 --- /dev/null +++ b/manifests/o/oxc-project/oxlint/1.70.0/oxc-project.oxlint.locale.en-US.yaml @@ -0,0 +1,151 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: oxc-project.oxlint +PackageVersion: 1.70.0 +PackageLocale: en-US +Publisher: VoidZero Inc. & Contributors +PublisherUrl: https://oxc.rs/ +PublisherSupportUrl: https://github.com/oxc-project/oxc/issues +Author: VoidZero Inc. & Contributors +PackageName: oxlint +PackageUrl: https://oxc.rs/docs/guide/usage/linter.html +License: MIT +LicenseUrl: https://github.com/oxc-project/oxc/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024-present VoidZero Inc. & Contributors +CopyrightUrl: https://github.com/oxc-project/oxc/blob/HEAD/LICENSE +ShortDescription: oxlint is a blazing-fast JavaScript and TypeScript linter that is 50–100× faster than ESLint. It is designed to catch erroneous or useless code without requiring any configurations by default. +Tags: +- compiler +- javascript +- linter +- minifier +- parser +- transpiler +- typescript +ReleaseNotes: |- + Highlights + - 1490a0a linter/react: Implement react-compiler rule (#23202) (Boshen) + + 🚀 Features + - 5e1627d linter/unicorn: Flag all Error() calls without new in throw-new-error (#23363) (Cason Kervis) + - 2e8bda4 linter/vue: Implement no-dupe-keys rule (#23350) (bab) + - dd560ae linter/unicorn: Implement no-array-fill-with-reference-type rule (#23397) (Mikhail Baev) + - af36c2f linter: Add schema for react/jsx-curly-brace-presence (#23400) (WaterWhisperer) + - 47d34a3 linter: Add schema for react/jsx-handler-names (#23393) (WaterWhisperer) + - f4250d0 linter: Add schema for unicorn/import-style (#23386) (WaterWhisperer) + - 30c74ce linter: Add schema for jsx_a11y/no-noninteractive-element-to-interactive-role (#23384) (Sysix) + - cfbe8dc linter: Add schema for jsx_a11y/no-interactive-element-to-noninteractive-role (#23382) (WaterWhisperer) + - d15b7ff linter: Add schema for typescript/no-restricted-types (#23381) (WaterWhisperer) + - 028a811 linter: Add schema for jsx-a11y/media-has-caption (#23377) (Sysix) + - b3b1038 linter: Add schema for jsx-a11y/label-has-associated-control (#23376) (Sysix) + - 7ada6b2 linter: Add schema for jsx_a11y/no-distracting-elements (#23379) (WaterWhisperer) + - ee3dd49 linter: Add schema for jsx-a11y/img-redundant-alt (#23374) (Sysix) + - df5f8dd linter: Add short descriptions to most lint rules. (#23365) (Connor Shea) + - e3fd735 linter: Add schema for jsx_a11y/alt-text (#23369) (Sysix) + - 0f2fff4 linter: Add schema for react/exhaustive-deps (#23372) (Mikhail Baev) + - e3e4e10 linter: Add schema for react_perf/jsx-no-new-object-as-prop (#23368) (Mikhail Baev) + - 9366d44 linter: Add schema for unicorn/prefer-at (#23366) (WaterWhisperer) + - f57b55d linter: Add schema for typescript/array-type (#23355) (Sysix) + - 0dcf912 linter: Add schema for typescript/ban-ts-comment (#23354) (Sysix) + - 51fa83e linter: Add schema for react/no-did-update-set-state (#23357) (Mikhail Baev) + - 59db0bd linter: Add schema for consistent-generic-constructors (#23353) (Sysix) + - c4775c0 linter: Add schema for typescript/consistent-type-assertions (#23349) (Sysix) + - 6e516f7 linter: Add schema for typescript/consistent-type-imports (#23348) (Sysix) + - 012134d linter: Add schema for react/jsx-no-target-blank (#23345) (WaterWhisperer) + - 0806aae linter: Add schema for jsx_a11y/no-noninteractive-tabindex (#23337) (Mikhail Baev) + - 0708b5a linter: Add schema for react/jsx-filename-extension (#23315) (Mikhail Baev) + - 150bce1 linter: Add schema for typescript/no-empty-object-type (#23309) (Sysix) + - f9e36f1 linter: Add schema for typescript/no-duplicate-type-constituents (#23308) (Sysix) + - 937accf linter: Add schema for typescript/no-invalid-void-type (#23307) (Sysix) + - 3e042b9 linter: Add schema for typescript/no-misused-promises (#23306) (Sysix) + - da212d1 linter: Add schema for typescript/no-unnecessary-condition (#23305) (Sysix) + - f8f0d38 linter: Add schema for typescript/parameter-properties (#23304) (Sysix) + - 2275fc7 linter: Add schema for typescript/prefer-nullish-coalescing (#23302) (Sysix) + - d353858 linter: Add schema for typescript/prefer-string-starts-ends-with (#23301) (Sysix) + - 03060f5 linter: Add schema for typescript/triple-slash-reference (#23300) (Sysix) + - 6619cee linter: Add schema for promise/param-names (#23298) (Sysix) + - 8bf108e linter: Add schema for promise/catch-or-return (#23297) (Sysix) + - 48158d0 linter: Add schema for vitest/consistent-each-for (#23294) (Sysix) + - 7e74c98 linter: Add schema for vitest/consistent-test-filename (#23293) (Sysix) + - ff94d4a linter: Add schema for vitest/consistent-vitest-vi (#23292) (Sysix) + - 2409a10 linter: Add schema for vitest/prefer-import-in-mock (#23291) (Sysix) + - 3d782b7 linter: Add schema for react/no-unstable-nested-components (#23287) (Mikhail Baev) + - 0a0bc2f linter/jsx-a11y: Add allowedRedundantRoles option to no-redundant-roles (#22820) (bab) + - 80758a5 linter/vue: Implement no-side-effects-in-computed-properties rule (#23282) (bab) + - e3869ac linter: Add schema for react/no-object-type-as-default-prop (#23279) (Mikhail Baev) + - 4480609 linter: Add schema for react/jsx-props-no-spreading (#23276) (Mikhail Baev) + - 08d68a5 linter/react: Implement jsx-no-literals rule (#23145) (kapobajza) + - 9a2788b linter/unicorn: Implement prefer-export-from rule (#22935) (AliceLanniste) + - bdb723c linter/unicorn: Implement prefer-single-call rule (#23235) (Yuzhe Shi) + - 31543ed linter: Add schema for vue/define-props-destructuring (#23252) (Sysix) + - 21b6c3d linter: Add schema for oxc/no-async-endpoint-handlers (#23251) (Sysix) + - e77ff81 linter: Add schema for unicorn/prefer-object-from-entries (#23249) (Mikhail Baev) + - bcac2d6 linter: Add schema for jest/vitest/no-restricted-matchers (#23247) (Sysix) + - 539f036 linter: Add schema for jest/vitest/no-restricted-*-methods (#23246) (Sysix) + - dd1b927 linter/vue: Implement require-default-prop rule (#22951) (bab) + - 3f018e7 linter: Add schema for unicorn/no-instanceof-builtins (#23225) (Mikhail Baev) + - 5b9a793 linter/react-perf: Support nativeAllowList config (#22996) (Cole Ellison) + - b4e19d4 linter: Improve promise/catch-or-return termination diagnostics (#23218) (camc314) + - 9b72a41 linter/promise/catch-or-return: Add support for allowThenStrict option (#23206) (camc314) + - e0d0f78 linter: Verify promise/no-callback-in-promise schema (#23141) (beanscg) + - 123d4f4 linter: Add schema for jest/vitest/valid-expect (#23185) (Sysix) + - 46c8a21 linter: Add schema for jest/vitest/require-top-level-describe (#23184) (Sysix) + - 41465cf linter: Add schema for jest/vitest/prefer-snapshot-hint (#23183) (Sysix) + - d068b9b linter: Add schema for jest/vitest/prefer-expect-assertions (#23181) (Sysix) + - 064a1ee linter: Add schema for jest/prefer-ending-with-an-expect (#23180) (Sysix) + - d046797 linter: Add schema for jest/vitest/no-standalone-expect (#23179) (Sysix) + - 137b9a6 linter: Add schema for jest/vitest/no-large-snapshots (#23178) (Sysix) + - 0f3e4a5 linter: Add schema for jest/vitest/no-hooks (#23177) (Sysix) + - 00244d8 parser: Report definite property initializer errors (#23160) (camc314) + - cd0b384 linter: Add schema for unicorn/explicit-length-check (#23155) (Mikhail Baev) + - 01b74c4 linter: Add schema for jest/no-deprecated-functions (#23136) (Sysix) + - 9d6a387 linter: Add schema for unicorn/catch-error-name (#23137) (Mikhail Baev) + - 0da8efa linter: Add schema for jest/vitest/max-nested-describe (#23131) (Sysix) + - d71c9fd linter: Add schema for eslint/no-use-before-define (#23129) (Sysix) + + 🐛 Bug Fixes + - 5cb8d1b linter/jsx-a11y/control-has-associated-label: Reject excessive label depth (#23445) (camc314) + - 019be2e linter/unicorn: Align throw-new-error parity (#23437) (camc314) + - b9e5e51 linter/jest: Validate no-restricted-jest-methods config (#23436) (camc314) + - f302f41 linter: Normalize oxlint jsPlugin prefixes (#23335) (konh) + - 2bdf8ce linter/jest: Validate no-restricted-matchers config (#23434) (camc314) + - 5c2fb45 linter/eslint: Validate max-depth config (#23430) (camc314) + - eafc280 linter/eslint: Validate no-unused-vars config (#23433) (camc314) + - 25aebb0 linter/typescript: Validate no-empty-object-type config (#23432) (camc314) + - 7cafe3b linter/unicorn: Validate catch-error-name config (#23431) (camc314) + - af1b897 linter/unicorn: Validate prefer-object-from-entries config (#23429) (camc314) + - 68d48fe linter/eslint: Validate max-classes-per-file config (#23428) (camc314) + - 02932b6 linter/eslint: Validate complexity config (#23427) (camc314) + - 375e574 linter/eslint: Use shared id-length regex config (#23426) (camc314) + - ba3e2e0 linter/eslint: Preserve used imports in no-unused-vars fixer (#23425) (camc314) + - 26ddac6 linter: Avoid config schema generation for jsx_a11y/no-noninteractive-element-interactions (#23385) (Sysix) + - 40556ad linter: Parse jsx-a11y/control-has-associated-label config with DefaultRuleConfig (#23373) (Sysix) + - dacbda8 linter/unicorn/prefer-string-starts-ends-with: Mark rule as deprecated (#23342) (camc314) + - 956309a lsp: Use protocol line breaks for positions (#23329) (konh) + - 71e9648 linter: Expose no-noninteractive-element-interactions schema (#23283) (camc314) + - 4c4c19c linter: no-noninteractive-element-interactions fix default values (#23288) (Sysix) + - e63a139 linter/jsx-a11y: Restore control label defaults (#22737) (konh) + - 0e4e59f linter/jsx-a11y: No-redundant-roles attribute-aware implicit roles for , skip ancestor-conditional elements (#23015) (Gaurav Dubey) + - 06e215e linter/vitest: Validate consistent-each-for config (#23278) (camc314) + - cd278e1 linter/promise: Validate param-names config (#23277) (camc314) + - 7f46013 linter/react/display-name: Handle default export function correctly (#23271) (camc314) + - 22ff6a6 linter/unicorn: Deserialize filename-case config with serde (#23266) (camc314) + - b644da0 linter/eslint: Add fixer for sort_vars (#23262) (Cason Kervis) + - 778af4d linter/unicorn: Support array of patterns for unicorn/filename-case ignore option (#23260) (kapobajza) + - 127fb2c linter: Deserialize rule config with serde for unicorn/prefer-object-from-entries (#23253) (Sysix) + - f89b909 linter/react/jsx-no-target-blank: Handle compound conditions (#23245) (camc314) + - c30419a linter/typescript: Deserialize rule config with serde for consistent-generic-constructors (#23238) (camc314) + - 7d17d37 linter/react: Report invalid exhaustive-deps config (#23239) (camc314) + - 1060186 linter/eslint: Add deny_unknown_fields to prefer-destructuring (#23237) (camc314) + - fd2e4eb linter/react: Add deny_unknown_fields to exhaustive-deps (#23236) (camc314) + - 6c3c904 linter/react/jsx-curly-brace-presence: Avoid false positive with comment within braces (#23234) (camc314) + - 6c86d1c linter/react-perf: Correct nativeAllowList all schema (#23229) (camc314) + - c393760 linter/react/rules-of-hooks: Align try/catch semantics (#23221) (camc314) + - 4dd52de linter/react-perf: Re-generate stale snapshots (#23228) (camc314) +ReleaseNotesUrl: https://github.com/oxc-project/oxc/releases/tag/apps_v1.70.0 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://oxc.rs/docs/guide/usage/linter.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/oxc-project/oxlint/1.70.0/oxc-project.oxlint.yaml b/manifests/o/oxc-project/oxlint/1.70.0/oxc-project.oxlint.yaml new file mode 100644 index 0000000000000..62ae5a4f89e10 --- /dev/null +++ b/manifests/o/oxc-project/oxlint/1.70.0/oxc-project.oxlint.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: oxc-project.oxlint +PackageVersion: 1.70.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/PaytaLab/PassOrder/.validation b/manifests/p/PaytaLab/PassOrder/.validation new file mode 100644 index 0000000000000..ba3f55eb724cd --- /dev/null +++ b/manifests/p/PaytaLab/PassOrder/.validation @@ -0,0 +1 @@ +{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"13fd0bc2-781f-44bb-8c87-226e4b106c4c","TestPlan":"Validation-Domain","PackagePath":"manifests/p/PaytaLab/PassOrder/3.0.2.81","CommitId":"c57fc8e3ed88a762eb88e83aeae14738890498a7"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/p/PaytaLab/PassOrder/3.0.2.81/PaytaLab.PassOrder.installer.yaml b/manifests/p/PaytaLab/PassOrder/3.0.2.81/PaytaLab.PassOrder.installer.yaml new file mode 100644 index 0000000000000..26ac59f43b7b6 --- /dev/null +++ b/manifests/p/PaytaLab/PassOrder/3.0.2.81/PaytaLab.PassOrder.installer.yaml @@ -0,0 +1,16 @@ +# Automatically updated by the winget bot at 2026/May/29 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: PaytaLab.PassOrder +PackageVersion: 3.0.2.81 +InstallerType: inno +Installers: +- Architecture: x86 + InstallerUrl: https://d2myxtdr0j6t4e.cloudfront.net/passorderboss_setup.exe + InstallerSha256: 3D65E2DDBA3425E3C5C77850EAAF26D61ACAF964890AD5B20B35FA23DA516431 + AppsAndFeaturesEntries: + - DisplayName: 패스오더(사장님) + Publisher: PaytaLab + ProductCode: '{1CD9B1BD-EB6D-4284-9D6C-A6577B642FA5}_is1' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/PaytaLab/PassOrder/3.0.2.81/PaytaLab.PassOrder.locale.en-US.yaml b/manifests/p/PaytaLab/PassOrder/3.0.2.81/PaytaLab.PassOrder.locale.en-US.yaml new file mode 100644 index 0000000000000..2704c911ecba7 --- /dev/null +++ b/manifests/p/PaytaLab/PassOrder/3.0.2.81/PaytaLab.PassOrder.locale.en-US.yaml @@ -0,0 +1,17 @@ +# Automatically updated by the winget bot at 2026/May/29 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: PaytaLab.PassOrder +PackageVersion: 3.0.2.81 +PackageLocale: en-US +Publisher: PaytaLab +PublisherUrl: https://passorder.co.kr/ +PublisherSupportUrl: https://passorder.co.kr/faq +PrivacyUrl: https://passorder.co.kr/terms-of-use/d1b1cd9c-6984-4a56-9703-cefd944c9167 +PackageName: Pass Order +License: Proprietary +Copyright: (c) 2019 PAYTA LAB CORP. ALL RIGHT RESERVED +ShortDescription: Relay for Pass Order +Moniker: pass-order +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PaytaLab/PassOrder/3.0.2.81/PaytaLab.PassOrder.yaml b/manifests/p/PaytaLab/PassOrder/3.0.2.81/PaytaLab.PassOrder.yaml new file mode 100644 index 0000000000000..a6b9174509e7e --- /dev/null +++ b/manifests/p/PaytaLab/PassOrder/3.0.2.81/PaytaLab.PassOrder.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2026/May/29 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: PaytaLab.PassOrder +PackageVersion: 3.0.2.81 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/PlanetLinux98/GUARD/0.4.0/PlanetLinux98.GUARD.installer.yaml b/manifests/p/PlanetLinux98/GUARD/0.4.0/PlanetLinux98.GUARD.installer.yaml new file mode 100644 index 0000000000000..16fa0e855d160 --- /dev/null +++ b/manifests/p/PlanetLinux98/GUARD/0.4.0/PlanetLinux98.GUARD.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: PlanetLinux98.GUARD +PackageVersion: 0.4.0 +MinimumOSVersion: 10.0.17763.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: GUARD\GUARD.exe + PortableCommandAlias: GUARD +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/PlanetLinux98/guard/releases/download/v0.4.0/GUARD.zip + InstallerSha256: DE042FEC58FD9ABEE2F69E2872A4DEEEF689E41ADD0A2A425F9013243E4A1F0F +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-06-15 diff --git a/manifests/p/PlanetLinux98/GUARD/0.4.0/PlanetLinux98.GUARD.locale.en-US.yaml b/manifests/p/PlanetLinux98/GUARD/0.4.0/PlanetLinux98.GUARD.locale.en-US.yaml new file mode 100644 index 0000000000000..78454b9bc7227 --- /dev/null +++ b/manifests/p/PlanetLinux98/GUARD/0.4.0/PlanetLinux98.GUARD.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: PlanetLinux98.GUARD +PackageVersion: 0.4.0 +PackageLocale: en-US +Publisher: PlanetLinux98 +PublisherUrl: https://github.com/PlanetLinux98 +PublisherSupportUrl: https://github.com/PlanetLinux98/guard/issues +Author: PlanetLinux98 +PackageName: GUARD +PackageUrl: https://github.com/PlanetLinux98/guard +License: MIT +LicenseUrl: https://github.com/PlanetLinux98/guard/blob/main/LICENSE +ShortDescription: A portable, self-contained backup and data-protection utility for Windows that requires no installation. +Description: |- + GUARD is a portable, fully accessible backup and data-protection utility for Windows. It backs up your chosen folders to any destination — a local drive, an external disk, or a network share — and keeps an inventory of your installed apps so they are easy to reinstall after a clean OS install. + + The release ships as a self-contained GUARD.exe inside a portable folder, with the .NET 10 runtime and Windows App SDK bundled in, so there is nothing extra to install. This WinUI 3 edition is built for strong screen-reader support and native dark-mode theming. + + Features include additive and mirror copy modes (built on Robocopy), folder- and file-name exclusions, a dry-run preview, an optional daily scheduled backup, and an App Inventory that marks which installed apps winget can reinstall and exports the list as JSON. +Moniker: guard +Tags: +- accessibility +- backup +- data-protection +- portable +- restore +- robocopy +- winui +ReleaseNotesUrl: https://github.com/PlanetLinux98/guard/releases/tag/v0.4.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/PlanetLinux98/guard/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PlanetLinux98/GUARD/0.4.0/PlanetLinux98.GUARD.yaml b/manifests/p/PlanetLinux98/GUARD/0.4.0/PlanetLinux98.GUARD.yaml new file mode 100644 index 0000000000000..5e123dda393ca --- /dev/null +++ b/manifests/p/PlanetLinux98/GUARD/0.4.0/PlanetLinux98.GUARD.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: PlanetLinux98.GUARD +PackageVersion: 0.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/PresenceJam/PresenceJam/2.6.4/PresenceJam.PresenceJam.installer.yaml b/manifests/p/PresenceJam/PresenceJam/2.6.4/PresenceJam.PresenceJam.installer.yaml new file mode 100644 index 0000000000000..73da295082038 --- /dev/null +++ b/manifests/p/PresenceJam/PresenceJam/2.6.4/PresenceJam.PresenceJam.installer.yaml @@ -0,0 +1,23 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: PresenceJam.PresenceJam +PackageVersion: 2.6.4 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +UpgradeBehavior: install +ProductCode: '{9CE49D62-68B6-4041-ABC1-69942BA4B3AE}' +ReleaseDate: 2026-06-15 +AppsAndFeaturesEntries: +- Publisher: presencejam + ProductCode: '{9CE49D62-68B6-4041-ABC1-69942BA4B3AE}' + UpgradeCode: '{72C2B806-ED84-559F-8C03-E31D5D972139}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\PresenceJam' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Carme99/PresenceJam-Desktop/releases/download/v2.6.4/PresenceJam_2.6.4_x64_en-US.msi + InstallerSha256: C50BB0BB2534D8E2167296590913BDEFC459BC8BC0F6B122731245046CB91A19 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/PresenceJam/PresenceJam/2.6.4/PresenceJam.PresenceJam.locale.en-US.yaml b/manifests/p/PresenceJam/PresenceJam/2.6.4/PresenceJam.PresenceJam.locale.en-US.yaml new file mode 100644 index 0000000000000..1038dc02d699b --- /dev/null +++ b/manifests/p/PresenceJam/PresenceJam/2.6.4/PresenceJam.PresenceJam.locale.en-US.yaml @@ -0,0 +1,32 @@ +# 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: PresenceJam.PresenceJam +PackageVersion: 2.6.4 +PackageLocale: en-US +Publisher: PresenceJam +PublisherUrl: https://github.com/Carme99/PresenceJam-Desktop +PublisherSupportUrl: https://github.com/Carme99/PresenceJam-Desktop/issues +Author: PresenceJam +PackageName: PresenceJam +PackageUrl: https://github.com/Carme99/PresenceJam-Desktop +License: MIT +LicenseUrl: https://github.com/Carme99/PresenceJam-Desktop/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 PresenceJam +ShortDescription: Spotify to Teams Status Sync +Description: Automatically syncs your currently playing Spotify track to your Microsoft Teams status message. Set a custom status message using placeholders like {artist}, {track}, {album}, and {emoji}. +Moniker: presencejam +Tags: +- microsoft +- presence +- productivity +- spotify +- status +- teams +ReleaseNotes: |- + What's Changed + - chore(release): v2.6.4 — security hardening & concurrency fixes by @Carme99 in #82 + Full Changelog: v2.6.3...v2.6.4 +ReleaseNotesUrl: https://github.com/Carme99/PresenceJam-Desktop/releases/tag/v2.6.4 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PresenceJam/PresenceJam/2.6.4/PresenceJam.PresenceJam.yaml b/manifests/p/PresenceJam/PresenceJam/2.6.4/PresenceJam.PresenceJam.yaml new file mode 100644 index 0000000000000..fcb04966188ef --- /dev/null +++ b/manifests/p/PresenceJam/PresenceJam/2.6.4/PresenceJam.PresenceJam.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: PresenceJam.PresenceJam +PackageVersion: 2.6.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/peterfei/Differ/0.2.0/peterfei.Differ.installer.yaml b/manifests/p/peterfei/Differ/0.2.0/peterfei.Differ.installer.yaml new file mode 100644 index 0000000000000..b013ea764fe97 --- /dev/null +++ b/manifests/p/peterfei/Differ/0.2.0/peterfei.Differ.installer.yaml @@ -0,0 +1,12 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: peterfei.Differ +PackageVersion: 0.2.0 +InstallerType: wix +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/peterfei/differ/releases/download/v0.2.0/Differ_0.2.0_x64_en-US.msi + InstallerSha256: 6429A62072BE4DCD0EEB0895197CB38A5404D33DC0B83728CE7B652A527C84D2 + ProductCode: "{2FF1A02B-5122-4A44-B252-17D288F77928}" +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/peterfei/Differ/0.2.0/peterfei.Differ.locale.en-US.yaml b/manifests/p/peterfei/Differ/0.2.0/peterfei.Differ.locale.en-US.yaml new file mode 100644 index 0000000000000..e2e9f708698a0 --- /dev/null +++ b/manifests/p/peterfei/Differ/0.2.0/peterfei.Differ.locale.en-US.yaml @@ -0,0 +1,24 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: peterfei.Differ +PackageVersion: 0.2.0 +PackageLocale: en-US +Publisher: peterfei +PublisherUrl: https://github.com/peterfei +PublisherSupportUrl: https://github.com/peterfei/differ/issues +Author: peterfei +PackageName: Differ +PackageUrl: https://github.com/peterfei/differ +License: MIT +LicenseUrl: https://github.com/peterfei/differ/blob/main/LICENSE +ShortDescription: A visual diff tool with syntax-aware diffing, directory comparison, and three-way merge support +Description: Differ is a modern desktop application for file comparison and merging. It supports side-by-side diff with syntax highlighting, three-way merge with conflict detection, recursive directory comparison, and AST-based syntax-aware hunk regrouping. +Tags: + - diff + - merge + - comparison + - syntax + - tree-sitter + - tauri +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/peterfei/Differ/0.2.0/peterfei.Differ.yaml b/manifests/p/peterfei/Differ/0.2.0/peterfei.Differ.yaml new file mode 100644 index 0000000000000..5a3e8bd65bff5 --- /dev/null +++ b/manifests/p/peterfei/Differ/0.2.0/peterfei.Differ.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: peterfei.Differ +PackageVersion: 0.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/q/QuattroProConverter/QuattroProConverter/1.1.2/QuattroProConverter.QuattroProConverter.installer.yaml b/manifests/q/QuattroProConverter/QuattroProConverter/1.1.2/QuattroProConverter.QuattroProConverter.installer.yaml new file mode 100644 index 0000000000000..bd9975d83a64d --- /dev/null +++ b/manifests/q/QuattroProConverter/QuattroProConverter/1.1.2/QuattroProConverter.QuattroProConverter.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: QuattroProConverter.QuattroProConverter +PackageVersion: 1.1.2 +InstallerLocale: en-US +InstallerType: wix +ProductCode: '{692EF79F-BCAC-4B8B-8023-920AEC5608E0}' +Installers: +- Architecture: x64 + InstallerUrl: https://quattroproconverter.com/api/download + InstallerSha256: D91A04C5981250CD839C64C9832DF9C49B35D84B5FF4398EB9BAC9558BA38393 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/q/QuattroProConverter/QuattroProConverter/1.1.2/QuattroProConverter.QuattroProConverter.locale.en-US.yaml b/manifests/q/QuattroProConverter/QuattroProConverter/1.1.2/QuattroProConverter.QuattroProConverter.locale.en-US.yaml new file mode 100644 index 0000000000000..dc26153aff246 --- /dev/null +++ b/manifests/q/QuattroProConverter/QuattroProConverter/1.1.2/QuattroProConverter.QuattroProConverter.locale.en-US.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: QuattroProConverter.QuattroProConverter +PackageVersion: 1.1.2 +PackageLocale: en-US +Publisher: Quattro Pro Converter +PackageName: Quattro Pro Converter +PackageUrl: https://quattroproconverter.com +PublisherUrl: https://quattroproconverter.com +PublisherSupportUrl: https://quattroproconverter.com/contact +License: Proprietary +ShortDescription: Convert legacy Quattro Pro spreadsheets to XLSX, PDF, HTML, Markdown, CSV, or XLS without uploading confidential finance, operations, engineering, or compliance data to the cloud. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/q/QuattroProConverter/QuattroProConverter/1.1.2/QuattroProConverter.QuattroProConverter.yaml b/manifests/q/QuattroProConverter/QuattroProConverter/1.1.2/QuattroProConverter.QuattroProConverter.yaml new file mode 100644 index 0000000000000..cd6dcc0239623 --- /dev/null +++ b/manifests/q/QuattroProConverter/QuattroProConverter/1.1.2/QuattroProConverter.QuattroProConverter.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: QuattroProConverter.QuattroProConverter +PackageVersion: 1.1.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/rvben/rumdl/0.2.17/rvben.rumdl.installer.yaml b/manifests/r/rvben/rumdl/0.2.17/rvben.rumdl.installer.yaml new file mode 100644 index 0000000000000..78149b5f0a8be --- /dev/null +++ b/manifests/r/rvben/rumdl/0.2.17/rvben.rumdl.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: rvben.rumdl +PackageVersion: 0.2.17 +MinimumOSVersion: 10.0.17763.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: rumdl.exe + PortableCommandAlias: rumdl +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/rvben/rumdl/releases/download/v0.2.17/rumdl-v0.2.17-x86_64-pc-windows-msvc.zip + InstallerSha256: 050BDFDB465F48B78F7F4310694FC38352CE10D08884CCAAA88D901BA2C72884 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-06-15 diff --git a/manifests/r/rvben/rumdl/0.2.17/rvben.rumdl.locale.en-US.yaml b/manifests/r/rvben/rumdl/0.2.17/rvben.rumdl.locale.en-US.yaml new file mode 100644 index 0000000000000..116f990735836 --- /dev/null +++ b/manifests/r/rvben/rumdl/0.2.17/rvben.rumdl.locale.en-US.yaml @@ -0,0 +1,39 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: rvben.rumdl +PackageVersion: 0.2.17 +PackageLocale: en-US +Publisher: Ruben J. Jongejan +PublisherUrl: https://github.com/rvben +PublisherSupportUrl: https://github.com/rvben/rumdl/issues +Author: Ruben J. Jongejan +PackageName: rumdl +PackageUrl: https://github.com/rvben/rumdl +License: MIT +LicenseUrl: https://github.com/rvben/rumdl/blob/main/LICENSE +Copyright: Copyright (c) 2024-2025 Ruben J. Jongejan +ShortDescription: A fast Markdown linter and formatter written in Rust. +Description: |- + rumdl is a high-performance Markdown linter and formatter written in Rust. + It catches stylistic and structural issues in Markdown documents, fixes + them automatically where possible, and integrates with editors through + the Language Server Protocol. rumdl ships a comprehensive rule set, + intelligent caching for fast incremental runs, and is configured via + pyproject.toml or .rumdl.toml. +Moniker: rumdl +Tags: +- cli +- documentation +- formatter +- linter +- markdown +- markdown-linter +- rust +- static-analysis +ReleaseNotesUrl: https://github.com/rvben/rumdl/releases/tag/v0.2.17 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/rvben/rumdl/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/rvben/rumdl/0.2.17/rvben.rumdl.yaml b/manifests/r/rvben/rumdl/0.2.17/rvben.rumdl.yaml new file mode 100644 index 0000000000000..0204343d2e889 --- /dev/null +++ b/manifests/r/rvben/rumdl/0.2.17/rvben.rumdl.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: rvben.rumdl +PackageVersion: 0.2.17 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/SJMC/SJMCL/0.4.2/SJMC.SJMCL.installer.yaml b/manifests/s/SJMC/SJMCL/0.4.2/SJMC.SJMCL.installer.yaml new file mode 100644 index 0000000000000..9217d8a79bf61 --- /dev/null +++ b/manifests/s/SJMC/SJMCL/0.4.2/SJMC.SJMCL.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: SJMC.SJMCL +PackageVersion: 0.4.2 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +Protocols: +- sjmcl +ReleaseDate: 2025-09-30 +Installers: +- Architecture: x86 + InstallerUrl: https://mc.sjtu.cn/sjmcl/releases/SJMCL_0.4.2_windows_i686.msi + InstallerSha256: 630CFB0BA236A0D3C38B97B72953731563FACEAEA40A7A6209D57023546CE935 +- Architecture: x64 + InstallerUrl: https://mc.sjtu.cn/sjmcl/releases/SJMCL_0.4.2_windows_x86_64.msi + InstallerSha256: 310AD91AF31C5ECB967886D788229BF4F9C02C9E487D15E3EA6B751D2C1701FA +- Architecture: arm64 + InstallerUrl: https://mc.sjtu.cn/sjmcl/releases/SJMCL_0.4.2_windows_aarch64.msi + InstallerSha256: F6CB376DC407EE8216AABE4F8F2CB2AF8E252B929FAEF7D04258C7CAE0A294C6 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/s/SJMC/SJMCL/0.4.2/SJMC.SJMCL.locale.en-US.yaml b/manifests/s/SJMC/SJMCL/0.4.2/SJMC.SJMCL.locale.en-US.yaml new file mode 100644 index 0000000000000..b6005bd36e336 --- /dev/null +++ b/manifests/s/SJMC/SJMCL/0.4.2/SJMC.SJMCL.locale.en-US.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: SJMC.SJMCL +PackageVersion: 0.4.2 +PackageLocale: en-US +Author: Shanghai Jiao Tong University Minecraft Club +PackageUrl: https://mc.sjtu.cn/sjmcl/en +ShortDescription: Next‑generation open-source cross‑platform Minecraft launcher +Description: SJMC Launcher is a modern, cross-platform Minecraft launcher built on the Tauri framework, independently developed by members of the Shanghai Jiao Tong University Minecraft Club. +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://mc.sjtu.cn/sjmcl/en/docs +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/s/SJMC/SJMCL/0.4.2/SJMC.SJMCL.locale.zh-CN.yaml b/manifests/s/SJMC/SJMCL/0.4.2/SJMC.SJMCL.locale.zh-CN.yaml new file mode 100644 index 0000000000000..f66db091b973e --- /dev/null +++ b/manifests/s/SJMC/SJMCL/0.4.2/SJMC.SJMCL.locale.zh-CN.yaml @@ -0,0 +1,51 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: SJMC.SJMCL +PackageVersion: 0.4.2 +PackageLocale: zh-CN +Publisher: SJMCL +PublisherUrl: https://mc.sjtu.cn/ +PublisherSupportUrl: https://github.com/UNIkeEN/SJMCL/issues +Author: 上海交通大学 Minecraft 社 +PackageName: SJMCL +PackageUrl: https://mc.sjtu.cn/sjmcl +License: GPL-3.0 +LicenseUrl: https://github.com/UNIkeEN/SJMCL/blob/HEAD/LICENSE +Copyright: 2025 © SJMCL Team +ShortDescription: 新一代开源跨平台 Minecraft 启动器 +Description: SJMC Launcher 是一款基于 Tauri 框架打造的现代化、跨平台 Minecraft 启动器,由上海交通大学 Minecraft 社的成员自主开发。 +Tags: +- mc +- minecraft +- 我的世界 +ReleaseNotes: |- + This update provides important security updates. All users are strongly recommended to install it. + 本更新提供了重要的安全性更新,建议所有用户安装。 + - 🐛 Fix display issues in instance settings and resource list pages. #952 @1357310795 + - 🐛 Fix the issue where some third-party authentication sources could not log in with a password. #956 @Reqwey + - 🐛 Fix text display issue on the launch screen when character names are too long. #957 @UNIkeEN + - 🐛 Optimize account storage format to avoid potential security issues. #962 @Reqwey @hans362 + - 🐛 Fix display issue in the mod info dialog and improve information display in resource version list. #964 @SundayChen @UNIkeEN + - 🐛 Fix the issue where version lists of some resources from Modrinth could not be displayed properly. #968 @SundayChen + - 🐛 Disable "check mod updates" button when the local mod list is empty. #977 @SundayChen + - 💄 Refactor part of the codebase to improve style and maintainability. #935 #964 @baiyuansjtu @SundayChen + - Docs: + - Update additional terms of the open source license. #960 @ff98sha + + - 🐛 修复实例设置与资源列表界面的显示问题。#952 @1357310795 + - 🐛 修复部分第三方认证源无法使用密码登录的问题。#956 @Reqwey + - 🐛 修复角色名称过长时,启动界面的文本显示问题。#957 @UNIkeEN + - 🐛 优化账户存储格式,避免潜在的安全性问题。#962 @Reqwey @hans362 + - 🐛 修复模组信息对话框的显示问题,优化资源版本列表的信息显示。#964 @SundayChen @UNIkeEN + - 🐛 修复从 Modrinth 搜索部分资源时,目标资源的版本列表无法正常显示的问题。#968 @SundayChen + - 🐛 在本地模组列表为空时禁用检查模组更新按钮。#977 @SundayChen + - 💄 重构部分代码以提升代码风格与可维护性。#935 #964 @baiyuansjtu @SundayChen + - 文档: + - 更新开源协议的附加条款。#960 @ff98sha +ReleaseNotesUrl: https://github.com/UNIkeEN/SJMCL/releases/tag/v0.4.2 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://mc.sjtu.cn/sjmcl/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/s/SJMC/SJMCL/0.4.2/SJMC.SJMCL.yaml b/manifests/s/SJMC/SJMCL/0.4.2/SJMC.SJMCL.yaml new file mode 100644 index 0000000000000..7c7e8f7af33e3 --- /dev/null +++ b/manifests/s/SJMC/SJMCL/0.4.2/SJMC.SJMCL.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: SJMC.SJMCL +PackageVersion: 0.4.2 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/s/SJMC/SJMCL/0.5.1/SJMC.SJMCL.installer.yaml b/manifests/s/SJMC/SJMCL/0.5.1/SJMC.SJMCL.installer.yaml new file mode 100644 index 0000000000000..5cfc967fbb113 --- /dev/null +++ b/manifests/s/SJMC/SJMCL/0.5.1/SJMC.SJMCL.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: SJMC.SJMCL +PackageVersion: 0.5.1 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +Protocols: +- sjmcl +ReleaseDate: 2025-10-27 +Installers: +- Architecture: x86 + InstallerUrl: https://mc.sjtu.cn/sjmcl/releases/SJMCL_0.5.1_windows_i686.msi + InstallerSha256: 19E6898455C20888C7E23BD4DD021CA0CEA005999C6FCA8FEA2561B124E07EE2 +- Architecture: x64 + InstallerUrl: https://mc.sjtu.cn/sjmcl/releases/SJMCL_0.5.1_windows_x86_64.msi + InstallerSha256: BF64EBC0924E1A4B4F1AEE9039927627AC4B7232C7DA081300A5988D121CD81A +- Architecture: arm64 + InstallerUrl: https://mc.sjtu.cn/sjmcl/releases/SJMCL_0.5.1_windows_aarch64.msi + InstallerSha256: B048B826C5A8C903B34F54E921EF482F509FBFC9B3E38E32330E4E007BA47551 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/s/SJMC/SJMCL/0.5.1/SJMC.SJMCL.locale.en-US.yaml b/manifests/s/SJMC/SJMCL/0.5.1/SJMC.SJMCL.locale.en-US.yaml new file mode 100644 index 0000000000000..85f84fd1b008d --- /dev/null +++ b/manifests/s/SJMC/SJMCL/0.5.1/SJMC.SJMCL.locale.en-US.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: SJMC.SJMCL +PackageVersion: 0.5.1 +PackageLocale: en-US +Author: Shanghai Jiao Tong University Minecraft Club +PackageUrl: https://mc.sjtu.cn/sjmcl/en +ShortDescription: Next‑generation open-source cross‑platform Minecraft launcher +Description: SJMC Launcher is a modern, cross-platform Minecraft launcher built on the Tauri framework, independently developed by members of the Shanghai Jiao Tong University Minecraft Club. +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://mc.sjtu.cn/sjmcl/en/docs +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/s/SJMC/SJMCL/0.5.1/SJMC.SJMCL.locale.zh-CN.yaml b/manifests/s/SJMC/SJMCL/0.5.1/SJMC.SJMCL.locale.zh-CN.yaml new file mode 100644 index 0000000000000..694155c006b09 --- /dev/null +++ b/manifests/s/SJMC/SJMCL/0.5.1/SJMC.SJMCL.locale.zh-CN.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: SJMC.SJMCL +PackageVersion: 0.5.1 +PackageLocale: zh-CN +Publisher: SJMCL +PublisherUrl: https://mc.sjtu.cn/ +PublisherSupportUrl: https://github.com/UNIkeEN/SJMCL/issues +Author: 上海交通大学 Minecraft 社 +PackageName: SJMCL +PackageUrl: https://mc.sjtu.cn/sjmcl +License: GPL-3.0 +LicenseUrl: https://github.com/UNIkeEN/SJMCL/blob/HEAD/LICENSE +Copyright: 2025 © SJMCL Team +ShortDescription: 新一代开源跨平台 Minecraft 启动器 +Description: SJMC Launcher 是一款基于 Tauri 框架打造的现代化、跨平台 Minecraft 启动器,由上海交通大学 Minecraft 社的成员自主开发。 +Tags: +- mc +- minecraft +- 我的世界 +ReleaseNotes: |- + - 🐛 Do not display non-existent world difficulty options for game instances of version 14w02a and earlier. #1086 @pynickle + - 🐛 Fix issue where GitHub links inside the changelog in the check update modal could become invalid in certain cases. #1096 @baiyuansjtu + - 🐛 Fix incorrect display style of mod names in the instance mod list page. @UNIkeEN + - ⚡️ Improve performance when deleting instances. #1092 @pynickle + - 🛠 Adjust the display style of the change loader modal when no mod loader is installed. #1107 @Reqwey + - Workflow: + - Add a new workflow to automatically upload releases to AUR (Arch User Repository). #1062 @KodateMitsuru + + - 🐛 在 14w02a 及更早版本的游戏实例不再显示不存在的世界难度。#1086 @pynickle + - 🐛 修复检查更新对话框中,部分场景下更新日志 GitHub 链接失效的问题。#1096 @baiyuansjtu + - 🐛 修复实例模组列表页中模组名称的显示样式错误。 @UNIkeEN + - ⚡️ 提升删除实例操作的性能。#1092 @pynickle + - 🛠 在未安装模组加载器时,调整更改加载器对话框的显示样式。#1107 @Reqwey + - 工作流: + - 新增发版时自动上传 AUR(Arch 用户仓库)的工作流。#1062 @KodateMitsuru +ReleaseNotesUrl: https://github.com/UNIkeEN/SJMCL/releases/tag/v0.5.1 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://mc.sjtu.cn/sjmcl/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/s/SJMC/SJMCL/0.5.1/SJMC.SJMCL.yaml b/manifests/s/SJMC/SJMCL/0.5.1/SJMC.SJMCL.yaml new file mode 100644 index 0000000000000..0c124decf729a --- /dev/null +++ b/manifests/s/SJMC/SJMCL/0.5.1/SJMC.SJMCL.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: SJMC.SJMCL +PackageVersion: 0.5.1 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/s/SJMC/SJMCL/0.6.2/SJMC.SJMCL.installer.yaml b/manifests/s/SJMC/SJMCL/0.6.2/SJMC.SJMCL.installer.yaml new file mode 100644 index 0000000000000..04173fe8fceb3 --- /dev/null +++ b/manifests/s/SJMC/SJMCL/0.6.2/SJMC.SJMCL.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: SJMC.SJMCL +PackageVersion: 0.6.2 +InstallerType: wix +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +Protocols: +- sjmcl +ReleaseDate: 2025-11-26 +Installers: +- Architecture: x86 + InstallerUrl: https://mc.sjtu.cn/sjmcl/releases/SJMCL_0.6.2_windows_i686.msi + InstallerSha256: 936FC1EA1CE56E7BFB27880293BD14E4CA80E4A341B9194F07D5BD423CBF0F14 +- Architecture: x64 + InstallerUrl: https://mc.sjtu.cn/sjmcl/releases/SJMCL_0.6.2_windows_x86_64.msi + InstallerSha256: AACFACEB554DF4282C5487D31E715A42F4C9EBDA64651E279CAD0D8C6E102CC5 +- Architecture: arm64 + InstallerUrl: https://mc.sjtu.cn/sjmcl/releases/SJMCL_0.6.2_windows_aarch64.msi + InstallerSha256: ECEF6FC3594D48803AA8F301C2973941E478632A11D27BBF99F1B338E87AB390 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/s/SJMC/SJMCL/0.6.2/SJMC.SJMCL.locale.en-US.yaml b/manifests/s/SJMC/SJMCL/0.6.2/SJMC.SJMCL.locale.en-US.yaml new file mode 100644 index 0000000000000..6d3658342b38b --- /dev/null +++ b/manifests/s/SJMC/SJMCL/0.6.2/SJMC.SJMCL.locale.en-US.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: SJMC.SJMCL +PackageVersion: 0.6.2 +PackageLocale: en-US +Author: Shanghai Jiao Tong University Minecraft Club +PackageUrl: https://mc.sjtu.cn/sjmcl/en +ShortDescription: Next‑generation open-source cross‑platform Minecraft launcher +Description: SJMC Launcher is a modern, cross-platform Minecraft launcher built on the Tauri framework, independently developed by members of the Shanghai Jiao Tong University Minecraft Club. +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://mc.sjtu.cn/sjmcl/en/docs +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/s/SJMC/SJMCL/0.6.2/SJMC.SJMCL.locale.zh-CN.yaml b/manifests/s/SJMC/SJMCL/0.6.2/SJMC.SJMCL.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c70b9a02bb59a --- /dev/null +++ b/manifests/s/SJMC/SJMCL/0.6.2/SJMC.SJMCL.locale.zh-CN.yaml @@ -0,0 +1,45 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: SJMC.SJMCL +PackageVersion: 0.6.2 +PackageLocale: zh-CN +Publisher: SJMCL +PublisherUrl: https://mc.sjtu.cn/ +PublisherSupportUrl: https://github.com/UNIkeEN/SJMCL/issues +Author: 上海交通大学 Minecraft 社 +PackageName: SJMCL +PackageUrl: https://mc.sjtu.cn/sjmcl +License: GPL-3.0 +LicenseUrl: https://github.com/UNIkeEN/SJMCL/blob/HEAD/LICENSE +Copyright: 2025 © SJMCL Team +ShortDescription: 新一代开源跨平台 Minecraft 启动器 +Description: SJMC Launcher 是一款基于 Tauri 框架打造的现代化、跨平台 Minecraft 启动器,由上海交通大学 Minecraft 社的成员自主开发。 +Tags: +- mc +- minecraft +- 我的世界 +ReleaseNotes: |- + - 🐛 Fix and refactor the logic for querying game server status, now supporting displaying an 'unknown player' count. #1061 #1157 @pynickle @UNIkeEN + - 🐛 Fix the client manifest JSON format issue when creating a modded instance. #1129 @Reqwey + - 🐛 Fix the issue where Mojang Java runtime downloaded by SJMCL on macOS lacked execution permissions. #1154 @UNIkeEN + - 🐛 Fix display issues in the resource download modal and the mod list. #1160 @1357310795 + - 🛠 Provide more complete crash reports, including the game's native crash report files. #1121 @no6rainer + - 🛠 Update error messages shown during Microsoft account login to cover more scenarios. @HsxMark @Reqwey + - 💄 Refactor parts of the codebase for better style and maintainability. @UNIkeEN + - 📦 Update the frontend dependency js-yaml to its patch version. #1153 @dependabot[bot] + + - 🐛 修复并重构查询游戏服务器状态的逻辑,支持显示未知游玩人数。#1061 #1157 @pynickle @UNIkeEN + - 🐛 修复新建实例的客户端清单文件格式问题。#1129 @Reqwey + - 🐛 修复 macOS 平台下,使用启动器下载的 Mojang Java 无运行权限的问题。#1154 @UNIkeEN + - 🐛 修复资源下载对话框与模组列表的前端显示问题。#1160 @1357310795 + - 🛠 提供更完善的游戏崩溃报告,包含游戏本体的原生报告文件。#1121 @no6rainer + - 🛠 更新微软账户登录时的报错提示文本,适应更多情况。 @HsxMark @Reqwey + - 💄 重构部分代码以提升代码风格与可维护性。 @UNIkeEN + - 📦 更新前端依赖 js-yaml 至补丁版本。#1153 @dependabot[bot] +ReleaseNotesUrl: https://github.com/UNIkeEN/SJMCL/releases/tag/v0.6.2 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://mc.sjtu.cn/sjmcl/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/s/SJMC/SJMCL/0.6.2/SJMC.SJMCL.yaml b/manifests/s/SJMC/SJMCL/0.6.2/SJMC.SJMCL.yaml new file mode 100644 index 0000000000000..7cfc4373c0c21 --- /dev/null +++ b/manifests/s/SJMC/SJMCL/0.6.2/SJMC.SJMCL.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: SJMC.SJMCL +PackageVersion: 0.6.2 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/s/Sandboxie/Classic/5.72.8/Sandboxie.Classic.installer.yaml b/manifests/s/Sandboxie/Classic/5.72.8/Sandboxie.Classic.installer.yaml new file mode 100644 index 0000000000000..68a3b0a3c14a3 --- /dev/null +++ b/manifests/s/Sandboxie/Classic/5.72.8/Sandboxie.Classic.installer.yaml @@ -0,0 +1,23 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Sandboxie.Classic +PackageVersion: 5.72.8 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ReleaseDate: 2026-06-14 +InstallationMetadata: + DefaultInstallLocation: kernel32::GetCurrentProcess() i .s\Sandboxie +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/sandboxie-plus/Sandboxie/releases/download/v1.17.8/Sandboxie-Classic-x64-v5.72.8.exe + InstallerSha256: ACC9B9FFFD8FD7D0A16ED23DF66EA34F681C66F24779B5579A7BB437FB3FA729 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sandboxie/Classic/5.72.8/Sandboxie.Classic.locale.en-US.yaml b/manifests/s/Sandboxie/Classic/5.72.8/Sandboxie.Classic.locale.en-US.yaml new file mode 100644 index 0000000000000..6985d621b732d --- /dev/null +++ b/manifests/s/Sandboxie/Classic/5.72.8/Sandboxie.Classic.locale.en-US.yaml @@ -0,0 +1,37 @@ +# 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: Sandboxie.Classic +PackageVersion: 5.72.8 +PackageLocale: en-US +Publisher: sandboxie-plus.com +PublisherUrl: https://xanasoft.com/ +PublisherSupportUrl: https://github.com/sandboxie-plus/Sandboxie/issues +Author: https://xanasoft.com +PackageName: Sandboxie +PackageUrl: https://github.com/sandboxie-plus/Sandboxie +License: GPL-3.0 +LicenseUrl: https://github.com/sandboxie-plus/Sandboxie/blob/HEAD/LICENSE.Classic +CopyrightUrl: https://raw.githubusercontent.com/sandboxie-plus/Sandboxie/master/LICENSE.Classic +ShortDescription: Sandboxie is a sandbox-based isolation software for 32- and 64-bit Windows NT-based operating systems. +Description: |- + Sandboxie is a sandbox-based isolation software for 32- and 64-bit Windows NT-based operating systems. + It is developed by David Xanatos since it became open source, before that it was developed by Sophos (which acquired it from Invincea, which acquired it earlier from the original author Ronen Tzur). + It creates a sandbox-like isolated operating environment in which applications can be run or installed without permanently modifying the local or mapped drive. + Such an isolated virtual environment allows controlled testing of untrusted programs and web surfing. +Moniker: sandboxie-classic +Tags: +- sandbox +ReleaseNotes: |- + 0 5 5 + Release Notes + Sandboxie Plus 1.17.8 / Sandboxie 5.72.8 is now available with a collection of compatibility improvements, stability fixes, and quality-of-life enhancements. + This release introduces a new configuration option, DisableCustomTitleOpt, which gives users finer control over Sandboxie’s window title marking behavior. In the past, Sandboxie intentionally avoided adding its sandbox indicators to certain applications that use heavily customized title bars, such as those built with Delphi VCL, Qt, or Electron, because doing so could trigger excessive Desktop Window Manager repaints and high CPU usage. With the new option, advanced users can selectively re-enable title markers for these applications when desired. + The bundled ImDisk driver has also been updated to version 3.0.2, bringing the latest improvements and fixes from the upstream project. + Several issues reported by the community have been addressed in this build. Logging has been refined to suppress entries related to expected non-user security identifiers, helping reduce unnecessary noise in the trace logs. A problem affecting the "Run as Administrator" functionality, which could result in SBIE2218 and SBIE2219 service errors, has been corrected. In addition, a compatibility issue that could cause Windows Explorer to crash inside an Application Compartment environment when Huorong Security software was installed has been resolved. + For a full list of changes please review the change log. + You can support the project through donations, any help will be greatly appreciated. + If you have issues with an update installation, just uninstall the previous version keeping the sandboxie.ini and reinstall the new build. +ReleaseNotesUrl: https://github.com/sandboxie-plus/Sandboxie/releases/tag/v1.17.8 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Sandboxie/Classic/5.72.8/Sandboxie.Classic.yaml b/manifests/s/Sandboxie/Classic/5.72.8/Sandboxie.Classic.yaml new file mode 100644 index 0000000000000..9022a7c7381db --- /dev/null +++ b/manifests/s/Sandboxie/Classic/5.72.8/Sandboxie.Classic.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: Sandboxie.Classic +PackageVersion: 5.72.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/sacloud/usacloud/1.22.1/sacloud.usacloud.installer.yaml b/manifests/s/sacloud/usacloud/1.22.1/sacloud.usacloud.installer.yaml new file mode 100644 index 0000000000000..04f70e66e7f23 --- /dev/null +++ b/manifests/s/sacloud/usacloud/1.22.1/sacloud.usacloud.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: sacloud.usacloud +PackageVersion: 1.22.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: usacloud.exe +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/sacloud/usacloud/releases/download/v1.22.1/usacloud_windows-amd64.zip + InstallerSha256: DDE1E8E08BEE196B579F5D01B20B85668D540F18D9BB871A0E9DE09ABC101951 +- Architecture: arm64 + InstallerUrl: https://github.com/sacloud/usacloud/releases/download/v1.22.1/usacloud_windows-arm64.zip + InstallerSha256: 5CBAAA14816B398B8AA007CB3000F5C1A0C6DD6D085E70F550D09EBD3B8FDC4D +- Architecture: x86 + InstallerUrl: https://github.com/sacloud/usacloud/releases/download/v1.22.1/usacloud_windows-386.zip + InstallerSha256: F830C2E712FC244E4E6FE1B0EF0DCFA98C140E54D116D1B30FB330DA4C5E0106 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-04-28 diff --git a/manifests/s/sacloud/usacloud/1.22.1/sacloud.usacloud.locale.en-US.yaml b/manifests/s/sacloud/usacloud/1.22.1/sacloud.usacloud.locale.en-US.yaml new file mode 100644 index 0000000000000..2f9ad30e3f2ce --- /dev/null +++ b/manifests/s/sacloud/usacloud/1.22.1/sacloud.usacloud.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: sacloud.usacloud +PackageVersion: 1.22.1 +PackageLocale: en-US +Publisher: sacloud +PublisherUrl: https://github.com/sacloud +PackageName: usacloud +PackageUrl: https://github.com/sacloud/usacloud +License: Apache-2.0 +LicenseUrl: https://github.com/sacloud/usacloud/blob/master/LICENSE +ShortDescription: CLI client for the SAKURA Cloud +Description: usacloud is a CLI client for the SAKURA Cloud IaaS platform, providing commands to manage servers, disks, networks, and other cloud resources. +Tags: +- cli +- cloud +- iaas +- sakura-cloud +- sacloud +ReleaseNotesUrl: https://github.com/sacloud/usacloud/releases/tag/v1.22.1 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/s/sacloud/usacloud/1.22.1/sacloud.usacloud.locale.ja-JP.yaml b/manifests/s/sacloud/usacloud/1.22.1/sacloud.usacloud.locale.ja-JP.yaml new file mode 100644 index 0000000000000..5c9ea1482e2a6 --- /dev/null +++ b/manifests/s/sacloud/usacloud/1.22.1/sacloud.usacloud.locale.ja-JP.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: sacloud.usacloud +PackageVersion: 1.22.1 +PackageLocale: ja-JP +Publisher: sacloud +PublisherUrl: https://github.com/sacloud +PublisherSupportUrl: https://github.com/sacloud/usacloud/issues +PackageName: usacloud +PackageUrl: https://github.com/sacloud/usacloud +License: Apache-2.0 +LicenseUrl: https://github.com/sacloud/usacloud/blob/master/LICENSE +ShortDescription: さくらのクラウド用CLIクライアント +Description: usacloudは、さくらのクラウドIaaSプラットフォーム用のCLIクライアントです。サーバー、ディスク、ネットワークなどのクラウドリソースを管理するコマンドを提供します。 +Tags: +- cli +- cloud +- iaas +- sakura-cloud +- sacloud +ReleaseNotesUrl: https://github.com/sacloud/usacloud/releases/tag/v1.22.1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/sacloud/usacloud/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/sacloud/usacloud/1.22.1/sacloud.usacloud.yaml b/manifests/s/sacloud/usacloud/1.22.1/sacloud.usacloud.yaml new file mode 100644 index 0000000000000..5a956a04539e4 --- /dev/null +++ b/manifests/s/sacloud/usacloud/1.22.1/sacloud.usacloud.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: sacloud.usacloud +PackageVersion: 1.22.1 +DefaultLocale: ja-JP +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/secrypt/digiSealreader/8.0.0.2/secrypt.digiSealreader.installer.yaml b/manifests/s/secrypt/digiSealreader/8.0.0.3/secrypt.digiSealreader.installer.yaml similarity index 85% rename from manifests/s/secrypt/digiSealreader/8.0.0.2/secrypt.digiSealreader.installer.yaml rename to manifests/s/secrypt/digiSealreader/8.0.0.3/secrypt.digiSealreader.installer.yaml index 8ba17ba74ec75..632f6953e56c8 100644 --- a/manifests/s/secrypt/digiSealreader/8.0.0.2/secrypt.digiSealreader.installer.yaml +++ b/manifests/s/secrypt/digiSealreader/8.0.0.3/secrypt.digiSealreader.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: secrypt.digiSealreader -PackageVersion: 8.0.0.2 +PackageVersion: 8.0.0.3 InstallerType: exe InstallModes: - interactive @@ -34,6 +34,6 @@ FileExtensions: Installers: - Architecture: x86 InstallerUrl: https://www.secrypt.de/downloads/setup_digiSeal_reader.exe - InstallerSha256: 6EA7E83AE52DFF65CF167C01B6E9B7BBA4ACA7979E1BAD4E18B01544FD833D62 + InstallerSha256: 9A6CCA8A613B2C5AD2778C168ED852797FD95568F1307285D6D3F301F60BE3CD ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/s/secrypt/digiSealreader/8.0.0.2/secrypt.digiSealreader.locale.en-US.yaml b/manifests/s/secrypt/digiSealreader/8.0.0.3/secrypt.digiSealreader.locale.en-US.yaml similarity index 98% rename from manifests/s/secrypt/digiSealreader/8.0.0.2/secrypt.digiSealreader.locale.en-US.yaml rename to manifests/s/secrypt/digiSealreader/8.0.0.3/secrypt.digiSealreader.locale.en-US.yaml index 370c5ecd05910..dbc4be2c9a7ca 100644 --- a/manifests/s/secrypt/digiSealreader/8.0.0.2/secrypt.digiSealreader.locale.en-US.yaml +++ b/manifests/s/secrypt/digiSealreader/8.0.0.3/secrypt.digiSealreader.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: secrypt.digiSealreader -PackageVersion: 8.0.0.2 +PackageVersion: 8.0.0.3 PackageLocale: en-US Publisher: secrypt GmbH PublisherUrl: https://www.secrypt.de/ diff --git a/manifests/s/secrypt/digiSealreader/8.0.0.2/secrypt.digiSealreader.locale.zh-CN.yaml b/manifests/s/secrypt/digiSealreader/8.0.0.3/secrypt.digiSealreader.locale.zh-CN.yaml similarity index 97% rename from manifests/s/secrypt/digiSealreader/8.0.0.2/secrypt.digiSealreader.locale.zh-CN.yaml rename to manifests/s/secrypt/digiSealreader/8.0.0.3/secrypt.digiSealreader.locale.zh-CN.yaml index a7956d1400734..670ebe8ad9a05 100644 --- a/manifests/s/secrypt/digiSealreader/8.0.0.2/secrypt.digiSealreader.locale.zh-CN.yaml +++ b/manifests/s/secrypt/digiSealreader/8.0.0.3/secrypt.digiSealreader.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: secrypt.digiSealreader -PackageVersion: 8.0.0.2 +PackageVersion: 8.0.0.3 PackageLocale: zh-CN License: 专有软件 ShortDescription: 用于验证签名、盖章文档及时间戳的免费软件 diff --git a/manifests/s/secrypt/digiSealreader/8.0.0.2/secrypt.digiSealreader.yaml b/manifests/s/secrypt/digiSealreader/8.0.0.3/secrypt.digiSealreader.yaml similarity index 91% rename from manifests/s/secrypt/digiSealreader/8.0.0.2/secrypt.digiSealreader.yaml rename to manifests/s/secrypt/digiSealreader/8.0.0.3/secrypt.digiSealreader.yaml index 407958777c8e8..c59e9581e51a6 100644 --- a/manifests/s/secrypt/digiSealreader/8.0.0.2/secrypt.digiSealreader.yaml +++ b/manifests/s/secrypt/digiSealreader/8.0.0.3/secrypt.digiSealreader.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: secrypt.digiSealreader -PackageVersion: 8.0.0.2 +PackageVersion: 8.0.0.3 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/s/steipete/gogcli/0.28.0/steipete.gogcli.installer.yaml b/manifests/s/steipete/gogcli/0.28.0/steipete.gogcli.installer.yaml new file mode 100644 index 0000000000000..243188bbb5fb3 --- /dev/null +++ b/manifests/s/steipete/gogcli/0.28.0/steipete.gogcli.installer.yaml @@ -0,0 +1,22 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: steipete.gogcli +PackageVersion: 0.28.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: gog.exe + PortableCommandAlias: gog +Commands: +- gog +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/openclaw/gogcli/releases/download/v0.28.0/gogcli_0.28.0_windows_amd64.zip + InstallerSha256: FF59CC3C91A449C188FEB433C37C7FDB129186069261FC5C1624E8A9DE27D7D7 +- Architecture: arm64 + InstallerUrl: https://github.com/openclaw/gogcli/releases/download/v0.28.0/gogcli_0.28.0_windows_arm64.zip + InstallerSha256: 540413D0B31BF8F491B964D4485406056BC74FB8CB3D24A7D1E8AFD07431FCA2 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/steipete/gogcli/0.28.0/steipete.gogcli.locale.en-US.yaml b/manifests/s/steipete/gogcli/0.28.0/steipete.gogcli.locale.en-US.yaml new file mode 100644 index 0000000000000..6b3640e9caf09 --- /dev/null +++ b/manifests/s/steipete/gogcli/0.28.0/steipete.gogcli.locale.en-US.yaml @@ -0,0 +1,52 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: steipete.gogcli +PackageVersion: 0.28.0 +PackageLocale: en-US +Publisher: Peter Steinberger +PublisherUrl: https://steipete.me/ +PublisherSupportUrl: https://github.com/steipete/gogcli/issues +Author: Peter Steinberger +PackageName: gogcli +PackageUrl: https://gogcli.sh/ +License: MIT +LicenseUrl: https://github.com/openclaw/gogcli/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Peter Steinberger +CopyrightUrl: https://github.com/steipete/gogcli/blob/HEAD/LICENSE +ShortDescription: gog unifies Gmail, Calendar, Drive, Contacts, Tasks, Sheets, Docs, Slides, and People under one CLI — with JSON output and sane defaults. +Description: |- + gog unifies Gmail, Calendar, Drive, Contacts, Tasks, Sheets, Docs, Slides, and People under one CLI — with JSON output and sane defaults. + + Features + - Gmail + - Search threads, send mail, manage labels, drafts, filters, settings, and watch (Pub/Sub push). + - Calendar + - List/create/update events, respond to invites, detect conflicts, and check free/busy. + - Drive + - List/search/upload/download, export Docs formats, permissions, folders, URLs. + - Sheets / Docs / Slides + - Read/write Sheets; export Docs/Slides/Sheets to PDF/DOCX/PPTX/XLSX/CSV via Drive. + - Contacts / People + - Personal contacts, “other contacts”, Workspace directory, and your profile. + - Tasks + - Tasklists + tasks: add/update/done/undo/delete/clear with paging and JSON output. +Moniker: gogcli +Tags: +- gcal +- gcontacts +- gdrive +- gmail +- google +ReleaseNotes: |- + 0.28.0 + + Added + - Contacts: add guarded contacts dedupe --apply merging with exact dry-run plans, repeatable --resource scoping, confirmation, full updatable-field preservation, etag checks before deletion, and refusal of ambiguous or unmergeable groups. (#815) — thanks @privatenumber. + - Docs: expose heading IDs in docs headings list --json and docs paragraphs list --json for building in-document deep links. (#819, #820) — thanks @sebsnyk. + + Changed + - Gmail: show ordinary message bodies in full by default in text output, retain a generous cap for unusually large messages, and point truncated output to --full or --json. (#807) — thanks @privatenumber. +ReleaseNotesUrl: https://github.com/openclaw/gogcli/releases/tag/v0.28.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/steipete/gogcli/0.28.0/steipete.gogcli.yaml b/manifests/s/steipete/gogcli/0.28.0/steipete.gogcli.yaml new file mode 100644 index 0000000000000..2c3adda93a1a9 --- /dev/null +++ b/manifests/s/steipete/gogcli/0.28.0/steipete.gogcli.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: steipete.gogcli +PackageVersion: 0.28.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/surge-downloader/surge/0.9.0/surge-downloader.surge.installer.yaml b/manifests/s/surge-downloader/surge/0.9.0/surge-downloader.surge.installer.yaml new file mode 100644 index 0000000000000..288c226289d4b --- /dev/null +++ b/manifests/s/surge-downloader/surge/0.9.0/surge-downloader.surge.installer.yaml @@ -0,0 +1,28 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: surge-downloader.surge +PackageVersion: 0.9.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: surge.exe + PortableCommandAlias: surge +InstallModes: +- silent +UpgradeBehavior: uninstallPrevious +Commands: +- surge +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/SurgeDM/Surge/releases/download/v0.9.0/Surge_0.9.0_windows_386.zip + InstallerSha256: A4B065B70E5ECCDCCD5FA3C559B772432D0B2733BE54663711951E769C243C8D +- Architecture: x64 + InstallerUrl: https://github.com/SurgeDM/Surge/releases/download/v0.9.0/Surge_0.9.0_windows_amd64.zip + InstallerSha256: 2889006F6AD142E0A4336909A15F6FC701BEDE498C50740ACE3A24B79C4D2106 +- Architecture: arm64 + InstallerUrl: https://github.com/SurgeDM/Surge/releases/download/v0.9.0/Surge_0.9.0_windows_arm64.zip + InstallerSha256: 9427C42275C8D7E3130ABBBBB20CE7A27ABA92D52DD8E8ACF773DCDA35A4544B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/surge-downloader/surge/0.9.0/surge-downloader.surge.locale.en-US.yaml b/manifests/s/surge-downloader/surge/0.9.0/surge-downloader.surge.locale.en-US.yaml new file mode 100644 index 0000000000000..25000f3975ba5 --- /dev/null +++ b/manifests/s/surge-downloader/surge/0.9.0/surge-downloader.surge.locale.en-US.yaml @@ -0,0 +1,46 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: surge-downloader.surge +PackageVersion: 0.9.0 +PackageLocale: en-US +Publisher: Junaid Islam +PublisherUrl: https://github.com/SurgeDM +PublisherSupportUrl: https://github.com/SurgeDM/Surge/issues +Author: Junaid Islam +PackageName: Surge Downloader +PackageUrl: https://github.com/SurgeDM/Surge +License: MIT +LicenseUrl: https://github.com/SurgeDM/Surge/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Junaid Islam +CopyrightUrl: https://github.com/SurgeDM/Surge/blob/HEAD/LICENSE +ShortDescription: Surge is a blazing fast, open-source terminal (TUI) download manager built in Go. +Description: Surge is designed for power users who prefer a keyboard-driven workflow. It features a beautiful Terminal User Interface (TUI), as well as a background Headless Server and a CLI tool for automation. +Moniker: surge-downloader +Tags: +- cli +- download-manager +- downloader +- go +- golang +- terminal +- tui +ReleaseNotes: |- + Changelog + - 16db424 add vim navigation keys to the settings interface (#443) + - d046dbb chore(deps): bump charm.land/bubbletea/v2 from 2.0.6 to 2.0.7 (#474) + - 8b90128 chore(deps): bump charm.land/lipgloss/v2 from 2.0.3 to 2.0.4 (#485) + - 360b4f9 chore(deps): bump modernc.org/sqlite from 1.51.0 to 1.52.0 (#475) + - 91062dc ci: add data race detector test for go (#483) + - 1f14c32 ci: delete stale test failure comments and run on always (#488) + - 3198ae3 feat: add global and per download rate limiting to surge (#465) + - 11a4273 feat: implement purge functionality (#480) + - f24dfa7 fix(cli): don't split a single URL into mirrors on query-string commas (#316) (#481) + - 8e397c7 fix: make keymap parsing case-insensitive and add open folder binding (#487) + Enjoying Surge? Consider supporting the project to keep it blazing fast! + - GitHub Sponsors + - Buy Me a Coffee + - Release automation powered by GoReleaser Pro +ReleaseNotesUrl: https://github.com/SurgeDM/Surge/releases/tag/v0.9.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/surge-downloader/surge/0.9.0/surge-downloader.surge.yaml b/manifests/s/surge-downloader/surge/0.9.0/surge-downloader.surge.yaml new file mode 100644 index 0000000000000..40ffd9e44a21c --- /dev/null +++ b/manifests/s/surge-downloader/surge/0.9.0/surge-downloader.surge.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: surge-downloader.surge +PackageVersion: 0.9.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/suzuki-shunsuke/ghtkn/0.2.6/suzuki-shunsuke.ghtkn.installer.yaml b/manifests/s/suzuki-shunsuke/ghtkn/0.2.6/suzuki-shunsuke.ghtkn.installer.yaml new file mode 100644 index 0000000000000..c6f0c32d64380 --- /dev/null +++ b/manifests/s/suzuki-shunsuke/ghtkn/0.2.6/suzuki-shunsuke.ghtkn.installer.yaml @@ -0,0 +1,22 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: suzuki-shunsuke.ghtkn +PackageVersion: 0.2.6 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ghtkn.exe + PortableCommandAlias: ghtkn +Commands: +- ghtkn +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/suzuki-shunsuke/ghtkn/releases/download/v0.2.6/ghtkn_windows_amd64.zip + InstallerSha256: 82761A99B97336A671FFF16DA4950B4D76E969D386FBC5237361EB00D504CB3F +- Architecture: arm64 + InstallerUrl: https://github.com/suzuki-shunsuke/ghtkn/releases/download/v0.2.6/ghtkn_windows_arm64.zip + InstallerSha256: 140374320633C496AB8580F9406B72FD937C58F3CC14B085BE76BFDD556D8C45 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/suzuki-shunsuke/ghtkn/0.2.6/suzuki-shunsuke.ghtkn.locale.en-US.yaml b/manifests/s/suzuki-shunsuke/ghtkn/0.2.6/suzuki-shunsuke.ghtkn.locale.en-US.yaml new file mode 100644 index 0000000000000..4da85c716029b --- /dev/null +++ b/manifests/s/suzuki-shunsuke/ghtkn/0.2.6/suzuki-shunsuke.ghtkn.locale.en-US.yaml @@ -0,0 +1,47 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: suzuki-shunsuke.ghtkn +PackageVersion: 0.2.6 +PackageLocale: en-US +Publisher: Shunsuke Suzuki +PublisherUrl: https://suzuki-shunsuke.github.io/profile/ +PublisherSupportUrl: https://github.com/suzuki-shunsuke/ghtkn/issues +Author: Shunsuke Suzuki +PackageName: ghtkn +PackageUrl: https://github.com/suzuki-shunsuke/ghtkn +License: MIT +LicenseUrl: https://github.com/suzuki-shunsuke/ghtkn/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Shunsuke Suzuki +CopyrightUrl: https://github.com/suzuki-shunsuke/ghtkn/blob/HEAD/LICENSE +ShortDescription: A CLI to create short-lived (8 hours) GitHub App User Access Token for secure local development +Moniker: ghtkn +Tags: +- cli +- github +- github-app-token +- github-token +- security +ReleaseNotes: |- + Features + #439 Support GHTKN_GIT_APP to switch the app for Git Credential Helper + #440 Add an app name to error messages and the one-time code prompt + + Support GHTKN_GIT_APP to switch the app for Git Credential Helper + Unfortunately, .apps[].git_owner doesn't match when accessing fork repositories. + For instance, when you checkout a pull request from a fork repository by gh pr checkout command and push commits to the fork repository, .apps[].git_owner doesn't work unless you configure fork repositories in ghtkn.yaml. + As of ghtkn v0.2.6, the environment variable GHTKN_GIT_APP is useful. + GHTKN_GIT_APP is similar to GHTKN_APP but it's used for Git Credential Helper. + e.g. + export GHTKN_GIT_APP=suzuki-shunsuke/git + The priority of the app used for Git Credential Helper is as follows: + 1. .apps[].git_owner if git credential helper's username matches + 2. GHTKN_GIT_APP + 3. GHTKN_APP if GHTKN_GIT_APP is not set + 4. The default app +ReleaseNotesUrl: https://github.com/suzuki-shunsuke/ghtkn/releases/tag/v0.2.6 +Documentations: +- DocumentLabel: Usage + DocumentUrl: https://github.com/suzuki-shunsuke/ghtkn/blob/HEAD/USAGE.md +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/suzuki-shunsuke/ghtkn/0.2.6/suzuki-shunsuke.ghtkn.yaml b/manifests/s/suzuki-shunsuke/ghtkn/0.2.6/suzuki-shunsuke.ghtkn.yaml new file mode 100644 index 0000000000000..6dcb7195fd225 --- /dev/null +++ b/manifests/s/suzuki-shunsuke/ghtkn/0.2.6/suzuki-shunsuke.ghtkn.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: suzuki-shunsuke.ghtkn +PackageVersion: 0.2.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tulip/TulipPlayer/2.11.0.0/Tulip.TulipPlayer.installer.yaml b/manifests/t/Tulip/TulipPlayer/2.11.0.0/Tulip.TulipPlayer.installer.yaml new file mode 100644 index 0000000000000..9216a6c2dabf6 --- /dev/null +++ b/manifests/t/Tulip/TulipPlayer/2.11.0.0/Tulip.TulipPlayer.installer.yaml @@ -0,0 +1,21 @@ +# Automatically updated by the winget bot at 2026/Jun/15 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Tulip.TulipPlayer +PackageVersion: 2.11.0.0 +Protocols: +- tulip-player +ReleaseDate: 2026-01-27 +Installers: +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://download.tulip.co/releases/prod/win/Tulip%20Player%20Setup.msi + InstallerSha256: 8F21B117B2E9B770F0DCBF239E07C903730BC189A44D52955449C47FE947C476 + InstallerSwitches: + InstallLocation: APPLICATIONROOTDIRECTORY="" + ProductCode: '{8B8533F6-9CCD-422B-956C-9892D3EED2C6}' + AppsAndFeaturesEntries: + - InstallerType: exe +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tulip/TulipPlayer/2.11.0.0/Tulip.TulipPlayer.locale.en-US.yaml b/manifests/t/Tulip/TulipPlayer/2.11.0.0/Tulip.TulipPlayer.locale.en-US.yaml new file mode 100644 index 0000000000000..ad0411f1e9a86 --- /dev/null +++ b/manifests/t/Tulip/TulipPlayer/2.11.0.0/Tulip.TulipPlayer.locale.en-US.yaml @@ -0,0 +1,72 @@ +# Automatically updated by the winget bot at 2026/Jun/15 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Tulip.TulipPlayer +PackageVersion: 2.11.0.0 +PackageLocale: en-US +Publisher: Tulip +PublisherUrl: https://tulip.co/ +PublisherSupportUrl: https://support.tulip.co/ +PrivacyUrl: https://tulip.co/legal/privacy-policy/ +Author: Tulip Interfaces, Inc. +PackageName: Tulip Player +PackageUrl: https://download.tulip.co/ +License: Proprietary +LicenseUrl: https://tulip.co/legal/terms-of-service/ +Copyright: Copyright © 2026 Tulip Interfaces, Inc. +CopyrightUrl: https://tulip.co/legal/terms-of-service/ +ShortDescription: Play Tulip apps on machines, tablets, computers, and phones. Enable powerful, consumer-grade user experiences for your workforce across devices +Description: |- + Play Tulip apps on machines, tablets, computers, and phones. Enable powerful, consumer-grade user experiences for your workforce across devices + The Tulip Player windows application, offers an extended set of features: + A more immersive user experience: + - The Tulip Player Windows App will persist its window size, position, and full screen state across restarts. This can be helpful if you always want your Tulip Player to appear in the same position, or to always be maximized. + - The Tulip Player Windows App is a dedicated user experience. It can only be used to access Tulip Apps - not Facebook. + Better hardware access: + - The Tulip Player Windows App supports Tulip Vision + - It can open files from the local computer within your Tulip App. + - In some situations, hardware barcode scanners will work better. + - It supports a wide range of hardware devices which can be found here + Better authentication experience: + - Administrators only have to authenticate the Tulip Player Windows App once per physical computer. In contrast, the Tulip Web Player has to be authenticated separately for each operator. In some situations, shareable station links can be used to work around this limitation. + - For the the Tulip Player Windows App, credentials are securely persisted to the file system. This makes it harder for an operator to accidentally de-register their station, which would require an administrator to re-register them. + - The Tulip Player Windows App can be registered with multiple Tulip instances, making it easier to switch between a staging and production instance, for example. + - The Tulip Player Windows App and the Tulip App Editor can be used simultaneously. You must sign out of the App Editor in order to access the Tulip Web Player. + Diagnostics: + - The Tulip Player Windows App makes logs easier to access. + - The Tulip Player Windows App can collect more detailed information about the computer it’s running on. +ReleaseNotes: |- + Version 2.9.1 of Desktop Player will be available for download by Saturday, January 24th 9:00PM ET! If you have auto updates enabled, the Desktop Player application will update in the background and changes will take effect the next time the application is restarted. Alternatively, you can manually initiate the update process from the file menu. + Feature Enhancements + - In the multi-tool torque driver and open protocol torque driver, a new "alarm" event has been added to torque tool Open Protocol driver(s). This event allows monitoring of conditions, such as low battery. Read more here + - In the multi-tool torque driver, trace data (to be configured as a function and returned as an event with the specific tool ID) are now available. + - In the multi-tool torque driver, rawJSON field is now available as part of the extendedTighteningData like torqueOP driver. + - Allows a new protocol ('wsync://') in the open url trigger, which enables further connection with Zebra devices. + - Added more extensions to prevent the {{Open File or Folder}} trigger from opening executable files and/or bundles. Added more extensions to prevent the {{Save Image}} trigger from saving executable files. + - With Player 2.9.1, support for Vietnamese is now included. + - For customers in China, they are now able to get faster player updates and downloads by updating an environment variable. Read more here For faster player updates: IT should update their environment variables to [Environment]::SetEnvironmentVariable("TULIP_PLAYER_SET_DOWNLOAD_REGION", "china", [EnvironmentVariableTarget]::Machine) + - For Player downloads: + - Windows + - EXE: https://download.tulipco.cn.s3.cn-north-1.amazonaws.com.cn/releases/prod/win/Tulip%20Player%20Setup.exe + - MSI: https://download.tulipco.cn.s3.cn-north-1.amazonaws.com.cn/releases/prod/win/Tulip%20Player%20Setup.msi + - Mac + - DMG: https://download.tulipco.cn.s3.cn-north-1.amazonaws.com.cn/releases/prod/mac/Tulip%20Player.dmg + - Linux + - DEB: https://download.tulipco.cn.s3.cn-north-1.amazonaws.com.cn/releases/prod/linux/amd64/Tulip%20Player.deb + Bug Fixes + - Fixes an issue where the timer of a custom widget that is not visible will run slower than it's visible counterpart. + - Fixes an issue where plugged in cameras were not being reported as connected to a station, and camera configuration updates were failing intermittently. + - Note for Intel-Based Macs running Player, they will remain to Player 2.9.0. Read more here + Full List of Ticket ID included in Release + If you are tracking any of these tickets and would like more details, please contact Tulip Customer Support via support@tulip.co or live chat through your instance. + - PLAT-47552 + - PLAT-47791 + - PLAT-47824 + - PLAT-47896 + - PLAT-47965 + - PLAT-48264 + - PLAT-49702 + - PLAT-48742 +ReleaseNotesUrl: https://support.tulip.co/docs/player-291-release-jan-2026 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tulip/TulipPlayer/2.11.0.0/Tulip.TulipPlayer.locale.zh-CN.yaml b/manifests/t/Tulip/TulipPlayer/2.11.0.0/Tulip.TulipPlayer.locale.zh-CN.yaml new file mode 100644 index 0000000000000..db33e49193a54 --- /dev/null +++ b/manifests/t/Tulip/TulipPlayer/2.11.0.0/Tulip.TulipPlayer.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Automatically updated by the winget bot at 2026/Jun/15 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Tulip.TulipPlayer +PackageVersion: 2.11.0.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 在各类设备上运行 Tulip 应用,包括机器、平板、电脑和手机,为您的员工提供跨设备的强大消费级用户体验。 +Description: |- + 在各类设备上运行 Tulip 应用,包括机器、平板、电脑和手机。为您的员工提供跨设备的强大消费级用户体验。 + Tulip Player Windows 应用程序提供扩展功能集: + 更沉浸式的用户体验: + - 窗口尺寸、位置和全屏状态可跨重启保持,便于始终固定显示位置或保持最大化 + - 专属应用环境,仅用于访问 Tulip 应用(不支持 Facebook 等无关功能) + 更完善的硬件支持: + - 支持 Tulip Vision 视觉功能 + - 可在 Tulip 应用中直接打开本地计算机文件 + - 硬件条码扫描器兼容性更优 + - 支持广泛的硬件设备(具体清单参见此处) + 更便捷的认证体验: + - 管理员只需为每台物理计算机认证一次(相比网页版需逐个操作员认证) + - 凭证安全存储于文件系统,避免操作员意外注销工作站(需管理员重新注册) + - 支持同时注册多个 Tulip 实例(如测试环境与生产环境快速切换) + - 可与 Tulip 应用编辑器同时运行(使用网页版需先退出编辑器) + 诊断功能: + - 日志访问更便捷 + - 可收集更详尽的运行设备信息 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tulip/TulipPlayer/2.11.0.0/Tulip.TulipPlayer.yaml b/manifests/t/Tulip/TulipPlayer/2.11.0.0/Tulip.TulipPlayer.yaml new file mode 100644 index 0000000000000..415c7c298b6e9 --- /dev/null +++ b/manifests/t/Tulip/TulipPlayer/2.11.0.0/Tulip.TulipPlayer.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2026/Jun/15 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Tulip.TulipPlayer +PackageVersion: 2.11.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/t/Typst/Typst/.validation b/manifests/t/Typst/Typst/.validation new file mode 100644 index 0000000000000..0d19e7123a6fd --- /dev/null +++ b/manifests/t/Typst/Typst/.validation @@ -0,0 +1 @@ +{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"6e359024-b82e-445c-9425-89c6ad2d844f","TestPlan":"Policy-Test-1.2","PackagePath":"manifests/t/Typst/Typst/0.15.0","CommitId":"18dbd9ed50768f2cc2541b493f2a5a5505e54c5e"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/t/Typst/Typst/0.15.0/Typst.Typst.installer.yaml b/manifests/t/Typst/Typst/0.15.0/Typst.Typst.installer.yaml new file mode 100644 index 0000000000000..7be5a72cc140a --- /dev/null +++ b/manifests/t/Typst/Typst/0.15.0/Typst.Typst.installer.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Typst.Typst +PackageVersion: 0.15.0 +InstallerType: zip +NestedInstallerType: portable +Commands: +- typst +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: typst-x86_64-pc-windows-msvc\typst.exe + PortableCommandAlias: typst + InstallerUrl: https://github.com/typst/typst/releases/download/v0.15.0/typst-x86_64-pc-windows-msvc.zip + InstallerSha256: 66AE7F0907B4B9AFED5C7D6CB9B21E07F0F3C3D4E293BA3E0026A54D88202FE9 +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: typst-aarch64-pc-windows-msvc\typst.exe + PortableCommandAlias: typst + InstallerUrl: https://github.com/typst/typst/releases/download/v0.15.0/typst-aarch64-pc-windows-msvc.zip + InstallerSha256: 6085084DB3E3AA025C3C8DFC1ADF1C758E2FEBD08E574182FA4189AD79124293 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/Typst/Typst/0.15.0/Typst.Typst.locale.en-US.yaml b/manifests/t/Typst/Typst/0.15.0/Typst.Typst.locale.en-US.yaml new file mode 100644 index 0000000000000..5caeb612c6441 --- /dev/null +++ b/manifests/t/Typst/Typst/0.15.0/Typst.Typst.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: Typst.Typst +PackageVersion: 0.15.0 +PackageLocale: en-US +Publisher: Typst GmbH +PublisherUrl: https://typst.app/ +PublisherSupportUrl: https://github.com/typst/typst/issues +PrivacyUrl: https://typst.app/privacy +Author: Typst GmbH +PackageName: Typst +PackageUrl: https://typst.app/ +License: Apache-2.0 +LicenseUrl: https://github.com/typst/typst/blob/HEAD/LICENSE +ShortDescription: A new markup-based typesetting system that is powerful and easy to learn. +Description: |- + Typst is a new markup-based typesetting system that is designed to be as powerful as LaTeX while being much easier to learn and use. Typst has: + - Built-in markup for the most common formatting tasks + - Flexible functions for everything else + - A tightly integrated scripting system + - Math typesetting, bibliography management, and more + - Fast compile times thanks to incremental compilation + - Friendly error messages in case something goes wrong +Tags: +- markup +- typesetting +ReleaseNotesUrl: https://github.com/typst/typst/releases/tag/v0.15.0 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://typst.app/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/Typst/Typst/0.15.0/Typst.Typst.locale.zh-CN.yaml b/manifests/t/Typst/Typst/0.15.0/Typst.Typst.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7b0165c160dff --- /dev/null +++ b/manifests/t/Typst/Typst/0.15.0/Typst.Typst.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Typst.Typst +PackageVersion: 0.15.0 +PackageLocale: zh-CN +ShortDescription: 基于标记的全新排版系统,功能强大,简单易学。 +Description: |- + Typst 是一款全新的基于标记的排版系统,其功能与 LaTeX 不相上下,但却更易于学习和使用。Typst 拥有: + - 为最常见的格式化任务提供内置标记 + - 为其它任务提供灵活的函数 + - 紧密集成的脚本系统 + - 数学排版、书目管理等功能 + - 借助增量编译实现快速编译 + - 友好的错误信息,以防出错 +Tags: +- 排版 +- 标记 +ReleaseNotesUrl: https://github.com/typst/typst/releases/tag/v0.15.0 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://typst.app/docs/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/t/Typst/Typst/0.15.0/Typst.Typst.yaml b/manifests/t/Typst/Typst/0.15.0/Typst.Typst.yaml new file mode 100644 index 0000000000000..8e5c06966b44b --- /dev/null +++ b/manifests/t/Typst/Typst/0.15.0/Typst.Typst.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: Typst.Typst +PackageVersion: 0.15.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/v/VirtualSurveyor/VirtualSurveyor/10.3.1.540/VirtualSurveyor.VirtualSurveyor.installer.yaml b/manifests/v/VirtualSurveyor/VirtualSurveyor/10.3.1.540/VirtualSurveyor.VirtualSurveyor.installer.yaml new file mode 100644 index 0000000000000..5797afd1345a1 --- /dev/null +++ b/manifests/v/VirtualSurveyor/VirtualSurveyor/10.3.1.540/VirtualSurveyor.VirtualSurveyor.installer.yaml @@ -0,0 +1,19 @@ +# Automatically updated by the winget bot at 2026/May/30 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: VirtualSurveyor.VirtualSurveyor +PackageVersion: 10.3.1.540 +InstallerType: exe +InstallModes: +- silent +InstallerSwitches: + Silent: /exenoui /quiet + SilentWithProgress: /exenoui /quiet +UpgradeBehavior: install +ReleaseDate: 2025-09-24 +Installers: +- Architecture: x86 + InstallerUrl: https://cdn.virtual-surveyor.com/installer/VirtualSurveyorInstaller.exe + InstallerSha256: 1C5D3D586E5E10AA6684AE58666D727CB50A088DDD1ED3D25A439D75C321FD12 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/v/VirtualSurveyor/VirtualSurveyor/10.3.1.540/VirtualSurveyor.VirtualSurveyor.locale.en-US.yaml b/manifests/v/VirtualSurveyor/VirtualSurveyor/10.3.1.540/VirtualSurveyor.VirtualSurveyor.locale.en-US.yaml new file mode 100644 index 0000000000000..cffa876718f9b --- /dev/null +++ b/manifests/v/VirtualSurveyor/VirtualSurveyor/10.3.1.540/VirtualSurveyor.VirtualSurveyor.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Automatically updated by the winget bot at 2026/May/30 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: VirtualSurveyor.VirtualSurveyor +PackageVersion: 10.3.1.540 +PackageLocale: en-US +Publisher: Virtual Surveyor nv +PublisherUrl: https://www.virtual-surveyor.com/ +PublisherSupportUrl: https://support.virtual-surveyor.com/ +Author: Virtual Surveyor NV +PackageName: Virtual Surveyor +PackageUrl: https://www.virtual-surveyor.com/download +License: Proprietary +LicenseUrl: https://www.virtual-surveyor.com/terms-of-service +Copyright: Copyright (C) 2025 Virtual Surveyor nv +ShortDescription: Smart drone‑surveying software that turns drone data into topographic surveys, stockpile inventories and other deliverables. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/x/XiaoweiCloud/CalendarTask/3.29.285.8979/XiaoweiCloud.CalendarTask.yaml b/manifests/v/VirtualSurveyor/VirtualSurveyor/10.3.1.540/VirtualSurveyor.VirtualSurveyor.yaml similarity index 52% rename from manifests/x/XiaoweiCloud/CalendarTask/3.29.285.8979/XiaoweiCloud.CalendarTask.yaml rename to manifests/v/VirtualSurveyor/VirtualSurveyor/10.3.1.540/VirtualSurveyor.VirtualSurveyor.yaml index 65e6b6ec9befc..ac4997169bf03 100644 --- a/manifests/x/XiaoweiCloud/CalendarTask/3.29.285.8979/XiaoweiCloud.CalendarTask.yaml +++ b/manifests/v/VirtualSurveyor/VirtualSurveyor/10.3.1.540/VirtualSurveyor.VirtualSurveyor.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2026/Jun/04 +# Automatically updated by the winget bot at 2026/May/30 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: XiaoweiCloud.CalendarTask -PackageVersion: 3.29.285.8979 +PackageIdentifier: VirtualSurveyor.VirtualSurveyor +PackageVersion: 10.3.1.540 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/v/VirusTotal/YARA-X/1.18.0/VirusTotal.YARA-X.installer.yaml b/manifests/v/VirusTotal/YARA-X/1.18.0/VirusTotal.YARA-X.installer.yaml new file mode 100644 index 0000000000000..265024560e9ba --- /dev/null +++ b/manifests/v/VirusTotal/YARA-X/1.18.0/VirusTotal.YARA-X.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: VirusTotal.YARA-X +PackageVersion: 1.18.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: yr.exe +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/VirusTotal/yara-x/releases/download/v1.18.0/yara-x-v1.18.0-x86_64-pc-windows-msvc.zip + InstallerSha256: ED87B16AB75FEC84E52CA46A46D823B5236F352C86E0398F1965851B5B600950 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/v/VirusTotal/YARA-X/1.18.0/VirusTotal.YARA-X.locale.en-US.yaml b/manifests/v/VirusTotal/YARA-X/1.18.0/VirusTotal.YARA-X.locale.en-US.yaml new file mode 100644 index 0000000000000..2e92566f084cf --- /dev/null +++ b/manifests/v/VirusTotal/YARA-X/1.18.0/VirusTotal.YARA-X.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: VirusTotal.YARA-X +PackageVersion: 1.18.0 +PackageLocale: en-US +Publisher: VirusTotal +PublisherUrl: https://github.com/VirusTotal +PublisherSupportUrl: https://github.com/VirusTotal/yara-x/issues +PackageName: YARA-X +PackageUrl: https://github.com/VirusTotal/yara-x +License: BSD-3-Clause +LicenseUrl: https://github.com/VirusTotal/yara-x/blob/HEAD/LICENSE +ShortDescription: YARA-X is a re-incarnation of YARA, a pattern matching tool designed with malware researchers in mind. This new incarnation intends to be faster, safer and more user-friendly than its predecessor. +ReleaseNotes: |- + What's Changed + - Improve scan performance by ignoring patterns that can't match due to file header constraints (#676). + - Optimize regular expression evaluation (#678). + - New --cpu-limit option for the CLI (e9ee494). + - BUGFIX: fix issues in atom extraction logic from regular expressions (#673). + - BUGFIX: stack overflow when compiling rules if YARA-X uses musl (#666). + Contributors: @FranciscoPombal @webknjaz +ReleaseNotesUrl: https://github.com/VirusTotal/yara-x/releases/tag/v1.18.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/VirusTotal/yara-x/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/v/VirusTotal/YARA-X/1.18.0/VirusTotal.YARA-X.yaml b/manifests/v/VirusTotal/YARA-X/1.18.0/VirusTotal.YARA-X.yaml new file mode 100644 index 0000000000000..1663981a7916a --- /dev/null +++ b/manifests/v/VirusTotal/YARA-X/1.18.0/VirusTotal.YARA-X.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: VirusTotal.YARA-X +PackageVersion: 1.18.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/v/VovSoft/SoftwareManager/1.1.0.0/VovSoft.SoftwareManager.installer.yaml b/manifests/v/VovSoft/SoftwareManager/1.1.0.0/VovSoft.SoftwareManager.installer.yaml new file mode 100644 index 0000000000000..deaca157ff196 --- /dev/null +++ b/manifests/v/VovSoft/SoftwareManager/1.1.0.0/VovSoft.SoftwareManager.installer.yaml @@ -0,0 +1,35 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: VovSoft.SoftwareManager +PackageVersion: 1.1.0.0 +InstallerLocale: en-US +Installers: +- Architecture: x86 + InstallerType: inno + InstallerUrl: https://files.vovsoft.com/software-manager.exe + InstallerSha256: 5FAF9E2C0E2282C890B16F6B66481D44D4EC21464D16E0CCB0382CFDF0193CFA + InstallModes: + - interactive + - silent + - silentWithProgress + UpgradeBehavior: install + ProductCode: Software Manager_is1 + AppsAndFeaturesEntries: + - DisplayName: Software Manager + ProductCode: Software Manager_is1 + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\VOVSOFT\Software Manager' +- Architecture: x86 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: softwaremanager.exe + PortableCommandAlias: softwaremanager + InstallerUrl: https://files.vovsoft.com/software-manager-portable.zip + InstallerSha256: 612012EEBD339BDFDC1110EB3674AA6B30FA53C664CB034D6D0ABCC6FC93AC02 + ArchiveBinariesDependOnPath: true +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-06-04 diff --git a/manifests/v/VovSoft/SoftwareManager/1.1.0.0/VovSoft.SoftwareManager.locale.en-US.yaml b/manifests/v/VovSoft/SoftwareManager/1.1.0.0/VovSoft.SoftwareManager.locale.en-US.yaml new file mode 100644 index 0000000000000..a412c8517bc34 --- /dev/null +++ b/manifests/v/VovSoft/SoftwareManager/1.1.0.0/VovSoft.SoftwareManager.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: VovSoft.SoftwareManager +PackageVersion: 1.1.0.0 +PackageLocale: en-US +Publisher: VOVSOFT +PublisherUrl: https://vovsoft.com/ +PublisherSupportUrl: https://vovsoft.com/contact/ +PrivacyUrl: https://vovsoft.com/privacy-policy/ +Author: VOVSOFT +PackageName: Vovsoft Software Manager +PackageUrl: https://vovsoft.com/software/software-manager/ +License: Freeware +LicenseUrl: https://vovsoft.com/eula/software-manager/ +Copyright: VOVSOFT.COM © 2015 - 2026 +ShortDescription: Vovsoft Software Manager is a utility designed to help users conveniently keep track of and manage their installed Vovsoft applications from a single, centralized interface. +Description: |- + Vovsoft Software Manager is a utility designed to help users conveniently keep track of and manage their installed Vovsoft applications from a single, centralized interface. + + - Comprehensive Overview: It displays a detailed list of all installed Vovsoft programs, showing the application name, the currently installed version, the latest available version, and the local installation path. + - Update Tracking: The manager helps identify which applications are out of date by comparing the installed version with the latest release, highlighting newer available versions in bold text. + - Installation & Uninstallation Controls: A right-click context menu allows users to manage the software directly. You can install updates or uninstall programs using standard, "Silent," or "Very Silent" execution modes. + - Quick Access: The context menu provides fast access to open the specific application's folder on your computer ("Show in Explorer") or navigate directly to the product's official website. + - Sync and Refresh: It includes options to refresh the local list of installations (F5) and manually pull the latest version data from the server to ensure your update status is accurate. +Tags: +- Software +- Manager +- Utilities +- Maintenance +ReleaseNotesUrl: https://vovsoft.com/version-history/software-manager/ +Documentations: +- DocumentLabel: Software Manager Help + DocumentUrl: https://vovsoft.com/help/software-manager/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/v/VovSoft/SoftwareManager/1.1.0.0/VovSoft.SoftwareManager.yaml b/manifests/v/VovSoft/SoftwareManager/1.1.0.0/VovSoft.SoftwareManager.yaml new file mode 100644 index 0000000000000..d44fdf306947a --- /dev/null +++ b/manifests/v/VovSoft/SoftwareManager/1.1.0.0/VovSoft.SoftwareManager.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: VovSoft.SoftwareManager +PackageVersion: 1.1.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/v/Vulki/VulkiExplorer/0.1.0/Vulki.VulkiExplorer.installer.yaml b/manifests/v/Vulki/VulkiExplorer/0.1.0/Vulki.VulkiExplorer.installer.yaml new file mode 100644 index 0000000000000..eaf52bd6d6bc6 --- /dev/null +++ b/manifests/v/Vulki/VulkiExplorer/0.1.0/Vulki.VulkiExplorer.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Vulki.VulkiExplorer +PackageVersion: 0.1.0 +InstallerLocale: en-US +InstallerType: wix +ProductCode: '{C9F7A8D7-DB84-476A-B57A-33EC41A87C62}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Rodrgwz/Vulki/releases/download/v1.0.0/Vulkiinstaller.msi + InstallerSha256: 1C09E790222270FB4F37DB6EE98B0D94A2EF77FA9A268883AE1680723AED0819 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/v/Vulki/VulkiExplorer/0.1.0/Vulki.VulkiExplorer.locale.en-US.yaml b/manifests/v/Vulki/VulkiExplorer/0.1.0/Vulki.VulkiExplorer.locale.en-US.yaml new file mode 100644 index 0000000000000..8619a490465b6 --- /dev/null +++ b/manifests/v/Vulki/VulkiExplorer/0.1.0/Vulki.VulkiExplorer.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: Vulki.VulkiExplorer +PackageVersion: 0.1.0 +PackageLocale: en-US +Publisher: Rodrgwz +PackageName: Vulki Explorer +License: MIT LIcense +ShortDescription: Minimalist file manager with keyboard-first navigation and Tokyo Night aestheric +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/v/Vulki/VulkiExplorer/0.1.0/Vulki.VulkiExplorer.yaml b/manifests/v/Vulki/VulkiExplorer/0.1.0/Vulki.VulkiExplorer.yaml new file mode 100644 index 0000000000000..b25a0f7f0ed86 --- /dev/null +++ b/manifests/v/Vulki/VulkiExplorer/0.1.0/Vulki.VulkiExplorer.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: Vulki.VulkiExplorer +PackageVersion: 0.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/v/vim/vim/9.2.0653/vim.vim.installer.yaml b/manifests/v/vim/vim/9.2.0653/vim.vim.installer.yaml new file mode 100644 index 0000000000000..0fb20e17bd841 --- /dev/null +++ b/manifests/v/vim/vim/9.2.0653/vim.vim.installer.yaml @@ -0,0 +1,36 @@ +# 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: vim.vim +PackageVersion: 9.2.0653 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Commands: +- gvim +- tee +- vim +- xxd +ProductCode: Vim 9.2 +ReleaseDate: 2026-06-16 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%VIM%' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/vim/vim-win32-installer/releases/download/v9.2.0653/gvim_9.2.0653_x86.exe + InstallerSha256: BBDF39BF17A240B382175D8D443C52E25FB29CD77C98A80CDF6A255761599754 +- Architecture: x64 + InstallerUrl: https://github.com/vim/vim-win32-installer/releases/download/v9.2.0653/gvim_9.2.0653_x64.exe + InstallerSha256: 33041F7C5ECF1D1F4EDFBF20773BF7F8075F1CB5A410AE453329605D9351DD0F +- Architecture: arm64 + InstallerUrl: https://github.com/vim/vim-win32-installer/releases/download/v9.2.0653/gvim_9.2.0653_arm64.exe + InstallerSha256: D7FD05ED9E15AB51C52031B122DB9724F8E50B787203219CC5C5E613D4C2534F +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/v/vim/vim/9.2.0653/vim.vim.locale.en-US.yaml b/manifests/v/vim/vim/9.2.0653/vim.vim.locale.en-US.yaml new file mode 100644 index 0000000000000..9b550fffd4487 --- /dev/null +++ b/manifests/v/vim/vim/9.2.0653/vim.vim.locale.en-US.yaml @@ -0,0 +1,72 @@ +# 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: vim.vim +PackageVersion: 9.2.0653 +PackageLocale: en-US +Publisher: Bram Moolenaar et al. +PublisherUrl: https://github.com/vim/vim-win32-installer +PublisherSupportUrl: https://github.com/vim/vim-win32-installer/issues +Author: Bram Moolenaar et al. +PackageName: Vim +PackageUrl: https://www.vim.org/ +License: | + Copyright (C) 1991-2020 Bram Moolenaar [Bram@vim.org] - Charityware / GNU GPL compatible +LicenseUrl: https://github.com/vim/vim-win32-installer#license--copyright +Copyright: Copyright (C) 1991-2020 Bram Moolenaar [Bram@vim.org] +CopyrightUrl: https://github.com/vim/vim-win32-installer#license--copyright +ShortDescription: | + Vim is a highly configurable text editor built to make creating and changing any kind of text very efficient +Moniker: vim +Tags: +- code-editor +- g-vim +- gvim +- text-editing +- text-editor +- tool +- utility +- vi +ReleaseNotes: |- + v9.2.0653 + Nightly Vim Windows build snapshots (more information). + If you do not know what to use, use the 32bit installer (use the signed one, if available). + Signed releases will occasionally be provided on a best effort approach. + Changes: + - 9.2.0653: [security]: out-of-bounds write in tree_count_words() + - runtime(erlang): Optimize operators and bitstring types + - 9.2.0652: popup: stale kitty image after clipwindow scrolls out of view + - 9.2.0651: completion: 'smartcase' doesn't work with 'longest' + - 9.2.0650: Vim aborts at startup when built with the example -O2 CFLAGS + Files: + 🔓 Unsigned Files: + - gvim_9.2.0653_x86.exe + 32-bit installer (If you don't know what to use, use this one) + - gvim_9.2.0653_x64.exe + 64-bit installer + - gvim_9.2.0653_arm64.exe + ARM64-bit installer + - gvim_9.2.0653_x86.zip + 32-bit zip archive + - gvim_9.2.0653_x64.zip + 64-bit zip archive + - gvim_9.2.0653_arm64.zip + ARM 64-bit zip archive + - gvim_9.2.0653_x86_pdb.7z + pdb files for debugging the corresponding 32-bit executable + - gvim_9.2.0653_x64_pdb.7z + pdb files for debugging the corresponding 64-bit executable + - gvim_9.2.0653_arm64_pdb.7z + pdb files for debugging the corresponding ARM 64-bit executable + Interface Information + - Strawberry Perl 5.38 + - LuaBinaries 5.4 + - Python2 2.7 + - Python3 3.8 or later + - Racket 8.17 (BC) + - RubyInstaller 3.4 + - libsodium 1.0.22 + See the README for detail. +ReleaseNotesUrl: https://github.com/vim/vim-win32-installer/releases/tag/v9.2.0653 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/v/vim/vim/9.2.0653/vim.vim.locale.zh-CN.yaml b/manifests/v/vim/vim/9.2.0653/vim.vim.locale.zh-CN.yaml new file mode 100644 index 0000000000000..093c36ab995ae --- /dev/null +++ b/manifests/v/vim/vim/9.2.0653/vim.vim.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: vim.vim +PackageVersion: 9.2.0653 +PackageLocale: zh-CN +Publisher: Bram Moolenaar et al. +PublisherUrl: https://github.com/vim/vim-win32-installer +PublisherSupportUrl: https://github.com/vim/vim-win32-installer/issues +Author: Bram Moolenaar et al. +PackageName: Vim +PackageUrl: https://www.vim.org/ +License: | + Copyright (C) 1991-2020 Bram Moolenaar [Bram@vim.org] - Charityware / GNU GPL compatible +LicenseUrl: https://github.com/vim/vim-win32-installer#license--copyright +Copyright: Copyright (C) 1991-2020 Bram Moolenaar [Bram@vim.org] +CopyrightUrl: https://github.com/vim/vim-win32-installer#license--copyright +ShortDescription: Vim 是一个高度可配置的文本编辑器,可高效创建和更改任何类型的文本。 +Tags: +- g-vim +- gvim +- vi +- 代码编辑器 +- 实用工具 +- 工具 +- 文本编辑 +- 文本编辑器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/v/vim/vim/9.2.0653/vim.vim.yaml b/manifests/v/vim/vim/9.2.0653/vim.vim.yaml new file mode 100644 index 0000000000000..554301574627a --- /dev/null +++ b/manifests/v/vim/vim/9.2.0653/vim.vim.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: vim.vim +PackageVersion: 9.2.0653 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/v/vim/vim/nightly/9.2.0653/vim.vim.nightly.installer.yaml b/manifests/v/vim/vim/nightly/9.2.0653/vim.vim.nightly.installer.yaml new file mode 100644 index 0000000000000..60c598a9e4852 --- /dev/null +++ b/manifests/v/vim/vim/nightly/9.2.0653/vim.vim.nightly.installer.yaml @@ -0,0 +1,34 @@ +# 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: vim.vim.nightly +PackageVersion: 9.2.0653 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Commands: +- diff +- gvim +- tee +- vim +- xxd +ProductCode: Vim 9.2 +ReleaseDate: 2026-06-16 +ElevationRequirement: elevationRequired +InstallationMetadata: + DefaultInstallLocation: '%VIM%' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/vim/vim-win32-installer/releases/download/v9.2.0653/gvim_9.2.0653_x86.exe + InstallerSha256: BBDF39BF17A240B382175D8D443C52E25FB29CD77C98A80CDF6A255761599754 +- Architecture: x64 + InstallerUrl: https://github.com/vim/vim-win32-installer/releases/download/v9.2.0653/gvim_9.2.0653_x64.exe + InstallerSha256: 33041F7C5ECF1D1F4EDFBF20773BF7F8075F1CB5A410AE453329605D9351DD0F +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/v/vim/vim/nightly/9.2.0653/vim.vim.nightly.locale.en-US.yaml b/manifests/v/vim/vim/nightly/9.2.0653/vim.vim.nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..24a99d3bab5fd --- /dev/null +++ b/manifests/v/vim/vim/nightly/9.2.0653/vim.vim.nightly.locale.en-US.yaml @@ -0,0 +1,70 @@ +# 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: vim.vim.nightly +PackageVersion: 9.2.0653 +PackageLocale: en-US +Publisher: Bram Moolenaar et al. +PublisherUrl: https://github.com/vim/vim-win32-installer +PublisherSupportUrl: https://github.com/vim/vim-win32-installer/issues +Author: Bram Moolenaar et al. +PackageName: Vim +PackageUrl: https://www.vim.org/ +License: Copyright (C) 1991-2020 Bram Moolenaar [Bram@vim.org] - Charityware / GNU GPL compatible +LicenseUrl: https://github.com/vim/vim-win32-installer#license--copyright +Copyright: Copyright (C) 1991-2020 Bram Moolenaar [Bram@vim.org] +CopyrightUrl: https://github.com/vim/vim-win32-installer#license--copyright +ShortDescription: Vim is a highly configurable text editor built to make creating and changing any kind of text very efficient +Moniker: vim +Tags: +- code-editor +- g-vim +- gvim +- text-editing +- text-editor +- tool +- utility +- vi +ReleaseNotes: |- + v9.2.0653 + Nightly Vim Windows build snapshots (more information). + If you do not know what to use, use the 32bit installer (use the signed one, if available). + Signed releases will occasionally be provided on a best effort approach. + Changes: + - 9.2.0653: [security]: out-of-bounds write in tree_count_words() + - runtime(erlang): Optimize operators and bitstring types + - 9.2.0652: popup: stale kitty image after clipwindow scrolls out of view + - 9.2.0651: completion: 'smartcase' doesn't work with 'longest' + - 9.2.0650: Vim aborts at startup when built with the example -O2 CFLAGS + Files: + 🔓 Unsigned Files: + - gvim_9.2.0653_x86.exe + 32-bit installer (If you don't know what to use, use this one) + - gvim_9.2.0653_x64.exe + 64-bit installer + - gvim_9.2.0653_arm64.exe + ARM64-bit installer + - gvim_9.2.0653_x86.zip + 32-bit zip archive + - gvim_9.2.0653_x64.zip + 64-bit zip archive + - gvim_9.2.0653_arm64.zip + ARM 64-bit zip archive + - gvim_9.2.0653_x86_pdb.7z + pdb files for debugging the corresponding 32-bit executable + - gvim_9.2.0653_x64_pdb.7z + pdb files for debugging the corresponding 64-bit executable + - gvim_9.2.0653_arm64_pdb.7z + pdb files for debugging the corresponding ARM 64-bit executable + Interface Information + - Strawberry Perl 5.38 + - LuaBinaries 5.4 + - Python2 2.7 + - Python3 3.8 or later + - Racket 8.17 (BC) + - RubyInstaller 3.4 + - libsodium 1.0.22 + See the README for detail. +ReleaseNotesUrl: https://github.com/vim/vim-win32-installer/releases/tag/v9.2.0653 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/v/vim/vim/nightly/9.2.0653/vim.vim.nightly.yaml b/manifests/v/vim/vim/nightly/9.2.0653/vim.vim.nightly.yaml new file mode 100644 index 0000000000000..e084360176dbf --- /dev/null +++ b/manifests/v/vim/vim/nightly/9.2.0653/vim.vim.nightly.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: vim.vim.nightly +PackageVersion: 9.2.0653 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/v/vriesdemichael/bb/1.35.2/vriesdemichael.bb.installer.yaml b/manifests/v/vriesdemichael/bb/1.35.2/vriesdemichael.bb.installer.yaml new file mode 100644 index 0000000000000..a79ace7172737 --- /dev/null +++ b/manifests/v/vriesdemichael/bb/1.35.2/vriesdemichael.bb.installer.yaml @@ -0,0 +1,17 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: vriesdemichael.bb +PackageVersion: 1.35.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: bb.exe + PortableCommandAlias: bb +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/vriesdemichael/bitbucket-server-cli/releases/download/v1.35.2/bb_1.35.2_windows_amd64.zip + InstallerSha256: 4F86E75ECDD67239C369E6DB17BDADD5DEF2E2F9986C1036E6B25DC4CB470921 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/v/vriesdemichael/bb/1.35.2/vriesdemichael.bb.locale.en-US.yaml b/manifests/v/vriesdemichael/bb/1.35.2/vriesdemichael.bb.locale.en-US.yaml new file mode 100644 index 0000000000000..dda5a4aced5ee --- /dev/null +++ b/manifests/v/vriesdemichael/bb/1.35.2/vriesdemichael.bb.locale.en-US.yaml @@ -0,0 +1,23 @@ +# 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: vriesdemichael.bb +PackageVersion: 1.35.2 +PackageLocale: en-US +Publisher: vriesdemichael +PublisherUrl: https://github.com/vriesdemichael +PublisherSupportUrl: https://github.com/vriesdemichael/bitbucket-server-cli/issues +PackageName: bb +PackageUrl: https://github.com/vriesdemichael/bitbucket-server-cli +License: Apache 2 +LicenseUrl: https://github.com/vriesdemichael/bitbucket-server-cli/blob/HEAD/LICENSE +ShortDescription: Bitbucket server (not cloud) command line tool. The 'gh' of bitbucket server. +ReleaseNotes: |- + v1.35.2 + Changes since v1.35.1. + Compare: v1.35.1...v1.35.2 + CI + - release: remove failing AUR publishing job (6d4d2f2) +ReleaseNotesUrl: https://github.com/vriesdemichael/bitbucket-server-cli/releases/tag/v1.35.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/v/vriesdemichael/bb/1.35.2/vriesdemichael.bb.yaml b/manifests/v/vriesdemichael/bb/1.35.2/vriesdemichael.bb.yaml new file mode 100644 index 0000000000000..c8d2863c509cb --- /dev/null +++ b/manifests/v/vriesdemichael/bb/1.35.2/vriesdemichael.bb.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: vriesdemichael.bb +PackageVersion: 1.35.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/w/WiresharkFoundation/Stratoshark/0.10.1/WiresharkFoundation.Stratoshark.installer.yaml b/manifests/w/WiresharkFoundation/Stratoshark/0.10.1/WiresharkFoundation.Stratoshark.installer.yaml new file mode 100644 index 0000000000000..b67ddb6c483d7 --- /dev/null +++ b/manifests/w/WiresharkFoundation/Stratoshark/0.10.1/WiresharkFoundation.Stratoshark.installer.yaml @@ -0,0 +1,32 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: WiresharkFoundation.Stratoshark +PackageVersion: 0.10.1 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: Stratoshark +ReleaseDate: 2026-06-10 +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Stratoshark' +Installers: +- Architecture: x64 + InstallerUrl: https://1.na.dl.wireshark.org/win64/Stratoshark-0.10.1-x64.exe + InstallerSha256: 3F98A10553ADE3813D44363E672D36EF51E23873FDBE46B90ACB72F4892013C6 + AppsAndFeaturesEntries: + - DisplayName: Stratoshark 0.10.1 x64 + Publisher: The Stratoshark developer community, https://www.wireshark.org + ProductCode: Stratoshark +- Architecture: arm64 + InstallerUrl: https://1.na.dl.wireshark.org/win64/Stratoshark-0.10.1-arm64.exe + InstallerSha256: 99FC4DA88484BE94EA32DC9B03BE449B98B1912D1343FFD32EFDC8DD8A975036 + AppsAndFeaturesEntries: + - DisplayName: Stratoshark 0.10.1 arm64 + Publisher: The Stratoshark developer community, https://www.wireshark.org + ProductCode: Stratoshark +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/w/WiresharkFoundation/Stratoshark/0.10.1/WiresharkFoundation.Stratoshark.locale.en-US.yaml b/manifests/w/WiresharkFoundation/Stratoshark/0.10.1/WiresharkFoundation.Stratoshark.locale.en-US.yaml new file mode 100644 index 0000000000000..77f07a46c461f --- /dev/null +++ b/manifests/w/WiresharkFoundation/Stratoshark/0.10.1/WiresharkFoundation.Stratoshark.locale.en-US.yaml @@ -0,0 +1,107 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: WiresharkFoundation.Stratoshark +PackageVersion: 0.10.1 +PackageLocale: en-US +Publisher: Stratoshark Development Team +PublisherUrl: https://wiresharkfoundation.org/ +PublisherSupportUrl: https://gitlab.com/wireshark/wireshark/-/issues +Author: The Wireshark Foundation +PackageName: Stratoshark +PackageUrl: https://stratoshark.org/ +License: GPL-2.0-or-later +LicenseUrl: https://gitlab.com/wireshark/wireshark/-/blob/HEAD/COPYING +Copyright: © Gerald Combs and many others +ShortDescription: Stratoshark lets you explore and analyze applications at the system call level using a mature, proven interface based on Wireshark. +Description: Stratoshark lets you explore and analyze applications at the system call level using a mature, proven interface based on Wireshark. Stratoshark lets you explore and investigate the application-level behavior of your systems. You can capture system call and log activity and use a variety of advanced features to troubleshoot and analyze that activity. +Tags: +- network +- wireshark +ReleaseNotes: |- + This is an experimental release intended to test new features for Stratoshark 1.0. + + What is Stratoshark? + Stratoshark is a system call and log analyzer. It combines the analysis and filtering features of Wireshark with the capture and data enrichment features of Falco. It can be used for troubleshooting, analysis, development and education. + Stratoshark is hosted by the Wireshark Foundation, a nonprofit which promotes protocol and system analysis education. Stratoshark and the foundation depend on your contributions in order to do their work. If you or your organization would like to contribute or become a sponsor, please visit wiresharkfoundation.org. + + What’s New + The following changes have been made since version 0.10.0: + - The Stratoshark Windows installer now includes a DLL that was required by the cloudtrail and gcpaudit plugins. + - The following issues have been fixed: + * Wireshark appears in German where Systemlanguage is Dutch. Issue 20347. + * If you double-click an interface in the welcome screen interface list, and have typed nothing in the capture filter box, the system reports an invalid capture filter. Issue 21303. + * Qt: Appearance mode is stored per-profile while theme name is global — theme flips on profile switch. Issue 21311. + * Qt: ‘Recent filters’ arrow button gives no hover/pressed feedback. Issue 21322. + * Qt: Hidden interfaces (Welcome page right-click) not persisted across profile switch or restart. Issue 21325. + * Qt: Preferences dialog left category tree cannot be resized (labels truncated, only horizontal scrollbar) Issue 21327. + * Stratoshark: no-libpcap compilation broken (actionCaptureRestart) — fix from 554baf6294 never applied. Issue 21328. + * Qt: Make theme preview resemble a real Wireshark window (mini packet-list mockup) Issue 21329. + * stratoshark -D lists a bunch of network capture devices. Issue 21332. + The following changes have been made since version 0.9.3: + - Stratoshark can now read Process Monitor (Procmon) files. + - Welcome Page Redesign: The welcome page has been redesigned to be more informative and easier to navigate. It now highlights the learning sections better and includes a new sidebar with tips and tricks for using Wireshark effectively. The welcome page is now also more accessible, with improved keyboard navigation and screen reader support. + - Lua Debugger: A built-in Lua script debugger has been added. It supports breakpoints, single-stepping, variable inspection, expression evaluation, and stack traces. + - Themes: Stratoshark now uses the same theme system as Wireshark, driving the colors used throughout the GUI from a single theme instead of many individual color preferences. The renamed Appearance › Theme and Font preferences page lets you pick a theme, switch between Light, Dark, and System appearance, set the packet pane font, and preview the result. A built-in default theme ships with Stratoshark, and additional themes can be installed as JSONC (JSON with Comments) files. The previous per-color settings are now provided by the active theme. Personal themes can be dropped as single .jsonc files into $HOME/.local/lib/stratoshark/themes (Unix) or %APPDATA%\Stratoshark\themes (Windows); the filename becomes the theme’s name in the dropdown. On first launch after the upgrade, Stratoshark checks the Default profile’s preferences for customized values of the removed per-color settings. If any are found, a personal theme named Personal (Migrated) is created automatically, the legacy keys are removed, and the theme is activated so the original visual customizations are preserved. + - Zooming (View › Zoom In / View › Zoom Out) now scales the whole window, including the capture and display filter fields and other window elements. + - The keyboard shortcuts dialog has been moved to View → Internals → Keyboard Shortcuts and now has a button to print the list of keyboard shortcuts to an HTML file. + - The application icon has been updated to support Liquid Glass on macOS Tahoe. + - Stratoshark and strato can now read plain Kubernetes Audit logs and Google Cloud Audit logs, and CloudTrail logs. + - The CloudTrail and Google Cloud Audit log plugins have been translated to Rust on macOS and Windows. Issue 20869 + The following changes have been made since version 0.9.2: + - The Windows installers now ship with Qt 6.8.3. They previously shipped with Qt 6.8.1. + - Stratoshark now ships with “strato”, a command line tool similar to tshark. + - The Windows and macOS packages now ship with the gcpaudit and k8saudit plugins. + - The Falco Events dissector now adds IP geolocation fields alongside IPv4 and IPv6 address fields. + The following changes have been made since version 0.9.1: + - A new “Plots” dialog has been added, which provides scatter plots in contrast to the “I/O Graphs” dialog, which provides histograms. The Plots dialog window supports multiple plots, markers, and automatic scrolling. + - The Falco Bridge dissector has been renamed to Falco Events. Filter fields now have a “falcoevents” protocol prefix, but a “falcobridge” protocol alias has been added for backward compatibility. Issue 20397 + - Stratoshark can now show field offsets for supported plugins. + - Cloudtrail log messages can now be viewed as formatted JSON data. + - The system call dissector now has a “falcoevents.fd.stream” field, which provides a unique number for each file descriptor. The “Follow File Descriptor Stream” feature now uses this field to track streams. Issue 20538 + - We now ship universal macOS installers instead of separate packages for Arm64 and Intel. Issue 17294 + The following changes have been made since version 0.9.0: + - The application icons have been updated. + + Bug Fixes + The following bugs have been fixed since version 0.9.3: + - Interfaces hidden from the welcome page are now remembered across profile switches and restarts. Issue 21325 + The following bugs have been fixed since version 0.9.2: + - .scap file extension wrongly associated with Wireshark. Issue 20583. + - sshdig should have a snaplen option. Issue 20586. + The following bugs have been fixed since version 0.9.1: + - Stratoshark help message has Wiresharkisms in it. Issue 20229. + - Stratoshark and editcap could write incorrect block types. Merge request 19238. + - Stratoshark says I can’t capture on local interfaces. Issue 20494. + - Stratoshark: Crash While Sorting on evt.buflen column. Issue 20571. + The following bugs have been fixed since version 0.9.0: + - Falco Bridge: Empty frame.protocols field. Issue 20248. + - Sysdig event and Falco bridge dissection mismatch due to unsupported pcapng block types. Issue 20358. + + New and Updated Features + Stratoshark can capture system calls locally on Linux and a variety of log sources on Windows, macOS, and Linux. + The following features are either new or have been significantly updated since version 0.9.0: + - The welcome screen’s capture-source activity sparklines now keep their history for the whole session. Previously the sparklines, and the activity-first ordering of the source list, were reset whenever you started or stopped a capture or returned to the welcome screen, so the list re-shuffled each time. Now the history persists, the ordering stays stable, and a break in a sparkline marks the interval during which a capture was running (statistics are not sampled while capturing). When a source is dropping packets, the drops are shown as a separate line. Issue 21318 + + Removed Features and Support + - Dumpcap’s TCP@host:port interface has been removed. + - Building with Qt 5 is no longer supported. + + Getting Stratoshark + + File Locations + Stratoshark looks in several different locations for preference files, plugins, and other files. These locations vary from platform to platform. You can use Help › About Stratoshark › Folders to find the default locations on your system. + + Getting Help + Community support is available on Wireshark’s Q&A site and on the wireshark-users mailing list. Subscription information and archives for all of Wireshark’s mailing lists can be found on the mailing list site. Bugs and feature requests can be reported on the issue tracker. You can learn system call and log analysis and meet Stratoshark’s developers at SharkFest. + + How You Can Help + The Wireshark Foundation helps as many people as possible understand their systems and networks as much as possible. You can find out more and donate at wiresharkfoundation.org. +ReleaseNotesUrl: https://stratoshark.org/docs/relnotes/stratoshark-0.10.1 +Documentations: +- DocumentLabel: Quick Start + DocumentUrl: https://gitlab.com/wireshark/wireshark/-/blob/HEAD/doc/stratoshark-quick-start.adoc +- DocumentLabel: Wiki + DocumentUrl: https://wiki.wireshark.org/Stratoshark +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/WiresharkFoundation/Stratoshark/0.10.1/WiresharkFoundation.Stratoshark.yaml b/manifests/w/WiresharkFoundation/Stratoshark/0.10.1/WiresharkFoundation.Stratoshark.yaml new file mode 100644 index 0000000000000..f454a56df06f1 --- /dev/null +++ b/manifests/w/WiresharkFoundation/Stratoshark/0.10.1/WiresharkFoundation.Stratoshark.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: WiresharkFoundation.Stratoshark +PackageVersion: 0.10.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/w/Wondershare/Filmora/15.6.4.20299/Wondershare.Filmora.installer.yaml b/manifests/w/Wondershare/Filmora/15.6.4.20299/Wondershare.Filmora.installer.yaml new file mode 100644 index 0000000000000..81a699fb744e7 --- /dev/null +++ b/manifests/w/Wondershare/Filmora/15.6.4.20299/Wondershare.Filmora.installer.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Wondershare.Filmora +PackageVersion: 15.6.4.20299 +InstallerType: inno +Scope: user +UpgradeBehavior: install +Protocols: +- fmapplaunch +- fmrespack +FileExtensions: +- wfip +- wfp +- wfpbundle +- wfpbundles +- wfpbundlexii +- wfpbundlexiis +- wfps +- wfpts +- wfpxii +- wfpxiis +ProductCode: Wondershare Filmora 15_is1 +Installers: +- Architecture: x64 + InstallerUrl: https://download.wondershare.com/cbs_down/filmora_64bit_15.6.4_full846.exe + InstallerSha256: C57C8FA85EBEC3D644BF9ED9DD475278A2C2C30501222849ED1A1BE92782E762 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/w/Wondershare/Filmora/15.6.4.20299/Wondershare.Filmora.locale.en-US.yaml b/manifests/w/Wondershare/Filmora/15.6.4.20299/Wondershare.Filmora.locale.en-US.yaml new file mode 100644 index 0000000000000..194ac82d53e7a --- /dev/null +++ b/manifests/w/Wondershare/Filmora/15.6.4.20299/Wondershare.Filmora.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.Filmora +PackageVersion: 15.6.4.20299 +PackageLocale: en-US +Publisher: Wondershare Software +PublisherUrl: https://www.wondershare.com/ +PublisherSupportUrl: https://support.wondershare.com/how-tos/filmora/ +PrivacyUrl: https://www.wondershare.com/privacy.html +Author: Wondershare Technology Group Co., Ltd. +PackageName: Wondershare Filmora +PackageUrl: https://filmora.wondershare.com/video-editor/ +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: An intuitive video editor for every skill level. +Description: Filmora is an intuitive video editor for every skill level. Filmora makes it easy for anyone to be creative. Jump into an editing experience where advanced features are simple and fun. We got rid of repetitive tasks so you can devote your energy to your imagination. Get inspired by Filmora, an editor designed for creators like you. +Tags: +- clip +- creative +- creativity +- edit +- editor +- film +- movie +- video +- video-editing +- video-editor +ReleaseNotes: |- + 1. Create Path Animations Faster with Pen Tool Presets + New keyframe presets let you create Linear, Ease In, Ease Out, and Ease In-Out path animations with one click. + + 2. Record Smoother Narrations with the New Teleprompter + Screen Recording now lets you type or import scripts, auto-scroll text, and adjust speed or font size while recording. + + 3. Improve Video Clarity with Generative AI + Generative Enhance helps improve clarity and detail in low-resolution, compressed, or older footage. + + 4. Control Object Orientation Along a Path + Choose whether an object rotates with the path direction or keeps a fixed angle, giving you more control over path animations. +ReleaseNotesUrl: https://filmora.wondershare.com/whats-new-in-filmora-video-editor.html +PurchaseUrl: https://filmora.wondershare.com/shop/buy/buy-video-editor.html +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://filmora.wondershare.com/guide/ +- DocumentLabel: Tutorial + DocumentUrl: https://filmora.wondershare.com/tutorial.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/Wondershare/Filmora/15.6.4.20299/Wondershare.Filmora.locale.zh-CN.yaml b/manifests/w/Wondershare/Filmora/15.6.4.20299/Wondershare.Filmora.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5c4ea78615d4a --- /dev/null +++ b/manifests/w/Wondershare/Filmora/15.6.4.20299/Wondershare.Filmora.locale.zh-CN.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Wondershare.Filmora +PackageVersion: 15.6.4.20299 +PackageLocale: zh-CN +Publisher: Wondershare Software +PublisherUrl: https://www.wondershare.com/ +PublisherSupportUrl: https://support.wondershare.com/how-tos/filmora/ +PrivacyUrl: https://www.wondershare.com/privacy.html +Author: 万兴科技集团股份有限公司 +PackageName: Wondershare Filmora +PackageUrl: https://filmora.wondershare.com/video-editor/ +License: 专有软件 +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: 一款直观的视频编辑器 +Description: Filmora 是一款学习成本低,便捷易上手,全方位满足不同专业层次的剪辑爱好者的视频编辑器。任何人都可以通过 Filmora,充分发挥自己的创造力,体验简单而有趣的视频编辑体验。剪辑,从未如此简单。 +Tags: +- 创意 +- 剪辑 +- 影片 +- 电影 +- 视频 +- 视频编辑 +- 视频编辑器 +- 编辑 +- 编辑器 +ReleaseNotesUrl: https://filmora.wondershare.com/whats-new-in-filmora-video-editor.html +PurchaseUrl: https://filmora.wondershare.com/shop/buy/buy-video-editor.html +Documentations: +- DocumentLabel: 用户指南 + DocumentUrl: https://filmora.wondershare.com/guide/ +- DocumentLabel: 教程 + DocumentUrl: https://filmora.wondershare.com/tutorial.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/w/Wondershare/Filmora/15.6.4.20299/Wondershare.Filmora.yaml b/manifests/w/Wondershare/Filmora/15.6.4.20299/Wondershare.Filmora.yaml new file mode 100644 index 0000000000000..3d661830f6d03 --- /dev/null +++ b/manifests/w/Wondershare/Filmora/15.6.4.20299/Wondershare.Filmora.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.Filmora +PackageVersion: 15.6.4.20299 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/w/willibrandon/scout/0.1.3/willibrandon.scout.installer.yaml b/manifests/w/willibrandon/scout/0.1.3/willibrandon.scout.installer.yaml new file mode 100644 index 0000000000000..837970ba8265d --- /dev/null +++ b/manifests/w/willibrandon/scout/0.1.3/willibrandon.scout.installer.yaml @@ -0,0 +1,24 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json +PackageIdentifier: willibrandon.scout +PackageVersion: 0.1.3 +Platform: + - Windows.Desktop +MinimumOSVersion: 10.0.18362.0 +InstallerType: msi +Scope: machine +InstallModes: + - interactive + - silent + - silentWithProgress +UpgradeBehavior: install +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/willibrandon/scout/releases/download/v0.1.3/scout-win-x64.msi + InstallerSha256: 01A5137A6AB26AFF67F7589B32CBDAF23B9021E86CAB111C9CD3F36C23C9B6DF + ProductCode: "{2A62482C-247F-44B3-BB2B-11BFB6FD54AC}" + - Architecture: arm64 + InstallerUrl: https://github.com/willibrandon/scout/releases/download/v0.1.3/scout-win-arm64.msi + InstallerSha256: D33AC0C2546ED620159AF6CC9CE311F54675E795E53879DCA4B74B4A27CFF795 + ProductCode: "{649F45D8-C864-45C0-BCE2-1D33F725CC46}" +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/w/willibrandon/scout/0.1.3/willibrandon.scout.locale.en-US.yaml b/manifests/w/willibrandon/scout/0.1.3/willibrandon.scout.locale.en-US.yaml new file mode 100644 index 0000000000000..3c8775dfc601b --- /dev/null +++ b/manifests/w/willibrandon/scout/0.1.3/willibrandon.scout.locale.en-US.yaml @@ -0,0 +1,26 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json +PackageIdentifier: willibrandon.scout +PackageVersion: 0.1.3 +PackageLocale: en-US +Publisher: willibrandon +PublisherUrl: https://github.com/willibrandon +PackageName: scout +PackageUrl: https://github.com/willibrandon/scout +License: MIT +LicenseUrl: https://github.com/willibrandon/scout/blob/main/LICENSE +ShortDescription: Feature-complete port of ripgrep to .NET Native AOT +Description: |- + Scout recursively searches directory trees for regex patterns while respecting + gitignore rules, hidden-file defaults, binary-file handling, and ripgrep-style + output. It is a native .NET AOT implementation with statically linked PCRE2. +Tags: + - ripgrep + - grep + - search + - regex + - cli + - dotnet + - nativeaot + - pcre2 +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/w/willibrandon/scout/0.1.3/willibrandon.scout.yaml b/manifests/w/willibrandon/scout/0.1.3/willibrandon.scout.yaml new file mode 100644 index 0000000000000..5ede31999123b --- /dev/null +++ b/manifests/w/willibrandon/scout/0.1.3/willibrandon.scout.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json +PackageIdentifier: willibrandon.scout +PackageVersion: 0.1.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/x/Xiaomi/MiMoCode/0.1.0/Xiaomi.MiMoCode.installer.yaml b/manifests/x/Xiaomi/MiMoCode/0.1.0/Xiaomi.MiMoCode.installer.yaml new file mode 100644 index 0000000000000..5ceb6e3ab770e --- /dev/null +++ b/manifests/x/Xiaomi/MiMoCode/0.1.0/Xiaomi.MiMoCode.installer.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Xiaomi.MiMoCode +PackageVersion: 0.1.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: mimo.exe +Commands: +- mimo +ReleaseDate: 2026-06-10 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/XiaomiMiMo/MiMo-Code/releases/download/v0.1.0/mimocode-windows-x64.zip + InstallerSha256: 78294AF0FE17B2375F20352B3EDDF045779A2BB507072C3C7BF1B676283CCF15 +- Architecture: arm64 + InstallerUrl: https://github.com/XiaomiMiMo/MiMo-Code/releases/download/v0.1.0/mimocode-windows-arm64.zip + InstallerSha256: E26ECBF2975EA97B46D64076F921F128A3E5C90FAD776D9156DC7CDAF8896DC6 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/x/Xiaomi/MiMoCode/0.1.0/Xiaomi.MiMoCode.locale.en-US.yaml b/manifests/x/Xiaomi/MiMoCode/0.1.0/Xiaomi.MiMoCode.locale.en-US.yaml new file mode 100644 index 0000000000000..19278df17b4ea --- /dev/null +++ b/manifests/x/Xiaomi/MiMoCode/0.1.0/Xiaomi.MiMoCode.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Xiaomi.MiMoCode +PackageVersion: 0.1.0 +PackageLocale: en-US +Publisher: Beijing Xiaomi Mobile Software Co., Ltd. +PublisherUrl: https://mimo.xiaomi.com/ +PublisherSupportUrl: https://github.com/XiaomiMiMo/MiMo-Code/issues +# PrivacyUrl: +Author: Beijing Xiaomi Mobile Software Co., Ltd. +PackageName: MiMoCode +PackageUrl: https://mimo.xiaomi.com/mimocode +License: MIT +LicenseUrl: https://github.com/XiaomiMiMo/MiMo-Code/blob/HEAD/LICENSE +Copyright: |- + Copyright (c) 2026 MiMo Code, Xiaomi Corporation + Copyright (c) 2025 opencode +CopyrightUrl: https://platform.xiaomimimo.com/docs/terms/user-agreement +ShortDescription: A next-generation AI coding assistant for developers. Unlimited context lets you understand, build, and collaborate more efficiently. +Description: |- + MiMoCode is a terminal-native AI coding assistant. It can read and write code, run commands, manage Git, and use a persistent memory system to keep a deep understanding of your project across sessions while continuously improving itself. + MiMo Auto is built in as a free-for-limited-time channel, so you can start with zero configuration. MiMoCode also supports connecting to any mainstream LLM provider API. +# Moniker: +Tags: +- agent +- agentic +- ai +- chatbot +- code +- coding +- large-language-model +- llm +- mimo +- programming +ReleaseNotes: Initial open-source release of MiMo Code. +ReleaseNotesUrl: https://github.com/XiaomiMiMo/MiMo-Code/releases/tag/v0.1.0 +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://mimo.xiaomi.com/mimocode/start +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/x/Xiaomi/MiMoCode/0.1.0/Xiaomi.MiMoCode.locale.zh-CN.yaml b/manifests/x/Xiaomi/MiMoCode/0.1.0/Xiaomi.MiMoCode.locale.zh-CN.yaml new file mode 100644 index 0000000000000..fe5f9a6e90e16 --- /dev/null +++ b/manifests/x/Xiaomi/MiMoCode/0.1.0/Xiaomi.MiMoCode.locale.zh-CN.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Xiaomi.MiMoCode +PackageVersion: 0.1.0 +PackageLocale: zh-CN +Publisher: 北京小米移动软件有限公司 +# PublisherUrl: +# PublisherSupportUrl: +PrivacyUrl: https://privacy.mi.com/XiaomiMiMoPlatform/zh_CN/ +Author: 北京小米移动软件有限公司 +# PackageName: +# PackageUrl: +# License: +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 面向开发者的新一代 AI 编程助手,支持无限上下文,帮助你更高效地理解、构建与协作。 +Description: |- + MiMoCode 是一个终端原生的 AI 编程助手。它能读写代码、执行命令、管理 Git,通过持久化记忆系统,在多次会话间保持对你项目的深度理解,并自我进化。 + 内置 MiMo Auto 限时免费通道——零配置即可开始使用。也支持接入各家主流 LLM 厂商 API。 +# Moniker: +Tags: +- mimo +- 人工智能 +- 代码 +- 大语言模型 +- 智能体 +- 编程 +- 聊天机器人 +- 自主智能 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://mimo.xiaomi.com/zh/mimocode/start +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/x/Xiaomi/MiMoCode/0.1.0/Xiaomi.MiMoCode.yaml b/manifests/x/Xiaomi/MiMoCode/0.1.0/Xiaomi.MiMoCode.yaml new file mode 100644 index 0000000000000..e79e30d1f1ca0 --- /dev/null +++ b/manifests/x/Xiaomi/MiMoCode/0.1.0/Xiaomi.MiMoCode.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Xiaomi.MiMoCode +PackageVersion: 0.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/x/Xiaomi/MiMoCode/Baseline/0.1.0/Xiaomi.MiMoCode.Baseline.installer.yaml b/manifests/x/Xiaomi/MiMoCode/Baseline/0.1.0/Xiaomi.MiMoCode.Baseline.installer.yaml new file mode 100644 index 0000000000000..f9a3f324f326f --- /dev/null +++ b/manifests/x/Xiaomi/MiMoCode/Baseline/0.1.0/Xiaomi.MiMoCode.Baseline.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Xiaomi.MiMoCode.Baseline +PackageVersion: 0.1.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: mimo.exe +Commands: +- mimo +ReleaseDate: 2026-06-10 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/XiaomiMiMo/MiMo-Code/releases/download/v0.1.0/mimocode-windows-x64-baseline.zip + InstallerSha256: 08BF8F3BDAB7AE141458B0C15A0A2612F48287A33F6A273251158AA10F7BC619 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/x/Xiaomi/MiMoCode/Baseline/0.1.0/Xiaomi.MiMoCode.Baseline.locale.en-US.yaml b/manifests/x/Xiaomi/MiMoCode/Baseline/0.1.0/Xiaomi.MiMoCode.Baseline.locale.en-US.yaml new file mode 100644 index 0000000000000..6bf1d40c1eaa0 --- /dev/null +++ b/manifests/x/Xiaomi/MiMoCode/Baseline/0.1.0/Xiaomi.MiMoCode.Baseline.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Xiaomi.MiMoCode.Baseline +PackageVersion: 0.1.0 +PackageLocale: en-US +Publisher: Beijing Xiaomi Mobile Software Co., Ltd. +PublisherUrl: https://mimo.xiaomi.com/ +PublisherSupportUrl: https://github.com/XiaomiMiMo/MiMo-Code/issues +# PrivacyUrl: +Author: Beijing Xiaomi Mobile Software Co., Ltd. +PackageName: MiMoCode (Baseline) +PackageUrl: https://mimo.xiaomi.com/mimocode +License: MIT +LicenseUrl: https://github.com/XiaomiMiMo/MiMo-Code/blob/HEAD/LICENSE +Copyright: |- + Copyright (c) 2026 MiMo Code, Xiaomi Corporation + Copyright (c) 2025 opencode +CopyrightUrl: https://platform.xiaomimimo.com/docs/terms/user-agreement +ShortDescription: A next-generation AI coding assistant for developers. Unlimited context lets you understand, build, and collaborate more efficiently. +Description: |- + MiMoCode is a terminal-native AI coding assistant. It can read and write code, run commands, manage Git, and use a persistent memory system to keep a deep understanding of your project across sessions while continuously improving itself. + MiMo Auto is built in as a free-for-limited-time channel, so you can start with zero configuration. MiMoCode also supports connecting to any mainstream LLM provider API. +# Moniker: +Tags: +- agent +- agentic +- ai +- chatbot +- code +- coding +- large-language-model +- llm +- mimo +- programming +ReleaseNotes: Initial open-source release of MiMo Code. +ReleaseNotesUrl: https://github.com/XiaomiMiMo/MiMo-Code/releases/tag/v0.1.0 +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://mimo.xiaomi.com/mimocode/start +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/x/Xiaomi/MiMoCode/Baseline/0.1.0/Xiaomi.MiMoCode.Baseline.locale.zh-CN.yaml b/manifests/x/Xiaomi/MiMoCode/Baseline/0.1.0/Xiaomi.MiMoCode.Baseline.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b0b114bbb059c --- /dev/null +++ b/manifests/x/Xiaomi/MiMoCode/Baseline/0.1.0/Xiaomi.MiMoCode.Baseline.locale.zh-CN.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Xiaomi.MiMoCode.Baseline +PackageVersion: 0.1.0 +PackageLocale: zh-CN +Publisher: 北京小米移动软件有限公司 +# PublisherUrl: +# PublisherSupportUrl: +PrivacyUrl: https://privacy.mi.com/XiaomiMiMoPlatform/zh_CN/ +Author: 北京小米移动软件有限公司 +# PackageName: +# PackageUrl: +# License: +# LicenseUrl: +# Copyright: +# CopyrightUrl: +ShortDescription: 面向开发者的新一代 AI 编程助手,支持无限上下文,帮助你更高效地理解、构建与协作。 +Description: |- + MiMoCode 是一个终端原生的 AI 编程助手。它能读写代码、执行命令、管理 Git,通过持久化记忆系统,在多次会话间保持对你项目的深度理解,并自我进化。 + 内置 MiMo Auto 限时免费通道——零配置即可开始使用。也支持接入各家主流 LLM 厂商 API。 +# Moniker: +Tags: +- mimo +- 人工智能 +- 代码 +- 大语言模型 +- 智能体 +- 编程 +- 聊天机器人 +- 自主智能 +# ReleaseNotes: +# ReleaseNotesUrl: +# PurchaseUrl: +# InstallationNotes: +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://mimo.xiaomi.com/zh/mimocode/start +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/x/Xiaomi/MiMoCode/Baseline/0.1.0/Xiaomi.MiMoCode.Baseline.yaml b/manifests/x/Xiaomi/MiMoCode/Baseline/0.1.0/Xiaomi.MiMoCode.Baseline.yaml new file mode 100644 index 0000000000000..12328f622179c --- /dev/null +++ b/manifests/x/Xiaomi/MiMoCode/Baseline/0.1.0/Xiaomi.MiMoCode.Baseline.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 v2.7.2 $debug=NVS1.CRLF.7-6-2.Win32NT +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Xiaomi.MiMoCode.Baseline +PackageVersion: 0.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/x/XiaoweiCloud/CalendarTask/3.29.285.8979/XiaoweiCloud.CalendarTask.installer.yaml b/manifests/x/XiaoweiCloud/CalendarTask/3.29.285.8979/XiaoweiCloud.CalendarTask.installer.yaml deleted file mode 100644 index a26be3d525b51..0000000000000 --- a/manifests/x/XiaoweiCloud/CalendarTask/3.29.285.8979/XiaoweiCloud.CalendarTask.installer.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Automatically updated by the winget bot at 2026/Jun/04 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: XiaoweiCloud.CalendarTask -PackageVersion: 3.29.285.8979 -InstallerLocale: en-US -InstallerType: nullsoft -Scope: user -InstallModes: -- interactive -- silent -UpgradeBehavior: install -ProductCode: XDiarys -ReleaseDate: 2025-08-01 -AppsAndFeaturesEntries: -- DisplayName: CalendarTask - Publisher: Xiaowei Cloud, Inc. - ProductCode: XDiarys -Installers: -- Architecture: x86 - InstallerUrl: https://download.xdiarys.com/windows/xdiarys-setup-v3.exe - InstallerSha256: 8024265A08E9F366263A57132ECF5BBF24409D5BB555E28FE46D906837D6DB1E -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/x/XiaoweiCloud/CalendarTask/3.29.285.8979/XiaoweiCloud.CalendarTask.locale.en-US.yaml b/manifests/x/XiaoweiCloud/CalendarTask/3.29.285.8979/XiaoweiCloud.CalendarTask.locale.en-US.yaml deleted file mode 100644 index 95e7f56576b32..0000000000000 --- a/manifests/x/XiaoweiCloud/CalendarTask/3.29.285.8979/XiaoweiCloud.CalendarTask.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Automatically updated by the winget bot at 2026/Jun/04 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: XiaoweiCloud.CalendarTask -PackageVersion: 3.29.285.8979 -PackageLocale: en-US -Publisher: Xiaowei Cloud, Inc. -PublisherUrl: https://www.xdiarys.com/ -PublisherSupportUrl: https://www.xdiarys.com/support -PrivacyUrl: https://www.xdiarys.com/privacypolicy -Author: Beijing Xiaowei Cloud Inc. -PackageName: CalendarTask -PackageUrl: https://www.xdiarys.com/ -License: Proprietary -LicenseUrl: https://www.xdiarys.com/eula -Copyright: Copyright (C) 2025 Beijing Xiaowei Cloud Inc. -ShortDescription: Your Personal Time Management Expert -Description: |- - CalendarTask Your Personal Time Management Expert - - Transparent display: You can pin directly to the desktop wallpaper, press the shortcut key to return to the desktop to edit and view your schedule and calendar information - - Real-time data sync: You can synchronize your schedule in real time between PC computers, Mac computers, and mobile phones. If you are a small team, you can also achieve team collaboration. - - Notification Reminder: Customizable for repetitive, complex tasks and reminders. - - Notes: Stay organized, choose your colors - - Countdown Anniversary Card: Display elegant cards directly on the desktop to never forget every important day. - - No Ads: Ad-free experience across all channels -Tags: -- Calendar -- Management -- Personal -- Task -PurchaseUrl: https://www.xdiarys.com/baseintro -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/x/XuruDragon/XuruVOIPClient/0.2.0.0/XuruDragon.XuruVOIPClient.installer.yaml b/manifests/x/XuruDragon/XuruVOIPClient/0.2.0.0/XuruDragon.XuruVOIPClient.installer.yaml new file mode 100644 index 0000000000000..319ba443f4636 --- /dev/null +++ b/manifests/x/XuruDragon/XuruVOIPClient/0.2.0.0/XuruDragon.XuruVOIPClient.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: XuruDragon.XuruVOIPClient +PackageVersion: 0.2.0.0 +InstallerLocale: en-US +InstallerType: wix +ProductCode: '{C31FC223-5757-4E3E-B0CA-BEE363BBAA06}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/XuruDragon/XuruVOIP/releases/download/0.2.0/XuruVoipClient-win-x64.msi + InstallerSha256: 8F74D4C31247EB81765089FDBB9CE40058E86D984BAAFD443800CBFF4F5D489A +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-06-10 diff --git a/manifests/x/XuruDragon/XuruVOIPClient/0.2.0.0/XuruDragon.XuruVOIPClient.locale.en-US.yaml b/manifests/x/XuruDragon/XuruVOIPClient/0.2.0.0/XuruDragon.XuruVOIPClient.locale.en-US.yaml new file mode 100644 index 0000000000000..d10f33cbfa3ed --- /dev/null +++ b/manifests/x/XuruDragon/XuruVOIPClient/0.2.0.0/XuruDragon.XuruVOIPClient.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: XuruDragon.XuruVOIPClient +PackageVersion: 0.2.0.0 +PackageLocale: en-US +Publisher: XuruDragon +PublisherUrl: https://github.com/XuruDragon +PublisherSupportUrl: https://github.com/XuruDragon/XuruVOIP/issues +PackageName: XuruVOIP Client +PackageUrl: https://github.com/XuruDragon/XuruVOIP +License: Source-Available +ShortDescription: XuruVoip is a high-performance, secure, and dynamically spatialized 3D voice communication (VoIP) suite designed specifically for custom gaming integrations with Star Citizen. It consists of a Go-based backend server and a modern C# WPF client. +ReleaseNotesUrl: https://github.com/XuruDragon/XuruVOIP/releases/tag/0.2.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/x/XuruDragon/XuruVOIPClient/0.2.0.0/XuruDragon.XuruVOIPClient.yaml b/manifests/x/XuruDragon/XuruVOIPClient/0.2.0.0/XuruDragon.XuruVOIPClient.yaml new file mode 100644 index 0000000000000..030e21e918274 --- /dev/null +++ b/manifests/x/XuruDragon/XuruVOIPClient/0.2.0.0/XuruDragon.XuruVOIPClient.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: XuruDragon.XuruVOIPClient +PackageVersion: 0.2.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/x/x64dbg/x64dbg/2026.05.27/x64dbg.x64dbg.installer.yaml b/manifests/x/x64dbg/x64dbg/2026.05.27/x64dbg.x64dbg.installer.yaml new file mode 100644 index 0000000000000..3324d3a123e85 --- /dev/null +++ b/manifests/x/x64dbg/x64dbg/2026.05.27/x64dbg.x64dbg.installer.yaml @@ -0,0 +1,39 @@ +# Created with komac v2.10.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: x64dbg.x64dbg +PackageVersion: 2026.05.27 +InstallerType: zip +NestedInstallerType: portable +ArchiveBinariesDependOnPath: true +InstallModes: + - interactive + - silent + - silentWithProgress +UpgradeBehavior: install +Commands: + - x96dbg + - x32dbg + - x64dbg +ReleaseDate: 2026-05-27 +Installers: + - Architecture: x86 + InstallerUrl: https://github.com/x64dbg/x64dbg/releases/download/2026.05.27/snapshot_2026-05-27_12-11.zip + InstallerSha256: D41966DFC5B435A372798245300CA0AB7BB8E48BDBF48512C6FB20FCCA427697 + NestedInstallerFiles: + - RelativeFilePath: release\x96dbg.exe + PortableCommandAlias: x96dbg + - RelativeFilePath: release\x32\x32dbg.exe + PortableCommandAlias: x32dbg + - Architecture: x64 + InstallerUrl: https://github.com/x64dbg/x64dbg/releases/download/2026.05.27/snapshot_2026-05-27_12-11.zip + InstallerSha256: D41966DFC5B435A372798245300CA0AB7BB8E48BDBF48512C6FB20FCCA427697 + NestedInstallerFiles: + - RelativeFilePath: release\x96dbg.exe + PortableCommandAlias: x96dbg + - RelativeFilePath: release\x32\x32dbg.exe + PortableCommandAlias: x32dbg + - RelativeFilePath: release\x64\x64dbg.exe + PortableCommandAlias: x64dbg +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/x/x64dbg/x64dbg/2026.05.27/x64dbg.x64dbg.locale.en-US.yaml b/manifests/x/x64dbg/x64dbg/2026.05.27/x64dbg.x64dbg.locale.en-US.yaml new file mode 100644 index 0000000000000..133599a46ca17 --- /dev/null +++ b/manifests/x/x64dbg/x64dbg/2026.05.27/x64dbg.x64dbg.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created with komac v2.10.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: x64dbg.x64dbg +PackageVersion: 2026.05.27 +PackageLocale: en-US +Publisher: x64dbg +PublisherUrl: https://github.com/x64dbg +PublisherSupportUrl: https://github.com/x64dbg/x64dbg/issues +PackageName: x64dbg +PackageUrl: https://github.com/x64dbg/x64dbg +License: GPL-3.0 (Modified) +LicenseUrl: https://github.com/x64dbg/x64dbg/blob/development/LICENSE +ShortDescription: An open-source user mode debugger for Windows. Optimized for reverse engineering and malware analysis. +Description: An open-source binary debugger for Windows, aimed at malware analysis and reverse engineering of executables you do not have the source code for. +ReleaseNotesUrl: https://github.com/x64dbg/x64dbg/releases/tag/2026.05.27 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/x/x64dbg/x64dbg/2026.05.27/x64dbg.x64dbg.yaml b/manifests/x/x64dbg/x64dbg/2026.05.27/x64dbg.x64dbg.yaml new file mode 100644 index 0000000000000..ccc36c694cf95 --- /dev/null +++ b/manifests/x/x64dbg/x64dbg/2026.05.27/x64dbg.x64dbg.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.10.1 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: x64dbg.x64dbg +PackageVersion: 2026.05.27 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/x/xpipe-io/xpipe/portable/23.5.2/xpipe-io.xpipe.portable.installer.yaml b/manifests/x/xpipe-io/xpipe/portable/23.5.2/xpipe-io.xpipe.portable.installer.yaml new file mode 100644 index 0000000000000..a3da7752dd4ba --- /dev/null +++ b/manifests/x/xpipe-io/xpipe/portable/23.5.2/xpipe-io.xpipe.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: xpipe-io.xpipe.portable +PackageVersion: 23.5.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: xpipe-23.5.2/xpiped.exe + PortableCommandAlias: xpipe +ReleaseDate: 2026-06-15 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/xpipe-io/xpipe/releases/download/23.5.2/xpipe-portable-windows-x86_64.zip + InstallerSha256: 3983316BC686AB46A9E4CF485A5C0182BB99A351DCE3505B0D081819D738D261 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/x/xpipe-io/xpipe/portable/23.5.2/xpipe-io.xpipe.portable.locale.en-US.yaml b/manifests/x/xpipe-io/xpipe/portable/23.5.2/xpipe-io.xpipe.portable.locale.en-US.yaml new file mode 100644 index 0000000000000..5c44376b43b7e --- /dev/null +++ b/manifests/x/xpipe-io/xpipe/portable/23.5.2/xpipe-io.xpipe.portable.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: xpipe-io.xpipe.portable +PackageVersion: 23.5.2 +PackageLocale: en-US +Publisher: XPipe-io +PublisherUrl: https://github.com/xpipe-io +PublisherSupportUrl: https://github.com/xpipe-io/xpipe/issues +Author: crschnick +PackageName: XPipe Portable +PackageUrl: https://github.com/xpipe-io/xpipe +License: Apache-2.0 +LicenseUrl: https://github.com/xpipe-io/xpipe/blob/HEAD/LICENSE.md +ShortDescription: A brand-new shell connection hub and remote file manager +Description: XPipe is a new type of shell connection hub and remote file manager that allows you to access your entire sever infrastructure from your local machine. It works on top of your installed command-line programs that you normally use to connect and does not require any setup on your remote systems. +Moniker: xpipe-portable +Tags: +- remote +ReleaseNotes: |- + - Fix services with undefined type throwing errors about illegal URL formatting + Downloads + You can find all downloadable artifacts below attached to this release. For installation instructions, see the installation guide. + All artifacts are signed by Christopher Schnick (BBDA 885A DD3E 0AD0) +ReleaseNotesUrl: https://github.com/xpipe-io/xpipe/releases/tag/23.5.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/x/xpipe-io/xpipe/portable/23.5.2/xpipe-io.xpipe.portable.yaml b/manifests/x/xpipe-io/xpipe/portable/23.5.2/xpipe-io.xpipe.portable.yaml new file mode 100644 index 0000000000000..00c0e006afee8 --- /dev/null +++ b/manifests/x/xpipe-io/xpipe/portable/23.5.2/xpipe-io.xpipe.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: xpipe-io.xpipe.portable +PackageVersion: 23.5.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/y/yt-dlp/yt-dlp/nightly/2026.04.30.234007/yt-dlp.yt-dlp.nightly.installer.yaml b/manifests/y/yt-dlp/yt-dlp/nightly/2026.06.13.234541/yt-dlp.yt-dlp.nightly.installer.yaml similarity index 53% rename from manifests/y/yt-dlp/yt-dlp/nightly/2026.04.30.234007/yt-dlp.yt-dlp.nightly.installer.yaml rename to manifests/y/yt-dlp/yt-dlp/nightly/2026.06.13.234541/yt-dlp.yt-dlp.nightly.installer.yaml index 47994476a022d..c4c510dcac1e7 100644 --- a/manifests/y/yt-dlp/yt-dlp/nightly/2026.04.30.234007/yt-dlp.yt-dlp.nightly.installer.yaml +++ b/manifests/y/yt-dlp/yt-dlp/nightly/2026.06.13.234541/yt-dlp.yt-dlp.nightly.installer.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.15.0 +# Created with komac v2.16.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: yt-dlp.yt-dlp.nightly -PackageVersion: 2026.04.30.234007 +PackageVersion: 2026.06.13.234541 InstallerType: portable Commands: - yt-dlp @@ -10,16 +10,16 @@ Dependencies: PackageDependencies: - PackageIdentifier: DenoLand.Deno - PackageIdentifier: yt-dlp.FFmpeg -ReleaseDate: 2026-04-30 +ReleaseDate: 2026-06-13 Installers: - Architecture: x86 - InstallerUrl: https://github.com/yt-dlp/yt-dlp-nightly-builds/releases/download/2026.04.30.234007/yt-dlp_x86.exe - InstallerSha256: 1A5AF090B84E13A04C52AC33D916C9D1002BA4046074391456229222EDD30AA7 + InstallerUrl: https://github.com/yt-dlp/yt-dlp-nightly-builds/releases/download/2026.06.13.234541/yt-dlp_x86.exe + InstallerSha256: 15AE7219C52849425F9C557BC8E4FC93E102B6BF140A7FD70CC3CCADD64AC401 - Architecture: x64 - InstallerUrl: https://github.com/yt-dlp/yt-dlp-nightly-builds/releases/download/2026.04.30.234007/yt-dlp.exe - InstallerSha256: 9F9F40E5111EFA1741E610B59BA0732B8647FD0E48137E01906F623EB949678A + InstallerUrl: https://github.com/yt-dlp/yt-dlp-nightly-builds/releases/download/2026.06.13.234541/yt-dlp.exe + InstallerSha256: 728B0F813CFD440F1784BEDAD813A779CC88EA672332DD5456BF708B888A1339 - Architecture: arm64 - InstallerUrl: https://github.com/yt-dlp/yt-dlp-nightly-builds/releases/download/2026.04.30.234007/yt-dlp_arm64.exe - InstallerSha256: 5A2B551CC5CC8A777403E586F58D4384887D7F4E3F7CB50A4E6A33143ABA2CAD + InstallerUrl: https://github.com/yt-dlp/yt-dlp-nightly-builds/releases/download/2026.06.13.234541/yt-dlp_arm64.exe + InstallerSha256: EF4CE00A1C10B4D3D049833C357E1439FFDA32374938F9128701A7463ADE0E95 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/y/yt-dlp/yt-dlp/nightly/2026.04.30.234007/yt-dlp.yt-dlp.nightly.locale.en-US.yaml b/manifests/y/yt-dlp/yt-dlp/nightly/2026.06.13.234541/yt-dlp.yt-dlp.nightly.locale.en-US.yaml similarity index 50% rename from manifests/y/yt-dlp/yt-dlp/nightly/2026.04.30.234007/yt-dlp.yt-dlp.nightly.locale.en-US.yaml rename to manifests/y/yt-dlp/yt-dlp/nightly/2026.06.13.234541/yt-dlp.yt-dlp.nightly.locale.en-US.yaml index 41cddf649cdda..4cb3cc20dee67 100644 --- a/manifests/y/yt-dlp/yt-dlp/nightly/2026.04.30.234007/yt-dlp.yt-dlp.nightly.locale.en-US.yaml +++ b/manifests/y/yt-dlp/yt-dlp/nightly/2026.06.13.234541/yt-dlp.yt-dlp.nightly.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.15.0 +# Created with komac v2.16.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: yt-dlp.yt-dlp.nightly -PackageVersion: 2026.04.30.234007 +PackageVersion: 2026.06.13.234541 PackageLocale: en-US Publisher: yt-dlp PublisherUrl: https://github.com/yt-dlp @@ -33,41 +33,24 @@ Tags: - youtube-dlp - ytdlp ReleaseNotes: |- - Generated from: yt-dlp/yt-dlp@ebf0c0f + Generated from: yt-dlp/yt-dlp@b23046b Installation Discord Donate Documentation A description of the various files is in the README The zipimport Unix executable contains code licensed under ISC and MIT. The PyInstaller-bundled executables are subject to these and other licenses, all of which are compiled in THIRD_PARTY_LICENSES.txt Changelog Core changes - - Add lockfile and pinned extras (#16421) by bashonly, Grub4K (With fixes in 88c8a68 by bashonly) - - Fix default extra for ios platforms (#16376) by bashonly - - update: Bump GitHub REST API version to 2026-03-10 (#16435) by bashonly + - Fix allow-unsafe-ext compat option (#16920) by bashonly + - utils + - Deprecate make_dir in favor of make_parent_dirs (#16931) by doe1080 + - HTTPHeaderDict: Fix __ior__ (#16930) by doe1080 Extractor changes - - _resolve_nuxt_array: Handle Pinia skipHydrate (#16447) by doe1080 - - ard: Support new ardsounds domain (#16381) by evilpie - - bandcamp: weekly: Fix extractor (#16373) by bashonly - - rtp: Support multi-part episodes and --no-playlist (#16299) by bashonly - - soop: Adapt extractors to new domain (#16436) by thematuu - - soundcloud: Improve error handling (#16602) by bashonly - - twitch: clips: Fix extractor (#16466) by Ventriduct - - youtube - - Fix PO token sanitization for Python>=3.14.4 (#16453) by syphyr - - Fix outdated quickjs-ng warning (#16437) by bashonly - Networking changes - - Request Handler - - curl_cffi - - Fix supported impersonate targets (#16440) by bashonly - - Support curl_cffi 0.15.x (#16429) by bashonly - Misc. changes - - build - - Harden build/release workflows (#16358) by bashonly, Grub4K (With fixes in cdc465a by bashonly) - - Harden release workflow (#16444) by bashonly - - ci: Update wiki via this repository (#16446) by bashonly (With fixes in 9f0fc9a) - - devscripts - - Handle ejs updates for requirements files (#16374) by bashonly, Grub4K - - update_requirements: Add reporting functionality (#16454) by bashonly, Grub4K - - test: Add default and curl-cffi extras to hatch-test env (#16397) by JSubelj -ReleaseNotesUrl: https://github.com/yt-dlp/yt-dlp-nightly-builds/releases/tag/2026.04.30.234007 + - bandcamp: weekly: Fix extractor (#16925) by bashonly (With fixes in 9055188) + - patreon: Support new URL format (#16926) by 0xvd + - peertube: Support password-protected videos (#16873) by selfhoster1312 + - youtube: tab: Fix pagination (#16948) by bashonly + Downloader changes + - external: curl: Support development versions (#16922) by syphyr +ReleaseNotesUrl: https://github.com/yt-dlp/yt-dlp-nightly-builds/releases/tag/2026.06.13.234541 Documentations: - DocumentLabel: Discord DocumentUrl: https://discord.gg/H5MNcFW63r diff --git a/manifests/y/yt-dlp/yt-dlp/nightly/2026.04.30.234007/yt-dlp.yt-dlp.nightly.yaml b/manifests/y/yt-dlp/yt-dlp/nightly/2026.06.13.234541/yt-dlp.yt-dlp.nightly.yaml similarity index 73% rename from manifests/y/yt-dlp/yt-dlp/nightly/2026.04.30.234007/yt-dlp.yt-dlp.nightly.yaml rename to manifests/y/yt-dlp/yt-dlp/nightly/2026.06.13.234541/yt-dlp.yt-dlp.nightly.yaml index 96783a91cc89e..47b08c0441783 100644 --- a/manifests/y/yt-dlp/yt-dlp/nightly/2026.04.30.234007/yt-dlp.yt-dlp.nightly.yaml +++ b/manifests/y/yt-dlp/yt-dlp/nightly/2026.06.13.234541/yt-dlp.yt-dlp.nightly.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.15.0 +# Created with komac v2.16.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: yt-dlp.yt-dlp.nightly -PackageVersion: 2026.04.30.234007 +PackageVersion: 2026.06.13.234541 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0