diff --git a/Tools/YamlCreate.ps1 b/Tools/YamlCreate.ps1 index b7a9065281698..cf1aab8182e05 100644 --- a/Tools/YamlCreate.ps1 +++ b/Tools/YamlCreate.ps1 @@ -236,7 +236,7 @@ if ($Settings) { exit } -$ScriptHeader = '# Created with YamlCreate.ps1 v2.7.0' +$ScriptHeader = '# Created with YamlCreate.ps1 v2.7.1' $ManifestVersion = '1.12.0' $PSDefaultParameterValues = @{ '*:Encoding' = 'UTF8' } $Utf8NoBomEncoding = New-Object System.Text.UTF8Encoding $False @@ -634,6 +634,33 @@ Function Get-InstallerFile { return $_OutFile } +Function SafeRemovePath { + Param( + [Parameter(Mandatory=$true, Position=0)] + [string] $Path, + [int] $Retries = 6, + [int] $DelayMs = 250 + ) + + if (-not (Test-Path -LiteralPath $Path)) { return } + + for ($i = 0; $i -lt $Retries; $i++) { + try { + Remove-Item -LiteralPath $Path -Force -ErrorAction Stop + return + } catch [System.IO.IOException] { + [GC]::Collect() + [GC]::WaitForPendingFinalizers() + Start-Sleep -Milliseconds $DelayMs + $DelayMs = [Math]::Min(5000, $DelayMs * 2) + } catch { + throw + } + } + + Write-Warning "Could not remove file '$Path' after $Retries attempts; it may be in use by another process." +} + Function Get-UserSavePreference { switch ($ScriptSettings.SaveToTemporaryFolder) { 'always' { $_Preference = '0' } @@ -1036,7 +1063,7 @@ Function Read-InstallerEntry { Get-UriScope -URI $_Installer['InstallerUrl'] -OutVariable _ | Out-Null if ($_) { $_Installer['Scope'] = $_ | Select-Object -First 1 } if ([System.Environment]::OSVersion.Platform -match 'Win' -and ($script:dest).EndsWith('.msi')) { - $ProductCode = ([string](Get-MSIProperty -Path $script:dest -Property 'ProductCode') | Select-String -Pattern '{[A-Z0-9]{8}-([A-Z0-9]{4}-){3}[A-Z0-9]{12}}').Matches.Value + $ProductCode = [string](Get-MSIProperty -Path $script:dest -Property 'ProductCode').Value } elseif ([System.Environment]::OSVersion.Platform -match 'Unix' -and (Get-Item $script:dest).Name.EndsWith('.msi')) { $ProductCode = ([string](file $script:dest) | Select-String -Pattern '{[A-Z0-9]{8}-([A-Z0-9]{4}-){3}[A-Z0-9]{12}}').Matches.Value } @@ -1408,7 +1435,7 @@ Function Read-QuickInstallerEntry { # If a new product code doesn't exist, and the installer isn't an `.exe` file, remove the product code if it exists $MSIProductCode = $null if ([System.Environment]::OSVersion.Platform -match 'Win' -and ($script:dest).EndsWith('.msi')) { - $MSIProductCode = ([string](Get-MSIProperty -Path $script:dest -Property 'ProductCode') | Select-String -Pattern '{[A-Z0-9]{8}-([A-Z0-9]{4}-){3}[A-Z0-9]{12}}').Matches.Value + $MSIProductCode = [string](Get-MSIProperty -Path $script:dest -Property 'ProductCode').Value } elseif ([System.Environment]::OSVersion.Platform -match 'Unix' -and (Get-Item $script:dest).Name.EndsWith('.msi')) { $MSIProductCode = ([string](file $script:dest) | Select-String -Pattern '{[A-Z0-9]{8}-([A-Z0-9]{4}-){3}[A-Z0-9]{12}}').Matches.Value } @@ -1439,7 +1466,7 @@ Function Read-QuickInstallerEntry { } } # Remove the downloaded files - Remove-Item -Path $script:dest + SafeRemovePath -Path $script:dest Write-Host -ForegroundColor 'Green' "Installer updated!`n" } @@ -3052,7 +3079,7 @@ Switch ($script:Option) { # If a new product code doesn't exist, and the installer isn't an `.exe` file, remove the product code if it exists $MSIProductCode = $null if ([System.Environment]::OSVersion.Platform -match 'Win' -and ($script:dest).EndsWith('.msi')) { - $MSIProductCode = ([string](Get-MSIProperty -Path $script:dest -Property 'ProductCode') | Select-String -Pattern '{[A-Z0-9]{8}-([A-Z0-9]{4}-){3}[A-Z0-9]{12}}').Matches.Value + $MSIProductCode = [string](Get-MSIProperty -Path $script:dest -Property 'ProductCode').Value } elseif ([System.Environment]::OSVersion.Platform -match 'Unix' -and (Get-Item $script:dest).Name.EndsWith('.msi')) { $MSIProductCode = ([string](file $script:dest) | Select-String -Pattern '{[A-Z0-9]{8}-([A-Z0-9]{4}-){3}[A-Z0-9]{12}}').Matches.Value } @@ -3084,7 +3111,7 @@ Switch ($script:Option) { } } # Remove the downloaded files - Remove-Item -Path $script:dest + SafeRemovePath -Path $script:dest $_NewInstallers += Restore-YamlKeyOrder $_Installer $InstallerEntryProperties -NoComments } # Write the new manifests diff --git a/manifests/a/AbdElMoniemElHifnawy/PidCat/v2.5.4/AbdElMoniemElHifnawy.PidCat.installer.yaml b/manifests/a/AbdElMoniemElHifnawy/PidCat/v2.5.4/AbdElMoniemElHifnawy.PidCat.installer.yaml new file mode 100644 index 0000000000000..bce8fa46afe18 --- /dev/null +++ b/manifests/a/AbdElMoniemElHifnawy/PidCat/v2.5.4/AbdElMoniemElHifnawy.PidCat.installer.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AbdElMoniemElHifnawy.PidCat +PackageVersion: v2.5.4 +InstallerType: inno +InstallerSwitches: + Silent: /verysilent +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/abdalmoniem/pidcat/releases/download/v2.5.4/PidCat_v2.5.4_Fri_26_Dec_2025_12_37_33.589_PM.exe + InstallerSha256: 96AE16640F6C8A1D9F6F5F2D28A0786BC9ED634C94C5BAFE0AD6ECCC80BD21DC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AbdElMoniemElHifnawy/PidCat/v2.5.4/AbdElMoniemElHifnawy.PidCat.locale.en-US.yaml b/manifests/a/AbdElMoniemElHifnawy/PidCat/v2.5.4/AbdElMoniemElHifnawy.PidCat.locale.en-US.yaml new file mode 100644 index 0000000000000..b572451aecb80 --- /dev/null +++ b/manifests/a/AbdElMoniemElHifnawy/PidCat/v2.5.4/AbdElMoniemElHifnawy.PidCat.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: AbdElMoniemElHifnawy.PidCat +PackageVersion: v2.5.4 +PackageLocale: en-US +Publisher: AbdElMoniem ElHifnawy +PackageName: PidCat +License: GPLv3 +ShortDescription: PidCat Setup +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/AbdElMoniemElHifnawy/PidCat/v2.5.4/AbdElMoniemElHifnawy.PidCat.yaml b/manifests/a/AbdElMoniemElHifnawy/PidCat/v2.5.4/AbdElMoniemElHifnawy.PidCat.yaml new file mode 100644 index 0000000000000..48ebfc76c6009 --- /dev/null +++ b/manifests/a/AbdElMoniemElHifnawy/PidCat/v2.5.4/AbdElMoniemElHifnawy.PidCat.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: AbdElMoniemElHifnawy.PidCat +PackageVersion: v2.5.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/Aida-Enna/GamebarHandler/1.0.0.0/Aida-Enna.GamebarHandler.installer.yaml b/manifests/a/Aida-Enna/GamebarHandler/1.0.0.0/Aida-Enna.GamebarHandler.installer.yaml new file mode 100644 index 0000000000000..fe1fce0ba7f00 --- /dev/null +++ b/manifests/a/Aida-Enna/GamebarHandler/1.0.0.0/Aida-Enna.GamebarHandler.installer.yaml @@ -0,0 +1,16 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Aida-Enna.GamebarHandler +PackageVersion: 1.0.0.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: GamebarHandler.exe + PortableCommandAlias: gamebarhandler +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Aida-Enna/GamebarHandler/releases/download/1.0.0.0/GamebarHandler.zip + InstallerSha256: BD4E0B7EEBD3B42E52583982B17414962220C1FA8D516500B29A91FC973C6453 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/Aida-Enna/GamebarHandler/1.0.0.0/Aida-Enna.GamebarHandler.locale.en-US.yaml b/manifests/a/Aida-Enna/GamebarHandler/1.0.0.0/Aida-Enna.GamebarHandler.locale.en-US.yaml new file mode 100644 index 0000000000000..24837df0c175c --- /dev/null +++ b/manifests/a/Aida-Enna/GamebarHandler/1.0.0.0/Aida-Enna.GamebarHandler.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Aida-Enna.GamebarHandler +PackageVersion: 1.0.0.0 +PackageLocale: en-US +Publisher: Aida-Enna +PackageName: GamebarHandler +PackageUrl: https://github.com/Aida-Enna/GamebarHandler +License: None stated +ShortDescription: Gets rid of those pesky 'open ms-gamebar' and 'open ms-gamingoverlay' popups. +Description: Gets rid of those pesky 'open ms-gamebar' and 'open ms-gamingoverlay' popups. When you don't have the gamebar and Xbox gaming overlay installed, Windows still tries to call them do to various things (for some reason?). By running this program, you tell Windows "Hey, this program can handle those!". So then when Windows wants to open the gamebar or gaming overlay, it opens this program, which instantly (and silently!) closes. \ o / +Tags: +- ms-gamebar +- msgamebar +- ms-gamingoverlay +- msgamingoverlay +- antipopups +- anti-pop-ups +- dualsense +- playstationcontrollers +- playstation-controllers +- xbox-gamebar-stub +- xboxgamebarstub +- fileextensions +- file-extensions +ManifestType: defaultLocale +ManifestVersion: 1.10.0 \ No newline at end of file diff --git a/manifests/a/Aida-Enna/GamebarHandler/1.0.0.0/Aida-Enna.GamebarHandler.yaml b/manifests/a/Aida-Enna/GamebarHandler/1.0.0.0/Aida-Enna.GamebarHandler.yaml new file mode 100644 index 0000000000000..a880e6d16615f --- /dev/null +++ b/manifests/a/Aida-Enna/GamebarHandler/1.0.0.0/Aida-Enna.GamebarHandler.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Aida-Enna.GamebarHandler +PackageVersion: 1.0.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/AmarBego/GitTop/0.1.5/AmarBego.GitTop.installer.yaml b/manifests/a/AmarBego/GitTop/0.1.5/AmarBego.GitTop.installer.yaml new file mode 100644 index 0000000000000..88ce8f3d75982 --- /dev/null +++ b/manifests/a/AmarBego/GitTop/0.1.5/AmarBego.GitTop.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: AmarBego.GitTop +PackageVersion: 0.1.5 +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/AmarBego/GitTop/releases/download/v0.1.5/gittop-0.1.5-setup.exe + InstallerSha256: 3972ACCC34F4FFE229AB8F048EB22BC817C675F39DA3A07B7CB836FB20152DA2 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/AmarBego/GitTop/0.1.5/AmarBego.GitTop.locale.en-US.yaml b/manifests/a/AmarBego/GitTop/0.1.5/AmarBego.GitTop.locale.en-US.yaml new file mode 100644 index 0000000000000..7af0283f29b47 --- /dev/null +++ b/manifests/a/AmarBego/GitTop/0.1.5/AmarBego.GitTop.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: AmarBego.GitTop +PackageVersion: 0.1.5 +PackageLocale: en-US +Publisher: AmarBego +PublisherUrl: https://github.com/AmarBego +PublisherSupportUrl: https://github.com/AmarBego/GitTop/issues +Author: AmarBego +PackageName: GitTop +PackageUrl: https://github.com/AmarBego/GitTop +License: AGPL-3.0-only +LicenseUrl: https://github.com/AmarBego/GitTop/blob/main/LICENSE.md +Copyright: 'Copyright: © 2025 AmarBego' +ShortDescription: Lightweight GitHub notification desktop client +Description: A lightweight GitHub notifications client. Why spin up a browser just to check your GitHub notifications? +Moniker: gittop +Tags: +- github +- notifications +- desktop +- client +- git +- opensource +- tray +ManifestType: defaultLocale +ManifestVersion: 1.10.0 + diff --git a/manifests/a/AmarBego/GitTop/0.1.5/AmarBego.GitTop.yaml b/manifests/a/AmarBego/GitTop/0.1.5/AmarBego.GitTop.yaml new file mode 100644 index 0000000000000..25c14522028e7 --- /dev/null +++ b/manifests/a/AmarBego/GitTop/0.1.5/AmarBego.GitTop.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: AmarBego.GitTop +PackageVersion: 0.1.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJDK/14/Lite/14.0.2+13/BellSoft.LibericaJDK.14.Lite.installer.yaml b/manifests/b/BellSoft/LibericaJDK/14/Lite/14.0.2+13/BellSoft.LibericaJDK.14.Lite.installer.yaml new file mode 100644 index 0000000000000..d683525bcae02 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJDK/14/Lite/14.0.2+13/BellSoft.LibericaJDK.14.Lite.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJDK.14.Lite +PackageVersion: 14.0.2+13 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +UpgradeBehavior: install +ReleaseDate: 2020-07-13 +Installers: +- Architecture: x86 + InstallerUrl: https://download.bell-sw.com/java/14.0.2+13/bellsoft-jdk14.0.2+13-windows-i586-lite.msi + InstallerSha256: 1AE8CADB5FBD0098385A6E7F72B38360E1373EE97125BFC98B5362774C99A305 + ProductCode: '{9458498F-3EC2-43A7-982F-896CAC85B89F}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JDK 14 Lite (32-bit) + DisplayVersion: 14.0.2.13 + ProductCode: '{9458498F-3EC2-43A7-982F-896CAC85B89F}' + UpgradeCode: '{F7889A9D-7632-4677-88D0-7F616546E00F}' +- Architecture: x64 + InstallerUrl: https://download.bell-sw.com/java/14.0.2+13/bellsoft-jdk14.0.2+13-windows-amd64-lite.msi + InstallerSha256: AE0AA95DB838352050B3E61BEC5E2508EAC76C429D3F711691286D74B0E18581 + ProductCode: '{63A7E1BA-896D-4091-844C-578537923EF8}' + AppsAndFeaturesEntries: + - DisplayName: Liberica JDK 14 Lite (64-bit) + DisplayVersion: 14.0.2.13 + ProductCode: '{63A7E1BA-896D-4091-844C-578537923EF8}' + UpgradeCode: '{BCBF1578-78D6-4A27-87DE-1670794812D0}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJDK/14/Lite/14.0.2+13/BellSoft.LibericaJDK.14.Lite.locale.en-US.yaml b/manifests/b/BellSoft/LibericaJDK/14/Lite/14.0.2+13/BellSoft.LibericaJDK.14.Lite.locale.en-US.yaml new file mode 100644 index 0000000000000..d8b998173ace2 --- /dev/null +++ b/manifests/b/BellSoft/LibericaJDK/14/Lite/14.0.2+13/BellSoft.LibericaJDK.14.Lite.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJDK.14.Lite +PackageVersion: 14.0.2+13 +PackageLocale: en-US +Publisher: BellSoft +PublisherUrl: https://bell-sw.com/ +PackageName: Liberica JDK 14 Lite +PackageUrl: https://bell-sw.com/pages/downloads +License: Liberica EULA +LicenseUrl: https://bell-sw.com/liberica_eula/ +Copyright: Copyright (c) BellSoft Corporation +ShortDescription: Liberica JDK is a free and open source Java Development Kit produced by BellSoft. +Description: > + Liberica JDK is available on a variety of platforms. It is built from OpenJDK which BellSoft contributes to and is thoroughly tested. + Liberica JDK is compatible with the Java SE standard as confirmed by the JCK provided under the license from OpenJDK. Support options are available from BellSoft. +Tags: +- hotspot +- java +- liberica +- openjdk +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BellSoft/LibericaJDK/14/Lite/14.0.2+13/BellSoft.LibericaJDK.14.Lite.yaml b/manifests/b/BellSoft/LibericaJDK/14/Lite/14.0.2+13/BellSoft.LibericaJDK.14.Lite.yaml new file mode 100644 index 0000000000000..02cc825616bab --- /dev/null +++ b/manifests/b/BellSoft/LibericaJDK/14/Lite/14.0.2+13/BellSoft.LibericaJDK.14.Lite.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: BellSoft.LibericaJDK.14.Lite +PackageVersion: 14.0.2+13 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BrechtSanders/WinLibs/POSIX/MSVCRT/15.2.0-13.0.0-r5/BrechtSanders.WinLibs.POSIX.MSVCRT.installer.yaml b/manifests/b/BrechtSanders/WinLibs/POSIX/MSVCRT/15.2.0-13.0.0-r5/BrechtSanders.WinLibs.POSIX.MSVCRT.installer.yaml new file mode 100644 index 0000000000000..23e9e0fbf1247 --- /dev/null +++ b/manifests/b/BrechtSanders/WinLibs/POSIX/MSVCRT/15.2.0-13.0.0-r5/BrechtSanders.WinLibs.POSIX.MSVCRT.installer.yaml @@ -0,0 +1,183 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BrechtSanders.WinLibs.POSIX.MSVCRT +PackageVersion: 15.2.0-13.0.0-r5 +InstallerType: zip +NestedInstallerType: portable +Commands: +- c++ +- cmake +- g++ +- gcc +- gdb +- gfortran +- jwasm +- ld +- nasm +- yasm +ReleaseDate: 2025-12-23 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x86 + NestedInstallerFiles: + - RelativeFilePath: mingw32\bin\addr2line.exe + - RelativeFilePath: mingw32\bin\ar.exe + - RelativeFilePath: mingw32\bin\as.exe + - RelativeFilePath: mingw32\bin\bomtool.exe + - RelativeFilePath: mingw32\bin\c++.exe + - RelativeFilePath: mingw32\bin\c++filt.exe + - RelativeFilePath: mingw32\bin\ccache.exe + - RelativeFilePath: mingw32\bin\cmake.exe + - RelativeFilePath: mingw32\bin\cmcldeps.exe + - RelativeFilePath: mingw32\bin\copypedeps.exe + - RelativeFilePath: mingw32\bin\cpack.exe + - RelativeFilePath: mingw32\bin\cpp.exe + - RelativeFilePath: mingw32\bin\cppcheck.exe + - RelativeFilePath: mingw32\bin\ctags.exe + - RelativeFilePath: mingw32\bin\ctest.exe + - RelativeFilePath: mingw32\bin\dlltool.exe + - RelativeFilePath: mingw32\bin\dllwrap.exe + - RelativeFilePath: mingw32\bin\dos2unix.exe + - RelativeFilePath: mingw32\bin\doxygen.exe + - RelativeFilePath: mingw32\bin\elfedit.exe + - RelativeFilePath: mingw32\bin\g++.exe + - RelativeFilePath: mingw32\bin\gcc-ar.exe + - RelativeFilePath: mingw32\bin\gcc-nm.exe + - RelativeFilePath: mingw32\bin\gcc-ranlib.exe + - RelativeFilePath: mingw32\bin\gcc.exe + - RelativeFilePath: mingw32\bin\gcov-dump.exe + - RelativeFilePath: mingw32\bin\gcov-tool.exe + - RelativeFilePath: mingw32\bin\gcov.exe + - RelativeFilePath: mingw32\bin\gdb.exe + - RelativeFilePath: mingw32\bin\gdbserver.exe + - RelativeFilePath: mingw32\bin\gendef.exe + - RelativeFilePath: mingw32\bin\genidl.exe + - RelativeFilePath: mingw32\bin\gfortran.exe + - RelativeFilePath: mingw32\bin\gprof.exe + - RelativeFilePath: mingw32\bin\i686-w64-mingw32-c++.exe + - RelativeFilePath: mingw32\bin\i686-w64-mingw32-g++.exe + - RelativeFilePath: mingw32\bin\i686-w64-mingw32-gcc-15.2.0.exe + - RelativeFilePath: mingw32\bin\i686-w64-mingw32-gcc-ar.exe + - RelativeFilePath: mingw32\bin\i686-w64-mingw32-gcc-nm.exe + - RelativeFilePath: mingw32\bin\i686-w64-mingw32-gcc-ranlib.exe + - RelativeFilePath: mingw32\bin\i686-w64-mingw32-gcc.exe + - RelativeFilePath: mingw32\bin\i686-w64-mingw32-gfortran.exe + - RelativeFilePath: mingw32\bin\iconv.exe + - RelativeFilePath: mingw32\bin\jwasm.exe + - RelativeFilePath: mingw32\bin\ld.bfd.exe + - RelativeFilePath: mingw32\bin\ld.exe + - RelativeFilePath: mingw32\bin\listpedeps.exe + - RelativeFilePath: mingw32\bin\lto-dump.exe + - RelativeFilePath: mingw32\bin\mac2unix.exe + - RelativeFilePath: mingw32\bin\mingw32-make.exe + - RelativeFilePath: mingw32\bin\nasm.exe + - RelativeFilePath: mingw32\bin\ndisasm.exe + - RelativeFilePath: mingw32\bin\ninja.exe + - RelativeFilePath: mingw32\bin\nm.exe + - RelativeFilePath: mingw32\bin\ntldd.exe + - RelativeFilePath: mingw32\bin\objcopy.exe + - RelativeFilePath: mingw32\bin\objdump.exe + - RelativeFilePath: mingw32\bin\optscript.exe + - RelativeFilePath: mingw32\bin\pexports.exe + - RelativeFilePath: mingw32\bin\pkgconf.exe + - RelativeFilePath: mingw32\bin\premake5.exe + - RelativeFilePath: mingw32\bin\ranlib.exe + - RelativeFilePath: mingw32\bin\readelf.exe + - RelativeFilePath: mingw32\bin\readtags.exe + - RelativeFilePath: mingw32\bin\sarif-replay.exe + - RelativeFilePath: mingw32\bin\size.exe + - RelativeFilePath: mingw32\bin\strings.exe + - RelativeFilePath: mingw32\bin\strip.exe + - RelativeFilePath: mingw32\bin\unix2dos.exe + - RelativeFilePath: mingw32\bin\unix2mac.exe + - RelativeFilePath: mingw32\bin\vsyasm.exe + - RelativeFilePath: mingw32\bin\widl.exe + - RelativeFilePath: mingw32\bin\windmc.exe + - RelativeFilePath: mingw32\bin\windres.exe + - RelativeFilePath: mingw32\bin\yasm.exe + - RelativeFilePath: mingw32\bin\ytasm.exe + InstallerUrl: https://github.com/brechtsanders/winlibs_mingw/releases/download/15.2.0posix-13.0.0-msvcrt-r5/winlibs-i686-posix-dwarf-gcc-15.2.0-mingw-w64msvcrt-13.0.0-r5.zip + InstallerSha256: 882641E060FCD91580A24BA8E30435229A4163D7CDADB417707A8758F8431398 +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: mingw64\bin\addr2line.exe + - RelativeFilePath: mingw64\bin\ar.exe + - RelativeFilePath: mingw64\bin\as.exe + - RelativeFilePath: mingw64\bin\bomtool.exe + - RelativeFilePath: mingw64\bin\c++.exe + - RelativeFilePath: mingw64\bin\c++filt.exe + - RelativeFilePath: mingw64\bin\ccache.exe + - RelativeFilePath: mingw64\bin\cmake.exe + - RelativeFilePath: mingw64\bin\cmcldeps.exe + - RelativeFilePath: mingw64\bin\copypedeps.exe + - RelativeFilePath: mingw64\bin\cpack.exe + - RelativeFilePath: mingw64\bin\cpp.exe + - RelativeFilePath: mingw64\bin\cppcheck.exe + - RelativeFilePath: mingw64\bin\ctags.exe + - RelativeFilePath: mingw64\bin\ctest.exe + - RelativeFilePath: mingw64\bin\dlltool.exe + - RelativeFilePath: mingw64\bin\dllwrap.exe + - RelativeFilePath: mingw64\bin\dos2unix.exe + - RelativeFilePath: mingw64\bin\doxygen.exe + - RelativeFilePath: mingw64\bin\elfedit.exe + - RelativeFilePath: mingw64\bin\g++.exe + - RelativeFilePath: mingw64\bin\gcc-ar.exe + - RelativeFilePath: mingw64\bin\gcc-nm.exe + - RelativeFilePath: mingw64\bin\gcc-ranlib.exe + - RelativeFilePath: mingw64\bin\gcc.exe + - RelativeFilePath: mingw64\bin\gcov-dump.exe + - RelativeFilePath: mingw64\bin\gcov-tool.exe + - RelativeFilePath: mingw64\bin\gcov.exe + - RelativeFilePath: mingw64\bin\gdb.exe + - RelativeFilePath: mingw64\bin\gdbserver.exe + - RelativeFilePath: mingw64\bin\gendef.exe + - RelativeFilePath: mingw64\bin\genidl.exe + - RelativeFilePath: mingw64\bin\gfortran.exe + - RelativeFilePath: mingw64\bin\gprof.exe + - RelativeFilePath: mingw64\bin\iconv.exe + - RelativeFilePath: mingw64\bin\jwasm.exe + - RelativeFilePath: mingw64\bin\ld.bfd.exe + - RelativeFilePath: mingw64\bin\ld.exe + - RelativeFilePath: mingw64\bin\listpedeps.exe + - RelativeFilePath: mingw64\bin\lto-dump.exe + - RelativeFilePath: mingw64\bin\mac2unix.exe + - RelativeFilePath: mingw64\bin\mingw32-make.exe + - RelativeFilePath: mingw64\bin\nasm.exe + - RelativeFilePath: mingw64\bin\ndisasm.exe + - RelativeFilePath: mingw64\bin\ninja.exe + - RelativeFilePath: mingw64\bin\nm.exe + - RelativeFilePath: mingw64\bin\ntldd.exe + - RelativeFilePath: mingw64\bin\objcopy.exe + - RelativeFilePath: mingw64\bin\objdump.exe + - RelativeFilePath: mingw64\bin\optscript.exe + - RelativeFilePath: mingw64\bin\pexports.exe + - RelativeFilePath: mingw64\bin\pkgconf.exe + - RelativeFilePath: mingw64\bin\premake5.exe + - RelativeFilePath: mingw64\bin\ranlib.exe + - RelativeFilePath: mingw64\bin\readelf.exe + - RelativeFilePath: mingw64\bin\readtags.exe + - RelativeFilePath: mingw64\bin\sarif-replay.exe + - RelativeFilePath: mingw64\bin\size.exe + - RelativeFilePath: mingw64\bin\strings.exe + - RelativeFilePath: mingw64\bin\strip.exe + - RelativeFilePath: mingw64\bin\unix2dos.exe + - RelativeFilePath: mingw64\bin\unix2mac.exe + - RelativeFilePath: mingw64\bin\vsyasm.exe + - RelativeFilePath: mingw64\bin\widl.exe + - RelativeFilePath: mingw64\bin\windmc.exe + - RelativeFilePath: mingw64\bin\windres.exe + - RelativeFilePath: mingw64\bin\x86_64-w64-mingw32-c++.exe + - RelativeFilePath: mingw64\bin\x86_64-w64-mingw32-g++.exe + - RelativeFilePath: mingw64\bin\x86_64-w64-mingw32-gcc-15.2.0.exe + - RelativeFilePath: mingw64\bin\x86_64-w64-mingw32-gcc-ar.exe + - RelativeFilePath: mingw64\bin\x86_64-w64-mingw32-gcc-nm.exe + - RelativeFilePath: mingw64\bin\x86_64-w64-mingw32-gcc-ranlib.exe + - RelativeFilePath: mingw64\bin\x86_64-w64-mingw32-gcc.exe + - RelativeFilePath: mingw64\bin\x86_64-w64-mingw32-gfortran.exe + - RelativeFilePath: mingw64\bin\yasm.exe + - RelativeFilePath: mingw64\bin\ytasm.exe + InstallerUrl: https://github.com/brechtsanders/winlibs_mingw/releases/download/15.2.0posix-13.0.0-msvcrt-r5/winlibs-x86_64-posix-seh-gcc-15.2.0-mingw-w64msvcrt-13.0.0-r5.zip + InstallerSha256: 14C5B4F23ED379019E4D5BA4AB142FD524A426AF8967CC760C8509BB43424024 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BrechtSanders/WinLibs/POSIX/MSVCRT/15.2.0-13.0.0-r5/BrechtSanders.WinLibs.POSIX.MSVCRT.locale.en-US.yaml b/manifests/b/BrechtSanders/WinLibs/POSIX/MSVCRT/15.2.0-13.0.0-r5/BrechtSanders.WinLibs.POSIX.MSVCRT.locale.en-US.yaml new file mode 100644 index 0000000000000..884f9fa7bd268 --- /dev/null +++ b/manifests/b/BrechtSanders/WinLibs/POSIX/MSVCRT/15.2.0-13.0.0-r5/BrechtSanders.WinLibs.POSIX.MSVCRT.locale.en-US.yaml @@ -0,0 +1,86 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BrechtSanders.WinLibs.POSIX.MSVCRT +PackageVersion: 15.2.0-13.0.0-r5 +PackageLocale: en-US +Publisher: Brecht Sanders +PublisherUrl: https://winlibs.com/ +PublisherSupportUrl: https://github.com/brechtsanders/winlibs_mingw/issues +Author: Brecht Sanders +PackageName: WinLibs (POSIX threads, MSVCRT runtime) +PackageUrl: https://winlibs.com/ +License: Multiple licenses +LicenseUrl: https://winlibs.com/#license +ShortDescription: A standalone build of GCC and MinGW-w64 for Windows, with POSIX threading library and MSVCRT runtime library. +Description: |- + In short: it's a free C and C++ compiler for Microsoft Windows. + GCC (GNU Compiler Collection) is a free and open source compiler for C and C++ (and other languages like Objective-C, Fortran, D). + MinGW-w64 is a free and open source C library for targetting Windows 32-bit and 64-bit platforms. + The combination of these results in a free C/C++ compiler for Windows. + Even though GCC and MinGW-w64 can be used on other platforms (e.g. Linux) to generate Windows executables, the WinLibs project only focusses on building versions that run natively on Windows. + Also some additional tools are added, including: + - GDB - the GNU Project debugger + - GNU Binutils - a collection of binary tools + - GNU Make - a tool which controls the generation of executables and other non-source files + - Yasm - The Yasm Modular Assembler Project + - NASM - The Netwide Assembler + - JWasm - A free MASM-compatible assembler + - LLVM/Clang/LLD/LLDB - The LLVM Compiler Infrastructure + This is a standalone build, which means this download offers a complete compiler environment for Windows. + In the future WinLibs plans to also release binary packages of many open source libraries and applications built with this compiler. +Tags: +- assembler +- assembly +- binutils +- c +- c++ +- compiler +- cpp +- fortran +- gcc +- gdb +- gfortran +- make +- mingw +- mingw-w64 +ReleaseNotes: |- + winlibs personal build version gcc-15.2.0-mingw-w64msvcrt-13.0.0-r5 + This is the winlibs Intel/AMD 32-bit and 64-bit standalone build of: + - GCC 15.2.0 + - GDB 17.1 + - MinGW-w64 13.0.0 (linked with msvcrt) + - GNU Binutils 2.45.1 + - GNU Make 4.4.1 + - PExports 0.47 + - dos2unix 7.5.3 + - Yasm 1.3.0 + - NASM 2.16.03 + - JWasm 2.12pre + - ccache 4.12.2 + - CMake 4.2.1 + - ninja 1.13.2 + - Doxygen 1.15.0 + - pedeps 0.1.15 + - Universal Ctags 6.2.1 + - Cppcheck 2.19.0 + - Premake 5.0.0-beta7 + - ntldd 0.2 + - pkgconf 2.5.1 + Thread model: posix + Runtime library: MSVCRT + This build was compiled with GCC 15.2.0 and packaged on 2025-12-23. + Please check out https://winlibs.com/ for the latest personal build. + Available downloads: + - Files with extension .7z and .zip have the same contents. + The .7z files are smaller but require 7-Zip or PeaZip to extract. + The .zip files are larger but Windows can extract this file without additional tools. + - The i686 download is the Windows Intel/AMD 32-bit version, which runs natively on and compiles for Windows 32-bit (also runs on Windows 64-bit in 32-bit mode). + The x86_64 download is the Windows Intel/AMD 64-bit version, which runs natively on and compiles for Windows 64-bit. + - The .sha256 and .sha512 files are checksum files for validating the download. + Changes: + - everything is now compiled with the -fno-ident to remove the compiler version information from binaries + - GDB 17.1 +ReleaseNotesUrl: https://github.com/brechtsanders/winlibs_mingw/releases/tag/15.2.0posix-13.0.0-msvcrt-r5 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BrechtSanders/WinLibs/POSIX/MSVCRT/15.2.0-13.0.0-r5/BrechtSanders.WinLibs.POSIX.MSVCRT.locale.zh-CN.yaml b/manifests/b/BrechtSanders/WinLibs/POSIX/MSVCRT/15.2.0-13.0.0-r5/BrechtSanders.WinLibs.POSIX.MSVCRT.locale.zh-CN.yaml new file mode 100644 index 0000000000000..387f50ca07f02 --- /dev/null +++ b/manifests/b/BrechtSanders/WinLibs/POSIX/MSVCRT/15.2.0-13.0.0-r5/BrechtSanders.WinLibs.POSIX.MSVCRT.locale.zh-CN.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: BrechtSanders.WinLibs.POSIX.MSVCRT +PackageVersion: 15.2.0-13.0.0-r5 +PackageLocale: zh-CN +PackageName: WinLibs (POSIX 线程库, MSVCRT 运行时库) +License: 多个许可证 +ShortDescription: 适用于 Windows 的 GCC 和 MinGW-w64 独立构建,包含 POSIX 线程库和 MSVCRT 运行时库。 +Description: |- + 简而言之:它是一款适用于 Microsoft Windows 的自由/免费 C 和 C++ 编译器。 + GCC(GNU Compiler Collection)是一款自由/免费、开源的 C 和 C++(以及 Objective-C、Fortran、D 等其它语言)编译器。 + MinGW-w64 是一个针对 Windows 32 位和 64 位平台的自由/免费开源 C 库。 + 将两者结合在一起,就能为 Windows 提供免费的 C/C++ 编译器。 + 尽管 GCC 和 MinGW-w64 可用于在其它平台(如 Linux)生成 Windows 可执行文件,但 WinLibs 项目只专注于构建可在 Windows 上原生运行的版本。 + 此外,还添加了一些额外的工具,包括 + - GDB - GNU 项目调试器 + - GNU Binutils - 二进制工具集合 + - GNU Make - 控制可执行文件和其它非源文件生成的工具 + - Yasm - Yasm 模块化汇编器项目 + - NASM - Netwide 汇编器 + - JWasm - 与 MASM 兼容的免费汇编器 + - LLVM/Clang/LLD/LLDB - LLVM 编译器基础架构 + 这是一个独立构建,提供了一个完整的 Windows 编译器环境。 + 今后,WinLibs 还计划发布使用该编译器构建的众多开源库和应用程序的二进制包。 +Tags: +- binutils +- c +- c++ +- cpp +- fortran +- gcc +- gdb +- gfortran +- make +- mingw +- mingw-w64 +- 汇编 +- 汇编器 +- 编译器 +ReleaseNotesUrl: https://github.com/brechtsanders/winlibs_mingw/releases/tag/15.2.0posix-13.0.0-msvcrt-r5 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BrechtSanders/WinLibs/POSIX/MSVCRT/15.2.0-13.0.0-r5/BrechtSanders.WinLibs.POSIX.MSVCRT.yaml b/manifests/b/BrechtSanders/WinLibs/POSIX/MSVCRT/15.2.0-13.0.0-r5/BrechtSanders.WinLibs.POSIX.MSVCRT.yaml new file mode 100644 index 0000000000000..7d3d0d4967c50 --- /dev/null +++ b/manifests/b/BrechtSanders/WinLibs/POSIX/MSVCRT/15.2.0-13.0.0-r5/BrechtSanders.WinLibs.POSIX.MSVCRT.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: BrechtSanders.WinLibs.POSIX.MSVCRT +PackageVersion: 15.2.0-13.0.0-r5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/Shared/8/0/8.0.1-20251130/BtbN.FFmpeg.GPL.Shared.8.0.installer.yaml b/manifests/b/BtbN/FFmpeg/GPL/Shared/8/0/8.0.1-20251130/BtbN.FFmpeg.GPL.Shared.8.0.installer.yaml new file mode 100644 index 0000000000000..5881dda05b51c --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/Shared/8/0/8.0.1-20251130/BtbN.FFmpeg.GPL.Shared.8.0.installer.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: BtbN.FFmpeg.GPL.Shared.8.0 +PackageVersion: 8.0.1-20251130 +InstallerType: zip +NestedInstallerType: portable +Commands: +- ffmpeg +- ffplay +- ffprobe +ReleaseDate: 2025-11-30 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: ffmpeg-n8.0.1-17-g27a297f186-win64-gpl-shared-8.0\bin\ffmpeg.exe + PortableCommandAlias: ffmpeg + - RelativeFilePath: ffmpeg-n8.0.1-17-g27a297f186-win64-gpl-shared-8.0\bin\ffplay.exe + PortableCommandAlias: ffplay + - RelativeFilePath: ffmpeg-n8.0.1-17-g27a297f186-win64-gpl-shared-8.0\bin\ffprobe.exe + PortableCommandAlias: ffprobe + InstallerUrl: https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-11-30-12-53/ffmpeg-n8.0.1-17-g27a297f186-win64-gpl-shared-8.0.zip + InstallerSha256: 8907CE0B71DF8C3A2253D699782652FCDADDA24AF7E9A22623F0F920B8BA7A38 +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: ffmpeg-n8.0.1-17-g27a297f186-winarm64-gpl-shared-8.0\bin\ffmpeg.exe + PortableCommandAlias: ffmpeg + - RelativeFilePath: ffmpeg-n8.0.1-17-g27a297f186-winarm64-gpl-shared-8.0\bin\ffplay.exe + PortableCommandAlias: ffplay + - RelativeFilePath: ffmpeg-n8.0.1-17-g27a297f186-winarm64-gpl-shared-8.0\bin\ffprobe.exe + PortableCommandAlias: ffprobe + InstallerUrl: https://github.com/BtbN/FFmpeg-Builds/releases/download/autobuild-2025-11-30-12-53/ffmpeg-n8.0.1-17-g27a297f186-winarm64-gpl-shared-8.0.zip + InstallerSha256: 51ED0FC77EE0BFEAD0ADB95737624C9D5371289E523C23463A05C919383A9FCA +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/Shared/8/0/8.0.1-20251130/BtbN.FFmpeg.GPL.Shared.8.0.locale.en-US.yaml b/manifests/b/BtbN/FFmpeg/GPL/Shared/8/0/8.0.1-20251130/BtbN.FFmpeg.GPL.Shared.8.0.locale.en-US.yaml new file mode 100644 index 0000000000000..d5f58f53f7fdf --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/Shared/8/0/8.0.1-20251130/BtbN.FFmpeg.GPL.Shared.8.0.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: BtbN.FFmpeg.GPL.Shared.8.0 +PackageVersion: 8.0.1-20251130 +PackageLocale: en-US +Publisher: BtbN +PublisherUrl: https://github.com/BtbN +PublisherSupportUrl: https://github.com/BtbN/FFmpeg-Builds/issues +PackageName: FFmpeg (GPL shared variant, 8.0 release branch) +PackageUrl: https://github.com/BtbN/FFmpeg-Builds +License: GPL-3.0 +LicenseUrl: https://www.ffmpeg.org/legal.html +Copyright: Copyright (c) 2000-2025 the FFmpeg developers +ShortDescription: A complete, cross-platform solution to record, convert and stream audio and video. +Description: |- + FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. + A shared FFmpeg build from BtbN based on the 8.0 release branch with all dependencies, even those that require full GPL instead of just LGPL. +Tags: +- audio +- codec +- convert +- decode +- demux +- encode +- filter +- media +- multimedia +- mux +- record +- stream +- streaming +- transcode +- video +ReleaseNotesUrl: https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2025-11-30-12-53 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/Shared/8/0/8.0.1-20251130/BtbN.FFmpeg.GPL.Shared.8.0.locale.zh-CN.yaml b/manifests/b/BtbN/FFmpeg/GPL/Shared/8/0/8.0.1-20251130/BtbN.FFmpeg.GPL.Shared.8.0.locale.zh-CN.yaml new file mode 100644 index 0000000000000..59bf34198675c --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/Shared/8/0/8.0.1-20251130/BtbN.FFmpeg.GPL.Shared.8.0.locale.zh-CN.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: BtbN.FFmpeg.GPL.Shared.8.0 +PackageVersion: 8.0.1-20251130 +PackageLocale: zh-CN +PackageName: FFmpeg (GPL 动态编译版, 8.0 发布分支) +ShortDescription: 用于录制、转换和传输音频和视频的完整跨平台解决方案。 +Description: |- + FFmpeg 是领先的多媒体框架,能够解码、编码、转码、混流、分解、推流、应用滤镜并播放人类和机器创建的几乎所有内容。它支持从最晦涩古老的格式到最前沿的格式。 + 由 BtbN 构建的基于 8.0 发布分支的动态编译的 FFmpeg,拥有包含那些要求完整 GPL 协议而不仅仅是 LGPL 协议的在内的所有依赖。 +Tags: +- 多媒体 +- 媒体 +- 录制 +- 推流 +- 流媒体 +- 滤镜 +- 视频 +- 编码 +- 编解码器 +- 解码 +- 转换 +- 转码 +- 过滤器 +- 音视频 +- 音频 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://ffmpeg.org/documentation.html +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/b/BtbN/FFmpeg/GPL/Shared/8/0/8.0.1-20251130/BtbN.FFmpeg.GPL.Shared.8.0.yaml b/manifests/b/BtbN/FFmpeg/GPL/Shared/8/0/8.0.1-20251130/BtbN.FFmpeg.GPL.Shared.8.0.yaml new file mode 100644 index 0000000000000..9172dda621d78 --- /dev/null +++ b/manifests/b/BtbN/FFmpeg/GPL/Shared/8/0/8.0.1-20251130/BtbN.FFmpeg.GPL.Shared.8.0.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: BtbN.FFmpeg.GPL.Shared.8.0 +PackageVersion: 8.0.1-20251130 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/AndroidStudio/Canary/2025.2.3.4/Google.AndroidStudio.Canary.installer.yaml b/manifests/g/Google/AndroidStudio/Canary/2025.2.3.4/Google.AndroidStudio.Canary.installer.yaml new file mode 100644 index 0000000000000..1861b160667d9 --- /dev/null +++ b/manifests/g/Google/AndroidStudio/Canary/2025.2.3.4/Google.AndroidStudio.Canary.installer.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Google.AndroidStudio.Canary +PackageVersion: 2025.2.3.4 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +InstallerSuccessCodes: +- 1223 +UpgradeBehavior: install +ReleaseDate: 2025-12-08 +RequireExplicitUpgrade: true +ElevationRequirement: elevationRequired +Installers: +- Architecture: x64 + InstallerUrl: https://redirector.gvt1.com/edgedl/android/studio/install/2025.2.3.4/android-studio-2025.2.3.4-windows.exe + InstallerSha256: 325438CA41218AEFB0AC5CBDF0347D3707D76D9445AC2DDEFC2258788819405E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/AndroidStudio/Canary/2025.2.3.4/Google.AndroidStudio.Canary.locale.en-US.yaml b/manifests/g/Google/AndroidStudio/Canary/2025.2.3.4/Google.AndroidStudio.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..7f23b4c3b968c --- /dev/null +++ b/manifests/g/Google/AndroidStudio/Canary/2025.2.3.4/Google.AndroidStudio.Canary.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.AndroidStudio.Canary +PackageVersion: 2025.2.3.4 +PackageLocale: en-US +Publisher: Google LLC +PublisherUrl: https://developer.android.com/ +PublisherSupportUrl: https://developer.android.com/studio/intro +PrivacyUrl: https://policies.google.com/privacy +PackageName: Android Studio Canary +PackageUrl: https://developer.android.com/studio/preview +License: Android Software Development Kit License Agreement +LicenseUrl: https://developer.android.com/studio/terms +Copyright: Copyright © 2000–2024 Google +CopyrightUrl: https://developer.android.com/studio/terms +ShortDescription: The official Integrated Development Environment (IDE) for Android app development. +Description: |- + Get early access to the latest features and improvements in Android Studio. + Android Studio is the official Integrated Development Environment (IDE) for Android app development. + Based on the powerful code editor and developer tools from IntelliJ IDEA, + Android Studio offers even more features that enhance your productivity when building Android apps. +Moniker: android-studio-canary +Tags: +- aab +- adb +- android +- android-studio +- androidstudiocanary +- apk +- app +- canary +- debug +- development +- emulator +- fastboot +- ide +- intellij +- studio +ReleaseNotesUrl: https://androidstudio.googleblog.com/ +Documentations: +- DocumentLabel: Install Alongside Stable + DocumentUrl: https://developer.android.com/studio/preview/install-preview +- DocumentLabel: Report A Bug + DocumentUrl: https://developer.android.com/studio/report-bugs +- DocumentLabel: Troubleshoot + DocumentUrl: https://developer.android.com/studio/troubleshoot +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/AndroidStudio/Canary/2025.2.3.4/Google.AndroidStudio.Canary.yaml b/manifests/g/Google/AndroidStudio/Canary/2025.2.3.4/Google.AndroidStudio.Canary.yaml new file mode 100644 index 0000000000000..9b2c348ea3bd4 --- /dev/null +++ b/manifests/g/Google/AndroidStudio/Canary/2025.2.3.4/Google.AndroidStudio.Canary.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Google.AndroidStudio.Canary +PackageVersion: 2025.2.3.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Beta/EXE/132.0.6834.15/Google.Chrome.Beta.EXE.installer.yaml b/manifests/g/Google/Chrome/Beta/EXE/132.0.6834.15/Google.Chrome.Beta.EXE.installer.yaml deleted file mode 100644 index bdeaa07d7631e..0000000000000 --- a/manifests/g/Google/Chrome/Beta/EXE/132.0.6834.15/Google.Chrome.Beta.EXE.installer.yaml +++ /dev/null @@ -1,79 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json - -PackageIdentifier: Google.Chrome.Beta.EXE -PackageVersion: 132.0.6834.15 -InstallerType: exe -InstallModes: -- silent -InstallerSwitches: - Log: --verbose-logging --log-file="" -ExpectedReturnCodes: -- InstallerReturnCode: 3 - ReturnResponse: alreadyInstalled -- InstallerReturnCode: 4 - ReturnResponse: downgrade -- InstallerReturnCode: 22 - ReturnResponse: cancelledByUser -- InstallerReturnCode: 60 - ReturnResponse: installInProgress -UpgradeBehavior: install -Protocols: -- http -- https -- mailto -- tel -FileExtensions: -- htm -- html -- pdf -- shtml -- svg -- webp -- xht -- xhtml -Installers: -- Architecture: x86 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/ad7ntgpel4miltebg3n54z5jnjfa_132.0.6834.15/132.0.6834.15_chrome_installer.exe - InstallerSha256: 49AB6A43303155AE91F9023C140F9F591C2CF4958BED1A4F3927C74085D471D6 - InstallerSwitches: - Custom: --do-not-launch-chrome --chrome-beta - ProductCode: Google Chrome Beta -- Architecture: x86 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/ad7ntgpel4miltebg3n54z5jnjfa_132.0.6834.15/132.0.6834.15_chrome_installer.exe - InstallerSha256: 49AB6A43303155AE91F9023C140F9F591C2CF4958BED1A4F3927C74085D471D6 - InstallerSwitches: - Custom: --do-not-launch-chrome --system-level --chrome-beta - ProductCode: Google Chrome Beta -- Architecture: x64 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/bz4q4fusckaejwzfub2hz6hmry_132.0.6834.15/132.0.6834.15_chrome_installer.exe - InstallerSha256: 8756CDAF54D363A90BBDEE09A8DF094770F26722BF09B8CD50156F530135A655 - InstallerSwitches: - Custom: --do-not-launch-chrome --chrome-beta - ProductCode: Google Chrome Beta -- Architecture: x64 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/bz4q4fusckaejwzfub2hz6hmry_132.0.6834.15/132.0.6834.15_chrome_installer.exe - InstallerSha256: 8756CDAF54D363A90BBDEE09A8DF094770F26722BF09B8CD50156F530135A655 - InstallerSwitches: - Custom: --do-not-launch-chrome --system-level --chrome-beta - ProductCode: Google Chrome Beta -- Architecture: arm64 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/actrq33kcgwdbdwhjpktdudfi56a_132.0.6834.15/132.0.6834.15_chrome_installer.exe - InstallerSha256: B0E10E164B86712B1F36F198C4869BC35629844F2D245A981B3EB0A40058A6B9 - InstallerSwitches: - Custom: --do-not-launch-chrome --chrome-beta - ProductCode: Google Chrome Beta -- Architecture: arm64 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/actrq33kcgwdbdwhjpktdudfi56a_132.0.6834.15/132.0.6834.15_chrome_installer.exe - InstallerSha256: B0E10E164B86712B1F36F198C4869BC35629844F2D245A981B3EB0A40058A6B9 - InstallerSwitches: - Custom: --do-not-launch-chrome --system-level --chrome-beta - ProductCode: Google Chrome Beta -ManifestType: installer -ManifestVersion: 1.6.0 diff --git a/manifests/g/Google/Chrome/Beta/EXE/132.0.6834.15/Google.Chrome.Beta.EXE.locale.en-US.yaml b/manifests/g/Google/Chrome/Beta/EXE/132.0.6834.15/Google.Chrome.Beta.EXE.locale.en-US.yaml deleted file mode 100644 index 589f203c32846..0000000000000 --- a/manifests/g/Google/Chrome/Beta/EXE/132.0.6834.15/Google.Chrome.Beta.EXE.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json - -PackageIdentifier: Google.Chrome.Beta.EXE -PackageVersion: 132.0.6834.15 -PackageLocale: en-US -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/ -PrivacyUrl: https://policies.google.com/privacy -Author: Google LLC -PackageName: Google Chrome Beta (EXE) -PackageUrl: https://www.google.com/chrome/beta -License: Freeware -LicenseUrl: https://www.google.com/chrome/terms -Copyright: Copyright 2024 Google LLC. All rights reserved. -# CopyrightUrl: -ShortDescription: Try new features with Chrome Beta -Description: Feeling adventurous? Preview upcoming Google Chrome features before they’re released and give us feedback to make Chrome a better browser. -# Moniker: -Tags: -- browser -- chromium -- internet -- web -- webpage -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: defaultLocale -ManifestVersion: 1.6.0 diff --git a/manifests/g/Google/Chrome/Beta/EXE/132.0.6834.15/Google.Chrome.Beta.EXE.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Beta/EXE/132.0.6834.15/Google.Chrome.Beta.EXE.locale.nb-NO.yaml deleted file mode 100644 index 77a6dce83aba2..0000000000000 --- a/manifests/g/Google/Chrome/Beta/EXE/132.0.6834.15/Google.Chrome.Beta.EXE.locale.nb-NO.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json - -PackageIdentifier: Google.Chrome.Beta.EXE -PackageVersion: 132.0.6834.15 -PackageLocale: nb-NO -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/?hl=no -PrivacyUrl: https://policies.google.com/privacy?hl=no -Author: Google LLC -PackageName: Google Chrome Beta (EXE) -PackageUrl: https://www.google.com/intl/no/chrome/beta -License: Gratis Programvare -LicenseUrl: https://www.google.com/intl/no/chrome/terms -Copyright: Copyright 2024 Google LLC. Med enerett. -# CopyrightUrl: -ShortDescription: Prøv nye funksjoner med Chrome Beta -Description: Er du eventyrlysten? Ta en forhåndstitt på nye funksjoner i Google Chrome før de kommer ut, og gi oss tilbakemeldinger, så vi kan gjøre Chrome til en bedre nettleser. -# Moniker: -Tags: -- chromium -- nettleseren -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.6.0 diff --git a/manifests/g/Google/Chrome/Beta/EXE/132.0.6834.15/Google.Chrome.Beta.EXE.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Beta/EXE/132.0.6834.15/Google.Chrome.Beta.EXE.locale.zh-CN.yaml deleted file mode 100644 index f216cbd273d23..0000000000000 --- a/manifests/g/Google/Chrome/Beta/EXE/132.0.6834.15/Google.Chrome.Beta.EXE.locale.zh-CN.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json - -PackageIdentifier: Google.Chrome.Beta.EXE -PackageVersion: 132.0.6834.15 -PackageLocale: zh-CN -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/?hl=zh-Hans -PrivacyUrl: https://policies.google.com/privacy?hl=zh-CN -Author: Google LLC -PackageName: Google Chrome 测试版(EXE) -PackageUrl: https://www.google.com/intl/zh-CN/chrome/beta -License: 免费软件 -LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms -Copyright: 版权所有 2024 Google LLC. 保留所有权利。 -# CopyrightUrl: -ShortDescription: 试用 Chrome 测试版的新功能 -Description: 喜欢尝鲜?欢迎赶在 Google Chrome 新功能正式发布前抢先试用,并提供反馈以帮助我们完善 Chrome 浏览器。 -# Moniker: -Tags: -- chromium -- 互联网 -- 浏览器 -- 网页 -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: -# Documentations: -ManifestType: locale -ManifestVersion: 1.6.0 diff --git a/manifests/g/Google/Chrome/Beta/EXE/132.0.6834.15/Google.Chrome.Beta.EXE.yaml b/manifests/g/Google/Chrome/Beta/EXE/132.0.6834.15/Google.Chrome.Beta.EXE.yaml deleted file mode 100644 index b93cdde396782..0000000000000 --- a/manifests/g/Google/Chrome/Beta/EXE/132.0.6834.15/Google.Chrome.Beta.EXE.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.4.1 Dumplings Mod $debug=QUSU.CRLF.7-4-6.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json - -PackageIdentifier: Google.Chrome.Beta.EXE -PackageVersion: 132.0.6834.15 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.6.0 diff --git a/manifests/g/Google/Chrome/Canary/145.0.7601.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/145.0.7601.0/Google.Chrome.Canary.installer.yaml new file mode 100644 index 0000000000000..2dc1d9c11ed48 --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/145.0.7601.0/Google.Chrome.Canary.installer.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 145.0.7601.0 +InstallerType: exe +Scope: user +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" + Custom: --chrome-sxs --do-not-launch-chrome +ExpectedReturnCodes: +- InstallerReturnCode: 60 + ReturnResponse: installInProgress +- InstallerReturnCode: 22 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 4 + ReturnResponse: downgrade +- InstallerReturnCode: 3 + ReturnResponse: alreadyInstalled +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +- tel +FileExtensions: +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Google Chrome SxS +Installers: +- Architecture: x86 + InstallerUrl: https://dl.google.com/release2/chrome/adtknjdzmpq52p2cabaocn7jljcq_145.0.7601.0/145.0.7601.0_chrome_installer_uncompressed.exe + InstallerSha256: DFAFCD1D0F37D689F1392D61CC8DCC055A4469AC184A28A2C76E786DA4B451F7 +- Architecture: x64 + InstallerUrl: https://dl.google.com/release2/chrome/acbwnoq4mmqqm7jk2hbkhkascbcq_145.0.7601.0/145.0.7601.0_chrome_installer_uncompressed.exe + InstallerSha256: 46C6E2C8E20DFE10A623BB4FA90B52181539964079E772F7877DFD587BAEADC1 +- Architecture: arm64 + InstallerUrl: https://dl.google.com/release2/chrome/np6f6npgnra7xx4frnucqtmqyy_145.0.7601.0/145.0.7601.0_chrome_installer_uncompressed.exe + InstallerSha256: EECD0779CC9E7B00559C0451F7BF930D9084AE47EDC5653877F00E002F4F7B93 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/145.0.7601.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/145.0.7601.0/Google.Chrome.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..2ec9324a0e99b --- /dev/null +++ b/manifests/g/Google/Chrome/Canary/145.0.7601.0/Google.Chrome.Canary.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 145.0.7601.0 +PackageLocale: en-US +Publisher: Google LLC +PublisherUrl: https://www.google.com/ +PublisherSupportUrl: https://support.google.com/ +PrivacyUrl: https://policies.google.com/privacy +Author: Google LLC +PackageName: Google Chrome Canary +PackageUrl: https://www.google.com/chrome/canary +License: Freeware +LicenseUrl: https://www.google.com/chrome/terms +Copyright: Copyright 2025 Google LLC. All rights reserved. +ShortDescription: Nightly build for developers +Description: Get on the bleeding edge of the web with Chrome Canary designed for experienced developers and updated nightly. +Moniker: chrome-canary +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/131.0.6778.265/Google.Chrome.EXE.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/145.0.7601.0/Google.Chrome.Canary.locale.nb-NO.yaml similarity index 50% rename from manifests/g/Google/Chrome/EXE/131.0.6778.265/Google.Chrome.EXE.locale.nb-NO.yaml rename to manifests/g/Google/Chrome/Canary/145.0.7601.0/Google.Chrome.Canary.locale.nb-NO.yaml index d5beda9a592e6..cbf0ad9038ed7 100644 --- a/manifests/g/Google/Chrome/EXE/131.0.6778.265/Google.Chrome.EXE.locale.nb-NO.yaml +++ b/manifests/g/Google/Chrome/Canary/145.0.7601.0/Google.Chrome.Canary.locale.nb-NO.yaml @@ -1,23 +1,23 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json - -PackageIdentifier: Google.Chrome.EXE -PackageVersion: 131.0.6778.265 -PackageLocale: nb-NO -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/?hl=no -PrivacyUrl: https://policies.google.com/privacy?hl=no -Author: Google LLC -PackageName: Google Chrome (EXE) -PackageUrl: https://www.google.com/intl/no/chrome/ -License: Gratis Programvare -LicenseUrl: https://www.google.com/intl/no/chrome/terms -Copyright: Copyright 2024 Google LLC. Med enerett. -ShortDescription: Nettleseren fra Google -Description: Enklere, tryggere og raskere enn noensinne – med Googles smarte funksjoner. -Tags: -- chromium -- nettleseren -ManifestType: locale -ManifestVersion: 1.9.0 +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 145.0.7601.0 +PackageLocale: nb-NO +Publisher: Google LLC +PublisherUrl: https://www.google.com/ +PublisherSupportUrl: https://support.google.com/?hl=no +PrivacyUrl: https://policies.google.com/privacy?hl=no +Author: Google LLC +PackageName: Google Chrome Canary +PackageUrl: https://www.google.com/intl/no/chrome/canary +License: Gratis Programvare +LicenseUrl: https://www.google.com/intl/no/chrome/terms +Copyright: Copyright 2025 Google LLC. Med enerett. +ShortDescription: Nattlig delversjon for utviklere +Description: Vær med på å gå opp nye stier på nettet med Chrome Canary, som er laget for erfarne utviklere og oppdateres daglig. +Tags: +- chromium +- nettleseren +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/131.0.6778.265/Google.Chrome.EXE.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/145.0.7601.0/Google.Chrome.Canary.locale.zh-CN.yaml similarity index 51% rename from manifests/g/Google/Chrome/EXE/131.0.6778.265/Google.Chrome.EXE.locale.zh-CN.yaml rename to manifests/g/Google/Chrome/Canary/145.0.7601.0/Google.Chrome.Canary.locale.zh-CN.yaml index 25ecbe33d99f2..4e23797de1160 100644 --- a/manifests/g/Google/Chrome/EXE/131.0.6778.265/Google.Chrome.EXE.locale.zh-CN.yaml +++ b/manifests/g/Google/Chrome/Canary/145.0.7601.0/Google.Chrome.Canary.locale.zh-CN.yaml @@ -1,25 +1,25 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json - -PackageIdentifier: Google.Chrome.EXE -PackageVersion: 131.0.6778.265 -PackageLocale: zh-CN -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/?hl=zh-Hans -PrivacyUrl: https://policies.google.com/privacy?hl=zh-CN -Author: Google LLC -PackageName: Google Chrome (EXE) -PackageUrl: https://www.google.com/intl/zh-CN/chrome/ -License: 免费软件 -LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms -Copyright: 版权所有 2024 Google LLC. 保留所有权利。 -ShortDescription: 由 Google 打造的浏览器 -Description: 得益于 Google 智能工具,Chrome 现在更易用、更安全、更快速。 -Tags: -- chromium -- 互联网 -- 浏览器 -- 网页 -ManifestType: locale -ManifestVersion: 1.9.0 +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 145.0.7601.0 +PackageLocale: zh-CN +Publisher: Google LLC +PublisherUrl: https://www.google.com/ +PublisherSupportUrl: https://support.google.com/?hl=zh-Hans +PrivacyUrl: https://policies.google.com/privacy?hl=zh-CN +Author: Google LLC +PackageName: Google Chrome Canary +PackageUrl: https://www.google.com/intl/zh-CN/chrome/canary +License: 免费软件 +LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms +Copyright: 版权所有 2025 Google LLC. 保留所有权利。 +ShortDescription: 开发者专用的每日构建版 +Description: 安装专为经验丰富的开发者设计且每晚都会更新的 Chrome Canary 版,站在网络科技最前沿。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/EXE/131.0.6778.265/Google.Chrome.EXE.yaml b/manifests/g/Google/Chrome/Canary/145.0.7601.0/Google.Chrome.Canary.yaml similarity index 55% rename from manifests/g/Google/Chrome/EXE/131.0.6778.265/Google.Chrome.EXE.yaml rename to manifests/g/Google/Chrome/Canary/145.0.7601.0/Google.Chrome.Canary.yaml index ff991c9297298..e785f2c45c984 100644 --- a/manifests/g/Google/Chrome/EXE/131.0.6778.265/Google.Chrome.EXE.yaml +++ b/manifests/g/Google/Chrome/Canary/145.0.7601.0/Google.Chrome.Canary.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: Google.Chrome.EXE -PackageVersion: 131.0.6778.265 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Google.Chrome.Canary +PackageVersion: 145.0.7601.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Dev/EXE/133.0.6876.4/Google.Chrome.Dev.EXE.installer.yaml b/manifests/g/Google/Chrome/Dev/EXE/133.0.6876.4/Google.Chrome.Dev.EXE.installer.yaml deleted file mode 100644 index 28246337e6b69..0000000000000 --- a/manifests/g/Google/Chrome/Dev/EXE/133.0.6876.4/Google.Chrome.Dev.EXE.installer.yaml +++ /dev/null @@ -1,189 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: Google.Chrome.Dev.EXE -PackageVersion: 133.0.6876.4 -InstallerType: exe -InstallModes: -- silent -InstallerSwitches: - Log: --verbose-logging --log-file="" -UpgradeBehavior: install -ProductCode: Google Chrome Dev -Installers: -- Architecture: x86 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/aduh66apybe6rmrkjqy7kkn7dbza_133.0.6876.4/133.0.6876.4_chrome_installer.exe - InstallerSha256: 0FA5D5B5423292D7E5E6B469819F9B0B6E704111D277F44EEBB8889754F30673 - InstallerSwitches: - Custom: --chrome-dev --do-not-launch-chrome - ExpectedReturnCodes: - - InstallerReturnCode: 3 - ReturnResponse: alreadyInstalled - - InstallerReturnCode: 4 - ReturnResponse: downgrade - - InstallerReturnCode: 22 - ReturnResponse: cancelledByUser - - InstallerReturnCode: 60 - ReturnResponse: installInProgress - Protocols: - - http - - https - - mailto - - tel - FileExtensions: - - htm - - html - - pdf - - shtml - - svg - - webp - - xht - - xhtml -- Architecture: x86 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/aduh66apybe6rmrkjqy7kkn7dbza_133.0.6876.4/133.0.6876.4_chrome_installer.exe - InstallerSha256: 0FA5D5B5423292D7E5E6B469819F9B0B6E704111D277F44EEBB8889754F30673 - InstallerSwitches: - Custom: --chrome-dev --do-not-launch-chrome --system-level - ExpectedReturnCodes: - - InstallerReturnCode: 3 - ReturnResponse: alreadyInstalled - - InstallerReturnCode: 4 - ReturnResponse: downgrade - - InstallerReturnCode: 22 - ReturnResponse: cancelledByUser - - InstallerReturnCode: 60 - ReturnResponse: installInProgress - Protocols: - - http - - https - - mailto - - tel - FileExtensions: - - htm - - html - - pdf - - shtml - - svg - - webp - - xht - - xhtml -- Architecture: x64 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/aye3j42fsjlmpfdumepsdtlg6q_133.0.6876.4/133.0.6876.4_chrome_installer.exe - InstallerSha256: 84E7C2A8496DCFF37AA5F7C0C84A936197FD8C1DBA565D377EC71CE05633A69C - InstallerSwitches: - Custom: --chrome-dev --do-not-launch-chrome - ExpectedReturnCodes: - - InstallerReturnCode: 3 - ReturnResponse: alreadyInstalled - - InstallerReturnCode: 4 - ReturnResponse: downgrade - - InstallerReturnCode: 22 - ReturnResponse: cancelledByUser - - InstallerReturnCode: 60 - ReturnResponse: installInProgress - Protocols: - - http - - https - - mailto - - tel - FileExtensions: - - htm - - html - - pdf - - shtml - - svg - - webp - - xht - - xhtml -- Architecture: x64 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/aye3j42fsjlmpfdumepsdtlg6q_133.0.6876.4/133.0.6876.4_chrome_installer.exe - InstallerSha256: 84E7C2A8496DCFF37AA5F7C0C84A936197FD8C1DBA565D377EC71CE05633A69C - InstallerSwitches: - Custom: --chrome-dev --do-not-launch-chrome --system-level - ExpectedReturnCodes: - - InstallerReturnCode: 3 - ReturnResponse: alreadyInstalled - - InstallerReturnCode: 4 - ReturnResponse: downgrade - - InstallerReturnCode: 22 - ReturnResponse: cancelledByUser - - InstallerReturnCode: 60 - ReturnResponse: installInProgress - Protocols: - - http - - https - - mailto - - tel - FileExtensions: - - htm - - html - - pdf - - shtml - - svg - - webp - - xht - - xhtml -- Architecture: arm64 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/ekdkjbfd5uvssxndh2aikjorye_133.0.6876.4/133.0.6876.4_chrome_installer.exe - InstallerSha256: 695F5E8B01213645193D68B2963EFD3C03D925D0876873D5BB090FB64A34879F - InstallerSwitches: - Custom: --chrome-dev --do-not-launch-chrome - ExpectedReturnCodes: - - InstallerReturnCode: 3 - ReturnResponse: alreadyInstalled - - InstallerReturnCode: 4 - ReturnResponse: downgrade - - InstallerReturnCode: 22 - ReturnResponse: cancelledByUser - - InstallerReturnCode: 60 - ReturnResponse: installInProgress - Protocols: - - http - - https - - mailto - - tel - FileExtensions: - - htm - - html - - pdf - - shtml - - svg - - webp - - xht - - xhtml -- Architecture: arm64 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/ekdkjbfd5uvssxndh2aikjorye_133.0.6876.4/133.0.6876.4_chrome_installer.exe - InstallerSha256: 695F5E8B01213645193D68B2963EFD3C03D925D0876873D5BB090FB64A34879F - InstallerSwitches: - Custom: --chrome-dev --do-not-launch-chrome --system-level - ExpectedReturnCodes: - - InstallerReturnCode: 3 - ReturnResponse: alreadyInstalled - - InstallerReturnCode: 4 - ReturnResponse: downgrade - - InstallerReturnCode: 22 - ReturnResponse: cancelledByUser - - InstallerReturnCode: 60 - ReturnResponse: installInProgress - Protocols: - - http - - https - - mailto - - tel - FileExtensions: - - htm - - html - - pdf - - shtml - - svg - - webp - - xht - - xhtml -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/g/Google/Chrome/Dev/EXE/133.0.6876.4/Google.Chrome.Dev.EXE.locale.en-US.yaml b/manifests/g/Google/Chrome/Dev/EXE/133.0.6876.4/Google.Chrome.Dev.EXE.locale.en-US.yaml deleted file mode 100644 index cd7045e9aaf2e..0000000000000 --- a/manifests/g/Google/Chrome/Dev/EXE/133.0.6876.4/Google.Chrome.Dev.EXE.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: Google.Chrome.Dev.EXE -PackageVersion: 133.0.6876.4 -PackageLocale: en-US -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/ -PrivacyUrl: https://policies.google.com/privacy -Author: Google LLC -PackageName: Google Chrome Dev (EXE) -PackageUrl: https://www.google.com/chrome/dev -License: Freeware -LicenseUrl: https://www.google.com/chrome/terms -Copyright: Copyright 2024 Google LLC. All rights reserved. -ShortDescription: Google Chrome for developers -Description: Google Chrome for developers was built for the open web. Test cutting-edge web platform APIs and developer tools that are updated weekly. -Tags: -- browser -- chromium -- internet -- web -- webpage -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/g/Google/Chrome/Dev/EXE/133.0.6876.4/Google.Chrome.Dev.EXE.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Dev/EXE/133.0.6876.4/Google.Chrome.Dev.EXE.locale.nb-NO.yaml deleted file mode 100644 index c2a67dfcfe009..0000000000000 --- a/manifests/g/Google/Chrome/Dev/EXE/133.0.6876.4/Google.Chrome.Dev.EXE.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json - -PackageIdentifier: Google.Chrome.Dev.EXE -PackageVersion: 133.0.6876.4 -PackageLocale: nb-NO -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/?hl=no -PrivacyUrl: https://policies.google.com/privacy?hl=no -Author: Google LLC -PackageName: Google Chrome Dev (EXE) -PackageUrl: https://www.google.com/intl/no/chrome/dev -License: Gratis Programvare -LicenseUrl: https://www.google.com/intl/no/chrome/terms -Copyright: Copyright 2024 Google LLC. Med enerett. -ShortDescription: Google Chrome for utviklere -Description: Google Chrome for utviklere er laget for det åpne nettet. Test banebrytende nettplattform-API-er og utviklerverktøy som oppdateres ukentlig. -Tags: -- chromium -- nettleseren -ManifestType: locale -ManifestVersion: 1.9.0 diff --git a/manifests/g/Google/Chrome/Dev/EXE/133.0.6876.4/Google.Chrome.Dev.EXE.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Dev/EXE/133.0.6876.4/Google.Chrome.Dev.EXE.locale.zh-CN.yaml deleted file mode 100644 index 6240a249b2c2d..0000000000000 --- a/manifests/g/Google/Chrome/Dev/EXE/133.0.6876.4/Google.Chrome.Dev.EXE.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.9.0.schema.json - -PackageIdentifier: Google.Chrome.Dev.EXE -PackageVersion: 133.0.6876.4 -PackageLocale: zh-CN -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/?hl=zh-Hans -PrivacyUrl: https://policies.google.com/privacy?hl=zh-CN -Author: Google LLC -PackageName: Google Chrome 开发者版 (EXE) -PackageUrl: https://www.google.com/intl/zh-CN/chrome/dev -License: 免费软件 -LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms -Copyright: 版权所有 2024 Google LLC. 保留所有权利。 -ShortDescription: 开发者专用的 Google Chrome -Description: 开发者专用的 Google Chrome 专为开放式网络打造。测试先进的网络平台 API 和每周都会更新的开发者工具。 -Tags: -- chromium -- 互联网 -- 浏览器 -- 网页 -ManifestType: locale -ManifestVersion: 1.9.0 diff --git a/manifests/g/Google/Chrome/EXE/131.0.6778.265/Google.Chrome.EXE.installer.yaml b/manifests/g/Google/Chrome/EXE/131.0.6778.265/Google.Chrome.EXE.installer.yaml deleted file mode 100644 index 5b20eed5bb92c..0000000000000 --- a/manifests/g/Google/Chrome/EXE/131.0.6778.265/Google.Chrome.EXE.installer.yaml +++ /dev/null @@ -1,74 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: Google.Chrome.EXE -PackageVersion: 131.0.6778.265 -InstallerType: exe -InstallModes: -- silent -InstallerSwitches: - Log: --verbose-logging --log-file="" -ExpectedReturnCodes: -- InstallerReturnCode: 60 - ReturnResponse: installInProgress -- InstallerReturnCode: 22 - ReturnResponse: cancelledByUser -- InstallerReturnCode: 4 - ReturnResponse: downgrade -- InstallerReturnCode: 3 - ReturnResponse: alreadyInstalled -UpgradeBehavior: install -Protocols: -- http -- https -- mailto -- tel -FileExtensions: -- htm -- html -- pdf -- shtml -- svg -- webp -- xht -- xhtml -ProductCode: Google Chrome -Installers: -- Architecture: x86 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/mvdaw7rvjylxryyfntisse3cnu_131.0.6778.265/131.0.6778.265_chrome_installer.exe - InstallerSha256: EBBF80C72544D4152688093ED5437B27728D8F2657559474E2F5EF21ABC6A3A1 - InstallerSwitches: - Custom: --do-not-launch-chrome -- Architecture: x86 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/mvdaw7rvjylxryyfntisse3cnu_131.0.6778.265/131.0.6778.265_chrome_installer.exe - InstallerSha256: EBBF80C72544D4152688093ED5437B27728D8F2657559474E2F5EF21ABC6A3A1 - InstallerSwitches: - Custom: --do-not-launch-chrome --system-level -- Architecture: x64 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/acqsprlbw3zm3i5cnpla7vn2oy7q_131.0.6778.265/131.0.6778.265_chrome_installer.exe - InstallerSha256: BF5436261A44CC7EC66FBF36741A055E377230E38E27027540B9D3D206D9F3B7 - InstallerSwitches: - Custom: --do-not-launch-chrome -- Architecture: x64 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/acqsprlbw3zm3i5cnpla7vn2oy7q_131.0.6778.265/131.0.6778.265_chrome_installer.exe - InstallerSha256: BF5436261A44CC7EC66FBF36741A055E377230E38E27027540B9D3D206D9F3B7 - InstallerSwitches: - Custom: --do-not-launch-chrome --system-level -- Architecture: arm64 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/kgr6ifg2fab4ggnsf7g2sfeute_131.0.6778.265/131.0.6778.265_chrome_installer.exe - InstallerSha256: D4B29CD2E1204D4257A5CCB4A1C8F50B94DE34CC2D922C01F8517C675747B21F - InstallerSwitches: - Custom: --do-not-launch-chrome -- Architecture: arm64 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/kgr6ifg2fab4ggnsf7g2sfeute_131.0.6778.265/131.0.6778.265_chrome_installer.exe - InstallerSha256: D4B29CD2E1204D4257A5CCB4A1C8F50B94DE34CC2D922C01F8517C675747B21F - InstallerSwitches: - Custom: --do-not-launch-chrome --system-level -ManifestType: installer -ManifestVersion: 1.9.0 diff --git a/manifests/g/Google/Chrome/EXE/131.0.6778.265/Google.Chrome.EXE.locale.en-US.yaml b/manifests/g/Google/Chrome/EXE/131.0.6778.265/Google.Chrome.EXE.locale.en-US.yaml deleted file mode 100644 index bd6af3de5d2d7..0000000000000 --- a/manifests/g/Google/Chrome/EXE/131.0.6778.265/Google.Chrome.EXE.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: Google.Chrome.EXE -PackageVersion: 131.0.6778.265 -PackageLocale: en-US -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/ -PrivacyUrl: https://policies.google.com/privacy -Author: Google LLC -PackageName: Google Chrome (EXE) -PackageUrl: https://www.google.com/chrome/ -License: Freeware -LicenseUrl: https://www.google.com/chrome/terms -Copyright: Copyright 2024 Google LLC. All rights reserved. -ShortDescription: The browser built by Google -Description: A more simple, secure, and faster web browser than ever, with Google’s smarts built-in. -Tags: -- browser -- chromium -- internet -- web -- webpage -ManifestType: defaultLocale -ManifestVersion: 1.9.0 diff --git a/manifests/g/Gravitational/TeleportConnect/18.6.2/Gravitational.TeleportConnect.installer.yaml b/manifests/g/Gravitational/TeleportConnect/18.6.2/Gravitational.TeleportConnect.installer.yaml new file mode 100644 index 0000000000000..64b74db97b3f8 --- /dev/null +++ b/manifests/g/Gravitational/TeleportConnect/18.6.2/Gravitational.TeleportConnect.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Gravitational.TeleportConnect +PackageVersion: 18.6.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- teleport +ProductCode: 22539266-67e8-54a3-83b9-dfdca7b33ee1 +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.teleport.dev/Teleport%20Connect%20Setup-18.6.2.exe + InstallerSha256: 8D4DC2F821BEE29D63B50C06CCDC3243FDF12618AD1AEA626A8EF48CA4CD2DC8 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gravitational/TeleportConnect/18.6.2/Gravitational.TeleportConnect.locale.en-US.yaml b/manifests/g/Gravitational/TeleportConnect/18.6.2/Gravitational.TeleportConnect.locale.en-US.yaml new file mode 100644 index 0000000000000..62c1082f35569 --- /dev/null +++ b/manifests/g/Gravitational/TeleportConnect/18.6.2/Gravitational.TeleportConnect.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Gravitational.TeleportConnect +PackageVersion: 18.6.2 +PackageLocale: en-US +Publisher: Gravitational, Inc. +Author: Gravitational, Inc. +PackageName: Teleport Connect +License: Proprietary +Copyright: © 2025 Gravitational Inc.; all rights reserved. +ShortDescription: Teleport Connect provides easy and secure access to SSH servers, databases, applications, Windows desktops, and Kubernetes clusters. +ReleaseNotes: Teleport 18.6.2 +PurchaseUrl: https://goteleport.com/pricing/ +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://goteleport.com/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Gravitational/TeleportConnect/18.6.2/Gravitational.TeleportConnect.locale.zh-CN.yaml b/manifests/g/Gravitational/TeleportConnect/18.6.2/Gravitational.TeleportConnect.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7c2473eace1c7 --- /dev/null +++ b/manifests/g/Gravitational/TeleportConnect/18.6.2/Gravitational.TeleportConnect.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.10.0.schema.json + +PackageIdentifier: Gravitational.TeleportConnect +PackageVersion: 18.6.2 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: Teleport Connect 提供简便且安全的访问方式,可连接 SSH 服务器、数据库、应用程序、Windows 桌面及 Kubernetes 集群。 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://goteleport.com/docs/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Dev/EXE/133.0.6876.4/Google.Chrome.Dev.EXE.yaml b/manifests/g/Gravitational/TeleportConnect/18.6.2/Gravitational.TeleportConnect.yaml similarity index 54% rename from manifests/g/Google/Chrome/Dev/EXE/133.0.6876.4/Google.Chrome.Dev.EXE.yaml rename to manifests/g/Gravitational/TeleportConnect/18.6.2/Gravitational.TeleportConnect.yaml index 64fbae92fdee3..d5e0a44057826 100644 --- a/manifests/g/Google/Chrome/Dev/EXE/133.0.6876.4/Google.Chrome.Dev.EXE.yaml +++ b/manifests/g/Gravitational/TeleportConnect/18.6.2/Gravitational.TeleportConnect.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: Google.Chrome.Dev.EXE -PackageVersion: 133.0.6876.4 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Gravitational.TeleportConnect +PackageVersion: 18.6.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/CLion/2025.3/JetBrains.CLion.installer.yaml b/manifests/j/JetBrains/CLion/2025.3/JetBrains.CLion.installer.yaml new file mode 100644 index 0000000000000..a5dd85f392e05 --- /dev/null +++ b/manifests/j/JetBrains/CLion/2025.3/JetBrains.CLion.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: JetBrains.CLion +PackageVersion: "2025.3" +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +FileExtensions: +- c +- cpp +- cxx +- h +- hpp +- hxx +- ipr +ProductCode: CLion 2025.3 +ReleaseDate: 2025-12-08 +AppsAndFeaturesEntries: +- DisplayVersion: 253.28294.335 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.jetbrains.com/cpp/CLion-2025.3.exe + InstallerSha256: E133A267FD485669CFF38395DFFAB273743B318254BB23D9AC2E17950F819E87 +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/cpp/CLion-2025.3.exe + InstallerSha256: E133A267FD485669CFF38395DFFAB273743B318254BB23D9AC2E17950F819E87 + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://download.jetbrains.com/cpp/CLion-2025.3-aarch64.exe + InstallerSha256: 0B65C5050DC82A55C920CC5E1AA3001983D627013713A426F386C513D1050C8C +- Architecture: arm64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/cpp/CLion-2025.3-aarch64.exe + InstallerSha256: 0B65C5050DC82A55C920CC5E1AA3001983D627013713A426F386C513D1050C8C + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/CLion/2025.3/JetBrains.CLion.locale.en-US.yaml b/manifests/j/JetBrains/CLion/2025.3/JetBrains.CLion.locale.en-US.yaml new file mode 100644 index 0000000000000..f19b9d68b454f --- /dev/null +++ b/manifests/j/JetBrains/CLion/2025.3/JetBrains.CLion.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: JetBrains.CLion +PackageVersion: "2025.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: CLion +PackageUrl: https://www.jetbrains.com/clion/ +License: Proprietary +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2025 JetBrains s.r.o. +ShortDescription: A cross-platform IDE for C and C++ +Description: A powerful IDE from JetBrains helps you develop in C and C++ on Linux, macOS and Windows. +Moniker: clion +Tags: +- c +- c++ +- code +- coding +- cpp +- develop +- development +- ide +- programming +ReleaseNotes: |- + CLion 2025.3 is now available, offering faster performance, deeper insight into compile-time evaluations, expanded debugger options, a new default look, and more. Here are the highlights: + - You can now write code faster and work more efficiently thanks to our new C and C++ language engine, CLion Nova, which we’ve made the default in this release. With this engine enabled, the IDE is up to four times faster at code highlighting, error detection, code completion, and refactoring compared to the legacy CLion Classic engine. + - The Constexpr Debugger is a one-of-a-kind tool that provides insights into compile-time evaluations, particularly for constexpr and consteval code – something that no other IDE currently offers. + - CLion now supports the Debug Adapter Protocol (DAP), bringing the IDE closer to being debugger-agnostic. With DAP technology, CLion can communicate with a range of additional debuggers. Besides the bundled LLDB and GDB, you can now use third-party implementations that support this protocol. + - The Islands theme is now the default look in CLion. Designed to help you stay focused and code with ease, it features instantly recognizable tabs, enhanced in-editor contrast, distinct separation between work areas, and rounded corners. + - We’ve improved the user experience for embedded system developers who work with the Serial Port Monitor, PlatformIO, and Rust plugins. These plugins are now integrated into the IDE, so you no longer need to install them manually. + - CLion now supports the Visual Studio 2026 toolchain for Windows – giving you access to the new MSVC build tools v14.50, including v19.50 of the C++ compiler. + - We’ve streamlined the project configuration process for developers working with the nRF Connect SDK. Now, CLion accepts sysbuild as the default build configuration for these projects, allowing you to build, run, and debug them without needing to configure additional West settings. + - With the CLion Nova engine, you can now explore and adopt C++26 features like pack indexing, expansion statements, and contracts, plus get clearer diagnostics when constexpr evaluations fail. + - You can now choose the right AI agent for each task, Junie or Clause Agent, connect your own API keys and models, and get full transparency into your usage and costs. + Read our blog post to learn more about all the key updates and improvements. + Please share your feedback and report any issues to our issue tracker. +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/CPP-A-230654449 +PurchaseUrl: https://www.jetbrains.com/clion/buy/ +Documentations: +- DocumentLabel: Learn CLion + DocumentUrl: https://www.jetbrains.com/clion/learn/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/CLion/2025.3/JetBrains.CLion.locale.zh-CN.yaml b/manifests/j/JetBrains/CLion/2025.3/JetBrains.CLion.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6310c549ef387 --- /dev/null +++ b/manifests/j/JetBrains/CLion/2025.3/JetBrains.CLion.locale.zh-CN.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: JetBrains.CLion +PackageVersion: "2025.3" +PackageLocale: zh-CN +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PackageUrl: https://www.jetbrains.com/zh-cn/clion/ +License: 专有软件 +ShortDescription: C 和 C++ 跨平台 IDE +Description: JetBrains 出品的强大 IDE 帮助您在 Linux、macOS 和 Windows 上进行 C 和 C++ 开发。 +Tags: +- c +- c++ +- cpp +- 代码 +- 开发 +- 编程 +- 集成开发环境 +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/CPP-A-230654449 +PurchaseUrl: https://www.jetbrains.com/zh-cn/clion/buy/ +Documentations: +- DocumentLabel: 学习 CLion + DocumentUrl: https://www.jetbrains.com/zh-cn/clion/learn/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/CLion/2025.3/JetBrains.CLion.yaml b/manifests/j/JetBrains/CLion/2025.3/JetBrains.CLion.yaml new file mode 100644 index 0000000000000..e71b3afa01578 --- /dev/null +++ b/manifests/j/JetBrains/CLion/2025.3/JetBrains.CLion.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: JetBrains.CLion +PackageVersion: "2025.3" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/GoLand/2025.3/JetBrains.GoLand.installer.yaml b/manifests/j/JetBrains/GoLand/2025.3/JetBrains.GoLand.installer.yaml new file mode 100644 index 0000000000000..1d22ae45385fd --- /dev/null +++ b/manifests/j/JetBrains/GoLand/2025.3/JetBrains.GoLand.installer.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: JetBrains.GoLand +PackageVersion: "2025.3" +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +FileExtensions: +- go +- ipr +ProductCode: GoLand 2025.3 +ReleaseDate: 2025-12-08 +AppsAndFeaturesEntries: +- DisplayVersion: 253.28294.337 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.jetbrains.com/go/goland-2025.3.exe + InstallerSha256: 31857A15BE18FD7561132D75DB4BF746937BC73A61A8CFCAADB623E41CA266A0 +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/go/goland-2025.3.exe + InstallerSha256: 31857A15BE18FD7561132D75DB4BF746937BC73A61A8CFCAADB623E41CA266A0 + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://download.jetbrains.com/go/goland-2025.3-aarch64.exe + InstallerSha256: 48F26B3D2610A8218D3EC70FC7D0D6E9B2CA1900EB440404F7A00E0605CA8237 +- Architecture: arm64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/go/goland-2025.3-aarch64.exe + InstallerSha256: 48F26B3D2610A8218D3EC70FC7D0D6E9B2CA1900EB440404F7A00E0605CA8237 + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/GoLand/2025.3/JetBrains.GoLand.locale.en-US.yaml b/manifests/j/JetBrains/GoLand/2025.3/JetBrains.GoLand.locale.en-US.yaml new file mode 100644 index 0000000000000..3811e11f9c6bd --- /dev/null +++ b/manifests/j/JetBrains/GoLand/2025.3/JetBrains.GoLand.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.10.0.schema.json + +PackageIdentifier: JetBrains.GoLand +PackageVersion: "2025.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: GoLand +PackageUrl: https://www.jetbrains.com/go/ +License: Proprietary +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2025 JetBrains s.r.o. +ShortDescription: The complete IDE crafted for Gophers +Moniker: goland +Tags: +- code +- coding +- develop +- development +- go +- golang +- ide +- programming +ReleaseNotes: |- + GoLand 2025.3 is now available! + This release brings major upgrades that help you write cleaner and more efficient code. You will find on-the-fly resource leak detection, bundled Terraform support, smoother single-file editing, updates to golangci-lint, performance improvements across the IDE, and more. + The most prominent highlights of this release are: + - Early resource leak detection with a new local inspection + - Multi-agent AI experience with Claude Agent and Junie + - Terraform plugin bundled and enabled by default + - Kubernetes workflow improvements for smoother deployments + - Single-file editing with no project setup required + - Support for golangci-lint fmt and improved integration quality + - The Islands theme as the new default UI + - Platform-level performance and stability improvements + - New redundant 'else' inspection for cleaner control flow + - Folding support for directive blocks in go.mod + - In-IDE AI quota tracking and the upcoming Bring Your Own Key support + For a complete rundown of the new features, visit our What's New page. +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/GO-A-231736023 +PurchaseUrl: https://www.jetbrains.com/go/buy/ +Documentations: +- DocumentLabel: Quick Start + DocumentUrl: https://www.jetbrains.com/go/learn/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/GoLand/2025.3/JetBrains.GoLand.locale.zh-CN.yaml b/manifests/j/JetBrains/GoLand/2025.3/JetBrains.GoLand.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a67a520d41c96 --- /dev/null +++ b/manifests/j/JetBrains/GoLand/2025.3/JetBrains.GoLand.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: JetBrains.GoLand +PackageVersion: "2025.3" +PackageLocale: zh-CN +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PackageUrl: https://www.jetbrains.com/zh-cn/go/ +License: 专有软件 +ShortDescription: 为 Go 开发者打造的完整 IDE +Tags: +- go +- golang +- 代码 +- 开发 +- 编程 +- 集成开发环境 +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/GO-A-231736023 +PurchaseUrl: https://www.jetbrains.com/zh-cn/go/buy/ +Documentations: +- DocumentLabel: 快速入门 + DocumentUrl: https://www.jetbrains.com/zh-cn/go/learn/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/GoLand/2025.3/JetBrains.GoLand.yaml b/manifests/j/JetBrains/GoLand/2025.3/JetBrains.GoLand.yaml new file mode 100644 index 0000000000000..62f4bfba3a0c6 --- /dev/null +++ b/manifests/j/JetBrains/GoLand/2025.3/JetBrains.GoLand.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: JetBrains.GoLand +PackageVersion: "2025.3" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/joadoumie/NBACommandPaletteExtension/0.0.1.0/joadoumie.NBACommandPaletteExtension.installer.yaml b/manifests/j/joadoumie/NBACommandPaletteExtension/0.0.1.0/joadoumie.NBACommandPaletteExtension.installer.yaml new file mode 100644 index 0000000000000..a9d51c3528c35 --- /dev/null +++ b/manifests/j/joadoumie/NBACommandPaletteExtension/0.0.1.0/joadoumie.NBACommandPaletteExtension.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: joadoumie.NBACommandPaletteExtension +PackageVersion: 0.0.1.0 +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/joadoumie/NBACmdPalExtension/releases/download/NBAExtension-v0.0.1.0/NBAExtension-Setup-0.0.1.0-x64.exe + InstallerSha256: 3C64FD785DE2C8801464DA11CBEE91AC95B4CCE01D7AAB863328C7791744BE75 +- Architecture: arm64 + InstallerUrl: https://github.com/joadoumie/NBACmdPalExtension/releases/download/NBAExtension-v0.0.1.0/NBAExtension-Setup-0.0.1.0-arm64.exe + InstallerSha256: E2754664A4927BF4527621ABEE2ACFFE545CA8BB2C4DE0CE31446E264F92CF20 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/joadoumie/NBACommandPaletteExtension/0.0.1.0/joadoumie.NBACommandPaletteExtension.locale.en-US.yaml b/manifests/j/joadoumie/NBACommandPaletteExtension/0.0.1.0/joadoumie.NBACommandPaletteExtension.locale.en-US.yaml new file mode 100644 index 0000000000000..702161488091c --- /dev/null +++ b/manifests/j/joadoumie/NBACommandPaletteExtension/0.0.1.0/joadoumie.NBACommandPaletteExtension.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: joadoumie.NBACommandPaletteExtension +PackageVersion: 0.0.1.0 +PackageLocale: en-US +Publisher: joadoumie +PublisherUrl: https://github.com/joadoumie +PublisherSupportUrl: https://github.com/joadoumie/NBACmdPalExtension +PackageName: NBA Command Palette Extension +License: MIT License +ShortDescription: All things NBA for the Windows Command Palette +ManifestType: defaultLocale +ManifestVersion: 1.10.0 +Tags: +- windows-commandpalette-extension +ReleaseNotesUrl: https://github.com/joadoumie/NBACmdPalExtension/releases/tag/NBAExtension-v0.0.1.0 + diff --git a/manifests/j/joadoumie/NBACommandPaletteExtension/0.0.1.0/joadoumie.NBACommandPaletteExtension.yaml b/manifests/j/joadoumie/NBACommandPaletteExtension/0.0.1.0/joadoumie.NBACommandPaletteExtension.yaml new file mode 100644 index 0000000000000..b63e40512e84d --- /dev/null +++ b/manifests/j/joadoumie/NBACommandPaletteExtension/0.0.1.0/joadoumie.NBACommandPaletteExtension.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: joadoumie.NBACommandPaletteExtension +PackageVersion: 0.0.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/k/KDE/KAIChat/0.5/KDE.KAIChat.installer.yaml b/manifests/k/KDE/KAIChat/0.5/KDE.KAIChat.installer.yaml new file mode 100644 index 0000000000000..b3c673a13a2a0 --- /dev/null +++ b/manifests/k/KDE/KAIChat/0.5/KDE.KAIChat.installer.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: KDE.KAIChat +PackageVersion: "0.5" +InstallerType: nullsoft +Installers: +- Architecture: x64 + InstallerUrl: https://cdn.kde.org/ci-builds/utilities/kaichat/0.5/windows/kaichat-0.5-575-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 6002CB03CAB16494D4CDE3F6493EB7A63AC106F4B0AD25CC71DC318FD24E31BD +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/k/KDE/KAIChat/0.5/KDE.KAIChat.locale.en-US.yaml b/manifests/k/KDE/KAIChat/0.5/KDE.KAIChat.locale.en-US.yaml new file mode 100644 index 0000000000000..864862f3a6c2c --- /dev/null +++ b/manifests/k/KDE/KAIChat/0.5/KDE.KAIChat.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: KDE.KAIChat +PackageVersion: "0.5" +PackageLocale: en-US +Publisher: KDE +PackageName: KAIChat +License: GPL-2.0+ +ShortDescription: Apps which allows to chat with AI (local ollama, network service). +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/k/KDE/KAIChat/0.5/KDE.KAIChat.yaml b/manifests/k/KDE/KAIChat/0.5/KDE.KAIChat.yaml new file mode 100644 index 0000000000000..f3202cefbebfd --- /dev/null +++ b/manifests/k/KDE/KAIChat/0.5/KDE.KAIChat.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: KDE.KAIChat +PackageVersion: "0.5" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/l/LutzRoeder/Netron/8.8.0/LutzRoeder.Netron.installer.yaml b/manifests/l/LutzRoeder/Netron/8.8.0/LutzRoeder.Netron.installer.yaml new file mode 100644 index 0000000000000..dc3aedc035a4a --- /dev/null +++ b/manifests/l/LutzRoeder/Netron/8.8.0/LutzRoeder.Netron.installer.yaml @@ -0,0 +1,94 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json +PackageIdentifier: LutzRoeder.Netron +PackageVersion: 8.8.0 +Platform: +- Windows.Desktop +InstallModes: +- silent +- silentWithProgress +Installers: +- Architecture: x86 + Scope: user + InstallerType: nullsoft + InstallerUrl: https://github.com/lutzroeder/netron/releases/download/v8.8.0/Netron-Setup-8.8.0.exe + InstallerSha256: 82AE91304943A44E1BD187BA2FA19EC9D316A46282826D473B2E07212484F57C + InstallerLocale: en-US + InstallerSwitches: + Custom: /NORESTART + UpgradeBehavior: install +- Architecture: arm64 + Scope: user + InstallerType: nullsoft + InstallerUrl: https://github.com/lutzroeder/netron/releases/download/v8.8.0/Netron-Setup-8.8.0.exe + InstallerSha256: 82AE91304943A44E1BD187BA2FA19EC9D316A46282826D473B2E07212484F57C + InstallerLocale: en-US + InstallerSwitches: + Custom: /NORESTART + UpgradeBehavior: install +FileExtensions: +- armnn +- caffemodel +- circle +- ckpt +- cmf +- dlc +- dnn +- gguf +- h5 +- hd5 +- hdf5 +- hn +- kann +- keras +- kgraph +- kmodel +- lite +- mar +- maxviz +- meta +- mge +- mlir +- mlirbc +- mlmodel +- mlnet +- mlpackage +- mnn +- model +- nb +- ngf +- nn +- nnp +- npy +- npz +- om +- onnx +- ort +- paddle +- param +- pb +- pbtxt +- pdiparams +- pdmodel +- pdopt +- pdparams +- pickle +- pkl +- prototxt +- pt +- pt2 +- pte +- pth +- ptl +- rknn +- safetensors +- t7 +- tfl +- tflite +- tm +- tmfile +- tnnproto +- torchscript +- uff +- xmodel +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/l/LutzRoeder/Netron/8.8.0/LutzRoeder.Netron.locale.en-US.yaml b/manifests/l/LutzRoeder/Netron/8.8.0/LutzRoeder.Netron.locale.en-US.yaml new file mode 100644 index 0000000000000..82cb730ac7c11 --- /dev/null +++ b/manifests/l/LutzRoeder/Netron/8.8.0/LutzRoeder.Netron.locale.en-US.yaml @@ -0,0 +1,22 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json +PackageIdentifier: LutzRoeder.Netron +PackageVersion: 8.8.0 +PackageName: Netron +PackageLocale: en-US +PackageUrl: https://github.com/lutzroeder/netron +Publisher: Lutz Roeder +PublisherUrl: https://github.com/lutzroeder/netron +PublisherSupportUrl: https://github.com/lutzroeder/netron/issues +Author: Lutz Roeder +License: MIT +Copyright: Copyright (c) Lutz Roeder +CopyrightUrl: https://github.com/lutzroeder/netron/blob/main/LICENSE +ShortDescription: Visualizer for neural network, deep learning, and machine learning models +Description: Visualizer for neural network, deep learning, and machine learning models +Moniker: netron +Tags: +- machine-learning +- deep-learning +- neural-network +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/l/LutzRoeder/Netron/8.8.0/LutzRoeder.Netron.yaml b/manifests/l/LutzRoeder/Netron/8.8.0/LutzRoeder.Netron.yaml new file mode 100644 index 0000000000000..d37f9a72e68a6 --- /dev/null +++ b/manifests/l/LutzRoeder/Netron/8.8.0/LutzRoeder.Netron.yaml @@ -0,0 +1,6 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json +PackageIdentifier: LutzRoeder.Netron +PackageVersion: 8.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/t/TeamSophia/SophiaScript/7.0.1/TeamSophia.SophiaScript.installer.yaml b/manifests/t/TeamSophia/SophiaScript/7.0.1/TeamSophia.SophiaScript.installer.yaml new file mode 100644 index 0000000000000..41e3ec0189e02 --- /dev/null +++ b/manifests/t/TeamSophia/SophiaScript/7.0.1/TeamSophia.SophiaScript.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: TeamSophia.SophiaScript +PackageVersion: 7.0.1 +InstallerType: portable +Commands: +- sophiascript +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/farag2/Sophia-Script-for-Windows/releases/download/7.0.1/Sophia.Script.for.Windows.11.v7.0.1_WinGet.exe + InstallerSha256: 1A9AB7F33958E5F4C76DF6E933B253358CC36EBBE9B6DC4BB81C00806D669046 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2025-12-26 diff --git a/manifests/t/TeamSophia/SophiaScript/7.0.1/TeamSophia.SophiaScript.locale.en-US.yaml b/manifests/t/TeamSophia/SophiaScript/7.0.1/TeamSophia.SophiaScript.locale.en-US.yaml new file mode 100644 index 0000000000000..3ab9b5f917edb --- /dev/null +++ b/manifests/t/TeamSophia/SophiaScript/7.0.1/TeamSophia.SophiaScript.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: TeamSophia.SophiaScript +PackageVersion: 7.0.1 +PackageLocale: en-US +Publisher: Team Sophia +PublisherUrl: https://github.com/farag2/Sophia-Script-for-Windows +PublisherSupportUrl: https://t.me/sophia_chat +Author: Team Sophia +PackageName: Sophia Script for Windows +PackageUrl: https://github.com/farag2/Sophia-Script-for-Windows +License: MIT +LicenseUrl: https://github.com/farag2/Sophia-Script-for-Windows/blob/master/LICENSE +Copyright: Copyright (c) 2014—2026 Team Sophia +ShortDescription: The most powerful PowerShell module on GitHub for Windows 10 and Windows 11 fine-tuning and tweaking +Description: Sophia Script for Windows is the largest PowerShell module on GitHub for Windows 10 and Windows 11 fine-tuning and automating the routine tasks +Moniker: sophiascript +Tags: +- windows +- gui +- script +- powershell +- tweaks +- windows-10 +- sophia +- tweaker +- tweak +- debloat +- debloating +- windows-11 +- debloater +- windows-debloat +- sophia-script +ReleaseNotesUrl: https://github.com/farag2/Sophia-Script-for-Windows/blob/master/CHANGELOG.md +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/t/TeamSophia/SophiaScript/7.0.1/TeamSophia.SophiaScript.yaml b/manifests/t/TeamSophia/SophiaScript/7.0.1/TeamSophia.SophiaScript.yaml new file mode 100644 index 0000000000000..60140eab39163 --- /dev/null +++ b/manifests/t/TeamSophia/SophiaScript/7.0.1/TeamSophia.SophiaScript.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: TeamSophia.SophiaScript +PackageVersion: 7.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/t/TobiasHammer/HTerm/0.8.9/TobiasHammer.HTerm.installer.yaml b/manifests/t/TobiasHammer/HTerm/0.8.9/TobiasHammer.HTerm.installer.yaml new file mode 100644 index 0000000000000..69cc927f129af --- /dev/null +++ b/manifests/t/TobiasHammer/HTerm/0.8.9/TobiasHammer.HTerm.installer.yaml @@ -0,0 +1,22 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: TobiasHammer.HTerm +PackageVersion: 0.8.9 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: hterm.exe +InstallModes: +- silent +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2023-01-07 +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +Installers: +- Architecture: x86 + InstallerUrl: https://www.der-hammer.info/terminal/hterm-windows.zip + InstallerSha256: 33FBAF228A5BEE7DB04913B0F5D14B22126C3E7BA965D82CA0F2958DD0DB56E0 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/t/TobiasHammer/HTerm/0.8.9/TobiasHammer.HTerm.locale.en-US.yaml b/manifests/t/TobiasHammer/HTerm/0.8.9/TobiasHammer.HTerm.locale.en-US.yaml new file mode 100644 index 0000000000000..a960fd20ed0a0 --- /dev/null +++ b/manifests/t/TobiasHammer/HTerm/0.8.9/TobiasHammer.HTerm.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: TobiasHammer.HTerm +PackageVersion: 0.8.9 +PackageLocale: en-US +Publisher: Tobias Hammer +PublisherUrl: https://www.der-hammer.info/pages/about.html +Author: Tobias Hammer +PackageName: HTerm +PackageUrl: https://www.der-hammer.info/pages/terminal.html +License: Proprietary (Terms of Use) +LicenseUrl: https://www.der-hammer.info/terminal/LICENSE.txt +Copyright: (c) 2023 Tobias Hammer +ShortDescription: > + HTerm is a terminal program for serial communication running on Windows and + Linux. +ReleaseNotes: |- + - Add font selection for receive and transmit data boxes in menu + "Options / Receive box font" and "Options / Transmit box font" + - Instead of selection of font size only + - Font applies to ruler and selection information + - Add menu entry "Options / Receive box source underline height" to adjust + thickness of source color underline when using combined transmitted and + received data view + - Better separator input in save output options + - Option to print data source in saved output + - [Win] Fix graphical artifacts when resizing controls on high dpi display + - [Win] Improve scaling quality on high dpi displays + - [Win] Use higher timer resolution for more accurate wait commands + - Fix crash when double clicking input control + - [Linux] Add comport search patterns to configuration file (not customizable + via UI yet) + - [Win] Repair Windows XP compatibility (again) + - Update to wxWidgets 3.2.1 +ReleaseNotesUrl: https://www.der-hammer.info/terminal/CHANGELOG.txt +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/t/TobiasHammer/HTerm/0.8.9/TobiasHammer.HTerm.yaml b/manifests/t/TobiasHammer/HTerm/0.8.9/TobiasHammer.HTerm.yaml new file mode 100644 index 0000000000000..f8a9b69d0dec2 --- /dev/null +++ b/manifests/t/TobiasHammer/HTerm/0.8.9/TobiasHammer.HTerm.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: TobiasHammer.HTerm +PackageVersion: 0.8.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/v/vim/vim/nightly/9.1.2022/vim.vim.nightly.installer.yaml b/manifests/v/vim/vim/nightly/9.1.2022/vim.vim.nightly.installer.yaml new file mode 100644 index 0000000000000..a69ada494de32 --- /dev/null +++ b/manifests/v/vim/vim/nightly/9.1.2022/vim.vim.nightly.installer.yaml @@ -0,0 +1,36 @@ +# Created with WinGet Releaser using komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: vim.vim.nightly +PackageVersion: 9.1.2022 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Commands: +- diff +- gvim +- tee +- vim +- xxd +ProductCode: Vim 9.1 +ReleaseDate: 2025-12-26 +ElevationRequirement: elevationRequired +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/vim/vim-win32-installer/releases/download/v9.1.2022/gvim_9.1.2022_x86.exe + InstallerSha256: FD697E41C5BDCDE5BF9095661A8BE9FFA31CFE7ED142B126E1DECB00B0C81C21 + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\Vim' +- Architecture: x64 + InstallerUrl: https://github.com/vim/vim-win32-installer/releases/download/v9.1.2022/gvim_9.1.2022_x64.exe + InstallerSha256: E8253B98CAB2773E7B45864BA800D0659987397A22FE7D5C69882470EF8CA382 + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Vim' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/v/vim/vim/nightly/9.1.2022/vim.vim.nightly.locale.en-US.yaml b/manifests/v/vim/vim/nightly/9.1.2022/vim.vim.nightly.locale.en-US.yaml new file mode 100644 index 0000000000000..1713a188adaff --- /dev/null +++ b/manifests/v/vim/vim/nightly/9.1.2022/vim.vim.nightly.locale.en-US.yaml @@ -0,0 +1,91 @@ +# Created with WinGet Releaser using komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: vim.vim.nightly +PackageVersion: 9.1.2022 +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.1.2022 + 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: + - runtime(doc): remove some fixed items from todo.txt + - 9.1.2022: using C++ keyword class as member variable name + - runtime(netrw): Fix reading UNC paths on windows + - runtime(compiler): ignore 'Found' messages in ruff and ty compiler + - 9.1.2021: filetype: fluent files are not recognized + - runtime(termdebug): update v:shell_error condition test. + - 9.1.2020: tests: test_virtualedit.vim leaves swapfiles behind + - 9.1.2019: inconsistent cursor encoding past EOL with ve=all + - 9.1.2018: proto: ops.pro outdated + - runtime(osc52): A few minor fixes + - runtime(doc): add reference to searchcount() function + - runtime(doc): Improve :catch documentation + - runtime(make): Makefile highlighting breaks with ')' in string + - runtime(make): Move target greedy match after $() to avoid region matching overflow + - 9.1.2017: getregionpos() depends on 'linebreak' setting + - 9.1.2016: cindent wrong indentation after do-while loop + - 9.1.2015: blob2string() stopped after an empty line + - 9.1.2014: clipboard: clipboard register corrupted with clipboard provider + - 9.1.2013: tests: Test_terminal_shell_option fails with conpty + - 9.1.2012: Vim9: cannot initialize class member with protected var + - runtime(ftplugin): set different formatoptions for bpftrace + - 9.1.2011: crash when unreferencing gtk icon theme + - 9.1.2010: Missing out-of-memory checks in vim9class.c + - runtime(bpftrace): add base syntax plugin + - 9.1.2009: tests: "Xm4" test directory may not be deleted + - 9.1.2008: filetype: hylo files are not recognized + - translation(sr): Update Serbian message translation + - 9.1.2007: filetype: bpftrace hashbang lines are not recognized + Files: + 🔓 Unsigned Files: + - gvim_9.1.2022_x86.exe + 32-bit installer (If you don't know what to use, use this one) + - gvim_9.1.2022_x64.exe + 64-bit installer + - gvim_9.1.2022_arm64.exe + ARM 64-bit installer + - gvim_9.1.2022_x86.zip + 32-bit zip archive + - gvim_9.1.2022_x64.zip + 64-bit zip archive + - gvim_9.1.2022_arm64.zip + ARM 64-bit zip archive + - gvim_9.1.2022_x86_pdb.zip + pdb files for debugging the corresponding 32-bit executable + - gvim_9.1.2022_x64_pdb.zip + pdb files for debugging the corresponding 64-bit executable + Interface Information + - Strawberry Perl 5.32 + - LuaBinaries 5.4 + - Python 2.7 + - Python3 3.8 or later + - Racket 8.7 (BC) + - RubyInstaller 3.2 + - libsodium 1.0.19 + See the README for detail. +ReleaseNotesUrl: https://github.com/vim/vim-win32-installer/releases/tag/v9.1.2022 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/v/vim/vim/nightly/9.1.2022/vim.vim.nightly.yaml b/manifests/v/vim/vim/nightly/9.1.2022/vim.vim.nightly.yaml new file mode 100644 index 0000000000000..949e0e5f63413 --- /dev/null +++ b/manifests/v/vim/vim/nightly/9.1.2022/vim.vim.nightly.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: vim.vim.nightly +PackageVersion: 9.1.2022 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/w/WFCD/WFInfo/9.7.0/WFCD.WFInfo.installer.yaml b/manifests/w/WFCD/WFInfo/9.7.0/WFCD.WFInfo.installer.yaml new file mode 100644 index 0000000000000..a7ce61eff83fc --- /dev/null +++ b/manifests/w/WFCD/WFInfo/9.7.0/WFCD.WFInfo.installer.yaml @@ -0,0 +1,16 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: WFCD.WFInfo +PackageVersion: 9.7.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: WFInfo.exe +ReleaseDate: 2025-12-26 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/WFCD/WFinfo/releases/download/v9.7.0/WFInfo.zip + InstallerSha256: A26FA48B5D9BBFE9861E7173785AE7E45F887DFB66C161EF71D8BFDB17567B6D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/w/WFCD/WFInfo/9.7.0/WFCD.WFInfo.locale.en-US.yaml b/manifests/w/WFCD/WFInfo/9.7.0/WFCD.WFInfo.locale.en-US.yaml new file mode 100644 index 0000000000000..d35580b9b3364 --- /dev/null +++ b/manifests/w/WFCD/WFInfo/9.7.0/WFCD.WFInfo.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: WFCD.WFInfo +PackageVersion: 9.7.0 +PackageLocale: en-US +Publisher: Warframe Community Developers +PublisherUrl: https://github.com/WFCD +PublisherSupportUrl: https://github.com/WFCD/WFinfo/issues +PackageName: WFInfo +PackageUrl: https://github.com/WFCD/WFinfo +License: Apache-2.0 +LicenseUrl: https://github.com/WFCD/WFinfo/blob/HEAD/LICENSE.txt +ShortDescription: A fissure Companion App for Warframe +Tags: +- ducats +- fissure-rewards +- hacktoberfest +- platinum +- warframe +ReleaseNotes: |- + Feature release + - Add support for Vanguard relics + - Minor dependency updates +ReleaseNotesUrl: https://github.com/WFCD/WFinfo/releases/tag/v9.7.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/w/WFCD/WFInfo/9.7.0/WFCD.WFInfo.yaml b/manifests/w/WFCD/WFInfo/9.7.0/WFCD.WFInfo.yaml new file mode 100644 index 0000000000000..c11fda0516193 --- /dev/null +++ b/manifests/w/WFCD/WFInfo/9.7.0/WFCD.WFInfo.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: WFCD.WFInfo +PackageVersion: 9.7.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/x/xemu-project/xemu/0.8.125/xemu-project.xemu.installer.yaml b/manifests/x/xemu-project/xemu/0.8.125/xemu-project.xemu.installer.yaml new file mode 100644 index 0000000000000..a5705429276e7 --- /dev/null +++ b/manifests/x/xemu-project/xemu/0.8.125/xemu-project.xemu.installer.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: xemu-project.xemu +PackageVersion: 0.8.125 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: xemu.exe + PortableCommandAlias: xemu +ReleaseDate: 2025-12-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/xemu-project/xemu/releases/download/v0.8.125/xemu-win-x86_64-release.zip + InstallerSha256: 435DC12C49808FBEDC4DA85D9CDF3AA37F34D2EE3039AAAF32E663DBA65C6209 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/x/xemu-project/xemu/0.8.125/xemu-project.xemu.locale.en-US.yaml b/manifests/x/xemu-project/xemu/0.8.125/xemu-project.xemu.locale.en-US.yaml new file mode 100644 index 0000000000000..1307930ea7042 --- /dev/null +++ b/manifests/x/xemu-project/xemu/0.8.125/xemu-project.xemu.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: xemu-project.xemu +PackageVersion: 0.8.125 +PackageLocale: en-US +Publisher: xemu Project +PublisherUrl: https://xemu.app +PublisherSupportUrl: https://github.com/xemu-project/xemu/issues +PackageName: xemu +PackageUrl: https://github.com/xemu-project/xemu +License: GPL-2.0 +LicenseUrl: https://github.com/xemu-project/xemu/blob/master/LICENSE +Copyright: © 2025 xemu Project +ShortDescription: Original Xbox Emulator +Description: A free and open-source application that emulates the original Microsoft Xbox game console, enabling people to play their original Xbox games on Windows, macOS, and Linux systems. +Tags: +- game +- xbox +ReleaseNotesUrl: https://github.com/xemu-project/xemu/releases/tag/v0.8.125 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://xemu.app/docs +- DocumentLabel: FAQ + DocumentUrl: https://xemu.app/docs/faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/x/xemu-project/xemu/0.8.125/xemu-project.xemu.locale.zh-CN.yaml b/manifests/x/xemu-project/xemu/0.8.125/xemu-project.xemu.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7576b264e38b5 --- /dev/null +++ b/manifests/x/xemu-project/xemu/0.8.125/xemu-project.xemu.locale.zh-CN.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: xemu-project.xemu +PackageVersion: 0.8.125 +PackageLocale: zh-CN +Publisher: xemu Project +PublisherUrl: https://xemu.app +PublisherSupportUrl: https://github.com/xemu-project/xemu/issues +PackageName: xemu +PackageUrl: https://github.com/xemu-project/xemu +License: GPL-2.0 +LicenseUrl: https://github.com/xemu-project/xemu/blob/master/LICENSE +Copyright: © 2025 xemu Project +ShortDescription: 初代 Xbox 模拟器 +Description: 这是一款免费的开源应用程序,可模拟初代微软 Xbox 游戏机,让人们能够在 Windows、macOS 和 Linux 系统上玩初代 Xbox 游戏。 +Tags: +- xbox +- 游戏 +ReleaseNotesUrl: https://github.com/xemu-project/xemu/releases/tag/v0.8.125 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://xemu.app/docs +- DocumentLabel: 常见问题 + DocumentUrl: https://xemu.app/docs/faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/x/xemu-project/xemu/0.8.125/xemu-project.xemu.yaml b/manifests/x/xemu-project/xemu/0.8.125/xemu-project.xemu.yaml new file mode 100644 index 0000000000000..e25101bf8bec8 --- /dev/null +++ b/manifests/x/xemu-project/xemu/0.8.125/xemu-project.xemu.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: xemu-project.xemu +PackageVersion: 0.8.125 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/x/xemu-project/xemu/0.8.127/xemu-project.xemu.installer.yaml b/manifests/x/xemu-project/xemu/0.8.127/xemu-project.xemu.installer.yaml new file mode 100644 index 0000000000000..6594dd447287f --- /dev/null +++ b/manifests/x/xemu-project/xemu/0.8.127/xemu-project.xemu.installer.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: xemu-project.xemu +PackageVersion: 0.8.127 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: xemu.exe + PortableCommandAlias: xemu +ReleaseDate: 2025-12-26 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/xemu-project/xemu/releases/download/v0.8.127/xemu-win-x86_64-release.zip + InstallerSha256: 2D5140397CA7A1A21B280E524D0D5DD01708F8F312617B9A8B881D979A3FF43D +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/x/xemu-project/xemu/0.8.127/xemu-project.xemu.locale.en-US.yaml b/manifests/x/xemu-project/xemu/0.8.127/xemu-project.xemu.locale.en-US.yaml new file mode 100644 index 0000000000000..18c159465e851 --- /dev/null +++ b/manifests/x/xemu-project/xemu/0.8.127/xemu-project.xemu.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: xemu-project.xemu +PackageVersion: 0.8.127 +PackageLocale: en-US +Publisher: xemu Project +PublisherUrl: https://xemu.app +PublisherSupportUrl: https://github.com/xemu-project/xemu/issues +PackageName: xemu +PackageUrl: https://github.com/xemu-project/xemu +License: GPL-2.0 +LicenseUrl: https://github.com/xemu-project/xemu/blob/master/LICENSE +Copyright: © 2025 xemu Project +ShortDescription: Original Xbox Emulator +Description: A free and open-source application that emulates the original Microsoft Xbox game console, enabling people to play their original Xbox games on Windows, macOS, and Linux systems. +Tags: +- game +- xbox +ReleaseNotesUrl: https://github.com/xemu-project/xemu/releases/tag/v0.8.127 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://xemu.app/docs +- DocumentLabel: FAQ + DocumentUrl: https://xemu.app/docs/faq/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/x/xemu-project/xemu/0.8.127/xemu-project.xemu.locale.zh-CN.yaml b/manifests/x/xemu-project/xemu/0.8.127/xemu-project.xemu.locale.zh-CN.yaml new file mode 100644 index 0000000000000..019bae66c1ace --- /dev/null +++ b/manifests/x/xemu-project/xemu/0.8.127/xemu-project.xemu.locale.zh-CN.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: xemu-project.xemu +PackageVersion: 0.8.127 +PackageLocale: zh-CN +Publisher: xemu Project +PublisherUrl: https://xemu.app +PublisherSupportUrl: https://github.com/xemu-project/xemu/issues +PackageName: xemu +PackageUrl: https://github.com/xemu-project/xemu +License: GPL-2.0 +LicenseUrl: https://github.com/xemu-project/xemu/blob/master/LICENSE +Copyright: © 2025 xemu Project +ShortDescription: 初代 Xbox 模拟器 +Description: 这是一款免费的开源应用程序,可模拟初代微软 Xbox 游戏机,让人们能够在 Windows、macOS 和 Linux 系统上玩初代 Xbox 游戏。 +Tags: +- xbox +- 游戏 +ReleaseNotesUrl: https://github.com/xemu-project/xemu/releases/tag/v0.8.127 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://xemu.app/docs +- DocumentLabel: 常见问题 + DocumentUrl: https://xemu.app/docs/faq/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/x/xemu-project/xemu/0.8.127/xemu-project.xemu.yaml b/manifests/x/xemu-project/xemu/0.8.127/xemu-project.xemu.yaml new file mode 100644 index 0000000000000..a4d5d161193c5 --- /dev/null +++ b/manifests/x/xemu-project/xemu/0.8.127/xemu-project.xemu.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: xemu-project.xemu +PackageVersion: 0.8.127 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0