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/a/ArashiVisionInc/Insta360Studio/5.8.6/ArashiVisionInc.Insta360Studio.installer.yaml b/manifests/a/ArashiVisionInc/Insta360Studio/5.8.6/ArashiVisionInc.Insta360Studio.installer.yaml new file mode 100644 index 0000000000000..3b06aac276d86 --- /dev/null +++ b/manifests/a/ArashiVisionInc/Insta360Studio/5.8.6/ArashiVisionInc.Insta360Studio.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: ArashiVisionInc.Insta360Studio +PackageVersion: 5.8.6 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +ProductCode: '{78E34D33-E6EF-442B-A808-2351211989E2}}_is1' +ReleaseDate: 2025-12-26 +AppsAndFeaturesEntries: +- Publisher: Insta360 + ProductCode: '{78E34D33-E6EF-442B-A808-2351211989E2}}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Insta360 Studio' +Installers: +- Architecture: x64 + InstallerUrl: https://file.insta360.com/static/f76e37c662d8c627153ab8cdb301b8d9/Insta360_Studio_5.8.6_release_insta360(RC_build67)_20251226_170408_1766740076009.exe + InstallerSha256: 022B62C100D950A9AB952E3472225F30E18F17DF819B4EA2FBE75EC4D68C0FD1 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/ArashiVisionInc/Insta360Studio/5.8.6/ArashiVisionInc.Insta360Studio.locale.en-US.yaml b/manifests/a/ArashiVisionInc/Insta360Studio/5.8.6/ArashiVisionInc.Insta360Studio.locale.en-US.yaml new file mode 100644 index 0000000000000..72bad252746a7 --- /dev/null +++ b/manifests/a/ArashiVisionInc/Insta360Studio/5.8.6/ArashiVisionInc.Insta360Studio.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: ArashiVisionInc.Insta360Studio +PackageVersion: 5.8.6 +PackageLocale: en-US +Publisher: Arashi Vision Inc. +PackageName: Insta360 Studio +License: Proprietary +Copyright: Copyright Reserved© 2024, Arashi Vision Inc. +ShortDescription: Insta360 Studio allows users to edit videos and photos shot on X4/X3/ X2/X, Ace Pro 2/Ace Pro/Ace, GO 3S/3/2, ONE RS/R, Sphere, EVO, GO, ONE, Nano S, Nano and Air +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/ArashiVisionInc/Insta360Studio/5.8.6/ArashiVisionInc.Insta360Studio.yaml b/manifests/a/ArashiVisionInc/Insta360Studio/5.8.6/ArashiVisionInc.Insta360Studio.yaml new file mode 100644 index 0000000000000..4944148ea2e86 --- /dev/null +++ b/manifests/a/ArashiVisionInc/Insta360Studio/5.8.6/ArashiVisionInc.Insta360Studio.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: ArashiVisionInc.Insta360Studio +PackageVersion: 5.8.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/anyme123/ClaudeWorkbench/5.6.3/anyme123.ClaudeWorkbench.installer.yaml b/manifests/a/anyme123/ClaudeWorkbench/5.6.3/anyme123.ClaudeWorkbench.installer.yaml new file mode 100644 index 0000000000000..a9660f47a34fe --- /dev/null +++ b/manifests/a/anyme123/ClaudeWorkbench/5.6.3/anyme123.ClaudeWorkbench.installer.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: anyme123.ClaudeWorkbench +PackageVersion: 5.6.3 +UpgradeBehavior: install +ReleaseDate: 2025-12-03 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/anyme123/Any-code/releases/download/v5.6.3/Any.Code_5.6.3_x64-setup.exe + InstallerSha256: 721E248C9FBB6EFCAA71BBFC158AC1AB2279C6B072A5F7174A66B19C121BE9DE + ProductCode: Claude Workbench +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/anyme123/Any-code/releases/download/v5.6.3/Any.Code_5.6.3_x64_en-US.msi + InstallerSha256: 03CCEBBC4383FF5414387361C821F6D8FC8E417ED5C67B1763CDA052A6D057B0 + ProductCode: '{6F7AA7EB-7FDF-413A-85B2-7C37B3EA4A97}' + AppsAndFeaturesEntries: + - UpgradeCode: '{ABA342D9-0809-5B0D-87ED-910E1AA8B9F2}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/anyme123/ClaudeWorkbench/5.6.3/anyme123.ClaudeWorkbench.locale.en-US.yaml b/manifests/a/anyme123/ClaudeWorkbench/5.6.3/anyme123.ClaudeWorkbench.locale.en-US.yaml new file mode 100644 index 0000000000000..75c99c4cbe55a --- /dev/null +++ b/manifests/a/anyme123/ClaudeWorkbench/5.6.3/anyme123.ClaudeWorkbench.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: anyme123.ClaudeWorkbench +PackageVersion: 5.6.3 +PackageLocale: en-US +ShortDescription: Professional Claude Code Desktop Management Tool - Modern GUI Toolkit +Description: |- + Professional Claude Code Desktop Management Tool - Modern GUI Toolkit + + ✨ Core Features + 🎯 Session Management + - Visual Project Management: Intuitive interface for managing Claude projects and sessions + - Session History: Complete conversation history with support for recovery and undo + - Real-time Streaming Output: Smooth display of Claude responses + - Prompt Undo: Roll back to any message and restore code state + 📦 Claude Extension Manager (New in v4.0.1) + - Plugins Viewer: View installed plugins and their components + - Subagents Management: Browse and edit subagents + - Agent Skills View: View and manage AI skills + - One-click File Opening: Directly edit .md files by clicking on cards + 💰 Smart Cost Tracking + - Accurate Billing: Supports multi-model pricing (Opus 4.1, Sonnet 4.5, Sonnet 3.5) + - Detailed Statistics: Token breakdown, session duration, API execution time + - Hover Preview: View full cost analysis with mouse hover + - Real-time Updates: Instant calculation and display of session costs + 🔧 Developer Tools + - Provider Management: One-click switching between API providers, silent switch without interruption + - MCP Integration: Full Model Context Protocol server management + - Hooks System: Custom hooks and event handling + - Slash Commands: Custom command manager + 🎨 Modern UI + - Theme Toggle: Quick switch between light and dark modes via top bar (default: light) + - Compact Design: Optimized space utilization with clear visual hierarchy + - Responsive Layout: Adapts to various screen sizes + - Smooth Animations: Interactive effects powered by Framer Motion +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/anyme123/ClaudeWorkbench/5.6.3/anyme123.ClaudeWorkbench.locale.zh-CN.yaml b/manifests/a/anyme123/ClaudeWorkbench/5.6.3/anyme123.ClaudeWorkbench.locale.zh-CN.yaml new file mode 100644 index 0000000000000..cb8c7f35f3ed7 --- /dev/null +++ b/manifests/a/anyme123/ClaudeWorkbench/5.6.3/anyme123.ClaudeWorkbench.locale.zh-CN.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: anyme123.ClaudeWorkbench +PackageVersion: 5.6.3 +PackageLocale: zh-CN +Publisher: workbench +PublisherUrl: https://github.com/anyme123 +PublisherSupportUrl: https://github.com/anyme123/claude-workbench/issues +PackageName: Claude Workbench +PackageUrl: https://github.com/anyme123/claude-workbench +License: MIT +LicenseUrl: https://github.com/anyme123/claude-workbench/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025 Claude Workbench +ShortDescription: 专业的 Claude Code 桌面管理工具 - 现代化 GUI 工具包 +Description: |- + 专业的 Claude Code 桌面管理工具 - 现代化 GUI 工具包 + + ✨ 核心特性 + 🎯 会话管理 + - 可视化项目管理:直观的 Claude 项目和会话管理界面 + - 会话历史记录:完整的对话历史,支持恢复和撤回 + - 实时流式输出:流畅的 Claude 响应显示 + - 提示词撤回:撤回到任意消息,恢复代码状态 + 📦 Claude 扩展管理器 (v4.0.1 新增) + - Plugins 查看器:查看已安装的插件及其组件 + - Subagents 管理:浏览和编辑子代理 + - Agent Skills 查看:查看和管理 AI 技能 + - 一键打开文件:点击卡片直接编辑 .md 文件 + 💰 智能成本追踪 + - 准确计费:支持多模型定价(Opus 4.1、Sonnet 4.5、Sonnet 3.5) + - 详细统计:Token 分类、会话时长、API 执行时间 + - 悬停查看:鼠标悬停即可查看完整成本分析 + - 实时更新:会话成本实时计算和显示 + 🔧 开发者工具 + - 代理商管理:一键切换 API 提供商,静默切换无打扰 + - MCP 集成:完整的 Model Context Protocol 服务器管理 + - Hooks 系统:自定义钩子和事件处理 + - Slash Commands: 自定义命令管理器 + 🎨 现代化 UI + - 主题切换:顶栏快速切换明暗主题(默认浅色) + - 紧凑设计:优化的空间利用,清晰的视觉层次 + - 响应式布局:适配不同屏幕尺寸 + - 流畅动画:Framer Motion 驱动的交互效果 +Tags: +- claude +- claude-code +ReleaseNotesUrl: https://github.com/anyme123/Any-code/releases/tag/v5.6.3 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/anyme123/ClaudeWorkbench/5.6.3/anyme123.ClaudeWorkbench.yaml b/manifests/a/anyme123/ClaudeWorkbench/5.6.3/anyme123.ClaudeWorkbench.yaml new file mode 100644 index 0000000000000..6c4bc74b19ffc --- /dev/null +++ b/manifests/a/anyme123/ClaudeWorkbench/5.6.3/anyme123.ClaudeWorkbench.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: anyme123.ClaudeWorkbench +PackageVersion: 5.6.3 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/anyme123/ClaudeWorkbench/5.9.7/anyme123.ClaudeWorkbench.installer.yaml b/manifests/a/anyme123/ClaudeWorkbench/5.9.7/anyme123.ClaudeWorkbench.installer.yaml new file mode 100644 index 0000000000000..96e9bf5b221c7 --- /dev/null +++ b/manifests/a/anyme123/ClaudeWorkbench/5.9.7/anyme123.ClaudeWorkbench.installer.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: anyme123.ClaudeWorkbench +PackageVersion: 5.9.7 +UpgradeBehavior: install +ReleaseDate: 2025-12-12 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/anyme123/Any-code/releases/download/v5.9.7/Any.Code_5.9.7_x64-setup.exe + InstallerSha256: A4821ED5B152D0F2C097A8A2ED792AEC45F85F2A53F7C203C2A1F12388B52605 + ProductCode: Claude Workbench +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/anyme123/Any-code/releases/download/v5.9.7/Any.Code_5.9.7_x64_en-US.msi + InstallerSha256: 908F0306FB36A0912418FCD1354F6F97C86150F811E23D13A043D0EEB6D0ECAF + ProductCode: '{E0C9F87E-239A-431E-8557-538A84391FF0}' + AppsAndFeaturesEntries: + - UpgradeCode: '{ABA342D9-0809-5B0D-87ED-910E1AA8B9F2}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/anyme123/ClaudeWorkbench/5.9.7/anyme123.ClaudeWorkbench.locale.en-US.yaml b/manifests/a/anyme123/ClaudeWorkbench/5.9.7/anyme123.ClaudeWorkbench.locale.en-US.yaml new file mode 100644 index 0000000000000..8fd2c29487ad9 --- /dev/null +++ b/manifests/a/anyme123/ClaudeWorkbench/5.9.7/anyme123.ClaudeWorkbench.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: anyme123.ClaudeWorkbench +PackageVersion: 5.9.7 +PackageLocale: en-US +ShortDescription: Professional Claude Code Desktop Management Tool - Modern GUI Toolkit +Description: |- + Professional Claude Code Desktop Management Tool - Modern GUI Toolkit + + ✨ Core Features + 🎯 Session Management + - Visual Project Management: Intuitive interface for managing Claude projects and sessions + - Session History: Complete conversation history with support for recovery and undo + - Real-time Streaming Output: Smooth display of Claude responses + - Prompt Undo: Roll back to any message and restore code state + 📦 Claude Extension Manager (New in v4.0.1) + - Plugins Viewer: View installed plugins and their components + - Subagents Management: Browse and edit subagents + - Agent Skills View: View and manage AI skills + - One-click File Opening: Directly edit .md files by clicking on cards + 💰 Smart Cost Tracking + - Accurate Billing: Supports multi-model pricing (Opus 4.1, Sonnet 4.5, Sonnet 3.5) + - Detailed Statistics: Token breakdown, session duration, API execution time + - Hover Preview: View full cost analysis with mouse hover + - Real-time Updates: Instant calculation and display of session costs + 🔧 Developer Tools + - Provider Management: One-click switching between API providers, silent switch without interruption + - MCP Integration: Full Model Context Protocol server management + - Hooks System: Custom hooks and event handling + - Slash Commands: Custom command manager + 🎨 Modern UI + - Theme Toggle: Quick switch between light and dark modes via top bar (default: light) + - Compact Design: Optimized space utilization with clear visual hierarchy + - Responsive Layout: Adapts to various screen sizes + - Smooth Animations: Interactive effects powered by Framer Motion +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/anyme123/ClaudeWorkbench/5.9.7/anyme123.ClaudeWorkbench.locale.zh-CN.yaml b/manifests/a/anyme123/ClaudeWorkbench/5.9.7/anyme123.ClaudeWorkbench.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e32196343d3a3 --- /dev/null +++ b/manifests/a/anyme123/ClaudeWorkbench/5.9.7/anyme123.ClaudeWorkbench.locale.zh-CN.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: anyme123.ClaudeWorkbench +PackageVersion: 5.9.7 +PackageLocale: zh-CN +Publisher: workbench +PublisherUrl: https://github.com/anyme123 +PublisherSupportUrl: https://github.com/anyme123/claude-workbench/issues +PackageName: Claude Workbench +PackageUrl: https://github.com/anyme123/claude-workbench +License: MIT +LicenseUrl: https://github.com/anyme123/claude-workbench/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025 Claude Workbench +ShortDescription: 专业的 Claude Code 桌面管理工具 - 现代化 GUI 工具包 +Description: |- + 专业的 Claude Code 桌面管理工具 - 现代化 GUI 工具包 + + ✨ 核心特性 + 🎯 会话管理 + - 可视化项目管理:直观的 Claude 项目和会话管理界面 + - 会话历史记录:完整的对话历史,支持恢复和撤回 + - 实时流式输出:流畅的 Claude 响应显示 + - 提示词撤回:撤回到任意消息,恢复代码状态 + 📦 Claude 扩展管理器 (v4.0.1 新增) + - Plugins 查看器:查看已安装的插件及其组件 + - Subagents 管理:浏览和编辑子代理 + - Agent Skills 查看:查看和管理 AI 技能 + - 一键打开文件:点击卡片直接编辑 .md 文件 + 💰 智能成本追踪 + - 准确计费:支持多模型定价(Opus 4.1、Sonnet 4.5、Sonnet 3.5) + - 详细统计:Token 分类、会话时长、API 执行时间 + - 悬停查看:鼠标悬停即可查看完整成本分析 + - 实时更新:会话成本实时计算和显示 + 🔧 开发者工具 + - 代理商管理:一键切换 API 提供商,静默切换无打扰 + - MCP 集成:完整的 Model Context Protocol 服务器管理 + - Hooks 系统:自定义钩子和事件处理 + - Slash Commands: 自定义命令管理器 + 🎨 现代化 UI + - 主题切换:顶栏快速切换明暗主题(默认浅色) + - 紧凑设计:优化的空间利用,清晰的视觉层次 + - 响应式布局:适配不同屏幕尺寸 + - 流畅动画:Framer Motion 驱动的交互效果 +Tags: +- claude +- claude-code +ReleaseNotesUrl: https://github.com/anyme123/Any-code/releases/tag/v5.9.7 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/anyme123/ClaudeWorkbench/5.9.7/anyme123.ClaudeWorkbench.yaml b/manifests/a/anyme123/ClaudeWorkbench/5.9.7/anyme123.ClaudeWorkbench.yaml new file mode 100644 index 0000000000000..d342312813c68 --- /dev/null +++ b/manifests/a/anyme123/ClaudeWorkbench/5.9.7/anyme123.ClaudeWorkbench.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: anyme123.ClaudeWorkbench +PackageVersion: 5.9.7 +DefaultLocale: zh-CN +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/g/GeoGebra/CASCalculator/6.0.886/GeoGebra.CASCalculator.yaml b/manifests/b/BrechtSanders/WinLibs/POSIX/MSVCRT/15.2.0-13.0.0-r5/BrechtSanders.WinLibs.POSIX.MSVCRT.yaml similarity index 69% rename from manifests/g/GeoGebra/CASCalculator/6.0.886/GeoGebra.CASCalculator.yaml rename to manifests/b/BrechtSanders/WinLibs/POSIX/MSVCRT/15.2.0-13.0.0-r5/BrechtSanders.WinLibs.POSIX.MSVCRT.yaml index 5955c63d40878..7d3d0d4967c50 100644 --- a/manifests/g/GeoGebra/CASCalculator/6.0.886/GeoGebra.CASCalculator.yaml +++ b/manifests/b/BrechtSanders/WinLibs/POSIX/MSVCRT/15.2.0-13.0.0-r5/BrechtSanders.WinLibs.POSIX.MSVCRT.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.886 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 +# 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/d/DuckDuckGo/DesktopBrowser/Preview/0.141.7.0/DuckDuckGo.DesktopBrowser.Preview.installer.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.141.7.0/DuckDuckGo.DesktopBrowser.Preview.installer.yaml new file mode 100644 index 0000000000000..d42f5ed8e471e --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.141.7.0/DuckDuckGo.DesktopBrowser.Preview.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: DuckDuckGo.DesktopBrowser.Preview +PackageVersion: 0.141.7.0 +Platform: +- Windows.Desktop +- Windows.Universal +MinimumOSVersion: 10.0.19041.0 +InstallerType: msix +Protocols: +- http +- https +FileExtensions: +- htm +- html +- pdf +PackageFamilyName: DuckDuckGo.DesktopBrowserPreview_ya2fgkz3nks94 +Capabilities: +- internetClient +- runFullTrust +Installers: +- Architecture: x86 + InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/preview/0.141.7.0/DuckDuckGo%20Preview_0.141.7.0.msixbundle + InstallerSha256: 2699CDFEA91F49C1E5FD3DFB359EB0FF9C28D407620CB8DE21442AED858C8CD6 + SignatureSha256: 6C4F4EC61603CDBB9F44E2FB49D33BAA31ACC9F1A6D8145C3EA236AA945F26DB +- Architecture: x64 + InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/preview/0.141.7.0/DuckDuckGo%20Preview_0.141.7.0.msixbundle + InstallerSha256: 2699CDFEA91F49C1E5FD3DFB359EB0FF9C28D407620CB8DE21442AED858C8CD6 + SignatureSha256: 6C4F4EC61603CDBB9F44E2FB49D33BAA31ACC9F1A6D8145C3EA236AA945F26DB +- Architecture: arm64 + InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/preview/0.141.7.0/DuckDuckGo%20Preview_0.141.7.0.msixbundle + InstallerSha256: 2699CDFEA91F49C1E5FD3DFB359EB0FF9C28D407620CB8DE21442AED858C8CD6 + SignatureSha256: 6C4F4EC61603CDBB9F44E2FB49D33BAA31ACC9F1A6D8145C3EA236AA945F26DB +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.141.7.0/DuckDuckGo.DesktopBrowser.Preview.locale.en-US.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.141.7.0/DuckDuckGo.DesktopBrowser.Preview.locale.en-US.yaml new file mode 100644 index 0000000000000..47b6cdb1404a4 --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.141.7.0/DuckDuckGo.DesktopBrowser.Preview.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: DuckDuckGo.DesktopBrowser.Preview +PackageVersion: 0.141.7.0 +PackageLocale: en-US +Publisher: DuckDuckGo +PublisherUrl: https://duckduckgo.com/ +PrivacyUrl: https://duckduckgo.com/privacy +Author: Duck Duck Go, Inc. +PackageName: DuckDuckGo Preview +PackageUrl: https://duckduckgo.com/windows-preview +License: Freeware +LicenseUrl: https://duckduckgo.com/terms +Copyright: © 2025 DuckDuckGo +CopyrightUrl: https://duckduckgo.com/terms +ShortDescription: Help Test and Improve New Features with DuckDuckGo Preview for Windows +Tags: +- browser +- chromium +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.141.7.0/DuckDuckGo.DesktopBrowser.Preview.locale.zh-CN.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.141.7.0/DuckDuckGo.DesktopBrowser.Preview.locale.zh-CN.yaml new file mode 100644 index 0000000000000..73b3162b7f819 --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.141.7.0/DuckDuckGo.DesktopBrowser.Preview.locale.zh-CN.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: DuckDuckGo.DesktopBrowser.Preview +PackageVersion: 0.141.7.0 +PackageLocale: zh-CN +License: 免费软件 +ShortDescription: 帮助测试和改进 DuckDuckGo Preview for Windows 的新功能 +Tags: +- chromium +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.885/GeoGebra.CASCalculator.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.141.7.0/DuckDuckGo.DesktopBrowser.Preview.yaml similarity index 71% rename from manifests/g/GeoGebra/CASCalculator/6.0.885/GeoGebra.CASCalculator.yaml rename to manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.141.7.0/DuckDuckGo.DesktopBrowser.Preview.yaml index 01445ae827879..68d20230dc31f 100644 --- a/manifests/g/GeoGebra/CASCalculator/6.0.885/GeoGebra.CASCalculator.yaml +++ b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.141.7.0/DuckDuckGo.DesktopBrowser.Preview.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.885 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: DuckDuckGo.DesktopBrowser.Preview +PackageVersion: 0.141.7.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.884/GeoGebra.CASCalculator.installer.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.884/GeoGebra.CASCalculator.installer.yaml deleted file mode 100644 index bc20ea00a2d03..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.884/GeoGebra.CASCalculator.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.884 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_CAS -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/cas/GeoGebraCAS-Windows-Installer-6-0-884-1.exe - InstallerSha256: 588326F240FDF9999CC0620BA23CE45F3A897B8919AFAEAF1B456E82524E7194 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.884/GeoGebra.CASCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.884/GeoGebra.CASCalculator.locale.en-US.yaml deleted file mode 100644 index de045014b955a..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.884/GeoGebra.CASCalculator.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.884 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Solve equations, expand and factor expressions, find derivatives and integrals -Moniker: cascalculator -Tags: -- education -- geometry -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.884/GeoGebra.CASCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.884/GeoGebra.CASCalculator.locale.zh-CN.yaml deleted file mode 100644 index 54a08466f2353..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.884/GeoGebra.CASCalculator.locale.zh-CN.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.884 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 解方程、展开表达式并将其因式分解、求导数和积分 -Tags: -- 几何 -- 教育 -- 数学 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.884/GeoGebra.CASCalculator.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.884/GeoGebra.CASCalculator.yaml deleted file mode 100644 index ebaab39f9167a..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.884/GeoGebra.CASCalculator.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.884 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.885/GeoGebra.CASCalculator.installer.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.885/GeoGebra.CASCalculator.installer.yaml deleted file mode 100644 index d004e209d7d4a..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.885/GeoGebra.CASCalculator.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.885 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_CAS -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/cas/GeoGebraCAS-Windows-Installer-6-0-885-1.exe - InstallerSha256: 70225F6A6A9BE678766BC6C0DBFFCCE1E69C6239FF80D5AD900741CC0852BADA -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.885/GeoGebra.CASCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.885/GeoGebra.CASCalculator.locale.en-US.yaml deleted file mode 100644 index d75de1bf1c1c8..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.885/GeoGebra.CASCalculator.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.885 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Solve equations, expand and factor expressions, find derivatives and integrals -Moniker: cascalculator -Tags: -- education -- geometry -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.885/GeoGebra.CASCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.885/GeoGebra.CASCalculator.locale.zh-CN.yaml deleted file mode 100644 index aa90aec5fa250..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.885/GeoGebra.CASCalculator.locale.zh-CN.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.885 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 解方程、展开表达式并将其因式分解、求导数和积分 -Tags: -- 几何 -- 教育 -- 数学 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.886/GeoGebra.CASCalculator.installer.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.886/GeoGebra.CASCalculator.installer.yaml deleted file mode 100644 index 1c948a2843dea..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.886/GeoGebra.CASCalculator.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.886 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_CAS -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/cas/GeoGebraCAS-Windows-Installer-6-0-886-0.exe - InstallerSha256: 1B979A2315D985027A4C8F0BBD17AF111F42220448A5B36B61A51B90B9E2722E -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.886/GeoGebra.CASCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.886/GeoGebra.CASCalculator.locale.en-US.yaml deleted file mode 100644 index 09a919bf1635e..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.886/GeoGebra.CASCalculator.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.886 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Solve equations, expand and factor expressions, find derivatives and integrals -Moniker: cascalculator -Tags: -- education -- geometry -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.886/GeoGebra.CASCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.886/GeoGebra.CASCalculator.locale.zh-CN.yaml deleted file mode 100644 index 7a12a8b5e0abf..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.886/GeoGebra.CASCalculator.locale.zh-CN.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.886 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 解方程、展开表达式并将其因式分解、求导数和积分 -Tags: -- 几何 -- 教育 -- 数学 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.887/GeoGebra.CASCalculator.installer.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.887/GeoGebra.CASCalculator.installer.yaml deleted file mode 100644 index c0599937c76de..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.887/GeoGebra.CASCalculator.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.887 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_CAS -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/cas/GeoGebraCAS-Windows-Installer-6-0-887-0.exe - InstallerSha256: EDCF1F4369CBCEA072133B3E876C7B987448649AF2A922F92A8D35F5962E9186 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.887/GeoGebra.CASCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.887/GeoGebra.CASCalculator.locale.en-US.yaml deleted file mode 100644 index 042c3918cd10a..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.887/GeoGebra.CASCalculator.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.887 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Solve equations, expand and factor expressions, find derivatives and integrals -Moniker: cascalculator -Tags: -- education -- geometry -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.887/GeoGebra.CASCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.887/GeoGebra.CASCalculator.locale.zh-CN.yaml deleted file mode 100644 index 49536491f556d..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.887/GeoGebra.CASCalculator.locale.zh-CN.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.887 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 解方程、展开表达式并将其因式分解、求导数和积分 -Tags: -- 几何 -- 教育 -- 数学 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.888/GeoGebra.CASCalculator.installer.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.888/GeoGebra.CASCalculator.installer.yaml deleted file mode 100644 index d250df271e32b..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.888/GeoGebra.CASCalculator.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.888 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_CAS -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/cas/GeoGebraCAS-Windows-Installer-6-0-888-1.exe - InstallerSha256: C5FF7916D574A44185DBFA2D3591FB7819392E033D6BC27E0B81B79BD0351A93 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.888/GeoGebra.CASCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.888/GeoGebra.CASCalculator.locale.en-US.yaml deleted file mode 100644 index ef788252633a8..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.888/GeoGebra.CASCalculator.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.888 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Solve equations, expand and factor expressions, find derivatives and integrals -Moniker: cascalculator -Tags: -- education -- geometry -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.888/GeoGebra.CASCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.888/GeoGebra.CASCalculator.locale.zh-CN.yaml deleted file mode 100644 index f8c6821143d15..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.888/GeoGebra.CASCalculator.locale.zh-CN.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.888 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 解方程、展开表达式并将其因式分解、求导数和积分 -Tags: -- 几何 -- 教育 -- 数学 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.888/GeoGebra.CASCalculator.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.888/GeoGebra.CASCalculator.yaml deleted file mode 100644 index 41ca6f7894f57..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.888/GeoGebra.CASCalculator.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.888 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.889/GeoGebra.CASCalculator.installer.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.889/GeoGebra.CASCalculator.installer.yaml deleted file mode 100644 index 4fc3ffecd95ce..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.889/GeoGebra.CASCalculator.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.889 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_CAS -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/cas/GeoGebraCAS-Windows-Installer-6-0-889-0.exe - InstallerSha256: 93E2B0280E4F5911A46AEB269496EA435391D1A5FE6AD5DA9C5864D7F2BCD733 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.889/GeoGebra.CASCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.889/GeoGebra.CASCalculator.locale.en-US.yaml deleted file mode 100644 index 055a717f80cb1..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.889/GeoGebra.CASCalculator.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.889 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Solve equations, expand and factor expressions, find derivatives and integrals -Moniker: cascalculator -Tags: -- education -- geometry -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.889/GeoGebra.CASCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.889/GeoGebra.CASCalculator.locale.zh-CN.yaml deleted file mode 100644 index 92d8a5b1edf83..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.889/GeoGebra.CASCalculator.locale.zh-CN.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.889 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 解方程、展开表达式并将其因式分解、求导数和积分 -Tags: -- 几何 -- 教育 -- 数学 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.889/GeoGebra.CASCalculator.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.889/GeoGebra.CASCalculator.yaml deleted file mode 100644 index 5daa1c75bafe4..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.889/GeoGebra.CASCalculator.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.889 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.installer.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.installer.yaml deleted file mode 100644 index dbe88697fb3bf..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.892 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_CAS -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/cas/GeoGebraCAS-Windows-Installer-6-0-892-0.exe - InstallerSha256: 4BA4210CDEA71D23D1995AA5759EAA242FB44FF13F2729621991BF8318175E68 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.locale.en-US.yaml deleted file mode 100644 index 8df3ea6f46aa5..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.892 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Solve equations, expand and factor expressions, find derivatives and integrals -Moniker: cascalculator -Tags: -- education -- geometry -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.locale.zh-CN.yaml deleted file mode 100644 index 6d67768a46ff6..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.locale.zh-CN.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.892 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 解方程、展开表达式并将其因式分解、求导数和积分 -Tags: -- 几何 -- 教育 -- 数学 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.yaml deleted file mode 100644 index e924c79cd1af0..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.892/GeoGebra.CASCalculator.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.892 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.893/GeoGebra.CASCalculator.installer.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.893/GeoGebra.CASCalculator.installer.yaml deleted file mode 100644 index dd36bb0f59739..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.893/GeoGebra.CASCalculator.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.893 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_CAS -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/cas/GeoGebraCAS-Windows-Installer-6-0-893-2.exe - InstallerSha256: 048549A8955CE67E49053449349988E655E4F40BA9BA2EC0E99C203A53E7A16F -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.893/GeoGebra.CASCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.893/GeoGebra.CASCalculator.locale.en-US.yaml deleted file mode 100644 index b0405fb32ecdc..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.893/GeoGebra.CASCalculator.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.893 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Solve equations, expand and factor expressions, find derivatives and integrals -Moniker: cascalculator -Tags: -- education -- geometry -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.893/GeoGebra.CASCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.893/GeoGebra.CASCalculator.locale.zh-CN.yaml deleted file mode 100644 index 71582af3f5a98..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.893/GeoGebra.CASCalculator.locale.zh-CN.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.893 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 解方程、展开表达式并将其因式分解、求导数和积分 -Tags: -- 几何 -- 教育 -- 数学 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.893/GeoGebra.CASCalculator.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.893/GeoGebra.CASCalculator.yaml deleted file mode 100644 index 38cbf81418327..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.893/GeoGebra.CASCalculator.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.893 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.894/GeoGebra.CASCalculator.installer.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.894/GeoGebra.CASCalculator.installer.yaml deleted file mode 100644 index 5be0d8453b9a7..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.894/GeoGebra.CASCalculator.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.894 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_CAS -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/cas/GeoGebraCAS-Windows-Installer-6-0-894-3.exe - InstallerSha256: 3B104CD19931BD1F303006A1C3F82AA98E112E5A59AD782E7DAF3ECCA272F84F -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.894/GeoGebra.CASCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.894/GeoGebra.CASCalculator.locale.en-US.yaml deleted file mode 100644 index 76d220933cc35..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.894/GeoGebra.CASCalculator.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.894 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Solve equations, expand and factor expressions, find derivatives and integrals -Moniker: cascalculator -Tags: -- education -- geometry -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.894/GeoGebra.CASCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.894/GeoGebra.CASCalculator.locale.zh-CN.yaml deleted file mode 100644 index 5de4ea3203854..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.894/GeoGebra.CASCalculator.locale.zh-CN.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.894 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 解方程、展开表达式并将其因式分解、求导数和积分 -Tags: -- 几何 -- 教育 -- 数学 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.894/GeoGebra.CASCalculator.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.894/GeoGebra.CASCalculator.yaml deleted file mode 100644 index 54e6b420d1027..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.894/GeoGebra.CASCalculator.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.894 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.898/GeoGebra.CASCalculator.installer.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.898/GeoGebra.CASCalculator.installer.yaml deleted file mode 100644 index c847086288bc2..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.898/GeoGebra.CASCalculator.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.898 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_CAS -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/cas/GeoGebraCAS-Windows-Installer-6-0-898-1.exe - InstallerSha256: E9310BDB3D1CBCD4CF110D629DECF508D27C6FDC230BD64E3E38A9D37AFA6069 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.898/GeoGebra.CASCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.898/GeoGebra.CASCalculator.locale.en-US.yaml deleted file mode 100644 index 1cac11d4077eb..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.898/GeoGebra.CASCalculator.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.898 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Solve equations, expand and factor expressions, find derivatives and integrals -Moniker: cascalculator -Tags: -- education -- geometry -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.898/GeoGebra.CASCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.898/GeoGebra.CASCalculator.locale.zh-CN.yaml deleted file mode 100644 index 54ab5bf3c2ce2..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.898/GeoGebra.CASCalculator.locale.zh-CN.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.898 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 解方程、展开表达式并将其因式分解、求导数和积分 -Tags: -- 几何 -- 教育 -- 数学 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.898/GeoGebra.CASCalculator.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.898/GeoGebra.CASCalculator.yaml deleted file mode 100644 index 7394cd6ff7403..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.898/GeoGebra.CASCalculator.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.898 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.899/GeoGebra.CASCalculator.installer.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.899/GeoGebra.CASCalculator.installer.yaml deleted file mode 100644 index a80d47b63836e..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.899/GeoGebra.CASCalculator.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.899 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_CAS -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/cas/GeoGebraCAS-Windows-Installer-6-0-899-0.exe - InstallerSha256: A37A19972FF7E073A9A07CF5D914282C142458E83F93C4308CD7DE1D06B4B97E -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.899/GeoGebra.CASCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.899/GeoGebra.CASCalculator.locale.en-US.yaml deleted file mode 100644 index 106705098ce94..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.899/GeoGebra.CASCalculator.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.899 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Solve equations, expand and factor expressions, find derivatives and integrals -Moniker: cascalculator -Tags: -- education -- geometry -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.899/GeoGebra.CASCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.899/GeoGebra.CASCalculator.locale.zh-CN.yaml deleted file mode 100644 index 8c71feed03067..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.899/GeoGebra.CASCalculator.locale.zh-CN.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.899 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 解方程、展开表达式并将其因式分解、求导数和积分 -Tags: -- 几何 -- 教育 -- 数学 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.899/GeoGebra.CASCalculator.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.899/GeoGebra.CASCalculator.yaml deleted file mode 100644 index 9e700ab356f8b..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.899/GeoGebra.CASCalculator.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.899 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.901/GeoGebra.CASCalculator.installer.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.901/GeoGebra.CASCalculator.installer.yaml deleted file mode 100644 index fd2a3a20bcd62..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.901/GeoGebra.CASCalculator.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.901 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_CAS -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/cas/GeoGebraCAS-Windows-Installer-6-0-901-1.exe - InstallerSha256: 0D3B38AC038338B8357CCF9D3E1B261A70BAA017D33B27AAAE0E30D884234573 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.901/GeoGebra.CASCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.901/GeoGebra.CASCalculator.locale.en-US.yaml deleted file mode 100644 index c49ba70871976..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.901/GeoGebra.CASCalculator.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.901 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Solve equations, expand and factor expressions, find derivatives and integrals -Moniker: cascalculator -Tags: -- education -- geometry -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.901/GeoGebra.CASCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.901/GeoGebra.CASCalculator.locale.zh-CN.yaml deleted file mode 100644 index 1524976ede91e..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.901/GeoGebra.CASCalculator.locale.zh-CN.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.901 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 解方程、展开表达式并将其因式分解、求导数和积分 -Tags: -- 几何 -- 教育 -- 数学 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.902/GeoGebra.CASCalculator.installer.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.902/GeoGebra.CASCalculator.installer.yaml deleted file mode 100644 index edd65b8e4591b..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.902/GeoGebra.CASCalculator.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.902 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_CAS -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/cas/GeoGebraCAS-Windows-Installer-6-0-902-0.exe - InstallerSha256: AE90078227C996327C0F317260FDA25B7C9E70F0C4CB3197DFC257D057FB6925 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.902/GeoGebra.CASCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.902/GeoGebra.CASCalculator.locale.en-US.yaml deleted file mode 100644 index 91a60af8526d4..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.902/GeoGebra.CASCalculator.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.902 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Solve equations, expand and factor expressions, find derivatives and integrals -Moniker: cascalculator -Tags: -- education -- geometry -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.902/GeoGebra.CASCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.902/GeoGebra.CASCalculator.locale.zh-CN.yaml deleted file mode 100644 index 8ae959adba494..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.902/GeoGebra.CASCalculator.locale.zh-CN.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.902 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 解方程、展开表达式并将其因式分解、求导数和积分 -Tags: -- 几何 -- 教育 -- 数学 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.903/GeoGebra.CASCalculator.installer.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.903/GeoGebra.CASCalculator.installer.yaml deleted file mode 100644 index c20e050852fe8..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.903/GeoGebra.CASCalculator.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.903 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_CAS -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/cas/GeoGebraCAS-Windows-Installer-6-0-903-0.exe - InstallerSha256: CEE34769152FF8F00337EEACF0C05B025612CABC8FF9DC96BBE7C215758FAC51 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.903/GeoGebra.CASCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.903/GeoGebra.CASCalculator.locale.en-US.yaml deleted file mode 100644 index 4c8f486358a6b..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.903/GeoGebra.CASCalculator.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.903 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: Solve equations, expand and factor expressions, find derivatives and integrals -Moniker: cascalculator -Tags: -- education -- geometry -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.903/GeoGebra.CASCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.903/GeoGebra.CASCalculator.locale.zh-CN.yaml deleted file mode 100644 index 319165e3f00ce..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.903/GeoGebra.CASCalculator.locale.zh-CN.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.903 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2024 GeoGebra® -ShortDescription: 解方程、展开表达式并将其因式分解、求导数和积分 -Tags: -- 几何 -- 教育 -- 数学 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.904/GeoGebra.CASCalculator.installer.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.904/GeoGebra.CASCalculator.installer.yaml deleted file mode 100644 index b5c42a6e36ea3..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.904/GeoGebra.CASCalculator.installer.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.904 -InstallerType: exe -Scope: user -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: --silent - SilentWithProgress: --silent -UpgradeBehavior: install -FileExtensions: -- ggb -ProductCode: GeoGebra_CAS -Installers: -- Architecture: x86 - InstallerUrl: https://download.geogebra.org/installers/6.0/cas/GeoGebraCAS-Windows-Installer-6-0-904-2.exe - InstallerSha256: 7FFBCC70FF8700A56A542DF51146D5338D22FCC1A875B254688303DEC5F00CB2 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.904/GeoGebra.CASCalculator.locale.en-US.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.904/GeoGebra.CASCalculator.locale.en-US.yaml deleted file mode 100644 index d03e3780818c6..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.904/GeoGebra.CASCalculator.locale.en-US.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.904 -PackageLocale: en-US -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: Proprietary -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2025 GeoGebra® -ShortDescription: Solve equations, expand and factor expressions, find derivatives and integrals -Moniker: cascalculator -Tags: -- education -- geometry -- math -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.904/GeoGebra.CASCalculator.locale.zh-CN.yaml b/manifests/g/GeoGebra/CASCalculator/6.0.904/GeoGebra.CASCalculator.locale.zh-CN.yaml deleted file mode 100644 index b869be87b2a43..0000000000000 --- a/manifests/g/GeoGebra/CASCalculator/6.0.904/GeoGebra.CASCalculator.locale.zh-CN.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.904 -PackageLocale: zh-CN -Publisher: International GeoGebra Institute -PublisherUrl: https://www.geogebra.org/ -PublisherSupportUrl: https://help.geogebra.org/ -PrivacyUrl: https://www.geogebra.org/privacy -Author: GeoGebra GmbH -PackageName: GeoGebra CAS Calculator -PackageUrl: https://www.geogebra.org/download -License: 专有软件 -LicenseUrl: https://www.geogebra.org/license -Copyright: © 2025 GeoGebra® -ShortDescription: 解方程、展开表达式并将其因式分解、求导数和积分 -Tags: -- 几何 -- 教育 -- 数学 -ManifestType: locale -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/GeoGebra/CASCalculator/6.0.904/GeoGebra.CASCalculator.yaml b/manifests/g/Google/Chrome/Canary/145.0.7601.0/Google.Chrome.Canary.yaml similarity index 74% rename from manifests/g/GeoGebra/CASCalculator/6.0.904/GeoGebra.CASCalculator.yaml rename to manifests/g/Google/Chrome/Canary/145.0.7601.0/Google.Chrome.Canary.yaml index 9bd1aaba759a6..e785f2c45c984 100644 --- a/manifests/g/GeoGebra/CASCalculator/6.0.904/GeoGebra.CASCalculator.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.10.0.schema.json -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.904 +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/Dev/EXE/133.0.6876.4/Google.Chrome.Dev.EXE.yaml b/manifests/g/Google/Chrome/Dev/EXE/133.0.6876.4/Google.Chrome.Dev.EXE.yaml deleted file mode 100644 index 64fbae92fdee3..0000000000000 --- a/manifests/g/Google/Chrome/Dev/EXE/133.0.6876.4/Google.Chrome.Dev.EXE.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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 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/Google/Chrome/EXE/131.0.6778.265/Google.Chrome.EXE.yaml b/manifests/g/Google/Chrome/EXE/131.0.6778.265/Google.Chrome.EXE.yaml deleted file mode 100644 index ff991c9297298..0000000000000 --- a/manifests/g/Google/Chrome/EXE/131.0.6778.265/Google.Chrome.EXE.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# 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 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/Gravitational/TeleportConnect/18.6.2/Gravitational.TeleportConnect.yaml b/manifests/g/Gravitational/TeleportConnect/18.6.2/Gravitational.TeleportConnect.yaml new file mode 100644 index 0000000000000..d5e0a44057826 --- /dev/null +++ b/manifests/g/Gravitational/TeleportConnect/18.6.2/Gravitational.TeleportConnect.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: Gravitational.TeleportConnect +PackageVersion: 18.6.2 +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/g/GeoGebra/CASCalculator/6.0.887/GeoGebra.CASCalculator.yaml b/manifests/j/joadoumie/NBACommandPaletteExtension/0.0.1.0/joadoumie.NBACommandPaletteExtension.yaml similarity index 57% rename from manifests/g/GeoGebra/CASCalculator/6.0.887/GeoGebra.CASCalculator.yaml rename to manifests/j/joadoumie/NBACommandPaletteExtension/0.0.1.0/joadoumie.NBACommandPaletteExtension.yaml index c524d9dc95744..b63e40512e84d 100644 --- a/manifests/g/GeoGebra/CASCalculator/6.0.887/GeoGebra.CASCalculator.yaml +++ b/manifests/j/joadoumie/NBACommandPaletteExtension/0.0.1.0/joadoumie.NBACommandPaletteExtension.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.887 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 +# 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/k/KnifMelti/WAU-Settings-GUI/1.9.2.1/KnifMelti.WAU-Settings-GUI.installer.yaml b/manifests/k/KnifMelti/WAU-Settings-GUI/1.9.2.3/KnifMelti.WAU-Settings-GUI.installer.yaml similarity index 77% rename from manifests/k/KnifMelti/WAU-Settings-GUI/1.9.2.1/KnifMelti.WAU-Settings-GUI.installer.yaml rename to manifests/k/KnifMelti/WAU-Settings-GUI/1.9.2.3/KnifMelti.WAU-Settings-GUI.installer.yaml index 4f810601d7890..4cc5fbdc28fa1 100644 --- a/manifests/k/KnifMelti/WAU-Settings-GUI/1.9.2.1/KnifMelti.WAU-Settings-GUI.installer.yaml +++ b/manifests/k/KnifMelti/WAU-Settings-GUI/1.9.2.3/KnifMelti.WAU-Settings-GUI.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json PackageIdentifier: KnifMelti.WAU-Settings-GUI -PackageVersion: 1.9.2.1 +PackageVersion: 1.9.2.3 InstallModes: - silent InstallerType: zip @@ -13,8 +13,8 @@ NestedInstallerFiles: ArchiveBinariesDependOnPath: true Installers: - Architecture: x64 - InstallerUrl: https://github.com/KnifMelti/WAU-Settings-GUI/releases/download/v1.9.2.1/WAU-Settings-GUI-v1.9.2.1.zip - InstallerSha256: a68b0b416281e794c7dc8e3a7b3d5feec3af950c3dffcd95cb7c385abb956e49 + InstallerUrl: https://github.com/KnifMelti/WAU-Settings-GUI/releases/download/v1.9.2.3/WAU-Settings-GUI-v1.9.2.3.zip + InstallerSha256: 74f3cf18f39dba896e863126cc15e6c33719387873d889c59646a844fc998220 ElevationRequirement: elevatesSelf ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/k/KnifMelti/WAU-Settings-GUI/1.9.2.1/KnifMelti.WAU-Settings-GUI.locale.en-US.yaml b/manifests/k/KnifMelti/WAU-Settings-GUI/1.9.2.3/KnifMelti.WAU-Settings-GUI.locale.en-US.yaml similarity index 97% rename from manifests/k/KnifMelti/WAU-Settings-GUI/1.9.2.1/KnifMelti.WAU-Settings-GUI.locale.en-US.yaml rename to manifests/k/KnifMelti/WAU-Settings-GUI/1.9.2.3/KnifMelti.WAU-Settings-GUI.locale.en-US.yaml index 16be2d6973e9d..f0108afd8af90 100644 --- a/manifests/k/KnifMelti/WAU-Settings-GUI/1.9.2.1/KnifMelti.WAU-Settings-GUI.locale.en-US.yaml +++ b/manifests/k/KnifMelti/WAU-Settings-GUI/1.9.2.3/KnifMelti.WAU-Settings-GUI.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json PackageIdentifier: KnifMelti.WAU-Settings-GUI -PackageVersion: 1.9.2.1 +PackageVersion: 1.9.2.3 PackageLocale: en-US Publisher: KnifMelti PublisherUrl: https://github.com/KnifMelti @@ -30,7 +30,7 @@ Tags: - windows-sandbox - windowssandbox - wausettingsgui -ReleaseNotesUrl: https://github.com/KnifMelti/WAU-Settings-GUI/releases/tag/v1.9.2.1 +ReleaseNotesUrl: https://github.com/KnifMelti/WAU-Settings-GUI/releases/tag/v1.9.2.3 InstallationNotes: | Admin required to run (exe and shortcuts have the flag set). ManifestType: defaultLocale diff --git a/manifests/k/KnifMelti/WAU-Settings-GUI/1.9.2.1/KnifMelti.WAU-Settings-GUI.yaml b/manifests/k/KnifMelti/WAU-Settings-GUI/1.9.2.3/KnifMelti.WAU-Settings-GUI.yaml similarity index 90% rename from manifests/k/KnifMelti/WAU-Settings-GUI/1.9.2.1/KnifMelti.WAU-Settings-GUI.yaml rename to manifests/k/KnifMelti/WAU-Settings-GUI/1.9.2.3/KnifMelti.WAU-Settings-GUI.yaml index d2ff233a54ba6..4f04109c4a080 100644 --- a/manifests/k/KnifMelti/WAU-Settings-GUI/1.9.2.1/KnifMelti.WAU-Settings-GUI.yaml +++ b/manifests/k/KnifMelti/WAU-Settings-GUI/1.9.2.3/KnifMelti.WAU-Settings-GUI.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json PackageIdentifier: KnifMelti.WAU-Settings-GUI -PackageVersion: 1.9.2.1 +PackageVersion: 1.9.2.3 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/k/kevinboss/port/2.3.2/kevinboss.port.installer.yaml b/manifests/k/kevinboss/port/2.3.2/kevinboss.port.installer.yaml new file mode 100644 index 0000000000000..6aba0b65e68dc --- /dev/null +++ b/manifests/k/kevinboss/port/2.3.2/kevinboss.port.installer.yaml @@ -0,0 +1,15 @@ +# 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: kevinboss.port +PackageVersion: 2.3.2 +InstallerType: portable +Commands: +- port +ReleaseDate: 2025-12-17 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/kevinboss/port/releases/download/v2.3.2/port.exe + InstallerSha256: A023B83B921AD5E2C3AE0909B110B0450C4ED1EF89AE27589A41EA204AC7DFAC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/k/kevinboss/port/2.3.2/kevinboss.port.locale.en-US.yaml b/manifests/k/kevinboss/port/2.3.2/kevinboss.port.locale.en-US.yaml new file mode 100644 index 0000000000000..aa487e1db130e --- /dev/null +++ b/manifests/k/kevinboss/port/2.3.2/kevinboss.port.locale.en-US.yaml @@ -0,0 +1,27 @@ +# 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: kevinboss.port +PackageVersion: 2.3.2 +PackageLocale: en-US +Publisher: Kevin Boss +PublisherUrl: https://github.com/kevinboss +PublisherSupportUrl: https://github.com/kevinboss/port/issues +PackageName: port +PackageUrl: https://github.com/kevinboss/port +License: GPL-3.0 +LicenseUrl: https://github.com/kevinboss/port/blob/HEAD/LICENSE +ShortDescription: A tool that has been designed to manage multiple docker images and / or tags of these images. +Description: |- + A tool that has been designed to manage multiple docker images and / or tags of these images. + It allows the user to run one of these images / tags in a container, creating snapshots of that running container and manage the downloaded images +Tags: +- container +- container-image +- developer-tools +- devtools +- docker +ReleaseNotes: 'Full Changelog: v2.3.1...v2.3.2' +ReleaseNotesUrl: https://github.com/kevinboss/port/releases/tag/v2.3.2 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/k/kevinboss/port/2.3.2/kevinboss.port.yaml b/manifests/k/kevinboss/port/2.3.2/kevinboss.port.yaml new file mode 100644 index 0000000000000..5d09bb29e6a3f --- /dev/null +++ b/manifests/k/kevinboss/port/2.3.2/kevinboss.port.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: kevinboss.port +PackageVersion: 2.3.2 +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/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/w/WernerKrenn/WsWinAprs/1.4.2/WernerKrenn.WsWinAprs.installer.yaml b/manifests/w/WernerKrenn/WsWinAprs/1.4.2/WernerKrenn.WsWinAprs.installer.yaml new file mode 100644 index 0000000000000..9ff08d0edf829 --- /dev/null +++ b/manifests/w/WernerKrenn/WsWinAprs/1.4.2/WernerKrenn.WsWinAprs.installer.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: WernerKrenn.WsWinAprs +PackageVersion: 1.4.2 +InstallerType: portable +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: uninstallPrevious +Commands: +- wswinaprs +ReleaseDate: 2013-06-30 +Installers: +- Architecture: x86 + InstallerUrl: https://www.pc-wetterstation.de/wswinaprs.exe + InstallerSha256: 2B4E6725C4A34FB6DB5780E66218A44672C5B87C54D0B57AC9B39E8EE9183B4B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/w/WernerKrenn/WsWinAprs/1.4.2/WernerKrenn.WsWinAprs.locale.en-US.yaml b/manifests/w/WernerKrenn/WsWinAprs/1.4.2/WernerKrenn.WsWinAprs.locale.en-US.yaml new file mode 100644 index 0000000000000..19d986c877fec --- /dev/null +++ b/manifests/w/WernerKrenn/WsWinAprs/1.4.2/WernerKrenn.WsWinAprs.locale.en-US.yaml @@ -0,0 +1,21 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: WernerKrenn.WsWinAprs +PackageVersion: 1.4.2 +PackageLocale: en-US +Publisher: Werner Krenn +PublisherUrl: https://www.pc-wetterstation.de/enindex.html +PublisherSupportUrl: https://www.pc-wetterstation.de/forum/app.php/portal +Author: Werner Krenn +PackageName: WsWinAprs +PackageUrl: https://www.pc-wetterstation.de/en2index.html +License: Proprietary +LicenseUrl: https://www.pc-wetterstation.de/en41index.html +Copyright: Copyright © Werner Krenn +CopyrightUrl: https://www.pc-wetterstation.de/en4index.html +ShortDescription: WsWinAprs - Program for transmitting of meteorological data to Citizen Weather Observer Program. +Moniker: wswinaprs +ReleaseNotesUrl: https://www.pc-wetterstation.de/info_en.txt +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/w/WernerKrenn/WsWinAprs/1.4.2/WernerKrenn.WsWinAprs.yaml b/manifests/w/WernerKrenn/WsWinAprs/1.4.2/WernerKrenn.WsWinAprs.yaml new file mode 100644 index 0000000000000..22385fbb36388 --- /dev/null +++ b/manifests/w/WernerKrenn/WsWinAprs/1.4.2/WernerKrenn.WsWinAprs.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: WernerKrenn.WsWinAprs +PackageVersion: 1.4.2 +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/g/GeoGebra/CASCalculator/6.0.901/GeoGebra.CASCalculator.yaml b/manifests/x/xemu-project/xemu/0.8.125/xemu-project.xemu.yaml similarity index 75% rename from manifests/g/GeoGebra/CASCalculator/6.0.901/GeoGebra.CASCalculator.yaml rename to manifests/x/xemu-project/xemu/0.8.125/xemu-project.xemu.yaml index f654979d3f0b6..e25101bf8bec8 100644 --- a/manifests/g/GeoGebra/CASCalculator/6.0.901/GeoGebra.CASCalculator.yaml +++ b/manifests/x/xemu-project/xemu/0.8.125/xemu-project.xemu.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.901 +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/g/GeoGebra/CASCalculator/6.0.902/GeoGebra.CASCalculator.yaml b/manifests/x/xemu-project/xemu/0.8.127/xemu-project.xemu.yaml similarity index 75% rename from manifests/g/GeoGebra/CASCalculator/6.0.902/GeoGebra.CASCalculator.yaml rename to manifests/x/xemu-project/xemu/0.8.127/xemu-project.xemu.yaml index 51c928d2bd3bb..a4d5d161193c5 100644 --- a/manifests/g/GeoGebra/CASCalculator/6.0.902/GeoGebra.CASCalculator.yaml +++ b/manifests/x/xemu-project/xemu/0.8.127/xemu-project.xemu.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.902 +PackageIdentifier: xemu-project.xemu +PackageVersion: 0.8.127 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/y/Yandex/Browser/25.12.1.1134/Yandex.Browser.installer.yaml b/manifests/y/Yandex/Browser/25.12.1.1134/Yandex.Browser.installer.yaml new file mode 100644 index 0000000000000..9572be4bfcac7 --- /dev/null +++ b/manifests/y/Yandex/Browser/25.12.1.1134/Yandex.Browser.installer.yaml @@ -0,0 +1,58 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Yandex.Browser +PackageVersion: 25.12.1.1134 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent + Log: --verbose-logging --log-file="" + Custom: --do-not-launch-browser +InstallerSuccessCodes: +- 1 +- 3 +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +- tel +FileExtensions: +- crx +- css +- epub +- fb2 +- gif +- htm +- html +- infected +- jpeg +- jpg +- js +- mhtml +- pdf +- png +- shtml +- svg +- swf +- tif +- tiff +- txt +- webm +- webp +- xht +- xhtml +- xml +ProductCode: YandexBrowser +ReleaseDate: 2025-12-24 +Installers: +- Architecture: x64 + InstallerUrl: https://download.cdn.yandex.net/browser/int/25_12_1_1134_96237/en/Yandex.exe + InstallerSha256: 081AA541FE0C332B378E18C08C787D84F1361436066A5260D1248C312C7935DC +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/y/Yandex/Browser/25.12.1.1134/Yandex.Browser.locale.en-US.yaml b/manifests/y/Yandex/Browser/25.12.1.1134/Yandex.Browser.locale.en-US.yaml new file mode 100644 index 0000000000000..6a9b4d45c815e --- /dev/null +++ b/manifests/y/Yandex/Browser/25.12.1.1134/Yandex.Browser.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Yandex.Browser +PackageVersion: 25.12.1.1134 +PackageLocale: en-US +Publisher: Yandex +PublisherUrl: https://yandex.com/ +PublisherSupportUrl: https://browser.yandex.com/help/en/ +PrivacyUrl: https://yandex.com/legal/confidential/en/ +Author: YANDEX LLC +PackageName: Yandex Browser +PackageUrl: https://browser.yandex.com/ +License: Freeware +LicenseUrl: https://yandex.com/legal/browser_agreement/en/ +Copyright: Copyright 2025 Yandex. All rights reserved. +ShortDescription: Yandex Browser delivers fast and secure browsing with built-in Alice and the ability to sync passwords, bookmarks, and bank cards across devices. +Tags: +- browser +- chromium +- internet +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/y/Yandex/Browser/25.12.1.1134/Yandex.Browser.locale.zh-CN.yaml b/manifests/y/Yandex/Browser/25.12.1.1134/Yandex.Browser.locale.zh-CN.yaml new file mode 100644 index 0000000000000..bdf2700c4b72c --- /dev/null +++ b/manifests/y/Yandex/Browser/25.12.1.1134/Yandex.Browser.locale.zh-CN.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Yandex.Browser +PackageVersion: 25.12.1.1134 +PackageLocale: zh-CN +License: 免费软件 +Copyright: 版权所有 2025 Yandex。保留所有权利。 +ShortDescription: Yandex 浏览器内置 Alice,可跨设备同步密码、书签和银行卡,浏览速度快且安全。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GeoGebra/CASCalculator/6.0.903/GeoGebra.CASCalculator.yaml b/manifests/y/Yandex/Browser/25.12.1.1134/Yandex.Browser.yaml similarity index 75% rename from manifests/g/GeoGebra/CASCalculator/6.0.903/GeoGebra.CASCalculator.yaml rename to manifests/y/Yandex/Browser/25.12.1.1134/Yandex.Browser.yaml index 4585a00ac15f1..364e14cd29581 100644 --- a/manifests/g/GeoGebra/CASCalculator/6.0.903/GeoGebra.CASCalculator.yaml +++ b/manifests/y/Yandex/Browser/25.12.1.1134/Yandex.Browser.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json -PackageIdentifier: GeoGebra.CASCalculator -PackageVersion: 6.0.903 +PackageIdentifier: Yandex.Browser +PackageVersion: 25.12.1.1134 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0