diff --git a/.github/policies/labelManagement.issueOpened.yml b/.github/policies/labelManagement.issueOpened.yml index c66e1e79fdd64..64a6bf8926eea 100644 --- a/.github/policies/labelManagement.issueOpened.yml +++ b/.github/policies/labelManagement.issueOpened.yml @@ -43,6 +43,9 @@ configuration: - addReply: reply: >- [![Validation Pipeline Badge](https://img.shields.io/endpoint?url=https://winget-validation-pme-f8gqfjhzacawbecy.z01.azurefd.net/api/GetServiceComponentStatusBadge?component=ValidationPipeline "Validation Pipeline Badge")](https://dev.azure.com/shine-oss/winget-pkgs/_build?definitionId=14) [![Publish Pipeline Badge](https://img.shields.io/endpoint?url=https://winget-validation-pme-f8gqfjhzacawbecy.z01.azurefd.net/api/GetServiceComponentStatusBadge?component=PublishPipeline "Publish Pipeline Badge")](https://dev.azure.com/shine-oss/winget-pkgs/_build?definitionId=12) + + + - #325114 # If the user is a first-time contributor, add the Needs-CLA Label - if: - activitySenderHasAssociation: diff --git a/Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/YamlCreate.InstallerDetection.psm1 b/Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/YamlCreate.InstallerDetection.psm1 index 712c050e118e3..8de7a978cbf75 100644 --- a/Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/YamlCreate.InstallerDetection.psm1 +++ b/Tools/Modules/YamlCreate/YamlCreate.InstallerDetection/YamlCreate.InstallerDetection.psm1 @@ -387,7 +387,7 @@ function Resolve-InstallerType { ) # Ordering is important here due to the specificity achievable by each of the detection methods - # if (Test-IsFont -Path $Path) { return 'font' } # Font detection is not implemented yet + if (Test-IsFont -Path $Path) { return 'font' } if (Test-IsWix -Path $Path) { return 'wix' } if (Test-IsMsi -Path $Path) { return 'msi' } if (Test-IsMsix -Path $Path) { return 'msix' } diff --git a/Tools/YamlCreate.ps1 b/Tools/YamlCreate.ps1 index 718be04d37919..b7a9065281698 100644 --- a/Tools/YamlCreate.ps1 +++ b/Tools/YamlCreate.ps1 @@ -236,8 +236,8 @@ if ($Settings) { exit } -$ScriptHeader = '# Created with YamlCreate.ps1 v2.5.0' -$ManifestVersion = '1.10.0' +$ScriptHeader = '# Created with YamlCreate.ps1 v2.7.0' +$ManifestVersion = '1.12.0' $PSDefaultParameterValues = @{ '*:Encoding' = 'UTF8' } $Utf8NoBomEncoding = New-Object System.Text.UTF8Encoding $False $ofs = ', ' @@ -273,11 +273,18 @@ $useDirectSchemaLink = if ($env:GITHUB_ACTIONS -eq $true) { } else { (Invoke-WebRequest "https://aka.ms/winget-manifest.version.$ManifestVersion.schema.json" -UseBasicParsing).Content -match '' } + +if ($ManifestVersion -ne 'latest') { + $FullManifestVersion = "v$ManifestVersion" +} else { + $FullManifestVersion = $ManifestVersion +} + $SchemaUrls = @{ - version = if ($useDirectSchemaLink) { "https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v$ManifestVersion/manifest.version.$ManifestVersion.json" } else { "https://aka.ms/winget-manifest.version.$ManifestVersion.schema.json" } - defaultLocale = if ($useDirectSchemaLink) { "https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v$ManifestVersion/manifest.defaultLocale.$ManifestVersion.json" } else { "https://aka.ms/winget-manifest.defaultLocale.$ManifestVersion.schema.json" } - locale = if ($useDirectSchemaLink) { "https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v$ManifestVersion/manifest.locale.$ManifestVersion.json" } else { "https://aka.ms/winget-manifest.locale.$ManifestVersion.schema.json" } - installer = if ($useDirectSchemaLink) { "https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/v$ManifestVersion/manifest.installer.$ManifestVersion.json" } else { "https://aka.ms/winget-manifest.installer.$ManifestVersion.schema.json" } + version = if ($useDirectSchemaLink) { "https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/$FullManifestVersion/manifest.version.$ManifestVersion.json" } else { "https://aka.ms/winget-manifest.version.$ManifestVersion.schema.json" } + defaultLocale = if ($useDirectSchemaLink) { "https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/$FullManifestVersion/manifest.defaultLocale.$ManifestVersion.json" } else { "https://aka.ms/winget-manifest.defaultLocale.$ManifestVersion.schema.json" } + locale = if ($useDirectSchemaLink) { "https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/$FullManifestVersion/manifest.locale.$ManifestVersion.json" } else { "https://aka.ms/winget-manifest.locale.$ManifestVersion.schema.json" } + installer = if ($useDirectSchemaLink) { "https://raw.githubusercontent.com/microsoft/winget-cli/master/schemas/JSON/manifests/$FullManifestVersion/manifest.installer.$ManifestVersion.json" } else { "https://aka.ms/winget-manifest.installer.$ManifestVersion.schema.json" } } # Fetch Schema data from github for entry validation, key ordering, and automatic commenting @@ -292,6 +299,13 @@ try { $InstallerEntryProperties = (ConvertTo-Yaml $InstallerSchema.definitions.Installer.properties | ConvertFrom-Yaml -Ordered).Keys $InstallerDependencyProperties = (ConvertTo-Yaml $InstallerSchema.definitions.Dependencies.properties | ConvertFrom-Yaml -Ordered).Keys $AppsAndFeaturesEntryProperties = (ConvertTo-Yaml $InstallerSchema.definitions.AppsAndFeaturesEntry.properties | ConvertFrom-Yaml -Ordered).Keys + + # Update the manifest version in case `latest` was specified + $ManifestVersion = $VersionSchema.properties.ManifestVersion.default + # Update the schema URLs to reflect the correct version for use in the manifest header + @($SchemaUrls.Keys) | ForEach-Object { + $SchemaUrls[$_] = "https://aka.ms/winget-manifest.$_.$ManifestVersion.schema.json" + } } catch { # Here we want to pass the exception as an inner exception for debugging if necessary throw [System.Net.WebException]::new('Manifest schemas could not be downloaded. Try running the script again', $_.Exception) @@ -851,10 +865,27 @@ Function Read-NestedInstaller { } } } + + if ($_EffectiveType -eq 'font') { + # Prompt to see if multiple entries are needed + $_menu = @{ + entries = @( + '[Y] Yes' + '*[N] No' + ) + Prompt = 'Do you want to create another font entry?' + DefaultString = 'N' + } + switch ( Invoke-KeypressMenu -Prompt $_menu['Prompt'] -Entries $_menu['Entries'] -DefaultString $_menu['DefaultString']) { + 'Y' { $AnotherNestedInstaller = $true } + default { $AnotherNestedInstaller = $false } + } + } $_NestedInstallerFiles += $_InstallerFile } until (!$AnotherNestedInstaller) $_Installer['NestedInstallerFiles'] = $_NestedInstallerFiles } + Write-Host return $_Installer } @@ -1307,6 +1338,11 @@ Function Read-InstallerEntry { if ($AnotherInstaller -eq '0') { Write-Host; Read-InstallerEntry } + + # If the app folder is in manifests and the installer type is font, change the app folder to point at fonts + if ($script:AppFolder -match 'manifests' -and (Get-EffectiveInstallerType $_Installer) -eq 'font') { + $script:AppFolder = $script:AppFolder -replace 'manifests', 'fonts' + } } # Prompts user for Installer Values using the `Quick Update` Method @@ -2435,6 +2471,13 @@ if (Test-Path -Path "$PSScriptRoot\..\manifests") { $ManifestsFolder = (Resolve-Path '.\').Path } +# Set the root folder where new font manifests should be created +if (Test-Path -Path "$PSScriptRoot\..\fonts") { + $FontsFolder = (Resolve-Path "$PSScriptRoot\..\fonts").Path +} else { + $FontsFolder = (Resolve-Path '.\').Path +} + # Initialize the return value to be a success $script:_returnValue = [ReturnValue]::new(200) @@ -2695,6 +2738,33 @@ if ($ScriptSettings.ContinueWithExistingPRs -ne 'always' -and $script:Option -ne # Set the folder for the specific package and version $script:AppFolder = Join-Path $ManifestsFolder -ChildPath $PackageIdentifier.ToLower().Chars(0) | Join-Path -ChildPath $PackageIdentifierFolder | Join-Path -ChildPath $PackageVersion +$script:FontFolder = Join-Path $FontsFolder -ChildPath $PackageIdentifier.ToLower().Chars(0) | Join-Path -ChildPath $PackageIdentifierFolder | Join-Path -ChildPath $PackageVersion + +# Attempt to see if the old package exists in the manifests folder, font folder, or both +$script:DestinationFolder = $null; +if (Test-Path -Path (Split-Path $script:AppFolder)) { + $script:DestinationFolder = $script:AppFolder +} +if (Test-Path -Path (Split-Path $script:FontFolder)) { + if ($script:DestinationFolder) { + $script:DestinationFolder = @($script:DestinationFolder; $script:FontFolder) + } else { + $script:DestinationFolder = $script:FontFolder + } +} +if ($script:DestinationFolder -and $script:DestinationFolder.Count -gt 1) { + $_menu = @{ + entries = @('[1] Manifests Folder'; '[2] Fonts Folder') + Prompt = 'The package exists in both the manifests and fonts folder. Which folder do you want to use?' + DefaultString = '1' + } + switch ( Invoke-KeypressMenu -Prompt $_menu['Prompt'] -Entries $_menu['Entries'] -DefaultString $_menu['DefaultString'] ) { + '1' { $script:AppFolder = $script:AppFolder } + '2' { $script:AppFolder = $script:FontFolder } + } +} elseif ($script:DestinationFolder -and $script:DestinationFolder.Count -eq 1) { + $script:AppFolder = $script:DestinationFolder +} # If the user selected `NewLocale` or `EditMetadata` the version *MUST* already exist in the folder structure if ($script:Option -in @('NewLocale'; 'EditMetadata'; 'RemoveManifest')) { @@ -2702,6 +2772,11 @@ if ($script:Option -in @('NewLocale'; 'EditMetadata'; 'RemoveManifest')) { if (Test-Path -Path "$AppFolder\..\$PackageVersion") { $script:OldManifests = Get-ChildItem -Path "$AppFolder\..\$PackageVersion" $LastVersion = $PackageVersion + } elseif (Test-Path -Path "$FontFolder\..\$PackageVersion") { + $script:OldManifests = Get-ChildItem -Path "$FontFolder\..\$PackageVersion" + $LastVersion = $PackageVersion + # Intentionally override AppFolder here to ensure the rest of the script works as expected + $script:AppFolder = $script:FontFolder } # If the old manifests could not be found, request a new version while (-not ($OldManifests.Name -like "$PackageIdentifier*.yaml")) { @@ -2713,17 +2788,21 @@ if ($script:Option -in @('NewLocale'; 'EditMetadata'; 'RemoveManifest')) { } if (Test-Path -Path "$AppFolder\..\$PromptVersion") { $script:OldManifests = Get-ChildItem -Path "$AppFolder\..\$PromptVersion" + $script:AppFolder = Join-Path (Split-Path $AppFolder) -ChildPath $LastVersion + } elseif (Test-Path -Path "$FontFolder\..\$PromptVersion") { + $script:OldManifests = Get-ChildItem -Path "$FontFolder\..\$PromptVersion" + # Intentionally use AppFolder here to ensure the rest of the script works as expected + $script:AppFolder = Join-Path (Split-Path $FontFolder) -ChildPath $LastVersion } # If a new version is entered, we need to be sure to update the folder for writing manifests $LastVersion = $PromptVersion - $script:AppFolder = Join-Path (Split-Path $AppFolder) -ChildPath $LastVersion $script:PackageVersion = $LastVersion } } # If the user selected `QuickUpdateVersion`, the old manifests must exist # If the user selected `New`, the old manifest type is specified as none -if (-not (Test-Path -Path "$AppFolder\..")) { +if (-not (Test-Path -Path "$AppFolder\..") -and -not (Test-Path -Path "$FontFolder\..")) { if ($script:Option -in @('QuickUpdateVersion', 'Auto')) { Write-Host -ForegroundColor Red 'This option requires manifest of previous version of the package. If you want to create a new package, please select Option 1.' Invoke-CleanExit diff --git a/manifests/a/ART/ART/1.25.12/ART.ART.installer.yaml b/manifests/a/ART/ART/1.25.12/ART.ART.installer.yaml new file mode 100644 index 0000000000000..968e550e73d1f --- /dev/null +++ b/manifests/a/ART/ART/1.25.12/ART.ART.installer.yaml @@ -0,0 +1,27 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ART.ART +PackageVersion: 1.25.12 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +ProductCode: ART1.25.12_is1 +ReleaseDate: 2025-12-23 +AppsAndFeaturesEntries: +- ProductCode: ART1.25.12_is1 +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\ART\1.25.12' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/artpixls/ART/releases/download/1.25.12/ART_1.25.12_Win64.exe + InstallerSha256: 131612348E394C2D4295C9D6A74886D88947E7FC1434E3F75A18A8D80D80699A +- Architecture: arm64 + InstallerUrl: https://github.com/artpixls/ART/releases/download/1.25.12/ART_1.25.12_Windows_arm64.exe + InstallerSha256: CFE736200A5123544A71252DC6353518C9AECE8183356A54AB5BDAEC66D59527 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/ART/ART/1.25.12/ART.ART.locale.en-US.yaml b/manifests/a/ART/ART/1.25.12/ART.ART.locale.en-US.yaml new file mode 100644 index 0000000000000..3d28627bca83c --- /dev/null +++ b/manifests/a/ART/ART/1.25.12/ART.ART.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ART.ART +PackageVersion: 1.25.12 +PackageLocale: en-US +Publisher: ART +PublisherUrl: https://bitbucket.org/agriggio/art/wiki/Home +PublisherSupportUrl: https://bitbucket.org/agriggio/art/issues +Author: Alberto Griggio +PackageName: ART +PackageUrl: https://bitbucket.org/agriggio/art/ +License: GPL-3.0-only +LicenseUrl: https://github.com/artpixls/ART/blob/HEAD/LICENSE.txt +ShortDescription: ART is a fork of RawTherapee, a powerful cross-platform raw photo processing program. +Description: ART is a derivative of the popular RawTherapee, trading a bit of customization and control over various processing parameters for a simpler and (hopefully) easier to use interface, while still maintaining the power and quality of RawTherapee. +Moniker: art +Tags: +- image-editor +- image-processing +- open-source +- photo +- photo-editor +- photo-processing +- raw +ReleaseNotes: 1.25.12 +ReleaseNotesUrl: https://github.com/artraweditor/ART/releases/tag/1.25.12 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/ART/ART/1.25.12/ART.ART.yaml b/manifests/a/ART/ART/1.25.12/ART.ART.yaml new file mode 100644 index 0000000000000..5f52afa2fbd3c --- /dev/null +++ b/manifests/a/ART/ART/1.25.12/ART.ART.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: ART.ART +PackageVersion: 1.25.12 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/amir1376/ABDownloadManager/1.8.2/amir1376.ABDownloadManager.installer.yaml b/manifests/a/amir1376/ABDownloadManager/1.8.2/amir1376.ABDownloadManager.installer.yaml new file mode 100644 index 0000000000000..f6166cc4da4c6 --- /dev/null +++ b/manifests/a/amir1376/ABDownloadManager/1.8.2/amir1376.ABDownloadManager.installer.yaml @@ -0,0 +1,25 @@ +# Created with WinGet Updater using komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: amir1376.ABDownloadManager +PackageVersion: 1.8.2 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +ProductCode: ABDownloadManager +ReleaseDate: 2025-12-23 +AppsAndFeaturesEntries: +- DisplayName: AB Download Manager + ProductCode: ABDownloadManager +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\ABDownloadManager' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/amir1376/ab-download-manager/releases/download/v1.8.2/ABDownloadManager_1.8.2_windows_x64.exe + InstallerSha256: DE82F798FEA91B2AFFB0BC9767AD7F966E7B3DB146DBA5BF53198391FCE01C01 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/a/amir1376/ABDownloadManager/1.8.2/amir1376.ABDownloadManager.locale.en-US.yaml b/manifests/a/amir1376/ABDownloadManager/1.8.2/amir1376.ABDownloadManager.locale.en-US.yaml new file mode 100644 index 0000000000000..4f582324d9b6c --- /dev/null +++ b/manifests/a/amir1376/ABDownloadManager/1.8.2/amir1376.ABDownloadManager.locale.en-US.yaml @@ -0,0 +1,45 @@ +# Created with WinGet Updater using komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: amir1376.ABDownloadManager +PackageVersion: 1.8.2 +PackageLocale: en-US +Publisher: abdownloadmanager.com +PublisherUrl: https://github.com/amir1376 +PublisherSupportUrl: https://github.com/amir1376/ab-download-manager/issues +Author: AmirHossein Abdolmotallebi +PackageName: ABDownloadManager +PackageUrl: https://abdownloadmanager.com/ +License: Apache-2.0 +LicenseUrl: https://github.com/amir1376/ab-download-manager/blob/HEAD/LICENSE +ShortDescription: A Download Manager that speeds up your downloads. +Description: AB Download Manager is a desktop app which lets you manage and organize your download files better than before. +Tags: +- chrome +- compose +- compose-multiplatform +- desktop +- desktop-app +- download +- download-manager +- downloader +- downloadmanager +- firefox +- kotlin +- linux +- windows +ReleaseNotes: |- + 1.8.2 + Fixed + - Resolved issues with the In-App update feature on some android devices + - Disabled notification badges on the launcher icon on android + - The application crashes on some devices (desktops) because of an issue in system theme detection logic + Improved + - Updated translations + - Added tooltips for action buttons + - Display selected count in the "Add Multi Download" page on desktop (#970) + - Reduced battery consumption + - Various UI/UX enhancements +ReleaseNotesUrl: https://github.com/amir1376/ab-download-manager/releases/tag/v1.8.2 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/a/amir1376/ABDownloadManager/1.8.2/amir1376.ABDownloadManager.yaml b/manifests/a/amir1376/ABDownloadManager/1.8.2/amir1376.ABDownloadManager.yaml new file mode 100644 index 0000000000000..7fd5770684135 --- /dev/null +++ b/manifests/a/amir1376/ABDownloadManager/1.8.2/amir1376.ABDownloadManager.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: amir1376.ABDownloadManager +PackageVersion: 1.8.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/a/aquaproj/aqua/2.56.0/aquaproj.aqua.installer.yaml b/manifests/a/aquaproj/aqua/2.56.0/aquaproj.aqua.installer.yaml new file mode 100644 index 0000000000000..a720c940bebae --- /dev/null +++ b/manifests/a/aquaproj/aqua/2.56.0/aquaproj.aqua.installer.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +PackageIdentifier: aquaproj.aqua +PackageVersion: 2.56.0 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-12-23" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: aqua.exe + PortableCommandAlias: aqua + InstallerUrl: https://github.com/aquaproj/aqua/releases/download/v2.56.0/aqua_windows_arm64.zip + InstallerSha256: ca072548df97812ecac3bf863d5e06623cf7eb69c6cfa755719ee7695607b80c + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: aqua.exe + PortableCommandAlias: aqua + InstallerUrl: https://github.com/aquaproj/aqua/releases/download/v2.56.0/aqua_windows_amd64.zip + InstallerSha256: 6d1892f8bcb0868bd34ee97ca712b4de0f8a68adeb3f19d552f6a62f1a6431e0 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/a/aquaproj/aqua/2.56.0/aquaproj.aqua.locale.en-US.yaml b/manifests/a/aquaproj/aqua/2.56.0/aquaproj.aqua.locale.en-US.yaml new file mode 100644 index 0000000000000..704b56c6c9947 --- /dev/null +++ b/manifests/a/aquaproj/aqua/2.56.0/aquaproj.aqua.locale.en-US.yaml @@ -0,0 +1,20 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: aquaproj.aqua +PackageVersion: 2.56.0 +PackageLocale: en-US +Publisher: aquaproj +PublisherSupportUrl: https://github.com/aquaproj/aqua/discussions +PackageName: aqua +PackageUrl: https://github.com/aquaproj/aqua +License: mit +LicenseUrl: https://github.com/aquaproj/aqua/blob/main/LICENSE +ShortDescription: Declarative CLI Version manager written in Go +Description: | + Declarative CLI Version manager written in Go. + Support Lazy Install, Registry, and continuous update by Renovate. + CLI version is switched seamlessly +Moniker: aqua +ReleaseNotesUrl: https://github.com/aquaproj/aqua/releases/tag/v2.56.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/a/aquaproj/aqua/2.56.0/aquaproj.aqua.yaml b/manifests/a/aquaproj/aqua/2.56.0/aquaproj.aqua.yaml new file mode 100644 index 0000000000000..0b4be3c1ca4a4 --- /dev/null +++ b/manifests/a/aquaproj/aqua/2.56.0/aquaproj.aqua.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +PackageIdentifier: aquaproj.aqua +PackageVersion: 2.56.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/a/astral-sh/ty/0.0.3/astral-sh.ty.installer.yaml b/manifests/a/astral-sh/ty/0.0.3/astral-sh.ty.installer.yaml new file mode 100644 index 0000000000000..ec15e947736f0 --- /dev/null +++ b/manifests/a/astral-sh/ty/0.0.3/astral-sh.ty.installer.yaml @@ -0,0 +1,36 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: astral-sh.ty +PackageVersion: 0.0.3 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ty.exe +InstallModes: +- silent +UpgradeBehavior: install +Commands: +- ty +ReleaseDate: 2025-12-18 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/astral-sh/ty/releases/download/0.0.3/ty-i686-pc-windows-msvc.zip + InstallerSha256: 2F2F58DD6121B20AEE64600698BF87BBEE60341B88C6BE61B677103A0259236B + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + InstallerUrl: https://github.com/astral-sh/ty/releases/download/0.0.3/ty-x86_64-pc-windows-msvc.zip + InstallerSha256: D69285589A5D343CB80620B35053B446033F96C45934DD0445DF61AB13F79D10 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/astral-sh/ty/releases/download/0.0.3/ty-aarch64-pc-windows-msvc.zip + InstallerSha256: E42CA1D7C7A31A9CCFAA23B8694BFEF2F9FC0FA3496F4478A8BE9EF237260E6B + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/astral-sh/ty/0.0.3/astral-sh.ty.locale.en-US.yaml b/manifests/a/astral-sh/ty/0.0.3/astral-sh.ty.locale.en-US.yaml new file mode 100644 index 0000000000000..ffd83603cdf8c --- /dev/null +++ b/manifests/a/astral-sh/ty/0.0.3/astral-sh.ty.locale.en-US.yaml @@ -0,0 +1,88 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: astral-sh.ty +PackageVersion: 0.0.3 +PackageLocale: en-US +Publisher: Astral Software Inc. +PublisherUrl: https://astral.sh/ +PublisherSupportUrl: https://github.com/astral-sh/ty/issues +Author: Astral Software Inc. +PackageName: ty +PackageUrl: https://github.com/astral-sh/ty +License: MIT +LicenseUrl: https://github.com/astral-sh/ty/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025 Astral Software Inc. +CopyrightUrl: https://github.com/astral-sh/ty/blob/HEAD/LICENSE +ShortDescription: An extremely fast Python type checker and language server, written in Rust. +Moniker: ty +Tags: +- python +ReleaseNotes: |- + Release Notes + Released on 2025-12-17. + LSP server + - Improve rendering of signatures in hovers (#22007) + Core type checking + - Apply narrowing to len calls based on argument size (#22026) + - Don't add identical lower/upper bounds multiple times when inferring specializations (#22030) + - Improve unsupported-base and invalid-super-argument diagnostics to avoid extremely long lines when encountering verbose types (#22022) + - Improve disambiguation of types in many cases (#22019) + - Respect deferred values in keyword arguments etc. for .pyi files (#22029) + - Handle field specifier functions that accept **kwargs and recognize metaclass-based transformers as instances of DataclassInstance (#22018) + Contributors + - @charliermarsh + - @sharkdp + - @Gankra + - @zanieb + - @AlexWaygood + - @dcreager + Install ty 0.0.3 + Install prebuilt binaries via shell script + curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/ty/releases/download/0.0.3/ty-installer.sh | sh + Install prebuilt binaries via powershell script + powershell -ExecutionPolicy Bypass -c "irm https://github.com/astral-sh/ty/releases/download/0.0.3/ty-installer.ps1 | iex" + Download ty 0.0.3 + ─────────────────────────────────────────────┬────────────────────────────┬───────────── + File │Platform │Checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-aarch64-apple-darwin.tar.gz │Apple Silicon macOS │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-x86_64-apple-darwin.tar.gz │Intel macOS │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-aarch64-pc-windows-msvc.zip │ARM64 Windows │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-i686-pc-windows-msvc.zip │x86 Windows │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-x86_64-pc-windows-msvc.zip │x64 Windows │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-aarch64-unknown-linux-gnu.tar.gz │ARM64 Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-i686-unknown-linux-gnu.tar.gz │x86 Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-powerpc64-unknown-linux-gnu.tar.gz │PPC64 Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-powerpc64le-unknown-linux-gnu.tar.gz │PPC64LE Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-s390x-unknown-linux-gnu.tar.gz │S390x Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-x86_64-unknown-linux-gnu.tar.gz │x64 Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-armv7-unknown-linux-gnueabihf.tar.gz │ARMv7 Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-aarch64-unknown-linux-musl.tar.gz │ARM64 MUSL Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-i686-unknown-linux-musl.tar.gz │x86 MUSL Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-x86_64-unknown-linux-musl.tar.gz │x64 MUSL Linux │checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-arm-unknown-linux-musleabihf.tar.gz │ARMv6 MUSL Linux (Hardfloat)│checksum + ─────────────────────────────────────────────┼────────────────────────────┼───────────── + ty-armv7-unknown-linux-musleabihf.tar.gz │ARMv7 MUSL Linux │checksum + ─────────────────────────────────────────────┴────────────────────────────┴───────────── +ReleaseNotesUrl: https://github.com/astral-sh/ty/releases/tag/0.0.3 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.astral.sh/ty/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/astral-sh/ty/0.0.3/astral-sh.ty.yaml b/manifests/a/astral-sh/ty/0.0.3/astral-sh.ty.yaml new file mode 100644 index 0000000000000..527b799e8f4f9 --- /dev/null +++ b/manifests/a/astral-sh/ty/0.0.3/astral-sh.ty.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: astral-sh.ty +PackageVersion: 0.0.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/Blocktronics/Moebius/1.0.29/Blocktronics.Moebius.installer.yaml b/manifests/b/Blocktronics/Moebius/1.0.29/Blocktronics.Moebius.installer.yaml new file mode 100644 index 0000000000000..cb887b6f91812 --- /dev/null +++ b/manifests/b/Blocktronics/Moebius/1.0.29/Blocktronics.Moebius.installer.yaml @@ -0,0 +1,12 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Blocktronics.Moebius +PackageVersion: 1.0.29 +InstallerType: nullsoft +ReleaseDate: 2021-04-11 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/blocktronics/moebius/releases/download/1.0.29/Moebius.Setup.exe + InstallerSha256: 7015DDAC4B1132398C68DC18F1024A228BD36EC1FAB6D6ED8160C072A3BCCC6A +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/b/Blocktronics/Moebius/1.0.29/Blocktronics.Moebius.locale.en-US.yaml b/manifests/b/Blocktronics/Moebius/1.0.29/Blocktronics.Moebius.locale.en-US.yaml new file mode 100644 index 0000000000000..e6f73907cf5ba --- /dev/null +++ b/manifests/b/Blocktronics/Moebius/1.0.29/Blocktronics.Moebius.locale.en-US.yaml @@ -0,0 +1,25 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Blocktronics.Moebius +PackageVersion: 1.0.29 +PackageLocale: en-US +Publisher: Blocktronics +PublisherUrl: https://github.com/blocktronics +PublisherSupportUrl: https://github.com/blocktronics/moebius/issues +Author: Andy Herbert +PackageName: Moebius +PackageUrl: https://blocktronics.github.io/moebius/ +License: Apache-2.0 +LicenseUrl: https://github.com/blocktronics/moebius/blob/1.0.29/LICENSE.txt +ShortDescription: Modern ANSI & ASCII Art Editor +Moniker: moebius +Tags: +- ansi +- ascii +- cp437 +- art +- textmode +- editor +ReleaseNotesUrl: https://github.com/blocktronics/moebius/releases/tag/1.0.29 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/b/Blocktronics/Moebius/1.0.29/Blocktronics.Moebius.yaml b/manifests/b/Blocktronics/Moebius/1.0.29/Blocktronics.Moebius.yaml new file mode 100644 index 0000000000000..e1687ba182b8d --- /dev/null +++ b/manifests/b/Blocktronics/Moebius/1.0.29/Blocktronics.Moebius.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Blocktronics.Moebius +PackageVersion: 1.0.29 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cisco/WebexNetworkRecordingConverter/45.6.3.12/Cisco.WebexNetworkRecordingConverter.installer.yaml b/manifests/c/Cisco/WebexNetworkRecordingConverter/45.6.3.12/Cisco.WebexNetworkRecordingConverter.installer.yaml index a2c1c16245fde..223b22a08360a 100644 --- a/manifests/c/Cisco/WebexNetworkRecordingConverter/45.6.3.12/Cisco.WebexNetworkRecordingConverter.installer.yaml +++ b/manifests/c/Cisco/WebexNetworkRecordingConverter/45.6.3.12/Cisco.WebexNetworkRecordingConverter.installer.yaml @@ -1,19 +1,19 @@ -# Automatically updated by the winget bot at 2025/Dec/09 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Cisco.WebexNetworkRecordingConverter -PackageVersion: 45.6.3.12 -InstallerType: msi -Scope: machine -InstallerSwitches: - InstallLocation: INSTALLDIR="" -UpgradeBehavior: install -ProductCode: '{392C90AB-00AC-314C-728C-A8E2D23457FA}' -AppsAndFeaturesEntries: -- UpgradeCode: '{88D8E1EE-AC84-47F0-9121-9062384B7783}' -Installers: -- Architecture: x86 - InstallerUrl: https://welcome.webex.com/client/T33L/NBRConverter.msi - InstallerSha256: 4433F78ECA5555719ECD092E759D616BCC25A0F0745C7009A1F02E6489A0900B -ManifestType: installer -ManifestVersion: 1.12.0 +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Cisco.WebexNetworkRecordingConverter +PackageVersion: 45.6.3.12 +InstallerType: msi +Scope: machine +InstallerSwitches: + InstallLocation: INSTALLDIR="" +UpgradeBehavior: install +ProductCode: '{D8FDCA65-37EE-2769-54CA-3E0500D543DA}' +AppsAndFeaturesEntries: +- UpgradeCode: '{88D8E1EE-AC84-47F0-9121-9062384B7783}' +Installers: +- Architecture: x86 + InstallerUrl: https://welcome.webex.com/client/T33L/NBRConverter.msi + InstallerSha256: 4433F78ECA5555719ECD092E759D616BCC25A0F0745C7009A1F02E6489A0900B +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cisco/WebexNetworkRecordingConverter/45.6.3.12/Cisco.WebexNetworkRecordingConverter.locale.en-US.yaml b/manifests/c/Cisco/WebexNetworkRecordingConverter/45.6.3.12/Cisco.WebexNetworkRecordingConverter.locale.en-US.yaml index 12cabdc44d11e..aa0b68c0d57f2 100644 --- a/manifests/c/Cisco/WebexNetworkRecordingConverter/45.6.3.12/Cisco.WebexNetworkRecordingConverter.locale.en-US.yaml +++ b/manifests/c/Cisco/WebexNetworkRecordingConverter/45.6.3.12/Cisco.WebexNetworkRecordingConverter.locale.en-US.yaml @@ -1,17 +1,17 @@ -# Automatically updated by the winget bot at 2025/Dec/09 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Cisco.WebexNetworkRecordingConverter -PackageVersion: 45.6.3.12 -PackageLocale: en-US -Publisher: Cisco Webex LLC -PublisherUrl: https://www.webex.com/ -PublisherSupportUrl: https://help.webex.com/ -Author: Cisco Systems, Inc. -PackageName: Cisco Webex Network Recording Converter -PackageUrl: https://www.webex.com/video-recording.html -License: Proprietary -Copyright: © 1997-2020 Cisco and/or its affliates. All rights reserved. -ShortDescription: Convert Webex recordings (.ARF) to .MP4 format. -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Cisco.WebexNetworkRecordingConverter +PackageVersion: 45.6.3.12 +PackageLocale: en-US +Publisher: Cisco Webex LLC +PublisherUrl: https://www.webex.com/ +PublisherSupportUrl: https://help.webex.com/ +Author: Cisco Systems, Inc. +PackageName: Cisco Webex Network Recording Converter +PackageUrl: https://www.webex.com/video-recording.html +License: Proprietary +Copyright: © 1997-2025 Cisco and/or its affliates. All rights reserved. +ShortDescription: Convert Webex recordings (.ARF) to .MP4 format. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cisco/WebexNetworkRecordingConverter/45.6.3.12/Cisco.WebexNetworkRecordingConverter.locale.zh-CN.yaml b/manifests/c/Cisco/WebexNetworkRecordingConverter/45.6.3.12/Cisco.WebexNetworkRecordingConverter.locale.zh-CN.yaml index c883cbd5f9eed..541fab66883f9 100644 --- a/manifests/c/Cisco/WebexNetworkRecordingConverter/45.6.3.12/Cisco.WebexNetworkRecordingConverter.locale.zh-CN.yaml +++ b/manifests/c/Cisco/WebexNetworkRecordingConverter/45.6.3.12/Cisco.WebexNetworkRecordingConverter.locale.zh-CN.yaml @@ -1,10 +1,10 @@ -# Automatically updated by the winget bot at 2025/Dec/09 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: Cisco.WebexNetworkRecordingConverter -PackageVersion: 45.6.3.12 -PackageLocale: zh-CN -License: 专有软件 -ShortDescription: 将 Webex 录制(.ARF)转换为 .MP4 格式。 -ManifestType: locale -ManifestVersion: 1.12.0 +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Cisco.WebexNetworkRecordingConverter +PackageVersion: 45.6.3.12 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 将 Webex 录制(.ARF)转换为 .MP4 格式。 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/Cisco/WebexNetworkRecordingConverter/45.6.3.12/Cisco.WebexNetworkRecordingConverter.yaml b/manifests/c/Cisco/WebexNetworkRecordingConverter/45.6.3.12/Cisco.WebexNetworkRecordingConverter.yaml index 1b7bbf20474ac..e89ffe57ef909 100644 --- a/manifests/c/Cisco/WebexNetworkRecordingConverter/45.6.3.12/Cisco.WebexNetworkRecordingConverter.yaml +++ b/manifests/c/Cisco/WebexNetworkRecordingConverter/45.6.3.12/Cisco.WebexNetworkRecordingConverter.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Dec/09 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: Cisco.WebexNetworkRecordingConverter -PackageVersion: 45.6.3.12 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Cisco.WebexNetworkRecordingConverter +PackageVersion: 45.6.3.12 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CommunicationPlatform/MAX/25.18.1/CommunicationPlatform.MAX.installer.yaml b/manifests/c/CommunicationPlatform/MAX/25.18.1/CommunicationPlatform.MAX.installer.yaml new file mode 100644 index 0000000000000..d63c773caf597 --- /dev/null +++ b/manifests/c/CommunicationPlatform/MAX/25.18.1/CommunicationPlatform.MAX.installer.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CommunicationPlatform.MAX +PackageVersion: 25.18.1 +InstallerType: wix +InstallerSwitches: + InstallLocation: INSTALL_ROOT="" +UpgradeBehavior: install +Protocols: +- max +ProductCode: '{C4545560-9EED-4CC7-A91D-3DD6A26F7ABA}' +AppsAndFeaturesEntries: +- UpgradeCode: '{C75CA842-16FD-4019-A356-5F1D958B2D22}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\MAX' +Installers: +- Architecture: x64 + InstallerUrl: https://download.max.ru/win/release/25.18.1/MAX.msi + InstallerSha256: 05E2DDD144509FDACD4713BB4F8DE39D278ECAEF45AF4A123A36178DB948AD48 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CommunicationPlatform/MAX/25.18.1/CommunicationPlatform.MAX.locale.en-US.yaml b/manifests/c/CommunicationPlatform/MAX/25.18.1/CommunicationPlatform.MAX.locale.en-US.yaml new file mode 100644 index 0000000000000..2bc693fed5e57 --- /dev/null +++ b/manifests/c/CommunicationPlatform/MAX/25.18.1/CommunicationPlatform.MAX.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CommunicationPlatform.MAX +PackageVersion: 25.18.1 +PackageLocale: en-US +License: Proprietary +ShortDescription: A fast and easy application for communication and solving everyday tasks +Description: MAX allows sending all types of messages and making calls even on low-end devices and with slow internet connection. +Tags: +- call +- chat +- im +- instant-messaging +- message +- send +- share +- talk +- voice +Documentations: +- DocumentLabel: Technical documentation + DocumentUrl: https://max.ru/s/docs/tekhnicheskaya-dokumentatsiya.zip +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CommunicationPlatform/MAX/25.18.1/CommunicationPlatform.MAX.locale.ru-RU.yaml b/manifests/c/CommunicationPlatform/MAX/25.18.1/CommunicationPlatform.MAX.locale.ru-RU.yaml new file mode 100644 index 0000000000000..59b40926c57d1 --- /dev/null +++ b/manifests/c/CommunicationPlatform/MAX/25.18.1/CommunicationPlatform.MAX.locale.ru-RU.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CommunicationPlatform.MAX +PackageVersion: 25.18.1 +PackageLocale: ru-RU +Publisher: Communication Platform LLC +PublisherUrl: https://max.ru/ +PublisherSupportUrl: https://help.max.ru/ +PrivacyUrl: https://legal.max.ru/pp +Author: Communication Platform LLC +PackageName: MAX +PackageUrl: https://download.max.ru/#desktop +License: несвободные +LicenseUrl: https://legal.max.ru/ps +Copyright: MAX © 2025 +CopyrightUrl: https://legal.max.ru/ps +ShortDescription: быстрое и легкое приложение для общения и решения повседневных задач +Description: MAX позволяет отправлять любые виды сообщений и звонить даже на слабых устройствах и при низкой скорости интернета. +Tags: +- говорить +- голос +- звонок +- мгновенные-сообщения +- обмен-сообщениями +- отправить +- поделиться +- сообщение +- чат +Documentations: +- DocumentLabel: Техническая документация + DocumentUrl: https://max.ru/s/docs/tekhnicheskaya-dokumentatsiya.zip +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CommunicationPlatform/MAX/25.18.1/CommunicationPlatform.MAX.locale.zh-CN.yaml b/manifests/c/CommunicationPlatform/MAX/25.18.1/CommunicationPlatform.MAX.locale.zh-CN.yaml new file mode 100644 index 0000000000000..61f7bc504cebd --- /dev/null +++ b/manifests/c/CommunicationPlatform/MAX/25.18.1/CommunicationPlatform.MAX.locale.zh-CN.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CommunicationPlatform.MAX +PackageVersion: 25.18.1 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 快速轻便的沟通和处理日常事务的应用程序 +Description: MAX 支持发送各种类型的消息,并且即使在性能较弱的设备和网速较慢的情况下也能进行通话。 +Tags: +- im +- 信息 +- 共享 +- 分享 +- 发送 +- 好友 +- 消息 +- 电话 +- 聊天 +- 语音 +- 通话 +Documentations: +- DocumentLabel: 技术文档 + DocumentUrl: https://max.ru/s/docs/tekhnicheskaya-dokumentatsiya.zip +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CommunicationPlatform/MAX/25.18.1/CommunicationPlatform.MAX.yaml b/manifests/c/CommunicationPlatform/MAX/25.18.1/CommunicationPlatform.MAX.yaml new file mode 100644 index 0000000000000..5c31773f4414a --- /dev/null +++ b/manifests/c/CommunicationPlatform/MAX/25.18.1/CommunicationPlatform.MAX.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: CommunicationPlatform.MAX +PackageVersion: 25.18.1 +DefaultLocale: ru-RU +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/CommunicationPlatform/MAX/25.21.1/CommunicationPlatform.MAX.installer.yaml b/manifests/c/CommunicationPlatform/MAX/25.21.1/CommunicationPlatform.MAX.installer.yaml new file mode 100644 index 0000000000000..c4229ea008d75 --- /dev/null +++ b/manifests/c/CommunicationPlatform/MAX/25.21.1/CommunicationPlatform.MAX.installer.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: CommunicationPlatform.MAX +PackageVersion: 25.21.1 +InstallerType: wix +InstallerSwitches: + InstallLocation: INSTALL_ROOT="" +UpgradeBehavior: install +Protocols: +- max +ProductCode: '{C6D7141A-C89A-4BAA-9CDC-2F98A7313BA6}' +AppsAndFeaturesEntries: +- UpgradeCode: '{C75CA842-16FD-4019-A356-5F1D958B2D22}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\MAX' +Installers: +- Architecture: x64 + InstallerUrl: https://download.max.ru/win/release/25.21.1/MAX.msi + InstallerSha256: D0DD6CA159143D3448E7B1E7B27681326F8C6113A46E137EFA473AAF4CB312E2 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/CommunicationPlatform/MAX/25.21.1/CommunicationPlatform.MAX.locale.en-US.yaml b/manifests/c/CommunicationPlatform/MAX/25.21.1/CommunicationPlatform.MAX.locale.en-US.yaml new file mode 100644 index 0000000000000..d647ff553b82e --- /dev/null +++ b/manifests/c/CommunicationPlatform/MAX/25.21.1/CommunicationPlatform.MAX.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CommunicationPlatform.MAX +PackageVersion: 25.21.1 +PackageLocale: en-US +License: Proprietary +ShortDescription: A fast and easy application for communication and solving everyday tasks +Description: MAX allows sending all types of messages and making calls even on low-end devices and with slow internet connection. +Tags: +- call +- chat +- im +- instant-messaging +- message +- send +- share +- talk +- voice +Documentations: +- DocumentLabel: Technical documentation + DocumentUrl: https://max.ru/s/docs/tekhnicheskaya-dokumentatsiya.zip +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CommunicationPlatform/MAX/25.21.1/CommunicationPlatform.MAX.locale.ru-RU.yaml b/manifests/c/CommunicationPlatform/MAX/25.21.1/CommunicationPlatform.MAX.locale.ru-RU.yaml new file mode 100644 index 0000000000000..f582f4c16b2e2 --- /dev/null +++ b/manifests/c/CommunicationPlatform/MAX/25.21.1/CommunicationPlatform.MAX.locale.ru-RU.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: CommunicationPlatform.MAX +PackageVersion: 25.21.1 +PackageLocale: ru-RU +Publisher: Communication Platform LLC +PublisherUrl: https://max.ru/ +PublisherSupportUrl: https://help.max.ru/ +PrivacyUrl: https://legal.max.ru/pp +Author: Communication Platform LLC +PackageName: MAX +PackageUrl: https://download.max.ru/#desktop +License: несвободные +LicenseUrl: https://legal.max.ru/ps +Copyright: MAX © 2025 +CopyrightUrl: https://legal.max.ru/ps +ShortDescription: быстрое и легкое приложение для общения и решения повседневных задач +Description: MAX позволяет отправлять любые виды сообщений и звонить даже на слабых устройствах и при низкой скорости интернета. +Tags: +- говорить +- голос +- звонок +- мгновенные-сообщения +- обмен-сообщениями +- отправить +- поделиться +- сообщение +- чат +Documentations: +- DocumentLabel: Техническая документация + DocumentUrl: https://max.ru/s/docs/tekhnicheskaya-dokumentatsiya.zip +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CommunicationPlatform/MAX/25.21.1/CommunicationPlatform.MAX.locale.zh-CN.yaml b/manifests/c/CommunicationPlatform/MAX/25.21.1/CommunicationPlatform.MAX.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a4d6594d0a274 --- /dev/null +++ b/manifests/c/CommunicationPlatform/MAX/25.21.1/CommunicationPlatform.MAX.locale.zh-CN.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: CommunicationPlatform.MAX +PackageVersion: 25.21.1 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 快速轻便的沟通和处理日常事务的应用程序 +Description: MAX 支持发送各种类型的消息,并且即使在性能较弱的设备和网速较慢的情况下也能进行通话。 +Tags: +- im +- 信息 +- 共享 +- 分享 +- 发送 +- 好友 +- 消息 +- 电话 +- 聊天 +- 语音 +- 通话 +Documentations: +- DocumentLabel: 技术文档 + DocumentUrl: https://max.ru/s/docs/tekhnicheskaya-dokumentatsiya.zip +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/c/CommunicationPlatform/MAX/25.21.1/CommunicationPlatform.MAX.yaml b/manifests/c/CommunicationPlatform/MAX/25.21.1/CommunicationPlatform.MAX.yaml new file mode 100644 index 0000000000000..03b04a1b6db13 --- /dev/null +++ b/manifests/c/CommunicationPlatform/MAX/25.21.1/CommunicationPlatform.MAX.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: CommunicationPlatform.MAX +PackageVersion: 25.21.1 +DefaultLocale: ru-RU +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/cURL/cURL/8.17.0.6/cURL.cURL.installer.yaml b/manifests/c/cURL/cURL/8.17.0.6/cURL.cURL.installer.yaml new file mode 100644 index 0000000000000..7d85926356b37 --- /dev/null +++ b/manifests/c/cURL/cURL/8.17.0.6/cURL.cURL.installer.yaml @@ -0,0 +1,48 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: cURL.cURL +PackageVersion: 8.17.0.6 +InstallerType: zip +NestedInstallerType: portable +Protocols: +- DICT +- FILE +- FTP +- FTPS +- GOPHER +- GOPHERS +- HTTP +- HTTPS +- IMAP +- IMAPS +- LDAP +- LDAPS +- MQTT +- POP3 +- POP3S +- RTMP +- RTMPS +- RTSP +- SCP +- SFTP +- SMB +- SMBS +- SMTP +- SMTPS +- TELNET +- TFTP +ReleaseDate: 2025-11-05 +Installers: +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: curl-8.17.0_6-win64-mingw/bin/curl.exe + InstallerUrl: https://curl.se/windows/dl-8.17.0_6/curl-8.17.0_6-win64-mingw.zip + InstallerSha256: AF9214AF944966354E230024D0E2377CB5CF3C5C875E1A15DBC2FD9FBA7D7B07 +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: curl-8.17.0_6-win64a-mingw/bin/curl.exe + InstallerUrl: https://curl.se/windows/dl-8.17.0_6/curl-8.17.0_6-win64a-mingw.zip + InstallerSha256: 54BFF7786A27DC852380933D30FF250B614713F923055B4376B68DFFB43E1F7F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/cURL/cURL/8.17.0.6/cURL.cURL.locale.en-US.yaml b/manifests/c/cURL/cURL/8.17.0.6/cURL.cURL.locale.en-US.yaml new file mode 100644 index 0000000000000..2a905c2be62b8 --- /dev/null +++ b/manifests/c/cURL/cURL/8.17.0.6/cURL.cURL.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: cURL.cURL +PackageVersion: 8.17.0.6 +PackageLocale: en-US +Publisher: curl +PublisherUrl: https://curl.se/ +PublisherSupportUrl: https://curl.se/support.html +Author: Daniel Stenberg +PackageName: cURL +PackageUrl: https://curl.se/ +License: Freeware +LicenseUrl: https://curl.se/docs/copyright.html +Copyright: Copyright (c), Daniel Stenberg, daniel@haxx.se, and many contributors, see the THANKS file. All rights reserved. +CopyrightUrl: https://curl.se/docs/copyright.html +ShortDescription: Command line tool and library for transferring data with URLs +Moniker: curl +PurchaseUrl: https://curl.se/donation.html +Documentations: +- DocumentLabel: Everything curl (full documentation) + DocumentUrl: https://everything.curl.dev/ +- DocumentLabel: FAQ + DocumentUrl: https://curl.se/docs/faq.html +- DocumentLabel: GitHub + DocumentUrl: https://github.com/curl/curl +- DocumentLabel: Manpage (Usage) + DocumentUrl: https://curl.se/docs/manpage.html +- DocumentLabel: Published Security Vulnerabilities + DocumentUrl: https://curl.se/docs/security.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/cURL/cURL/8.17.0.6/cURL.cURL.yaml b/manifests/c/cURL/cURL/8.17.0.6/cURL.cURL.yaml new file mode 100644 index 0000000000000..c7814c68148e1 --- /dev/null +++ b/manifests/c/cURL/cURL/8.17.0.6/cURL.cURL.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: cURL.cURL +PackageVersion: 8.17.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/cebby2420/VIADesktop/2025.12.8/cebby2420.VIADesktop.installer.yaml b/manifests/c/cebby2420/VIADesktop/2025.12.8/cebby2420.VIADesktop.installer.yaml new file mode 100644 index 0000000000000..17f2fa995819b --- /dev/null +++ b/manifests/c/cebby2420/VIADesktop/2025.12.8/cebby2420.VIADesktop.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: cebby2420.VIADesktop +PackageVersion: 2025.12.8 +InstallerType: exe +Scope: user +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +ProductCode: via_desktop +ReleaseDate: 2025-12-08 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/cebby2420/via-desktop/releases/download/v2025.12.8/via-desktop-2025.12.8.Setup.exe + InstallerSha256: 50E26604CC7E9E56959CE3350FA6E58E069A2A35D3DC4A239B76065671859A7A +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/cebby2420/VIADesktop/2025.12.8/cebby2420.VIADesktop.locale.en-US.yaml b/manifests/c/cebby2420/VIADesktop/2025.12.8/cebby2420.VIADesktop.locale.en-US.yaml new file mode 100644 index 0000000000000..d0f97bed166bd --- /dev/null +++ b/manifests/c/cebby2420/VIADesktop/2025.12.8/cebby2420.VIADesktop.locale.en-US.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: cebby2420.VIADesktop +PackageVersion: 2025.12.8 +PackageLocale: en-US +Publisher: Cebby +PublisherUrl: https://github.com/cebby2420 +PublisherSupportUrl: https://github.com/cebby2420/via-desktop/issues +PackageName: via-desktop +PackageUrl: https://github.com/cebby2420/via-desktop +License: GPL-3.0 +LicenseUrl: https://github.com/cebby2420/via-desktop/blob/HEAD/LICENSE +ShortDescription: An Electron application designed to provide an offline experience for VIA. +Tags: +- keyboard +- via +ReleaseNotesUrl: https://github.com/cebby2420/via-desktop/releases/tag/v2025.12.8 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/cebby2420/VIADesktop/2025.12.8/cebby2420.VIADesktop.locale.zh-CN.yaml b/manifests/c/cebby2420/VIADesktop/2025.12.8/cebby2420.VIADesktop.locale.zh-CN.yaml new file mode 100644 index 0000000000000..de06f93390516 --- /dev/null +++ b/manifests/c/cebby2420/VIADesktop/2025.12.8/cebby2420.VIADesktop.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: cebby2420.VIADesktop +PackageVersion: 2025.12.8 +PackageLocale: zh-CN +ShortDescription: 一款专为离线使用 VIA 而设计的 Electron 应用程序。 +Tags: +- via +- 键盘 +ReleaseNotesUrl: https://github.com/cebby2420/via-desktop/releases/tag/v2025.12.8 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/145.0.7569.0/Google.Chrome.Canary.yaml b/manifests/c/cebby2420/VIADesktop/2025.12.8/cebby2420.VIADesktop.yaml similarity index 74% rename from manifests/g/Google/Chrome/Canary/145.0.7569.0/Google.Chrome.Canary.yaml rename to manifests/c/cebby2420/VIADesktop/2025.12.8/cebby2420.VIADesktop.yaml index 9b39660686dbd..e11b4f4778d9b 100644 --- a/manifests/g/Google/Chrome/Canary/145.0.7569.0/Google.Chrome.Canary.yaml +++ b/manifests/c/cebby2420/VIADesktop/2025.12.8/cebby2420.VIADesktop.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: Google.Chrome.Canary -PackageVersion: 145.0.7569.0 +PackageIdentifier: cebby2420.VIADesktop +PackageVersion: 2025.12.8 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.10.0 diff --git a/manifests/c/charmbracelet/crush/0.17.0/charmbracelet.crush.installer.yaml b/manifests/c/charmbracelet/crush/0.17.0/charmbracelet.crush.installer.yaml new file mode 100644 index 0000000000000..f1e8d09fa8d4b --- /dev/null +++ b/manifests/c/charmbracelet/crush/0.17.0/charmbracelet.crush.installer.yaml @@ -0,0 +1,34 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +PackageIdentifier: charmbracelet.crush +PackageVersion: 0.17.0 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-11-12" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: crush_0.17.0_Windows_arm64\crush.exe + PortableCommandAlias: crush + InstallerUrl: https://github.com/charmbracelet/crush/releases/download/v0.17.0/crush_0.17.0_Windows_arm64.zip + InstallerSha256: 8fff0da9adce01b354a1f58218dbc8c700d95aa45d0d5ecc4e83de6f6a71ce5c + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: crush_0.17.0_Windows_x86_64\crush.exe + PortableCommandAlias: crush + InstallerUrl: https://github.com/charmbracelet/crush/releases/download/v0.17.0/crush_0.17.0_Windows_x86_64.zip + InstallerSha256: ac3a224487182a6bb468c8bad842c6d98dab788b5a8829f32cd84f8d94c2e97f + UpgradeBehavior: uninstallPrevious + - Architecture: x86 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: crush_0.17.0_Windows_i386\crush.exe + PortableCommandAlias: crush + InstallerUrl: https://github.com/charmbracelet/crush/releases/download/v0.17.0/crush_0.17.0_Windows_i386.zip + InstallerSha256: 9ef38510d3a86551066a2dc3fbff7d69e3147c57f31e2482a0f4958152c00247 + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/charmbracelet/crush/0.17.0/charmbracelet.crush.locale.en-US.yaml b/manifests/c/charmbracelet/crush/0.17.0/charmbracelet.crush.locale.en-US.yaml new file mode 100644 index 0000000000000..a9ae1d1c6a025 --- /dev/null +++ b/manifests/c/charmbracelet/crush/0.17.0/charmbracelet.crush.locale.en-US.yaml @@ -0,0 +1,18 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: charmbracelet.crush +PackageVersion: 0.17.0 +PackageLocale: en-US +Publisher: charmbracelet +PublisherUrl: https://charm.land +PackageName: crush +PackageUrl: https://charm.sh/crush +License: FSL-1.1-MIT +LicenseUrl: https://github.com/charmbracelet/crush/blob/main/LICENSE.md +Copyright: Charmbracelet, Inc +ShortDescription: A powerful terminal-based AI assistant for developers, providing intelligent coding assistance directly in your terminal. +Description: A powerful terminal-based AI assistant for developers, providing intelligent coding assistance directly in your terminal. +Moniker: crush +ReleaseNotesUrl: https://github.com/charmbracelet/crush/releases/tag/v0.17.0 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/charmbracelet/crush/0.17.0/charmbracelet.crush.yaml b/manifests/c/charmbracelet/crush/0.17.0/charmbracelet.crush.yaml new file mode 100644 index 0000000000000..1bdea3aa436ec --- /dev/null +++ b/manifests/c/charmbracelet/crush/0.17.0/charmbracelet.crush.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +PackageIdentifier: charmbracelet.crush +PackageVersion: 0.17.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/c/cwensley/PabloDraw/3.3.14/cwensley.PabloDraw.installer.yaml b/manifests/c/cwensley/PabloDraw/3.3.14/cwensley.PabloDraw.installer.yaml new file mode 100644 index 0000000000000..5a0f7af7ea8a2 --- /dev/null +++ b/manifests/c/cwensley/PabloDraw/3.3.14/cwensley.PabloDraw.installer.yaml @@ -0,0 +1,27 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: cwensley.PabloDraw +PackageVersion: 3.3.14 +InstallerType: msi +ReleaseDate: 2025-03-29 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/cwensley/pablodraw/releases/download/3.3.14-beta/PabloDraw-win-x64.msi + InstallerSha256: EAB582380EA9F28F18385C4B352A33DEF3924CA7BFA7AAA696D055A00FC32ED9 + ProductCode: '{FA47E997-BA8E-4727-9166-EA54934FAC86}' + AppsAndFeaturesEntries: + - DisplayName: PabloDraw + Publisher: Picoe Software Solutions + ProductCode: '{FA47E997-BA8E-4727-9166-EA54934FAC86}' + UpgradeCode: '{DC30A6A5-E756-4440-B8CD-CC823D9DE7A3}' +- Architecture: arm64 + InstallerUrl: https://github.com/cwensley/pablodraw/releases/download/3.3.14-beta/PabloDraw-win-arm64.msi + InstallerSha256: A7C4F81859FEA5D06B0887201EE9756357B29CDAC66B521A35BC32F1FF85B1F8 + ProductCode: '{289683D8-D5C9-4EC6-96AA-9E0F43494D16}' + AppsAndFeaturesEntries: + - DisplayName: PabloDraw + Publisher: Picoe Software Solutions + ProductCode: '{289683D8-D5C9-4EC6-96AA-9E0F43494D16}' + UpgradeCode: '{DC30A6A5-E756-4440-B8CD-CC823D9DE7A3}' +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/c/cwensley/PabloDraw/3.3.14/cwensley.PabloDraw.locale.en-US.yaml b/manifests/c/cwensley/PabloDraw/3.3.14/cwensley.PabloDraw.locale.en-US.yaml new file mode 100644 index 0000000000000..62b1e407c48a0 --- /dev/null +++ b/manifests/c/cwensley/PabloDraw/3.3.14/cwensley.PabloDraw.locale.en-US.yaml @@ -0,0 +1,27 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: cwensley.PabloDraw +PackageVersion: 3.3.14 +PackageLocale: en-US +Publisher: Picoe Software Solutions +PublisherSupportUrl: https://github.com/cwensley/pablodraw/issues +Author: Curtis Wensley +PackageName: PabloDraw +PackageUrl: https://github.com/cwensley/pablodraw +License: MIT +LicenseUrl: https://github.com/cwensley/pablodraw/blob/3.3.14-beta/LICENSE +ShortDescription: An ANSI/ASCII text and RIPscrip vector graphic art editor/viewer with multi-user capabilities. +Moniker: pablodraw +Tags: +- ansi +- ascii +- rip +- ripscrip +- bbs +- art +- editor +- textmode +- xbin +ReleaseNotesUrl: https://github.com/cwensley/pablodraw/releases/tag/3.3.14-beta +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/c/cwensley/PabloDraw/3.3.14/cwensley.PabloDraw.yaml b/manifests/c/cwensley/PabloDraw/3.3.14/cwensley.PabloDraw.yaml new file mode 100644 index 0000000000000..cec508bdc31b1 --- /dev/null +++ b/manifests/c/cwensley/PabloDraw/3.3.14/cwensley.PabloDraw.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: cwensley.PabloDraw +PackageVersion: 3.3.14 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/1.0.9217/Discord.Discord.installer.yaml b/manifests/d/Discord/Discord/1.0.9217/Discord.Discord.installer.yaml new file mode 100644 index 0000000000000..d83c7274b0657 --- /dev/null +++ b/manifests/d/Discord/Discord/1.0.9217/Discord.Discord.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Discord.Discord +PackageVersion: 1.0.9217 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: deny +Protocols: +- discord +RequireExplicitUpgrade: true +Installers: +- Architecture: x64 + InstallerUrl: https://stable.dl2.discordapp.net/distro/app/stable/win/x64/1.0.9217/DiscordSetup.exe + InstallerSha256: C4A704ED4F7B0AAF63A2CA0B5B4059968921C612B3CB0A29AF587526B35150A6 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/1.0.9217/Discord.Discord.locale.en-US.yaml b/manifests/d/Discord/Discord/1.0.9217/Discord.Discord.locale.en-US.yaml new file mode 100644 index 0000000000000..7c0738b48c724 --- /dev/null +++ b/manifests/d/Discord/Discord/1.0.9217/Discord.Discord.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Discord.Discord +PackageVersion: 1.0.9217 +PackageLocale: en-US +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord +PackageUrl: https://discord.com/download +License: Proprietary +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2025 Discord Inc. All rights reserved. +ShortDescription: Your Place to Talk and Hang Out +Description: |- + Discord is the easiest way to talk over voice, video, and text. + Talk, chat, hang out, and stay close with your friends and communities. +Moniker: discord +Tags: +- chat +- community +- gaming +- hang-out +- talk +- video +- voice +- voice-chat +PurchaseUrl: https://discord.com/nitro +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/1.0.9217/Discord.Discord.locale.pt-BR.yaml b/manifests/d/Discord/Discord/1.0.9217/Discord.Discord.locale.pt-BR.yaml new file mode 100644 index 0000000000000..a2c1a95e7bcfd --- /dev/null +++ b/manifests/d/Discord/Discord/1.0.9217/Discord.Discord.locale.pt-BR.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Discord.Discord +PackageVersion: 1.0.9217 +PackageLocale: pt-BR +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord +PackageUrl: https://discord.com/download +License: Proprietary +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2025 Discord Inc. All rights reserved. +ShortDescription: Seu Lugar para Papear e Ficar De Boa +Description: |- + O Discord é a forma mais fácil de falar por voz, vídeo e texto. + Fale, converse, saia e mantenha-se próximo dos seus amigos e comunidades. +Tags: +- conversa +- conversação-por-voz +- conversar +- jogos +- voz +PurchaseUrl: https://discord.com/nitro +Documentations: +- DocumentLabel: Support +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/1.0.9217/Discord.Discord.locale.zh-CN.yaml b/manifests/d/Discord/Discord/1.0.9217/Discord.Discord.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2ebf6b22a9c59 --- /dev/null +++ b/manifests/d/Discord/Discord/1.0.9217/Discord.Discord.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Discord.Discord +PackageVersion: 1.0.9217 +PackageLocale: zh-CN +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord +PackageUrl: https://discord.com/download +License: 专有软件 +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2025 Discord Inc. All rights reserved. +ShortDescription: 玩耍聊天的地方 +Description: |- + Discord 是最简单易用的通讯工具,兼具语音、视频以及文字信息功能。 + 您可以聊聊天,拉拉家常,一起玩耍,与好友和社区保持紧密联系。 +Tags: +- 开黑 +- 游戏 +- 聊天 +- 语音 +- 语音聊天 +PurchaseUrl: https://discord.com/nitro +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/1.0.9217/Discord.Discord.yaml b/manifests/d/Discord/Discord/1.0.9217/Discord.Discord.yaml new file mode 100644 index 0000000000000..37b9e2b0c11da --- /dev/null +++ b/manifests/d/Discord/Discord/1.0.9217/Discord.Discord.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: Discord.Discord +PackageVersion: 1.0.9217 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.795/Discord.Discord.Canary.installer.yaml b/manifests/d/Discord/Discord/Canary/1.0.795/Discord.Discord.Canary.installer.yaml new file mode 100644 index 0000000000000..86fb144c10063 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.795/Discord.Discord.Canary.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.795 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Protocols: +- discord +ProductCode: DiscordCanary +Installers: +- Architecture: x64 + InstallerUrl: https://canary.dl2.discordapp.net/distro/app/canary/win/x64/1.0.795/DiscordCanarySetup.exe + InstallerSha256: 23DA88360CE24100E493813CD39C82F653D1FCD65EF3B8FB78AD02BCD064BFA1 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.795/Discord.Discord.Canary.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/1.0.795/Discord.Discord.Canary.locale.en-US.yaml new file mode 100644 index 0000000000000..f13058205ad59 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.795/Discord.Discord.Canary.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.795 +PackageLocale: en-US +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Canary +PackageUrl: https://discord.com/download +License: Proprietary +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2025 Discord Inc. All rights reserved. +ShortDescription: Your Place to Talk and Hang Out +Description: |- + Discord is the easiest way to talk over voice, video, and text. + Talk, chat, hang out, and stay close with your friends and communities. +Moniker: discord-canary +Tags: +- chat +- community +- gaming +- hang-out +- talk +- video +- voice +- voice-chat +PurchaseUrl: https://discord.com/nitro +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.795/Discord.Discord.Canary.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/1.0.795/Discord.Discord.Canary.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7546c266f4b49 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.795/Discord.Discord.Canary.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.795 +PackageLocale: zh-CN +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Canary +PackageUrl: https://discord.com/download +License: 专有软件 +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2025 Discord Inc. All rights reserved. +ShortDescription: 玩耍聊天的地方 +Description: |- + Discord 是最简单易用的通讯工具,兼具语音、视频以及文字信息功能。 + 您可以聊聊天,拉拉家常,一起玩耍,与好友和社区保持紧密联系。 +Tags: +- 开黑 +- 游戏 +- 聊天 +- 语音 +- 语音聊天 +PurchaseUrl: https://discord.com/nitro +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.795/Discord.Discord.Canary.yaml b/manifests/d/Discord/Discord/Canary/1.0.795/Discord.Discord.Canary.yaml new file mode 100644 index 0000000000000..d4181b95360eb --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.795/Discord.Discord.Canary.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.795 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/Framer/Framer/2025.48.2/Framer.Framer.installer.yaml b/manifests/f/Framer/Framer/2025.48.2/Framer.Framer.installer.yaml new file mode 100644 index 0000000000000..4456a853e4ad8 --- /dev/null +++ b/manifests/f/Framer/Framer/2025.48.2/Framer.Framer.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Framer.Framer +PackageVersion: 2025.48.2 +InstallerType: exe +Scope: user +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Protocols: +- framer-app +ProductCode: Framer +Installers: +- Architecture: x64 + InstallerUrl: https://updates.framer.com/electron/win32/x64/Framer-2025.48.2.exe + InstallerSha256: D410B6023C841F9878D21CDCB195B761B130FBDBFA259143D5F842679AF49B0A +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/Framer/Framer/2025.48.2/Framer.Framer.locale.en-US.yaml b/manifests/f/Framer/Framer/2025.48.2/Framer.Framer.locale.en-US.yaml new file mode 100644 index 0000000000000..6ba0e30584b26 --- /dev/null +++ b/manifests/f/Framer/Framer/2025.48.2/Framer.Framer.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Framer.Framer +PackageVersion: 2025.48.2 +PackageLocale: en-US +Publisher: Framer B.V. +PublisherUrl: https://www.framer.com/ +PublisherSupportUrl: https://www.framer.com/contact/ +PrivacyUrl: https://www.framer.com/legal/privacy-statement/ +Author: Framer B.V. +PackageName: Framer +PackageUrl: https://www.framer.com/downloads/ +License: Proprietary +LicenseUrl: https://www.framer.com/legal/terms-of-service/ +CopyrightUrl: https://www.framer.com/legal/terms-of-service/ +ShortDescription: Design, scale, and publish your website—no code needed. +Tags: +- build +- design +- diagram +- flow +- flowchart +- interface +- mockup +- present +- prototype +- slides +- specification +- ui +- user-experience +- user-interface +- ux +- wireframe +ReleaseNotesUrl: https://www.framer.com/updates +PurchaseUrl: https://www.framer.com/pricing +Documentations: +- DocumentLabel: Articles + DocumentUrl: https://www.framer.com/help/ +- DocumentLabel: Developers + DocumentUrl: https://www.framer.com/developers/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Framer/Framer/2025.48.2/Framer.Framer.locale.zh-CN.yaml b/manifests/f/Framer/Framer/2025.48.2/Framer.Framer.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7302d992844cc --- /dev/null +++ b/manifests/f/Framer/Framer/2025.48.2/Framer.Framer.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: Framer.Framer +PackageVersion: 2025.48.2 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 设计、扩展和发布您的网站--无需代码。 +Tags: +- 人机交互 +- 原型 +- 图表 +- 模型 +- 流程 +- 流程图 +- 用户界面 +- 界面 +- 线框图 +- 规格 +- 设计 +Documentations: +- DocumentLabel: 文章 + DocumentUrl: https://www.framer.com/help/ +- DocumentLabel: 开发者 + DocumentUrl: https://www.framer.com/developers/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/f/Framer/Framer/2025.48.2/Framer.Framer.yaml b/manifests/f/Framer/Framer/2025.48.2/Framer.Framer.yaml new file mode 100644 index 0000000000000..0ed9484b1b4d0 --- /dev/null +++ b/manifests/f/Framer/Framer/2025.48.2/Framer.Framer.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: Framer.Framer +PackageVersion: 2025.48.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/f/flyhunterl/FlyMD/0.8.7/flyhunterl.FlyMD.installer.yaml b/manifests/f/flyhunterl/FlyMD/0.8.7/flyhunterl.FlyMD.installer.yaml new file mode 100644 index 0000000000000..4b9ca12f092c7 --- /dev/null +++ b/manifests/f/flyhunterl/FlyMD/0.8.7/flyhunterl.FlyMD.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: flyhunterl.FlyMD +PackageVersion: 0.8.7 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +FileExtensions: +- markdown +- md +ProductCode: flymd +ReleaseDate: 2025-12-22 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/flyhunterl/flymd/releases/download/v0.8.7/flymd_0.8.7_x64-setup.exe + InstallerSha256: 52AC3272E266D137B52D797FF1AF139DD4B13AC13C180F899E635571A842C8B9 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/f/flyhunterl/FlyMD/0.8.7/flyhunterl.FlyMD.locale.en-US.yaml b/manifests/f/flyhunterl/FlyMD/0.8.7/flyhunterl.FlyMD.locale.en-US.yaml new file mode 100644 index 0000000000000..5f47277633d28 --- /dev/null +++ b/manifests/f/flyhunterl/FlyMD/0.8.7/flyhunterl.FlyMD.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: flyhunterl.FlyMD +PackageVersion: 0.8.7 +PackageLocale: en-US +License: Proprietary +ShortDescription: A highly responsive and extremely low-resource Markdown editor and PDF reader tool that supports WYSIWYG, WebDAV synchronization, automatic image uploads, AI-assisted writing, and plugins. +Description: |- + A cross-platform WYSIWYG Markdown editor and PDF reader with image hosting, WebDAV sync, plugins, fast response, and minimal resource usage. + ✨ Highlights + - Ready to Use: Only 7MB installer, no bloat. Millisecond-level cold start, one-click code copy + - Clean Interface: Minimalist design with just menubar + editor, focused on content creation. Excellent startup and response speed + - Library Feature: Support for designated folders, tree-view display of subfolders and documents, with document management; supports multiple libraries + - Secure & Reliable: Local execution, no network connection, automatic HTML sanitization in preview + - Image Hosting: S3/R2 binding support, direct paste image upload with automatic link syntax generation + - Full-Featured: Complete support for Markdown, LaTeX, Mermaid, and HTML + - Real-time Rendering: WYSIWYG mode, instant render on input! Global real-time rendering for Mermaid and LaTeX, double-click to edit code + - Ultimate Performance: Millisecond-level response, farewell to common pain points of similar software + - Position Memory: Automatic memory of reading and editing positions, returning to remembered positions on next open (v0.0.6 official) + - Auto Sync: WebDAV sync functionality + - Plugin Extensions: Support for plugin extensions, develop your own or install with one click + - AI Assistant: Install from the Extensions market to polish, correct and summarize content + - Export formats: Export to PDF, DOCX, WPS +Tags: +- editor +- markdown +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/f/flyhunterl/FlyMD/0.8.7/flyhunterl.FlyMD.locale.zh-CN.yaml b/manifests/f/flyhunterl/FlyMD/0.8.7/flyhunterl.FlyMD.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6536d6944cec8 --- /dev/null +++ b/manifests/f/flyhunterl/FlyMD/0.8.7/flyhunterl.FlyMD.locale.zh-CN.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: flyhunterl.FlyMD +PackageVersion: 0.8.7 +PackageLocale: zh-CN +Publisher: flymd +PublisherUrl: https://www.llingfei.com/ +PublisherSupportUrl: https://github.com/flyhunterl/flymd/issues +PackageName: flymd +PackageUrl: https://flymd.llingfei.com/ +License: 专有软件 +LicenseUrl: https://github.com/flyhunterl/flymd/blob/HEAD/LICENSE +Copyright: Copyright (c) 2024-2025, flyhunterl +ShortDescription: 支持所见所得 WebDav同步 图片自动上传 AI辅助写作 插件扩展 响应迅速 占用极低的 Markdown 编辑 PDF 阅读工具。 +Description: |- + 跨平台 所见所得 图床上传 WebDav同步 插件扩展 响应迅速 占用极低的 Markdown 编辑 PDF 阅读工具。 + ✨ 项目特色 + - 即开即用:安装包仅 7MB 拒绝臃肿。冷启动毫秒级响应,代码一键复制 + - 界面干净:极简界面,默认仅菜单栏+编辑区,专注内容创作 启动速度和响应速度优秀 + - 文库功能:支持指定文件夹,树状目录显示文件夹下子文件夹及文档 并支持文档管理/支持添加多个文档库 + - 安全可靠:本地运行,无网络连接,预览 HTML 自动消毒 + - 图床支持:支持 S3/R2 绑定,直接粘贴图片上传 上传成功后自行写好图片连接语法 + - 功能全面:MarkDown LaTeX Mermaid html 全部支持 + - 即时渲染:所见模式,输入即渲染!Mermaid LaTex 全局实时渲染,双击编辑代码 + - 极致性能:毫秒级响应速度,告别同类软件常见痛点 + - 位置记忆:阅读和编辑文档位置均自动记忆,下次打开改文档无论阅读还是编辑都回到记忆位置(v0.0.6 正式版) + - 自动同步:Webdav 同步功能 + - 插件扩展:支持插件扩展功能,可以自行开发也可以一键安装已上架的扩展/插件 + - 格式支持:支持另存为 PDF Docx Wps + - 人工智能:可通过扩展市场安装 AI 助手(通过扩展市场安装)润色、改错、总结。 +Tags: +- markdown +- 编辑器 +ReleaseNotes: 修复所见模式滑块问题 +ReleaseNotesUrl: https://github.com/flyhunterl/flymd/releases/tag/v0.8.7 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://flymd.llingfei.com/docs.html +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/f/flyhunterl/FlyMD/0.8.7/flyhunterl.FlyMD.yaml b/manifests/f/flyhunterl/FlyMD/0.8.7/flyhunterl.FlyMD.yaml new file mode 100644 index 0000000000000..25309db85be00 --- /dev/null +++ b/manifests/f/flyhunterl/FlyMD/0.8.7/flyhunterl.FlyMD.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: flyhunterl.FlyMD +PackageVersion: 0.8.7 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/GOG/Galaxy/2.0.91.51/GOG.Galaxy.installer.yaml b/manifests/g/GOG/Galaxy/2.0.91.51/GOG.Galaxy.installer.yaml new file mode 100644 index 0000000000000..c7cbe2f211156 --- /dev/null +++ b/manifests/g/GOG/Galaxy/2.0.91.51/GOG.Galaxy.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: GOG.Galaxy +PackageVersion: 2.0.91.51 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- goggalaxy +ProductCode: '{7258BA11-600C-430E-A759-27E2C691A335}_is1' +Installers: +- Architecture: x86 + InstallerUrl: https://content-system.gog.com/open_link/download?path=/open/galaxy/client/setup_galaxy_2.0.91.51.exe + InstallerSha256: 8134CE8CF68E33A55D74EE8EE827D2FBAD7FA60209509918BB63415F05EBDD39 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/GOG/Galaxy/2.0.91.51/GOG.Galaxy.locale.en-US.yaml b/manifests/g/GOG/Galaxy/2.0.91.51/GOG.Galaxy.locale.en-US.yaml new file mode 100644 index 0000000000000..e5f5525f65bd9 --- /dev/null +++ b/manifests/g/GOG/Galaxy/2.0.91.51/GOG.Galaxy.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: GOG.Galaxy +PackageVersion: 2.0.91.51 +PackageLocale: en-US +Publisher: GOG.com +PublisherUrl: https://www.gog.com/ +PublisherSupportUrl: https://support.gog.com/ +Author: GOG Sp. z o.o. +PackageName: GOG GALAXY +PackageUrl: https://www.gog.com/galaxy +License: Proprietary +Copyright: © 2025 GOG Sp. z o.o. All rights reserved. +ShortDescription: All your games and friends in one place. +Description: GOG GALAXY 2.0 allows you to combine multiple game libraries into one and connect with your friends across all gaming platforms, consoles included! +Moniker: gog +Tags: +- game +- gaming +- store +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GOG/Galaxy/2.0.91.51/GOG.Galaxy.locale.zh-CN.yaml b/manifests/g/GOG/Galaxy/2.0.91.51/GOG.Galaxy.locale.zh-CN.yaml new file mode 100644 index 0000000000000..c6c31aa5160e1 --- /dev/null +++ b/manifests/g/GOG/Galaxy/2.0.91.51/GOG.Galaxy.locale.zh-CN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: GOG.Galaxy +PackageVersion: 2.0.91.51 +PackageLocale: zh-CN +Publisher: GOG.com +PublisherUrl: https://www.gog.com/ +PublisherSupportUrl: https://support.gog.com/ +Author: GOG Sp. z o.o. +PackageName: GOG GALAXY +PackageUrl: https://www.gog.com/galaxy +License: 专有软件 +Copyright: © 2025 GOG Sp. z o.o. All rights reserved. +ShortDescription: 一站连通你的所有游戏和朋友 +Description: GOG GALAXY 2.0 允许你整合多个游戏库,并与你在所有游戏平台上的朋友建立联系,包括游戏机! +Tags: +- 商店 +- 游戏 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/g/GOG/Galaxy/2.0.91.51/GOG.Galaxy.yaml b/manifests/g/GOG/Galaxy/2.0.91.51/GOG.Galaxy.yaml new file mode 100644 index 0000000000000..8ba0eb8a589df --- /dev/null +++ b/manifests/g/GOG/Galaxy/2.0.91.51/GOG.Galaxy.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: GOG.Galaxy +PackageVersion: 2.0.91.51 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/145.0.7569.0/Google.Chrome.Canary.installer.yaml b/manifests/g/Google/Chrome/Canary/145.0.7569.0/Google.Chrome.Canary.installer.yaml deleted file mode 100644 index 299ef030244e9..0000000000000 --- a/manifests/g/Google/Chrome/Canary/145.0.7569.0/Google.Chrome.Canary.installer.yaml +++ /dev/null @@ -1,49 +0,0 @@ -# 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.7569.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/acavfi4dbat4s4dil7d3e4na4uaa_145.0.7569.0/145.0.7569.0_chrome_installer_uncompressed.exe - InstallerSha256: 3F29EDB3CD93D3A370EC43E367D3ADD1B38A7E8F975C912E66F849BE927B9EA8 -- Architecture: x64 - InstallerUrl: https://dl.google.com/release2/chrome/nvhstlpo4agw63vjdzp5jvbu5e_145.0.7569.0/145.0.7569.0_chrome_installer_uncompressed.exe - InstallerSha256: 8847688C540D3C44A49E35E3A9CC2165D974F18AFC3873B01337B418836A6D95 -- Architecture: arm64 - InstallerUrl: https://dl.google.com/release2/chrome/adeolmbngnenxb2kio5p25jwd5wq_145.0.7569.0/145.0.7569.0_chrome_installer_uncompressed.exe - InstallerSha256: A75E346B3EEDA142D37D5E9DF51CD927D313051A4BE13F114917C908AEA8BCF0 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Canary/145.0.7569.0/Google.Chrome.Canary.locale.en-US.yaml b/manifests/g/Google/Chrome/Canary/145.0.7569.0/Google.Chrome.Canary.locale.en-US.yaml deleted file mode 100644 index 4ab19b7e45d99..0000000000000 --- a/manifests/g/Google/Chrome/Canary/145.0.7569.0/Google.Chrome.Canary.locale.en-US.yaml +++ /dev/null @@ -1,27 +0,0 @@ -# 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.7569.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/Canary/145.0.7569.0/Google.Chrome.Canary.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Canary/145.0.7569.0/Google.Chrome.Canary.locale.nb-NO.yaml deleted file mode 100644 index 72da91ee32423..0000000000000 --- a/manifests/g/Google/Chrome/Canary/145.0.7569.0/Google.Chrome.Canary.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.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 145.0.7569.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/Canary/145.0.7569.0/Google.Chrome.Canary.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Canary/145.0.7569.0/Google.Chrome.Canary.locale.zh-CN.yaml deleted file mode 100644 index 5cad4ab737b5e..0000000000000 --- a/manifests/g/Google/Chrome/Canary/145.0.7569.0/Google.Chrome.Canary.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.10.0.schema.json - -PackageIdentifier: Google.Chrome.Canary -PackageVersion: 145.0.7569.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/goreleaser/nfpm/2.44.1/goreleaser.nfpm.installer.yaml b/manifests/g/goreleaser/nfpm/2.44.1/goreleaser.nfpm.installer.yaml new file mode 100644 index 0000000000000..ed0156475717e --- /dev/null +++ b/manifests/g/goreleaser/nfpm/2.44.1/goreleaser.nfpm.installer.yaml @@ -0,0 +1,26 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +PackageIdentifier: goreleaser.nfpm +PackageVersion: 2.44.1 +InstallerLocale: en-US +InstallerType: zip +ReleaseDate: "2025-12-23" +Installers: + - Architecture: arm64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: nfpm.exe + PortableCommandAlias: nfpm + InstallerUrl: https://github.com/goreleaser/nfpm/releases/download/v2.44.1/nfpm_2.44.1_Windows_arm64.zip + InstallerSha256: 8e29d932f4f85435eb2aaaa4f1a97123d67285fe716f5f4cca640ddb13fb0535 + UpgradeBehavior: uninstallPrevious + - Architecture: x64 + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: nfpm.exe + PortableCommandAlias: nfpm + InstallerUrl: https://github.com/goreleaser/nfpm/releases/download/v2.44.1/nfpm_2.44.1_Windows_x86_64.zip + InstallerSha256: b187a7f47e1e60082e0800df3f46a2ee1e8383482b511db4722dd8baba8c940b + UpgradeBehavior: uninstallPrevious +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/g/goreleaser/nfpm/2.44.1/goreleaser.nfpm.locale.en-US.yaml b/manifests/g/goreleaser/nfpm/2.44.1/goreleaser.nfpm.locale.en-US.yaml new file mode 100644 index 0000000000000..c2606e424bf89 --- /dev/null +++ b/manifests/g/goreleaser/nfpm/2.44.1/goreleaser.nfpm.locale.en-US.yaml @@ -0,0 +1,19 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: goreleaser.nfpm +PackageVersion: 2.44.1 +PackageLocale: en-US +Publisher: goreleaser +PackageName: nfpm +PackageUrl: https://nfpm.goreleaser.com +License: MIT +LicenseUrl: https://github.com/goreleaser/nfpm/blob/main/LICENSE.md +Copyright: Becker Software LTDA +ShortDescription: nFPM is Not FPM - a simple deb, rpm, apk, ipk, and arch linux packager written in Go. +Description: |- + Simple, 0-dependencies, deb, rpm, apk, ipk, and arch linux packager. + nFPM (not FPM) is configurable via YAML and does not need any + packaging software installed. +Moniker: nfpm +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/goreleaser/nfpm/2.44.1/goreleaser.nfpm.yaml b/manifests/g/goreleaser/nfpm/2.44.1/goreleaser.nfpm.yaml new file mode 100644 index 0000000000000..9b63366c24d58 --- /dev/null +++ b/manifests/g/goreleaser/nfpm/2.44.1/goreleaser.nfpm.yaml @@ -0,0 +1,7 @@ +# This file was generated by GoReleaser. DO NOT EDIT. +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +PackageIdentifier: goreleaser.nfpm +PackageVersion: 2.44.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/h/hcs64/ww2ogg/0.24/hcs64.ww2ogg.installer.yaml b/manifests/h/hcs64/ww2ogg/0.24/hcs64.ww2ogg.installer.yaml new file mode 100644 index 0000000000000..7b5e8842acd27 --- /dev/null +++ b/manifests/h/hcs64/ww2ogg/0.24/hcs64.ww2ogg.installer.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: hcs64.ww2ogg +PackageVersion: "0.24" +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ww2ogg.exe + PortableCommandAlias: ww2ogg +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/hcs64/ww2ogg/releases/download/0.24/ww2ogg024.zip + InstallerSha256: CB90DBCC45160E0C435A4D83F59F678337C069E5551618E6B1C46254E7AEF59F +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2016-01-15 diff --git a/manifests/h/hcs64/ww2ogg/0.24/hcs64.ww2ogg.locale.en-US.yaml b/manifests/h/hcs64/ww2ogg/0.24/hcs64.ww2ogg.locale.en-US.yaml new file mode 100644 index 0000000000000..4c85ce46c703e --- /dev/null +++ b/manifests/h/hcs64/ww2ogg/0.24/hcs64.ww2ogg.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: hcs64.ww2ogg +PackageVersion: "0.24" +PackageLocale: en-US +Publisher: hcs64 +PublisherUrl: https://github.com/hcs64 +PublisherSupportUrl: https://github.com/hcs64/ww2ogg/issues +PackageName: ww2ogg +PackageUrl: https://github.com/hcs64/ww2ogg +License: BSD-3-Clause +ShortDescription: Convert AudioKinetic Wwise RIFF/RIFX Vorbis to standard Ogg Vorbis +ReleaseNotesUrl: https://github.com/hcs64/ww2ogg/releases/tag/0.24 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/hcs64/ww2ogg/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/h/hcs64/ww2ogg/0.24/hcs64.ww2ogg.yaml b/manifests/h/hcs64/ww2ogg/0.24/hcs64.ww2ogg.yaml new file mode 100644 index 0000000000000..590486be09e2c --- /dev/null +++ b/manifests/h/hcs64/ww2ogg/0.24/hcs64.ww2ogg.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: hcs64.ww2ogg +PackageVersion: "0.24" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/i/Instruqt/CLI/2318-ecada40/Instruqt.CLI.installer.yaml b/manifests/i/Instruqt/CLI/2318-ecada40/Instruqt.CLI.installer.yaml new file mode 100644 index 0000000000000..342919dbe35fc --- /dev/null +++ b/manifests/i/Instruqt/CLI/2318-ecada40/Instruqt.CLI.installer.yaml @@ -0,0 +1,19 @@ +# Created with WinGet Updater using komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: Instruqt.CLI +PackageVersion: 2318-ecada40 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: instruqt.exe +InstallModes: +- silent +UpgradeBehavior: install +ReleaseDate: 2025-12-23 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/instruqt/cli/releases/download/2318-ecada40/instruqt-windows.zip + InstallerSha256: 6D25C20FA8A948EF166C8356D9B89422B502D2B8BB722AD6D15F5AAC64083047 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/i/Instruqt/CLI/2318-ecada40/Instruqt.CLI.locale.en-US.yaml b/manifests/i/Instruqt/CLI/2318-ecada40/Instruqt.CLI.locale.en-US.yaml new file mode 100644 index 0000000000000..f53d268903d57 --- /dev/null +++ b/manifests/i/Instruqt/CLI/2318-ecada40/Instruqt.CLI.locale.en-US.yaml @@ -0,0 +1,18 @@ +# Created with WinGet Updater using komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: Instruqt.CLI +PackageVersion: 2318-ecada40 +PackageLocale: en-US +Publisher: Instruqt +PublisherUrl: https://instruqt.com/ +PublisherSupportUrl: https://github.com/instruqt/cli/issues +Author: Instruqt +PackageName: Instruqt +License: Proprietary +Copyright: Copyright (c) Instruqt +ShortDescription: Instruqt CLI +Moniker: instruqt +ReleaseNotesUrl: https://github.com/instruqt/cli/releases/tag/2318-ecada40 +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/i/Instruqt/CLI/2318-ecada40/Instruqt.CLI.yaml b/manifests/i/Instruqt/CLI/2318-ecada40/Instruqt.CLI.yaml new file mode 100644 index 0000000000000..4e4221c3ac5e0 --- /dev/null +++ b/manifests/i/Instruqt/CLI/2318-ecada40/Instruqt.CLI.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.6.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: Instruqt.CLI +PackageVersion: 2318-ecada40 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/j/JS8Call-improved/JS8Call-improved/2.4.0/JS8Call-improved.JS8Call-improved.installer.yaml b/manifests/j/JS8Call-improved/JS8Call-improved/2.4.0/JS8Call-improved.JS8Call-improved.installer.yaml new file mode 100644 index 0000000000000..bfd6f93b5d901 --- /dev/null +++ b/manifests/j/JS8Call-improved/JS8Call-improved/2.4.0/JS8Call-improved.JS8Call-improved.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: JS8Call-improved.JS8Call-improved +PackageVersion: 2.4.0 +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/JS8Call-improved/JS8Call-improved/releases/download/release%2F2.4.0/JS8Call-improved_2.4.0.exe + InstallerSha256: 358FED6F522074CA5BF1AD80AE9B7F1F634A6D51C89064F50F03F4896BDCC707 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2025-11-04 + diff --git a/manifests/j/JS8Call-improved/JS8Call-improved/2.4.0/JS8Call-improved.JS8Call-improved.locale.en-US.yaml b/manifests/j/JS8Call-improved/JS8Call-improved/2.4.0/JS8Call-improved.JS8Call-improved.locale.en-US.yaml new file mode 100644 index 0000000000000..5048291f1e600 --- /dev/null +++ b/manifests/j/JS8Call-improved/JS8Call-improved/2.4.0/JS8Call-improved.JS8Call-improved.locale.en-US.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: JS8Call-improved.JS8Call-improved +PackageVersion: 2.4.0 +PackageLocale: en-US +Publisher: Ham Radio +PublisherUrl: https://github.com/JS8Call-improved +PublisherSupportUrl: https://github.com/JS8Call-improved/JS8Call-improved/issues +PackageName: JS8Call-improved +PackageUrl: https://github.com/JS8Call-improved/JS8Call-improved +License: GPL-3.0 +ShortDescription: Improved version of the original JS8Call software for JS8 digital mode weak signal keyboard-to-keyboard messaging for ham radio. +ReleaseNotesUrl: https://github.com/JS8Call-improved/JS8Call-improved/releases/tag/release/2.4.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/JS8Call-improved/JS8Call-improved/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JS8Call-improved/JS8Call-improved/2.4.0/JS8Call-improved.JS8Call-improved.yaml b/manifests/j/JS8Call-improved/JS8Call-improved/2.4.0/JS8Call-improved.JS8Call-improved.yaml new file mode 100644 index 0000000000000..443cd5c682e6e --- /dev/null +++ b/manifests/j/JS8Call-improved/JS8Call-improved/2.4.0/JS8Call-improved.JS8Call-improved.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: JS8Call-improved.JS8Call-improved +PackageVersion: 2.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/RustRover/2025.3/JetBrains.RustRover.installer.yaml b/manifests/j/JetBrains/RustRover/2025.3/JetBrains.RustRover.installer.yaml new file mode 100644 index 0000000000000..2595738d0dc17 --- /dev/null +++ b/manifests/j/JetBrains/RustRover/2025.3/JetBrains.RustRover.installer.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: JetBrains.RustRover +PackageVersion: "2025.3" +InstallerType: nullsoft +InstallerSwitches: + Log: /LOG="" +UpgradeBehavior: uninstallPrevious +FileExtensions: +- ipr +- rs +ProductCode: RustRover 2025.3 +ReleaseDate: 2025-12-09 +AppsAndFeaturesEntries: +- DisplayVersion: 253.28294.352 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://download.jetbrains.com/rustrover/RustRover-2025.3.exe + InstallerSha256: 586A12ABD4BA9E189FE0260B3FA41359C661DB14945F18550AFBC5248B9DEE52 +- Architecture: x64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/rustrover/RustRover-2025.3.exe + InstallerSha256: 586A12ABD4BA9E189FE0260B3FA41359C661DB14945F18550AFBC5248B9DEE52 + ElevationRequirement: elevationRequired +- Architecture: arm64 + Scope: user + InstallerUrl: https://download.jetbrains.com/rustrover/RustRover-2025.3-aarch64.exe + InstallerSha256: 2B9A9B890B967BFEA4979E3E53E417D69F4F2A031F1A35DEFB3A3D5DD857E74B +- Architecture: arm64 + Scope: machine + InstallerUrl: https://download.jetbrains.com/rustrover/RustRover-2025.3-aarch64.exe + InstallerSha256: 2B9A9B890B967BFEA4979E3E53E417D69F4F2A031F1A35DEFB3A3D5DD857E74B + ElevationRequirement: elevationRequired +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/RustRover/2025.3/JetBrains.RustRover.locale.en-US.yaml b/manifests/j/JetBrains/RustRover/2025.3/JetBrains.RustRover.locale.en-US.yaml new file mode 100644 index 0000000000000..be79c248fa09b --- /dev/null +++ b/manifests/j/JetBrains/RustRover/2025.3/JetBrains.RustRover.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: JetBrains.RustRover +PackageVersion: "2025.3" +PackageLocale: en-US +Publisher: JetBrains s.r.o. +PublisherUrl: https://www.jetbrains.com/ +PublisherSupportUrl: https://www.jetbrains.com/support/ +PrivacyUrl: https://www.jetbrains.com/legal/docs/privacy/privacy/ +Author: JetBrains s.r.o. +PackageName: RustRover +PackageUrl: https://www.jetbrains.com/rust/ +License: Proprietary +LicenseUrl: https://www.jetbrains.com/legal/docs/toolbox/user/ +Copyright: Copyright © 2000-2025 JetBrains s.r.o. +ShortDescription: A powerhouse IDE for Rust developers +Description: Cross-platform Rust IDE with first-class support for Rust-related technologies. +Moniker: rustrover +Tags: +- code +- coding +- develop +- development +- ide +- programming +- rust +ReleaseNotes: |- + The RustRover 2025.3 is now available! + What's New in 2025.3. +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/RUST-A-286 +PurchaseUrl: https://www.jetbrains.com/rust/buy/ +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://www.jetbrains.com/help/rust/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/RustRover/2025.3/JetBrains.RustRover.locale.zh-CN.yaml b/manifests/j/JetBrains/RustRover/2025.3/JetBrains.RustRover.locale.zh-CN.yaml new file mode 100644 index 0000000000000..469cbe5f7da3f --- /dev/null +++ b/manifests/j/JetBrains/RustRover/2025.3/JetBrains.RustRover.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: JetBrains.RustRover +PackageVersion: "2025.3" +PackageLocale: zh-CN +PublisherUrl: https://www.jetbrains.com/zh-cn/ +PublisherSupportUrl: https://www.jetbrains.com/zh-cn/support/ +PackageUrl: https://www.jetbrains.com/zh-cn/rust/ +License: 专有软件 +ShortDescription: 面向 Rust 开发者的强大 IDE +Description: 跨平台 Rust IDE,对 Rust 相关技术提供一流的支持。 +Tags: +- rust +- 代码 +- 开发 +- 编程 +- 集成开发环境 +ReleaseNotesUrl: https://youtrack.jetbrains.com/articles/RUST-A-286 +PurchaseUrl: https://www.jetbrains.com/zh-cn/rust/buy/ +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://www.jetbrains.com/help/rust/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/j/JetBrains/RustRover/2025.3/JetBrains.RustRover.yaml b/manifests/j/JetBrains/RustRover/2025.3/JetBrains.RustRover.yaml new file mode 100644 index 0000000000000..3c0ee97255feb --- /dev/null +++ b/manifests/j/JetBrains/RustRover/2025.3/JetBrains.RustRover.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: JetBrains.RustRover +PackageVersion: "2025.3" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jul13n1/ArcAgent/1.0.6/Jul13n1.ArcAgent.installer.yaml b/manifests/j/Jul13n1/ArcAgent/1.0.6/Jul13n1.ArcAgent.installer.yaml new file mode 100644 index 0000000000000..8edf3abb50824 --- /dev/null +++ b/manifests/j/Jul13n1/ArcAgent/1.0.6/Jul13n1.ArcAgent.installer.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Jul13n1.ArcAgent +PackageVersion: 1.0.6 +InstallerType: nullsoft +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Jul13n1/arc-release/releases/download/v1.0.6/Arc_Installer.exe + InstallerSha256: B102C99D73AADA929F878A0DE5A409ED380E875CD6FDCE6D5871C527F83B6839 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2025-12-18 diff --git a/manifests/j/Jul13n1/ArcAgent/1.0.6/Jul13n1.ArcAgent.locale.en-UK.yaml b/manifests/j/Jul13n1/ArcAgent/1.0.6/Jul13n1.ArcAgent.locale.en-UK.yaml new file mode 100644 index 0000000000000..27879d7994b56 --- /dev/null +++ b/manifests/j/Jul13n1/ArcAgent/1.0.6/Jul13n1.ArcAgent.locale.en-UK.yaml @@ -0,0 +1,19 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Jul13n1.ArcAgent +PackageVersion: 1.0.6 +PackageLocale: en-UK +Publisher: Jul13n1 +PublisherUrl: https://github.com/Jul13n1 +PublisherSupportUrl: https://github.com/Jul13n1/arc-release/issues +PackageName: Arc Agent +PackageUrl: https://github.com/Jul13n1/arc-release +License: proprietary +ShortDescription: Released binaries for Arc +ReleaseNotesUrl: https://github.com/Jul13n1/arc-release/releases/tag/v1.0.6 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/Jul13n1/arc-release/wiki +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/j/Jul13n1/ArcAgent/1.0.6/Jul13n1.ArcAgent.yaml b/manifests/j/Jul13n1/ArcAgent/1.0.6/Jul13n1.ArcAgent.yaml new file mode 100644 index 0000000000000..fae57e72ef13a --- /dev/null +++ b/manifests/j/Jul13n1/ArcAgent/1.0.6/Jul13n1.ArcAgent.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: Jul13n1.ArcAgent +PackageVersion: 1.0.6 +DefaultLocale: en-UK +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/k/KDE/Dolphin/25.12.0/KDE.Dolphin.installer.yaml b/manifests/k/KDE/Dolphin/25.12.0/KDE.Dolphin.installer.yaml index 2ca6c00e43fb4..fa277c77845f8 100644 --- a/manifests/k/KDE/Dolphin/25.12.0/KDE.Dolphin.installer.yaml +++ b/manifests/k/KDE/Dolphin/25.12.0/KDE.Dolphin.installer.yaml @@ -8,14 +8,14 @@ UpgradeBehavior: install Installers: - Architecture: x64 Scope: user - InstallerUrl: https://cdn.kde.org/ci-builds/system/dolphin/release-25.12/windows/dolphin-release_25.12-6839-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 91CE4061F7C747465252098D7C5C30EA09B854D5B95D380173C0D31FB9B67777 + InstallerUrl: https://cdn.kde.org/ci-builds/system/dolphin/release-25.12/windows/dolphin-release_25.12-6866-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 6AC89E3EBD68416CEC1345B5F29FF406E7AAABA8BA0F3E7A74EF2C60A9ACD556 InstallerSwitches: Custom: /CurrentUser - Architecture: x64 Scope: machine - InstallerUrl: https://cdn.kde.org/ci-builds/system/dolphin/release-25.12/windows/dolphin-release_25.12-6839-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 91CE4061F7C747465252098D7C5C30EA09B854D5B95D380173C0D31FB9B67777 + InstallerUrl: https://cdn.kde.org/ci-builds/system/dolphin/release-25.12/windows/dolphin-release_25.12-6866-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 6AC89E3EBD68416CEC1345B5F29FF406E7AAABA8BA0F3E7A74EF2C60A9ACD556 InstallerSwitches: Custom: /AllUsers ManifestType: installer diff --git a/manifests/k/KDE/Filelight/25.12.0/KDE.Filelight.installer.yaml b/manifests/k/KDE/Filelight/25.12.0/KDE.Filelight.installer.yaml index c9fdc26804f03..c8fcd63caf405 100644 --- a/manifests/k/KDE/Filelight/25.12.0/KDE.Filelight.installer.yaml +++ b/manifests/k/KDE/Filelight/25.12.0/KDE.Filelight.installer.yaml @@ -9,14 +9,14 @@ ProductCode: Filelight Installers: - Architecture: x64 Scope: user - InstallerUrl: https://cdn.kde.org/ci-builds/utilities/filelight/release-25.12/windows/filelight-release_25.12-1967-windows-cl-msvc2022-x86_64.exe - InstallerSha256: DF920A2AEB3A50B5904E759133A37F24E89ED58B8D68AEDEA459C589A6943384 + InstallerUrl: https://cdn.kde.org/ci-builds/utilities/filelight/release-25.12/windows/filelight-release_25.12-1970-windows-cl-msvc2022-x86_64.exe + InstallerSha256: CEA8C3490D1A1D1C4C84CAD92D504EDF50CD6754758A337172D2E5DDD5528F87 InstallerSwitches: Custom: /CurrentUser - Architecture: x64 Scope: machine - InstallerUrl: https://cdn.kde.org/ci-builds/utilities/filelight/release-25.12/windows/filelight-release_25.12-1967-windows-cl-msvc2022-x86_64.exe - InstallerSha256: DF920A2AEB3A50B5904E759133A37F24E89ED58B8D68AEDEA459C589A6943384 + InstallerUrl: https://cdn.kde.org/ci-builds/utilities/filelight/release-25.12/windows/filelight-release_25.12-1970-windows-cl-msvc2022-x86_64.exe + InstallerSha256: CEA8C3490D1A1D1C4C84CAD92D504EDF50CD6754758A337172D2E5DDD5528F87 InstallerSwitches: Custom: /AllUsers ManifestType: installer diff --git a/manifests/k/KDE/Kate/25.12.0/KDE.Kate.installer.yaml b/manifests/k/KDE/Kate/25.12.0/KDE.Kate.installer.yaml index d96079ab49877..d50c69e79496b 100644 --- a/manifests/k/KDE/Kate/25.12.0/KDE.Kate.installer.yaml +++ b/manifests/k/KDE/Kate/25.12.0/KDE.Kate.installer.yaml @@ -9,14 +9,14 @@ ProductCode: Kate Installers: - Architecture: x64 Scope: user - InstallerUrl: https://cdn.kde.org/ci-builds/utilities/kate/release-25.12/windows/kate-release_25.12-10763-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 21546BBC0EB0AEAD479E7B9C94B098B5D2A6830E4A4633FFA0C32AC57C835F6F + InstallerUrl: https://cdn.kde.org/ci-builds/utilities/kate/release-25.12/windows/kate-release_25.12-10801-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 711CCDE0BD804D942CDE8629CA5FA4C61DF52A03414C560084FD053A03F126FF InstallerSwitches: Custom: /CurrentUser - Architecture: x64 Scope: machine - InstallerUrl: https://cdn.kde.org/ci-builds/utilities/kate/release-25.12/windows/kate-release_25.12-10763-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 21546BBC0EB0AEAD479E7B9C94B098B5D2A6830E4A4633FFA0C32AC57C835F6F + InstallerUrl: https://cdn.kde.org/ci-builds/utilities/kate/release-25.12/windows/kate-release_25.12-10801-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 711CCDE0BD804D942CDE8629CA5FA4C61DF52A03414C560084FD053A03F126FF InstallerSwitches: Custom: /AllUsers ManifestType: installer diff --git a/manifests/k/Kubernetes/kubectl/1.34.3/Kubernetes.kubectl.installer.yaml b/manifests/k/Kubernetes/kubectl/1.34.3/Kubernetes.kubectl.installer.yaml new file mode 100644 index 0000000000000..e9ba0caf99f4f --- /dev/null +++ b/manifests/k/Kubernetes/kubectl/1.34.3/Kubernetes.kubectl.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Kubernetes.kubectl +PackageVersion: 1.34.3 +InstallerType: portable +Commands: +- kubectl +Installers: +- Architecture: x86 + InstallerUrl: https://dl.k8s.io/release/v1.34.3/bin/windows/386/kubectl.exe + InstallerSha256: 16EF7895C8BCA1539523AE2D47451FC80AC020E726A816EB9DFB211F01173FF9 +- Architecture: x64 + InstallerUrl: https://dl.k8s.io/release/v1.34.3/bin/windows/amd64/kubectl.exe + InstallerSha256: 5EF6E0B019CFEA5B0EFF55B576C0118F64C0758A8BCBF52587C7F454F302F7BC +- Architecture: arm64 + InstallerUrl: https://dl.k8s.io/release/v1.34.3/bin/windows/arm64/kubectl.exe + InstallerSha256: E261BDC56BE78CCD9A63CD6D7D49029DB41B9A7064CE3F0C82C41800CC809AA6 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/k/Kubernetes/kubectl/1.34.3/Kubernetes.kubectl.locale.en-US.yaml b/manifests/k/Kubernetes/kubectl/1.34.3/Kubernetes.kubectl.locale.en-US.yaml new file mode 100644 index 0000000000000..1200e7f5274db --- /dev/null +++ b/manifests/k/Kubernetes/kubectl/1.34.3/Kubernetes.kubectl.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Kubernetes.kubectl +PackageVersion: 1.34.3 +PackageLocale: en-US +Publisher: The Kubernetes Authors +PublisherUrl: https://kubernetes.io/ +PublisherSupportUrl: https://github.com/kubernetes/kubectl/issues +PackageName: Kubernetes CLI +PackageUrl: https://kubernetes.io/docs/reference/kubectl/ +License: Apache-2.0 +LicenseUrl: https://github.com/kubernetes/kubectl/blob/HEAD/LICENSE +Copyright: Copyright 2025 The Kubernetes Authors. +ShortDescription: A command line tool for communicating with a Kubernetes cluster's control plane, using the Kubernetes API +Moniker: kubectl +Tags: +- cluster +- docker +- k8s +- kubernetes +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/k/Kubernetes/kubectl/1.34.3/Kubernetes.kubectl.locale.zh-CN.yaml b/manifests/k/Kubernetes/kubectl/1.34.3/Kubernetes.kubectl.locale.zh-CN.yaml new file mode 100644 index 0000000000000..41b282a2bd05e --- /dev/null +++ b/manifests/k/Kubernetes/kubectl/1.34.3/Kubernetes.kubectl.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: Kubernetes.kubectl +PackageVersion: 1.34.3 +PackageLocale: zh-CN +PublisherUrl: https://kubernetes.io/zh-cn/ +PackageUrl: https://kubernetes.io/zh-cn/docs/reference/kubectl/ +ShortDescription: 使用 Kubernetes API 与 Kubernetes 集群的控制面进行通信的命令行工具。 +Tags: +- docker +- k8s +- kubernetes +- 集群 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/k/Kubernetes/kubectl/1.34.3/Kubernetes.kubectl.yaml b/manifests/k/Kubernetes/kubectl/1.34.3/Kubernetes.kubectl.yaml new file mode 100644 index 0000000000000..941f8e1ce9997 --- /dev/null +++ b/manifests/k/Kubernetes/kubectl/1.34.3/Kubernetes.kubectl.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: Kubernetes.kubectl +PackageVersion: 1.34.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/l/LLVM/LLVM/21.1.8/LLVM.LLVM.installer.yaml b/manifests/l/LLVM/LLVM/21.1.8/LLVM.LLVM.installer.yaml new file mode 100644 index 0000000000000..4eb68e0640d8e --- /dev/null +++ b/manifests/l/LLVM/LLVM/21.1.8/LLVM.LLVM.installer.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: LLVM.LLVM +PackageVersion: 21.1.8 +InstallerType: nullsoft +Scope: machine +UpgradeBehavior: install +Commands: +- clang +- clang-check +- clang-cpp +- clang-format +- clang-tidy +- clang++ +- clangd +- lld +- lldb +- llvm-ar +- llvm-cov +- llvm-cxxfilt +- llvm-lib +- llvm-profdata +- llvm-readobj +- llvm-symbolizer +ProductCode: LLVM +ReleaseDate: 2025-12-16 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/llvm/llvm-project/releases/download/llvmorg-21.1.8/LLVM-21.1.8-win32.exe + InstallerSha256: 0492C5C292E515EBBBC2533671E54C5895FE209E534812313F64257407233181 +- Architecture: x64 + InstallerUrl: https://github.com/llvm/llvm-project/releases/download/llvmorg-21.1.8/LLVM-21.1.8-win64.exe + InstallerSha256: 7A5386C26497DB1691F320121E5B113364DD0274B98E55F15F4DBC00C0450113 +- Architecture: arm64 + InstallerUrl: https://github.com/llvm/llvm-project/releases/download/llvmorg-21.1.8/LLVM-21.1.8-woa64.exe + InstallerSha256: 1A770A49460B73667C1750B79F90E7027EAD468F966C5D30E180CAE19F61D91E +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/l/LLVM/LLVM/21.1.8/LLVM.LLVM.locale.de-DE.yaml b/manifests/l/LLVM/LLVM/21.1.8/LLVM.LLVM.locale.de-DE.yaml new file mode 100644 index 0000000000000..b6ac3ae12fe41 --- /dev/null +++ b/manifests/l/LLVM/LLVM/21.1.8/LLVM.LLVM.locale.de-DE.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: LLVM.LLVM +PackageVersion: 21.1.8 +PackageLocale: de-DE +ShortDescription: Das LLVM-Projekt ist eine Sammlung von modularen, wiederverwendbaren Compiler-Toolchain-Technologien. +Tags: +- c +- c++ +- clang +- kompilieren +- kompilierer +- lld +- lldb +- llvm +- objective-c +- werkzeugkette +Documentations: +- DocumentLabel: Dokumentation + DocumentUrl: https://llvm.org/docs +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/l/LLVM/LLVM/21.1.8/LLVM.LLVM.locale.en-US.yaml b/manifests/l/LLVM/LLVM/21.1.8/LLVM.LLVM.locale.en-US.yaml new file mode 100644 index 0000000000000..50cfc90bec5ba --- /dev/null +++ b/manifests/l/LLVM/LLVM/21.1.8/LLVM.LLVM.locale.en-US.yaml @@ -0,0 +1,45 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: LLVM.LLVM +PackageVersion: 21.1.8 +PackageLocale: en-US +Publisher: LLVM +PublisherUrl: https://llvm.org +PublisherSupportUrl: https://discourse.llvm.org +PackageName: LLVM +PackageUrl: https://llvm.org +License: Apache-2.0 with LLVM Exceptions +LicenseUrl: https://github.com/llvm/llvm-project/blob/llvmorg-19.1.0/LICENSE.TXT +Copyright: © Copyright 2003-2025, LLVM Project. +ShortDescription: A collection of modular and reusable compiler and toolchain technologies. +Moniker: llvm +Tags: +- c +- c++ +- clang +- compile +- compiler +- lld +- lldb +- llvm +- objective-c +- toolchain +ReleaseNotes: |- + - Aiden Grossman: [Github] Remove use of setup-windows and install-ninja in llvm tests (2078da43e25a) + - Aiden Grossman: [Github] Remove install-ninja/setup-windows (b6360d3bc7a9) + - Prajwal Nadig: [ExtractAPI] Format typedef params correctly (#171516) (7eb4bfe053d6) + - Brad Smith: [compiler-rt][sanitizer] fix i386 build for Haiku (#171075) (51e5074676d4) + - Nikita Popov: [SelectOptimize] Fix incorrect -1 immediate for large integers (#170860) (d2e835bd4638) + - Heejin Ahn: [WebAssembly] Remove FAKE_USEs before ExplicitLocals (#160768) (4b24e73d34ca) + - owenca: release/21.x: [clang-format] Fix a regression in annotating star before lambda (#170969) (4582a800c588) + - owenca: [clang-format] Fix a crash in AlignArrayOfStructures (#167099) (a5658809ac4a) + - owenca: [clang-format] Don’t swap (const override) with QAS_Right (#167191) (94c40c61c1ce) + - davidtrevelyan: [rtsan] Handle attributed IR function declarations (#169577) (b845b4cd771e) + - Tobias Hieta: Bump version to 21.1.8 (f68f64eb8130) +ReleaseNotesUrl: https://discourse.llvm.org/t/llvm-21-1-8-released/89144 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://llvm.org/docs +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/l/LLVM/LLVM/21.1.8/LLVM.LLVM.locale.zh-CN.yaml b/manifests/l/LLVM/LLVM/21.1.8/LLVM.LLVM.locale.zh-CN.yaml new file mode 100644 index 0000000000000..2be9d38eb1c1a --- /dev/null +++ b/manifests/l/LLVM/LLVM/21.1.8/LLVM.LLVM.locale.zh-CN.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: LLVM.LLVM +PackageVersion: 21.1.8 +PackageLocale: zh-CN +ShortDescription: 一套模块化且可重用的编译器和工具链技术的集合 +Tags: +- c +- c++ +- clang +- lld +- lldb +- llvm +- objective-c +- 工具链 +- 编译 +- 编译器 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://llvm.org/docs +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/l/LLVM/LLVM/21.1.8/LLVM.LLVM.yaml b/manifests/l/LLVM/LLVM/21.1.8/LLVM.LLVM.yaml new file mode 100644 index 0000000000000..4dd2b8960d0e9 --- /dev/null +++ b/manifests/l/LLVM/LLVM/21.1.8/LLVM.LLVM.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: LLVM.LLVM +PackageVersion: 21.1.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/AccountLockoutStatus/1.0.0.60/Microsoft.AccountLockoutStatus.installer.yaml b/manifests/m/Microsoft/AccountLockoutStatus/1.0.0.60/Microsoft.AccountLockoutStatus.installer.yaml new file mode 100644 index 0000000000000..16390c7291215 --- /dev/null +++ b/manifests/m/Microsoft/AccountLockoutStatus/1.0.0.60/Microsoft.AccountLockoutStatus.installer.yaml @@ -0,0 +1,13 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.AccountLockoutStatus +PackageVersion: 1.0.0.60 +InstallerLocale: en-US +InstallerType: msi +ProductCode: '{226A2297-C599-47D6-B991-9350172DBD10}' +Installers: +- Architecture: x86 + InstallerUrl: https://download.microsoft.com/download/c/0/4/c0472410-b4c2-4aef-89d2-e7c708dfc225/lockoutstatus.msi + InstallerSha256: 41EEFFD543430788404E3AE099C197CB45D426CFE7C7FF6A2942DC5AAAA1E0BC +ManifestType: installer +ManifestVersion: 1.12.0 \ No newline at end of file diff --git a/manifests/m/Microsoft/AccountLockoutStatus/1.0.0.60/Microsoft.AccountLockoutStatus.locale.en-US.yaml b/manifests/m/Microsoft/AccountLockoutStatus/1.0.0.60/Microsoft.AccountLockoutStatus.locale.en-US.yaml new file mode 100644 index 0000000000000..4a7136b44b1bc --- /dev/null +++ b/manifests/m/Microsoft/AccountLockoutStatus/1.0.0.60/Microsoft.AccountLockoutStatus.locale.en-US.yaml @@ -0,0 +1,19 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.AccountLockoutStatus +PackageVersion: 1.0.0.60 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Account Lockout Status +PackageUrl: https://www.microsoft.com/en-gb/download/details.aspx?id=15201 +License: Proprietary +ShortDescription: A combination command-line and graphical tool that displays lockout information about a particular user account. It collects information from every contactable domain controller in the target user account's domain. +Tags: +- account-lockout-status +- lockoutstatus.exe +- useraccounts +- user-accounts +- windowsresourcekits +- windows-resource-kits +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/AccountLockoutStatus/1.0.0.60/Microsoft.AccountLockoutStatus.yaml b/manifests/m/Microsoft/AccountLockoutStatus/1.0.0.60/Microsoft.AccountLockoutStatus.yaml new file mode 100644 index 0000000000000..f5538e3da8d27 --- /dev/null +++ b/manifests/m/Microsoft/AccountLockoutStatus/1.0.0.60/Microsoft.AccountLockoutStatus.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Microsoft.AccountLockoutStatus +PackageVersion: 1.0.0.60 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.1/Microsoft.DotNet.DesktopRuntime.10.installer.yaml b/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.1/Microsoft.DotNet.DesktopRuntime.10.installer.yaml new file mode 100644 index 0000000000000..2901b99634590 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.1/Microsoft.DotNet.DesktopRuntime.10.installer.yaml @@ -0,0 +1,44 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.DesktopRuntime.10 +PackageVersion: 10.0.1 +MinimumOSVersion: 6.1.7601 +InstallerSwitches: + Silent: /quiet + SilentWithProgress: /passive + Custom: /norestart +Installers: +- Architecture: arm64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.1/windowsdesktop-runtime-10.0.1-win-arm64.exe + InstallerSha256: F5BF24470AF81530A9967EC3910E0377E24A6A50964012CBF503FF81CC3C65CB + ProductCode: '{B091416B-24AC-4ED0-937D-B8142721FC42}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft Windows Desktop Runtime 10.0.1 (arm64) + Publisher: Microsoft Corporation + DisplayVersion: 10.0.1.50000 + ProductCode: '{B091416B-24AC-4ED0-937D-B8142721FC42}' +- Architecture: x64 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.1/windowsdesktop-runtime-10.0.1-win-x64.exe + InstallerSha256: 38FD64ECEE9BD9E364EA6FF698853BF303B195D7339DCA961DE3B5B13F499E8A + ProductCode: '{F14BFF87-249C-40A3-8DCD-EC608C3FF361}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft Windows Desktop Runtime 10.0.1 (x64) + Publisher: Microsoft Corporation + DisplayVersion: 10.0.1.50000 + ProductCode: '{F14BFF87-249C-40A3-8DCD-EC608C3FF361}' +- Architecture: x86 + InstallerType: burn + InstallerUrl: https://builds.dotnet.microsoft.com/dotnet/WindowsDesktop/10.0.1/windowsdesktop-runtime-10.0.1-win-x86.exe + InstallerSha256: E9D09C9565ADAC21EE9F51B39E590B3C5861C15E1994CDAE09DA58267A41E298 + ProductCode: '{D4F687C5-B64A-4D45-9CA2-933E1D060479}' + AppsAndFeaturesEntries: + - DisplayName: Microsoft Windows Desktop Runtime 10.0.1 (x86) + Publisher: Microsoft Corporation + DisplayVersion: 10.0.1.50000 + ProductCode: '{D4F687C5-B64A-4D45-9CA2-933E1D060479}' +ManifestType: installer +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.1/Microsoft.DotNet.DesktopRuntime.10.locale.en-US.yaml b/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.1/Microsoft.DotNet.DesktopRuntime.10.locale.en-US.yaml new file mode 100644 index 0000000000000..f4d317d8c9233 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.1/Microsoft.DotNet.DesktopRuntime.10.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.DesktopRuntime.10 +PackageVersion: 10.0.1 +PackageLocale: en-US +Publisher: Microsoft Corporation +PackageName: Microsoft .NET Windows Desktop Runtime 10.0 +PackageUrl: https://dotnet.microsoft.com +License: MIT +ShortDescription: .NET is a free, cross-platform, open-source developer platform for building many different types of applications. +Moniker: dotnet-desktop-10 +Tags: +- .NET +- .NET Core +- dotnet +- net +- C# +- csharp +- F# +- fsharp +- VB +- Visual Basic +- Windows Desktop +- Windows +- runtime +ManifestType: defaultLocale +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.1/Microsoft.DotNet.DesktopRuntime.10.yaml b/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.1/Microsoft.DotNet.DesktopRuntime.10.yaml new file mode 100644 index 0000000000000..f9bbbf586ac50 --- /dev/null +++ b/manifests/m/Microsoft/DotNet/DesktopRuntime/10/10.0.1/Microsoft.DotNet.DesktopRuntime.10.yaml @@ -0,0 +1,9 @@ +# Created using wingetcreate 1.0.4.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Microsoft.DotNet.DesktopRuntime.10 +PackageVersion: 10.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 + diff --git a/manifests/m/Microsoft/EdgeDriver/143.0.3650.75/Microsoft.EdgeDriver.installer.yaml b/manifests/m/Microsoft/EdgeDriver/143.0.3650.75/Microsoft.EdgeDriver.installer.yaml new file mode 100644 index 0000000000000..9fc161aa8e483 --- /dev/null +++ b/manifests/m/Microsoft/EdgeDriver/143.0.3650.75/Microsoft.EdgeDriver.installer.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Microsoft.EdgeDriver +PackageVersion: 143.0.3650.75 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: msedgedriver.exe + PortableCommandAlias: msedgedriver +Installers: +- Architecture: x86 + InstallerUrl: https://msedgedriver.microsoft.com/143.0.3650.75/edgedriver_win32.zip + InstallerSha256: AC8619FF6BE7A5C9413F3653E2224A858C9A3FDFA740C5E48F801015D5EE13CF +- Architecture: x64 + InstallerUrl: https://msedgedriver.microsoft.com/143.0.3650.75/edgedriver_win64.zip + InstallerSha256: 018DA91C5118AB5225482025E210920DC3459B6983C68CC0A491383FE730B3D7 +- Architecture: arm64 + InstallerUrl: https://msedgedriver.microsoft.com/143.0.3650.75/edgedriver_arm64.zip + InstallerSha256: D7989D7FCA592CD1528E9EE15791C9E1B0A7E4A4814E578EDC9DF8E3497C419C +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/EdgeDriver/143.0.3650.75/Microsoft.EdgeDriver.locale.en-US.yaml b/manifests/m/Microsoft/EdgeDriver/143.0.3650.75/Microsoft.EdgeDriver.locale.en-US.yaml new file mode 100644 index 0000000000000..13de2b1ce7cbf --- /dev/null +++ b/manifests/m/Microsoft/EdgeDriver/143.0.3650.75/Microsoft.EdgeDriver.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Microsoft.EdgeDriver +PackageVersion: 143.0.3650.75 +PackageLocale: en-US +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/ +PublisherSupportUrl: https://support.microsoft.com/ +PrivacyUrl: https://privacy.microsoft.com/privacystatement +Author: Microsoft Corporation +PackageName: Microsoft Edge WebDriver +PackageUrl: https://developer.microsoft.com/microsoft-edge/tools/webdriver/ +License: Freeware +LicenseUrl: https://msedgedriver.microsoft.com/EULA +Copyright: Copyright Microsoft Corporation. All rights reserved. +CopyrightUrl: https://www.microsoft.com/legal/intellectualproperty/trademarks +ShortDescription: Close the loop on your developer cycle by automating testing of your website in Microsoft Edge with Microsoft Edge WebDriver +Moniker: edgedriver +Tags: +- automate +- automation +- edge +- selenium +- webdriver +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://learn.microsoft.com/microsoft-edge/webdriver-chromium/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/EdgeDriver/143.0.3650.75/Microsoft.EdgeDriver.locale.zh-CN.yaml b/manifests/m/Microsoft/EdgeDriver/143.0.3650.75/Microsoft.EdgeDriver.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a4bc9b5b4929b --- /dev/null +++ b/manifests/m/Microsoft/EdgeDriver/143.0.3650.75/Microsoft.EdgeDriver.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Microsoft.EdgeDriver +PackageVersion: 143.0.3650.75 +PackageLocale: zh-CN +PrivacyUrl: https://privacy.microsoft.com/zh-cn/privacystatement +License: 免费软件 +ShortDescription: 使用 Microsoft Edge WebDriver 在 Microsoft Edge 中自动测试网站,以打通您的开发者周期。 +Tags: +- edge +- selenium +- webdriver +- 自动化 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://learn.microsoft.com/zh-cn/microsoft-edge/webdriver-chromium/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/EdgeDriver/143.0.3650.75/Microsoft.EdgeDriver.yaml b/manifests/m/Microsoft/EdgeDriver/143.0.3650.75/Microsoft.EdgeDriver.yaml new file mode 100644 index 0000000000000..bf34b0485e4b8 --- /dev/null +++ b/manifests/m/Microsoft/EdgeDriver/143.0.3650.75/Microsoft.EdgeDriver.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: Microsoft.EdgeDriver +PackageVersion: 143.0.3650.75 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/OSCDIMG/2.56/Microsoft.OSCDIMG.installer.yaml b/manifests/m/Microsoft/OSCDIMG/2.56/Microsoft.OSCDIMG.installer.yaml new file mode 100644 index 0000000000000..6d702197d2a50 --- /dev/null +++ b/manifests/m/Microsoft/OSCDIMG/2.56/Microsoft.OSCDIMG.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: Microsoft.OSCDIMG +PackageVersion: "2.56" +InstallerType: portable +Commands: +- oscdimg +Installers: +- Architecture: x64 + InstallerUrl: https://msdl.microsoft.com/download/symbols/oscdimg.exe/688CABB065000/oscdimg.exe + InstallerSha256: 2000160B2C5044691B2F9A0AC308E5207F273D4880A572457AF16D05886BA861 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/OSCDIMG/2.56/Microsoft.OSCDIMG.locale.en-US.yaml b/manifests/m/Microsoft/OSCDIMG/2.56/Microsoft.OSCDIMG.locale.en-US.yaml new file mode 100644 index 0000000000000..4fc2e29be9e3c --- /dev/null +++ b/manifests/m/Microsoft/OSCDIMG/2.56/Microsoft.OSCDIMG.locale.en-US.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Microsoft.OSCDIMG +PackageVersion: "2.56" +PackageLocale: en-US +Publisher: Microsoft +PackageName: OSCDIMG +PackageUrl: https://learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/oscdimg-command-line-options +License: Proprietary +Copyright: Copyright © YANG Huan 2017 +ShortDescription: CD-ROM and DVD-ROM Premastering Utility +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/OSCDIMG/2.56/Microsoft.OSCDIMG.yaml b/manifests/m/Microsoft/OSCDIMG/2.56/Microsoft.OSCDIMG.yaml new file mode 100644 index 0000000000000..01182c6325778 --- /dev/null +++ b/manifests/m/Microsoft/OSCDIMG/2.56/Microsoft.OSCDIMG.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: Microsoft.OSCDIMG +PackageVersion: "2.56" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/VisualStudioCode/Insiders/1.108.0/Microsoft.VisualStudioCode.Insiders.installer.yaml b/manifests/m/Microsoft/VisualStudioCode/Insiders/1.108.0/Microsoft.VisualStudioCode.Insiders.installer.yaml index 221f00209ef0c..bdbdabd08d9a8 100644 --- a/manifests/m/Microsoft/VisualStudioCode/Insiders/1.108.0/Microsoft.VisualStudioCode.Insiders.installer.yaml +++ b/manifests/m/Microsoft/VisualStudioCode/Insiders/1.108.0/Microsoft.VisualStudioCode.Insiders.installer.yaml @@ -11,19 +11,19 @@ Commands: Installers: - Architecture: arm64 Scope: machine - InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/f1db08ab87ec1108d0e3c2a20c7ffe5b8a55a23b/VSCodeSetup-arm64-1.108.0-insider.exe - InstallerSha256: F55CF4D274F9CB2C56B851D557A9FE439F5E27C23956372385988F7DDA48DB56 + InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/fd1cf0488d736dbc86c6395c783c31992cce8da4/VSCodeSetup-arm64-1.108.0-insider.exe + InstallerSha256: 046AD3AE446AF6CCD6D7B2CCA66C36A401AE42F1BFEC8C4A0220400D8A9E7AEB - Architecture: arm64 Scope: user - InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/f1db08ab87ec1108d0e3c2a20c7ffe5b8a55a23b/VSCodeUserSetup-arm64-1.108.0-insider.exe - InstallerSha256: D777327F1528C7447FAFE8FC57FE3100E8A259321B09B830357AEDB1E8A15165 + InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/fd1cf0488d736dbc86c6395c783c31992cce8da4/VSCodeUserSetup-arm64-1.108.0-insider.exe + InstallerSha256: 16871D13DE8E43B8127957943C2B57642B66E038E446795D31A62D62C473F2BE - Architecture: x64 Scope: machine - InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/f1db08ab87ec1108d0e3c2a20c7ffe5b8a55a23b/VSCodeSetup-x64-1.108.0-insider.exe - InstallerSha256: 6E717DF98FA6A0EAF2EA0E52A4F84FD921663B205DAC6B5C6EF3D7221D3C59D8 + InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/fd1cf0488d736dbc86c6395c783c31992cce8da4/VSCodeSetup-x64-1.108.0-insider.exe + InstallerSha256: 1411D7FDA6CB939C830590B323DDF220B560A6AF6939A7B496DF2321D0D705FC - Architecture: x64 Scope: user - InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/f1db08ab87ec1108d0e3c2a20c7ffe5b8a55a23b/VSCodeUserSetup-x64-1.108.0-insider.exe - InstallerSha256: 2F4AE6AD2E59A84B4517A76405F3C4D1E6C7CAD7F58DE6E874A0BA0B5320178F + InstallerUrl: https://vscode.download.prss.microsoft.com/dbazure/download/insider/fd1cf0488d736dbc86c6395c783c31992cce8da4/VSCodeUserSetup-x64-1.108.0-insider.exe + InstallerSha256: 8C84E8785836870CC96A10C3BD347F84C36BAE5F61814C385277E14F8110BA17 ManifestType: installer ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WSL/2.6.3/Microsoft.WSL.installer.yaml b/manifests/m/Microsoft/WSL/2.6.3/Microsoft.WSL.installer.yaml new file mode 100644 index 0000000000000..f8d31e90b7707 --- /dev/null +++ b/manifests/m/Microsoft/WSL/2.6.3/Microsoft.WSL.installer.yaml @@ -0,0 +1,24 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Microsoft.WSL +PackageVersion: 2.6.3 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.19041.0 +InstallerType: wix +PackageFamilyName: MicrosoftCorporationII.WindowsSubsystemForLinux_8wekyb3d8bbwe +AppsAndFeaturesEntries: +- InstallerType: msix +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/microsoft/WSL/releases/download/2.6.3/wsl.2.6.3.0.x64.msi + InstallerSha256: 562C79ABA6CE9B6E9170F069D31E3717F10D76DD8BFBEE39B07EAE0CA4A02CA0 + ProductCode: '{B637A6A6-5591-4503-AFD8-776164EB837A}' +- Architecture: arm64 + InstallerUrl: https://github.com/microsoft/WSL/releases/download/2.6.3/wsl.2.6.3.0.arm64.msi + InstallerSha256: 0F0D05DE80E6FFF17C160BB5F1AEE19776FF1350F518067B0B06C0BB105E27CD + ProductCode: '{9A8DD11D-9908-4B3D-A472-1084FCA8AB58}' +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2025-12-12 diff --git a/manifests/m/Microsoft/WSL/2.6.3/Microsoft.WSL.locale.en-US.yaml b/manifests/m/Microsoft/WSL/2.6.3/Microsoft.WSL.locale.en-US.yaml new file mode 100644 index 0000000000000..317b1a861f827 --- /dev/null +++ b/manifests/m/Microsoft/WSL/2.6.3/Microsoft.WSL.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: Microsoft.WSL +PackageVersion: 2.6.3 +PackageLocale: en-US +Publisher: Microsoft Corp. +PublisherUrl: https://www.microsoft.com/ +PublisherSupportUrl: https://github.com/microsoft/WSL/blob/master/SUPPORT.md +PrivacyUrl: https://privacy.microsoft.com/privacystatement +Author: Microsoft Corporation +PackageName: Windows Subsystem for Linux +PackageUrl: https://learn.microsoft.com/windows/wsl/ +License: MIT +LicenseUrl: https://github.com/microsoft/WSL/blob/master/LICENSE +Copyright: Copyright (c) Microsoft Corporation. All rights reserved. +CopyrightUrl: https://www.microsoft.com/legal/intellectualproperty/trademarks +ShortDescription: Windows Subsystem for Linux (WSL) is a feature of Windows that allows you to run a Linux environment on your Windows machine, without the need for a separate virtual machine or dual booting. +Description: Windows Subsystem for Linux (WSL) is a feature of Windows that allows you to run a Linux environment on your Windows machine, without the need for a separate virtual machine or dual booting. WSL is designed to provide a seamless and productive experience for developers who want to use both Windows and Linux at the same time. +Moniker: wsl +Tags: +- linux +- linux-subsystem +- windows-subsytem-for-linux +- wsl +ReleaseNotesUrl: https://github.com/microsoft/WSL/releases/tag/2.6.3 +InstallationNotes: If the virtual machine platform Windows optional feature was enabled, a restart is required for WSL to function properly. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WSL/2.6.3/Microsoft.WSL.locale.zh-CN.yaml b/manifests/m/Microsoft/WSL/2.6.3/Microsoft.WSL.locale.zh-CN.yaml new file mode 100644 index 0000000000000..7a76fbb7d4f63 --- /dev/null +++ b/manifests/m/Microsoft/WSL/2.6.3/Microsoft.WSL.locale.zh-CN.yaml @@ -0,0 +1,14 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Microsoft.WSL +PackageVersion: 2.6.3 +PackageLocale: zh-CN +PrivacyUrl: https://privacy.microsoft.com/zh-cn/privacystatement +PackageName: 适用于 Linux 的 Windows 子系统 +PackageUrl: https://learn.microsoft.com/zh-cn/windows/wsl/ +ShortDescription: 适用于 Linux 的 Windows 子系统 (WSL) 是 Windows 的一项功能,可用于在 Windows 计算机上运行 Linux 环境,而无需单独的虚拟机或双引导。 +Description: 适用于 Linux 的 Windows 子系统 (WSL) 是 Windows 的一项功能,可用于在 Windows 计算机上运行 Linux 环境,而无需单独的虚拟机或双引导。 WSL 旨在为希望同时使用 Windows 和 Linux 的开发人员提供无缝高效的体验。 +InstallationNotes: 如果启用了 Windows 可选功能“虚拟机平台”,则需要重新启动才能正常运行 WSL。 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WSL/2.6.3/Microsoft.WSL.yaml b/manifests/m/Microsoft/WSL/2.6.3/Microsoft.WSL.yaml new file mode 100644 index 0000000000000..35fed170bfbe4 --- /dev/null +++ b/manifests/m/Microsoft/WSL/2.6.3/Microsoft.WSL.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: Microsoft.WSL +PackageVersion: 2.6.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsPCHealthCheck/4.0.2410.23001/Microsoft.WindowsPCHealthCheck.installer.yaml b/manifests/m/Microsoft/WindowsPCHealthCheck/4.0.2410.23001/Microsoft.WindowsPCHealthCheck.installer.yaml index 90cfb95d0c187..cc18361dfa638 100644 --- a/manifests/m/Microsoft/WindowsPCHealthCheck/4.0.2410.23001/Microsoft.WindowsPCHealthCheck.installer.yaml +++ b/manifests/m/Microsoft/WindowsPCHealthCheck/4.0.2410.23001/Microsoft.WindowsPCHealthCheck.installer.yaml @@ -1,5 +1,4 @@ -# Created using wingetcreate 1.10.2.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +#yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Microsoft.WindowsPCHealthCheck PackageVersion: 4.0.2410.23001 @@ -20,4 +19,4 @@ Installers: InstallerSha256: 47E7ED5F16D5E7150D3FBBB8E4C726CB6382985F56B138071A39EED3EA97ADEF ProductCode: '{608975EA-D359-4F63-B77F-83EADD9B2590}' ManifestType: installer -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 \ No newline at end of file diff --git a/manifests/m/Microsoft/WindowsPCHealthCheck/4.0.2410.23001/Microsoft.WindowsPCHealthCheck.locale.en-US.yaml b/manifests/m/Microsoft/WindowsPCHealthCheck/4.0.2410.23001/Microsoft.WindowsPCHealthCheck.locale.en-US.yaml index d2fd74f3ae741..3533d7e2546cd 100644 --- a/manifests/m/Microsoft/WindowsPCHealthCheck/4.0.2410.23001/Microsoft.WindowsPCHealthCheck.locale.en-US.yaml +++ b/manifests/m/Microsoft/WindowsPCHealthCheck/4.0.2410.23001/Microsoft.WindowsPCHealthCheck.locale.en-US.yaml @@ -1,5 +1,4 @@ -# Created using wingetcreate 1.10.2.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +#yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Microsoft.WindowsPCHealthCheck PackageVersion: 4.0.2410.23001 @@ -12,11 +11,15 @@ Author: Microsoft Corporation PackageName: Windows PC Health Check PackageUrl: https://support.microsoft.com/en-us/windows/how-to-use-the-pc-health-check-app-9c8abd9b-03ba-4e67-81ef-36f37caa7844 License: Proprietary -Copyright: Copyright (c) Microsoft Corporation -ShortDescription: Windows 11 Compatibility Checker +Copyright: © Microsoft Corporation +ShortDescription: Windows 11 OS compatibility checker. Tags: +- windows-pc-health-check - compatibility - windows-11 - windows11 +- systemupgrade +- system-upgrade +- windowsupdate ManifestType: defaultLocale -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 \ No newline at end of file diff --git a/manifests/m/Microsoft/WindowsPCHealthCheck/4.0.2410.23001/Microsoft.WindowsPCHealthCheck.locale.nb-NO.yaml b/manifests/m/Microsoft/WindowsPCHealthCheck/4.0.2410.23001/Microsoft.WindowsPCHealthCheck.locale.nb-NO.yaml new file mode 100644 index 0000000000000..4b0a180434e93 --- /dev/null +++ b/manifests/m/Microsoft/WindowsPCHealthCheck/4.0.2410.23001/Microsoft.WindowsPCHealthCheck.locale.nb-NO.yaml @@ -0,0 +1,23 @@ +#yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Microsoft.WindowsPCHealthCheck +PackageVersion: 4.0.2410.23001 +PackageLocale: nb-NO +Publisher: Microsoft Corporation +PublisherUrl: https://www.microsoft.com/nb-no/ +PublisherSupportUrl: https://support.microsoft.com/nb-no +PrivacyUrl: https://privacy.microsoft.com/nb-no/privacystatement +Author: Microsoft Corporation +PackageName: Tilstandskontroll for Windows-PC +PackageUrl: https://support.microsoft.com/nb-no/windows/slik-bruker-du-appen-tilstandskontroll-for-pc-9c8abd9b-03ba-4e67-81ef-36f37caa7844 +License: Proprietær +Copyright: © Microsoft Corporation +ShortDescription: Windows 11-kompatibilitetstester. +Tags: +- kompatibilitet +- windows-11 +- windows11 +- systemoppgradering +- windowsupdate +ManifestType: locale +ManifestVersion: 1.12.0 \ No newline at end of file diff --git a/manifests/m/Microsoft/WindowsPCHealthCheck/4.0.2410.23001/Microsoft.WindowsPCHealthCheck.yaml b/manifests/m/Microsoft/WindowsPCHealthCheck/4.0.2410.23001/Microsoft.WindowsPCHealthCheck.yaml index 4dc0339d6c06f..a21a6a12f1f25 100644 --- a/manifests/m/Microsoft/WindowsPCHealthCheck/4.0.2410.23001/Microsoft.WindowsPCHealthCheck.yaml +++ b/manifests/m/Microsoft/WindowsPCHealthCheck/4.0.2410.23001/Microsoft.WindowsPCHealthCheck.yaml @@ -1,8 +1,7 @@ -# Created using wingetcreate 1.10.2.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +#yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Microsoft.WindowsPCHealthCheck PackageVersion: 4.0.2410.23001 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 \ No newline at end of file diff --git a/manifests/m/Mozilla/Firefox/ESR/de/140.6.0/Mozilla.Firefox.ESR.de.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/de/140.6.0/Mozilla.Firefox.ESR.de.installer.yaml new file mode 100644 index 0000000000000..182f3282b6441 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/de/140.6.0/Mozilla.Firefox.ESR.de.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.de +PackageVersion: 140.6.0 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-12-09 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.6.0esr/win32/de/Firefox%20Setup%20140.6.0esr.exe + InstallerSha256: D43FDA545619187C7936F53EE870AE5E8A78073A1D01F1396B826B268FBF0F61 + ProductCode: Mozilla Firefox 140.6.0 ESR (x86 de) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.6.0esr/win64/de/Firefox%20Setup%20140.6.0esr.exe + InstallerSha256: EE10FD0E447A358D79F3DC523B6491C7AA8850C777F840300CD21641190DA71F + ProductCode: Mozilla Firefox 140.6.0 ESR (x64 de) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.6.0esr/win64-aarch64/de/Firefox%20Setup%20140.6.0esr.exe + InstallerSha256: A3DAC83EDA893361A6C62F3C874230C3C9F838CBAE48832172AA5E317A44BBA6 + ProductCode: Mozilla Firefox 140.6.0 ESR (arm64 de) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/de/140.6.0/Mozilla.Firefox.ESR.de.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/de/140.6.0/Mozilla.Firefox.ESR.de.locale.de-DE.yaml new file mode 100644 index 0000000000000..34dee7f834178 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/de/140.6.0/Mozilla.Firefox.ESR.de.locale.de-DE.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.de +PackageVersion: 140.6.0 +PackageLocale: de-DE +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/websites +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (de) +PackageUrl: https://www.mozilla.org/de/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Holen Sie sich den Firefox Extended Support Release oder Rapid Release für umfassende Datensicherheit und Datenschutz. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.6.0/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/de/140.6.0/Mozilla.Firefox.ESR.de.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/de/140.6.0/Mozilla.Firefox.ESR.de.locale.en-US.yaml new file mode 100644 index 0000000000000..2df4ee262cc73 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/de/140.6.0/Mozilla.Firefox.ESR.de.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.de +PackageVersion: 140.6.0 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (de) +PackageUrl: https://www.mozilla.org/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Get the Firefox Extended Support Release or Rapid Release browser for comprehensive data security and data protection. +Moniker: firefox-esr +Tags: +- browser +- cross-platform +- foss +- gecko +- quantum +- spidermonkey +- web +- web-browser +ReleaseNotes: |- + Fixed + - Various security fixes. + Developer +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.6.0/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/de/140.6.0/Mozilla.Firefox.ESR.de.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/de/140.6.0/Mozilla.Firefox.ESR.de.locale.zh-CN.yaml new file mode 100644 index 0000000000000..6794032f44161 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/de/140.6.0/Mozilla.Firefox.ESR.de.locale.zh-CN.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.de +PackageVersion: 140.6.0 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageName: Mozilla Firefox ESR (de) +PackageUrl: https://www.mozilla.org/zh-CN/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: 下载部署 Firefox 延长支持版或快速发行版,获得全面的信息安全和数据保护。 +Tags: +- mozilla +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.6.0/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/de/140.6.0/Mozilla.Firefox.ESR.de.yaml b/manifests/m/Mozilla/Firefox/ESR/de/140.6.0/Mozilla.Firefox.ESR.de.yaml new file mode 100644 index 0000000000000..9334dbbef7e92 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/de/140.6.0/Mozilla.Firefox.ESR.de.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: Mozilla.Firefox.ESR.de +PackageVersion: 140.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/gl/140.6.0/Mozilla.Firefox.ESR.gl.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/gl/140.6.0/Mozilla.Firefox.ESR.gl.installer.yaml new file mode 100644 index 0000000000000..d70fcdbc4d1cf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/gl/140.6.0/Mozilla.Firefox.ESR.gl.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.gl +PackageVersion: 140.6.0 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-12-09 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.6.0esr/win32/gl/Firefox%20Setup%20140.6.0esr.exe + InstallerSha256: 83979AFD204C23AB15D89B0F5A80C20C5321EF620A71C78F9237F0EAC50C8DAA + ProductCode: Mozilla Firefox 140.6.0 ESR (x86 gl) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.6.0esr/win64/gl/Firefox%20Setup%20140.6.0esr.exe + InstallerSha256: E92140D8E0105CA05B6F428D87E78CE770FD5595FBCA9D3F651700A587DC4063 + ProductCode: Mozilla Firefox 140.6.0 ESR (x64 gl) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.6.0esr/win64-aarch64/gl/Firefox%20Setup%20140.6.0esr.exe + InstallerSha256: FC2D23C80081E59555B94330CE94536A907EF70D6A92AC9A38FAB382D9D603BF + ProductCode: Mozilla Firefox 140.6.0 ESR (arm64 gl) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/gl/140.6.0/Mozilla.Firefox.ESR.gl.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/gl/140.6.0/Mozilla.Firefox.ESR.gl.locale.de-DE.yaml new file mode 100644 index 0000000000000..9e0d38b84a110 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/gl/140.6.0/Mozilla.Firefox.ESR.gl.locale.de-DE.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.gl +PackageVersion: 140.6.0 +PackageLocale: de-DE +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/websites +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (gl) +PackageUrl: https://www.mozilla.org/de/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Holen Sie sich den Firefox Extended Support Release oder Rapid Release für umfassende Datensicherheit und Datenschutz. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.6.0/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/gl/140.6.0/Mozilla.Firefox.ESR.gl.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/gl/140.6.0/Mozilla.Firefox.ESR.gl.locale.en-US.yaml new file mode 100644 index 0000000000000..58e5b54af03e1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/gl/140.6.0/Mozilla.Firefox.ESR.gl.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.gl +PackageVersion: 140.6.0 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (gl) +PackageUrl: https://www.mozilla.org/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Get the Firefox Extended Support Release or Rapid Release browser for comprehensive data security and data protection. +Moniker: firefox-esr +Tags: +- browser +- cross-platform +- foss +- gecko +- quantum +- spidermonkey +- web +- web-browser +ReleaseNotes: |- + Fixed + - Various security fixes. + Developer +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.6.0/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/gl/140.6.0/Mozilla.Firefox.ESR.gl.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/gl/140.6.0/Mozilla.Firefox.ESR.gl.locale.zh-CN.yaml new file mode 100644 index 0000000000000..1b4e0351f3379 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/gl/140.6.0/Mozilla.Firefox.ESR.gl.locale.zh-CN.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.gl +PackageVersion: 140.6.0 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageName: Mozilla Firefox ESR (gl) +PackageUrl: https://www.mozilla.org/zh-CN/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: 下载部署 Firefox 延长支持版或快速发行版,获得全面的信息安全和数据保护。 +Tags: +- mozilla +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.6.0/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/gl/140.6.0/Mozilla.Firefox.ESR.gl.yaml b/manifests/m/Mozilla/Firefox/ESR/gl/140.6.0/Mozilla.Firefox.ESR.gl.yaml new file mode 100644 index 0000000000000..12547e93954dc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/gl/140.6.0/Mozilla.Firefox.ESR.gl.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: Mozilla.Firefox.ESR.gl +PackageVersion: 140.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ta/140.6.0/Mozilla.Firefox.ESR.ta.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/ta/140.6.0/Mozilla.Firefox.ESR.ta.installer.yaml new file mode 100644 index 0000000000000..48e0d0e7296d8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ta/140.6.0/Mozilla.Firefox.ESR.ta.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.ta +PackageVersion: 140.6.0 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-12-09 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.6.0esr/win32/ta/Firefox%20Setup%20140.6.0esr.exe + InstallerSha256: 3E01A9A33DEC3D038C317ACE3062D973E0027FB4F098A832ED8FF2F2C7A443B5 + ProductCode: Mozilla Firefox 140.6.0 ESR (x86 ta) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.6.0esr/win64/ta/Firefox%20Setup%20140.6.0esr.exe + InstallerSha256: DC385D7242D62592B9A0E966B81D4F0D727F24C5A6F98FA2C99293AF8B59D650 + ProductCode: Mozilla Firefox 140.6.0 ESR (x64 ta) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.6.0esr/win64-aarch64/ta/Firefox%20Setup%20140.6.0esr.exe + InstallerSha256: 5FB9AFCE074867C1477DA8C166C1189B60AFD48086C76599F01D810A8C72B30A + ProductCode: Mozilla Firefox 140.6.0 ESR (arm64 ta) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ta/140.6.0/Mozilla.Firefox.ESR.ta.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/ta/140.6.0/Mozilla.Firefox.ESR.ta.locale.de-DE.yaml new file mode 100644 index 0000000000000..b1a9e3973c8d5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ta/140.6.0/Mozilla.Firefox.ESR.ta.locale.de-DE.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.ta +PackageVersion: 140.6.0 +PackageLocale: de-DE +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/websites +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (ta) +PackageUrl: https://www.mozilla.org/de/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Holen Sie sich den Firefox Extended Support Release oder Rapid Release für umfassende Datensicherheit und Datenschutz. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.6.0/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ta/140.6.0/Mozilla.Firefox.ESR.ta.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/ta/140.6.0/Mozilla.Firefox.ESR.ta.locale.en-US.yaml new file mode 100644 index 0000000000000..6022e5b0b19c4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ta/140.6.0/Mozilla.Firefox.ESR.ta.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.ta +PackageVersion: 140.6.0 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (ta) +PackageUrl: https://www.mozilla.org/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Get the Firefox Extended Support Release or Rapid Release browser for comprehensive data security and data protection. +Moniker: firefox-esr +Tags: +- browser +- cross-platform +- foss +- gecko +- quantum +- spidermonkey +- web +- web-browser +ReleaseNotes: |- + Fixed + - Various security fixes. + Developer +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.6.0/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ta/140.6.0/Mozilla.Firefox.ESR.ta.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/ta/140.6.0/Mozilla.Firefox.ESR.ta.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a87bd9acf6868 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ta/140.6.0/Mozilla.Firefox.ESR.ta.locale.zh-CN.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.ta +PackageVersion: 140.6.0 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageName: Mozilla Firefox ESR (ta) +PackageUrl: https://www.mozilla.org/zh-CN/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: 下载部署 Firefox 延长支持版或快速发行版,获得全面的信息安全和数据保护。 +Tags: +- mozilla +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/140.6.0/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ta/140.6.0/Mozilla.Firefox.ESR.ta.yaml b/manifests/m/Mozilla/Firefox/ESR/ta/140.6.0/Mozilla.Firefox.ESR.ta.yaml new file mode 100644 index 0000000000000..503e3375a7352 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ta/140.6.0/Mozilla.Firefox.ESR.ta.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: Mozilla.Firefox.ESR.ta +PackageVersion: 140.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.installer.yaml b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.installer.yaml new file mode 100644 index 0000000000000..637e5154550c6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: "146.0" +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2025-12-09 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/146.0/win32/ko/Firefox%20Setup%20146.0.exe + InstallerSha256: 48EBFC62628AEFE5FF5E9B571969A94B6D5C861910715CB8B3C7AF982E47CBDC + ProductCode: Mozilla Firefox 146.0 (x86 ko) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/146.0/win64/ko/Firefox%20Setup%20146.0.exe + InstallerSha256: 7030A73C2C79A044BBC14D6A885A0B65592752F8D72FAF15E78422D3D7D332A3 + ProductCode: Mozilla Firefox 146.0 (x64 ko) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/146.0/win64-aarch64/ko/Firefox%20Setup%20146.0.exe + InstallerSha256: 4365F0B2D383987DAA8E5F53635EBE15514EA9119E1154236813C99BA7B596E5 + ProductCode: Mozilla Firefox 146.0 (arm64 ko) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.cs-CZ.yaml new file mode 100644 index 0000000000000..9d615118ca8bc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.cs-CZ.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: "146.0" +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ReleaseNotesUrl: https://www.mozilla.org/firefox/146.0/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.da-DK.yaml new file mode 100644 index 0000000000000..1f923a0a4aad4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.da-DK.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: "146.0" +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ReleaseNotesUrl: https://www.mozilla.org/firefox/146.0/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.de-DE.yaml new file mode 100644 index 0000000000000..7b76cf1dc7703 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.de-DE.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: "146.0" +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/146.0/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.el-GR.yaml new file mode 100644 index 0000000000000..cda64ff444951 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.el-GR.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: Mozilla.Firefox.ko +PackageVersion: "146.0" +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ReleaseNotesUrl: https://www.mozilla.org/firefox/146.0/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.en-GB.yaml new file mode 100644 index 0000000000000..23d9bd159d22e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: "146.0" +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotesUrl: https://www.mozilla.org/firefox/146.0/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.en-US.yaml new file mode 100644 index 0000000000000..e91720aefb2e2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.en-US.yaml @@ -0,0 +1,91 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: "146.0" +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (ko) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: |- + New + - Windows 10 users can now automatically protect their passwords, bookmarks, and more by turning on backup in Firefox. Your browsing data is saved daily on your device and can be encrypted with a password. When you set up a fresh install of Firefox on any operating system for a new device or your current one, you can restore from this backup and pick up right where you left off. This feature is currently available on Windows devices and will be coming to other operating systems soon. + + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + - MacOS users now have a dedicated GPU process by default. This includes WebGPU, WebGL, and Firefox's own WebRender. With this feature enabled, fatal errors in graphics code will no longer crash the browser, and will instead transparently restart the GPU process. + - Firefox Labs is now available to all users, regardless of whether they choose to participate in studies or submit telemetry. This means more experimental features are now available to more people. + - Users can now skip the results page and see direct results as they type in the search bar for faster, simpler browsing. + + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + - There is a New Tab Weather opt-in workflow available for users in the EU and some other countries, where they can choose whether to enable location detection or manually search for a location. + + This feature is part of a progressive roll out. + What is a progressive roll out? + Certain new Firefox features are released gradually. This means some users will see the feature before everyone does. This approach helps to get early feedback to catch bugs and improve behavior quickly, meaning more Firefox users overall have a better experience. + - Firefox now natively supports fractional scaled displays on Linux (Wayland), making rendering more effective. + - For users of the English-language versions of Firefox in France, Germany, and Italy, the address bar now shows English-language suggestions for holidays and other important dates. + Fixed + - When the timepicker is enabled for and , it now provides full keyboard and assistive technology support. This update also improves the behavior of the time spin buttons for users who prefer reduced motion. The Firefox Accessibility team hopes that making the built-in timepicker accessible will encourage wider adoption of browser-provided time and date inputs across the web, reducing the need for custom controls, and improving accessibility for all users. + - Various security fixes. + Changed + - The Colors dialog in Settings now uses clearer color picker controls that keep each color sample next to its label. It makes it easier to understand and adjust text, background, and link colors when using a forced colors palette to customize the default text, link, and page background colors, especially with or without screen magnifiers. + + - Firefox removed support for Direct2D on Windows. If you still require Direct2D support, please use ESR 140.0 or higher. + Enterprise + - You can find information about policy updates and enterprise specific bug fixes in the Firefox for Enterprise 146 Release Notes. + Developer + - Firefox now supports ML-KEM for WebRTC, by sending a post-quantum (PQ) key share during the DTLS 1.3 handshake. ML-KEM is the next-generation public-key cryptosystem that is believed to be secure against attackers with large quantum computers. + - Firefox now supports compressed elliptic curve points in WebCrypto. These reduce the size of public keys by nearly half, saving bandwidth and storage, while still allowing the full point to be reconstructed mathematically. + - The Skia graphics library has been updated to improve rendering performance and compatibility. + - Unused CSS custom properties are now hidden by default in the Rule view of the Inspector. This not only reduces clutter, but in some cases also speeds up the rendering of the inspector panel. + Web Platform + - The @scope rule is now supported, allowing authors to restrict styling to a subtree of the DOM. This avoids having to write overly-specific selectors. + - Firefox now supports the contrast-color() CSS function that takes a color value and returns a contrasting color. Note that the specification currently restricts the contrasting color to black or white. This limitation is expected to be removed in the future. (Learn more) + - Introduced the text-decoration-inset property, which allows authors to adjust the start and end points of line decorations. + - Firefox now supports the legacy -webkit-fill-available keyword as a value for the CSS width and height properties. This improves rendering of content on websites that use this value. This keyword is an alias for the recently standardized stretch keyword, which is not yet enabled in Firefox. + - On Windows, clicking tabs may not work at the very top of the screen when Firefox is maximized on a second monitor. We’re working to fix this in a future release. (Fixed in 147.0) + Community Contributions + - With the release of Firefox 146, we are pleased to welcome the developers who contributed their first code change to Firefox in this release, 16 of whom were brand new volunteers! Please join us in thanking each of these diligent and enthusiastic individuals, and take a look at their contributions: + - Alex Johnson: 1924339 + - Apurva: 1973318 + - Cornelius Emase: 1913086, 1977921, 1996578, 1996859, 1998012 + - Ethan Gallucci: 1991983 + - gopi: 1940198 + - Jeffrey Houghton: 1900302 + - Julian: 1945449 + - Leonardo Paffi: 1996678 + - Loago Zambe: 1975592 + - Meg Ford: 1898383, 1997187 + - Mingyuan Zhao [:MagentaManifold]: 1995168 + - Pavel Kireev: 400264, 1852625, 1975612, 1986459, 1988355, 1998237 + - PhuongNam: 1968398 + - Simon Knott: 1993703 + - Thomas J Faughnan Jr: 1994098 + - zzjas98: 1997216 +ReleaseNotesUrl: https://www.mozilla.org/firefox/146.0/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.es-MX.yaml new file mode 100644 index 0000000000000..9bb3c08872bbe --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.es-MX.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: "146.0" +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/146.0/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.fr-FR.yaml new file mode 100644 index 0000000000000..f97232fd0c5b1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.fr-FR.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: "146.0" +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ReleaseNotesUrl: https://www.mozilla.org/firefox/146.0/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.hu-HU.yaml new file mode 100644 index 0000000000000..87690fcca79d0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.hu-HU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: "146.0" +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ReleaseNotesUrl: https://www.mozilla.org/firefox/146.0/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.ja-JP.yaml new file mode 100644 index 0000000000000..e8de1e0c42c92 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.ja-JP.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: "146.0" +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ReleaseNotesUrl: https://www.mozilla.org/firefox/146.0/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.nb-NO.yaml new file mode 100644 index 0000000000000..ecfd42b8fe5f5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.nb-NO.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: "146.0" +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ReleaseNotesUrl: https://www.mozilla.org/firefox/146.0/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.ru-RU.yaml new file mode 100644 index 0000000000000..70a556f92bc4b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.ru-RU.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: "146.0" +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ReleaseNotesUrl: https://www.mozilla.org/firefox/146.0/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.ta-IN.yaml new file mode 100644 index 0000000000000..775061642c645 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.ta-IN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: "146.0" +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ReleaseNotesUrl: https://www.mozilla.org/firefox/146.0/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.zh-CN.yaml new file mode 100644 index 0000000000000..3fb053ab67510 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: "146.0" +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ReleaseNotesUrl: https://www.mozilla.org/firefox/146.0/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.yaml b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.yaml new file mode 100644 index 0000000000000..044c1afe80969 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/146.0/Mozilla.Firefox.ko.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: Mozilla.Firefox.ko +PackageVersion: "146.0" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/de/146.0.1/Mozilla.Thunderbird.de.installer.yaml b/manifests/m/Mozilla/Thunderbird/de/146.0.1/Mozilla.Thunderbird.de.installer.yaml new file mode 100644 index 0000000000000..932326cc923ff --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/de/146.0.1/Mozilla.Thunderbird.de.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: Mozilla.Thunderbird.de +PackageVersion: 146.0.1 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- mailto +- mid +- webcal +- webcals +FileExtensions: +- eml +- ics +- wdseml +ReleaseDate: 2025-12-17 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/146.0.1/win32/de/Thunderbird%20Setup%20146.0.1.exe + InstallerSha256: 1044FB2C81EA85D69B8010FE3BC83B319AA89A12807BCC3D9C69EEDCA34D66BC + ProductCode: Mozilla Thunderbird 146.0.1 (x86 de) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/146.0.1/win64/de/Thunderbird%20Setup%20146.0.1.exe + InstallerSha256: 5DD61C8E907BD8CCE43DA6227DE6D7397C1BFE03B906B571FE4F10259E1E3B8A + ProductCode: Mozilla Thunderbird 146.0.1 (x64 de) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/de/146.0.1/Mozilla.Thunderbird.de.locale.en-US.yaml b/manifests/m/Mozilla/Thunderbird/de/146.0.1/Mozilla.Thunderbird.de.locale.en-US.yaml new file mode 100644 index 0000000000000..cf5fe94a92b50 --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/de/146.0.1/Mozilla.Thunderbird.de.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Thunderbird.de +PackageVersion: 146.0.1 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/thunderbird/ +Author: Mozilla Foundation +PackageName: Mozilla Thunderbird (de) +PackageUrl: https://www.thunderbird.net/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Thunderbird is a free email application that is easy to set up and customize - and it's loaded with great features! +Description: Thunderbird is a free and open source email, newsfeed, chat, and calendaring client, that’s easy to set up and customize. One of the core principles of Thunderbird is the use and promotion of open standards - this focus is a rejection of our world of closed platforms and services that can’t communicate with each other. We want our users to have freedom and choice in how they communicate. +Moniker: thunderbird +Tags: +- email +- mail +ReleaseNotes: |- + What’s Fixed + fixed + Reverted fix that localized consistent special folder names in server’s language +ReleaseNotesUrl: https://www.thunderbird.net/thunderbird/146.0.1/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/de/146.0.1/Mozilla.Thunderbird.de.locale.zh-CN.yaml b/manifests/m/Mozilla/Thunderbird/de/146.0.1/Mozilla.Thunderbird.de.locale.zh-CN.yaml new file mode 100644 index 0000000000000..e0b57f4cb287a --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/de/146.0.1/Mozilla.Thunderbird.de.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Thunderbird.de +PackageVersion: 146.0.1 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/privacy/thunderbird/ +Author: Mozilla 基金会 +PackageName: Mozilla Thunderbird (de) +PackageUrl: https://www.thunderbird.net/zh-CN/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Thunderbird 是一款免费的邮件应用程序,配置简单、定制自由、功能强大! +Description: Thunderbird 是一款免费开源的电子邮件、新闻订阅、即时通信、日历客户端,配置简单,定制自由。Thunderbird 的核心准则之一是使用和推广开放标准——重点就是拒绝世界上我们无法相互通信的封闭平台和服务。我们希望我们的用户在沟通方式上拥有自由和选择。 +Tags: +- 电子邮件 +- 邮件 +ReleaseNotesUrl: https://www.thunderbird.net/thunderbird/146.0.1/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/de/146.0.1/Mozilla.Thunderbird.de.yaml b/manifests/m/Mozilla/Thunderbird/de/146.0.1/Mozilla.Thunderbird.de.yaml new file mode 100644 index 0000000000000..4b7b8b6aed111 --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/de/146.0.1/Mozilla.Thunderbird.de.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: Mozilla.Thunderbird.de +PackageVersion: 146.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/dsb/146.0.1/Mozilla.Thunderbird.dsb.installer.yaml b/manifests/m/Mozilla/Thunderbird/dsb/146.0.1/Mozilla.Thunderbird.dsb.installer.yaml new file mode 100644 index 0000000000000..b54b8b1dab925 --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/dsb/146.0.1/Mozilla.Thunderbird.dsb.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: Mozilla.Thunderbird.dsb +PackageVersion: 146.0.1 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- mailto +- mid +- webcal +- webcals +FileExtensions: +- eml +- ics +- wdseml +ReleaseDate: 2025-12-17 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/146.0.1/win32/dsb/Thunderbird%20Setup%20146.0.1.exe + InstallerSha256: 82751FF28D997576A274919D693BD95AF6FED7FFF4028A98936C24672D95CBE8 + ProductCode: Mozilla Thunderbird 146.0.1 (x86 dsb) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/146.0.1/win64/dsb/Thunderbird%20Setup%20146.0.1.exe + InstallerSha256: 23118A6A1F3471C54AB44515C401E0B6AFD5FC5B009AD30C1BB28C7BCCC3B687 + ProductCode: Mozilla Thunderbird 146.0.1 (x64 dsb) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/dsb/146.0.1/Mozilla.Thunderbird.dsb.locale.en-US.yaml b/manifests/m/Mozilla/Thunderbird/dsb/146.0.1/Mozilla.Thunderbird.dsb.locale.en-US.yaml new file mode 100644 index 0000000000000..6fc38a9090b4f --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/dsb/146.0.1/Mozilla.Thunderbird.dsb.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Thunderbird.dsb +PackageVersion: 146.0.1 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/thunderbird/ +Author: Mozilla Foundation +PackageName: Mozilla Thunderbird (dsb) +PackageUrl: https://www.thunderbird.net/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Thunderbird is a free email application that is easy to set up and customize - and it's loaded with great features! +Description: Thunderbird is a free and open source email, newsfeed, chat, and calendaring client, that’s easy to set up and customize. One of the core principles of Thunderbird is the use and promotion of open standards - this focus is a rejection of our world of closed platforms and services that can’t communicate with each other. We want our users to have freedom and choice in how they communicate. +Moniker: thunderbird +Tags: +- email +- mail +ReleaseNotes: |- + What’s Fixed + fixed + Reverted fix that localized consistent special folder names in server’s language +ReleaseNotesUrl: https://www.thunderbird.net/thunderbird/146.0.1/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/dsb/146.0.1/Mozilla.Thunderbird.dsb.locale.zh-CN.yaml b/manifests/m/Mozilla/Thunderbird/dsb/146.0.1/Mozilla.Thunderbird.dsb.locale.zh-CN.yaml new file mode 100644 index 0000000000000..5cb15d8c5f1b3 --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/dsb/146.0.1/Mozilla.Thunderbird.dsb.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Thunderbird.dsb +PackageVersion: 146.0.1 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/privacy/thunderbird/ +Author: Mozilla 基金会 +PackageName: Mozilla Thunderbird (dsb) +PackageUrl: https://www.thunderbird.net/zh-CN/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Thunderbird 是一款免费的邮件应用程序,配置简单、定制自由、功能强大! +Description: Thunderbird 是一款免费开源的电子邮件、新闻订阅、即时通信、日历客户端,配置简单,定制自由。Thunderbird 的核心准则之一是使用和推广开放标准——重点就是拒绝世界上我们无法相互通信的封闭平台和服务。我们希望我们的用户在沟通方式上拥有自由和选择。 +Tags: +- 电子邮件 +- 邮件 +ReleaseNotesUrl: https://www.thunderbird.net/thunderbird/146.0.1/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/dsb/146.0.1/Mozilla.Thunderbird.dsb.yaml b/manifests/m/Mozilla/Thunderbird/dsb/146.0.1/Mozilla.Thunderbird.dsb.yaml new file mode 100644 index 0000000000000..10e24ef46d919 --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/dsb/146.0.1/Mozilla.Thunderbird.dsb.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: Mozilla.Thunderbird.dsb +PackageVersion: 146.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/es-MX/146.0.1/Mozilla.Thunderbird.es-MX.installer.yaml b/manifests/m/Mozilla/Thunderbird/es-MX/146.0.1/Mozilla.Thunderbird.es-MX.installer.yaml new file mode 100644 index 0000000000000..253ff5134ea3c --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/es-MX/146.0.1/Mozilla.Thunderbird.es-MX.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: Mozilla.Thunderbird.es-MX +PackageVersion: 146.0.1 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- mailto +- mid +- webcal +- webcals +FileExtensions: +- eml +- ics +- wdseml +ReleaseDate: 2025-12-17 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/146.0.1/win32/es-MX/Thunderbird%20Setup%20146.0.1.exe + InstallerSha256: 40A27C144DFDDF70C8FBA482B19C31103A3B3E3A3EF8B2D1B73F3F1DFBC0FCEB + ProductCode: Mozilla Thunderbird 146.0.1 (x86 es-MX) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/146.0.1/win64/es-MX/Thunderbird%20Setup%20146.0.1.exe + InstallerSha256: DFF6FA235FDB7AB04FDCA18BD441EE37A854D847BA69F1250A6499F8A2150CB7 + ProductCode: Mozilla Thunderbird 146.0.1 (x64 es-MX) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/es-MX/146.0.1/Mozilla.Thunderbird.es-MX.locale.en-US.yaml b/manifests/m/Mozilla/Thunderbird/es-MX/146.0.1/Mozilla.Thunderbird.es-MX.locale.en-US.yaml new file mode 100644 index 0000000000000..534e202360dd3 --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/es-MX/146.0.1/Mozilla.Thunderbird.es-MX.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Thunderbird.es-MX +PackageVersion: 146.0.1 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/thunderbird/ +Author: Mozilla Foundation +PackageName: Mozilla Thunderbird (es-MX) +PackageUrl: https://www.thunderbird.net/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Thunderbird is a free email application that is easy to set up and customize - and it's loaded with great features! +Description: Thunderbird is a free and open source email, newsfeed, chat, and calendaring client, that’s easy to set up and customize. One of the core principles of Thunderbird is the use and promotion of open standards - this focus is a rejection of our world of closed platforms and services that can’t communicate with each other. We want our users to have freedom and choice in how they communicate. +Moniker: thunderbird +Tags: +- email +- mail +ReleaseNotes: |- + What’s Fixed + fixed + Reverted fix that localized consistent special folder names in server’s language +ReleaseNotesUrl: https://www.thunderbird.net/thunderbird/146.0.1/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/es-MX/146.0.1/Mozilla.Thunderbird.es-MX.locale.zh-CN.yaml b/manifests/m/Mozilla/Thunderbird/es-MX/146.0.1/Mozilla.Thunderbird.es-MX.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b91b354cae538 --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/es-MX/146.0.1/Mozilla.Thunderbird.es-MX.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Thunderbird.es-MX +PackageVersion: 146.0.1 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/privacy/thunderbird/ +Author: Mozilla 基金会 +PackageName: Mozilla Thunderbird (es-MX) +PackageUrl: https://www.thunderbird.net/zh-CN/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Thunderbird 是一款免费的邮件应用程序,配置简单、定制自由、功能强大! +Description: Thunderbird 是一款免费开源的电子邮件、新闻订阅、即时通信、日历客户端,配置简单,定制自由。Thunderbird 的核心准则之一是使用和推广开放标准——重点就是拒绝世界上我们无法相互通信的封闭平台和服务。我们希望我们的用户在沟通方式上拥有自由和选择。 +Tags: +- 电子邮件 +- 邮件 +ReleaseNotesUrl: https://www.thunderbird.net/thunderbird/146.0.1/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/es-MX/146.0.1/Mozilla.Thunderbird.es-MX.yaml b/manifests/m/Mozilla/Thunderbird/es-MX/146.0.1/Mozilla.Thunderbird.es-MX.yaml new file mode 100644 index 0000000000000..5d246b149f511 --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/es-MX/146.0.1/Mozilla.Thunderbird.es-MX.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: Mozilla.Thunderbird.es-MX +PackageVersion: 146.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/fr/146.0.1/Mozilla.Thunderbird.fr.installer.yaml b/manifests/m/Mozilla/Thunderbird/fr/146.0.1/Mozilla.Thunderbird.fr.installer.yaml new file mode 100644 index 0000000000000..a01fa088fcfac --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/fr/146.0.1/Mozilla.Thunderbird.fr.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: Mozilla.Thunderbird.fr +PackageVersion: 146.0.1 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- mailto +- mid +- webcal +- webcals +FileExtensions: +- eml +- ics +- wdseml +ReleaseDate: 2025-12-17 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/146.0.1/win32/fr/Thunderbird%20Setup%20146.0.1.exe + InstallerSha256: 3CC3ECAD0659C8FF9BEB300764E15AD33F5F7346CDD75C0296F21BEE7834F35B + ProductCode: Mozilla Thunderbird 146.0.1 (x86 fr) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/146.0.1/win64/fr/Thunderbird%20Setup%20146.0.1.exe + InstallerSha256: 14CA54DE9C87FEE01FE54A1B7BD1710FD5A20F86916604E7243FF2825C3A0F5D + ProductCode: Mozilla Thunderbird 146.0.1 (x64 fr) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/fr/146.0.1/Mozilla.Thunderbird.fr.locale.en-US.yaml b/manifests/m/Mozilla/Thunderbird/fr/146.0.1/Mozilla.Thunderbird.fr.locale.en-US.yaml new file mode 100644 index 0000000000000..4a6f6e05224ec --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/fr/146.0.1/Mozilla.Thunderbird.fr.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Thunderbird.fr +PackageVersion: 146.0.1 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/thunderbird/ +Author: Mozilla Foundation +PackageName: Mozilla Thunderbird (fr) +PackageUrl: https://www.thunderbird.net/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Thunderbird is a free email application that is easy to set up and customize - and it's loaded with great features! +Description: Thunderbird is a free and open source email, newsfeed, chat, and calendaring client, that’s easy to set up and customize. One of the core principles of Thunderbird is the use and promotion of open standards - this focus is a rejection of our world of closed platforms and services that can’t communicate with each other. We want our users to have freedom and choice in how they communicate. +Moniker: thunderbird +Tags: +- email +- mail +ReleaseNotes: |- + What’s Fixed + fixed + Reverted fix that localized consistent special folder names in server’s language +ReleaseNotesUrl: https://www.thunderbird.net/thunderbird/146.0.1/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/fr/146.0.1/Mozilla.Thunderbird.fr.locale.zh-CN.yaml b/manifests/m/Mozilla/Thunderbird/fr/146.0.1/Mozilla.Thunderbird.fr.locale.zh-CN.yaml new file mode 100644 index 0000000000000..265d8951f1848 --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/fr/146.0.1/Mozilla.Thunderbird.fr.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Thunderbird.fr +PackageVersion: 146.0.1 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/privacy/thunderbird/ +Author: Mozilla 基金会 +PackageName: Mozilla Thunderbird (fr) +PackageUrl: https://www.thunderbird.net/zh-CN/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Thunderbird 是一款免费的邮件应用程序,配置简单、定制自由、功能强大! +Description: Thunderbird 是一款免费开源的电子邮件、新闻订阅、即时通信、日历客户端,配置简单,定制自由。Thunderbird 的核心准则之一是使用和推广开放标准——重点就是拒绝世界上我们无法相互通信的封闭平台和服务。我们希望我们的用户在沟通方式上拥有自由和选择。 +Tags: +- 电子邮件 +- 邮件 +ReleaseNotesUrl: https://www.thunderbird.net/thunderbird/146.0.1/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/fr/146.0.1/Mozilla.Thunderbird.fr.yaml b/manifests/m/Mozilla/Thunderbird/fr/146.0.1/Mozilla.Thunderbird.fr.yaml new file mode 100644 index 0000000000000..155d8c3cd5ce1 --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/fr/146.0.1/Mozilla.Thunderbird.fr.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: Mozilla.Thunderbird.fr +PackageVersion: 146.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/gd/146.0.1/Mozilla.Thunderbird.gd.installer.yaml b/manifests/m/Mozilla/Thunderbird/gd/146.0.1/Mozilla.Thunderbird.gd.installer.yaml new file mode 100644 index 0000000000000..56973f59b6427 --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/gd/146.0.1/Mozilla.Thunderbird.gd.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: Mozilla.Thunderbird.gd +PackageVersion: 146.0.1 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- mailto +- mid +- webcal +- webcals +FileExtensions: +- eml +- ics +- wdseml +ReleaseDate: 2025-12-17 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/146.0.1/win32/gd/Thunderbird%20Setup%20146.0.1.exe + InstallerSha256: 7B67F31E780E2B23CE905B342DD6010FAC533BDAB7F3FE55C75770AEF22EACE2 + ProductCode: Mozilla Thunderbird 146.0.1 (x86 gd) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/146.0.1/win64/gd/Thunderbird%20Setup%20146.0.1.exe + InstallerSha256: 930CB536FD37038A2F1CD077D02EDEAFFC69F4AADD94606C052498C3BF1326B4 + ProductCode: Mozilla Thunderbird 146.0.1 (x64 gd) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/gd/146.0.1/Mozilla.Thunderbird.gd.locale.en-US.yaml b/manifests/m/Mozilla/Thunderbird/gd/146.0.1/Mozilla.Thunderbird.gd.locale.en-US.yaml new file mode 100644 index 0000000000000..85673c387f522 --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/gd/146.0.1/Mozilla.Thunderbird.gd.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Thunderbird.gd +PackageVersion: 146.0.1 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/thunderbird/ +Author: Mozilla Foundation +PackageName: Mozilla Thunderbird (gd) +PackageUrl: https://www.thunderbird.net/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Thunderbird is a free email application that is easy to set up and customize - and it's loaded with great features! +Description: Thunderbird is a free and open source email, newsfeed, chat, and calendaring client, that’s easy to set up and customize. One of the core principles of Thunderbird is the use and promotion of open standards - this focus is a rejection of our world of closed platforms and services that can’t communicate with each other. We want our users to have freedom and choice in how they communicate. +Moniker: thunderbird +Tags: +- email +- mail +ReleaseNotes: |- + What’s Fixed + fixed + Reverted fix that localized consistent special folder names in server’s language +ReleaseNotesUrl: https://www.thunderbird.net/thunderbird/146.0.1/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/gd/146.0.1/Mozilla.Thunderbird.gd.locale.zh-CN.yaml b/manifests/m/Mozilla/Thunderbird/gd/146.0.1/Mozilla.Thunderbird.gd.locale.zh-CN.yaml new file mode 100644 index 0000000000000..bd8808537f6d8 --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/gd/146.0.1/Mozilla.Thunderbird.gd.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Thunderbird.gd +PackageVersion: 146.0.1 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/privacy/thunderbird/ +Author: Mozilla 基金会 +PackageName: Mozilla Thunderbird (gd) +PackageUrl: https://www.thunderbird.net/zh-CN/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Thunderbird 是一款免费的邮件应用程序,配置简单、定制自由、功能强大! +Description: Thunderbird 是一款免费开源的电子邮件、新闻订阅、即时通信、日历客户端,配置简单,定制自由。Thunderbird 的核心准则之一是使用和推广开放标准——重点就是拒绝世界上我们无法相互通信的封闭平台和服务。我们希望我们的用户在沟通方式上拥有自由和选择。 +Tags: +- 电子邮件 +- 邮件 +ReleaseNotesUrl: https://www.thunderbird.net/thunderbird/146.0.1/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/gd/146.0.1/Mozilla.Thunderbird.gd.yaml b/manifests/m/Mozilla/Thunderbird/gd/146.0.1/Mozilla.Thunderbird.gd.yaml new file mode 100644 index 0000000000000..bec7af8bafd67 --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/gd/146.0.1/Mozilla.Thunderbird.gd.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: Mozilla.Thunderbird.gd +PackageVersion: 146.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/hy-AM/146.0.1/Mozilla.Thunderbird.hy-AM.installer.yaml b/manifests/m/Mozilla/Thunderbird/hy-AM/146.0.1/Mozilla.Thunderbird.hy-AM.installer.yaml new file mode 100644 index 0000000000000..725466290153b --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/hy-AM/146.0.1/Mozilla.Thunderbird.hy-AM.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: Mozilla.Thunderbird.hy-AM +PackageVersion: 146.0.1 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- mailto +- mid +- webcal +- webcals +FileExtensions: +- eml +- ics +- wdseml +ReleaseDate: 2025-12-17 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/146.0.1/win32/hy-AM/Thunderbird%20Setup%20146.0.1.exe + InstallerSha256: CA278CFD2A72EF508301DE3F32819BE44787AF29BA99BBBB32249F1741AF11EB + ProductCode: Mozilla Thunderbird 146.0.1 (x86 hy-AM) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/146.0.1/win64/hy-AM/Thunderbird%20Setup%20146.0.1.exe + InstallerSha256: 2B5F82B59422609544589BACF7548D93DB00774FA62FE1AD93E0069BBBBAD7FA + ProductCode: Mozilla Thunderbird 146.0.1 (x64 hy-AM) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/hy-AM/146.0.1/Mozilla.Thunderbird.hy-AM.locale.en-US.yaml b/manifests/m/Mozilla/Thunderbird/hy-AM/146.0.1/Mozilla.Thunderbird.hy-AM.locale.en-US.yaml new file mode 100644 index 0000000000000..2c6b09595ff20 --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/hy-AM/146.0.1/Mozilla.Thunderbird.hy-AM.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Thunderbird.hy-AM +PackageVersion: 146.0.1 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/thunderbird/ +Author: Mozilla Foundation +PackageName: Mozilla Thunderbird (hy-AM) +PackageUrl: https://www.thunderbird.net/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Thunderbird is a free email application that is easy to set up and customize - and it's loaded with great features! +Description: Thunderbird is a free and open source email, newsfeed, chat, and calendaring client, that’s easy to set up and customize. One of the core principles of Thunderbird is the use and promotion of open standards - this focus is a rejection of our world of closed platforms and services that can’t communicate with each other. We want our users to have freedom and choice in how they communicate. +Moniker: thunderbird +Tags: +- email +- mail +ReleaseNotes: |- + What’s Fixed + fixed + Reverted fix that localized consistent special folder names in server’s language +ReleaseNotesUrl: https://www.thunderbird.net/thunderbird/146.0.1/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/hy-AM/146.0.1/Mozilla.Thunderbird.hy-AM.locale.zh-CN.yaml b/manifests/m/Mozilla/Thunderbird/hy-AM/146.0.1/Mozilla.Thunderbird.hy-AM.locale.zh-CN.yaml new file mode 100644 index 0000000000000..b5a08b146bf4c --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/hy-AM/146.0.1/Mozilla.Thunderbird.hy-AM.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Thunderbird.hy-AM +PackageVersion: 146.0.1 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/privacy/thunderbird/ +Author: Mozilla 基金会 +PackageName: Mozilla Thunderbird (hy-AM) +PackageUrl: https://www.thunderbird.net/zh-CN/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Thunderbird 是一款免费的邮件应用程序,配置简单、定制自由、功能强大! +Description: Thunderbird 是一款免费开源的电子邮件、新闻订阅、即时通信、日历客户端,配置简单,定制自由。Thunderbird 的核心准则之一是使用和推广开放标准——重点就是拒绝世界上我们无法相互通信的封闭平台和服务。我们希望我们的用户在沟通方式上拥有自由和选择。 +Tags: +- 电子邮件 +- 邮件 +ReleaseNotesUrl: https://www.thunderbird.net/thunderbird/146.0.1/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/hy-AM/146.0.1/Mozilla.Thunderbird.hy-AM.yaml b/manifests/m/Mozilla/Thunderbird/hy-AM/146.0.1/Mozilla.Thunderbird.hy-AM.yaml new file mode 100644 index 0000000000000..5a0921f3d7bdb --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/hy-AM/146.0.1/Mozilla.Thunderbird.hy-AM.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: Mozilla.Thunderbird.hy-AM +PackageVersion: 146.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/ms/146.0.1/Mozilla.Thunderbird.ms.installer.yaml b/manifests/m/Mozilla/Thunderbird/ms/146.0.1/Mozilla.Thunderbird.ms.installer.yaml new file mode 100644 index 0000000000000..93bb177a5af34 --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/ms/146.0.1/Mozilla.Thunderbird.ms.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: Mozilla.Thunderbird.ms +PackageVersion: 146.0.1 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- mailto +- mid +- webcal +- webcals +FileExtensions: +- eml +- ics +- wdseml +ReleaseDate: 2025-12-17 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/146.0.1/win32/ms/Thunderbird%20Setup%20146.0.1.exe + InstallerSha256: A85B842557B35CA4EC1C30A0D39CD49CE50D971D31C235448DB46004AC8C401A + ProductCode: Mozilla Thunderbird 146.0.1 (x86 ms) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/146.0.1/win64/ms/Thunderbird%20Setup%20146.0.1.exe + InstallerSha256: 5267A090B8E858BF134B7FB673EE38307ABF0ADC7C982CEB6699BDE5B2E80ED2 + ProductCode: Mozilla Thunderbird 146.0.1 (x64 ms) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/ms/146.0.1/Mozilla.Thunderbird.ms.locale.en-US.yaml b/manifests/m/Mozilla/Thunderbird/ms/146.0.1/Mozilla.Thunderbird.ms.locale.en-US.yaml new file mode 100644 index 0000000000000..a5525ebeba0ae --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/ms/146.0.1/Mozilla.Thunderbird.ms.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Thunderbird.ms +PackageVersion: 146.0.1 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/thunderbird/ +Author: Mozilla Foundation +PackageName: Mozilla Thunderbird (ms) +PackageUrl: https://www.thunderbird.net/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Thunderbird is a free email application that is easy to set up and customize - and it's loaded with great features! +Description: Thunderbird is a free and open source email, newsfeed, chat, and calendaring client, that’s easy to set up and customize. One of the core principles of Thunderbird is the use and promotion of open standards - this focus is a rejection of our world of closed platforms and services that can’t communicate with each other. We want our users to have freedom and choice in how they communicate. +Moniker: thunderbird +Tags: +- email +- mail +ReleaseNotes: |- + What’s Fixed + fixed + Reverted fix that localized consistent special folder names in server’s language +ReleaseNotesUrl: https://www.thunderbird.net/thunderbird/146.0.1/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/ms/146.0.1/Mozilla.Thunderbird.ms.locale.zh-CN.yaml b/manifests/m/Mozilla/Thunderbird/ms/146.0.1/Mozilla.Thunderbird.ms.locale.zh-CN.yaml new file mode 100644 index 0000000000000..278f447d9775c --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/ms/146.0.1/Mozilla.Thunderbird.ms.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Thunderbird.ms +PackageVersion: 146.0.1 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/privacy/thunderbird/ +Author: Mozilla 基金会 +PackageName: Mozilla Thunderbird (ms) +PackageUrl: https://www.thunderbird.net/zh-CN/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Thunderbird 是一款免费的邮件应用程序,配置简单、定制自由、功能强大! +Description: Thunderbird 是一款免费开源的电子邮件、新闻订阅、即时通信、日历客户端,配置简单,定制自由。Thunderbird 的核心准则之一是使用和推广开放标准——重点就是拒绝世界上我们无法相互通信的封闭平台和服务。我们希望我们的用户在沟通方式上拥有自由和选择。 +Tags: +- 电子邮件 +- 邮件 +ReleaseNotesUrl: https://www.thunderbird.net/thunderbird/146.0.1/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/ms/146.0.1/Mozilla.Thunderbird.ms.yaml b/manifests/m/Mozilla/Thunderbird/ms/146.0.1/Mozilla.Thunderbird.ms.yaml new file mode 100644 index 0000000000000..fb3273a023171 --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/ms/146.0.1/Mozilla.Thunderbird.ms.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: Mozilla.Thunderbird.ms +PackageVersion: 146.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/pl/146.0.1/Mozilla.Thunderbird.pl.installer.yaml b/manifests/m/Mozilla/Thunderbird/pl/146.0.1/Mozilla.Thunderbird.pl.installer.yaml new file mode 100644 index 0000000000000..11b2a29bc29f1 --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/pl/146.0.1/Mozilla.Thunderbird.pl.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: Mozilla.Thunderbird.pl +PackageVersion: 146.0.1 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- mailto +- mid +- webcal +- webcals +FileExtensions: +- eml +- ics +- wdseml +ReleaseDate: 2025-12-17 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/146.0.1/win32/pl/Thunderbird%20Setup%20146.0.1.exe + InstallerSha256: 27988A468F20C537710AEFC2A50997D4A24CD9AD3C955F1880D045D92BA46A5D + ProductCode: Mozilla Thunderbird 146.0.1 (x86 pl) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/thunderbird/releases/146.0.1/win64/pl/Thunderbird%20Setup%20146.0.1.exe + InstallerSha256: 92197AAC9862DCA6E5B5FF01BEE0A0B51A0D40ED20270B184288387D4A7B3DDB + ProductCode: Mozilla Thunderbird 146.0.1 (x64 pl) +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/pl/146.0.1/Mozilla.Thunderbird.pl.locale.en-US.yaml b/manifests/m/Mozilla/Thunderbird/pl/146.0.1/Mozilla.Thunderbird.pl.locale.en-US.yaml new file mode 100644 index 0000000000000..d19a01a3e83d4 --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/pl/146.0.1/Mozilla.Thunderbird.pl.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Thunderbird.pl +PackageVersion: 146.0.1 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/thunderbird/ +Author: Mozilla Foundation +PackageName: Mozilla Thunderbird (pl) +PackageUrl: https://www.thunderbird.net/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Thunderbird is a free email application that is easy to set up and customize - and it's loaded with great features! +Description: Thunderbird is a free and open source email, newsfeed, chat, and calendaring client, that’s easy to set up and customize. One of the core principles of Thunderbird is the use and promotion of open standards - this focus is a rejection of our world of closed platforms and services that can’t communicate with each other. We want our users to have freedom and choice in how they communicate. +Moniker: thunderbird +Tags: +- email +- mail +ReleaseNotes: |- + What’s Fixed + fixed + Reverted fix that localized consistent special folder names in server’s language +ReleaseNotesUrl: https://www.thunderbird.net/thunderbird/146.0.1/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/pl/146.0.1/Mozilla.Thunderbird.pl.locale.zh-CN.yaml b/manifests/m/Mozilla/Thunderbird/pl/146.0.1/Mozilla.Thunderbird.pl.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9b120aa746c8f --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/pl/146.0.1/Mozilla.Thunderbird.pl.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Mozilla.Thunderbird.pl +PackageVersion: 146.0.1 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/privacy/thunderbird/ +Author: Mozilla 基金会 +PackageName: Mozilla Thunderbird (pl) +PackageUrl: https://www.thunderbird.net/zh-CN/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Thunderbird 是一款免费的邮件应用程序,配置简单、定制自由、功能强大! +Description: Thunderbird 是一款免费开源的电子邮件、新闻订阅、即时通信、日历客户端,配置简单,定制自由。Thunderbird 的核心准则之一是使用和推广开放标准——重点就是拒绝世界上我们无法相互通信的封闭平台和服务。我们希望我们的用户在沟通方式上拥有自由和选择。 +Tags: +- 电子邮件 +- 邮件 +ReleaseNotesUrl: https://www.thunderbird.net/thunderbird/146.0.1/releasenotes/ +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mozilla/Thunderbird/pl/146.0.1/Mozilla.Thunderbird.pl.yaml b/manifests/m/Mozilla/Thunderbird/pl/146.0.1/Mozilla.Thunderbird.pl.yaml new file mode 100644 index 0000000000000..cbc6bdaf76cb7 --- /dev/null +++ b/manifests/m/Mozilla/Thunderbird/pl/146.0.1/Mozilla.Thunderbird.pl.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: Mozilla.Thunderbird.pl +PackageVersion: 146.0.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/o/OK1ZIA/Tucnak/4.70/OK1ZIA.Tucnak.installer.yaml b/manifests/o/OK1ZIA/Tucnak/4.70/OK1ZIA.Tucnak.installer.yaml new file mode 100644 index 0000000000000..e63fd4e3d96a5 --- /dev/null +++ b/manifests/o/OK1ZIA/Tucnak/4.70/OK1ZIA.Tucnak.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: OK1ZIA.Tucnak +PackageVersion: "4.70" +InstallerType: nullsoft +Scope: machine +ProductCode: Tucnak +ReleaseDate: 2025-12-14 +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\Tucnak' +Installers: +- Architecture: x86 + InstallerUrl: https://tucnak.nagano.cz/Tucnak-4.70.exe + InstallerSha256: 82D9C6B11A0E3691F4485983CF029E849AFB549430830FD3BD56DA02DF07BB97 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/o/OK1ZIA/Tucnak/4.70/OK1ZIA.Tucnak.locale.en-US.yaml b/manifests/o/OK1ZIA/Tucnak/4.70/OK1ZIA.Tucnak.locale.en-US.yaml new file mode 100644 index 0000000000000..be7658b343dd1 --- /dev/null +++ b/manifests/o/OK1ZIA/Tucnak/4.70/OK1ZIA.Tucnak.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: OK1ZIA.Tucnak +PackageVersion: "4.70" +PackageLocale: en-US +Publisher: OK1ZIA +PublisherUrl: https://tucnak.nagano.cz/ +PublisherSupportUrl: https://tucnak.nagano.cz/wiki/ +Author: OK1ZIA +PackageName: Tucnak +PackageUrl: https://tucnak.nagano.cz/download.php +License: Freeware +Copyright: Copyright (C) 2025 OK1ZIA +ShortDescription: Multiplatform VHF/HF ham radio contest logbook. +Moniker: tucnak +Tags: +- ham-radio +- radio +ReleaseNotes: |- + - Now www.on4kst.org + - Changed airscatter.dk URL, TNX to OV3T +ReleaseNotesUrl: https://tucnak.nagano.cz/wiki/Changelog +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/o/OK1ZIA/Tucnak/4.70/OK1ZIA.Tucnak.locale.zh-CN.yaml b/manifests/o/OK1ZIA/Tucnak/4.70/OK1ZIA.Tucnak.locale.zh-CN.yaml new file mode 100644 index 0000000000000..9deab69542399 --- /dev/null +++ b/manifests/o/OK1ZIA/Tucnak/4.70/OK1ZIA.Tucnak.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: OK1ZIA.Tucnak +PackageVersion: "4.70" +PackageLocale: zh-CN +License: 免费软件 +ShortDescription: 多平台 VHF/HF 业余无线电竞赛日志簿。 +Tags: +- 业余无线电 +- 无线电 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/o/OK1ZIA/Tucnak/4.70/OK1ZIA.Tucnak.yaml b/manifests/o/OK1ZIA/Tucnak/4.70/OK1ZIA.Tucnak.yaml new file mode 100644 index 0000000000000..c665459fcfb83 --- /dev/null +++ b/manifests/o/OK1ZIA/Tucnak/4.70/OK1ZIA.Tucnak.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: OK1ZIA.Tucnak +PackageVersion: "4.70" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/o/Open-Component-Model/ocm-cli/0.34.3/Open-Component-Model.ocm-cli.installer.yaml b/manifests/o/Open-Component-Model/ocm-cli/0.34.3/Open-Component-Model.ocm-cli.installer.yaml new file mode 100644 index 0000000000000..41a362cd881a3 --- /dev/null +++ b/manifests/o/Open-Component-Model/ocm-cli/0.34.3/Open-Component-Model.ocm-cli.installer.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Open-Component-Model.ocm-cli +PackageVersion: 0.34.3 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ocm.exe +ReleaseDate: 2025-12-23 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/open-component-model/ocm/releases/download/v0.34.3/ocm-0.34.3-windows-amd64.zip + InstallerSha256: E2F5BD23C04118A4BC0847EF574BE031E5A01254BC1919BC8C42B6B98DF765EB +- Architecture: arm64 + InstallerUrl: https://github.com/open-component-model/ocm/releases/download/v0.34.3/ocm-0.34.3-windows-arm64.zip + InstallerSha256: E95FE22F9AEB9211D0486CB2109096F4082D5AA2CA1F68148660C762E620A652 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/o/Open-Component-Model/ocm-cli/0.34.3/Open-Component-Model.ocm-cli.locale.en-US.yaml b/manifests/o/Open-Component-Model/ocm-cli/0.34.3/Open-Component-Model.ocm-cli.locale.en-US.yaml new file mode 100644 index 0000000000000..3859eb65e107a --- /dev/null +++ b/manifests/o/Open-Component-Model/ocm-cli/0.34.3/Open-Component-Model.ocm-cli.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Open-Component-Model.ocm-cli +PackageVersion: 0.34.3 +PackageLocale: en-US +Publisher: SAP SE +PublisherUrl: https://github.com/open-component-model +PublisherSupportUrl: https://github.com/open-component-model/ocm/issues +PackageName: ocm-cli +PackageUrl: https://github.com/open-component-model/ocm +License: Apache-2.0 +LicenseUrl: https://github.com/open-component-model/ocm/blob/HEAD/LICENSE +ShortDescription: Open Component Model Command Line Interface (ocm-cli) +Tags: +- ocm +- open-component-model +ReleaseNotes: |- + What's Changed + ⬆️ Dependencies + - chore: [releases/0.34] cherry-pick: #1718 by @frewilhelm in #1758 + - chore: [releases/0.34] cherry-pick: #1757 by @frewilhelm in #1759 + 🧰 Maintenance + - chore: bump VERSION to 0.34.3-dev by @ocmbot[bot] in #1747 + Full Changelog: v0.34.2...v0.34.3 +ReleaseNotesUrl: https://github.com/open-component-model/ocm/releases/tag/v0.34.3 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/o/Open-Component-Model/ocm-cli/0.34.3/Open-Component-Model.ocm-cli.yaml b/manifests/o/Open-Component-Model/ocm-cli/0.34.3/Open-Component-Model.ocm-cli.yaml new file mode 100644 index 0000000000000..ad668db05ca44 --- /dev/null +++ b/manifests/o/Open-Component-Model/ocm-cli/0.34.3/Open-Component-Model.ocm-cli.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: Open-Component-Model.ocm-cli +PackageVersion: 0.34.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/ParrotHat/PLP/2.1.0/ParrotHat.PLP.installer.yaml b/manifests/p/ParrotHat/PLP/2.1.0/ParrotHat.PLP.installer.yaml new file mode 100644 index 0000000000000..8f7cc83082420 --- /dev/null +++ b/manifests/p/ParrotHat/PLP/2.1.0/ParrotHat.PLP.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: ParrotHat.PLP +PackageVersion: 2.1.0 +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/parrothat/plp/releases/download/2.1/plp-2.1.0-installer-x64.exe + InstallerSha256: C2AFE8BCD7D08F661FDD7BEBC6F8D66EA8D2732FA730771F773021A6D237EF96 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/ParrotHat/PLP/2.1.0/ParrotHat.PLP.locale.en-US.yaml b/manifests/p/ParrotHat/PLP/2.1.0/ParrotHat.PLP.locale.en-US.yaml new file mode 100644 index 0000000000000..2f29a0b0c57be --- /dev/null +++ b/manifests/p/ParrotHat/PLP/2.1.0/ParrotHat.PLP.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: ParrotHat.PLP +PackageVersion: 2.1.0 +PackageLocale: en-US +Publisher: ParrotHat Foundation +PackageName: Pars Local Player +License: PFL License (see LICENSE) +ShortDescription: Open-source media player for radio streams and videos +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/p/ParrotHat/PLP/2.1.0/ParrotHat.PLP.yaml b/manifests/p/ParrotHat/PLP/2.1.0/ParrotHat.PLP.yaml new file mode 100644 index 0000000000000..a45d335ffec5f --- /dev/null +++ b/manifests/p/ParrotHat/PLP/2.1.0/ParrotHat.PLP.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: ParrotHat.PLP +PackageVersion: 2.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/Power-user/Power-user/1.7.69/Power-user.Power-user.installer.yaml b/manifests/p/Power-user/Power-user/1.7.69/Power-user.Power-user.installer.yaml index c20c64e58cc56..fb4f6780fb1e0 100644 --- a/manifests/p/Power-user/Power-user/1.7.69/Power-user.Power-user.installer.yaml +++ b/manifests/p/Power-user/Power-user/1.7.69/Power-user.Power-user.installer.yaml @@ -5,7 +5,8 @@ PackageIdentifier: Power-user.Power-user PackageVersion: 1.7.69 InstallerType: msi Scope: machine -ProductCode: '{12477F03-9B01-4D42-9A7E-A0D73D7BC049}' +ProductCode: '{BD482BEA-1F22-4F1C-BA41-0C7E59D764E4}' +ReleaseDate: 2025-12-07 AppsAndFeaturesEntries: - UpgradeCode: '{DCC1A754-8DF3-4A7E-A4CA-01C32BC26C89}' Installers: diff --git a/manifests/p/Power-user/Power-user/1.7.69/Power-user.Power-user.locale.en-US.yaml b/manifests/p/Power-user/Power-user/1.7.69/Power-user.Power-user.locale.en-US.yaml index f447b44933019..50b4ff5c81bdc 100644 --- a/manifests/p/Power-user/Power-user/1.7.69/Power-user.Power-user.locale.en-US.yaml +++ b/manifests/p/Power-user/Power-user/1.7.69/Power-user.Power-user.locale.en-US.yaml @@ -30,6 +30,7 @@ Tags: - office - powerpoint - word +ReleaseNotes: '- [Agenda] Bug fixed' ReleaseNotesUrl: https://www.powerusersoftwares.com/version-history ManifestType: defaultLocale ManifestVersion: 1.12.0 diff --git a/manifests/r/RaspberryPiFoundation/RaspberryPiImager/2.0.3/RaspberryPiFoundation.RaspberryPiImager.installer.yaml b/manifests/r/RaspberryPiFoundation/RaspberryPiImager/2.0.3/RaspberryPiFoundation.RaspberryPiImager.installer.yaml new file mode 100644 index 0000000000000..8c6b6e8ecd913 --- /dev/null +++ b/manifests/r/RaspberryPiFoundation/RaspberryPiImager/2.0.3/RaspberryPiFoundation.RaspberryPiImager.installer.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: RaspberryPiFoundation.RaspberryPiImager +PackageVersion: 2.0.3 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +FileExtensions: +- img +ProductCode: '{46C75BF3-E267-4834-AE1D-BEB77E05BFA1}_is1' +ReleaseDate: 2025-12-22 +AppsAndFeaturesEntries: +- ProductCode: '{46C75BF3-E267-4834-AE1D-BEB77E05BFA1}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Raspberry Pi Ltd\Imager' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/raspberrypi/rpi-imager/releases/download/v2.0.3/imager-v2.0.3.exe + InstallerSha256: C49C9BB46BC27536BF3174D92C32718EAB697FF076761BE5382154F412568D74 +ManifestType: installer +ManifestVersion: 1.10.0 + diff --git a/manifests/r/RaspberryPiFoundation/RaspberryPiImager/2.0.3/RaspberryPiFoundation.RaspberryPiImager.locale.en-US.yaml b/manifests/r/RaspberryPiFoundation/RaspberryPiImager/2.0.3/RaspberryPiFoundation.RaspberryPiImager.locale.en-US.yaml new file mode 100644 index 0000000000000..811063f355aac --- /dev/null +++ b/manifests/r/RaspberryPiFoundation/RaspberryPiImager/2.0.3/RaspberryPiFoundation.RaspberryPiImager.locale.en-US.yaml @@ -0,0 +1,96 @@ +# Created with komac v2.14.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: RaspberryPiFoundation.RaspberryPiImager +PackageVersion: 2.0.3 +PackageLocale: en-US +Publisher: Raspberry Pi Ltd +PublisherUrl: https://github.com/raspberrypi +PublisherSupportUrl: https://github.com/raspberrypi/rpi-imager/issues +Author: Raspberry Pi Ltd +PackageName: Raspberry Pi Imager +PackageUrl: https://github.com/raspberrypi/rpi-imager/ +License: Apache-2.0 +LicenseUrl: https://github.com/raspberrypi/rpi-imager/blob/HEAD/license.txt +Copyright: Copyright (C) 2025 Raspberry Pi Ltd +CopyrightUrl: https://github.com/raspberrypi/rpi-imager/blob/qml/license.txt +ShortDescription: Raspberry Pi Imager is the quick and easy way to install Raspberry Pi OS and other operating systems to a microSD card, ready to use with your Raspberry Pi. +Description: |- + Raspberry Pi Imager is the quick and easy way to install Raspberry Pi OS and other operating systems to a microSD card, ready to use with your Raspberry Pi. + + Download and install Raspberry Pi Imager on a computer with an SD card reader. Insert the microSD card you’ll use with your Raspberry Pi into the reader and run Raspberry Pi Imager. +Moniker: rpi-imager +Tags: +- flash +- imager +- raspberrypi +- sd +ReleaseNotes: |- + ✨ Features + Performance + - Implement bottleneck detection and real-time progress updates showing network, decompression, or write-bound status + - Add detailed write timing breakdown for hypothesis testing and performance analysis + - Skip periodic sync when direct I/O is enabled to improve throughput + - Enhance async I/O support and configuration options across all platforms + Networking + - Implement comprehensive network monitoring across all platforms to detect connectivity changes and automatically retry OS list fetching + - Add automatic fallback and retry logic when network connection is restored + - Introduce CurlFetcher and CurlNetworkConfig for improved network operations with better error handling + - Add CA certificate bundle detection for AppImage compatibility on Linux distributions with non-standard CA paths + - Enable file:// protocol support in curl configuration for local repository testing + Custom Repositories + - Add rpi-imager:// URI scheme for deep-linking to custom OS repositories (e.g., rpi-imager://open?repo=https://example.com/repo.json) + - Register .rpi-imager-manifest file type association on macOS (UTI), Windows (registry), and Linux (MIME) + - Show custom repository host in window title bar with punycode encoding to prevent IDN homograph attacks + - Add confirmation dialog with security delay for remote repository URLs + Drive Handling + - Detect and handle counterfeit storage devices that may hang during I/O operations + - Add timeout mechanism for critical operations like BLKDISCARD and writing to the end of the device + - Add debug option to skip end-of-device operations for users with problematic cards + - Add support for NVMe over Fabrics (BusTypeNvmeof) bus type on Windows + - Enhance storage bus type recognition and device classification + - Improve drive filtering and system identification logic on Linux + User Interface + - Add sticky language preference that remembers user selection across sessions + - Enhance title display with offline status indication in the main window + - Improve text wrapping and marquee scrolling throughout the UI + - Make DebugOptionsDialog height responsive to window size + Customisation + - Enhance WiFi configuration for open networks using key_mgmt=NONE + - Refine cloud-init user data and network configuration generation + - Add initFormat parameter to CLI setImageCustomisation call + Windows + - Enhance uninstallation to clean up old installation directories and registry entries left by previous installers + - Improve user prompts during install/uninstall for detecting previous installations + CLI + - Add note about using the --repo flag to load local os_list_local.json files + - Fix error message displayed when CLI build is run without sudo + - Use ANSI escape sequences for _clearLine for better terminal compatibility + 🐛 Bug Fixes + - Fix language selection on Desktop not persisting correctly + - Fix button layout for permission warning dialog + - Fix async write IDs overlapping with cancellation markers + - Fix async cache hash not resetting on open, ensuring fresh computation + - Fix unmounting logic and error handling during write operations + - Fix hardware and software capability checks for case insensitivity + - Fix display of customRepoHost in repository dialogs + - Fix translation of permissions-message dialog (strings were being translated too early) + - Fix macOS build configuration + 🌍 Internationalisation + - Updated Spanish translation + - Updated Czech translation + - Updated French translation (multiple updates) + - Updated Russian translation + - Updated Portuguese translation + - Add new translations and error messages for multiple languages + 📦 Dependencies + - Update bundled library versions + - Update timezone data version + - Update capital cities database +ReleaseNotesUrl: https://github.com/raspberrypi/rpi-imager/releases/tag/v2.0.3 +Documentations: +- DocumentLabel: Raspberry Pi Documentation + DocumentUrl: https://www.raspberrypi.com/documentation/ +ManifestType: defaultLocale +ManifestVersion: 1.10.0 + diff --git a/manifests/r/RaspberryPiFoundation/RaspberryPiImager/2.0.3/RaspberryPiFoundation.RaspberryPiImager.yaml b/manifests/r/RaspberryPiFoundation/RaspberryPiImager/2.0.3/RaspberryPiFoundation.RaspberryPiImager.yaml new file mode 100644 index 0000000000000..ffdd7baf3b384 --- /dev/null +++ b/manifests/r/RaspberryPiFoundation/RaspberryPiImager/2.0.3/RaspberryPiFoundation.RaspberryPiImager.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: RaspberryPiFoundation.RaspberryPiImager +PackageVersion: 2.0.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/r/RootsMagic/RootsMagic/3/3.2.6.0/RootsMagic.RootsMagic.3.installer.yaml b/manifests/r/RootsMagic/RootsMagic/3/3.2.6.0/RootsMagic.RootsMagic.3.installer.yaml new file mode 100644 index 0000000000000..be69ee1827946 --- /dev/null +++ b/manifests/r/RootsMagic/RootsMagic/3/3.2.6.0/RootsMagic.RootsMagic.3.installer.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: RootsMagic.RootsMagic.3 +PackageVersion: 3.2.6.0 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +FileExtensions: +- rmbackup +- rmg +- rmgb +- rmgc +- rmtree +ProductCode: RootsMagic_is1 +AppsAndFeaturesEntries: +- ProductCode: RootsMagic_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\RootsMagic' +Installers: +- Architecture: x86 + InstallerUrl: https://files.rootsmagic.com/RM3/RM3Setup.exe + InstallerSha256: 591D09A0135D797D8C7D815668F333F1F7DDC0B3AE15BB0A530A37A88FB6C3D9 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2008-09-06 diff --git a/manifests/r/RootsMagic/RootsMagic/3/3.2.6.0/RootsMagic.RootsMagic.3.locale.en-US.yaml b/manifests/r/RootsMagic/RootsMagic/3/3.2.6.0/RootsMagic.RootsMagic.3.locale.en-US.yaml new file mode 100644 index 0000000000000..427124134088b --- /dev/null +++ b/manifests/r/RootsMagic/RootsMagic/3/3.2.6.0/RootsMagic.RootsMagic.3.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: RootsMagic.RootsMagic.3 +PackageVersion: 3.2.6.0 +PackageLocale: en-US +Publisher: RootsMagic, Inc. +PublisherUrl: https://rootsmagic.com/ +PublisherSupportUrl: https://rootsmagic.com/help/ +PrivacyUrl: https://rootsmagic.com/privacy/ +PackageName: RootsMagic 3 +PackageUrl: https://rootsmagic.com/rootsmagic/ +License: Proprietary +Copyright: Copyright © 2001-2008 RootsMagic, Inc. +ShortDescription: The award-winning genealogy software which makes researching, organizing, and sharing your family history easy! +Description: RootsMagic is the award-winning genealogy and family tree software designed to help users discover, document, and share their family history with ease. It allows you to start from scratch or import existing trees, integrate records from FamilySearch, Ancestry, MyHeritage, and Findmypast, and keep notes, photos, health details, and DNA matches organized in one place. +Moniker: rootsmagic-3 +Tags: +- DNA +- GEDCOM +- ancestry +- familysearch +- genealogy +PurchaseUrl: https://rootsmagic.com/rootsmagic/buy +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/r/RootsMagic/RootsMagic/3/3.2.6.0/RootsMagic.RootsMagic.3.yaml b/manifests/r/RootsMagic/RootsMagic/3/3.2.6.0/RootsMagic.RootsMagic.3.yaml new file mode 100644 index 0000000000000..dd75ea6c7c55d --- /dev/null +++ b/manifests/r/RootsMagic/RootsMagic/3/3.2.6.0/RootsMagic.RootsMagic.3.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: RootsMagic.RootsMagic.3 +PackageVersion: 3.2.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/r/RootsMagic/RootsMagic/4/4.1.2.1/RootsMagic.RootsMagic.4.installer.yaml b/manifests/r/RootsMagic/RootsMagic/4/4.1.2.1/RootsMagic.RootsMagic.4.installer.yaml new file mode 100644 index 0000000000000..a04f4288fbd5e --- /dev/null +++ b/manifests/r/RootsMagic/RootsMagic/4/4.1.2.1/RootsMagic.RootsMagic.4.installer.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: RootsMagic.RootsMagic.4 +PackageVersion: 4.1.2.1 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +FileExtensions: +- rmbackup +- rmg +- rmgb +- rmgc +- rmtree +ProductCode: '{049D96D7-E082-4FB5-BF64-CD3460E6877C}_is1' +AppsAndFeaturesEntries: +- ProductCode: '{049D96D7-E082-4FB5-BF64-CD3460E6877C}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\RootsMagic 4' +Installers: +- Architecture: x86 + InstallerUrl: https://files.rootsmagic.com/RM4/RM4Setup.exe + InstallerSha256: 01B61A214507D7B34D19717AF68873DA27312B4EA60BFA5F16372BE653E342F0 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2011-09-25 diff --git a/manifests/r/RootsMagic/RootsMagic/4/4.1.2.1/RootsMagic.RootsMagic.4.locale.en-US.yaml b/manifests/r/RootsMagic/RootsMagic/4/4.1.2.1/RootsMagic.RootsMagic.4.locale.en-US.yaml new file mode 100644 index 0000000000000..8e8155739164f --- /dev/null +++ b/manifests/r/RootsMagic/RootsMagic/4/4.1.2.1/RootsMagic.RootsMagic.4.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: RootsMagic.RootsMagic.4 +PackageVersion: 4.1.2.1 +PackageLocale: en-US +Publisher: RootsMagic, Inc. +PublisherUrl: https://rootsmagic.com/ +PublisherSupportUrl: https://rootsmagic.com/help/ +PrivacyUrl: https://rootsmagic.com/privacy/ +PackageName: RootsMagic 4 +PackageUrl: https://rootsmagic.com/rootsmagic/ +License: Proprietary +Copyright: Copyright © 2001-2011 RootsMagic, Inc. +ShortDescription: The award-winning genealogy software which makes researching, organizing, and sharing your family history easy! +Description: RootsMagic is the award-winning genealogy and family tree software designed to help users discover, document, and share their family history with ease. It allows you to start from scratch or import existing trees, integrate records from FamilySearch, Ancestry, MyHeritage, and Findmypast, and keep notes, photos, health details, and DNA matches organized in one place. +Moniker: rootsmagic-4 +Tags: +- DNA +- GEDCOM +- ancestry +- familysearch +- genealogy +PurchaseUrl: https://rootsmagic.com/rootsmagic/buy +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/r/RootsMagic/RootsMagic/4/4.1.2.1/RootsMagic.RootsMagic.4.yaml b/manifests/r/RootsMagic/RootsMagic/4/4.1.2.1/RootsMagic.RootsMagic.4.yaml new file mode 100644 index 0000000000000..91a6f8659f370 --- /dev/null +++ b/manifests/r/RootsMagic/RootsMagic/4/4.1.2.1/RootsMagic.RootsMagic.4.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: RootsMagic.RootsMagic.4 +PackageVersion: 4.1.2.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/r/RootsMagic/RootsMagic/5/5.0.4.1/RootsMagic.RootsMagic.5.installer.yaml b/manifests/r/RootsMagic/RootsMagic/5/5.0.4.1/RootsMagic.RootsMagic.5.installer.yaml new file mode 100644 index 0000000000000..2d88ed86685b6 --- /dev/null +++ b/manifests/r/RootsMagic/RootsMagic/5/5.0.4.1/RootsMagic.RootsMagic.5.installer.yaml @@ -0,0 +1,32 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: RootsMagic.RootsMagic.5 +PackageVersion: 5.0.4.1 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +FileExtensions: +- rmbackup +- rmg +- rmgb +- rmgc +- rmtree +ProductCode: '{C1689DDD-6378-4966-8865-6292D7141A6A}_is1' +AppsAndFeaturesEntries: +- ProductCode: '{C1689DDD-6378-4966-8865-6292D7141A6A}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\RootsMagic 5' +Installers: +- Architecture: x86 + InstallerUrl: https://files.rootsmagic.com/RM5/RM5Setup.exe + InstallerSha256: F8DE1F479D89548DB07046C3439647F0E6C8A97C1AEE1BC5FC5D39FC4FB2B799 +ManifestType: installer +ManifestVersion: 1.10.0 +ReleaseDate: 2012-10-09 diff --git a/manifests/r/RootsMagic/RootsMagic/5/5.0.4.1/RootsMagic.RootsMagic.5.locale.en-US.yaml b/manifests/r/RootsMagic/RootsMagic/5/5.0.4.1/RootsMagic.RootsMagic.5.locale.en-US.yaml new file mode 100644 index 0000000000000..b6b13dd448f2d --- /dev/null +++ b/manifests/r/RootsMagic/RootsMagic/5/5.0.4.1/RootsMagic.RootsMagic.5.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.10.3.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: RootsMagic.RootsMagic.5 +PackageVersion: 5.0.4.1 +PackageLocale: en-US +Publisher: RootsMagic, Inc. +PublisherUrl: https://rootsmagic.com/ +PublisherSupportUrl: https://rootsmagic.com/help/ +PrivacyUrl: https://rootsmagic.com/privacy/ +PackageName: RootsMagic 5 +PackageUrl: https://rootsmagic.com/rootsmagic/ +License: Proprietary +Copyright: Copyright © 2001-2012 RootsMagic, Inc. +ShortDescription: The award-winning genealogy software which makes researching, organizing, and sharing your family history easy! +Description: RootsMagic is the award-winning genealogy and family tree software designed to help users discover, document, and share their family history with ease. It allows you to start from scratch or import existing trees, integrate records from FamilySearch, Ancestry, MyHeritage, and Findmypast, and keep notes, photos, health details, and DNA matches organized in one place. +Moniker: rootsmagic-5 +Tags: +- DNA +- GEDCOM +- ancestry +- familysearch +- genealogy +ReleaseNotesUrl: http://blog.rootsmagic.com/?p=1172 +PurchaseUrl: https://rootsmagic.com/rootsmagic/buy +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/r/RootsMagic/RootsMagic/5/5.0.4.1/RootsMagic.RootsMagic.5.yaml b/manifests/r/RootsMagic/RootsMagic/5/5.0.4.1/RootsMagic.RootsMagic.5.yaml new file mode 100644 index 0000000000000..45947f3e130a9 --- /dev/null +++ b/manifests/r/RootsMagic/RootsMagic/5/5.0.4.1/RootsMagic.RootsMagic.5.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: RootsMagic.RootsMagic.5 +PackageVersion: 5.0.4.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/r/Ruihu/Apifox/2.7.54/Ruihu.Apifox.installer.yaml b/manifests/r/Ruihu/Apifox/2.7.54/Ruihu.Apifox.installer.yaml new file mode 100644 index 0000000000000..b07b5f49c580d --- /dev/null +++ b/manifests/r/Ruihu/Apifox/2.7.54/Ruihu.Apifox.installer.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Ruihu.Apifox +PackageVersion: 2.7.54 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ReleaseDate: 2025-12-01 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://file-assets.apifox.com/download/2.7.54/legacy-Apifox-windows-x86-2.7.54.exe + InstallerSha256: B31B403E67062F62656779B97390C2CBAAAB2CB64ACD94F49C33DAB7A43E593C + InstallerSwitches: + Custom: /currentuser +- Architecture: x86 + Scope: machine + InstallerUrl: https://file-assets.apifox.com/download/2.7.54/legacy-Apifox-windows-x86-2.7.54.exe + InstallerSha256: B31B403E67062F62656779B97390C2CBAAAB2CB64ACD94F49C33DAB7A43E593C + InstallerSwitches: + Custom: /allusers +- Architecture: x64 + Scope: user + InstallerUrl: https://file-assets.apifox.com/download/2.7.54/Apifox-2.7.54.exe + InstallerSha256: 3FF6619570D340501CFC1361412C79079307C27B687F222248111A3DBB1CE06F + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://file-assets.apifox.com/download/2.7.54/Apifox-2.7.54.exe + InstallerSha256: 3FF6619570D340501CFC1361412C79079307C27B687F222248111A3DBB1CE06F + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/r/Ruihu/Apifox/2.7.54/Ruihu.Apifox.locale.en-US.yaml b/manifests/r/Ruihu/Apifox/2.7.54/Ruihu.Apifox.locale.en-US.yaml new file mode 100644 index 0000000000000..92c4631176a8d --- /dev/null +++ b/manifests/r/Ruihu/Apifox/2.7.54/Ruihu.Apifox.locale.en-US.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: Ruihu.Apifox +PackageVersion: 2.7.54 +PackageLocale: en-US +Author: Guangzhou Ruihu Technology Co., Ltd. +License: Freeware +ShortDescription: All-in-one collaboration platform for API documentation, API debugging, API Mock and API test automation +Description: |- + Apifox is an all-in-one collaboration platform for API documentation, API debugging, API Mock and API test automation, positioning Postman + Swagger + Mock + JMeter. + With one system and one data, it solves data sync problems among multiple systems. + As long as the API documentation is defined, API debugging, API data Mock, API test automation can be used directly without the need to redefine; API documentation shares the same tool with API development and debugging, so once the API debugging is completed, it can be ensured that it is identical to the definition of the API documentation. + Efficient, timely and accurate! +Tags: +- api +- automation +- debug +- develop +- development +- interface +- internet +- network +- request +- response +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/r/Ruihu/Apifox/2.7.54/Ruihu.Apifox.locale.zh-CN.yaml b/manifests/r/Ruihu/Apifox/2.7.54/Ruihu.Apifox.locale.zh-CN.yaml new file mode 100644 index 0000000000000..bf8ce98e75544 --- /dev/null +++ b/manifests/r/Ruihu/Apifox/2.7.54/Ruihu.Apifox.locale.zh-CN.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Ruihu.Apifox +PackageVersion: 2.7.54 +PackageLocale: zh-CN +Publisher: Apifox Team +Author: 广州睿狐科技有限公司 +PackageName: Apifox +License: 免费软件 +Copyright: Copyright © 2025 Apifox Team +ShortDescription: API 文档、API 调试、API Mock、API 自动化测试一体化协作平台 +Description: Apifox 是 API 文档、API 调试、API Mock、API 自动化测试一体化协作平台,定位 Postman + Swagger + Mock + JMeter。通过一套系统、一份数据,解决多个系统之间的数据同步问题。只要定义好 API 文档,API 调试、API 数据 Mock、API 自动化测试就可以直接使用,无需再次定义;API 文档和 API 开发调试使用同一个工具,API 调试完成后即可保证和 API 文档定义完全一致。高效、及时、准确! +Tags: +- api +- 互联网 +- 响应 +- 开发 +- 接口 +- 网络 +- 自动化 +- 请求 +- 调试 +# ReleaseNotesUrl: https://docs.apifox.com/doc-5807637 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/r/Ruihu/Apifox/2.7.54/Ruihu.Apifox.yaml b/manifests/r/Ruihu/Apifox/2.7.54/Ruihu.Apifox.yaml new file mode 100644 index 0000000000000..c4693186412c1 --- /dev/null +++ b/manifests/r/Ruihu/Apifox/2.7.54/Ruihu.Apifox.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: Ruihu.Apifox +PackageVersion: 2.7.54 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/t/TransformerLab/TransformerLab/0.26.4/TransformerLab.TransformerLab.installer.yaml b/manifests/t/TransformerLab/TransformerLab/0.26.4/TransformerLab.TransformerLab.installer.yaml new file mode 100644 index 0000000000000..9449752a5eeb6 --- /dev/null +++ b/manifests/t/TransformerLab/TransformerLab/0.26.4/TransformerLab.TransformerLab.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: TransformerLab.TransformerLab +PackageVersion: 0.26.4 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 470dce34-c249-5201-b573-d89ab7151f79 +ReleaseDate: 2025-12-01 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/transformerlab/transformerlab-app/releases/download/v0.26.4/Transformer-Lab-Setup-0.26.4.exe + InstallerSha256: D9A4B41DAB2E026D125A03B32E39737D717037CF1B17A012DC0C0344497C857F +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/t/TransformerLab/TransformerLab/0.26.4/TransformerLab.TransformerLab.locale.en-US.yaml b/manifests/t/TransformerLab/TransformerLab/0.26.4/TransformerLab.TransformerLab.locale.en-US.yaml new file mode 100644 index 0000000000000..0348dc12c4fff --- /dev/null +++ b/manifests/t/TransformerLab/TransformerLab/0.26.4/TransformerLab.TransformerLab.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: TransformerLab.TransformerLab +PackageVersion: 0.26.4 +PackageLocale: en-US +Publisher: Ali Asaria +PublisherUrl: https://transformerlab.ai/ +PublisherSupportUrl: https://github.com/transformerlab/transformerlab-app/issues +PackageName: Transformer Lab +PackageUrl: https://transformerlab.ai/docs/download +License: AGPL-3.0 +LicenseUrl: https://github.com/transformerlab/transformerlab-app/blob/HEAD/LICENSE +ShortDescription: '100% Open Source Toolkit for Large Language Models: Train, Tune, Chat on your own Machine' +Description: Transformer Lab is a free, open-source LLM workspace that you can run on your own computer. It is designed to go beyond what most modern open LLM applications allow. Using Transformer Lab you can easily finetune, evaluate, export and test LLMs across different inference engines and platforms. +Tags: +- ai +- large-language-model +- llm +ReleaseNotes: 'Full Changelog: https://github.com/transformerlab/transformerlab-app/compare/v0.26.3...v0.26.4' +ReleaseNotesUrl: https://github.com/transformerlab/transformerlab-app/releases/tag/v0.26.4 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://transformerlab.ai/docs/intro +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/t/TransformerLab/TransformerLab/0.26.4/TransformerLab.TransformerLab.locale.zh-CN.yaml b/manifests/t/TransformerLab/TransformerLab/0.26.4/TransformerLab.TransformerLab.locale.zh-CN.yaml new file mode 100644 index 0000000000000..d82239e4952d0 --- /dev/null +++ b/manifests/t/TransformerLab/TransformerLab/0.26.4/TransformerLab.TransformerLab.locale.zh-CN.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: TransformerLab.TransformerLab +PackageVersion: 0.26.4 +PackageLocale: zh-CN +ShortDescription: 用于大语言模型的 100% 开源工具包:在自己的机器上训练、调整和聊天 +Description: Transformer Lab 是一个免费/自由、开源的 LLM 工作区,可以在您自己的电脑上运行。它在设计上远超于大多数现代开放 LLM 应用程序。使用 Transformer Lab,您可以在不同的推理引擎和平台上轻松地微调、评估、导出和测试 LLM。 +Tags: +- llm +- 人工智能 +- 大语言模型 +ReleaseNotesUrl: https://github.com/transformerlab/transformerlab-app/releases/tag/v0.26.4 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://transformerlab.ai/docs/intro +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/t/TransformerLab/TransformerLab/0.26.4/TransformerLab.TransformerLab.yaml b/manifests/t/TransformerLab/TransformerLab/0.26.4/TransformerLab.TransformerLab.yaml new file mode 100644 index 0000000000000..f5d3995f6f9bb --- /dev/null +++ b/manifests/t/TransformerLab/TransformerLab/0.26.4/TransformerLab.TransformerLab.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: TransformerLab.TransformerLab +PackageVersion: 0.26.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/w/Watfaq/ClashRS/0.9.3/Watfaq.ClashRS.installer.yaml b/manifests/w/Watfaq/ClashRS/0.9.3/Watfaq.ClashRS.installer.yaml new file mode 100644 index 0000000000000..b92d7a4d3c0b5 --- /dev/null +++ b/manifests/w/Watfaq/ClashRS/0.9.3/Watfaq.ClashRS.installer.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: Watfaq.ClashRS +PackageVersion: 0.9.3 +InstallerType: portable +Commands: +- clash +ReleaseDate: 2025-12-09 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/Watfaq/clash-rs/releases/download/v0.9.3/clash-i686-pc-windows-msvc.exe + InstallerSha256: F66A330EC6AB114111D483F584B04D6619AC9C860619E441B729F5B645A8F7B7 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + InstallerUrl: https://github.com/Watfaq/clash-rs/releases/download/v0.9.3/clash-x86_64-pc-windows-msvc.exe + InstallerSha256: 2D0B13337AB772C33842EA4CB56E6FD0EE0224D431A8FB2203D8240AC9933AC0 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/Watfaq/clash-rs/releases/download/v0.9.3/clash-aarch64-pc-windows-msvc.exe + InstallerSha256: 0EE076EBDA6651A0775D455436064E2CD7B3EAA17A9034222F368A35FA0BF1CB + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/w/Watfaq/ClashRS/0.9.3/Watfaq.ClashRS.locale.en-US.yaml b/manifests/w/Watfaq/ClashRS/0.9.3/Watfaq.ClashRS.locale.en-US.yaml new file mode 100644 index 0000000000000..f99e98efac712 --- /dev/null +++ b/manifests/w/Watfaq/ClashRS/0.9.3/Watfaq.ClashRS.locale.en-US.yaml @@ -0,0 +1,48 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: Watfaq.ClashRS +PackageVersion: 0.9.3 +PackageLocale: en-US +Publisher: Watfaq Technologies Pty Ltd +PublisherUrl: https://github.com/Watfaq +PublisherSupportUrl: https://github.com/Watfaq/clash-rs/issues +Author: Watfaq Technologies Pty Ltd +PackageName: ClashRS +PackageUrl: https://github.com/Watfaq/clash-rs +License: Apache-2.0 +LicenseUrl: https://github.com/Watfaq/clash-rs/blob/HEAD/LICENSE +ShortDescription: A custom protocol, rule based network proxy software. +Moniker: clash-rs +Tags: +- clash +- network +- proxy +- vpn +ReleaseNotes: |- + 🚀 Features + - (rule) Add Windows support for PROCESS-NAME rule (#957) by @Copilot + - Add NETWORK rule support for TCP/UDP protocol routing (#968) by @Copilot + 🐛 Bug Fixes + - (shadowquic) Fix quinn not work when bound to interface (#960) by @spongebob888 + - (rule) Optimize MRS parsing and fix CIDR trie network truncation (#964) by @ibigbug + - Fixed default ALPN for trojan ws (#969) by @ibigbug + 🛠️ Builds + - (deps) Bump the actions-dependencies group with 2 updates (#961) by @dependabot[bot] + - (deps) Bump the rust-dependencies group with 22 updates (#962) by @dependabot[bot] + - (deps) Bump the rust-dependencies group with 6 updates (#965) by @dependabot[bot] + ⚙️ Miscellaneous Tasks + - Bump version to v0.9.3 by @github-actions[bot] + Other + - Added App Store link and sponsors (#963) + Update README.md + Signed-off-by: Yuwei Ba dev@watfaq.com by @ibigbug + New Contributors ❤️ + - @Copilot made their first contribution in #968 + Full Changelog: https://github.com/Watfaq/clash-rs/compare/v0.9.2...v0.9.3 +ReleaseNotesUrl: https://github.com/Watfaq/clash-rs/releases/tag/v0.9.3 +Documentations: +- DocumentLabel: User Manual + DocumentUrl: https://watfaq.gitbook.io/clashrs-user-manual +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/w/Watfaq/ClashRS/0.9.3/Watfaq.ClashRS.locale.zh-CN.yaml b/manifests/w/Watfaq/ClashRS/0.9.3/Watfaq.ClashRS.locale.zh-CN.yaml new file mode 100644 index 0000000000000..0b28ab3a08e77 --- /dev/null +++ b/manifests/w/Watfaq/ClashRS/0.9.3/Watfaq.ClashRS.locale.zh-CN.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Watfaq.ClashRS +PackageVersion: 0.9.3 +PackageLocale: zh-CN +ShortDescription: 一款自定义协议的基于规则的网络代理软件。 +Tags: +- clash +- vpn +- 代理 +- 网络 +ReleaseNotesUrl: https://github.com/Watfaq/clash-rs/releases/tag/v0.9.3 +Documentations: +- DocumentLabel: 用户手册 + DocumentUrl: https://watfaq.gitbook.io/clashrs-user-manual +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/w/Watfaq/ClashRS/0.9.3/Watfaq.ClashRS.yaml b/manifests/w/Watfaq/ClashRS/0.9.3/Watfaq.ClashRS.yaml new file mode 100644 index 0000000000000..3ea93c8963155 --- /dev/null +++ b/manifests/w/Watfaq/ClashRS/0.9.3/Watfaq.ClashRS.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: Watfaq.ClashRS +PackageVersion: 0.9.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/y/Yali/DelFast/1.1.0.0/Yali.DelFast.installer.yaml b/manifests/y/Yali/DelFast/1.1.0.0/Yali.DelFast.installer.yaml new file mode 100644 index 0000000000000..56be398b798d8 --- /dev/null +++ b/manifests/y/Yali/DelFast/1.1.0.0/Yali.DelFast.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: Yali.DelFast +PackageVersion: 1.1.0.0 +InstallerType: portable +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/TheYali1/DelFast/releases/download/v1.1/DelFast.exe + InstallerSha256: C16B9678E94FDC8DC5D7EFD322FCD30D010091D3234710806150F9205A83C382 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/y/Yali/DelFast/1.1.0.0/Yali.DelFast.locale.en-US.yaml b/manifests/y/Yali/DelFast/1.1.0.0/Yali.DelFast.locale.en-US.yaml new file mode 100644 index 0000000000000..6968f0bddcf07 --- /dev/null +++ b/manifests/y/Yali/DelFast/1.1.0.0/Yali.DelFast.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: Yali.DelFast +PackageVersion: 1.1.0.0 +PackageLocale: en-US +Publisher: Yali +PackageName: DelFast +License: MIT License +ShortDescription: DelFast is a lightweight Windows utility for instantly deleting files and folders without the delays caused by Windows Explorer calculations and animations. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/y/Yali/DelFast/1.1.0.0/Yali.DelFast.yaml b/manifests/y/Yali/DelFast/1.1.0.0/Yali.DelFast.yaml new file mode 100644 index 0000000000000..1de25e9c9ea21 --- /dev/null +++ b/manifests/y/Yali/DelFast/1.1.0.0/Yali.DelFast.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: Yali.DelFast +PackageVersion: 1.1.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/z/zTools/zTools/1.2.1/zTools.zTools.installer.yaml b/manifests/z/zTools/zTools/1.2.1/zTools.zTools.installer.yaml new file mode 100644 index 0000000000000..2835877cd847a --- /dev/null +++ b/manifests/z/zTools/zTools/1.2.1/zTools.zTools.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: zTools.zTools +PackageVersion: 1.2.1 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: b7f771d0-2e39-509d-9099-3f63c1554aca +ReleaseDate: 2025-12-23 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ZToolsCenter/ZTools/releases/download/v1.2.1/ZTools-1.2.1-x64-setup.exe + InstallerSha256: 7F2F6D8D5F6C6860D10AF9F572AE1A64B4DBD1A6EF48E8766B3B5FA3858AFA69 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/z/zTools/zTools/1.2.1/zTools.zTools.locale.en-US.yaml b/manifests/z/zTools/zTools/1.2.1/zTools.zTools.locale.en-US.yaml new file mode 100644 index 0000000000000..9d358d37ae4fe --- /dev/null +++ b/manifests/z/zTools/zTools/1.2.1/zTools.zTools.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: zTools.zTools +PackageVersion: 1.2.1 +PackageLocale: en-US +ShortDescription: A high-performance, scalable application launcher and plugin platform +Description: |- + A high-performance, scalable application launcher and plugin platform + ✨ Features + - 🚀 Fast Launch - Pinyin search, regex matching, history, and pinned apps + - 🧩 Plugin System - Supports UI and headless plugins, with full API support + - 📋 Clipboard Manager - History, search, image support, cross-platform native implementation + - 🎨 Theme Customization - System/light/dark modes, 6 theme colors available + - ⚡ High Performance - LMDB database, WebContentsView architecture, instant response + - 🌍 Cross-Platform - Native support for macOS and Windows, unified experience + - 🔒 Data Isolation - Plugins store data independently, secure and reliable + - 🛠️ Developer-Friendly - Full TypeScript type support, hot reload development + - ⚙️ Latest Tech Stack - Electron 38.5 + Node 22.20 + Chrome 140 +Tags: +- add-on +- addon +- app +- application +- extension +- find +- launcher +- plugin +- productivity +- search +- tool +- utility +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/z/zTools/zTools/1.2.1/zTools.zTools.locale.zh-CN.yaml b/manifests/z/zTools/zTools/1.2.1/zTools.zTools.locale.zh-CN.yaml new file mode 100644 index 0000000000000..a66a9ae3a6966 --- /dev/null +++ b/manifests/z/zTools/zTools/1.2.1/zTools.zTools.locale.zh-CN.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: zTools.zTools +PackageVersion: 1.2.1 +PackageLocale: zh-CN +Publisher: lzx8589561 +PublisherUrl: https://github.com/ZToolsCenter +PublisherSupportUrl: https://github.com/ZToolsCenter/ZTools/issues +PackageName: zTools +PackageUrl: https://github.com/ZToolsCenter/ZTools +License: MIT +LicenseUrl: https://github.com/ZToolsCenter/ZTools/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025 lzx8589561 +ShortDescription: 一个高性能、可扩展的应用启动器和插件平台 +Description: |- + 一个高性能、可扩展的应用启动器和插件平台 + ✨ 特性 + - 🚀 快速启动 - 拼音搜索、正则匹配、历史记录、固定应用 + - 🧩 插件系统 - 支持 UI 插件和无界面插件,完整的 API 支持 + - 📋 剪贴板管理 - 历史记录、搜索、图片支持、跨平台原生实现 + - 🎨 主题定制 - 系统/亮色/暗色模式,6 种主题色可选 + - ⚡ 高性能 - LMDB 数据库、WebContentsView 架构、极速响应 + - 🌍 跨平台 - 原生支持 macOS 和 Windows,统一体验 + - 🔒 数据隔离 - 插件数据独立存储,安全可靠 + - 🛠️ 开发友好 - 完整的 TypeScript 类型支持,热重载开发 + - ⚙️ 最新技术栈 - Electron 38.5 + Node 22.20 + Chrome 140 +Tags: +- 启动器 +- 工具 +- 应用 +- 扩展 +- 插件 +- 搜索 +- 效率 +- 查找 +- 生产力 +ReleaseNotesUrl: https://github.com/ZToolsCenter/ZTools/releases/tag/v1.2.1 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/z/zTools/zTools/1.2.1/zTools.zTools.yaml b/manifests/z/zTools/zTools/1.2.1/zTools.zTools.yaml new file mode 100644 index 0000000000000..bfab5f7811613 --- /dev/null +++ b/manifests/z/zTools/zTools/1.2.1/zTools.zTools.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: zTools.zTools +PackageVersion: 1.2.1 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.10.0