diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index f102bc7f6b46..57d5a5d6168d 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,16 +1,22 @@ -Checklist for Pull Requests -- [ ] Have you signed the [Contributor License Agreement](https://cla.opensource.microsoft.com/microsoft/winget-pkgs)? -- [ ] Is there a linked Issue? If so, fill in the Issue number below. - + + +## 📖 Description + + +## ✅ Checklist + + +- [ ] Signed the [Contributor License Agreement](https://cla.opensource.microsoft.com) +- [ ] Linked to an issue (if applicable) + - Resolves #[Issue Number] -Manifests -- [ ] Have you checked that there aren't other open [pull requests](https://github.com/microsoft/winget-pkgs/pulls) for the same manifest update/change? -- [ ] This PR only modifies one (1) manifest -- [ ] Have you [validated](https://github.com/microsoft/winget-pkgs/blob/master/doc/Authoring.md#validation) your manifest locally with `winget validate --manifest `? -- [ ] Have you tested your manifest locally with `winget install --manifest `? -- [ ] Does your manifest conform to the [1.12 schema](https://github.com/microsoft/winget-pkgs/tree/master/doc/manifest/schema/1.12.0)? +## 📊 Manifest Checklist -Note: `` is the directory's name containing the manifest you're submitting. +- [ ] Checked that there aren't other open [pull requests](https://github.com/microsoft/winget-pkgs/pulls) for the same manifest update/change +- [ ] This PR only modifies one (1) manifest +- [ ] Validated manifest locally with `winget validate --manifest ` ([validation guide](https://github.com/microsoft/winget-pkgs/blob/master/doc/ValidationFailureGuide.md)) +- [ ] Tested manifest locally with `winget install --manifest ` +- [ ] Manifest conforms to the [1.12 schema](https://github.com/microsoft/winget-pkgs/tree/master/doc/manifest/schema/1.12.0) ---- +> **Note:** `` is the directory containing the manifest you're submitting. \ No newline at end of file diff --git a/Tools/YamlCreate.ps1 b/Tools/YamlCreate.ps1 index 506750f4298f..bbdf04d826f0 100644 --- a/Tools/YamlCreate.ps1 +++ b/Tools/YamlCreate.ps1 @@ -236,7 +236,7 @@ if ($Settings) { exit } -$ScriptHeader = '# Created with YamlCreate.ps1 v2.7.1' +$ScriptHeader = '# Created with YamlCreate.ps1 v2.7.2' $ManifestVersion = '1.12.0' $PSDefaultParameterValues = @{ '*:Encoding' = 'UTF8' } $Utf8NoBomEncoding = New-Object System.Text.UTF8Encoding $False @@ -1981,8 +1981,8 @@ Function Read-PRBody { # | Where-Object { $_ -like '-*[ ]*' })) if ($_line -like '-*[ ]*' ) { $_showMenu = $true - switch -Wildcard ( $_line ) { - '*CLA*' { + switch -Regex ( $_line ) { + '(?i)CLA' { if ($ScriptSettings.SignedCLA -eq 'true') { $PrBodyContent = $PrBodyContent.Replace($_line, $_line.Replace('[ ]', '[x]')) $_showMenu = $false @@ -1997,7 +1997,7 @@ Function Read-PRBody { } } - '*open `[pull requests`]*' { + '(?i)open \[pull requests\]' { $_menu = @{ Prompt = "Have you checked that there aren't other open pull requests for the same manifest update/change?" Entries = @('[Y] Yes'; '*[N] No') @@ -2007,7 +2007,7 @@ Function Read-PRBody { } } - '*winget validate*' { + '(?i)winget validate' { if ($? -and $(Get-Command 'winget' -ErrorAction SilentlyContinue)) { $PrBodyContent = $PrBodyContent.Replace($_line, $_line.Replace('[ ]', '[x]')) $_showMenu = $false @@ -2024,7 +2024,7 @@ Function Read-PRBody { } } - '*tested your manifest*' { + '(?i)tested .* ?manifest' { if ($script:SandboxTest -eq '0') { $PrBodyContent = $PrBodyContent.Replace($_line, $_line.Replace('[ ]', '[x]')) $_showMenu = $false @@ -2041,7 +2041,7 @@ Function Read-PRBody { } } - '*schema*' { + '(?i)schema' { if ($script:Option -ne 'RemoveManifest') { $_Match = ($_line | Select-String -Pattern 'https://+.+(?=\))').Matches.Value $_menu = @{ @@ -2056,12 +2056,12 @@ Function Read-PRBody { } } - '*only modifies one*' { + '(?i)(only)? modifies one' { $PrBodyContent = $PrBodyContent.Replace($_line, $_line.Replace('[ ]', '[x]')) $_showMenu = $false } - '*linked issue*' { + '(?i)linked .* ?issue' { # Linked issues is handled as a separate prompt below so that the issue numbers can be gathered $_showMenu = $false } diff --git a/manifests/a/AGSProjectTeam/AdventureGameStudio/3.6.2.16/AGSProjectTeam.AdventureGameStudio.installer.yaml b/manifests/a/AGSProjectTeam/AdventureGameStudio/3.6.2.16/AGSProjectTeam.AdventureGameStudio.installer.yaml index 4f2f4e905ebf..32ee6e2328b1 100644 --- a/manifests/a/AGSProjectTeam/AdventureGameStudio/3.6.2.16/AGSProjectTeam.AdventureGameStudio.installer.yaml +++ b/manifests/a/AGSProjectTeam/AdventureGameStudio/3.6.2.16/AGSProjectTeam.AdventureGameStudio.installer.yaml @@ -1,4 +1,4 @@ -# Created with komac v2.14.0 +# Automatically updated by the winget bot at 2026/May/07 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: AGSProjectTeam.AdventureGameStudio @@ -16,6 +16,6 @@ InstallationMetadata: Installers: - Architecture: x86 InstallerUrl: https://github.com/adventuregamestudio/ags/releases/download/v3.6.2.16/AGS-3.6.2.16-P6.exe - InstallerSha256: 0E6BF11E46C563FCFA8B3A550C5A81CBBB1D606709585D9E784BE4254B66FF7A + InstallerSha256: B85CF7EC92ECBECD79258D15E6AB68CA44979F5C23A2C40E53AADD7D9FAB794B ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/a/AGSProjectTeam/AdventureGameStudio/3.6.2.16/AGSProjectTeam.AdventureGameStudio.locale.en-US.yaml b/manifests/a/AGSProjectTeam/AdventureGameStudio/3.6.2.16/AGSProjectTeam.AdventureGameStudio.locale.en-US.yaml index db995fe95906..01d07fef8ef7 100644 --- a/manifests/a/AGSProjectTeam/AdventureGameStudio/3.6.2.16/AGSProjectTeam.AdventureGameStudio.locale.en-US.yaml +++ b/manifests/a/AGSProjectTeam/AdventureGameStudio/3.6.2.16/AGSProjectTeam.AdventureGameStudio.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with komac v2.14.0 +# Automatically updated by the winget bot at 2026/May/07 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: AGSProjectTeam.AdventureGameStudio diff --git a/manifests/a/AGSProjectTeam/AdventureGameStudio/3.6.2.16/AGSProjectTeam.AdventureGameStudio.yaml b/manifests/a/AGSProjectTeam/AdventureGameStudio/3.6.2.16/AGSProjectTeam.AdventureGameStudio.yaml index 3370d850f477..bca441b18190 100644 --- a/manifests/a/AGSProjectTeam/AdventureGameStudio/3.6.2.16/AGSProjectTeam.AdventureGameStudio.yaml +++ b/manifests/a/AGSProjectTeam/AdventureGameStudio/3.6.2.16/AGSProjectTeam.AdventureGameStudio.yaml @@ -1,4 +1,4 @@ -# Created with komac v2.14.0 +# Automatically updated by the winget bot at 2026/May/07 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: AGSProjectTeam.AdventureGameStudio diff --git a/manifests/a/Actifile/ActifileAgent/3.0.2.3/Actifile.ActifileAgent.installer.yaml b/manifests/a/Actifile/ActifileAgent/3.0.2.3/Actifile.ActifileAgent.installer.yaml deleted file mode 100644 index fb7ba308b4ba..000000000000 --- a/manifests/a/Actifile/ActifileAgent/3.0.2.3/Actifile.ActifileAgent.installer.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically updated by the winget bot at 2025/Sep/07 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Actifile.ActifileAgent -PackageVersion: 3.0.2.3 -Installers: -- Architecture: x86 - InstallerType: msi - InstallerUrl: https://app.actifile.com/Home/DownloadAgentMsi - InstallerSha256: CD976A1D767F862BA6CA46871A5FC4606DAA8EE1352E1589DE06DA6DB8083E92 - ProductCode: "{0D13F554-E542-4590-AACB-AA60CAE75A64}" - Scope: machine -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/a/Actifile/ActifileAgent/3.0.2.3/Actifile.ActifileAgent.locale.en-US.yaml b/manifests/a/Actifile/ActifileAgent/3.0.2.3/Actifile.ActifileAgent.locale.en-US.yaml deleted file mode 100644 index 7095c1d6a0a4..000000000000 --- a/manifests/a/Actifile/ActifileAgent/3.0.2.3/Actifile.ActifileAgent.locale.en-US.yaml +++ /dev/null @@ -1,12 +0,0 @@ -# Automatically updated by the winget bot at 2025/Sep/07 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Actifile.ActifileAgent -PackageVersion: 3.0.2.3 -PackageLocale: en-US -Publisher: Actifile -PackageName: Actifile Agent -License: Copyright (c) Actifile -ShortDescription: Actifile’s SaaS platform automates sensitive data discovery, monitoring and protection for zero-trust endpoints. -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/a/Actifile/ActifileAgent/3.0.2.3/Actifile.ActifileAgent.yaml b/manifests/a/Actifile/ActifileAgent/3.0.2.3/Actifile.ActifileAgent.yaml deleted file mode 100644 index 3e78b264165e..000000000000 --- a/manifests/a/Actifile/ActifileAgent/3.0.2.3/Actifile.ActifileAgent.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Sep/07 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Actifile.ActifileAgent -PackageVersion: 3.0.2.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/a/AntonioOrionus/Arroxy/0.3.1/AntonioOrionus.Arroxy.installer.yaml b/manifests/a/AntonioOrionus/Arroxy/0.3.1/AntonioOrionus.Arroxy.installer.yaml new file mode 100644 index 000000000000..f0ecbb4e6475 --- /dev/null +++ b/manifests/a/AntonioOrionus/Arroxy/0.3.1/AntonioOrionus.Arroxy.installer.yaml @@ -0,0 +1,23 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: AntonioOrionus.Arroxy +PackageVersion: 0.3.1 +InstallerLocale: en-US +InstallerType: nullsoft +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: 676f1cb1-b4d3-53ac-88ee-2c2f796d54e2 +ReleaseDate: 2026-05-07 +AppsAndFeaturesEntries: +- DisplayName: Arroxy 0.3.1 + ProductCode: 676f1cb1-b4d3-53ac-88ee-2c2f796d54e2 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/antonio-orionus/Arroxy/releases/download/v0.3.1/Arroxy-Setup-0.3.1.exe + InstallerSha256: 3A6B35D1564722D97973F424D24806BF801DC90C3807C37A1D4520844CA06732 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/AntonioOrionus/Arroxy/0.3.1/AntonioOrionus.Arroxy.locale.en-US.yaml b/manifests/a/AntonioOrionus/Arroxy/0.3.1/AntonioOrionus.Arroxy.locale.en-US.yaml new file mode 100644 index 000000000000..8b4a4cd05ad6 --- /dev/null +++ b/manifests/a/AntonioOrionus/Arroxy/0.3.1/AntonioOrionus.Arroxy.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: AntonioOrionus.Arroxy +PackageVersion: 0.3.1 +PackageLocale: en-US +Publisher: Antonio Orionus +PublisherUrl: https://github.com/antonio-orionus +PublisherSupportUrl: https://github.com/antonio-orionus/Arroxy/issues +Author: Antonio Orionus +PackageName: Arroxy +PackageUrl: https://github.com/antonio-orionus/Arroxy +License: MIT +LicenseUrl: https://github.com/antonio-orionus/Arroxy/blob/HEAD/LICENSE +Copyright: Copyright © 2026 Antonio Orionus +ShortDescription: Free open-source YouTube downloader GUI based on yt-dlp for Windows, macOS, and Linux. Download videos, Shorts, 4K, 1080p60, HDR, and subtitles with no ads, tracking, cookies, or login. Supports 9 languages. +Description: Arroxy is a free, open-source desktop app for downloading YouTube videos and Shorts in up to 4K, 1080p60, HDR, and audio-only formats with no ads, tracking, or login required. +Moniker: arroxy +Tags: +- audio-downloader +- cross-platform +- desktop-app +- downloader-for-youtube +- media-downloader +- mp4-downloader +- video-download +- video-download-tool +- video-downloader +- youtube-4k-downloader +- youtube-download +- youtube-downloader +- youtube-shorts-download +- yt-dlp +- yt-dlp-gui +ReleaseNotes: |- + What's Changed + - Release 0.3.1 by @antonio-orionus in #4 + New Contributors + - @antonio-orionus made their first contribution in #4 + Full Changelog: v0.3.0...v0.3.1 +ReleaseNotesUrl: https://github.com/antonio-orionus/Arroxy/releases/tag/v0.3.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/AntonioOrionus/Arroxy/0.3.1/AntonioOrionus.Arroxy.yaml b/manifests/a/AntonioOrionus/Arroxy/0.3.1/AntonioOrionus.Arroxy.yaml new file mode 100644 index 000000000000..9bc8c52d3c2d --- /dev/null +++ b/manifests/a/AntonioOrionus/Arroxy/0.3.1/AntonioOrionus.Arroxy.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: AntonioOrionus.Arroxy +PackageVersion: 0.3.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.installer.yaml b/manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.installer.yaml similarity index 88% rename from manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.installer.yaml rename to manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.installer.yaml index 089fecd50000..67b7edfb87ca 100644 --- a/manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.installer.yaml +++ b/manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: AnyDesk.AnyDesk -PackageVersion: 9.7.1 +PackageVersion: 9.7.3 InstallerType: exe Scope: machine InstallModes: @@ -24,6 +24,6 @@ ElevationRequirement: elevationRequired Installers: - Architecture: x86 InstallerUrl: https://download.anydesk.com/AnyDesk.exe - InstallerSha256: 5BF2945CEAAAC681FAD1B9B999C6620CE8393F919179CE6CA0FEF5B411E984E5 + InstallerSha256: 019D0B167D9052D53BAC2A1C711AF90BBD55D6305F5139A276AEB59522075CF0 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.locale.en-US.yaml b/manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.locale.en-US.yaml similarity index 98% rename from manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.locale.en-US.yaml rename to manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.locale.en-US.yaml index 2d44eeab8807..4621b529e697 100644 --- a/manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.locale.en-US.yaml +++ b/manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: AnyDesk.AnyDesk -PackageVersion: 9.7.1 +PackageVersion: 9.7.3 PackageLocale: en-US Publisher: AnyDesk Software GmbH Author: AnyDesk Software GmbH diff --git a/manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.locale.zh-CN.yaml b/manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.locale.zh-CN.yaml similarity index 97% rename from manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.locale.zh-CN.yaml rename to manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.locale.zh-CN.yaml index fe91403b0597..1617f7559fc5 100644 --- a/manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.locale.zh-CN.yaml +++ b/manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: AnyDesk.AnyDesk -PackageVersion: 9.7.1 +PackageVersion: 9.7.3 PackageLocale: zh-CN License: 䞓有蜯件 ShortDescription: 超䟿捷的远皋桌面蜯件 diff --git a/manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.yaml b/manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.yaml similarity index 91% rename from manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.yaml rename to manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.yaml index 3123155d3919..cfdc8febda69 100644 --- a/manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.yaml +++ b/manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: AnyDesk.AnyDesk -PackageVersion: 9.7.1 +PackageVersion: 9.7.3 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/a/Anysphere/Cursor/3.3.12/Anysphere.Cursor.installer.yaml b/manifests/a/Anysphere/Cursor/3.3.12/Anysphere.Cursor.installer.yaml index 280aef574ba8..e06dd29ac1a6 100644 --- a/manifests/a/Anysphere/Cursor/3.3.12/Anysphere.Cursor.installer.yaml +++ b/manifests/a/Anysphere/Cursor/3.3.12/Anysphere.Cursor.installer.yaml @@ -150,6 +150,7 @@ FileExtensions: - yaml - yml - zsh +ReleaseDate: 2026-05-06 Installers: - Architecture: x64 Scope: user diff --git a/manifests/a/Anysphere/Cursor/3.3.12/Anysphere.Cursor.locale.en-US.yaml b/manifests/a/Anysphere/Cursor/3.3.12/Anysphere.Cursor.locale.en-US.yaml index 3bd85762d844..6700941209a9 100644 --- a/manifests/a/Anysphere/Cursor/3.3.12/Anysphere.Cursor.locale.en-US.yaml +++ b/manifests/a/Anysphere/Cursor/3.3.12/Anysphere.Cursor.locale.en-US.yaml @@ -22,6 +22,9 @@ Tags: - develop - development - programming +ReleaseNotes: |- + You can now see a breakdown of your agent's context usage. + Use these stats to diagnose context issues and improve your setup across rules, skills, MCPs, and subagents. ReleaseNotesUrl: https://changelog.cursor.com/ PurchaseUrl: https://www.cursor.com/pricing Documentations: diff --git a/manifests/a/Appest/Dida/8.0.6.0/Appest.Dida.installer.yaml b/manifests/a/Appest/Dida/8.0.6.0/Appest.Dida.installer.yaml index abab2edfb05f..b0eb2ce4cc14 100644 --- a/manifests/a/Appest/Dida/8.0.6.0/Appest.Dida.installer.yaml +++ b/manifests/a/Appest/Dida/8.0.6.0/Appest.Dida.installer.yaml @@ -1,20 +1,20 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Appest.Dida -PackageVersion: 8.0.6.0 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -Protocols: -- ticktick -ReleaseDate: 2026-04-20 -Installers: -- Architecture: x86 - InstallerUrl: https://cdn.dida365.cn/download/win/dida_win_setup_release_x86_8060.exe - InstallerSha256: 340048C27D9850294A3FFA1B03FCDABE2A7724682F6C5BCCA7BC34BE487D4CE4 -- Architecture: x64 - InstallerUrl: https://cdn.dida365.cn/download/win64/dida_win_setup_release_x64_8060.exe - InstallerSha256: 607C8049E7017F8284A377C1E0B583F343B8AF7BEF164AD4A0F0BBFCF3310151 -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Appest.Dida +PackageVersion: 8.0.6.0 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- ticktick +ReleaseDate: 2026-04-20 +Installers: +- Architecture: x86 + InstallerUrl: https://cdn.dida365.cn/download/win/dida_win_setup_release_x86_8060.exe + InstallerSha256: C77501AF800FCC715F01076D989274D25B408DA30A0761901778848CC0460B43 +- Architecture: x64 + InstallerUrl: https://cdn.dida365.cn/download/win64/dida_win_setup_release_x64_8060.exe + InstallerSha256: 4708949A6C3815CC89CD520E6914FFB4F98C136FDFD490D7315DBB099F292B82 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/Appest/Dida/8.0.6.0/Appest.Dida.locale.en-US.yaml b/manifests/a/Appest/Dida/8.0.6.0/Appest.Dida.locale.en-US.yaml index 42dfa381b720..6ecedfaa62d5 100644 --- a/manifests/a/Appest/Dida/8.0.6.0/Appest.Dida.locale.en-US.yaml +++ b/manifests/a/Appest/Dida/8.0.6.0/Appest.Dida.locale.en-US.yaml @@ -1,40 +1,40 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Appest.Dida -PackageVersion: 8.0.6.0 -PackageLocale: en-US -Publisher: 杭州随笔记眑络技术有限公叞 -PublisherUrl: https://www.dida365.com -PublisherSupportUrl: https://help.dida365.com -PrivacyUrl: https://dida365.com/about/privacy -Author: Hangzhou Suibiji Network Technology Co., Ltd. -PackageName: 滎答枅单 -PackageUrl: https://www.dida365.com -License: Proprietary -LicenseUrl: https://dida365.com/about/tos -Copyright: © 2026 DIDA Team All rights reserved -ShortDescription: To-Do List & Calendar. -Description: |- - Dida is a powerful to-do & task management app with seamless cloud synchronization across all your devices. - Whether you need to schedule an agenda, make memos, share shopping lists, collaborate in a team, or even develop a new habit, Dida is always here to help you get stuff done and keep life on track. -Tags: -- agenda -- calendar -- checklist -- china -- collaboration -- gtd -- list -- memo -- memorandum -- notes -- prc -- schedule -- task -- to-do -- todo -ReleaseNotes: '- General fixes and improvements.' -PurchaseUrl: https://www.dida365.com/about/upgrade -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Appest.Dida +PackageVersion: 8.0.6.0 +PackageLocale: en-US +Publisher: 杭州随笔记眑络技术有限公叞 +PublisherUrl: https://www.dida365.com +PublisherSupportUrl: https://help.dida365.com +PrivacyUrl: https://dida365.com/about/privacy +Author: Hangzhou Suibiji Network Technology Co., Ltd. +PackageName: 滎答枅单 +PackageUrl: https://www.dida365.com +License: Proprietary +LicenseUrl: https://dida365.com/about/tos +Copyright: © 2026 DIDA Team All rights reserved +ShortDescription: To-Do List & Calendar. +Description: |- + Dida is a powerful to-do & task management app with seamless cloud synchronization across all your devices. + Whether you need to schedule an agenda, make memos, share shopping lists, collaborate in a team, or even develop a new habit, Dida is always here to help you get stuff done and keep life on track. +Tags: +- agenda +- calendar +- checklist +- china +- collaboration +- gtd +- list +- memo +- memorandum +- notes +- prc +- schedule +- task +- to-do +- todo +ReleaseNotes: '- General fixes and improvements.' +PurchaseUrl: https://www.dida365.com/about/upgrade +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Appest/Dida/8.0.6.0/Appest.Dida.locale.zh-CN.yaml b/manifests/a/Appest/Dida/8.0.6.0/Appest.Dida.locale.zh-CN.yaml index 7900540ac8a7..92e6eabe1bda 100644 --- a/manifests/a/Appest/Dida/8.0.6.0/Appest.Dida.locale.zh-CN.yaml +++ b/manifests/a/Appest/Dida/8.0.6.0/Appest.Dida.locale.zh-CN.yaml @@ -1,39 +1,39 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: Appest.Dida -PackageVersion: 8.0.6.0 -PackageLocale: zh-CN -Publisher: 杭州随笔记眑络技术有限公叞 -PublisherUrl: https://www.dida365.com -PublisherSupportUrl: https://help.dida365.com -PrivacyUrl: https://dida365.com/about/privacy -Author: 杭州随笔记眑络技术有限公叞 -PackageName: 滎答枅单 -PackageUrl: https://www.dida365.com -License: 䞓有蜯件 -LicenseUrl: https://dida365.com/about/tos -Copyright: 版权所有 ©2026 滎答枅单团队 保留䞀切权力 -ShortDescription: 䞓泚日历提醒事项和时闎管理番茄钟 -Description: 滎答枅单䞀欟蜻䟿的埅办事项Todo、日皋管理GTD应甚党球速千䞇甚户的共同选择。它可以垮䜠制定项目计划、讟眮䌚议提醒、安排行皋规划、保持工䜜䞓泚还胜甚于记圕倇忘、敎理莭物枅单。滎答枅单集计划衚、倇忘圕、日皋枅单、笔记、䟿筟、闹钟、日历、番茄钟、圚线协䜜倚种实甚功胜于䞀䜓是䜠高效办公、目标管理、习惯养成及䟿捷生掻的埗力助手。 -Tags: -- 任务 -- 列衚 -- 协䜜 -- 协同 -- 倇忘 -- 倇忘圕 -- 埅办 -- 埅办事项 -- 提醒事项 -- 日历 -- 日皋 -- 日皋管理 -- 时闎管理 -- 枅单 -- 笔记 -- 议皋 -ReleaseNotes: '- 问题修倍䞎改进。' -PurchaseUrl: https://www.dida365.com/about/upgrade -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Appest.Dida +PackageVersion: 8.0.6.0 +PackageLocale: zh-CN +Publisher: 杭州随笔记眑络技术有限公叞 +PublisherUrl: https://www.dida365.com +PublisherSupportUrl: https://help.dida365.com +PrivacyUrl: https://dida365.com/about/privacy +Author: 杭州随笔记眑络技术有限公叞 +PackageName: 滎答枅单 +PackageUrl: https://www.dida365.com +License: 䞓有蜯件 +LicenseUrl: https://dida365.com/about/tos +Copyright: 版权所有 ©2026 滎答枅单团队 保留䞀切权力 +ShortDescription: 䞓泚日历提醒事项和时闎管理番茄钟 +Description: 滎答枅单䞀欟蜻䟿的埅办事项Todo、日皋管理GTD应甚党球速千䞇甚户的共同选择。它可以垮䜠制定项目计划、讟眮䌚议提醒、安排行皋规划、保持工䜜䞓泚还胜甚于记圕倇忘、敎理莭物枅单。滎答枅单集计划衚、倇忘圕、日皋枅单、笔记、䟿筟、闹钟、日历、番茄钟、圚线协䜜倚种实甚功胜于䞀䜓是䜠高效办公、目标管理、习惯养成及䟿捷生掻的埗力助手。 +Tags: +- 任务 +- 列衚 +- 协䜜 +- 协同 +- 倇忘 +- 倇忘圕 +- 埅办 +- 埅办事项 +- 提醒事项 +- 日历 +- 日皋 +- 日皋管理 +- 时闎管理 +- 枅单 +- 笔记 +- 议皋 +ReleaseNotes: '- 问题修倍䞎改进。' +PurchaseUrl: https://www.dida365.com/about/upgrade +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Appest/Dida/8.0.6.0/Appest.Dida.yaml b/manifests/a/Appest/Dida/8.0.6.0/Appest.Dida.yaml index 36dd28e7279f..833341d39dfb 100644 --- a/manifests/a/Appest/Dida/8.0.6.0/Appest.Dida.yaml +++ b/manifests/a/Appest/Dida/8.0.6.0/Appest.Dida.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: Appest.Dida -PackageVersion: 8.0.6.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Appest.Dida +PackageVersion: 8.0.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/Apple/AirPort/5.6.1.2/Apple.AirPort.locale.nb-NO.yaml b/manifests/a/Apple/AirPort/5.6.1.2/Apple.AirPort.locale.nb-NO.yaml new file mode 100644 index 000000000000..c06f2f5451de --- /dev/null +++ b/manifests/a/Apple/AirPort/5.6.1.2/Apple.AirPort.locale.nb-NO.yaml @@ -0,0 +1,30 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Apple.AirPort +PackageVersion: 5.6.1.2 +PackageLocale: nb-NO +PublisherUrl: https://www.apple.com/no/ +PublisherSupportUrl: https://support.apple.com/no-no/ +PrivacyUrl: https://www.apple.com/no/legal/privacy/ +PackageName: AirPort-verktÞy +PackageUrl: https://support.apple.com/no-no/106400 +License: ProprietÊr (Gratis) +Copyright: © 2008 Apple Inc. Alle rettigheter forbeholdt. +ShortDescription: Konfigurer og administrer AirPort Express, som ogsÃ¥ har stÞtte for to bÃ¥nd samtidig pÃ¥ 802.11n. +Description: I AirPort-verktÞyet kan du konfigurere og administrere AirPort Express, som ogsÃ¥ har stÞtte for to bÃ¥nd samtidig pÃ¥ 802.11n. +Tags: +- appleairport +- apple-airport +- airportverktÞy +- airportbasestation +- airportextremebasestation +- airportexpress +- airporttimecapsule +- airportdisk +- wifirutere +- wi-fi-rutere +- trÃ¥dlÞst-nettverk +- trÃ¥dlÞstnettverk +- aputil +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Argente/DriveCleaner/3.0.8.3/Argente.DriveCleaner.installer.yaml b/manifests/a/Argente/DriveCleaner/3.0.8.3/Argente.DriveCleaner.installer.yaml new file mode 100644 index 000000000000..b5b1ec1782f2 --- /dev/null +++ b/manifests/a/Argente/DriveCleaner/3.0.8.3/Argente.DriveCleaner.installer.yaml @@ -0,0 +1,32 @@ +# Automatically updated by the winget bot at 2026/May/06 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Argente.DriveCleaner +PackageVersion: 3.0.8.3 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /VERYSILENT /NORESTART --hidden + SilentWithProgress: /SILENT /NORESTART --hidden +UpgradeBehavior: install +ProductCode: Argente Installer_is1 +AppsAndFeaturesEntries: +- ProductCode: Argente Installer_is1 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + InstallerUrl: https://argenteutilities.com/en/download/drivecleanerx86 + InstallerSha256: 1003529739C12E698A3410AD05DCE0503B92BA45930DA5EB56E0E27CC68F7F97 +- Architecture: x64 + InstallerUrl: https://argenteutilities.com/en/download/drivecleanerx64 + InstallerSha256: 11A00543A1ABB62197A677A394AF63BF28EF07FE1D06F6E712348AFB09267EB4 +- Architecture: arm64 + InstallerUrl: https://argenteutilities.com/en/download/drivecleanerarm64 + InstallerSha256: 9855A3B247FE239572C0367C3213163AC1D586A183ED4D76F1A022E3804F7DA3 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/Argente/DriveCleaner/3.0.8.3/Argente.DriveCleaner.locale.en-US.yaml b/manifests/a/Argente/DriveCleaner/3.0.8.3/Argente.DriveCleaner.locale.en-US.yaml new file mode 100644 index 000000000000..d10bf4ebcecd --- /dev/null +++ b/manifests/a/Argente/DriveCleaner/3.0.8.3/Argente.DriveCleaner.locale.en-US.yaml @@ -0,0 +1,16 @@ +# Automatically updated by the winget bot at 2026/May/06 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Argente.DriveCleaner +PackageVersion: 3.0.8.3 +PackageLocale: en-US +Publisher: Raúl Argente +PublisherUrl: https://argenteutilities.com/ +PackageName: Argente Drive Cleaner +License: Proprietary +LicenseUrl: https://argenteutilities.com/modal/modal-body.php?type-modal=legal +Copyright: Copyright © 2008 - 2026 Raúl Argente +CopyrightUrl: https://argenteutilities.com/modal/modal-body.php?type-modal=legal +ShortDescription: Detect and remove all types of unnecessary files, freeing up space quickly and safely. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kraken/KrakenDesktop/1.11.2/Kraken.KrakenDesktop.yaml b/manifests/a/Argente/DriveCleaner/3.0.8.3/Argente.DriveCleaner.yaml similarity index 55% rename from manifests/k/Kraken/KrakenDesktop/1.11.2/Kraken.KrakenDesktop.yaml rename to manifests/a/Argente/DriveCleaner/3.0.8.3/Argente.DriveCleaner.yaml index 0bbd5d6501a3..ce2a02fbf1a2 100644 --- a/manifests/k/Kraken/KrakenDesktop/1.11.2/Kraken.KrakenDesktop.yaml +++ b/manifests/a/Argente/DriveCleaner/3.0.8.3/Argente.DriveCleaner.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2026/Jan/05 +# Automatically updated by the winget bot at 2026/May/06 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: Kraken.KrakenDesktop -PackageVersion: 1.11.2 +PackageIdentifier: Argente.DriveCleaner +PackageVersion: 3.0.8.3 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.installer.yaml b/manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.installer.yaml new file mode 100644 index 000000000000..ce2d87c21a26 --- /dev/null +++ b/manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: astral-sh.uv +PackageVersion: 0.11.10 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: uvx.exe + PortableCommandAlias: uvx +- RelativeFilePath: uv.exe + PortableCommandAlias: uv +- RelativeFilePath: uvw.exe + PortableCommandAlias: uvw +Commands: +- uv +- uvw +- uvx +ReleaseDate: 2026-05-05 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.11.10/uv-i686-pc-windows-msvc.zip + InstallerSha256: D56AD43D355D6C40FEE4009D0FB7E6710416CE9B25BEBF12A4127E51B3595B3C + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.11.10/uv-x86_64-pc-windows-msvc.zip + InstallerSha256: 7A0C424C7BC55A74751F13592235953EBBE182FA00355F7AE3FB7AB734A51638 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.11.10/uv-aarch64-pc-windows-msvc.zip + InstallerSha256: 3D5878CFC55106083ADA1E41CCCDDE477413701EB9D34767E8AD973BB0863DE6 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.locale.en-US.yaml b/manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.locale.en-US.yaml new file mode 100644 index 000000000000..4cdfa526afcc --- /dev/null +++ b/manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: astral-sh.uv +PackageVersion: 0.11.10 +PackageLocale: en-US +Publisher: Astral Software Inc. +PublisherUrl: https://astral.sh/ +PublisherSupportUrl: https://github.com/astral-sh/uv/issues +Author: Astral Software Inc. +PackageName: uv +PackageUrl: https://github.com/astral-sh/uv +License: Apache-2.0 or MIT +LicenseUrl: https://github.com/astral-sh/uv/blob/HEAD/README.md#license +Copyright: Copyright (c) 2026 Astral Software Inc. +ShortDescription: An extremely fast Python package and project manager, written in Rust. +Description: An extremely fast Python package and project manager, written in Rust. Designed as a single tool to replace pip, pip-tools, pipx, poetry, pyenv, twine, virtualenv workflows, and more. +Moniker: uv +Tags: +- python +ReleaseNotes: |- + Released on 2026-05-05. + Bug fixes + - Allow pre-release Python requests with non-zero patch versions (#19286) +ReleaseNotesUrl: https://github.com/astral-sh/uv/releases/tag/0.11.10 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.astral.sh/uv/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.locale.zh-CN.yaml b/manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.locale.zh-CN.yaml new file mode 100644 index 000000000000..6143dd035122 --- /dev/null +++ b/manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.locale.zh-CN.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: astral-sh.uv +PackageVersion: 0.11.10 +PackageLocale: zh-CN +License: Apache-2.0 或 MIT +ShortDescription: 甹 Rust 猖写的极速 Python 蜯件包和项目管理噚 +Description: 甹 Rust 猖写的极速 Python 蜯件包和项目管理噚。可䜜䞺单䞀工具替代 pip、pip-tools、pipx、poles、pyenv、twine、virtualenv 工䜜流等。 +ReleaseNotesUrl: https://github.com/astral-sh/uv/releases/tag/0.11.10 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.astral.sh/uv/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.yaml b/manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.yaml similarity index 77% rename from manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.yaml rename to manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.yaml index 6aebd0336724..e151cc0347db 100644 --- a/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.yaml +++ b/manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.5.1 +PackageIdentifier: astral-sh.uv +PackageVersion: 0.11.10 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.installer.yaml b/manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.installer.yaml new file mode 100644 index 000000000000..74a7d21bc64b --- /dev/null +++ b/manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.installer.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Balena.Etcher +PackageVersion: 2.1.5 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Protocols: +- etcher +ProductCode: balena_etcher +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/balena-io/etcher/releases/download/v2.1.5/balenaEtcher-2.1.5.Setup.exe + InstallerSha256: 4DC3E898926E52F60D537E02E1306B30B8D6DB92D3719AB29A840DF046C9CAC5 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.locale.en-US.yaml b/manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.locale.en-US.yaml new file mode 100644 index 000000000000..7f484c1665bc --- /dev/null +++ b/manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Balena.Etcher +PackageVersion: 2.1.5 +PackageLocale: en-US +Publisher: Balena Ltd. +PublisherUrl: https://www.balena.io/ +PublisherSupportUrl: https://github.com/balena-io/etcher/blob/HEAD/docs/SUPPORT.md +PrivacyUrl: https://www.balena.io/privacy-policy +Author: Balena Ltd. +PackageName: balenaEtcher +PackageUrl: https://etcher.balena.io/ +License: Apache-2.0 +LicenseUrl: https://github.com/balena-io/etcher/blob/HEAD/LICENSE +Copyright: Copyright 2016-2026 Balena Ltd. +ShortDescription: Flash OS images to SD cards & USB drives, safely and easily. +Description: Etcher is a powerful OS image flasher built with web technologies to ensure flashing an SDCard or USB drive is a pleasant and safe experience. It protects you from accidentally writing to your hard-drives, ensures every byte of data was written correctly, and much more. It can also directly flash Raspberry Pi devices that support USB device boot mode. +Tags: +- boot +- dd +- flash +- format +- image +- img +- iso +- usb +ReleaseNotes: |- + ccf063f9 (Add libgdk-pixbuf dependency alternatives to fix Ubuntu 26.04 installation, 2026-05-07) + 83522252 (Replace the EOL macos-13 test runners with macos-14, 2026-05-07) +ReleaseNotesUrl: https://github.com/balena-io/etcher/releases/tag/v2.1.5 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://etcher-docs.balena.io/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.locale.zh-CN.yaml b/manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.locale.zh-CN.yaml new file mode 100644 index 000000000000..e2f6150715ef --- /dev/null +++ b/manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Balena.Etcher +PackageVersion: 2.1.5 +PackageLocale: zh-CN +Publisher: Balena Ltd. +PublisherUrl: https://www.balena.io/ +PublisherSupportUrl: https://github.com/balena-io/etcher/blob/HEAD/docs/SUPPORT.md +PrivacyUrl: https://www.balena.io/privacy-policy +Author: Balena Ltd. +PackageName: balenaEtcher +PackageUrl: https://etcher.balena.io/ +License: Apache-2.0 +LicenseUrl: https://github.com/balena-io/etcher/blob/HEAD/LICENSE +Copyright: Copyright 2016-2026 Balena Ltd. +ShortDescription: 安党蜻束地将操䜜系统镜像刷入 SD 卡和 USB 驱劚噚。 +Description: Etcher 是䞀欟功胜区倧的操䜜系统镜像刷写工具采甚眑页技术让刷写 SD 卡或 USB 驱劚噚变埗愉快而安党。它胜防止意倖写入硬盘确保每䞪字节的数据郜被正确写入等等并胜盎接刷写支持 USB 讟倇启劚暡匏的 Raspberry Pi 讟倇。 +Tags: +- dd +- img +- iso +- usb +- 刷入 +- 刷写 +- 启劚 +- 匕富 +- 栌匏化 +- 烧圕 +- 镜像 +ReleaseNotesUrl: https://github.com/balena-io/etcher/releases/tag/v2.1.5 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://etcher-docs.balena.io/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.yaml b/manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.yaml similarity index 77% rename from manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.yaml rename to manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.yaml index 6f40237ab86c..631a3cba5927 100644 --- a/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.yaml +++ b/manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.4.9 +PackageIdentifier: Balena.Etcher +PackageVersion: 2.1.5 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/b/badlogic/pi/0.74.0/badlogic.pi.installer.yaml b/manifests/b/badlogic/pi/0.74.0/badlogic.pi.installer.yaml new file mode 100644 index 000000000000..cc87a7904fd3 --- /dev/null +++ b/manifests/b/badlogic/pi/0.74.0/badlogic.pi.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: badlogic.pi +PackageVersion: 0.74.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: pi.exe +Commands: +- pi +ReleaseDate: 2026-05-07 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/earendil-works/pi/releases/download/v0.74.0/pi-windows-x64.zip + InstallerSha256: 0CBFB81E31B0FEA0A4F88F95D05F3A32A782A686D54771EDE30042AE42E9931F +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/badlogic/pi/0.74.0/badlogic.pi.locale.en-US.yaml b/manifests/b/badlogic/pi/0.74.0/badlogic.pi.locale.en-US.yaml new file mode 100644 index 000000000000..32691b5bf56e --- /dev/null +++ b/manifests/b/badlogic/pi/0.74.0/badlogic.pi.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.12.0.schema.json + +PackageIdentifier: badlogic.pi +PackageVersion: 0.74.0 +PackageLocale: en-US +Publisher: Mario Zechner +PublisherUrl: https://github.com/badlogic +PublisherSupportUrl: https://github.com/badlogic/pi-mono/issues +Author: Mario Zechner +PackageName: pi +PackageUrl: https://github.com/badlogic/pi-mono +License: MIT +LicenseUrl: https://github.com/badlogic/pi-mono/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Mario Zechner +ShortDescription: AI coding assistant with read, bash, edit, write tools +Description: |- + Pi is a minimal terminal coding harness. Adapt pi to your workflows, not the other way around, without having to fork and modify pi internals. Extend it with TypeScript Extensions, Skills, Prompt Templates, and Themes. Put your extensions, skills, prompt templates, and themes in Pi Packages and share them with others via npm or git. + Pi ships with powerful defaults but skips features like sub agents and plan mode. Instead, you can ask pi to build what you want or install a third party pi package that matches your workflow. + Pi runs in four modes: interactive, print or JSON, RPC for process integration, and an SDK for embedding in your own apps. See openclaw/openclaw for a real-world SDK integration. +Moniker: pi +Tags: +- agent +- agentic +- ai +- chatbot +- code +- coding +- large-language-model +- llm +- programming +ReleaseNotes: |- + Changed + - Updated repository links and package references for the move to earendil-works/pi-mono and @earendil-works/* package scopes. +ReleaseNotesUrl: https://github.com/earendil-works/pi/releases/tag/v0.74.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/badlogic/pi/0.74.0/badlogic.pi.locale.zh-CN.yaml b/manifests/b/badlogic/pi/0.74.0/badlogic.pi.locale.zh-CN.yaml new file mode 100644 index 000000000000..8bf54564ed90 --- /dev/null +++ b/manifests/b/badlogic/pi/0.74.0/badlogic.pi.locale.zh-CN.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: badlogic.pi +PackageVersion: 0.74.0 +PackageLocale: zh-CN +ShortDescription: 具倇读取、Bash、猖蟑、写入工具的 AI 猖皋助手 +Description: |- + Pi 是䞀欟蜻量型终端猖码工具集。无需倍刻并修改 Pi 的内郚代码就胜让 Pi 适配䜠的工䜜流而非反过来让䜠迁就 Pi。䜠可以通过 TypeScript 扩展、技胜暡块、提瀺词暡板和䞻题对 Pi 进行拓展。把䜠匀发的扩展、技胜暡块、提瀺词暡板和䞻题打包䞺 Pi 包即可通过 npm 或 git 分享给其他甚户。 + Pi 默讀搭蜜的功胜十分区倧䜆未内眮子代理、计划暡匏这类功胜。䜠可以让 Pi 生成䜠需芁的功胜或是安装适配䜠工䜜流的第䞉方 Pi 包即可。 + Pi 支持四种运行暡匏亀互暡匏、打印/JSON 蟓出暡匏、甚于流皋集成的 RPC 暡匏以及可嵌入䜠自有应甚的 SDK 暡匏。实际的 SDK 集成案䟋可参考 openclaw/openclaw 项目。 +Tags: +- 人工智胜 +- 代码 +- 倧语蚀暡型 +- 智胜䜓 +- 猖皋 +- 聊倩机噚人 +- 自䞻智胜 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.yaml b/manifests/b/badlogic/pi/0.74.0/badlogic.pi.yaml similarity index 77% rename from manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.yaml rename to manifests/b/badlogic/pi/0.74.0/badlogic.pi.yaml index 055db6920658..66864cc70f22 100644 --- a/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.yaml +++ b/manifests/b/badlogic/pi/0.74.0/badlogic.pi.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.5.0 +PackageIdentifier: badlogic.pi +PackageVersion: 0.74.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/b/bitwig/bitwig/6.0.6/bitwig.bitwig.installer.yaml b/manifests/b/bitwig/bitwig/6.0.6/bitwig.bitwig.installer.yaml new file mode 100644 index 000000000000..3a712b805737 --- /dev/null +++ b/manifests/b/bitwig/bitwig/6.0.6/bitwig.bitwig.installer.yaml @@ -0,0 +1,28 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: bitwig.bitwig +PackageVersion: 6.0.6 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: uninstallPrevious +FileExtensions: +- bwproject +- bwtemplate +ProductCode: '{8AFA291D-C7A6-4461-9A6A-A5B38120BAF0}' +Installers: +- Architecture: x64 + InstallerUrl: https://www.bitwig.com/dl/Bitwig%20Studio/6.0.6/installer_windows/ + InstallerSha256: 8B44BF8BD420E3A1938166293DBCAE3C9752C88601C6407E9CC904A09528EB6B +- Architecture: arm64 + InstallerUrl: https://www.bitwig.com/dl/Bitwig%20Studio/6.0.6/installer_windowsarm/ + InstallerSha256: C33C4456A6BA142DFE6F6215D972F64BA0545C13D6410DF23E2F0CE515ED9815 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/bitwig/bitwig/6.0.6/bitwig.bitwig.locale.en-US.yaml b/manifests/b/bitwig/bitwig/6.0.6/bitwig.bitwig.locale.en-US.yaml new file mode 100644 index 000000000000..6585e026eb39 --- /dev/null +++ b/manifests/b/bitwig/bitwig/6.0.6/bitwig.bitwig.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: bitwig.bitwig +PackageVersion: 6.0.6 +PackageLocale: en-US +Publisher: Bitwig GmbH +PublisherUrl: https://www.bitwig.com/ +PublisherSupportUrl: https://www.bitwig.com/support/ +PrivacyUrl: https://www.bitwig.com/privacy_policy/ +Author: Bitwig GmbH +PackageName: Bitwig Studio +PackageUrl: https://www.bitwig.com/ +License: Proprietary +LicenseUrl: https://shop.bitwig.com/order/terms_conditions.php +Copyright: Copyright (c) 2025 Bitwig GmbH +CopyrightUrl: https://www.bitwig.com/copyright/ +ShortDescription: Modern music production and performance for Windows, macOS, and Linux. +Moniker: bitwig +Tags: +- daw +- midi +- music +- vst +- vsti +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/bitwig/bitwig/6.0.6/bitwig.bitwig.yaml b/manifests/b/bitwig/bitwig/6.0.6/bitwig.bitwig.yaml new file mode 100644 index 000000000000..3e821418b53b --- /dev/null +++ b/manifests/b/bitwig/bitwig/6.0.6/bitwig.bitwig.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: bitwig.bitwig +PackageVersion: 6.0.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.installer.yaml b/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.installer.yaml new file mode 100644 index 000000000000..0ee1a068714e --- /dev/null +++ b/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.installer.yaml @@ -0,0 +1,33 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.6.0.schema.json + +PackageIdentifier: brunoleocam.ZPL2PDF +PackageVersion: 3.1.2 +InstallerLocale: en-US +MinimumOSVersion: 10.0.0.0 +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- + SilentWithProgress: /SILENT /SUPPRESSMSGBOXES /NORESTART /SP- + Custom: /ALLUSERS +UpgradeBehavior: install +Commands: +- ZPL2PDF +FileExtensions: +- txt +- prn +- zpl +- imp +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/brunoleocam/ZPL2PDF/releases/download/v3.1.2/ZPL2PDF-Setup-3.1.2.exe + InstallerSha256: 5B362E073B4A0195F6FCDD99B26D31EF4A32A7D8C8FD86E534B8D8DD65180811 + ProductCode: '{{A7F8C3D2-9E1B-4F6A-8D2C-5E9A3B7C1F4D}_is1' +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.de-DE.yaml b/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.de-DE.yaml new file mode 100644 index 000000000000..542ecc9da55f --- /dev/null +++ b/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.de-DE.yaml @@ -0,0 +1,57 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json + +PackageIdentifier: brunoleocam.ZPL2PDF +PackageVersion: 3.1.2 +PackageLocale: de-DE +Publisher: Bruno Campos +PublisherUrl: https://github.com/brunoleocam +PublisherSupportUrl: https://github.com/brunoleocam/ZPL2PDF/issues +Author: Bruno Campos +PackageName: ZPL2PDF +PackageUrl: https://github.com/brunoleocam/ZPL2PDF +License: MIT +LicenseUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/LICENSE +Copyright: Copyright (c) 2026 Bruno Campos +CopyrightUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/LICENSE +ShortDescription: Konvertieren Sie ZPL-Dateien zu PDF mit Labelary API, TCP-Server-Modus und MehrsprachunterstÃŒtzung +Description: |- + ZPL2PDF ist ein leistungsstarkes, plattformÃŒbergreifendes Kommandozeilen-Tool, das ZPL-Dateien (Zebra Programming Language) in hochwertige PDF-Dokumente konvertiert. + + Hauptmerkmale: + • Mehrere Rendering-Engines - Offline (BinaryKits), Labelary API (hohe Wiedergabetreue) und Auto (Fallback) + • TCP-Server-Modus - Virtueller Zebra-Drucker auf TCP-Port fÃŒr Anwendungsintegration + • UnterstÃŒtzung fÃŒr benutzerdefinierte Schriftarten - Laden Sie TrueType/OpenType-Schriftarten fÃŒr benutzerdefinierte Etiketten + • Drei Betriebsmodi - Konvertierung, Daemon (automatische Überwachung) und TCP-Server (virtueller Drucker) + • MehrsprachunterstÃŒtzung - 8 Sprachen (EN, PT, ES, FR, DE, IT, JA, ZH) + • Intelligente Dimensionsbehandlung - Automatische Extraktion aus ZPL-Befehlen (^PW, ^LL) + • PlattformÃŒbergreifend - Native UnterstÃŒtzung fÃŒr Windows, Linux und macOS + • Saubere Architektur - Gebaut mit SOLID-Prinzipien und 90%+ Testabdeckung + • Hohe Leistung - Asynchrone Verarbeitung mit Wiederholungsmechanismen + • Docker-UnterstÃŒtzung - Optimiertes Alpine Linux Image (470MB) + + Perfekt fÃŒr: + • EtikettendruckablÀufe + • Automatisierte Dokumentengenerierung + • Unternehmens-Etikettverwaltungssysteme + • ERP-Integration + • Virtuelle Druckerintegration + • Stapelverarbeitung +Tags: +- cli +- command-line +- konverter +- cross-platform +- daemon +- etikett +- drucken +- label +- pdf +- zebra +- zpl +Documentations: +- DocumentLabel: Dokumentation + DocumentUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/docs/i18n/README.de-DE.md +ManifestType: locale +ManifestVersion: 1.6.0 + diff --git a/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.en-US.yaml b/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.en-US.yaml new file mode 100644 index 000000000000..811f7b31ea25 --- /dev/null +++ b/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.en-US.yaml @@ -0,0 +1,96 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.6.0.schema.json + +PackageIdentifier: brunoleocam.ZPL2PDF +PackageVersion: 3.1.2 +PackageLocale: en-US +Publisher: Bruno Campos +PublisherUrl: https://github.com/brunoleocam +PublisherSupportUrl: https://github.com/brunoleocam/ZPL2PDF/issues +Author: Bruno Campos +PackageName: ZPL2PDF +PackageUrl: https://github.com/brunoleocam/ZPL2PDF +License: MIT +LicenseUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/LICENSE +Copyright: Copyright (c) 2026 Bruno Campos +CopyrightUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/LICENSE +ShortDescription: Convert ZPL files to PDF with Labelary API, TCP server mode, and multi-language support +Description: |- + ZPL2PDF is a powerful, cross-platform command-line tool that converts ZPL (Zebra Programming Language) files to high-quality PDF documents. + + Key Features: + • Multiple Rendering Engines - Offline (BinaryKits), Labelary API (high-fidelity), and Auto (fallback) + • TCP Server Mode - Virtual Zebra printer on TCP port for application integration + • Custom Font Support - Load TrueType/OpenType fonts for branded labels + • Three Operation Modes - Conversion, daemon (auto-monitor), and TCP server (virtual printer) + • Multi-language Support - 8 languages (EN, PT, ES, FR, DE, IT, JA, ZH) + • Intelligent Dimension Handling - Automatic extraction from ZPL commands (^PW, ^LL) + • Cross-Platform - Native support for Windows, Linux, and macOS + • Clean Architecture - Built with SOLID principles and 90%+ test coverage + • High Performance - Async processing with retry mechanisms + • Docker Support - Optimized Alpine Linux image (470MB) + + Perfect for: + • Label printing workflows + • Automated document generation + • Enterprise label management systems + • ERP integration + • Virtual printer integration + • Batch processing +Moniker: zpl2pdf +Tags: +- cli +- command-line +- converter +- cross-platform +- daemon +- label +- pdf +- printing +- zebra +- zpl +ReleaseNotes: |- + What's New in v3.1.2: + + 🎉 Major Release - Labelary Integration & TCP Server + + 🎚 Labelary API Integration: + • High-fidelity ZPL rendering with exact Zebra printer emulation + • Vector PDF output (smaller, higher quality files) + • Automatic batching for 50+ labels with PDF merging + • Smart fallback: tries Labelary first, falls back to BinaryKits if offline + + 🖚 TCP Server Mode (Virtual Printer): + • Acts as a TCP printer on configurable port (default: 9101) + • Perfect for integration with applications that send ZPL directly to printers + • Runs independently from daemon mode (both can run simultaneously) + • Background operation with foreground debug mode + + 🔀 Custom Font Support: + • Load TrueType/OpenType fonts from directory or map specific font IDs + • Support for multiple font mappings + • Perfect for branded label designs + + 📁 Extended File Support: + • Added support for .zpl and .imp file extensions + • All extensions (.txt, .prn, .zpl, .imp) now supported + + 📝 Custom Output File Naming: + • Control output PDF filenames directly from ZPL code + • Use ^FX FileName: MyLabel in ZPL for custom naming + + For detailed changes, see: https://github.com/brunoleocam/ZPL2PDF/blob/main/CHANGELOG.md +ReleaseNotesUrl: https://github.com/brunoleocam/ZPL2PDF/releases/tag/v3.1.2 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/docs/README.md +- DocumentLabel: User Guide + DocumentUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/README.md +- DocumentLabel: Contributing Guide + DocumentUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/CONTRIBUTING.md +- DocumentLabel: Docker Guide + DocumentUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/docs/guides/DOCKER_GUIDE.md +- DocumentLabel: Language Configuration + DocumentUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/docs/guides/LANGUAGE_CONFIGURATION.md +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.es-ES.yaml b/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.es-ES.yaml new file mode 100644 index 000000000000..05cc9655c946 --- /dev/null +++ b/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.es-ES.yaml @@ -0,0 +1,57 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json + +PackageIdentifier: brunoleocam.ZPL2PDF +PackageVersion: 3.1.2 +PackageLocale: es-ES +Publisher: Bruno Campos +PublisherUrl: https://github.com/brunoleocam +PublisherSupportUrl: https://github.com/brunoleocam/ZPL2PDF/issues +Author: Bruno Campos +PackageName: ZPL2PDF +PackageUrl: https://github.com/brunoleocam/ZPL2PDF +License: MIT +LicenseUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/LICENSE +Copyright: Copyright (c) 2026 Bruno Campos +CopyrightUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/LICENSE +ShortDescription: Convierte archivos ZPL a PDF con API Labelary, modo servidor TCP y soporte multi-idioma +Description: |- + ZPL2PDF es una herramienta de línea de comandos potente y multiplataforma que convierte archivos ZPL (Zebra Programming Language) en documentos PDF de alta calidad. + + Características Principales: + • Múltiples Motores de Renderizado - Offline (BinaryKits), API Labelary (alta fidelidad) y Auto (fallback) + • Modo Servidor TCP - Impresora Zebra virtual en puerto TCP para integración con aplicaciones + • Soporte de Fuentes Personalizadas - Cargue fuentes TrueType/OpenType para etiquetas personalizadas + • Tres Modos de Operación - Conversión, daemon (monitoreo automático) y servidor TCP (impresora virtual) + • Soporte Multi-idioma - 8 idiomas (EN, PT, ES, FR, DE, IT, JA, ZH) + • Manejo Inteligente de Dimensiones - Extracción automática de comandos ZPL (^PW, ^LL) + • Multiplataforma - Soporte nativo para Windows, Linux y macOS + • Arquitectura Limpia - Construido con principios SOLID y 90%+ de cobertura de pruebas + • Alto Rendimiento - Procesamiento asíncrono con mecanismos de reintento + • Soporte Docker - Imagen optimizada Alpine Linux (470MB) + + Perfecto para: + • Flujos de trabajo de impresión de etiquetas + • Generación automatizada de documentos + • Sistemas empresariales de gestión de etiquetas + • Integración con ERP + • Integración de impresora virtual + • Procesamiento por lotes +Tags: +- cli +- command-line +- convertidor +- cross-platform +- daemon +- etiqueta +- impresion +- label +- pdf +- zebra +- zpl +Documentations: +- DocumentLabel: Documentación + DocumentUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/docs/i18n/README.es-ES.md +ManifestType: locale +ManifestVersion: 1.6.0 + diff --git a/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.fr-FR.yaml b/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.fr-FR.yaml new file mode 100644 index 000000000000..4f77f32ae461 --- /dev/null +++ b/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.fr-FR.yaml @@ -0,0 +1,57 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json + +PackageIdentifier: brunoleocam.ZPL2PDF +PackageVersion: 3.1.2 +PackageLocale: fr-FR +Publisher: Bruno Campos +PublisherUrl: https://github.com/brunoleocam +PublisherSupportUrl: https://github.com/brunoleocam/ZPL2PDF/issues +Author: Bruno Campos +PackageName: ZPL2PDF +PackageUrl: https://github.com/brunoleocam/ZPL2PDF +License: MIT +LicenseUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/LICENSE +Copyright: Copyright (c) 2026 Bruno Campos +CopyrightUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/LICENSE +ShortDescription: Convertissez les fichiers ZPL en PDF avec API Labelary, mode serveur TCP et support multi-langue +Description: |- + ZPL2PDF est un outil en ligne de commande puissant et multiplateforme qui convertit les fichiers ZPL (Zebra Programming Language) en documents PDF de haute qualité. + + Caractéristiques Principales: + • Moteurs de Rendu Multiples - Hors ligne (BinaryKits), API Labelary (haute fidélité) et Auto (fallback) + • Mode Serveur TCP - Imprimante Zebra virtuelle sur port TCP pour intégration avec applications + • Support de Polices Personnalisées - Chargez des polices TrueType/OpenType pour étiquettes personnalisées + • Trois Modes d'Opération - Conversion, daemon (surveillance automatique) et serveur TCP (imprimante virtuelle) + • Support Multi-langue - 8 langues (EN, PT, ES, FR, DE, IT, JA, ZH) + • Gestion Intelligente des Dimensions - Extraction automatique des commandes ZPL (^PW, ^LL) + • Multiplateforme - Support natif pour Windows, Linux et macOS + • Architecture Propre - Construit avec les principes SOLID et 90%+ de couverture de tests + • Haute Performance - Traitement asynchrone avec mécanismes de réessai + • Support Docker - Image Alpine Linux optimisée (470MB) + + Parfait pour: + • Flux de travail d'impression d'étiquettes + • Génération automatisée de documents + • SystÚmes de gestion d'étiquettes d'entreprise + • Intégration ERP + • Intégration d'imprimante virtuelle + • Traitement par lots +Tags: +- cli +- command-line +- convertisseur +- cross-platform +- daemon +- etiquette +- impression +- label +- pdf +- zebra +- zpl +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/docs/i18n/README.fr-FR.md +ManifestType: locale +ManifestVersion: 1.6.0 + diff --git a/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.it-IT.yaml b/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.it-IT.yaml new file mode 100644 index 000000000000..a5bb9e5e6114 --- /dev/null +++ b/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.it-IT.yaml @@ -0,0 +1,57 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json + +PackageIdentifier: brunoleocam.ZPL2PDF +PackageVersion: 3.1.2 +PackageLocale: it-IT +Publisher: Bruno Campos +PublisherUrl: https://github.com/brunoleocam +PublisherSupportUrl: https://github.com/brunoleocam/ZPL2PDF/issues +Author: Bruno Campos +PackageName: ZPL2PDF +PackageUrl: https://github.com/brunoleocam/ZPL2PDF +License: MIT +LicenseUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/LICENSE +Copyright: Copyright (c) 2026 Bruno Campos +CopyrightUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/LICENSE +ShortDescription: Converti file ZPL in PDF con API Labelary, modalità server TCP e supporto multi-lingua +Description: |- + ZPL2PDF Ú un potente strumento da riga di comando multipiattaforma che converte file ZPL (Zebra Programming Language) in documenti PDF di alta qualità. + + Caratteristiche Principali: + • Motori di Rendering Multipli - Offline (BinaryKits), API Labelary (alta fedeltà) e Auto (fallback) + • Modalità Server TCP - Stampante Zebra virtuale su porta TCP per integrazione con applicazioni + • Supporto Font Personalizzati - Carica font TrueType/OpenType per etichette personalizzate + • Tre Modalità di Funzionamento - Conversione, daemon (monitoraggio automatico) e server TCP (stampante virtuale) + • Supporto Multi-lingua - 8 lingue (EN, PT, ES, FR, DE, IT, JA, ZH) + • Gestione Intelligente delle Dimensioni - Estrazione automatica dai comandi ZPL (^PW, ^LL) + • Multipiattaforma - Supporto nativo per Windows, Linux e macOS + • Architettura Pulita - Costruito con principi SOLID e 90%+ copertura test + • Alte Prestazioni - Elaborazione asincrona con meccanismi di retry + • Supporto Docker - Immagine Alpine Linux ottimizzata (470MB) + + Perfetto per: + • Flussi di lavoro di stampa etichette + • Generazione automatizzata di documenti + • Sistemi aziendali di gestione etichette + • Integrazione ERP + • Integrazione stampante virtuale + • Elaborazione batch +Tags: +- cli +- command-line +- convertitore +- cross-platform +- daemon +- etichetta +- stampa +- label +- pdf +- zebra +- zpl +Documentations: +- DocumentLabel: Documentazione + DocumentUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/docs/i18n/README.it-IT.md +ManifestType: locale +ManifestVersion: 1.6.0 + diff --git a/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.ja-JP.yaml b/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.ja-JP.yaml new file mode 100644 index 000000000000..a74fc721c822 --- /dev/null +++ b/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.ja-JP.yaml @@ -0,0 +1,57 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json + +PackageIdentifier: brunoleocam.ZPL2PDF +PackageVersion: 3.1.2 +PackageLocale: ja-JP +Publisher: Bruno Campos +PublisherUrl: https://github.com/brunoleocam +PublisherSupportUrl: https://github.com/brunoleocam/ZPL2PDF/issues +Author: Bruno Campos +PackageName: ZPL2PDF +PackageUrl: https://github.com/brunoleocam/ZPL2PDF +License: MIT +LicenseUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/LICENSE +Copyright: Copyright (c) 2026 Bruno Campos +CopyrightUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/LICENSE +ShortDescription: ZPLファむルをPDFに倉換 - Labelary API、TCPサヌバヌモヌド、倚蚀語察応 +Description: |- + ZPL2PDFは、ZPLZebra Programming Languageファむルを高品質なPDFドキュメントに倉換する匷力なクロスプラットフォヌムコマンドラむンツヌルです。 + + 䞻な機胜: + • 耇数のレンダリング゚ンゞン - オフラむンBinaryKits、Labelary API高忠実床、自動フォヌルバック + • TCPサヌバヌモヌド - アプリケヌション統合甚のTCPポヌト䞊の仮想Zebraプリンタヌ + • カスタムフォントサポヌト - カスタムラベル甚のTrueType/OpenTypeフォントを読み蟌み + • 3぀の動䜜モヌド - 倉換、デヌモン自動監芖、TCPサヌバヌ仮想プリンタヌ + • 倚蚀語サポヌト - 8蚀語EN、PT、ES、FR、DE、IT、JA、ZH + • むンテリゞェントな寞法凊理 - ZPLコマンドからの自動抜出^PW、^LL + • クロスプラットフォヌム - Windows、Linux、macOSのネむティブサポヌト + • クリヌンアヌキテクチャ - SOLIDプリンシパルず90%以䞊のテストカバレッゞで構築 + • 高性胜 - リトラむメカニズムを備えた非同期凊理 + • Dockerサポヌト - 最適化されたAlpine Linuxむメヌゞ470MB + + 最適甚途: + • ラベル印刷ワヌクフロヌ + • 自動ドキュメント生成 + • ゚ンタヌプラむズラベル管理システム + • ERP統合 + • 仮想プリンタヌ統合 + • バッチ凊理 +Tags: +- cli +- command-line +- コンバヌタヌ +- cross-platform +- daemon +- ラベル +- 印刷 +- label +- pdf +- zebra +- zpl +Documentations: +- DocumentLabel: ドキュメント + DocumentUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/docs/i18n/README.ja-JP.md +ManifestType: locale +ManifestVersion: 1.6.0 + diff --git a/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.pt-BR.yaml b/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.pt-BR.yaml new file mode 100644 index 000000000000..1b50f5f04f6d --- /dev/null +++ b/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.pt-BR.yaml @@ -0,0 +1,56 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json + +PackageIdentifier: brunoleocam.ZPL2PDF +PackageVersion: 3.1.2 +PackageLocale: pt-BR +Publisher: Bruno Campos +PublisherUrl: https://github.com/brunoleocam +PublisherSupportUrl: https://github.com/brunoleocam/ZPL2PDF/issues +Author: Bruno Campos +PackageName: ZPL2PDF +PackageUrl: https://github.com/brunoleocam/ZPL2PDF +License: MIT +LicenseUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/LICENSE +Copyright: Copyright (c) 2026 Bruno Campos +CopyrightUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/LICENSE +ShortDescription: Converta arquivos ZPL para PDF com Labelary API, modo servidor TCP e suporte multi-idioma +Description: |- + ZPL2PDF é uma ferramenta de linha de comando poderosa e multiplataforma que converte arquivos ZPL (Zebra Programming Language) em documentos PDF de alta qualidade. + + Principais Recursos: + • Múltiplos Motores de Renderização - Offline (BinaryKits), Labelary API (alta fidelidade) e Auto (fallback) + • Modo Servidor TCP - Impressora Zebra virtual em porta TCP para integração com aplicações + • Suporte a Fontes Personalizadas - Carregue fontes TrueType/OpenType para etiquetas personalizadas + • Três Modos de Operação - Conversão, daemon (monitoramento automático) e servidor TCP (impressora virtual) + • Suporte Multi-idioma - 8 idiomas (EN, PT, ES, FR, DE, IT, JA, ZH) + • Tratamento Inteligente de Dimensões - Extração automática de comandos ZPL (^PW, ^LL) + • Multiplataforma - Suporte nativo para Windows, Linux e macOS + • Arquitetura Limpa - Construído com princípios SOLID e 90%+ de cobertura de testes + • Alto Desempenho - Processamento assíncrono com mecanismos de retry + • Suporte Docker - Imagem otimizada Alpine Linux (470MB) + + Perfeito para: + • Fluxos de trabalho de impressão de etiquetas + • Geração automatizada de documentos + • Sistemas de gerenciamento de etiquetas empresariais + • Integração com ERP + • Integração de impressora virtual + • Processamento em lote +Tags: +- cli +- command-line +- conversor +- cross-platform +- daemon +- etiqueta +- impressao +- label +- pdf +- zebra +- zpl +Documentations: +- DocumentLabel: Documentação + DocumentUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/docs/i18n/README.pt-BR.md +ManifestType: locale +ManifestVersion: 1.6.0 diff --git a/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.zh-CN.yaml b/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.zh-CN.yaml new file mode 100644 index 000000000000..548f67f27864 --- /dev/null +++ b/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.locale.zh-CN.yaml @@ -0,0 +1,57 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.6.0.schema.json + +PackageIdentifier: brunoleocam.ZPL2PDF +PackageVersion: 3.1.2 +PackageLocale: zh-CN +Publisher: Bruno Campos +PublisherUrl: https://github.com/brunoleocam +PublisherSupportUrl: https://github.com/brunoleocam/ZPL2PDF/issues +Author: Bruno Campos +PackageName: ZPL2PDF +PackageUrl: https://github.com/brunoleocam/ZPL2PDF +License: MIT +LicenseUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/LICENSE +Copyright: Copyright (c) 2026 Bruno Campos +CopyrightUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/LICENSE +ShortDescription: 将ZPL文件蜬换䞺PDF支持Labelary API、TCP服务噚暡匏和倚语蚀 +Description: |- + ZPL2PDF是䞀䞪功胜区倧的跚平台呜什行工具可将ZPLZebra猖皋语蚀文件蜬换䞺高莚量的PDF文档。 + + 䞻芁功胜: + • 倚种枲染匕擎 - 犻线BinaryKits、Labelary API高保真床和自劚回退 + • TCP服务噚暡匏 - TCP端口䞊的虚拟Zebra打印机甚于应甚皋序集成 + • 自定义字䜓支持 - 加蜜TrueType/OpenType字䜓甚于自定义标筟 + • 䞉种操䜜暡匏 - 蜬换、守技进皋自劚监控和TCP服务噚虚拟打印机 + • 倚语蚀支持 - 8种语蚀EN、PT、ES、FR、DE、IT、JA、ZH + • 智胜尺寞倄理 - 从ZPL呜什自劚提取^PW、^LL + • 跚平台 - 原生支持Windows、Linux和macOS + • æž…æ™°æž¶æž„ - 采甹SOLID原则构建测试芆盖率超过90% + • 高性胜 - 具有重试机制的匂步倄理 + • Docker支持 - 䌘化的Alpine Linux镜像470MB + + 完矎适甚于: + • 标筟打印工䜜流皋 + • 自劚文档生成 + • 䌁䞚标筟管理系统 + • ERP集成 + • 虚拟打印机集成 + • 批倄理 +Tags: +- cli +- command-line +- 蜬换噚 +- cross-platform +- daemon +- 标筟 +- 打印 +- label +- pdf +- zebra +- zpl +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://github.com/brunoleocam/ZPL2PDF/blob/main/docs/i18n/README.zh-CN.md +ManifestType: locale +ManifestVersion: 1.6.0 + diff --git a/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.yaml b/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.yaml new file mode 100644 index 000000000000..26aa6af28d86 --- /dev/null +++ b/manifests/b/brunoleocam/ZPL2PDF/3.1.2/brunoleocam.ZPL2PDF.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.6.5.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.6.0.schema.json + +PackageIdentifier: brunoleocam.ZPL2PDF +PackageVersion: 3.1.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.installer.yaml b/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.installer.yaml new file mode 100644 index 000000000000..c8a9c8689cc8 --- /dev/null +++ b/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.installer.yaml @@ -0,0 +1,15 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: CCPGames.EVEOnline +PackageVersion: 1.14.1 +InstallerType: exe +Scope: user +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://launcher.ccpgames.com/eve-online/release/win32/x64/eve-online-latest+Setup.exe + InstallerSha256: FF6836D579250CB41E959DF6A4EEFAA87E75C021935AB54E0FCCAD6EA08A3D64 + ProductCode: "eve-online" +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.locale.en-US.yaml b/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.locale.en-US.yaml new file mode 100644 index 000000000000..1e9d45c599f1 --- /dev/null +++ b/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: CCPGames.EVEOnline +PackageVersion: "1.14.1" +PackageLocale: en-US +Publisher: "CCP ehf" +PackageName: "eve-online" +License: Proprietary +Copyright: Copyright © 2025 CCP Games +ShortDescription: EVE Online is a free MMORPG sci-fi strategy game where you can embark on your own unique space adventure. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.yaml b/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.yaml new file mode 100644 index 000000000000..ef8f6c6ef35e --- /dev/null +++ b/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: CCPGames.EVEOnline +PackageVersion: 1.14.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.installer.yaml b/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.installer.yaml index 5efde6a98040..03bd45a1f391 100644 --- a/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.installer.yaml +++ b/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.installer.yaml @@ -1,4 +1,4 @@ -# Created with WinGet Releaser using komac v2.15.0 +# Automatically updated by the winget bot at 2026/May/07 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Debba.Tabularis @@ -16,6 +16,6 @@ InstallationMetadata: Installers: - Architecture: x64 InstallerUrl: https://github.com/debba/tabularis/releases/download/v0.9.5/tabularis_0.9.5_x64-setup.exe - InstallerSha256: A456BE8DE6265F1281BA305FF999E8293F5C42E2E7F4E5F34D45DA8967AF800B + InstallerSha256: 99343B8FB489332F8A74D7E3B951F9C25F9EBC5151EFA5E151CA6B903115936B ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.locale.en-US.yaml b/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.locale.en-US.yaml index a9ac8b9343f3..53df8beee495 100644 --- a/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.locale.en-US.yaml +++ b/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with WinGet Releaser using komac v2.15.0 +# Automatically updated by the winget bot at 2026/May/07 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Debba.Tabularis diff --git a/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.yaml b/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.yaml index 5c5342aa5d84..d4921b8e2c67 100644 --- a/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.yaml +++ b/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.yaml @@ -1,4 +1,4 @@ -# Created with WinGet Releaser using komac v2.15.0 +# Automatically updated by the winget bot at 2026/May/07 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Debba.Tabularis diff --git a/manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.installer.yaml b/manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.installer.yaml deleted file mode 100644 index 543b36f1952a..000000000000 --- a/manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.installer.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Created with komac v2.15.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: DigiDNA.iMazing -PackageVersion: 3.5.0.0 -InstallerLocale: en-US -InstallerType: inno -Scope: machine -UpgradeBehavior: install -Commands: -- iMazing-CLI -Protocols: -- imz -FileExtensions: -- imazing -- imazingapp -ProductCode: iMazing_is1 -ReleaseDate: 2026-02-19 -AppsAndFeaturesEntries: -- ProductCode: iMazing_is1 -ElevationRequirement: elevatesSelf -InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\DigiDNA\iMazing' -Installers: -- Architecture: x86 - InstallerUrl: https://downloads.imazing.com/windows/iMazing/iMazing3forWindows.exe - InstallerSha256: F82FEAE64F5A9CBDF2F3550BCD3DD49D51E974D61F7E0831C8FC7B9412BCEEF7 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.locale.en-US.yaml b/manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.locale.en-US.yaml deleted file mode 100644 index f026a2ba2ab3..000000000000 --- a/manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.locale.en-US.yaml +++ /dev/null @@ -1,42 +0,0 @@ -# Created with komac v2.15.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: DigiDNA.iMazing -PackageVersion: 3.5.0.0 -PackageLocale: en-US -Publisher: DigiDNA -PublisherUrl: https://digidna.ch/ -PublisherSupportUrl: https://support.imazing.com/ -PrivacyUrl: https://imazing.com/privacy-policy -Author: DigiDNA SARL -PackageName: iMazing -PackageUrl: https://imazing.com/ -License: Proprietary -LicenseUrl: https://imazing.com/uploads/iMazing-EULA.pdf -Copyright: Copyright © DigiDNA SARL, 2008-2024. All rights reserved. -ShortDescription: Manage your iPhone. Your way. -Description: iMazing lets you transfer music, files, messages, apps and more from any iPhone, iPad, or iPod to a computer, Mac or PC. Manage and backup your iOS device simply without iTunes. (was DiskAid) -Tags: -- apple -- backup -- data -- file -- ios -- ipad -- iphone -- ipod -- mobile -- phone -- recover -- recovery -- restore -- smartphone -- transfer -PurchaseUrl: https://imazing.com/store -Documentations: -- DocumentLabel: FAQ - DocumentUrl: https://imazing.com/faq -- DocumentLabel: Guides - DocumentUrl: https://imazing.com/guides -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.locale.zh-CN.yaml b/manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.locale.zh-CN.yaml deleted file mode 100644 index 967c1ae12f81..000000000000 --- a/manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.locale.zh-CN.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Created with komac v2.15.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: DigiDNA.iMazing -PackageVersion: 3.5.0.0 -PackageLocale: zh-CN -Publisher: DigiDNA -PublisherUrl: https://digidna.ch/ -PublisherSupportUrl: https://support.imazing.com/ -PrivacyUrl: https://imazing.com/privacy-policy -Author: DigiDNA SARL -PackageName: iMazing -PackageUrl: https://imazing.com/zh -License: 䞓有蜯件 -LicenseUrl: https://imazing.com/uploads/iMazing-EULA.pdf -Copyright: Copyright © DigiDNA SARL, 2008-2024. All rights reserved. -ShortDescription: 以自己的方匏管理 iPhone -Description: iMazing 胜借将音乐、文件、消息和应甚等数据从任䜕 iPhone、iPad 或 iPod 䌠蟓到 Mac 或 PC 䞊。蜻束管理和倇仜悚的 iOS 讟倇无需䜿甚 iTunes。前身䞺 DiskAid -Tags: -- ios -- ipad -- iphone -- ipod -- 䌠蟓 -- 倇仜 -- 恢倍 -- 手机 -- 数据 -- 文件 -- 智胜手机 -- 苹果 -- 还原 -PurchaseUrl: https://imazing.com/zh/store -Documentations: -- DocumentLabel: 䜿甚指南 - DocumentUrl: https://imazing.com/guides -- DocumentLabel: 垞见问题 - DocumentUrl: https://imazing.com/zh/faq -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/d/DimitarRadenkov/Pointframe/5.7.2/DimitarRadenkov.Pointframe.installer.yaml b/manifests/d/DimitarRadenkov/Pointframe/5.7.2/DimitarRadenkov.Pointframe.installer.yaml new file mode 100644 index 000000000000..2c47f2fc62ec --- /dev/null +++ b/manifests/d/DimitarRadenkov/Pointframe/5.7.2/DimitarRadenkov.Pointframe.installer.yaml @@ -0,0 +1,28 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: DimitarRadenkov.Pointframe +PackageVersion: 5.7.2 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- + SilentWithProgress: /SILENT /SUPPRESSMSGBOXES /NORESTART /SP- +ProductCode: '{67DE561D-F02A-4E9F-AF4A-44D98A092D54}_is1' +ReleaseDate: 2026-05-07 +AppsAndFeaturesEntries: +- Publisher: Dimitris + ProductCode: '{67DE561D-F02A-4E9F-AF4A-44D98A092D54}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Pointframe' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/dimitar-radenkov/Pointframe/releases/download/v5.7.2/Pointframe-5.7.2-x64-Setup.exe + InstallerSha256: 29314AFB6B096826EACBA54BB4D8A30F3AA3CFB3192A71ACDD189AB1E3E5890D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DimitarRadenkov/Pointframe/5.7.2/DimitarRadenkov.Pointframe.locale.en-US.yaml b/manifests/d/DimitarRadenkov/Pointframe/5.7.2/DimitarRadenkov.Pointframe.locale.en-US.yaml new file mode 100644 index 000000000000..616986d371ac --- /dev/null +++ b/manifests/d/DimitarRadenkov/Pointframe/5.7.2/DimitarRadenkov.Pointframe.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: DimitarRadenkov.Pointframe +PackageVersion: 5.7.2 +PackageLocale: en-US +Publisher: Dimitar Radenkov +PublisherUrl: https://github.com/dimitar-radenkov +PublisherSupportUrl: https://github.com/dimitar-radenkov/Pointframe/issues +PackageName: Pointframe +PackageUrl: https://github.com/dimitar-radenkov/Pointframe +License: MIT +LicenseUrl: https://github.com/dimitar-radenkov/Pointframe/blob/HEAD/LICENSE +Copyright: Copyright (c) Dimitar Radenkov +ShortDescription: Open-source Windows screen capture and recording tool with OCR and annotation +Description: |- + Pointframe is a lightweight Windows screen capture and annotation tool. + Press Print Screen to draw a region, annotate with arrows, shapes, text, blur, + and numbered steps, then copy to clipboard, pin as a floating always-on-top window, + or record your screen to MP4 with optional microphone audio. Includes built-in OCR + to extract text from any screenshot. No subscription, no telemetry. +Moniker: pointframe +Tags: +- annotation +- ocr +- screen-capture +- screen-recorder +- screenshot +- windows +- wpf +ReleaseNotes: |- + What's Changed + - No changes + Full Changelog: v5.7.1...$TAG +ReleaseNotesUrl: https://github.com/dimitar-radenkov/Pointframe/releases/tag/v5.7.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DimitarRadenkov/Pointframe/5.7.2/DimitarRadenkov.Pointframe.yaml b/manifests/d/DimitarRadenkov/Pointframe/5.7.2/DimitarRadenkov.Pointframe.yaml new file mode 100644 index 000000000000..098eb148fb3d --- /dev/null +++ b/manifests/d/DimitarRadenkov/Pointframe/5.7.2/DimitarRadenkov.Pointframe.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: DimitarRadenkov.Pointframe +PackageVersion: 5.7.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.installer.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.installer.yaml new file mode 100644 index 000000000000..dd50100872e1 --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.installer.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: DuckDuckGo.DesktopBrowser.Preview +PackageVersion: 0.157.0.0 +Platform: +- Windows.Desktop +- Windows.Universal +MinimumOSVersion: 10.0.19041.0 +InstallerType: msix +Protocols: +- http +- https +FileExtensions: +- htm +- html +- pdf +PackageFamilyName: DuckDuckGo.DesktopBrowserPreview_ya2fgkz3nks94 +Capabilities: +- internetClient +- runFullTrust +Installers: +- Architecture: x86 + InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/preview/0.157.0.0/DuckDuckGo%20Preview_0.157.0.0.msixbundle + InstallerSha256: B674166FAA861879D3D155EE6FC1544B61401CE4BDB06DE842AC527DDAB417B6 + SignatureSha256: 0D223D15425C8C1AA55500844CA249E0052618F88E952683CE51F10FE9A5E162 +- Architecture: x64 + InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/preview/0.157.0.0/DuckDuckGo%20Preview_0.157.0.0.msixbundle + InstallerSha256: B674166FAA861879D3D155EE6FC1544B61401CE4BDB06DE842AC527DDAB417B6 + SignatureSha256: 0D223D15425C8C1AA55500844CA249E0052618F88E952683CE51F10FE9A5E162 +- Architecture: arm64 + InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/preview/0.157.0.0/DuckDuckGo%20Preview_0.157.0.0.msixbundle + InstallerSha256: B674166FAA861879D3D155EE6FC1544B61401CE4BDB06DE842AC527DDAB417B6 + SignatureSha256: 0D223D15425C8C1AA55500844CA249E0052618F88E952683CE51F10FE9A5E162 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.locale.en-US.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.locale.en-US.yaml new file mode 100644 index 000000000000..acb860030a1d --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: DuckDuckGo.DesktopBrowser.Preview +PackageVersion: 0.157.0.0 +PackageLocale: en-US +Publisher: DuckDuckGo +PublisherUrl: https://duckduckgo.com/ +PrivacyUrl: https://duckduckgo.com/privacy +Author: Duck Duck Go, Inc. +PackageName: DuckDuckGo Preview +PackageUrl: https://duckduckgo.com/windows-preview +License: Freeware +LicenseUrl: https://duckduckgo.com/terms +Copyright: © 2026 DuckDuckGo +CopyrightUrl: https://duckduckgo.com/terms +ShortDescription: Help Test and Improve New Features with DuckDuckGo Preview for Windows +Tags: +- browser +- chromium +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.locale.zh-CN.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.locale.zh-CN.yaml new file mode 100644 index 000000000000..09c7caa46c14 --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.locale.zh-CN.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: DuckDuckGo.DesktopBrowser.Preview +PackageVersion: 0.157.0.0 +PackageLocale: zh-CN +License: 免莹蜯件 +ShortDescription: 垮助测试和改进 DuckDuckGo Preview for Windows 的新功胜 +Tags: +- chromium +- 浏览噚 +- 眑页 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.yaml similarity index 71% rename from manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.yaml rename to manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.yaml index 04f52a2c3f59..6b906c3b3de9 100644 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.yaml +++ b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: PerfectWorld.PerfectWorldArena -PackageVersion: 1.0.26020511 +PackageIdentifier: DuckDuckGo.DesktopBrowser.Preview +PackageVersion: 0.157.0.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.installer.yaml b/manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.installer.yaml deleted file mode 100644 index 96e5705725b9..000000000000 --- a/manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.installer.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: EdrawSoft.EdrawMind.CN -PackageVersion: 13.2.1.1497 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -FileExtensions: -- emmx -ProductCode: '{B90063D2-500B-4097-96ED-74E349F8A6E5}_is1' -Installers: -- Architecture: x64 - InstallerUrl: https://cc-download.wondershare.cc/cbs_down/edrawmind_cn_13.2.1_full5375.exe - InstallerSha256: C6D64C46FBC8577B754655E114AE879433D3422650A2864B0497E0DE2D732932 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.locale.en-US.yaml b/manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.locale.en-US.yaml deleted file mode 100644 index 1170e370d063..000000000000 --- a/manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: EdrawSoft.EdrawMind.CN -PackageVersion: 13.2.1.1497 -PackageLocale: en-US -Publisher: EdrawSoft Co.,Ltd. -PublisherUrl: https://www.edrawsoft.cn/ -PublisherSupportUrl: https://www.edrawsoft.cn/help-center/ -PrivacyUrl: https://www.edrawsoft.cn/private-policy/ -Author: SHENZHEN EDRAW SOFTWARE CO., LTD. -PackageName: MindMaster -PackageUrl: https://www.edrawsoft.cn/mindmaster/ -License: Proprietary -LicenseUrl: https://www.edrawsoft.cn/edrawmax-term-services/ -Copyright: © 2026 SHENZHEN EDRAW SOFTWARE CO., LTD. All rights reserved -ShortDescription: Cloud-based cross-platform mind mapping software -Description: MindMaster, a cross-platform and versatile mind mapping software, is an effective solution to help you quickly become a competent mind mapping designer! It provides abundant intelligent layouts, various presentation modes, exquisite design elements and preset theme styles, making it a veritable productivity tool for users. Since its launch, it has been well received by users and is widely used in problem solving, time management, business strategy and project management. -Tags: -- mind-map -- mind-mapping -- mindmap -ReleaseNotesUrl: https://www.edrawsoft.cn/download/mindmaster/versioninfo/ -PurchaseUrl: https://www.edrawsoft.cn/order/mindmaster_buy.html -Documentations: -- DocumentLabel: Manual - DocumentUrl: https://www.edrawsoft.cn/help-center/mindmaster-user-manual-cn.pdf -- DocumentLabel: Tutorial - DocumentUrl: https://www.edrawsoft.cn/mindmaster/tutorial/ -- DocumentLabel: Video Tutorial - DocumentUrl: https://mp.weixin.qq.com/s/IANQyVNlXWik-Zrckfy4bA -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.locale.zh-CN.yaml b/manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.locale.zh-CN.yaml deleted file mode 100644 index 2cc4e5e71079..000000000000 --- a/manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.locale.zh-CN.yaml +++ /dev/null @@ -1,40 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: EdrawSoft.EdrawMind.CN -PackageVersion: 13.2.1.1497 -PackageLocale: zh-CN -Publisher: EdrawSoft Co.,Ltd. -PublisherUrl: https://www.edrawsoft.cn/ -PublisherSupportUrl: https://www.edrawsoft.cn/help-center/ -PrivacyUrl: https://www.edrawsoft.cn/private-policy/ -Author: 深圳垂亿囟蜯件有限公叞 -PackageName: MindMaster -PackageUrl: https://www.edrawsoft.cn/mindmaster/ -License: 䞓有蜯件 -LicenseUrl: https://www.edrawsoft.cn/edrawmax-term-services/ -Copyright: © 2026 深圳垂亿囟蜯件有限公叞 版权所有 -ShortDescription: 基于云的跚端思绎富囟蜯件 -Description: 亿囟脑囟 MindMaster 是䞀欟跚平台、倚功胜的思绎富囟蜯件。是垮助悚快速成䞺思绎富囟讟计胜手的有效解决方案蜯件提䟛了䞰富的智胜垃局、倚样性的展瀺暡匏、结合粟矎的讟计元玠和预眮的䞻题样匏努力垮甚户打造䞀欟真正的效率工具。自掚出以来深受广倧甚户的欢迎被广泛应甚于解决问题时闎管理䞚务战略和项目管理等领域䞭。 -Tags: -- 亿囟脑囟 -- 思绎富囟 -- 脑囟 -ReleaseNotes: |- - 党新脑囟 AI 工䜜台䞊线 - 蟓入䞀句话自劚生成思绎富囟、完敎 PPT 或项目看板。配合銖页灵感提瀺词零孊习成本匀箱即甚。 - 支持 AI 䞀键看板生成 - 䞀句话描述项目目标自劚识别阶段、任务及䌘先级从"手劚圕入"进化䞺"䞀键排期"极倧猩短建项时闎。 - 倚蜮对话深床理解意囟 - 支持䞊䞋文连续对话䞎联眑搜玢圚同䞀对话内完成生成、修改、切换富囟/PPT 等党流皋操䜜告别窗口切换䞀条对话搞定所有。 -ReleaseNotesUrl: https://www.edrawsoft.cn/download/mindmaster/versioninfo/ -PurchaseUrl: https://www.edrawsoft.cn/order/mindmaster_buy.html -Documentations: -- DocumentLabel: 甚户手册 - DocumentUrl: https://www.edrawsoft.cn/help-center/mindmaster-user-manual-cn.pdf -- DocumentLabel: 教皋 - DocumentUrl: https://www.edrawsoft.cn/mindmaster/tutorial/ -- DocumentLabel: 视频教皋 - DocumentUrl: https://mp.weixin.qq.com/s/IANQyVNlXWik-Zrckfy4bA -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/e/enzo1982/freac/1.1.7/enzo1982.freac.installer.yaml b/manifests/e/enzo1982/freac/1.1.7/enzo1982.freac.installer.yaml new file mode 100644 index 000000000000..422a38108a05 --- /dev/null +++ b/manifests/e/enzo1982/freac/1.1.7/enzo1982.freac.installer.yaml @@ -0,0 +1,42 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: enzo1982.freac +PackageVersion: 1.1.7 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: freac-1.1.7-x64\freac.exe + PortableCommandAlias: freac +- RelativeFilePath: freac-1.1.7-x64\freaccmd.exe + PortableCommandAlias: freaccmd +- RelativeFilePath: freac-1.1.7-x64\translator.exe + PortableCommandAlias: translator +- RelativeFilePath: freac-1.1.7-x64\codecs\cmdline\ffmpeg.exe + PortableCommandAlias: ffmpeg +- RelativeFilePath: freac-1.1.7-x64\codecs\cmdline\mpcdec.exe + PortableCommandAlias: mpcdec +- RelativeFilePath: freac-1.1.7-x64\codecs\cmdline\mpcenc.exe + PortableCommandAlias: mpcenc +- RelativeFilePath: freac-1.1.7-x64\codecs\cmdline\ofr.exe + PortableCommandAlias: ofr +- RelativeFilePath: freac-1.1.7-x64\codecs\cmdline\takc.exe + PortableCommandAlias: takc +- RelativeFilePath: freac-1.1.7-x64\codecs\cmdline\wavpack.exe + PortableCommandAlias: wavpack +- RelativeFilePath: freac-1.1.7-x64\codecs\cmdline\wvunpack.exe + PortableCommandAlias: wvunpack +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/enzo1982/freac/releases/download/v1.1.7/freac-1.1.7-windows-x64.zip + InstallerSha256: EF45665AAE6C1C0EB4C0ECD8ECC6BED24F02F3CDDF6CFD72D8E5C9BC858BF110 +- Architecture: arm64 + InstallerUrl: https://github.com/enzo1982/freac/releases/download/v1.1.7/freac-1.1.7-windows-arm64.zip + InstallerSha256: 6676071B504E904D7D86A0A09AED9E2BE79B09E7A6CA8C4C8BBC3CBA3C7E8154 +- Architecture: x86 + InstallerUrl: https://github.com/enzo1982/freac/releases/download/v1.1.7/freac-1.1.7-windows-i686.zip + InstallerSha256: A4AB14999DFFE88B5EC6330F8E6444A3A12EB10EC0373759514BA89AB4BCD3FD +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2023-03-05 diff --git a/manifests/e/enzo1982/freac/1.1.7/enzo1982.freac.locale.en-US.yaml b/manifests/e/enzo1982/freac/1.1.7/enzo1982.freac.locale.en-US.yaml new file mode 100644 index 000000000000..7d85417a1dd7 --- /dev/null +++ b/manifests/e/enzo1982/freac/1.1.7/enzo1982.freac.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: enzo1982.freac +PackageVersion: 1.1.7 +PackageLocale: en-US +Publisher: Robert Kausch / freeac.org +PublisherUrl: https://github.com/enzo1982 +PublisherSupportUrl: https://github.com/enzo1982/freac/issues +PackageName: fre:ac +PackageUrl: https://github.com/enzo1982/freac +License: GPL-2.0 +ShortDescription: fre:ac is a free audio converter and CD ripper with support for various popular formats and encoders. It converts freely between MP3, M4A/AAC, FLAC, WMA, Opus, Ogg Vorbis, Speex, Monkey's Audio (APE), WavPack, WAV and other formats. +Tags: +- aac +- alac +- audio +- cd-ripper +- converter +- flac +- mp3 +- opus +- speex +ReleaseNotesUrl: https://github.com/enzo1982/freac/releases/tag/v1.1.7 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.yaml b/manifests/e/enzo1982/freac/1.1.7/enzo1982.freac.yaml similarity index 62% rename from manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.yaml rename to manifests/e/enzo1982/freac/1.1.7/enzo1982.freac.yaml index ca681f1daada..1b6b276fad52 100644 --- a/manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.yaml +++ b/manifests/e/enzo1982/freac/1.1.7/enzo1982.freac.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.15.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: DigiDNA.iMazing -PackageVersion: 3.5.0.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: enzo1982.freac +PackageVersion: 1.1.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/f/FlightDeck/FlightDeck/1.3.0/FlightDeck.FlightDeck.locale.en-US.yaml b/manifests/f/FlightDeck/FlightDeck/1.3.0/FlightDeck.FlightDeck.locale.en-US.yaml index 817a13251191..7f3e08041fe6 100644 --- a/manifests/f/FlightDeck/FlightDeck/1.3.0/FlightDeck.FlightDeck.locale.en-US.yaml +++ b/manifests/f/FlightDeck/FlightDeck/1.3.0/FlightDeck.FlightDeck.locale.en-US.yaml @@ -13,10 +13,11 @@ PackageUrl: https://github.com/kpoineal/FlightDeck License: Apache-2.0 LicenseUrl: https://github.com/kpoineal/FlightDeck/blob/main/LICENSE ShortDescription: Flight Deck is a desktop dashboard that pulls together the most important work signals (email, meetings, chats, docs) and shows what actually needs attention. -Description: Flight Deck is a desktop dashboard that pulls together the most important work signals (email, meetings, chats, docs) and shows what actually needs attention. It highlights whats urgent, what to keep an eye on, and nudges you with notificationsno automation, just better awareness and fewer things slipping through the cracks. +Description: Flight Deck is a desktop dashboard that pulls together the most important work signals (email, meetings, chats, docs) and shows what actually needs attention. It highlights what's urgent, what to keep an eye on, and nudges you with notificationsno automation, just better awareness and fewer things slipping through the cracks. Moniker: FlightDeck Tags: -- workiq, copilot +- workiq +- copilot ReleaseNotesUrl: https://github.com/kpoineal/FlightDeck/releases/tag/v1.3.0 ManifestType: defaultLocale ManifestVersion: 1.12.0 diff --git a/manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.installer.yaml b/manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.installer.yaml similarity index 53% rename from manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.installer.yaml rename to manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.installer.yaml index 074e4fd205d4..d4486c81bfd4 100644 --- a/manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.installer.yaml +++ b/manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.installer.yaml @@ -2,19 +2,19 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: FlorianHeidenreich.Mp3tag -PackageVersion: "3.34" +PackageVersion: 3.34.1 InstallerType: nullsoft Scope: machine UpgradeBehavior: install ProductCode: Mp3tag -ReleaseDate: 2026-04-10 +ReleaseDate: 2026-05-07 ElevationRequirement: elevationRequired Installers: - Architecture: x86 - InstallerUrl: https://download.mp3tag.de/mp3tag-v3.34-setup.exe - InstallerSha256: C5BA0ED469B9FC6755F9A49FC0BD62E699F14C6DC76B67094935178C6F23AA05 + InstallerUrl: https://download.mp3tag.de/mp3tag-v3.34.1-setup.exe + InstallerSha256: 0F77D6DDC07207171B0A246A1BD370706BACB33B78EBDD567CE5E0025140924E - Architecture: x64 - InstallerUrl: https://download.mp3tag.de/mp3tag-v3.34-x64-setup.exe - InstallerSha256: BCB898D0A1FD9A87503C8D6D04083DC350D6DE51E472A78E605E0E80BA9189BC + InstallerUrl: https://download.mp3tag.de/mp3tag-v3.34.1-x64-setup.exe + InstallerSha256: 8C01E57DCF5073C22D369EF381473B592BACCA39DB8EE9CEE32CEAA8A134522C ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.locale.en-US.yaml b/manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.locale.en-US.yaml new file mode 100644 index 000000000000..34f59d2c4249 --- /dev/null +++ b/manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: FlorianHeidenreich.Mp3tag +PackageVersion: 3.34.1 +PackageLocale: en-US +Publisher: Florian Heidenreich +PublisherUrl: https://www.mp3tag.de/en +PublisherSupportUrl: https://www.mp3tag.de/en/support.html +PrivacyUrl: https://www.mp3tag.de/en/privacy.html +Author: Florian Heidenreich +PackageName: Mp3tag +PackageUrl: https://www.mp3tag.de/en/ +License: Freeware +Copyright: © 1999—2026 Florian Heidenreich. All rights reserved. +ShortDescription: The universal tag editor and more... +Description: |- + Mp3tag is a powerful and easy-to-use tool to edit metadata of audio files. + It supports batch tag-editing of ID3v1, ID3v2.3, ID3v2.4, iTunes MP4, WMA, Vorbis Comments and APE Tags for multiple files at once covering a variety of audio formats. + Furthermore, it supports online database lookups from, e.g., Discogs, MusicBrainz or freedb, allowing you to automatically gather proper tags and download cover art for your music library. + You can rename files based on the tag information, replace characters or words in tags and filenames, import/export tag information, create playlists and more. +Moniker: mp3tag +Tags: +- audio +- id3 +- mp3 +- music +- tag +ReleaseNotes: |- + FIX: large integer metadata values were truncated to the preferred storage width when writing MP4 atoms like `ITUNESCATALOGID`. (#71185) + FIX: minor performance regression in the action groups dialog that could slow down loading or adding large numbers of action groups. (#71129) + FIX: using 'Convert > Tag - Tag' changed the last used Quick Action to 'Format value'. (#71086) + FIX: configuring or performing an action via a custom toolbar button also changed the last used Quick Action to this action type. + LNG: updated French, Hungarian, and Traditional Chinese translations. +ReleaseNotesUrl: https://www.mp3tag.de/en/changelog.html +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.mp3tag.de/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.locale.zh-CN.yaml b/manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.locale.zh-CN.yaml similarity index 98% rename from manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.locale.zh-CN.yaml rename to manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.locale.zh-CN.yaml index 223d79291683..e0db25c11f87 100644 --- a/manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.locale.zh-CN.yaml +++ b/manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: FlorianHeidenreich.Mp3tag -PackageVersion: "3.34" +PackageVersion: 3.34.1 PackageLocale: zh-CN Publisher: Florian Heidenreich PublisherUrl: https://www.mp3tag.de/en diff --git a/manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.yaml b/manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.yaml similarity index 91% rename from manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.yaml rename to manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.yaml index 744d377df03a..01e897f3d972 100644 --- a/manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.yaml +++ b/manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: FlorianHeidenreich.Mp3tag -PackageVersion: "3.34" +PackageVersion: 3.34.1 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.locale.en-US.yaml b/manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.locale.en-US.yaml deleted file mode 100644 index ff7d5de2ab08..000000000000 --- a/manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.locale.en-US.yaml +++ /dev/null @@ -1,58 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: FlorianHeidenreich.Mp3tag -PackageVersion: "3.34" -PackageLocale: en-US -Publisher: Florian Heidenreich -PublisherUrl: https://www.mp3tag.de/en -PublisherSupportUrl: https://www.mp3tag.de/en/support.html -PrivacyUrl: https://www.mp3tag.de/en/privacy.html -Author: Florian Heidenreich -PackageName: Mp3tag -PackageUrl: https://www.mp3tag.de/en/ -License: Freeware -Copyright: © 1999—2026 Florian Heidenreich. All rights reserved. -ShortDescription: The universal tag editor and more... -Description: |- - Mp3tag is a powerful and easy-to-use tool to edit metadata of audio files. - It supports batch tag-editing of ID3v1, ID3v2.3, ID3v2.4, iTunes MP4, WMA, Vorbis Comments and APE Tags for multiple files at once covering a variety of audio formats. - Furthermore, it supports online database lookups from, e.g., Discogs, MusicBrainz or freedb, allowing you to automatically gather proper tags and download cover art for your music library. - You can rename files based on the tag information, replace characters or words in tags and filenames, import/export tag information, create playlists and more. -Moniker: mp3tag -Tags: -- audio -- id3 -- mp3 -- music -- tag -ReleaseNotes: |- - NEW: added option to write UTF-8 BOM for m3u8 playlists at 'Options > Playlist'. - NEW: added support for a second Custom Toolbar. (#70953) - CHG: moved 'View > Toolbar' and 'View > Customize toolbar...' to a separate 'Toolbars' submenu. - CHG: moved 'View > Customize columns...' to a separate 'Columns' submenu that also allows for direct toggling of configured columns. - CHG: added support for drag and drop and common keyboard shortcuts to toolbar customization. - CHG: prevented options dialog from exceeding work area size when UI scaling is enabled. (#70902) - NEW: added support for horizontal scrolling via Shift + mouse wheel where applicable. (#70731) - NEW: added support for toolbar customization. - NEW: added support for switching toolbar icons between default and original icon sets (see 'Options > Appearance'). - CHG: added higher resolution versions of original icons to allow for crisp quality when toolbar scaling or UI scaling is active. - FIX: regression where unknown MP4 atoms were removed on rewrites if configuration option 'Options > Tags > Advanced > Reuse unmodified MP4 atoms' was not enabled. (#70725, #70928) - NEW: added support for scaling user interface up to 200% (see 'Options > Appearance'). - CHG: modernised toolbar icons, menu icons, and other icons, added dedicated rendering of dark-mode icons, and improved quality of scaled toolbar icons. - FIX: possible underflow at number of selected action groups in action groups dialog (mostly under Wine). - FIX: file icons in first column of File List overlapped on the right column divider in dark mode on some systems. (#70775) - NEW: added support for creating multiple field values using the multiple fields delimiter `\\` at action Guess Values. (#70759) - FIX: regression where MP4 data atoms of type UTF-16 were truncated to first character when read (since v3.34-beta.3). - FIX: regression where validation for MP4 data atoms of type UTF-8 was too strict and did not allow trailing NULLs anymore (since v3.31b). (#70746) - NEW: added support for MP4 H.266 and VP9 video codecs. - CHG: added a possible workaround for the shell extension not opening the main window in the foreground that happens with certain file managers. (#70745) - CHG: added workaround for detection of available free space that failed with an error message for some file servers. - CHG: added a keyboard access key to the preview buttons on various dialogs. (#65355, #70630) - LNG: updated Brazilian Portuguese, Catalan, Corsican, Italian, Japanese, Simplified Chinese, Slovak, and Spanish translations. -ReleaseNotesUrl: https://www.mp3tag.de/en/changelog.html -Documentations: -- DocumentLabel: Documentation - DocumentUrl: https://docs.mp3tag.de/ -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/f/fjsoft/MyPhoneExplorer/2.3/fjsoft.MyPhoneExplorer.locale.en-US.yaml b/manifests/f/fjsoft/MyPhoneExplorer/2.3/fjsoft.MyPhoneExplorer.locale.en-US.yaml index a345a81bbc64..4ebce28dffff 100644 --- a/manifests/f/fjsoft/MyPhoneExplorer/2.3/fjsoft.MyPhoneExplorer.locale.en-US.yaml +++ b/manifests/f/fjsoft/MyPhoneExplorer/2.3/fjsoft.MyPhoneExplorer.locale.en-US.yaml @@ -15,7 +15,7 @@ License: Proprietary LicenseUrl: https://www.fjsoft.at/myphoneexplorer/eula_myphoneexplorer.html Copyright: © 2025 by F.J. Wechselberger ShortDescription: Simply explore your Android phone! -Description: Connect your phone via WiFi, cable or bluetooth and you'll be surprised how easy and efficient it will be to manage your phone with our software. Since it's first release MyPhoneExplorer evolved into the most popular freeware tool for smartphones. The software is constantly updated with new features. In contrast to many other solutions MyPhoneExplorer works completely locally without using any third-party server! +Description: Connect your phone via WiFi, cable or bluetooth and you'll be surprised how easy and efficient it will be to manage your phone with our software. Since its first release MyPhoneExplorer evolved into the most popular freeware tool for smartphones. The software is constantly updated with new features. In contrast to many other solutions MyPhoneExplorer works completely locally without using any third-party server! Moniker: myphoneexplorer Tags: - backup @@ -28,13 +28,12 @@ Tags: - restore - sync - transfer +- android ReleaseNotes: |- - Barcode and NFC scanner: use your smartphone as scanner for the PC - remote controlling the phone via WiFi - sync with Microsoft cloud / Outlook (new) - better appointment display in calendar - alot of smaller changes and bugfixes - - Download ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.installer.yaml b/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.installer.yaml new file mode 100644 index 000000000000..6da1ba0f67d8 --- /dev/null +++ b/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GDevelop.GDevelop +PackageVersion: 5.6.269 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: c2a9b91e-8206-5b4e-b81d-9aa27463c28e +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/4ian/GDevelop/releases/download/v5.6.269/GDevelop-5-Setup-5.6.269.exe + InstallerSha256: B194CB85B24726BFDB0A1F8CB5050410B69004AEF1D4DE5290679221FB6770DC + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/4ian/GDevelop/releases/download/v5.6.269/GDevelop-5-Setup-5.6.269.exe + InstallerSha256: B194CB85B24726BFDB0A1F8CB5050410B69004AEF1D4DE5290679221FB6770DC + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.locale.en-US.yaml b/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.locale.en-US.yaml new file mode 100644 index 000000000000..4213f5a879f5 --- /dev/null +++ b/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.locale.en-US.yaml @@ -0,0 +1,107 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GDevelop.GDevelop +PackageVersion: 5.6.269 +PackageLocale: en-US +Publisher: GDevelop Team +PublisherUrl: http://www.florianrival.com/ +PublisherSupportUrl: https://github.com/4ian/GDevelop/issues +PrivacyUrl: https://gdevelop.io/page/privacy-policy +Author: Florian Rival +PackageName: GDevelop +PackageUrl: https://gdevelop.io/ +License: MIT +LicenseUrl: https://github.com/4ian/GDevelop/blob/HEAD/LICENSE.md +Copyright: Copyright (c) 2026-present Florian Rival +ShortDescription: The fastest, easiest, most powerful no-code game engine. +Description: "GDevelop is a free, open-source game engine that's 10x easier and faster to use than anything else. Build from anywhere — even on your phone. Publish everywhere: iOS, Android, Steam, web, gaming platforms. Reach millions of players or create the next hit game you've been dreaming of." +Moniker: gdevelop +Tags: +- develop +- development +- game +ReleaseNotes: |- + 💡 New 3D Spot Light and Point Light objects + 3D lights can now be used with the new "3D spot light" and "3D point light" objects! You can find them in the "New Object" dialog. Check out the documentation here. + + Light objects can be demanding on the GPU, especially when they cast shadows. To allow to add many lights to a scene, the engine automatically hides the lights farthest from the camera. By default, the limits are 20 visible light objects and 4 light objects casting shadows (the closest to the camera). Read more in the documentation. + 💝 Improvements + - Reworked events sheet design (thanks @LuniMoon!): + - Colors adjusted to match accessibility standards, + - Refined borders around conditions/actions + - Handles of comments/groups are colored as the event itself, + - Spacing, borders and other tweaks. + - Fix default variable string value being "0" instead of empty: + - Before, variable were set to the string "0" even though displaying as empty in the list of variables. + - Projects created before 5.6.267 will keep the same behavior (0 as default value for string variables) with an option to upgrade to the new behavior in the project properties dialog. This allows previous projects to keep backward compatibility and not break. It's recommended to activate this option and check that your game continues to work as soon as you can (keep a backup in case you want to upgrade later). + - Projects created from 5.6.267 will use the new default behavior (empty as default value). + - Improve 2D lights collision calculation for better performance. + - Add expressions to access the components of forward/up/right vectors of 3D objects + - These are advanced expressions mostly useful for extensions manipulating objects in 3D space. + - Add experimental configuration to allow object resources to be loaded independently from the scene. + - This is an advanced, experimental feature which is subject to changes. It's in most cases not useful, unless you have a large game or low end devices for which controlling memory usage is important. It's mostly useful to delay loading of large custom objects. + - Objects can be configured so that its resources are not loaded when the scene is loaded. Instead, you can use an action to manually load the resources used by it. When the loading is finished (this can be checked using a condition), the object can then be created. Read the documentation to learn more. + - Be careful: if an object assets are not loaded before being created, it will be broken when displayed on screen. + - Improve premium courses structure. + - Add editor lifecycle hooks for auto running npm scripts (rhanks @ViktorVovk!). See documentation here. + - Three hooks are implemented: onEditorReady, onPreviewStart, onPreviewEnd. + - Auto-execution of hooked scripts requires user consent. + - Improve handling of devices with both a mouse and touchscreen so GDevelop can be controlled both ways in one session + - Improve desktop app updater messages and actions + - Regularly check for updates, not only on launch + - When update is downloaded, notification to restart & install + - also display version number in notification + 🐛 Bug fixes + - Fix created child objects instances in custom objects being wrongly picked twice in events + - Fix potential crash in scene editor when reloading resources with custom objects + - Fix GDO import and export never finishing loading + - Fix crashes when using invalid object names in object folders + - iOS export fixes: + - Fix screen orientation not working anymore + - Fix export not working with Admob extension + - Fix file uploads (for extensions for instance) not working on some web browsers like Firefox + - Fix unloading extensions instructions properly when closing project + - This was causing actions/conditions/expressions from extensions of previous projects to be still visible in a new project, even if not available. + - Fix particle emitter gravity length action when it was 0 + - Fix structure children not being shown while searching variables + - Fix tentatively crash in popped-out window when a theme is missing a color + - Multiplayer: fix player ping never updating on non-host clients + - Fix missing error on expressions with unknown objects in the event sheet + - Fix rendering of events true/false or yes/no as text when parameter not filled + - Fix hot reloading for behaviors + - Mobile usage fixes: + - Fix renaming objects on mobile weird behaviors + - starting a rename was showing the image of the element dragged + - could not press on the input to select it + - Fix events locking up when dragging on mobile + - Fix fields in Events sheet prefilling to "=" after opening a relational operator + ⚙ Extensions + - [Experimental] [Advanced 3D Features] Fixed the "Distance between objects in 3D" expression + - Thanks @PANDAKO-GitHub + - [Experimental] [Scrollbar] Add actions to help moving a layer + - [Reviewed] [Scrollbar] Fix the thumb sometimes overflowing the bar + - [Reviewed] [Fire bullet] Add 2 fire actions for 3D + - [Reviewed] [Continuous bar] Allow to use bitmap texts + - [Review] [Score counter] Allow to use bitmap texts + - Also fix the initial value not being taken into account + - [Reviewed] [3rd person camera] Fix "rotate with object" property for the "all rotation" mode + - [Playgama] Extension update + - [Poki] Add new Poki User Account methods + - [Community] [Advanced 3D Features] Added functionality to obtain angles between 3D objects: + - Added “↗Check angle to 3D objects” condition + - Added “↗Angle to 3D objects” expression + - Updated “↔Check distance between two objects in 3D” + - Updated “↔Distance between objects in 3D” + - Ask submitters to declare their AI usage when sending an extension for review + 🎚 Assets + - Add various custom object variants for UI. Check them out in the Asset Store! + + 🕹 Examples + - New example "Scrollbar": show how to make a scroll view + 🕹 Premium Game Templates + - Add a new game template: Top Down Infinite Lands by Crowbar Coder +ReleaseNotesUrl: https://github.com/4ian/GDevelop/releases/tag/v5.6.269 +PurchaseUrl: https://gdevelop.io/pricing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.locale.zh-CN.yaml b/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.locale.zh-CN.yaml new file mode 100644 index 000000000000..a24d4194159d --- /dev/null +++ b/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: GDevelop.GDevelop +PackageVersion: 5.6.269 +PackageLocale: zh-CN +Publisher: GDevelop Team +PublisherUrl: http://www.florianrival.com/ +PublisherSupportUrl: https://github.com/4ian/GDevelop/issues +PrivacyUrl: https://gdevelop.io/page/privacy-policy +Author: Florian Rival +PackageName: GDevelop +PackageUrl: https://gdevelop.io/ +License: MIT +LicenseUrl: https://github.com/4ian/GDevelop/blob/HEAD/LICENSE.md +Copyright: Copyright (c) 2026-present Florian Rival +ShortDescription: 最快、最简单、最区倧的无代码枞戏匕擎。 +Description: GDevelop 是䞀欟免莹的匀源枞戏匕擎䜿甚起来比其它任䜕匕擎郜芁简单和快速 10 倍。圚任䜕地方郜胜创建甚至是圚手机䞊。圚任䜕地方郜胜发垃iOS、Android、Steam、眑页和枞戏平台。䞎数癟䞇玩家见面或制䜜䞋䞀欟䜠梊寐以求的热闚枞戏。 +Tags: +- 匀发 +ReleaseNotesUrl: https://github.com/4ian/GDevelop/releases/tag/v5.6.269 +PurchaseUrl: https://gdevelop.io/pricing +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.yaml b/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.yaml similarity index 74% rename from manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.yaml rename to manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.yaml index e95582bf2bf6..859374ad15bb 100644 --- a/manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.yaml +++ b/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: EdrawSoft.EdrawMind.CN -PackageVersion: 13.2.1.1497 +PackageIdentifier: GDevelop.GDevelop +PackageVersion: 5.6.269 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.installer.yaml b/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.installer.yaml index 936ec856a8cc..c07d17d7ece7 100644 --- a/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.installer.yaml +++ b/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.installer.yaml @@ -1,26 +1,26 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: GaoyangZhang.RivonClaw -PackageVersion: 1.7.9 -InstallerType: nullsoft -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ProductCode: 51492edb-6d67-582c-a781-6b48bbf5f3bf -ReleaseDate: 2026-04-08 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/gaoyangz77/rivonclaw/releases/download/v1.7.9/RivonClaw.Setup.1.7.9.exe - InstallerSha256: 7AA4299636ECDB96B6E5091194327D870E501D677F86B819FC1BF94ABDCDCDFD - InstallerSwitches: - Custom: /currentuser -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/gaoyangz77/rivonclaw/releases/download/v1.7.9/RivonClaw.Setup.1.7.9.exe - InstallerSha256: 7AA4299636ECDB96B6E5091194327D870E501D677F86B819FC1BF94ABDCDCDFD - InstallerSwitches: - Custom: /allusers -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GaoyangZhang.RivonClaw +PackageVersion: 1.7.9 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 51492edb-6d67-582c-a781-6b48bbf5f3bf +ReleaseDate: 2026-04-08 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/gaoyangz77/rivonclaw/releases/download/v1.7.9/RivonClaw.Setup.1.7.9.exe + InstallerSha256: 7C2A6D48273C5C20F03A875BBE4312D591EC2597E20CAE65193B387EF7FF531F + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/gaoyangz77/rivonclaw/releases/download/v1.7.9/RivonClaw.Setup.1.7.9.exe + InstallerSha256: 7C2A6D48273C5C20F03A875BBE4312D591EC2597E20CAE65193B387EF7FF531F + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.locale.en-US.yaml b/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.locale.en-US.yaml index d5fe6b9d118b..6073a81a5a43 100644 --- a/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.locale.en-US.yaml +++ b/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.locale.en-US.yaml @@ -1,54 +1,54 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: GaoyangZhang.RivonClaw -PackageVersion: 1.7.9 -PackageLocale: en-US -Publisher: RivonClaw -PublisherUrl: https://github.com/gaoyangz77 -PublisherSupportUrl: https://github.com/gaoyangz77/rivonclaw/issues -Author: Gaoyang Zhang -PackageName: RivonClaw -PackageUrl: https://github.com/gaoyangz77/rivonclaw -License: MIT -LicenseUrl: https://github.com/gaoyangz77/rivonclaw/blob/HEAD/LICENSE -Copyright: Copyright (c) 2026 Gaoyang Zhang -ShortDescription: An easy-mode runtime and UI layer built on top of OpenClaw, designed to turn long-lived AI agents into personal digital butlers. -Description: |- - OpenClaw is a powerful agent runtime — but it's built for engineers. Setting it up means editing config files, managing processes, and juggling API keys from the terminal. For non-programmers (designers, operators, small business owners), that barrier is too high. - RivonClaw wraps OpenClaw into a desktop app that anyone can use: install, launch from the system tray, and manage everything through a local web panel. Write rules in plain language instead of code, configure LLM providers and messaging channels with a few clicks, and let the agent learn your preferences over time. No terminal required. - In short: OpenClaw is the engine; RivonClaw is the cockpit. - - Features - - Natural Language Rules: Write rules in plain language—they compile to policy, guards, or skills and take effect immediately (no restart) - - Multi-Provider LLM Support: 20+ providers (OpenAI, Anthropic, Google Gemini, DeepSeek, Zhipu/Z.ai, Moonshot/Kimi, Qwen, Groq, Mistral, xAI, OpenRouter, MiniMax, Venice AI, Xiaomi/MiMo, Volcengine/Doubao, Amazon Bedrock, NVIDIA NIM, etc.) plus subscription/coding plans (Claude, Gemini, Zhipu Coding, Qwen Coding, Kimi Code, MiniMax Coding, Volcengine Coding) and Ollama for local models - - OAuth & Subscription Plans: Sign in with Google for free-tier Gemini access or connect Claude/Anthropic subscription—no API key needed. Auto-detects or installs CLI credentials - - Per-Provider Proxy Support: Configure HTTP/SOCKS5 proxies per LLM provider or API key, with automatic routing and hot reload—essential for restricted regions - - Multi-Account Channels: Configure Telegram, WhatsApp, Discord, Slack, Google Chat, Signal, iMessage, Feishu/Lark, LINE, Matrix, Mattermost, Microsoft Teams, and more through UI with secure secret storage (Keychain/DPAPI) - - Token Usage Tracking: Real-time statistics by model and provider, auto-refreshed from OpenClaw session files - - Speech-to-Text: Region-aware STT integration for voice messages (Groq, Volcengine) - - Visual Permissions: Control file read/write access through UI - - Zero-Restart Updates: API key, proxy, and channel changes apply instantly via hot reload—no gateway restart needed - - Local-First & Private: All data stays on your machine; secrets never stored in plaintext - - Chat with Agent: Real-time WebSocket chat with markdown rendering, emoji picker, image attachments, model switching, and persistent conversation history - - Skills Marketplace: Browse, search, and install community skills from a built-in marketplace; manage installed skills with one click - - Auto-Update: Client update checker with static manifest hosting - - Privacy-First Telemetry: Optional anonymous usage analytics—no PII collected - - How File Permissions Work - RivonClaw enforces file access permissions through an OpenClaw plugin that intercepts tool calls before they execute. Here's what's protected: - - File access tools (read, write, edit, image, apply-patch): Fully protected—paths are validated against your configured permissions - - Command execution (exec, process): Working directory is validated, but paths inside command strings (like cat /etc/passwd) cannot be inspected - Coverage: ~85-90% of file access scenarios. For maximum security, consider restricting or disabling exec tools through Rules. - Technical note: The file permissions plugin uses OpenClaw's before_tool_call hook—no vendor source code modifications needed, so RivonClaw can cleanly pull upstream OpenClaw updates. -Tags: -- agent -- agentic -- ai -- chatbot -- claw -- large-language-model -- llm -ReleaseNotesUrl: https://github.com/gaoyangz77/rivonclaw/releases/tag/v1.7.9 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GaoyangZhang.RivonClaw +PackageVersion: 1.7.9 +PackageLocale: en-US +Publisher: RivonClaw +PublisherUrl: https://github.com/gaoyangz77 +PublisherSupportUrl: https://github.com/gaoyangz77/rivonclaw/issues +Author: Gaoyang Zhang +PackageName: RivonClaw +PackageUrl: https://github.com/gaoyangz77/rivonclaw +License: MIT +LicenseUrl: https://github.com/gaoyangz77/rivonclaw/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Gaoyang Zhang +ShortDescription: An easy-mode runtime and UI layer built on top of OpenClaw, designed to turn long-lived AI agents into personal digital butlers. +Description: |- + OpenClaw is a powerful agent runtime — but it's built for engineers. Setting it up means editing config files, managing processes, and juggling API keys from the terminal. For non-programmers (designers, operators, small business owners), that barrier is too high. + RivonClaw wraps OpenClaw into a desktop app that anyone can use: install, launch from the system tray, and manage everything through a local web panel. Write rules in plain language instead of code, configure LLM providers and messaging channels with a few clicks, and let the agent learn your preferences over time. No terminal required. + In short: OpenClaw is the engine; RivonClaw is the cockpit. + + Features + - Natural Language Rules: Write rules in plain language—they compile to policy, guards, or skills and take effect immediately (no restart) + - Multi-Provider LLM Support: 20+ providers (OpenAI, Anthropic, Google Gemini, DeepSeek, Zhipu/Z.ai, Moonshot/Kimi, Qwen, Groq, Mistral, xAI, OpenRouter, MiniMax, Venice AI, Xiaomi/MiMo, Volcengine/Doubao, Amazon Bedrock, NVIDIA NIM, etc.) plus subscription/coding plans (Claude, Gemini, Zhipu Coding, Qwen Coding, Kimi Code, MiniMax Coding, Volcengine Coding) and Ollama for local models + - OAuth & Subscription Plans: Sign in with Google for free-tier Gemini access or connect Claude/Anthropic subscription—no API key needed. Auto-detects or installs CLI credentials + - Per-Provider Proxy Support: Configure HTTP/SOCKS5 proxies per LLM provider or API key, with automatic routing and hot reload—essential for restricted regions + - Multi-Account Channels: Configure Telegram, WhatsApp, Discord, Slack, Google Chat, Signal, iMessage, Feishu/Lark, LINE, Matrix, Mattermost, Microsoft Teams, and more through UI with secure secret storage (Keychain/DPAPI) + - Token Usage Tracking: Real-time statistics by model and provider, auto-refreshed from OpenClaw session files + - Speech-to-Text: Region-aware STT integration for voice messages (Groq, Volcengine) + - Visual Permissions: Control file read/write access through UI + - Zero-Restart Updates: API key, proxy, and channel changes apply instantly via hot reload—no gateway restart needed + - Local-First & Private: All data stays on your machine; secrets never stored in plaintext + - Chat with Agent: Real-time WebSocket chat with markdown rendering, emoji picker, image attachments, model switching, and persistent conversation history + - Skills Marketplace: Browse, search, and install community skills from a built-in marketplace; manage installed skills with one click + - Auto-Update: Client update checker with static manifest hosting + - Privacy-First Telemetry: Optional anonymous usage analytics—no PII collected + + How File Permissions Work + RivonClaw enforces file access permissions through an OpenClaw plugin that intercepts tool calls before they execute. Here's what's protected: + - File access tools (read, write, edit, image, apply-patch): Fully protected—paths are validated against your configured permissions + - Command execution (exec, process): Working directory is validated, but paths inside command strings (like cat /etc/passwd) cannot be inspected + Coverage: ~85-90% of file access scenarios. For maximum security, consider restricting or disabling exec tools through Rules. + Technical note: The file permissions plugin uses OpenClaw's before_tool_call hook—no vendor source code modifications needed, so RivonClaw can cleanly pull upstream OpenClaw updates. +Tags: +- agent +- agentic +- ai +- chatbot +- claw +- large-language-model +- llm +ReleaseNotesUrl: https://github.com/gaoyangz77/rivonclaw/releases/tag/v1.7.9 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.locale.zh-CN.yaml b/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.locale.zh-CN.yaml index c5597e4e13e7..0ab443d2f228 100644 --- a/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.locale.zh-CN.yaml +++ b/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.locale.zh-CN.yaml @@ -1,43 +1,43 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: GaoyangZhang.RivonClaw -PackageVersion: 1.7.9 -PackageLocale: zh-CN -ShortDescription: 基于 OpenClaw 构建的简易暡匏运行时䞎 UI 层旚圚将长生呜呚期 AI 智胜䜓蜬化䞺䞪人数字管家。 -Description: |- - OpenClaw 是䞀欟功胜区倧的智胜䜓运行时䜆它䞓䞺工皋垈打造配眮需猖蟑配眮文件、管理进皋并圚终端䞭调床各类 API 密钥。对非皋序员劂讟计垈、运营人员、小䌁䞚䞻而蚀这䞀闚槛过高。 - RivonClaw 将 OpenClaw 封装䞺桌面应甚人人可甚安装后从系统托盘启劚通过本地 Web 面板管理䞀切。甚自然语蚀猖写规则而非代码只需几次点击即可配眮倧语蚀暡型LLM提䟛商䞎消息枠道并让智胜䜓随时闎孊习悚的偏奜。无需终端。 - 简蚀之OpenClaw 是匕擎RivonClaw 是驟驶舱。 - - 功胜特性 - - 自然语蚀规则甚通俗语蚀猖写规则自劚猖译䞺策略、防技噚或技胜即时生效无需重启 - - 倚提䟛商 LLM 支持支持 20+ 提䟛商OpenAI、Anthropic、Google Gemini、DeepSeek、智谱/Z.ai、Moonshot/Kimi、通义千问/Qwen、Groq、Mistral、xAI、OpenRouter、MiniMax、Venice AI、小米/MiMo、火山匕擎/豆包、Amazon Bedrock、NVIDIA NIM 等及含订阅/猖码计划Claude、Gemini、智谱猖码、通义猖码、Kimi Code、MiniMax 猖码、火山匕擎猖码并支持 Ollama 本地暡型 - - OAuth 䞎订阅计划䜿甚 Google 登圕即可免莹访问 Gemini或连接 Claude/Anthropic 订阅——无需 API 密钥自劚检测或安装 CLI 凭证 - - 每提䟛商代理支持䞺每䞪 LLM 提䟛商或 API 密钥单独配眮 HTTP/SOCKS5 代理支持自劚路由䞎热重蜜——对受限地区至关重芁 - - 倚莊号消息枠道通过囟圢界面配眮 Telegram、WhatsApp、Discord、Slack、Google Chat、Signal、iMessage、飞乊/Lark、LINE、Matrix、Mattermost、Microsoft Teams 等并提䟛安党的密钥存傚Keychain/DPAPI - - Token 甚量远螪按暡型䞎提䟛商实时统计甚量基于 OpenClaw 䌚话文件自劚刷新 - - 语音蜬文字STT集成区域感知的 STT 功胜支持语音消息倄理Groq、火山匕擎 - - 可视化权限控制通过囟圢界面管理文件读写访问权限 - - 零重启曎新API 密钥、代理及枠道变曎通过热重蜜即时生效无需重启眑关 - - 本地䌘先䞎隐私保技所有数据留存于本机敏感信息绝䞍以明文存傚 - - 䞎智胜䜓对话基于 WebSocket 的实时聊倩支持 Markdown 枲染、衚情选择噚、囟片附件、暡型切换及持久化对话历史 - - 技胜垂场内眮垂场可浏览、搜玢并安装瀟区技胜䞀键管理已安装技胜 - - 自劚曎新客户端曎新检查噚支持静态枅单托管 - - 隐私䌘先遥测可选的匿名䜿甚分析䞍收集任䜕䞪人身仜信息PII - - 文件权限工䜜原理 - RivonClaw 通过䞀䞪 OpenClaw 插件区制执行文件访问权限该插件圚工具调甚执行前进行拊截。受保技内容包括 - - 文件访问工具读取、写入、猖蟑、囟像倄理、应甚补䞁党面保技——路埄将对照悚配眮的权限进行验证 - - 呜什执行exec、process工䜜目圕䌚被验证䜆呜什字笊䞲内郚的路埄䟋劂 cat /etc/passwd无法被检查 - 芆盖范囎纊 85–90% 的文件访问场景。䞺实现最高安党性建议通过规则限制或犁甚 exec 工具。 - 技术诎明文件权限插件利甚 OpenClaw 的 before_tool_call 钩子实现无需修改厂商源代码因歀 RivonClaw 可干净地拉取䞊枞 OpenClaw 曎新。 -Tags: -- 人工智胜 -- 倧语蚀暡型 -- 智胜䜓 -- 聊倩机噚人 -- 自䞻智胜 -- 韙號 -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: GaoyangZhang.RivonClaw +PackageVersion: 1.7.9 +PackageLocale: zh-CN +ShortDescription: 基于 OpenClaw 构建的简易暡匏运行时䞎 UI 层旚圚将长生呜呚期 AI 智胜䜓蜬化䞺䞪人数字管家。 +Description: |- + OpenClaw 是䞀欟功胜区倧的智胜䜓运行时䜆它䞓䞺工皋垈打造配眮需猖蟑配眮文件、管理进皋并圚终端䞭调床各类 API 密钥。对非皋序员劂讟计垈、运营人员、小䌁䞚䞻而蚀这䞀闚槛过高。 + RivonClaw 将 OpenClaw 封装䞺桌面应甚人人可甚安装后从系统托盘启劚通过本地 Web 面板管理䞀切。甚自然语蚀猖写规则而非代码只需几次点击即可配眮倧语蚀暡型LLM提䟛商䞎消息枠道并让智胜䜓随时闎孊习悚的偏奜。无需终端。 + 简蚀之OpenClaw 是匕擎RivonClaw 是驟驶舱。 + + 功胜特性 + - 自然语蚀规则甚通俗语蚀猖写规则自劚猖译䞺策略、防技噚或技胜即时生效无需重启 + - 倚提䟛商 LLM 支持支持 20+ 提䟛商OpenAI、Anthropic、Google Gemini、DeepSeek、智谱/Z.ai、Moonshot/Kimi、通义千问/Qwen、Groq、Mistral、xAI、OpenRouter、MiniMax、Venice AI、小米/MiMo、火山匕擎/豆包、Amazon Bedrock、NVIDIA NIM 等及含订阅/猖码计划Claude、Gemini、智谱猖码、通义猖码、Kimi Code、MiniMax 猖码、火山匕擎猖码并支持 Ollama 本地暡型 + - OAuth 䞎订阅计划䜿甚 Google 登圕即可免莹访问 Gemini或连接 Claude/Anthropic 订阅——无需 API 密钥自劚检测或安装 CLI 凭证 + - 每提䟛商代理支持䞺每䞪 LLM 提䟛商或 API 密钥单独配眮 HTTP/SOCKS5 代理支持自劚路由䞎热重蜜——对受限地区至关重芁 + - 倚莊号消息枠道通过囟圢界面配眮 Telegram、WhatsApp、Discord、Slack、Google Chat、Signal、iMessage、飞乊/Lark、LINE、Matrix、Mattermost、Microsoft Teams 等并提䟛安党的密钥存傚Keychain/DPAPI + - Token 甚量远螪按暡型䞎提䟛商实时统计甚量基于 OpenClaw 䌚话文件自劚刷新 + - 语音蜬文字STT集成区域感知的 STT 功胜支持语音消息倄理Groq、火山匕擎 + - 可视化权限控制通过囟圢界面管理文件读写访问权限 + - 零重启曎新API 密钥、代理及枠道变曎通过热重蜜即时生效无需重启眑关 + - 本地䌘先䞎隐私保技所有数据留存于本机敏感信息绝䞍以明文存傚 + - 䞎智胜䜓对话基于 WebSocket 的实时聊倩支持 Markdown 枲染、衚情选择噚、囟片附件、暡型切换及持久化对话历史 + - 技胜垂场内眮垂场可浏览、搜玢并安装瀟区技胜䞀键管理已安装技胜 + - 自劚曎新客户端曎新检查噚支持静态枅单托管 + - 隐私䌘先遥测可选的匿名䜿甚分析䞍收集任䜕䞪人身仜信息PII + + 文件权限工䜜原理 + RivonClaw 通过䞀䞪 OpenClaw 插件区制执行文件访问权限该插件圚工具调甚执行前进行拊截。受保技内容包括 + - 文件访问工具读取、写入、猖蟑、囟像倄理、应甚补䞁党面保技——路埄将对照悚配眮的权限进行验证 + - 呜什执行exec、process工䜜目圕䌚被验证䜆呜什字笊䞲内郚的路埄䟋劂 cat /etc/passwd无法被检查 + 芆盖范囎纊 85–90% 的文件访问场景。䞺实现最高安党性建议通过规则限制或犁甚 exec 工具。 + 技术诎明文件权限插件利甚 OpenClaw 的 before_tool_call 钩子实现无需修改厂商源代码因歀 RivonClaw 可干净地拉取䞊枞 OpenClaw 曎新。 +Tags: +- 人工智胜 +- 倧语蚀暡型 +- 智胜䜓 +- 聊倩机噚人 +- 自䞻智胜 +- 韙號 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.yaml b/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.yaml index 7a9f93a8b724..e3db1c9ce359 100644 --- a/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.yaml +++ b/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: GaoyangZhang.RivonClaw -PackageVersion: 1.7.9 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: GaoyangZhang.RivonClaw +PackageVersion: 1.7.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/Gologin/Gologin/4.2.7/Gologin.Gologin.installer.yaml b/manifests/g/Gologin/Gologin/4.2.7/Gologin.Gologin.installer.yaml new file mode 100644 index 000000000000..61212fedc160 --- /dev/null +++ b/manifests/g/Gologin/Gologin/4.2.7/Gologin.Gologin.installer.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Gologin.Gologin +PackageVersion: 4.2.7 +InstallerLocale: en-US +InstallerType: nullsoft +UpgradeBehavior: install +ProductCode: e254751a-2537-5636-8393-c4573034c5f6 +ReleaseDate: 2026-05-07 +AppsAndFeaturesEntries: +- DisplayName: Gologin 4.2.7 + ProductCode: e254751a-2537-5636-8393-c4573034c5f6 +Installers: +- Architecture: x64 + InstallerUrl: https://releases.gologin.com/Gologin%20Setup%204.2.7.exe + InstallerSha256: 746D0FE7BD1604111750C4E09DC4097D7864A1789D8D0BF16DC6CAE68AAA80CC +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/Gologin/Gologin/4.2.7/Gologin.Gologin.locale.en-US.yaml b/manifests/g/Gologin/Gologin/4.2.7/Gologin.Gologin.locale.en-US.yaml new file mode 100644 index 000000000000..a2c67cae9240 --- /dev/null +++ b/manifests/g/Gologin/Gologin/4.2.7/Gologin.Gologin.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Gologin.Gologin +PackageVersion: 4.2.7 +PackageLocale: en-US +Publisher: GoLogin +PublisherUrl: https://gologin.com/ +PublisherSupportUrl: https://support.gologin.com/ +PackageName: Gologin +PackageUrl: https://gologin.com/ +License: Proprietary +LicenseUrl: https://support.gologin.com/articles/3574839-terms-of-service +Copyright: Copyright © 2026 GoLogin +ShortDescription: Antidetect browser for managing multiple accounts with unique fingerprints +Moniker: gologin +Tags: +- antidetect +- browser +- fingerprint +- privacy +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/Gologin/Gologin/4.2.7/Gologin.Gologin.yaml b/manifests/g/Gologin/Gologin/4.2.7/Gologin.Gologin.yaml new file mode 100644 index 000000000000..8681fc28978c --- /dev/null +++ b/manifests/g/Gologin/Gologin/4.2.7/Gologin.Gologin.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Gologin.Gologin +PackageVersion: 4.2.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.installer.yaml b/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.installer.yaml deleted file mode 100644 index c75934e8a073..000000000000 --- a/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.installer.yaml +++ /dev/null @@ -1,74 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Dev.EXE -PackageVersion: 137.0.7141.3 -InstallerType: exe -InstallModes: -- silent -InstallerSwitches: - Log: --verbose-logging --log-file="" -ExpectedReturnCodes: -- InstallerReturnCode: 3 - ReturnResponse: alreadyInstalled -- InstallerReturnCode: 4 - ReturnResponse: downgrade -- InstallerReturnCode: 22 - ReturnResponse: cancelledByUser -- InstallerReturnCode: 60 - ReturnResponse: installInProgress -UpgradeBehavior: install -Protocols: -- http -- https -- mailto -- tel -FileExtensions: -- htm -- html -- pdf -- shtml -- svg -- webp -- xht -- xhtml -ProductCode: Google Chrome Dev -Installers: -- Architecture: x86 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/kn3duz22yp3mvjsjonf4d6lnma_137.0.7141.3/137.0.7141.3_chrome_installer_uncompressed.exe - InstallerSha256: 45BBA507EAD3E358D3B7DF1884E7ACAE23B4DA59358633E93DD07BE918BB66A2 - InstallerSwitches: - Custom: --chrome-dev --do-not-launch-chrome -- Architecture: x86 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/kn3duz22yp3mvjsjonf4d6lnma_137.0.7141.3/137.0.7141.3_chrome_installer_uncompressed.exe - InstallerSha256: 45BBA507EAD3E358D3B7DF1884E7ACAE23B4DA59358633E93DD07BE918BB66A2 - InstallerSwitches: - Custom: --chrome-dev --do-not-launch-chrome --system-level -- Architecture: x64 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/ack4q4hal2fwzghyzvxdqnibf3zq_137.0.7141.3/137.0.7141.3_chrome_installer_uncompressed.exe - InstallerSha256: 2D6EEFCF6CE8280A3039C6FA3EA7D9158A29FF6C0CFC03D7A39A62995D7F4CA3 - InstallerSwitches: - Custom: --chrome-dev --do-not-launch-chrome -- Architecture: x64 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/ack4q4hal2fwzghyzvxdqnibf3zq_137.0.7141.3/137.0.7141.3_chrome_installer_uncompressed.exe - InstallerSha256: 2D6EEFCF6CE8280A3039C6FA3EA7D9158A29FF6C0CFC03D7A39A62995D7F4CA3 - InstallerSwitches: - Custom: --chrome-dev --do-not-launch-chrome --system-level -- Architecture: arm64 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/gfc2oju5rgaylf3ypsnzrfbgxa_137.0.7141.3/137.0.7141.3_chrome_installer_uncompressed.exe - InstallerSha256: 1B5C1CCDD72636D2D7202910EC290A4FD178AFB869710FE740D8BBC586577FDE - InstallerSwitches: - Custom: --chrome-dev --do-not-launch-chrome -- Architecture: arm64 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/gfc2oju5rgaylf3ypsnzrfbgxa_137.0.7141.3/137.0.7141.3_chrome_installer_uncompressed.exe - InstallerSha256: 1B5C1CCDD72636D2D7202910EC290A4FD178AFB869710FE740D8BBC586577FDE - InstallerSwitches: - Custom: --chrome-dev --do-not-launch-chrome --system-level -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.locale.en-US.yaml b/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.locale.en-US.yaml deleted file mode 100644 index d37930592ed4..000000000000 --- a/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Dev.EXE -PackageVersion: 137.0.7141.3 -PackageLocale: en-US -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/ -PrivacyUrl: https://policies.google.com/privacy -Author: Google LLC -PackageName: Google Chrome Dev (EXE) -PackageUrl: https://www.google.com/chrome/dev -License: Freeware -LicenseUrl: https://www.google.com/chrome/terms -Copyright: Copyright 2024 Google LLC. All rights reserved. -ShortDescription: Google Chrome for developers -Description: Google Chrome for developers was built for the open web. Test cutting-edge web platform APIs and developer tools that are updated weekly. -Tags: -- browser -- chromium -- internet -- web -- webpage -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.locale.nb-NO.yaml deleted file mode 100644 index aad053dfbfdf..000000000000 --- a/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Dev.EXE -PackageVersion: 137.0.7141.3 -PackageLocale: nb-NO -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/?hl=no -PrivacyUrl: https://policies.google.com/privacy?hl=no -Author: Google LLC -PackageName: Google Chrome Dev (EXE) -PackageUrl: https://www.google.com/intl/no/chrome/dev -License: Gratis Programvare -LicenseUrl: https://www.google.com/intl/no/chrome/terms -Copyright: Copyright 2024 Google LLC. Med enerett. -ShortDescription: Google Chrome for utviklere -Description: Google Chrome for utviklere er laget for det Ã¥pne nettet. Test banebrytende nettplattform-API-er og utviklerverktÞy som oppdateres ukentlig. -Tags: -- chromium -- nettleseren -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.locale.zh-CN.yaml deleted file mode 100644 index ee4b1d7c6e60..000000000000 --- a/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Dev.EXE -PackageVersion: 137.0.7141.3 -PackageLocale: zh-CN -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/?hl=zh-Hans -PrivacyUrl: https://policies.google.com/privacy?hl=zh-CN -Author: Google LLC -PackageName: Google Chrome 匀发者版 (EXE) -PackageUrl: https://www.google.com/intl/zh-CN/chrome/dev -License: 免莹蜯件 -LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms -Copyright: 版权所有 2024 Google LLC. 保留所有权利。 -ShortDescription: 匀发者䞓甚的 Google Chrome -Description: 匀发者䞓甚的 Google Chrome 䞓䞺匀攟匏眑络打造。测试先进的眑络平台 API 和每呚郜䌚曎新的匀发者工具。 -Tags: -- chromium -- 互联眑 -- 浏览噚 -- 眑页 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.yaml b/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.yaml deleted file mode 100644 index 85f0f250fd17..000000000000 --- a/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Dev.EXE -PackageVersion: 137.0.7141.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/FirebaseCLI/15.0.0/Google.FirebaseCLI.installer.yaml b/manifests/g/Google/FirebaseCLI/15.0.0/Google.FirebaseCLI.installer.yaml deleted file mode 100644 index ebb930fc9c3f..000000000000 --- a/manifests/g/Google/FirebaseCLI/15.0.0/Google.FirebaseCLI.installer.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Created with komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Google.FirebaseCLI -PackageVersion: 15.0.0 -InstallerType: portable -InstallModes: -- silent -Commands: -- firebase -ReleaseDate: 2025-12-11 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/firebase/firebase-tools/releases/download/v15.0.0/firebase-tools-win.exe - InstallerSha256: 4953FE8B41C8F438B8A8C7537ABBC3CB2674504D248B7EF01C7D98098BB73AD2 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/FirebaseCLI/15.0.0/Google.FirebaseCLI.locale.en-US.yaml b/manifests/g/Google/FirebaseCLI/15.0.0/Google.FirebaseCLI.locale.en-US.yaml deleted file mode 100644 index 4743ba367fec..000000000000 --- a/manifests/g/Google/FirebaseCLI/15.0.0/Google.FirebaseCLI.locale.en-US.yaml +++ /dev/null @@ -1,43 +0,0 @@ -# Created with komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Google.FirebaseCLI -PackageVersion: 15.0.0 -PackageLocale: en-US -Publisher: Google -PublisherUrl: https://firebase.google.com/ -PublisherSupportUrl: https://firebase.google.com/support -PrivacyUrl: https://policies.google.com/privacy -Author: Firebase contributors -PackageName: Firebase CLI Tools -PackageUrl: https://github.com/firebase/firebase-tools -License: MIT -LicenseUrl: https://github.com/firebase/firebase-tools/blob/HEAD/LICENSE -Copyright: Copyright (c) Firebase -CopyrightUrl: https://github.com/firebase/firebase-tools/blob/master/LICENSE -ShortDescription: The Firebase CLI Tools can be used to test, manage, and deploy your Firebase project from the command line. -Moniker: firebase-cli -Tags: -- firebase -- firebase-cli -- firebase-tools -ReleaseNotes: |- - - [BREAKING] Changed firestore:backups:list --json to return a listBackupsResponse object instead of a raw array of backups. - - [BREAKING] Removed support for '.bolt' rules files. - - [BREAKING] Removed support for running emulators with Java versions prior to 21. - - [BREAKING] Removed deprecated firebase --open-sesame and firebase --close-sesame commands. Use firebase experiments:enable and firebase experiments:disable instead. - - [BREAKING] Enforce strict timeout validation for functions. (#9540) - - [BREAKING] Update dataconnect:\* commands to use flags instead of positional arguments for --service & --location. Changed output type of dataconnect:sql:migrate --json (#9312) - - [BREAKING] When using 'firebase-tools' as a Node module, cli.auth.upload has been renamed to cli.auth.import and cli.appdistribution.testers.delete has been renamed to cli.appdistribution.testers.remove. - - [BREAKING] Updated Firebase Data Connect emulator version to v3.0.0 - - [BREAKING] Fixed generated code character case when letters follow numbers (#9567). - - [BREAKING] Dart codegen: Int64 types are now serialized and deserialized using BigInt. - - [BREAKING] Kotlin codegen: Removed magic "convenience renames" of keys and counts in selection sets (#9571). - - Eagerly load config upon any requests from VS Code Extensions or Firebase CLI. This ensures the emulator always serve the latest local configs. - - Kotlin codegen: Removed vestigial FIREBASE_DATA_CONNECT_GENERATED_FILE section at the bottom of each generated file. - - Updated Firestore Emulator to v1.20.2, which includes minor bug fixes for Datastore Mode. - - Improved command loading performance by implementing lazy loading. - - Add a confirmation in firebase init dataconnect before asking for app idea description. (#9282) -ReleaseNotesUrl: https://github.com/firebase/firebase-tools/releases/tag/v15.0.0 -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/FirebaseCLI/15.0.0/Google.FirebaseCLI.yaml b/manifests/g/Google/FirebaseCLI/15.0.0/Google.FirebaseCLI.yaml deleted file mode 100644 index 0c5e33538faa..000000000000 --- a/manifests/g/Google/FirebaseCLI/15.0.0/Google.FirebaseCLI.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Google.FirebaseCLI -PackageVersion: 15.0.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/FirebaseCLI/15.1.0/Google.FirebaseCLI.installer.yaml b/manifests/g/Google/FirebaseCLI/15.1.0/Google.FirebaseCLI.installer.yaml deleted file mode 100644 index 70a709f5afb1..000000000000 --- a/manifests/g/Google/FirebaseCLI/15.1.0/Google.FirebaseCLI.installer.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Created with komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Google.FirebaseCLI -PackageVersion: 15.1.0 -InstallerType: portable -InstallModes: -- silent -Commands: -- firebase -ReleaseDate: 2025-12-18 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/firebase/firebase-tools/releases/download/v15.1.0/firebase-tools-win.exe - InstallerSha256: D873F3AF378E453404A4D5409E05A9F7ADDAFB0EE1220F0BBCE660C9BDB4240C -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/FirebaseCLI/15.1.0/Google.FirebaseCLI.locale.en-US.yaml b/manifests/g/Google/FirebaseCLI/15.1.0/Google.FirebaseCLI.locale.en-US.yaml deleted file mode 100644 index 1b53787d804f..000000000000 --- a/manifests/g/Google/FirebaseCLI/15.1.0/Google.FirebaseCLI.locale.en-US.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Created with komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Google.FirebaseCLI -PackageVersion: 15.1.0 -PackageLocale: en-US -Publisher: Google -PublisherUrl: https://firebase.google.com/ -PublisherSupportUrl: https://firebase.google.com/support -PrivacyUrl: https://policies.google.com/privacy -Author: Firebase contributors -PackageName: Firebase CLI Tools -PackageUrl: https://github.com/firebase/firebase-tools -License: MIT -LicenseUrl: https://github.com/firebase/firebase-tools/blob/HEAD/LICENSE -Copyright: Copyright (c) Firebase -CopyrightUrl: https://github.com/firebase/firebase-tools/blob/master/LICENSE -ShortDescription: The Firebase CLI Tools can be used to test, manage, and deploy your Firebase project from the command line. -Moniker: firebase-cli -Tags: -- firebase -- firebase-cli -- firebase-tools -ReleaseNotes: |- - - Updated default Postgres version for Data Connect to 17. - - Update Data Connect Emulator to 3.0.1, which addresses some internal errors (#9627) -ReleaseNotesUrl: https://github.com/firebase/firebase-tools/releases/tag/v15.1.0 -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/h/HHDSoftware/HexEditorNeo/8.05.00.9372/HHDSoftware.HexEditorNeo.locale.en-US.yaml b/manifests/h/HHDSoftware/HexEditorNeo/8.05.00.9372/HHDSoftware.HexEditorNeo.locale.en-US.yaml index 89ce995047e7..fa142117b647 100644 --- a/manifests/h/HHDSoftware/HexEditorNeo/8.05.00.9372/HHDSoftware.HexEditorNeo.locale.en-US.yaml +++ b/manifests/h/HHDSoftware/HexEditorNeo/8.05.00.9372/HHDSoftware.HexEditorNeo.locale.en-US.yaml @@ -17,7 +17,7 @@ Copyright: © 2001-2026 HHD Software Ltd. CopyrightUrl: https://hhdsoftware.com/company/licenses/regular ShortDescription: Edit your hex data and binary files with HHD Software Hex Editor Neo Description: |- - Hex Editor Neo is a binary files editing software utility for Windows. It's rich and handy set of features will help all software and hardware developers working with ASCII, hex, decimal, float, double and binary data. + Hex Editor Neo is a binary files editing software utility for Windows. Its rich and handy set of features will help all software and hardware developers working with ASCII, hex, decimal, float, double and binary data. Highly optimized performance, carefully tuned user interface among with new level of application stability will save a lot of your time, money and precious nerves while working with binary files. Make patches with just two mouse clicks; manipulate your EXE, DLL, DAT, AVI, MP3, JPG files with unlimited undo/redo. Taste the visual operation history with branching. Features: Editing Files of ANY Size; Built-In Explorer; Unlimited Undo/Redo; Multiple Selection; Selection Save and Load; Find All; Replace All; History Browsing; History Save and Load; Patch Creation; Clipboard Operations; Bytes, Words, Double Words, Quad Words, Floats and Doubles Edit Mode; Pattern Coloring; Data Inspector; Bookmarks; Base Converter; Advanced copy & export; Encodings. diff --git a/manifests/h/HelioFM/HelioSequencer/3.17/HelioFM.HelioSequencer.installer.yaml b/manifests/h/HelioFM/HelioSequencer/3.17/HelioFM.HelioSequencer.installer.yaml new file mode 100644 index 000000000000..47e88bce8131 --- /dev/null +++ b/manifests/h/HelioFM/HelioSequencer/3.17/HelioFM.HelioSequencer.installer.yaml @@ -0,0 +1,41 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: HelioFM.HelioSequencer +PackageVersion: "3.17" +InstallModes: +- interactive +- silent +- silentWithProgress +Installers: +- Architecture: x86 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Helio.exe + InstallerUrl: https://ci.helio.fm/helio-3.17-x32.zip + InstallerSha256: 4FDA266DC0BE22F551AC9075F676F5F017E9A8F12A80E6710D15130EBF54C430 + UpgradeBehavior: uninstallPrevious +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Helio.exe + InstallerUrl: https://ci.helio.fm/helio-3.17-x64.zip + InstallerSha256: EC947A0138F469031490F49DCF2D96D30364126F40F75503992853C2F68D85F9 + UpgradeBehavior: uninstallPrevious +- InstallerLocale: en-US + Architecture: neutral + InstallerType: inno + Scope: machine + InstallerUrl: https://ci.helio.fm/helio-3.17.exe + InstallerSha256: B570DB3F9B51371260F9D4C1ACAD9C31DC4CCB9ADCA871BC68826D8EB61BA8DC + UpgradeBehavior: install + ProductCode: '{E140D17C-F52A-4B2D-94BA-DA406EA9C4BF}_is1' + AppsAndFeaturesEntries: + - ProductCode: '{E140D17C-F52A-4B2D-94BA-DA406EA9C4BF}_is1' + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Helio' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/HelioFM/HelioSequencer/3.17/HelioFM.HelioSequencer.locale.en-US.yaml b/manifests/h/HelioFM/HelioSequencer/3.17/HelioFM.HelioSequencer.locale.en-US.yaml new file mode 100644 index 000000000000..c321427bd14c --- /dev/null +++ b/manifests/h/HelioFM/HelioSequencer/3.17/HelioFM.HelioSequencer.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: HelioFM.HelioSequencer +PackageVersion: "3.17" +PackageLocale: en-US +Publisher: Peter Rudenko +PublisherUrl: https://helio.fm/ +Author: |- + Peter Rudenko + Community contributors + Valery Davletbaev + Ludwig Peter MÃŒller + Steve Folta + Leo Olivers and Cognitone +PackageName: Helio +PackageUrl: https://helio.fm/ +License: |- + - GNU GPL v3 © Peter Rudenko and contributors. + - App icon by Valery Davletbaev, distributed under CC-BY. + - Other icons from various free icon fonts are licensed under SIL Open Font License and CC-BY. + - Built-in metronome sounds are recorded by Ludwig Peter MÃŒller, CC0. +LicenseUrl: https://github.com/helio-fm/helio-sequencer/blob/master/README.md#license-and-credits +ShortDescription: Libre music composition software. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/HelioFM/HelioSequencer/3.17/HelioFM.HelioSequencer.yaml b/manifests/h/HelioFM/HelioSequencer/3.17/HelioFM.HelioSequencer.yaml new file mode 100644 index 000000000000..262340837847 --- /dev/null +++ b/manifests/h/HelioFM/HelioSequencer/3.17/HelioFM.HelioSequencer.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: HelioFM.HelioSequencer +PackageVersion: "3.17" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/h/HypixelStudios/Hytale/2026.04.28-d3d25ae/HypixelStudios.Hytale.installer.yaml b/manifests/h/HypixelStudios/Hytale/2026.05.07-8c147f8/HypixelStudios.Hytale.installer.yaml similarity index 70% rename from manifests/h/HypixelStudios/Hytale/2026.04.28-d3d25ae/HypixelStudios.Hytale.installer.yaml rename to manifests/h/HypixelStudios/Hytale/2026.05.07-8c147f8/HypixelStudios.Hytale.installer.yaml index 3efbf3d98940..8adeb43bc15a 100644 --- a/manifests/h/HypixelStudios/Hytale/2026.04.28-d3d25ae/HypixelStudios.Hytale.installer.yaml +++ b/manifests/h/HypixelStudios/Hytale/2026.05.07-8c147f8/HypixelStudios.Hytale.installer.yaml @@ -2,17 +2,17 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: HypixelStudios.Hytale -PackageVersion: 2026.04.28-d3d25ae +PackageVersion: 2026.05.07-8c147f8 InstallerType: nullsoft Scope: machine UpgradeBehavior: install ProductCode: Hypixel StudiosHytale Launcher -ReleaseDate: 2026-04-28 +ReleaseDate: 2026-05-07 InstallationMetadata: DefaultInstallLocation: '%ProgramFiles%\Hypixel Studios\Hytale Launcher' Installers: - Architecture: x64 - InstallerUrl: https://launcher.hytale.com/builds/release/windows/amd64/hytale-launcher-installer-2026.04.28-d3d25ae.exe - InstallerSha256: F0FA93E1C7C54B8BB11BED857E665000EB62A700E5D798867342073C066798AE + InstallerUrl: https://launcher.hytale.com/builds/release/windows/amd64/hytale-launcher-installer-2026.05.07-8c147f8.exe + InstallerSha256: 0B1F0232988DDDCB5FBA7D5EDDCEF879865FE1CDA56BCF858D4750DCCD9AE979 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/h/HypixelStudios/Hytale/2026.04.28-d3d25ae/HypixelStudios.Hytale.locale.en-US.yaml b/manifests/h/HypixelStudios/Hytale/2026.05.07-8c147f8/HypixelStudios.Hytale.locale.en-US.yaml similarity index 96% rename from manifests/h/HypixelStudios/Hytale/2026.04.28-d3d25ae/HypixelStudios.Hytale.locale.en-US.yaml rename to manifests/h/HypixelStudios/Hytale/2026.05.07-8c147f8/HypixelStudios.Hytale.locale.en-US.yaml index 5331aa84e1a7..7c219f942d97 100644 --- a/manifests/h/HypixelStudios/Hytale/2026.04.28-d3d25ae/HypixelStudios.Hytale.locale.en-US.yaml +++ b/manifests/h/HypixelStudios/Hytale/2026.05.07-8c147f8/HypixelStudios.Hytale.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: HypixelStudios.Hytale -PackageVersion: 2026.04.28-d3d25ae +PackageVersion: 2026.05.07-8c147f8 PackageLocale: en-US Publisher: Hypixel Studios Canada inc. PublisherUrl: https://hytale.com/ diff --git a/manifests/h/HypixelStudios/Hytale/2026.04.28-d3d25ae/HypixelStudios.Hytale.yaml b/manifests/h/HypixelStudios/Hytale/2026.05.07-8c147f8/HypixelStudios.Hytale.yaml similarity index 84% rename from manifests/h/HypixelStudios/Hytale/2026.04.28-d3d25ae/HypixelStudios.Hytale.yaml rename to manifests/h/HypixelStudios/Hytale/2026.05.07-8c147f8/HypixelStudios.Hytale.yaml index d09f204a5602..49bfaaa3eb1d 100644 --- a/manifests/h/HypixelStudios/Hytale/2026.04.28-d3d25ae/HypixelStudios.Hytale.yaml +++ b/manifests/h/HypixelStudios/Hytale/2026.05.07-8c147f8/HypixelStudios.Hytale.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: HypixelStudios.Hytale -PackageVersion: 2026.04.28-d3d25ae +PackageVersion: 2026.05.07-8c147f8 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.installer.yaml b/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.installer.yaml index 88b71b8a0800..6405d8ffc11a 100644 --- a/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.installer.yaml +++ b/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.installer.yaml @@ -1,26 +1,26 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: hellodigua.ChatLab -PackageVersion: 0.18.2 -InstallerType: nullsoft -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ProductCode: 5c93c6d5-cfd9-53ea-a37a-26c1e3d35c8d -ReleaseDate: 2026-04-26 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/ChatLab/ChatLab/releases/download/v0.18.2/ChatLab-0.18.2-setup.exe - InstallerSha256: 6C50CF2EE1B1E3975C8A3351007E56B13A823A2270DFD72D54AE7BF668F27309 - InstallerSwitches: - Custom: /currentuser -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/ChatLab/ChatLab/releases/download/v0.18.2/ChatLab-0.18.2-setup.exe - InstallerSha256: 6C50CF2EE1B1E3975C8A3351007E56B13A823A2270DFD72D54AE7BF668F27309 - InstallerSwitches: - Custom: /allusers -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: hellodigua.ChatLab +PackageVersion: 0.18.2 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 5c93c6d5-cfd9-53ea-a37a-26c1e3d35c8d +ReleaseDate: 2026-04-26 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/ChatLab/ChatLab/releases/download/v0.18.2/ChatLab-0.18.2-setup.exe + InstallerSha256: B43381F26E22A343377F8913469948D9BE6C19B46C913A508A16D253F9E6A54D + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/ChatLab/ChatLab/releases/download/v0.18.2/ChatLab-0.18.2-setup.exe + InstallerSha256: B43381F26E22A343377F8913469948D9BE6C19B46C913A508A16D253F9E6A54D + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.locale.en-US.yaml b/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.locale.en-US.yaml index 1c00938da42e..660d08a6fc70 100644 --- a/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.locale.en-US.yaml +++ b/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.locale.en-US.yaml @@ -1,35 +1,35 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: hellodigua.ChatLab -PackageVersion: 0.18.2 -PackageLocale: en-US -Publisher: digua -PublisherUrl: https://digua.moe/ -PublisherSupportUrl: https://github.com/hellodigua/ChatLab/issues -PackageName: ChatLab -PackageUrl: https://chatlab.fun/ -License: AGPL-3.0 -LicenseUrl: https://github.com/hellodigua/ChatLab/blob/HEAD/LICENSE -Copyright: Copyright © 2026 ChatLab -ShortDescription: 'A Local-first chat analysis tool: Relive your social memories powered by SQL and AI Agents.' -Description: |- - ChatLab is a free, open-source, and local-first application dedicated to analyzing chat records. Through an AI Agent and a flexible SQL engine, you can freely dissect, query, and even reconstruct your social data. - We refuse to upload your privacy to the cloud; instead, we bring powerful analytics directly to your computer. - Currently supported: Chat record analysis for LINE, WeChat, QQ, WhatsApp, Instagram and Discord. Upcoming support: Messenger, iMessage. - The project is still in early iteration, so there are many bugs and unfinished features. If you encounter any issues, feel free to provide feedback. - Core Features - - 🚀 Ultimate Performance: Utilizing stream computing and multi-threaded parallel architecture, it maintains fluid interaction and response even with millions of chat records. - - 🔒 Privacy Protection: Chat records and configurations are stored in your local database, and all analysis is performed locally (with the exception of AI features). - - 🀖 Intelligent AI Agent: Integrated with 10+ Function Calling tools and supporting dynamic scheduling to deeply excavate interesting insights from chat records. - - 📊 Multi-dimensional Data Visualization: Provides intuitive analysis charts for activity trends, time distribution patterns, member rankings, and more. - - 🧩 Format Standardization: Through a powerful data abstraction layer, it bridges the format differences between various chat applications, allowing any chat records to be analyzed. -Tags: -- chat -- chat-records -ReleaseNotesUrl: https://github.com/ChatLab/ChatLab/releases/tag/v0.18.2 -Documentations: -- DocumentLabel: User Guide - DocumentUrl: https://chatlab.fun/usage/how-to-export.html -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: hellodigua.ChatLab +PackageVersion: 0.18.2 +PackageLocale: en-US +Publisher: digua +PublisherUrl: https://digua.moe/ +PublisherSupportUrl: https://github.com/hellodigua/ChatLab/issues +PackageName: ChatLab +PackageUrl: https://chatlab.fun/ +License: AGPL-3.0 +LicenseUrl: https://github.com/hellodigua/ChatLab/blob/HEAD/LICENSE +Copyright: Copyright © 2026 ChatLab +ShortDescription: 'A Local-first chat analysis tool: Relive your social memories powered by SQL and AI Agents.' +Description: |- + ChatLab is a free, open-source, and local-first application dedicated to analyzing chat records. Through an AI Agent and a flexible SQL engine, you can freely dissect, query, and even reconstruct your social data. + We refuse to upload your privacy to the cloud; instead, we bring powerful analytics directly to your computer. + Currently supported: Chat record analysis for LINE, WeChat, QQ, WhatsApp, Instagram and Discord. Upcoming support: Messenger, iMessage. + The project is still in early iteration, so there are many bugs and unfinished features. If you encounter any issues, feel free to provide feedback. + Core Features + - 🚀 Ultimate Performance: Utilizing stream computing and multi-threaded parallel architecture, it maintains fluid interaction and response even with millions of chat records. + - 🔒 Privacy Protection: Chat records and configurations are stored in your local database, and all analysis is performed locally (with the exception of AI features). + - 🀖 Intelligent AI Agent: Integrated with 10+ Function Calling tools and supporting dynamic scheduling to deeply excavate interesting insights from chat records. + - 📊 Multi-dimensional Data Visualization: Provides intuitive analysis charts for activity trends, time distribution patterns, member rankings, and more. + - 🧩 Format Standardization: Through a powerful data abstraction layer, it bridges the format differences between various chat applications, allowing any chat records to be analyzed. +Tags: +- chat +- chat-records +ReleaseNotesUrl: https://github.com/ChatLab/ChatLab/releases/tag/v0.18.2 +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://chatlab.fun/usage/how-to-export.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.locale.zh-CN.yaml b/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.locale.zh-CN.yaml index 8bd54639e679..4b9bdd85b91a 100644 --- a/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.locale.zh-CN.yaml +++ b/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.locale.zh-CN.yaml @@ -1,31 +1,31 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: hellodigua.ChatLab -PackageVersion: 0.18.2 -PackageLocale: zh-CN -PackageUrl: https://chatlab.fun/cn/ -ShortDescription: 本地化的聊倩记圕分析工具通过 SQL 和 AI Agent 回顟䜠的瀟亀记忆。 -Description: |- - ChatLab 是䞀䞪免莹、匀源、本地化的䞓泚于分析聊倩记圕的应甚。通过 AI Agent 和灵掻的 SQL 匕擎䜠可以自由地拆解、查询甚至重构䜠的瀟亀数据。 - 目前已支持 WhatsApp、LINE、埮信、QQ、Discord、Instagram 的聊倩记圕分析即将支持 iMessage、Messenger、Kakao Talk。 - 栞心特性 - - 🚀 极臎性胜䜿甚流匏计算䞎倚线皋并行架构就算是癟䞇条级别的聊倩记圕䟝然拥有䞝滑亀互和响应。 - - 🔒 保技隐私聊倩记圕和配眮郜存圚䜠的本地数据库所有分析郜圚本地进行AI 功胜䟋倖。 - - 🀖 智胜 AI Agent集成 10+ Function Calling 工具支持劚态调床深床挖掘聊倩记圕䞭的曎倚有趣。 - - 📊 倚绎数据可视化提䟛掻跃床趋势、时闎规埋分垃、成员排行等倚䞪绎床的盎观分析囟衚。 - - 🧩 栌匏标准化通过区倧的数据抜象层抹平䞍同聊倩蜯件的栌匏差匂任䜕聊倩记圕郜胜分析。 -Tags: -- 聊倩 -- 聊倩记圕 -ReleaseNotes: |- - What's New - This release adds session type filters for subscriptions, paginated remote session discovery, and configurable per-request message limits. - 曎新内容 - 新增订阅类型选择、远皋䌚话分页发现䞎每次拉取条数配眮。 -ReleaseNotesUrl: https://github.com/hellodigua/ChatLab/releases/tag/v0.9.3 -Documentations: -- DocumentLabel: 甚户手册 - DocumentUrl: https://chatlab.fun/cn/usage/how-to-export.html -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: hellodigua.ChatLab +PackageVersion: 0.18.2 +PackageLocale: zh-CN +PackageUrl: https://chatlab.fun/cn/ +ShortDescription: 本地化的聊倩记圕分析工具通过 SQL 和 AI Agent 回顟䜠的瀟亀记忆。 +Description: |- + ChatLab 是䞀䞪免莹、匀源、本地化的䞓泚于分析聊倩记圕的应甚。通过 AI Agent 和灵掻的 SQL 匕擎䜠可以自由地拆解、查询甚至重构䜠的瀟亀数据。 + 目前已支持 WhatsApp、LINE、埮信、QQ、Discord、Instagram 的聊倩记圕分析即将支持 iMessage、Messenger、Kakao Talk。 + 栞心特性 + - 🚀 极臎性胜䜿甚流匏计算䞎倚线皋并行架构就算是癟䞇条级别的聊倩记圕䟝然拥有䞝滑亀互和响应。 + - 🔒 保技隐私聊倩记圕和配眮郜存圚䜠的本地数据库所有分析郜圚本地进行AI 功胜䟋倖。 + - 🀖 智胜 AI Agent集成 10+ Function Calling 工具支持劚态调床深床挖掘聊倩记圕䞭的曎倚有趣。 + - 📊 倚绎数据可视化提䟛掻跃床趋势、时闎规埋分垃、成员排行等倚䞪绎床的盎观分析囟衚。 + - 🧩 栌匏标准化通过区倧的数据抜象层抹平䞍同聊倩蜯件的栌匏差匂任䜕聊倩记圕郜胜分析。 +Tags: +- 聊倩 +- 聊倩记圕 +ReleaseNotes: |- + What's New + This release adds session type filters for subscriptions, paginated remote session discovery, and configurable per-request message limits. + 曎新内容 + 新增订阅类型选择、远皋䌚话分页发现䞎每次拉取条数配眮。 +ReleaseNotesUrl: https://github.com/hellodigua/ChatLab/releases/tag/v0.9.3 +Documentations: +- DocumentLabel: 甚户手册 + DocumentUrl: https://chatlab.fun/cn/usage/how-to-export.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.yaml b/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.yaml index 6c0dc0b39e19..ce2e96325ec1 100644 --- a/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.yaml +++ b/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: hellodigua.ChatLab -PackageVersion: 0.18.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: hellodigua.ChatLab +PackageVersion: 0.18.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.8/IDMComputerSolutions,Inc.UltraEdit.installer.yaml b/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.8/IDMComputerSolutions,Inc.UltraEdit.installer.yaml deleted file mode 100644 index c5819e5fd1da..000000000000 --- a/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.8/IDMComputerSolutions,Inc.UltraEdit.installer.yaml +++ /dev/null @@ -1,54 +0,0 @@ -# Created with YamlCreate.ps1 v2.7.1 $debug=QUSU.CRLF.7-5-4.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: IDMComputerSolutions,Inc.UltraEdit -PackageVersion: 32.2.0.8 -InstallerType: exe -InstallerSwitches: - Silent: /S /SUPPRESSMSGBOXES - SilentWithProgress: /S /SUPPRESSMSGBOXES -ProductCode: '{AFFE5F64-3248-41E9-96AE-8B475F6EFAB3}' -ReleaseDate: 2026-01-29 -Installers: -- InstallerLocale: zh-TW - Architecture: x64 - InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_chinese_traditional_64.exe - InstallerSha256: BEAB62D08BDFC05A83FA8A4B442D500778E9CE5FFABA6591692EE05E78FCFBF6 -- InstallerLocale: zh-CN - Architecture: x64 - InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_chinese_64.exe - InstallerSha256: A74C928BBF4AF8FAD2D994DED6B0A5946E88A64258C727EB3C5D04A41109C87D -- InstallerLocale: pt-BR - Architecture: x64 - InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_portuguese_64.exe - InstallerSha256: C253DFA4A3AC856DC7AFD82FC6745D23A6353C7FBDA79E29553984A3E46B11F7 -- InstallerLocale: ko-KR - Architecture: x64 - InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_korean_64.exe - InstallerSha256: FFF39A677A0A4C282BCCAE6A008A7C06A3865E6E8FE4E1810DE0EFA9EC3E1202 -- InstallerLocale: ja-JP - Architecture: x64 - InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_japanese_64.exe - InstallerSha256: 4AB170A977A164B0713B95571AE2A44AB5AB7DA8E1BA4BD8E94366725EC1C19E -- InstallerLocale: it-IT - Architecture: x64 - InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_italian_64.exe - InstallerSha256: 523810B388745EA7784BED81F656D19C4C51146EB91DF0E43CB1C2A115A834DC -- InstallerLocale: fr-FR - Architecture: x64 - InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_french_64.exe - InstallerSha256: A11D003CE98EBBB6BBEF515B1348722224EF5E98CC1F9B55150EF868E27BEA7A -- InstallerLocale: es-ES - Architecture: x64 - InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_spanish_64.exe - InstallerSha256: E9FCF47EEC158A3308D5B102FEEFAB32038B045B008769E89F0E59CA80B92EF0 -- InstallerLocale: en-US - Architecture: x64 - InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_allinone.exe - InstallerSha256: A738322123B719614F88DA3FDD3F04859BA5BB1A93DD078AF61341B16D6D6BCB -- InstallerLocale: de-DE - Architecture: x64 - InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_german_64.exe - InstallerSha256: BBFD06E9E2E456E8EE646D83E6FE9EBDEF5095B27F0D63A92954E5526C87B31A -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.8/IDMComputerSolutions,Inc.UltraEdit.locale.en-US.yaml b/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.8/IDMComputerSolutions,Inc.UltraEdit.locale.en-US.yaml deleted file mode 100644 index aeb4ff2042f9..000000000000 --- a/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.8/IDMComputerSolutions,Inc.UltraEdit.locale.en-US.yaml +++ /dev/null @@ -1,72 +0,0 @@ -# Created with YamlCreate.ps1 v2.7.1 $debug=QUSU.CRLF.7-5-4.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: IDMComputerSolutions,Inc.UltraEdit -PackageVersion: 32.2.0.8 -PackageLocale: en-US -Publisher: IDM Computer Solutions, Inc. -PublisherUrl: https://www.ultraedit.com/company/about-us/ -PublisherSupportUrl: https://www.ultraedit.com/products/ultraedit/licenses-and-faqs/ -PrivacyUrl: https://www.ideracorp.com/Legal/PrivacyShield -Author: Ian D. Mead -PackageName: UltraEdit -PackageUrl: https://www.ultraedit.com/downloads/ultraedit-download-thank-you/ -License: Proprietary -LicenseUrl: https://www.ideracorp.com/legal/UltraEdit -Copyright: © Copyright 2025, All Rights Reserved -CopyrightUrl: https://www.ultraedit.com/#:~:text=%C2%A9%20Copyright%202025%2C%20All%20Rights%20Reserved -ShortDescription: UltraEdit is the most flexible, powerful, and secure text editor. -Description: > - UltraEdit is the powerful text editor built for developers, data wranglers, and IT pros handling - large files and complex tasks. -Moniker: ultraedit -ReleaseNotes: |- - - Features and enhancements - - Search and regular expression live mode - - Result selection updates as you type - - Find what text control provides regex syntax feedback - - Background color changes to indicate valid/invalid regular expression - - EDI Wrap/Unwrap convenience functions - - New EDI Functions dropdown in the ribbon (Coding->Formatting) - - Unwrap raw EDI data for easier reading, editing, and correction - - Wrap corrected EDI data to conform to transmission standards - - Other notable quality improvements - - Improved: Column mode with proportional and fixed-width fonts - - Tab sizing/handling - - Text selection - - General editing - - Improved: Product stability on startup with certain configurations - - Added: Support for OpenSSH format private key for SFTP - - Updated: Default language template files with minor additions and corrections - - Updated: Default tags list with minor additions and corrections - - Enhanced: Make context menu work in FTP open/save dialogs when clicking below directory listing - - Fixed: Lines at end of file seem to disappear after using ALT+SUBTRACT - - Fixed: File name is replaced by selected folder name when navigating Save to FTP dialog - - Fixed: Unable to connect to legacy mainframe server - - Fixed: Hex Copy Selected View not working - - Fixed: “Invalid data received from remote server” error with FTP - - Fixed: Customer cannot connect via SFTP - - Fixed: Cannot load a macro containing JSONFormatDocument - - Fixed: Hang/crashes when trying to open large file from Z/OS mainframe - - Fixed: Sorting of different columns when TABs exist in document - - Fixed: Cursor is not displayed as expected from active line/column highlighting - - Fixed: Line/column position is indicated incorrectly in status bar in lines with tabs - - Fixed: FTP log window not shown when working with only Cloud Storage accounts - - Fixed: FTP Browser deleting folder from remote folder tree, succeeds, but does not remove it from - the tree control - - Fixed: FTP Browser deleting folder from remote file list does not remove folder from remote - directory tree - - Fixed: “&” is shown as \u0026 in folder name in FTP Open dialog - - Fixed: Output window erroneously shown when connecting using FTP Open - - Fixed: Selection shifts unexpectedly after editing & saving - - Fixed: Column number indicated in ruler does not match line/col position shown in status bar - - Fixed: SSH/telnet console missing tab icons - - Fixed: SSH/Telnet console per account font setting - - Fixed: SSH/Telnet console tab text spacing and alignment -ReleaseNotesUrl: https://www.ultraedit.com/products/ultraedit/latest-changes/#:~:text=UltraEdit%202025.2 -PurchaseUrl: https://www.ultraedit.com/pricing -Documentations: -- DocumentLabel: UltraEdit text editor wiki - DocumentUrl: https://wiki.ultraedit.com/Main_Page -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.8/IDMComputerSolutions,Inc.UltraEdit.yaml b/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.8/IDMComputerSolutions,Inc.UltraEdit.yaml deleted file mode 100644 index 72592b93528e..000000000000 --- a/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.8/IDMComputerSolutions,Inc.UltraEdit.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.7.1 $debug=QUSU.CRLF.7-5-4.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: IDMComputerSolutions,Inc.UltraEdit -PackageVersion: 32.2.0.8 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 diff --git a/manifests/i/IcecreamApps/PDFCandy/3.15/IcecreamApps.PDFCandy.installer.yaml b/manifests/i/IcecreamApps/PDFCandy/3.15/IcecreamApps.PDFCandy.installer.yaml deleted file mode 100644 index ab76a767b6b4..000000000000 --- a/manifests/i/IcecreamApps/PDFCandy/3.15/IcecreamApps.PDFCandy.installer.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Automatically updated by the winget bot at 2025/Sep/03 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: IcecreamApps.PDFCandy -PackageVersion: "3.15" -InstallerLocale: en-US -MinimumOSVersion: 10.0.0.0 -InstallerType: inno -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -FileExtensions: -- bmp -- doc -- docx -- epub -- fb2 -- html -- jpg -- mobi -- ods -- odt -- pdf -- png -- ppt -- pptx -- rtf -- tiff -- xls -- xlsx -Installers: -- Architecture: x86 - InstallerUrl: https://downloadc.icecreamapps.com/pdfcandy_setup.exe - InstallerSha256: 7B2F5B8BF24D405BC926EA06AA4864F148D6FADA929401FA8491E774A0E5B9F8 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/i/IcecreamApps/PDFCandy/3.15/IcecreamApps.PDFCandy.locale.en-US.yaml b/manifests/i/IcecreamApps/PDFCandy/3.15/IcecreamApps.PDFCandy.locale.en-US.yaml deleted file mode 100644 index 0df6f7f57c93..000000000000 --- a/manifests/i/IcecreamApps/PDFCandy/3.15/IcecreamApps.PDFCandy.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Automatically updated by the winget bot at 2025/Sep/03 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: IcecreamApps.PDFCandy -PackageVersion: "3.15" -PackageLocale: en-US -Publisher: Icecream Apps -PublisherUrl: https://icecreamapps.com/ -PublisherSupportUrl: https://icecreamapps.com/support.html -PrivacyUrl: https://icecreamapps.com/privacypolicy.html -Author: Icecream Apps, Ltd. -PackageName: PDF Candy Desktop -PackageUrl: https://pdfcandy.com -License: Proprietary -LicenseUrl: https://pdfcandy.com/terms-of-use.html -Copyright: Copyright (c) 2016-2021 PDF Candy. All rights reserved. -ShortDescription: PDF Candy Desktop is a versatile tool that enables you to convert files from PDF to various supported formats. -Description: PDF Candy Desktop is a versatile tool that enables you to convert files from PDF to various supported formats (PDF to DOC, PDF to JPG, etc), convert documents, ebooks and images to PDF, merge PDF, split PDF, extract images and text from PDF, edit PDF metadata, protect PDF and unlock password-protected PDF files. Most modes support processing files in a bulk. All these features are available through modern and user-friendly interface. -Moniker: pdfcandy -Tags: -- converter -- pdf -- pdf-editor -- unlocker -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/i/IcecreamApps/PDFCandy/3.15/IcecreamApps.PDFCandy.yaml b/manifests/i/IcecreamApps/PDFCandy/3.15/IcecreamApps.PDFCandy.yaml deleted file mode 100644 index def26179f496..000000000000 --- a/manifests/i/IcecreamApps/PDFCandy/3.15/IcecreamApps.PDFCandy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Sep/03 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: IcecreamApps.PDFCandy -PackageVersion: "3.15" -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.installer.yaml b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.installer.yaml new file mode 100644 index 000000000000..1439822f0a4f --- /dev/null +++ b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.installer.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: IkiruPeople.VoyagerInfinitySaaSClient +PackageVersion: 5.36.14.0 +InstallerType: burn +Scope: user +UpgradeBehavior: install +Protocols: +- voyagerinfinitylauncher +Installers: +- Architecture: x86 + InstallerUrl: https://we1infinitylivestorage.blob.core.windows.net/infinityclientdownloads/5.36.14.0/InfinityClientSetupSaaS.exe + InstallerSha256: D872697D0BA7887F21746345F8FCEE64DDD2C6FB79D07AA959D16C6ED0DC3E9E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.locale.en-US.yaml b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.locale.en-US.yaml new file mode 100644 index 000000000000..2bfabb9be5e3 --- /dev/null +++ b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.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.12.0.schema.json + +PackageIdentifier: IkiruPeople.VoyagerInfinitySaaSClient +PackageVersion: 5.36.14.0 +PackageLocale: en-US +Publisher: Voyager Software +PublisherUrl: https://customers.voyagersoftware.com/ +PublisherSupportUrl: https://www.voyagersoftware.com/contact-us/ +PrivacyUrl: https://customers.voyagersoftware.com/privacy-policy.html +Author: Ikiru People Ltd +PackageName: Voyager Software Infinity SaaS Client +PackageUrl: https://customers.voyagersoftware.com/general/download-infinity.html +License: Proprietary +Copyright: Copyright © 2026 Voyager Software Ltd +ShortDescription: The dedicated recruitment software and CRM for staffing agencies of all sizes. +Description: |- + Voyager Infinity is the dedicated recruitment software and CRM for temporary, permanent, and contract staffing agencies of all sizes – including Infinity Copilot, our ever evolving AI tool to help your recruitment efforts! + From education to health and social care recruitment, construction to hospitality recruitment, driver to technical & engineering recruitment, and many other sectors, our recruitment software helps you get your job done more efficiently and grow your revenue faster. +Tags: +- recruitment +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.locale.zh-CN.yaml b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.locale.zh-CN.yaml new file mode 100644 index 000000000000..112795f8dd9c --- /dev/null +++ b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.locale.zh-CN.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: IkiruPeople.VoyagerInfinitySaaSClient +PackageVersion: 5.36.14.0 +PackageLocale: zh-CN +License: 䞓有蜯件 +ShortDescription: 䞓䞺各类规暡招聘机构打造的招聘蜯件䞎客户关系管理系统。 +Description: |- + Voyager Infinity 是䞓䞺各类规暡䞎时工、长期工及合同工招聘机构打造的招聘蜯件䞎客户关系管理系统——内含持续进化的 AI 助手 Infinity Copilot助力悚的招聘事䞚 + 从教育到医疗技理招聘建筑到酒店䞚招聘叞机到技术工皋招聘乃至曎倚领域我们的招聘蜯件助悚高效完成工䜜加速营收增长。 +Tags: +- 招聘 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.yaml b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.yaml similarity index 70% rename from manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.yaml rename to manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.yaml index 17f44c5f7c93..ba5a6d0f7655 100644 --- a/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.yaml +++ b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: PostgreSQL.psqlODBC.mimalloc -PackageVersion: 17.00.0009 +PackageIdentifier: IkiruPeople.VoyagerInfinitySaaSClient +PackageVersion: 5.36.14.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.installer.yaml b/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.installer.yaml index 5601ec57d973..26219c9cd0d5 100644 --- a/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.installer.yaml +++ b/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.installer.yaml @@ -1,4 +1,4 @@ -# Created with komac v2.16.0 +# Automatically updated by the winget bot at 2026/May/07 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Iterative.DVC @@ -16,6 +16,6 @@ ElevationRequirement: elevatesSelf Installers: - Architecture: x86 InstallerUrl: https://dvc.org/download/win/dvc-3.67.1 - InstallerSha256: 058810E299EACDEA033336EBC3BFFE886262D3C31B4523539122C3AA4C1BB955 + InstallerSha256: 107AE69CB3E9F34A5674FF9F4C5F5F0A5A2EA68E910C70D51A1AB96B0FD705A3 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.locale.en-US.yaml b/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.locale.en-US.yaml index ad71bcb5c618..afc46f5a5941 100644 --- a/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.locale.en-US.yaml +++ b/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with komac v2.16.0 +# Automatically updated by the winget bot at 2026/May/07 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Iterative.DVC diff --git a/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.yaml b/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.yaml index 0503b956b57d..d4eda6243ee8 100644 --- a/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.yaml +++ b/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.yaml @@ -1,4 +1,4 @@ -# Created with komac v2.16.0 +# Automatically updated by the winget bot at 2026/May/07 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Iterative.DVC diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.installer.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.installer.yaml index f10215d3f890..6a3146339201 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.installer.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.installer.yaml @@ -1,29 +1,29 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.34 -UpgradeBehavior: install -ReleaseDate: 2026-01-04 -Installers: -- Architecture: x64 - InstallerType: nullsoft - Scope: user - InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.34/Harbor_0.3.34_x64-setup.exe - InstallerSha256: 857FC8FAE3C85D58F1F7012F3DC78083719059F0A562C8B64C7EDC69FEEA3603 - Dependencies: - PackageDependencies: - - PackageIdentifier: Microsoft.EdgeWebView2Runtime - ProductCode: Harbor -- Architecture: x64 - InstallerType: wix - Scope: machine - InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.34/Harbor_0.3.34_x64_en-US.msi - InstallerSha256: 0DE486472B30BAEEE5013DF6047D719E985DB5187654F4A900EC3957CA671C54 - InstallerSwitches: - InstallLocation: INSTALLDIR="" - ProductCode: '{62AA1739-71B4-4FC1-A369-87FA146846AC}' - AppsAndFeaturesEntries: - - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.34 +UpgradeBehavior: install +ReleaseDate: 2026-01-04 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.34/Harbor_0.3.34_x64-setup.exe + InstallerSha256: 6FEDEF752D7B07AC25120292AD5BF0397370B7A89BD3726D24E5A00E9290789A + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.EdgeWebView2Runtime + ProductCode: Harbor +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.34/Harbor_0.3.34_x64_en-US.msi + InstallerSha256: AF2C4AF483E4BB98BC29DF642B7F7068A48B6DB69D0B15CEE16CBA302D01B407 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{0795D353-207A-4AE2-9FB8-9969D8BA4CC3}' + AppsAndFeaturesEntries: + - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.locale.en-US.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.locale.en-US.yaml index 34a6f4fd9c8d..38999891db85 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.locale.en-US.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.locale.en-US.yaml @@ -1,32 +1,32 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.34 -PackageLocale: en-US -Publisher: harbor -PublisherUrl: https://av.codes/ -PublisherSupportUrl: https://github.com/av/harbor/issues -Author: Ivan Charapanau -PackageName: Harbor -PackageUrl: https://github.com/av/harbor -License: Apache-2.0 -LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE -ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. -Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. -Tags: -- ai -- large-language-model -- llm -- ollama -ReleaseNotes: |- - DeerFlow - DeerFlow is a community-driven deep research framework that combines LLMs with web search, web crawling, and multi-agent workflows to generate comprehensive research reports. - harbor up deerflow - ActivePieces - activepieces is an open-source workflow automation tool that allows you to connect apps and automate workflows with AI capabilities. It provides a visual workflow builder similar to Zapier or n8n, with 200+ app connectors and built-in AI features. - harbor up activepieces - Full Changelog: https://github.com/av/harbor/compare/v0.3.33...v0.3.34 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.34 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.34 +PackageLocale: en-US +Publisher: harbor +PublisherUrl: https://av.codes/ +PublisherSupportUrl: https://github.com/av/harbor/issues +Author: Ivan Charapanau +PackageName: Harbor +PackageUrl: https://github.com/av/harbor +License: Apache-2.0 +LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE +ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. +Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. +Tags: +- ai +- large-language-model +- llm +- ollama +ReleaseNotes: |- + DeerFlow + DeerFlow is a community-driven deep research framework that combines LLMs with web search, web crawling, and multi-agent workflows to generate comprehensive research reports. + harbor up deerflow + ActivePieces + activepieces is an open-source workflow automation tool that allows you to connect apps and automate workflows with AI capabilities. It provides a visual workflow builder similar to Zapier or n8n, with 200+ app connectors and built-in AI features. + harbor up activepieces + Full Changelog: https://github.com/av/harbor/compare/v0.3.33...v0.3.34 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.34 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.locale.zh-CN.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.locale.zh-CN.yaml index a5b9241a5c56..54f8b0e46224 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.locale.zh-CN.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.locale.zh-CN.yaml @@ -1,16 +1,16 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.34 -PackageLocale: zh-CN -ShortDescription: 只需䞀䞪呜什即可蜻束运行 LLM 后端、API、前端和服务。 -Description: Harbor 是䞀䞪容噚化 LLM 工具包垮助悚运行 LLM 和附加服务。它由 CLI 和配套应甚皋序组成垮助悚蜻束管理和运行人工智胜服务。 -Tags: -- llm -- ollama -- 人工智胜 -- 倧语蚀暡型 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.34 -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.34 +PackageLocale: zh-CN +ShortDescription: 只需䞀䞪呜什即可蜻束运行 LLM 后端、API、前端和服务。 +Description: Harbor 是䞀䞪容噚化 LLM 工具包垮助悚运行 LLM 和附加服务。它由 CLI 和配套应甚皋序组成垮助悚蜻束管理和运行人工智胜服务。 +Tags: +- llm +- ollama +- 人工智胜 +- 倧语蚀暡型 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.34 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.yaml index 604e00172211..b41021a0c493 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.34 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.34 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.installer.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.installer.yaml index 8211814b0ba6..33a835c9a0ec 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.installer.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.installer.yaml @@ -1,26 +1,26 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.5 -UpgradeBehavior: install -ReleaseDate: 2026-03-16 -Installers: -- Architecture: x64 - InstallerType: nullsoft - Scope: user - InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.5/Harbor_0.4.5_x64-setup.exe - InstallerSha256: 92D67601D01839EE240D7A80A4D2160BA932D5F3BB034FD2B572BAA3877749F9 - ProductCode: Harbor -- Architecture: x64 - InstallerType: wix - Scope: machine - InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.5/Harbor_0.4.5_x64_en-US.msi - InstallerSha256: 8966DDBC43BB86E4FC2C10DA874C38631640745F6A81A016BD3F8A1DFFCE2C0A - InstallerSwitches: - InstallLocation: INSTALLDIR="" - ProductCode: '{6CAFBF8F-B4A4-483A-BE11-D50535ECB80D}' - AppsAndFeaturesEntries: - - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.5 +UpgradeBehavior: install +ReleaseDate: 2026-03-16 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.5/Harbor_0.4.5_x64-setup.exe + InstallerSha256: 415F65C107C590452DC32426435268B7851ACF221FC2279BC9C569D8EB24447B + ProductCode: Harbor +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.5/Harbor_0.4.5_x64_en-US.msi + InstallerSha256: D3E36695CF7F47207645B21F33FCBA43FF3E3625D4E312EF335A4C2EA9584D48 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{385D25EC-E370-49BE-B2F7-DED4152660E6}' + AppsAndFeaturesEntries: + - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.locale.en-US.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.locale.en-US.yaml index 5cf90c321cf8..73d0bee6516c 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.locale.en-US.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.locale.en-US.yaml @@ -1,36 +1,36 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.5 -PackageLocale: en-US -Publisher: harbor -PublisherUrl: https://av.codes/ -PublisherSupportUrl: https://github.com/av/harbor/issues -Author: Ivan Charapanau -PackageName: Harbor -PackageUrl: https://github.com/av/harbor -License: Apache-2.0 -LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE -ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. -Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. -Tags: -- ai -- large-language-model -- llm -- ollama -ReleaseNotes: |- - Harbor App Updates - This release introduces multiple QoL improvements in the Harbor desktop app. - - You can pin favorite services, service cards are cleaner - - UI for harbor models - download llama.cpp, HuggingFace and Ollama models through the app - - Globally available terminal pane with a global (Ctrl + `) shortcut - - Service details page allows to open and tail service logs - - Application sidebar shows shortcuts to currently running active services - - new harbor log aliaas for harbor logs or harbor l - - Fix: concurrent harbor ls during harbor down causing overly high CPU usage - - Fix: model pulling logic for llama.cpp now uses run_llamacpp_pull. - Full Changelog: https://github.com/av/harbor/compare/v0.4.4...v0.4.5 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.5 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.5 +PackageLocale: en-US +Publisher: harbor +PublisherUrl: https://av.codes/ +PublisherSupportUrl: https://github.com/av/harbor/issues +Author: Ivan Charapanau +PackageName: Harbor +PackageUrl: https://github.com/av/harbor +License: Apache-2.0 +LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE +ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. +Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. +Tags: +- ai +- large-language-model +- llm +- ollama +ReleaseNotes: |- + Harbor App Updates + This release introduces multiple QoL improvements in the Harbor desktop app. + - You can pin favorite services, service cards are cleaner + - UI for harbor models - download llama.cpp, HuggingFace and Ollama models through the app + - Globally available terminal pane with a global (Ctrl + `) shortcut + - Service details page allows to open and tail service logs + - Application sidebar shows shortcuts to currently running active services + - new harbor log aliaas for harbor logs or harbor l + - Fix: concurrent harbor ls during harbor down causing overly high CPU usage + - Fix: model pulling logic for llama.cpp now uses run_llamacpp_pull. + Full Changelog: https://github.com/av/harbor/compare/v0.4.4...v0.4.5 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.5 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.locale.zh-CN.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.locale.zh-CN.yaml index 651cee9a8404..1e0d715c3f53 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.locale.zh-CN.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.locale.zh-CN.yaml @@ -1,16 +1,16 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.5 -PackageLocale: zh-CN -ShortDescription: 只需䞀䞪呜什即可蜻束运行 LLM 后端、API、前端和服务。 -Description: Harbor 是䞀䞪容噚化 LLM 工具包垮助悚运行 LLM 和附加服务。它由 CLI 和配套应甚皋序组成垮助悚蜻束管理和运行人工智胜服务。 -Tags: -- llm -- ollama -- 人工智胜 -- 倧语蚀暡型 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.5 -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.5 +PackageLocale: zh-CN +ShortDescription: 只需䞀䞪呜什即可蜻束运行 LLM 后端、API、前端和服务。 +Description: Harbor 是䞀䞪容噚化 LLM 工具包垮助悚运行 LLM 和附加服务。它由 CLI 和配套应甚皋序组成垮助悚蜻束管理和运行人工智胜服务。 +Tags: +- llm +- ollama +- 人工智胜 +- 倧语蚀暡型 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.5 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.yaml index 1e141f00b360..ee38378ce4a8 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.5 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.installer.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.installer.yaml index c700d25467e7..50e98672faea 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.installer.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.installer.yaml @@ -1,26 +1,26 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.7 -UpgradeBehavior: install -ReleaseDate: 2026-04-03 -Installers: -- Architecture: x64 - InstallerType: nullsoft - Scope: user - InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.7/Harbor_0.4.7_x64-setup.exe - InstallerSha256: 189E12B9E31230288BF40C3B354867B4F3AA8FF9945AFE1051174FBF16E7F171 - ProductCode: Harbor -- Architecture: x64 - InstallerType: wix - Scope: machine - InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.7/Harbor_0.4.7_x64_en-US.msi - InstallerSha256: D281A7209ECE4F00EF1D7293A6BF611A1869A04038BC1390B596EC1B067DF07B - InstallerSwitches: - InstallLocation: INSTALLDIR="" - ProductCode: '{B4483CF6-BCC2-4A32-B5CC-B869F872E806}' - AppsAndFeaturesEntries: - - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.7 +UpgradeBehavior: install +ReleaseDate: 2026-04-03 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.7/Harbor_0.4.7_x64-setup.exe + InstallerSha256: F7B1EC1DB6FD03060B9B8C66B241D8F0E6883F5F6DE21DBF6EF0B8A8B082DD6C + ProductCode: Harbor +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.7/Harbor_0.4.7_x64_en-US.msi + InstallerSha256: 6ABDD97B15CD4017D435A8DE9BAC3F444A49E5F3831AA298654EB4A9A2EBC136 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{0649BE45-0AEF-4CF1-BEEA-A47C6C31C135}' + AppsAndFeaturesEntries: + - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.locale.en-US.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.locale.en-US.yaml index 58a0881bbc2b..abfed10aeeaf 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.locale.en-US.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.locale.en-US.yaml @@ -1,33 +1,33 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.7 -PackageLocale: en-US -Publisher: harbor -PublisherUrl: https://av.codes/ -PublisherSupportUrl: https://github.com/av/harbor/issues -Author: Ivan Charapanau -PackageName: Harbor -PackageUrl: https://github.com/av/harbor -License: Apache-2.0 -LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE -ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. -Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. -Tags: -- ai -- large-language-model -- llm -- ollama -ReleaseNotes: |- - Hermes Agent - Autonomous AI agent by Nous Research with persistent memory, extensible skills, multi-platform gateway, and OpenAI-compatible API. - harbor up hermes - Misc - - llamacpp can now be built from source with harbor llamacpp build on (CUDA and ROCm supported). - - Rewrote llamacpp documentation with updated model management workflow. - - Added rocm and build as recognized service capabilities. - Full Changelog: https://github.com/av/harbor/compare/v0.4.6...v0.4.7 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.7 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.7 +PackageLocale: en-US +Publisher: harbor +PublisherUrl: https://av.codes/ +PublisherSupportUrl: https://github.com/av/harbor/issues +Author: Ivan Charapanau +PackageName: Harbor +PackageUrl: https://github.com/av/harbor +License: Apache-2.0 +LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE +ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. +Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. +Tags: +- ai +- large-language-model +- llm +- ollama +ReleaseNotes: |- + Hermes Agent + Autonomous AI agent by Nous Research with persistent memory, extensible skills, multi-platform gateway, and OpenAI-compatible API. + harbor up hermes + Misc + - llamacpp can now be built from source with harbor llamacpp build on (CUDA and ROCm supported). + - Rewrote llamacpp documentation with updated model management workflow. + - Added rocm and build as recognized service capabilities. + Full Changelog: https://github.com/av/harbor/compare/v0.4.6...v0.4.7 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.7 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.locale.zh-CN.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.locale.zh-CN.yaml index 18b758ca744f..62244162d507 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.locale.zh-CN.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.locale.zh-CN.yaml @@ -1,16 +1,16 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.7 -PackageLocale: zh-CN -ShortDescription: 只需䞀䞪呜什即可蜻束运行 LLM 后端、API、前端和服务。 -Description: Harbor 是䞀䞪容噚化 LLM 工具包垮助悚运行 LLM 和附加服务。它由 CLI 和配套应甚皋序组成垮助悚蜻束管理和运行人工智胜服务。 -Tags: -- llm -- ollama -- 人工智胜 -- 倧语蚀暡型 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.7 -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.7 +PackageLocale: zh-CN +ShortDescription: 只需䞀䞪呜什即可蜻束运行 LLM 后端、API、前端和服务。 +Description: Harbor 是䞀䞪容噚化 LLM 工具包垮助悚运行 LLM 和附加服务。它由 CLI 和配套应甚皋序组成垮助悚蜻束管理和运行人工智胜服务。 +Tags: +- llm +- ollama +- 人工智胜 +- 倧语蚀暡型 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.7 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.yaml index 3f2f3afc0070..cbe1cbd6cbbc 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.7 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.installer.yaml b/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.installer.yaml new file mode 100644 index 000000000000..58bc41d11d54 --- /dev/null +++ b/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: iFileSpace.iFile +PackageVersion: 2.6.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ifile.exe + PortableCommandAlias: ifile +Commands: +- ifile +ReleaseDate: 2026-05-06 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.ifile.space/apps/ifile_windows_amd64_2.6.0.zip + InstallerSha256: 5F0C8BCEA6ACFCBC98078D0CA521756479A7D520D1E26509561525D1ED038C40 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.locale.en-US.yaml b/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.locale.en-US.yaml new file mode 100644 index 000000000000..ef38ad570037 --- /dev/null +++ b/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: iFileSpace.iFile +PackageVersion: 2.6.0 +PackageLocale: en-US +Publisher: Zhengzhou Huake Import & Export Trade Co., Ltd. +PublisherUrl: https://ifile.space/ +PublisherSupportUrl: https://ifile.space/forum +Author: Zhengzhou Huake Import & Export Trade Co., Ltd. +PackageName: iFile +PackageUrl: https://ifile.space/download +License: Proprietary +Copyright: Copyright © iFileSpace +ShortDescription: Simple file management tool. Build your own private cloud drive system in seconds. +Description: iFileSpace is an online personal file management tool and online cloud drive program that allows you to build a private cloud drive quickly with one click. It supports local storage and object storage (Alibaba Cloud OSS, Tencent Cloud COS, Huawei Cloud OBS, UPYUN, Qiniu, OneDrive and other S3-compatible object storage). It could be an alternative to cloud drives like Baidu Netdisk when deployed on public servers, where you have full control over the data! It can also be deployed as an intranet file management tool on home soft routers, NASs, and other personal storage devices. It supports multi-user, multi-storage, library, WebDAV, background download and fine-grained background access management. +Tags: +- file +- server +- share +- storage +ReleaseNotesUrl: https://ifile.space/update?action=serve +PurchaseUrl: https://ifile.space/pro +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://ifile.space/docs/home +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.locale.zh-CN.yaml b/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.locale.zh-CN.yaml new file mode 100644 index 000000000000..2e4abd0f04a7 --- /dev/null +++ b/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.locale.zh-CN.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: iFileSpace.iFile +PackageVersion: 2.6.0 +PackageLocale: zh-CN +Publisher: 郑州华科进出口莞易有限公叞 +PublisherUrl: https://ifile.space/ +PublisherSupportUrl: https://ifile.space/forum +Author: 郑州华科进出口莞易有限公叞 +PackageName: iFile +PackageUrl: https://ifile.space/download +License: 䞓有蜯件 +Copyright: Copyright © iFileSpace +ShortDescription: 简掁的文件管理工具快速搭建䞓属的私人眑盘系统 +Description: iFileSpace 是䞀䞪圚线䞪人文件管理工具圚线眑盘皋序可快速䞀键搭建私人云盘支持本地存傚和对象存傚阿里云 OSS、腟讯云 COS、华䞺云 OBS、又拍云、䞃牛云、OneDrive 及其他支持 S3 协议对象存傚劂郚眲圚公眑服务噚可替代癟床眑盘等圚线眑盘自䞻搭建数据完党自䞻管理也可郚眲圚家庭蜯路由、NAS 等䞪人存傚讟倇䞭䜜䞺局域眑文件管理工具䜿甚。支持倚甚户、倚存傚空闎、资料库、WebDAV、犻线䞋蜜及粟细的后台权限管理。 +Tags: +- 共享 +- 分享 +- 发送 +- 文件 +- 服务噚 +ReleaseNotes: |- + 【新增】文件页面星瀺目圕 + 【新增】盞册及囟床支持分组 + 【䌘化】助手曎新曎新将重眮助手数据劂需保留请先倇仜 + 【修倍】郚分 bug 修倍 + 【新增】劂需客户端请配合桌面端 2.1.0 䜿甚 +ReleaseNotesUrl: https://ifile.space/update?action=serve +PurchaseUrl: https://ifile.space/pro +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://ifile.space/docs/home +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.yaml b/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.yaml new file mode 100644 index 000000000000..f9988013becb --- /dev/null +++ b/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: iFileSpace.iFile +PackageVersion: 2.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.installer.yaml b/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.installer.yaml new file mode 100644 index 000000000000..cffe1de6af39 --- /dev/null +++ b/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: iFileSpace.iFileSpace +PackageVersion: 2.1.0 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 18a3c3db-569a-5885-acbe-fa7a8d8b32f3 +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.ifile.space/update/iFileSpace-2.1.0-win-x64.exe + InstallerSha256: 5E18CEECC704F3A5BAF6436604F2BF93CA4DDCCEB04BE14090EC6867167C4731 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.locale.en-US.yaml b/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.locale.en-US.yaml new file mode 100644 index 000000000000..7368bbf97b07 --- /dev/null +++ b/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.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.12.0.schema.json + +PackageIdentifier: iFileSpace.iFileSpace +PackageVersion: 2.1.0 +PackageLocale: en-US +Publisher: https://ifile.space +PublisherUrl: https://ifile.space/ +PublisherSupportUrl: https://ifile.space/forum +Author: Zhengzhou Huake Import & Export Trade Co., Ltd. +PackageName: iFileSpace +PackageUrl: https://ifile.space/download +License: Proprietary +Copyright: Copyright © iFileSpace +ShortDescription: Simple file management tool. Build your own private cloud drive system in seconds. +Description: iFileSpace is an online personal file management tool and online cloud drive program that allows you to build a private cloud drive quickly with one click. It supports local storage and object storage (Alibaba Cloud OSS, Tencent Cloud COS, Huawei Cloud OBS, UPYUN, Qiniu, OneDrive and other S3-compatible object storage). It could be an alternative to cloud drives like Baidu Netdisk when deployed on public servers, where you have full control over the data! It can also be deployed as an intranet file management tool on home soft routers, NASs, and other personal storage devices. It supports multi-user, multi-storage, library, WebDAV, background download and fine-grained background access management. +Tags: +- file +- ifile +- server +- share +- storage +ReleaseNotesUrl: https://ifile.space/update?action=desktop +PurchaseUrl: https://ifile.space/pro +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://ifile.space/docs/home +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.locale.zh-CN.yaml b/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.locale.zh-CN.yaml new file mode 100644 index 000000000000..c9026deb447c --- /dev/null +++ b/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: iFileSpace.iFileSpace +PackageVersion: 2.1.0 +PackageLocale: zh-CN +Publisher: https://ifile.space +PublisherUrl: https://ifile.space/ +PublisherSupportUrl: https://ifile.space/forum +Author: 郑州华科进出口莞易有限公叞 +PackageName: iFileSpace +PackageUrl: https://ifile.space/download +License: 䞓有蜯件 +Copyright: Copyright © iFileSpace +ShortDescription: 简掁的文件管理工具快速搭建䞓属的私人眑盘系统 +Description: iFileSpace 是䞀䞪圚线䞪人文件管理工具圚线眑盘皋序可快速䞀键搭建私人云盘支持本地存傚和对象存傚阿里云 OSS、腟讯云 COS、华䞺云 OBS、又拍云、䞃牛云、OneDrive 及其他支持 S3 协议对象存傚劂郚眲圚公眑服务噚可替代癟床眑盘等圚线眑盘自䞻搭建数据完党自䞻管理也可郚眲圚家庭蜯路由、NAS 等䞪人存傚讟倇䞭䜜䞺局域眑文件管理工具䜿甚。支持倚甚户、倚存傚空闎、资料库、WebDAV、犻线䞋蜜及粟细的后台权限管理。 +Tags: +- 共享 +- 分享 +- 发送 +- 文件 +- 服务噚 +ReleaseNotes: |- + 【新增】文件页面星瀺目圕 + 【新增】盞册及囟床支持分组 + 【䌘化】助手曎新曎新将重眮助手数据劂需保留请先倇仜 + 【修倍】郚分 bug 修倍 + 【新增】需配合服务端 2.6.0 䜿甚 + 【新增】新增 linux 桌面端 +ReleaseNotesUrl: https://ifile.space/update?action=desktop +PurchaseUrl: https://ifile.space/pro +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://ifile.space/docs/home +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.yaml b/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.yaml new file mode 100644 index 000000000000..85cad538678e --- /dev/null +++ b/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: iFileSpace.iFileSpace +PackageVersion: 2.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/k/KDE/Ruqola/2.7.1/KDE.Ruqola.installer.yaml b/manifests/k/KDE/Ruqola/2.7.1/KDE.Ruqola.installer.yaml index f9a0a22cb807..c2f6530267a4 100644 --- a/manifests/k/KDE/Ruqola/2.7.1/KDE.Ruqola.installer.yaml +++ b/manifests/k/KDE/Ruqola/2.7.1/KDE.Ruqola.installer.yaml @@ -9,14 +9,14 @@ ProductCode: Ruqola Installers: - Architecture: x64 Scope: user - InstallerUrl: https://cdn.kde.org/ci-builds/network/ruqola/2.7/windows/ruqola-2.7-12485-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 143075406CD1C917A93FAAD755D01BF7CADAB04311B6DE0BFE42C92E82C5B0E6 + InstallerUrl: https://cdn.kde.org/ci-builds/network/ruqola/2.7/windows/ruqola-2.7-12500-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 5753D5B719D8875B9E37463480FD87890532BEBC674A8C10AAC6C7A072CDD559 InstallerSwitches: Custom: /CurrentUser - Architecture: x64 Scope: machine - InstallerUrl: https://cdn.kde.org/ci-builds/network/ruqola/2.7/windows/ruqola-2.7-12485-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 143075406CD1C917A93FAAD755D01BF7CADAB04311B6DE0BFE42C92E82C5B0E6 + InstallerUrl: https://cdn.kde.org/ci-builds/network/ruqola/2.7/windows/ruqola-2.7-12500-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 5753D5B719D8875B9E37463480FD87890532BEBC674A8C10AAC6C7A072CDD559 InstallerSwitches: Custom: /AllUsers ManifestType: installer diff --git a/manifests/k/KatKoyn/KatKoynCore/2.4/KatKoyn.KatKoynCore.locale.en-US.yaml b/manifests/k/KatKoyn/KatKoynCore/2.4/KatKoyn.KatKoynCore.locale.en-US.yaml index 8d7d761f5f89..2c95907fc0f9 100644 --- a/manifests/k/KatKoyn/KatKoynCore/2.4/KatKoyn.KatKoynCore.locale.en-US.yaml +++ b/manifests/k/KatKoyn/KatKoynCore/2.4/KatKoyn.KatKoynCore.locale.en-US.yaml @@ -13,12 +13,13 @@ PackageName: KatKoyn Core PackageUrl: https://github.com/KatKoyn/katkoyn-client License: MIT Licence LicenseUrl: https://github.com/KatKoyn/katkoyn-client/blob/master/COPYING -Copyright: Copyright (c) 2009-2017 The Bitcoin Core developers +Copyright: © 2009-2017 The Bitcoin Core developers CopyrightUrl: https://github.com/KatKoyn/katkoyn-client/blob/master/COPYING ShortDescription: KatKoyn core software Description: KatKoyn is a cryptocurrency like Bitcoin and uses Scrypt instead of SHA-256 for the mining algorithm, much like Litecoin. Moniker: KAT -# Tags: +Tags: +- cryptocurrency ReleaseNotes: | This is the first release with new KatKoyn branding. All functionality is identical to the previous Nyancoin release. All previous Nyancoin keys, wallets, blockchain data and everything else is the same. @@ -45,7 +46,7 @@ ReleaseNotes: | New installations - Download the new version, or compile from source if required. - For GUI desktop versions, copy the executable to a suitable location. - - For katkoynd command line versions, it is recommended to run the executable under it's own user, with the files in a directory for that user. + - For katkoynd command line versions, it is recommended to run the executable under its own user, with the files in a directory for that user. - Start the executable, the default data location will be used. - Alternatively a custom location can be set using command line options. - Wait while the blockchain is downloaded - this will take several hours or more depending on system capabilities. diff --git a/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.installer.yaml b/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.installer.yaml index d201cf9fdbf8..d15728e63975 100644 --- a/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.installer.yaml +++ b/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.installer.yaml @@ -1,136 +1,136 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Kingsoft.WPSOffice.CN -PackageVersion: 12.1.0.25865 -InstallerType: nullsoft -InstallerSwitches: - Custom: -agreelicense -InstallerSuccessCodes: -- 1223 -UpgradeBehavior: install -Protocols: -- ksoapp -- ksocustomprotocol -- ksoet -- ksolink -- ksopdf -- ksoqing -- ksowebstartupet -- ksowebstartupwpp -- ksowebstartupwps -- ksowpp -- ksowps -- ksowpscloudsvr -FileExtensions: -- arw -- bmp -- cr2 -- cr3 -- crw -- csv -- dif -- dng -- doc -- docm -- docx -- dot -- dotm -- dotx -- dps -- dpso -- dpss -- dpsx -- dpt -- dptx -- dwg -- dxf -- emf -- epub -- et -- eto -- ets -- ett -- ettx -- etx -- gif -- heic -- ico -- iqy -- jfif -- jpe -- jpeg -- jpg -- mobi -- mrw -- nef -- ofd -- opg -- orf -- pbm -- pcx -- pdf -- pdfwpsshellnew -- pef -- pgm -- png -- pot -- potm -- potx -- ppa -- ppam -- ppm -- pps -- ppsm -- ppsx -- ppt -- pptm -- pptx -- raf -- ras -- rtf -- rw2 -- sldm -- sldx -- slk -- tbi -- tga -- tif -- tiff -- tppdf -- wap -- wbm -- wbmp -- wdp -- webp -- wmf -- wps -- wpso -- wpss -- wpsx -- wpt -- wptx -- x3f -- xbm -- xla -- xlam -- xlk -- xls -- xlsb -- xlsm -- xlsx -- xlt -- xltm -- xltx -- xpm -ProductCode: Kingsoft Office -ReleaseDate: 2026-04-14 -AppsAndFeaturesEntries: -- Publisher: Kingsoft Corp. - ProductCode: Kingsoft Office -Installers: -- Architecture: x86 - InstallerUrl: https://official-package.wpscdn.cn/wps/download/WPS_Setup_25865.exe - InstallerSha256: F9B54067077A7D143C06AEAE1DEBCE7C4CAE772F301851134003D7793AD9D804 -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Kingsoft.WPSOffice.CN +PackageVersion: 12.1.0.25865 +InstallerType: nullsoft +InstallerSwitches: + Custom: -agreelicense +InstallerSuccessCodes: +- 1223 +UpgradeBehavior: install +Protocols: +- ksoapp +- ksocustomprotocol +- ksoet +- ksolink +- ksopdf +- ksoqing +- ksowebstartupet +- ksowebstartupwpp +- ksowebstartupwps +- ksowpp +- ksowps +- ksowpscloudsvr +FileExtensions: +- arw +- bmp +- cr2 +- cr3 +- crw +- csv +- dif +- dng +- doc +- docm +- docx +- dot +- dotm +- dotx +- dps +- dpso +- dpss +- dpsx +- dpt +- dptx +- dwg +- dxf +- emf +- epub +- et +- eto +- ets +- ett +- ettx +- etx +- gif +- heic +- ico +- iqy +- jfif +- jpe +- jpeg +- jpg +- mobi +- mrw +- nef +- ofd +- opg +- orf +- pbm +- pcx +- pdf +- pdfwpsshellnew +- pef +- pgm +- png +- pot +- potm +- potx +- ppa +- ppam +- ppm +- pps +- ppsm +- ppsx +- ppt +- pptm +- pptx +- raf +- ras +- rtf +- rw2 +- sldm +- sldx +- slk +- tbi +- tga +- tif +- tiff +- tppdf +- wap +- wbm +- wbmp +- wdp +- webp +- wmf +- wps +- wpso +- wpss +- wpsx +- wpt +- wptx +- x3f +- xbm +- xla +- xlam +- xlk +- xls +- xlsb +- xlsm +- xlsx +- xlt +- xltm +- xltx +- xpm +ProductCode: Kingsoft Office +ReleaseDate: 2026-04-14 +AppsAndFeaturesEntries: +- Publisher: Kingsoft Corp. + ProductCode: Kingsoft Office +Installers: +- Architecture: x86 + InstallerUrl: https://official-package.wpscdn.cn/wps/download/WPS_Setup_25865.exe + InstallerSha256: 94BA7E304BB2B95B77023C7DC73808287B3771C83BA63C083F3E8A303A4D6CC5 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.locale.en-US.yaml b/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.locale.en-US.yaml index 51573693d6d3..412594360375 100644 --- a/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.locale.en-US.yaml +++ b/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.locale.en-US.yaml @@ -1,41 +1,41 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Kingsoft.WPSOffice.CN -PackageVersion: 12.1.0.25865 -PackageLocale: en-US -Publisher: Kingsoft Corp. -PublisherUrl: https://www.wps.cn/ -PublisherSupportUrl: https://helpdesk.wps.cn/ -PrivacyUrl: https://privacy.wps.cn/policies/privacy/wps-office -Author: Zhuhai Kingsoft Office Software Co., Ltd. -PackageName: WPS Office -PackageUrl: https://platform.wps.cn/ -License: Proprietary -LicenseUrl: https://privacy.wps.cn/policies/eula/personal-wps-office/ -Copyright: Copyright © 2026 Zhuhai Kingsoft Office Software Co., Ltd., Wuhan Kingsoft Office Software Co., Ltd., Beijing Kingsoft Office Software, Inc., Anhui Kingsoft Office Software Co., Ltd., Guangzhou Kingsoft Mobile Technology Co., Ltd. All rights reserved. -ShortDescription: Complete office suite with PDF editor -Description: WPS Office is a one-stop office service platform compatible with Word, Excel and PowerPoint. It supports PDF document editing and format conversion, and integrates features such as mind map, flowchart and form. -Tags: -- collaboration -- docs -- document -- editor -- excel -- office -- pdf -- powerpoint -- presentation -- sheet -- slide -- spreadsheet -- template -- word -- work -- writer -Agreements: -- AgreementLabel: End User License Agreement (EULA) - AgreementUrl: https://privacy.wps.cn/policies/eula/personal-wps-office/ -PurchaseUrl: https://vip.wps.cn/spa/2021/vip-service-web/index.html -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Kingsoft.WPSOffice.CN +PackageVersion: 12.1.0.25865 +PackageLocale: en-US +Publisher: Kingsoft Corp. +PublisherUrl: https://www.wps.cn/ +PublisherSupportUrl: https://helpdesk.wps.cn/ +PrivacyUrl: https://privacy.wps.cn/policies/privacy/wps-office +Author: Zhuhai Kingsoft Office Software Co., Ltd. +PackageName: WPS Office +PackageUrl: https://platform.wps.cn/ +License: Proprietary +LicenseUrl: https://privacy.wps.cn/policies/eula/personal-wps-office/ +Copyright: Copyright © 2026 Zhuhai Kingsoft Office Software Co., Ltd., Wuhan Kingsoft Office Software Co., Ltd., Beijing Kingsoft Office Software, Inc., Anhui Kingsoft Office Software Co., Ltd., Guangzhou Kingsoft Mobile Technology Co., Ltd. All rights reserved. +ShortDescription: Complete office suite with PDF editor +Description: WPS Office is a one-stop office service platform compatible with Word, Excel and PowerPoint. It supports PDF document editing and format conversion, and integrates features such as mind map, flowchart and form. +Tags: +- collaboration +- docs +- document +- editor +- excel +- office +- pdf +- powerpoint +- presentation +- sheet +- slide +- spreadsheet +- template +- word +- work +- writer +Agreements: +- AgreementLabel: End User License Agreement (EULA) + AgreementUrl: https://privacy.wps.cn/policies/eula/personal-wps-office/ +PurchaseUrl: https://vip.wps.cn/spa/2021/vip-service-web/index.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.locale.zh-CN.yaml b/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.locale.zh-CN.yaml index 5c3d7dfea40f..c0afcb31844d 100644 --- a/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.locale.zh-CN.yaml +++ b/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.locale.zh-CN.yaml @@ -1,41 +1,41 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: Kingsoft.WPSOffice.CN -PackageVersion: 12.1.0.25865 -PackageLocale: zh-CN -Publisher: Kingsoft Corp. -PublisherUrl: https://www.wps.cn/ -PublisherSupportUrl: https://helpdesk.wps.cn/ -PrivacyUrl: https://privacy.wps.cn/policies/privacy/wps-office -Author: 珠海金山办公蜯件有限公叞 -PackageName: WPS Office -PackageUrl: https://platform.wps.cn/ -License: 䞓有蜯件 -LicenseUrl: https://privacy.wps.cn/policies/eula/personal-wps-office/ -Copyright: 版权所有© 2026 珠海金山办公蜯件有限公叞、歊汉金山办公蜯件有限公叞、北京金山办公蜯件股仜有限公叞、安埜金山办公蜯件有限公叞、广州金山移劚科技有限公叞。保留所有权利。 -ShortDescription: 䞀站匏办公服务平台 -Description: WPS Office 䞀站匏办公服务平台具有可兌容 Word、Excel、PPT 䞉倧办公套组的䞍同栌匏支持 PDF 文档的猖蟑䞎栌匏蜬换集成思绎富囟、流皋囟、衚单等功胜。 -Tags: -- excel -- office -- pdf -- powerpoint -- ppt -- word -- 办公 -- 协䜜 -- 协同 -- 幻灯片 -- 文字 -- 文档 -- 暡板 -- 挔瀺 -- 猖蟑噚 -- 衚栌 -Agreements: -- AgreementLabel: 最终甚户讞可协议 (EULA) - AgreementUrl: https://privacy.wps.cn/policies/eula/personal-wps-office/ -PurchaseUrl: https://vip.wps.cn/spa/2021/vip-service-web/index.html -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Kingsoft.WPSOffice.CN +PackageVersion: 12.1.0.25865 +PackageLocale: zh-CN +Publisher: Kingsoft Corp. +PublisherUrl: https://www.wps.cn/ +PublisherSupportUrl: https://helpdesk.wps.cn/ +PrivacyUrl: https://privacy.wps.cn/policies/privacy/wps-office +Author: 珠海金山办公蜯件有限公叞 +PackageName: WPS Office +PackageUrl: https://platform.wps.cn/ +License: 䞓有蜯件 +LicenseUrl: https://privacy.wps.cn/policies/eula/personal-wps-office/ +Copyright: 版权所有© 2026 珠海金山办公蜯件有限公叞、歊汉金山办公蜯件有限公叞、北京金山办公蜯件股仜有限公叞、安埜金山办公蜯件有限公叞、广州金山移劚科技有限公叞。保留所有权利。 +ShortDescription: 䞀站匏办公服务平台 +Description: WPS Office 䞀站匏办公服务平台具有可兌容 Word、Excel、PPT 䞉倧办公套组的䞍同栌匏支持 PDF 文档的猖蟑䞎栌匏蜬换集成思绎富囟、流皋囟、衚单等功胜。 +Tags: +- excel +- office +- pdf +- powerpoint +- ppt +- word +- 办公 +- 协䜜 +- 协同 +- 幻灯片 +- 文字 +- 文档 +- 暡板 +- 挔瀺 +- 猖蟑噚 +- 衚栌 +Agreements: +- AgreementLabel: 最终甚户讞可协议 (EULA) + AgreementUrl: https://privacy.wps.cn/policies/eula/personal-wps-office/ +PurchaseUrl: https://vip.wps.cn/spa/2021/vip-service-web/index.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.yaml b/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.yaml index cc4ec7141acb..4c612c9ede10 100644 --- a/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.yaml +++ b/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: Kingsoft.WPSOffice.CN -PackageVersion: 12.1.0.25865 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Kingsoft.WPSOffice.CN +PackageVersion: 12.1.0.25865 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/k/KraXen72/crankshaft/1.12.0/KraXen72.crankshaft.installer.yaml b/manifests/k/KraXen72/crankshaft/1.12.0/KraXen72.crankshaft.installer.yaml new file mode 100644 index 000000000000..5f37884ae3ac --- /dev/null +++ b/manifests/k/KraXen72/crankshaft/1.12.0/KraXen72.crankshaft.installer.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: KraXen72.crankshaft +PackageVersion: 1.12.0 +InstallerLocale: en-US +InstallerType: nullsoft +ProductCode: d5389f1f-98c4-5624-b2f4-2fd96405c258 +AppsAndFeaturesEntries: +- DisplayName: crankshaft 1.11.1 + ProductCode: d5389f1f-98c4-5624-b2f4-2fd96405c258 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/KraXen72/crankshaft/releases/download/1.12.0/crankshaft-setup-win-x64.exe + InstallerSha256: 633A587E9E67D1EA118B3AFC2EE3CDE37399C6FEB43993BA1F66CBD732705030 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/k/KraXen72/crankshaft/1.12.0/KraXen72.crankshaft.locale.en-US.yaml b/manifests/k/KraXen72/crankshaft/1.12.0/KraXen72.crankshaft.locale.en-US.yaml new file mode 100644 index 000000000000..570e099563af --- /dev/null +++ b/manifests/k/KraXen72/crankshaft/1.12.0/KraXen72.crankshaft.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: KraXen72.crankshaft +PackageVersion: 1.12.0 +PackageLocale: en-US +Publisher: KraXen72 +PublisherUrl: https://github.com/KraXen72 +PublisherSupportUrl: https://github.com/KraXen72/crankshaft/issues +Author: KraXen72 +PackageName: crankshaft +PackageUrl: https://github.com/KraXen72/crankshaft +License: GPL-3.0 +LicenseUrl: https://github.com/KraXen72/crankshaft/blob/HEAD/LICENSE +Copyright: Copyright © 2022 KraXen72 +ShortDescription: Crankshaft Krunker Client by KraXen72 +Tags: +- electron +- gatoclient +- krunker +- krunkerio +- lightweight +- typescript +- userscripts +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/KraXen72/crankshaft/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/k/KraXen72/crankshaft/1.12.0/KraXen72.crankshaft.yaml b/manifests/k/KraXen72/crankshaft/1.12.0/KraXen72.crankshaft.yaml new file mode 100644 index 000000000000..a6b1bba46bc8 --- /dev/null +++ b/manifests/k/KraXen72/crankshaft/1.12.0/KraXen72.crankshaft.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: KraXen72.crankshaft +PackageVersion: 1.12.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kraken/KrakenDesktop/1.11.2/Kraken.KrakenDesktop.installer.yaml b/manifests/k/Kraken/KrakenDesktop/1.11.2/Kraken.KrakenDesktop.installer.yaml deleted file mode 100644 index 463d5784e98c..000000000000 --- a/manifests/k/Kraken/KrakenDesktop/1.11.2/Kraken.KrakenDesktop.installer.yaml +++ /dev/null @@ -1,19 +0,0 @@ -# Automatically updated by the winget bot at 2026/Jan/05 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Kraken.KrakenDesktop -PackageVersion: 1.11.2 -InstallerType: wix -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2025-03-13 -AppsAndFeaturesEntries: -- UpgradeCode: "{239520EB-CBE7-4EF6-BC20-ABE5F0FE7F76}" - ProductCode: "{C75B6728-642A-4571-ADCC-EE6FCE0D87E3}" -Installers: -- Architecture: x64 - InstallerUrl: https://desktop-downloads.kraken.com/latest/KrakenDesktopInstaller.msi - InstallerSha256: D71F6008EB4475E8978571AEDEE1EDBB9F8CE9767382B8132BAF74930380FD1A - ProductCode: "{00C988E6-4864-4E00-B24B-E4FABF428E74}" -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/k/Kraken/KrakenDesktop/1.11.2/Kraken.KrakenDesktop.locale.en-US.yaml b/manifests/k/Kraken/KrakenDesktop/1.11.2/Kraken.KrakenDesktop.locale.en-US.yaml deleted file mode 100644 index 61bd7feae393..000000000000 --- a/manifests/k/Kraken/KrakenDesktop/1.11.2/Kraken.KrakenDesktop.locale.en-US.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Automatically updated by the winget bot at 2026/Jan/05 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Kraken.KrakenDesktop -PackageVersion: 1.11.2 -PackageLocale: en-US -Publisher: Payward Inc. -PackageName: Kraken Desktop -License: Proprietary -ShortDescription: Profesional desktop trading terminal for the Kraken cryptocurency exchange. -Tags: -- chart -- crypto -- finance -- trading -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/l/LibreCAD/LibreCAD/2.2.1.5/LibreCAD.LibreCAD.installer.yaml b/manifests/l/LibreCAD/LibreCAD/2.2.1.5/LibreCAD.LibreCAD.installer.yaml new file mode 100644 index 000000000000..09cad03e2030 --- /dev/null +++ b/manifests/l/LibreCAD/LibreCAD/2.2.1.5/LibreCAD.LibreCAD.installer.yaml @@ -0,0 +1,34 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: LibreCAD.LibreCAD +PackageVersion: 2.2.1.5 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +ReleaseDate: 2026-05-02 +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\LibreCAD' +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/LibreCAD/LibreCAD/releases/download/v2.2.1.5/LibreCAD-v2.2.1.5-msvc.exe + InstallerSha256: 7AF37E61BADAA4B9215F182CC843E0075CB976EB79D2AC59BF9DD77D56516261 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 + ProductCode: LibreCAD + AppsAndFeaturesEntries: + - DisplayName: LibreCAD v2.2.1.5 (x64) + ProductCode: LibreCAD +- Architecture: x64 + InstallerUrl: https://github.com/LibreCAD/LibreCAD/releases/download/v2.2.1.5/LibreCAD-v2.2.1.5-win64-msvc.exe + InstallerSha256: 738912FEA40ACA934689444AF9C5CD281572417983CC081C204FE6C779F6941D + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + ProductCode: LibreCAD (x64) + AppsAndFeaturesEntries: + - DisplayName: LibreCAD (x64) v2.2.1.5 (x64) + ProductCode: LibreCAD (x64) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/LibreCAD/LibreCAD/2.2.1.5/LibreCAD.LibreCAD.locale.en-US.yaml b/manifests/l/LibreCAD/LibreCAD/2.2.1.5/LibreCAD.LibreCAD.locale.en-US.yaml new file mode 100644 index 000000000000..aeb51749df35 --- /dev/null +++ b/manifests/l/LibreCAD/LibreCAD/2.2.1.5/LibreCAD.LibreCAD.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: LibreCAD.LibreCAD +PackageVersion: 2.2.1.5 +PackageLocale: en-US +Publisher: LibreCAD Team +PublisherUrl: https://librecad.org/ +PublisherSupportUrl: https://github.com/LibreCAD/LibreCAD/issues +PackageName: LibreCAD +PackageUrl: https://librecad.org/ +License: GPLv2 +LicenseUrl: https://github.com/LibreCAD/LibreCAD/blob/HEAD/LICENSE +ShortDescription: LibreCAD is a cross-platform 2D CAD program written in C++11 using the Qt framework. It can read DXF and DWG files and can write DXF, PDF and SVG files. The user interface is highly customizable, and has dozens of translations. +Moniker: librecad +Tags: +- cad +- drawing +- dxf +- qt +ReleaseNotes: |- + We are pleased to announce the stable release of LibreCAD 2.2.1.5. This maintenance update focuses on refining internationalization (i18n) and resolving various bugs to provide an improved user experience for our global user base. + What's Changed + - Issue #2501: update translations by @dxli in #2502 + - 2.2.1: update translations by @dxli in #2512 + - 2.2.1 fixes by @dxli in #2525 + - 2.2.1 Translations by @dxli in #2531 + - Add crash handler by @dxli in #2542 + - CI: 2.2.1.5 preparation by @dxli in #2544 + Full Changelog: v2.2.1.4...v2.2.1.5 +ReleaseNotesUrl: https://github.com/LibreCAD/LibreCAD/releases/tag/v2.2.1.5 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LibreCAD/LibreCAD/2.2.1.5/LibreCAD.LibreCAD.yaml b/manifests/l/LibreCAD/LibreCAD/2.2.1.5/LibreCAD.LibreCAD.yaml new file mode 100644 index 000000000000..94a7984ae217 --- /dev/null +++ b/manifests/l/LibreCAD/LibreCAD/2.2.1.5/LibreCAD.LibreCAD.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Updater using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: LibreCAD.LibreCAD +PackageVersion: 2.2.1.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/Lingbao/EasyClaw/1.3.46/Lingbao.EasyClaw.installer.yaml b/manifests/l/Lingbao/EasyClaw/1.3.47/Lingbao.EasyClaw.installer.yaml similarity index 84% rename from manifests/l/Lingbao/EasyClaw/1.3.46/Lingbao.EasyClaw.installer.yaml rename to manifests/l/Lingbao/EasyClaw/1.3.47/Lingbao.EasyClaw.installer.yaml index a64d5a6f16e0..4b701f517d97 100644 --- a/manifests/l/Lingbao/EasyClaw/1.3.46/Lingbao.EasyClaw.installer.yaml +++ b/manifests/l/Lingbao/EasyClaw/1.3.47/Lingbao.EasyClaw.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Lingbao.EasyClaw -PackageVersion: 1.3.46 +PackageVersion: 1.3.47 InstallerType: exe Scope: machine InstallModes: @@ -20,6 +20,6 @@ ProductCode: easyclaw Installers: - Architecture: x64 InstallerUrl: https://aibot-install-cdn.easyclaw.com/public/package/easyclawsetup.exe - InstallerSha256: 047EEF82870F8C637866EDFA4FC19C389BB88541A72347262B6787D5E9432B3F + InstallerSha256: DDAFA14BD481CD3F65298C715D5823DBF678E508E85C0E355E9C09C2EADFFE59 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/l/Lingbao/EasyClaw/1.3.46/Lingbao.EasyClaw.locale.en-US.yaml b/manifests/l/Lingbao/EasyClaw/1.3.47/Lingbao.EasyClaw.locale.en-US.yaml similarity index 97% rename from manifests/l/Lingbao/EasyClaw/1.3.46/Lingbao.EasyClaw.locale.en-US.yaml rename to manifests/l/Lingbao/EasyClaw/1.3.47/Lingbao.EasyClaw.locale.en-US.yaml index f765544791a3..3d8c8a3dec66 100644 --- a/manifests/l/Lingbao/EasyClaw/1.3.46/Lingbao.EasyClaw.locale.en-US.yaml +++ b/manifests/l/Lingbao/EasyClaw/1.3.47/Lingbao.EasyClaw.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Lingbao.EasyClaw -PackageVersion: 1.3.46 +PackageVersion: 1.3.47 PackageLocale: en-US Publisher: EasyClaw Team PublisherUrl: https://easyclaw.com/ diff --git a/manifests/l/Lingbao/EasyClaw/1.3.46/Lingbao.EasyClaw.locale.zh-CN.yaml b/manifests/l/Lingbao/EasyClaw/1.3.47/Lingbao.EasyClaw.locale.zh-CN.yaml similarity index 96% rename from manifests/l/Lingbao/EasyClaw/1.3.46/Lingbao.EasyClaw.locale.zh-CN.yaml rename to manifests/l/Lingbao/EasyClaw/1.3.47/Lingbao.EasyClaw.locale.zh-CN.yaml index 7e32a198b3d1..230d9fae3c9f 100644 --- a/manifests/l/Lingbao/EasyClaw/1.3.46/Lingbao.EasyClaw.locale.zh-CN.yaml +++ b/manifests/l/Lingbao/EasyClaw/1.3.47/Lingbao.EasyClaw.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Lingbao.EasyClaw -PackageVersion: 1.3.46 +PackageVersion: 1.3.47 PackageLocale: zh-CN PublisherUrl: https://easyclaw.com/zh-cn PrivacyUrl: https://easyclaw.com/zh-cn/privacy diff --git a/manifests/l/Lingbao/EasyClaw/1.3.46/Lingbao.EasyClaw.yaml b/manifests/l/Lingbao/EasyClaw/1.3.47/Lingbao.EasyClaw.yaml similarity index 91% rename from manifests/l/Lingbao/EasyClaw/1.3.46/Lingbao.EasyClaw.yaml rename to manifests/l/Lingbao/EasyClaw/1.3.47/Lingbao.EasyClaw.yaml index b21661e16142..9989c39fd142 100644 --- a/manifests/l/Lingbao/EasyClaw/1.3.46/Lingbao.EasyClaw.yaml +++ b/manifests/l/Lingbao/EasyClaw/1.3.47/Lingbao.EasyClaw.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Lingbao.EasyClaw -PackageVersion: 1.3.46 +PackageVersion: 1.3.47 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.installer.yaml b/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.installer.yaml index 4a9301197f69..a473a4b6a75f 100644 --- a/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.installer.yaml +++ b/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.installer.yaml @@ -1,19 +1,19 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: leezer3.OpenBVE -PackageVersion: 1.11.3.4 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: '{D617A45D-C2F6-44D1-A85C-CA7FFA91F7FC}_is1' -ReleaseDate: 2025-12-29 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/leezer3/OpenBVE/releases/download/1.11.3.4/openBVE-1.11.3.4-setup.exe - InstallerSha256: 9619CBE05868436EF88EE7CF19F903A6A0A1C576295340F54BA978D3A136AC76 -- Architecture: x64 - InstallerUrl: https://github.com/leezer3/OpenBVE/releases/download/1.11.3.4/openBVE-1.11.3.4-setup.exe - InstallerSha256: 9619CBE05868436EF88EE7CF19F903A6A0A1C576295340F54BA978D3A136AC76 -ManifestType: installer -ManifestVersion: 1.10.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: leezer3.OpenBVE +PackageVersion: 1.11.3.4 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +ProductCode: '{D617A45D-C2F6-44D1-A85C-CA7FFA91F7FC}_is1' +ReleaseDate: 2025-12-29 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/leezer3/OpenBVE/releases/download/1.11.3.4/openBVE-1.11.3.4-setup.exe + InstallerSha256: D2A46B8F18CD2A0E45B968C48396DB1A9D08D159EDA6866FB597A6ED3536C30F +- Architecture: x64 + InstallerUrl: https://github.com/leezer3/OpenBVE/releases/download/1.11.3.4/openBVE-1.11.3.4-setup.exe + InstallerSha256: D2A46B8F18CD2A0E45B968C48396DB1A9D08D159EDA6866FB597A6ED3536C30F +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.locale.en-US.yaml b/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.locale.en-US.yaml index 7bb4fcbd4788..1f7c9b91d44b 100644 --- a/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.locale.en-US.yaml +++ b/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.locale.en-US.yaml @@ -1,48 +1,48 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: leezer3.OpenBVE -PackageVersion: 1.11.3.4 -PackageLocale: en-US -Publisher: The OpenBVE Project -PublisherUrl: https://openbve-project.net/ -PublisherSupportUrl: https://github.com/leezer3/OpenBVE/issues -Author: Christopher Lees -PackageName: openBVE -PackageUrl: https://openbve-project.net/ -License: BSD-2-Clause -LicenseUrl: https://openbve-project.net/copyright/ -Copyright: © 2007 - 2025 The OpenBVE Project, and released into the Public Domain. -ShortDescription: A license-free, open source, free of charge train driving simulator. -Description: |- - OpenBVE is a license-free, open source, free of charge train driving simulator. - This program includes detailed per-car simulation of the brake systems, friction, air resistance, toppling and more. In 3D cabs, the driving experience is augmented with forces that shake your simulated body upon acceleration and braking, as well as in curves. Besides that, OpenBVE features a 3D positional sound system best enjoyed with surround speakers, train exteriors and timetables for the current run. Finally, via the main menu, routes and trains be easily selected to start a new session, the controls can be configured to keyboard or joystick devices, and a variety of options can be selected. - Compared to other simulators of the genre, especially compared to commercial games, OpenBVE has its main focus on realism, not necessarily on user-friendliness. You should be willing to study operational manuals for the routes and trains you want to drive, and will in many cases not get along by just memorizing a few keystrokes. If you can identify with this focus, OpenBVE might be the right simulator for you. -Tags: -- game -- gaming -- metro -- railway -- simulate -- simulation -- simulator -- subway -- train -- underground -ReleaseNotes: |- - The last release of 2025.... - Significant Changes: - - New: Introduce IRawRuntime2 interface. - - Change: Improve the display of the JumpToPosition value in Route Viewer. - - Fix: GL Menu not working in 1.11.3.2 - - Fix: Old renderer not working correctly in 1.11.3.2 - - Fix: Issue when uncoupling some trains. - - Fix: Particle sources were updating whilst in a menu. - - Fix: Incorrect particle flow direction when reversing. - - Fix: Constant speed device not working after a backwards jump. -ReleaseNotesUrl: https://github.com/leezer3/OpenBVE/releases/tag/1.11.3.4 -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://github.com/leezer3/OpenBVE/wiki -ManifestType: defaultLocale -ManifestVersion: 1.10.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: leezer3.OpenBVE +PackageVersion: 1.11.3.4 +PackageLocale: en-US +Publisher: The OpenBVE Project +PublisherUrl: https://openbve-project.net/ +PublisherSupportUrl: https://github.com/leezer3/OpenBVE/issues +Author: Christopher Lees +PackageName: openBVE +PackageUrl: https://openbve-project.net/ +License: BSD-2-Clause +LicenseUrl: https://openbve-project.net/copyright/ +Copyright: © 2007 - 2025 The OpenBVE Project, and released into the Public Domain. +ShortDescription: A license-free, open source, free of charge train driving simulator. +Description: |- + OpenBVE is a license-free, open source, free of charge train driving simulator. + This program includes detailed per-car simulation of the brake systems, friction, air resistance, toppling and more. In 3D cabs, the driving experience is augmented with forces that shake your simulated body upon acceleration and braking, as well as in curves. Besides that, OpenBVE features a 3D positional sound system best enjoyed with surround speakers, train exteriors and timetables for the current run. Finally, via the main menu, routes and trains be easily selected to start a new session, the controls can be configured to keyboard or joystick devices, and a variety of options can be selected. + Compared to other simulators of the genre, especially compared to commercial games, OpenBVE has its main focus on realism, not necessarily on user-friendliness. You should be willing to study operational manuals for the routes and trains you want to drive, and will in many cases not get along by just memorizing a few keystrokes. If you can identify with this focus, OpenBVE might be the right simulator for you. +Tags: +- game +- gaming +- metro +- railway +- simulate +- simulation +- simulator +- subway +- train +- underground +ReleaseNotes: |- + The last release of 2025.... + Significant Changes: + - New: Introduce IRawRuntime2 interface. + - Change: Improve the display of the JumpToPosition value in Route Viewer. + - Fix: GL Menu not working in 1.11.3.2 + - Fix: Old renderer not working correctly in 1.11.3.2 + - Fix: Issue when uncoupling some trains. + - Fix: Particle sources were updating whilst in a menu. + - Fix: Incorrect particle flow direction when reversing. + - Fix: Constant speed device not working after a backwards jump. +ReleaseNotesUrl: https://github.com/leezer3/OpenBVE/releases/tag/1.11.3.4 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/leezer3/OpenBVE/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.locale.zh-CN.yaml b/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.locale.zh-CN.yaml index f3e8067a51d5..a9fd38975a23 100644 --- a/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.locale.zh-CN.yaml +++ b/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.locale.zh-CN.yaml @@ -1,26 +1,26 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: leezer3.OpenBVE -PackageVersion: 1.11.3.4 -PackageLocale: zh-CN -ShortDescription: 免讞可证、匀源、免莹的火蜊驟驶暡拟噚。 -Description: |- - OpenBVE 是䞀欟免讞可证、匀源、免莹的火蜊驟驶暡拟噚。 - 该皋序包括制劚系统、摩擊、空气阻力、借芆等每蟆蜊的诊细暡拟。圚䞉绎驟驶宀䞭加速、制劚和蜬匯时暡拟蜊身的晃劚䌚增区驟驶䜓验。陀歀以倖OpenBVE 还配倇了 3D 定䜍声音系统可通过搭配环绕扬声噚、列蜊倖郚和圓前运行时刻衚以䜓验最䜳效果。最后可以圚䞻菜单蜻束选择路线和列蜊以匀始新的䌚话可以将键盘或操纵杆讟倇配眮䞺控制噚同时还有各种选项可选。 - 䞎其它同类暡拟噚尀其是䞎商䞚枞戏盞比OpenBVE 的重点圚于逌真性而䞍䞀定是甚户友奜性。䜠可胜需芁研究䜠所驟驶的路线和列蜊的操䜜手册并䞔圚倧倚数情况䞋仅靠记䜏几䞪按键是无法完成任务的。劂果䜠胜讀同这䞀重点OpenBVE 可胜就是适合䜠的暡拟噚。 -Tags: -- 列蜊 -- 地铁 -- 暡拟 -- 暡拟噚 -- 枞戏 -- 火蜊 -- 蜚道亀通 -- 铁路 -ReleaseNotesUrl: https://github.com/leezer3/OpenBVE/releases/tag/1.11.3.4 -Documentations: -- DocumentLabel: 绎基 - DocumentUrl: https://github.com/leezer3/OpenBVE/wiki -ManifestType: locale -ManifestVersion: 1.10.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: leezer3.OpenBVE +PackageVersion: 1.11.3.4 +PackageLocale: zh-CN +ShortDescription: 免讞可证、匀源、免莹的火蜊驟驶暡拟噚。 +Description: |- + OpenBVE 是䞀欟免讞可证、匀源、免莹的火蜊驟驶暡拟噚。 + 该皋序包括制劚系统、摩擊、空气阻力、借芆等每蟆蜊的诊细暡拟。圚䞉绎驟驶宀䞭加速、制劚和蜬匯时暡拟蜊身的晃劚䌚增区驟驶䜓验。陀歀以倖OpenBVE 还配倇了 3D 定䜍声音系统可通过搭配环绕扬声噚、列蜊倖郚和圓前运行时刻衚以䜓验最䜳效果。最后可以圚䞻菜单蜻束选择路线和列蜊以匀始新的䌚话可以将键盘或操纵杆讟倇配眮䞺控制噚同时还有各种选项可选。 + 䞎其它同类暡拟噚尀其是䞎商䞚枞戏盞比OpenBVE 的重点圚于逌真性而䞍䞀定是甚户友奜性。䜠可胜需芁研究䜠所驟驶的路线和列蜊的操䜜手册并䞔圚倧倚数情况䞋仅靠记䜏几䞪按键是无法完成任务的。劂果䜠胜讀同这䞀重点OpenBVE 可胜就是适合䜠的暡拟噚。 +Tags: +- 列蜊 +- 地铁 +- 暡拟 +- 暡拟噚 +- 枞戏 +- 火蜊 +- 蜚道亀通 +- 铁路 +ReleaseNotesUrl: https://github.com/leezer3/OpenBVE/releases/tag/1.11.3.4 +Documentations: +- DocumentLabel: 绎基 + DocumentUrl: https://github.com/leezer3/OpenBVE/wiki +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.yaml b/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.yaml index 5ee470eafcf2..de617fcc0169 100644 --- a/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.yaml +++ b/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.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: leezer3.OpenBVE -PackageVersion: 1.11.3.4 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: leezer3.OpenBVE +PackageVersion: 1.11.3.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.installer.yaml b/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.installer.yaml index 2a2a8776d05a..f8af3c96f474 100644 --- a/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.installer.yaml +++ b/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.installer.yaml @@ -1,32 +1,32 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: legeling.PromptHub -PackageVersion: 0.3.9 -InstallerType: nullsoft -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ProductCode: 16181c11-b075-53d6-87cb-f192f9b74217 -ReleaseDate: 2026-01-24 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.3.9/PromptHub-Setup-0.3.9-x64.exe - InstallerSha256: F404E0732762B2E047FD6F088000E735F969E5736D3853DD8EA7F1EC6A8B8DF5 - InstallerSwitches: - Custom: /currentuser -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.3.9/PromptHub-Setup-0.3.9-x64.exe - InstallerSha256: F404E0732762B2E047FD6F088000E735F969E5736D3853DD8EA7F1EC6A8B8DF5 - InstallerSwitches: - Custom: /allusers -- Architecture: arm64 - Scope: machine - InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.3.9/PromptHub-Setup-0.3.9-arm64.exe - InstallerSha256: BB14F4ED6EDFAA7889B87717FFC1FC8CFC7E4C720346704A7291ED54C37FA875 - InstallerSwitches: - Custom: /allusers -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: legeling.PromptHub +PackageVersion: 0.3.9 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 16181c11-b075-53d6-87cb-f192f9b74217 +ReleaseDate: 2026-01-24 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.3.9/PromptHub-Setup-0.3.9-x64.exe + InstallerSha256: B021D734EA4E1CF93990C55140CC087D139DAB181F66080F75FDF9607568F688 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.3.9/PromptHub-Setup-0.3.9-x64.exe + InstallerSha256: B021D734EA4E1CF93990C55140CC087D139DAB181F66080F75FDF9607568F688 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.3.9/PromptHub-Setup-0.3.9-arm64.exe + InstallerSha256: 6A861BC4A28C5EC0D195541AC547DE5580B38EA64D723E2CDF6CF49E1D79EA3B + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.locale.en-US.yaml b/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.locale.en-US.yaml index dfcc0754f23d..519af82cc760 100644 --- a/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.locale.en-US.yaml +++ b/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.locale.en-US.yaml @@ -1,31 +1,31 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: legeling.PromptHub -PackageVersion: 0.3.9 -PackageLocale: en-US -ShortDescription: An open-source, local-first AI prompt management tool that helps you efficiently manage, version-control, and reuse your prompts -Description: |- - Tired of searching for prompts in notebooks, documents, and chat histories? PromptHub lets you manage prompts like code — version control, variable templates, multi-model testing, all local and privacy-first. - ✹ Features - - 📝 Prompt Management - Create, edit, delete with folder and tag organization - - ⭐ Favorites - Quick access to frequently used prompts - - 🔄 Version Control - Auto-save history with view and rollback support - - 🔧 Variable System - Template variables {{variable}} with dynamic replacement - - 📋 One-Click Copy - Quickly copy prompts to clipboard - - 🔍 Full-Text Search - Fast search across titles, descriptions, and content - - 📀 Data Export - JSON format backup and restore - - 🎚 Theme Customization - Dark/Light/System modes with multiple accent colors - - 🌐 Multi-Language - Chinese and English interface support - - 💟 Local Storage - All data stored locally for privacy - - 🖥 Cross-Platform - Support for macOS, Windows, Linux - - 📊 List View - Table-style display with sorting and batch operations - - 🀖 AI Testing - Built-in multi-model testing with 18+ providers -Tags: -- ai -- chatbot -- large-language-model -- llm -- prompt -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: legeling.PromptHub +PackageVersion: 0.3.9 +PackageLocale: en-US +ShortDescription: An open-source, local-first AI prompt management tool that helps you efficiently manage, version-control, and reuse your prompts +Description: |- + Tired of searching for prompts in notebooks, documents, and chat histories? PromptHub lets you manage prompts like code — version control, variable templates, multi-model testing, all local and privacy-first. + ✹ Features + - 📝 Prompt Management - Create, edit, delete with folder and tag organization + - ⭐ Favorites - Quick access to frequently used prompts + - 🔄 Version Control - Auto-save history with view and rollback support + - 🔧 Variable System - Template variables {{variable}} with dynamic replacement + - 📋 One-Click Copy - Quickly copy prompts to clipboard + - 🔍 Full-Text Search - Fast search across titles, descriptions, and content + - 📀 Data Export - JSON format backup and restore + - 🎚 Theme Customization - Dark/Light/System modes with multiple accent colors + - 🌐 Multi-Language - Chinese and English interface support + - 💟 Local Storage - All data stored locally for privacy + - 🖥 Cross-Platform - Support for macOS, Windows, Linux + - 📊 List View - Table-style display with sorting and batch operations + - 🀖 AI Testing - Built-in multi-model testing with 18+ providers +Tags: +- ai +- chatbot +- large-language-model +- llm +- prompt +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.locale.zh-CN.yaml b/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.locale.zh-CN.yaml index 17ff0a4b7479..1de6d6f70885 100644 --- a/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.locale.zh-CN.yaml +++ b/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.locale.zh-CN.yaml @@ -1,55 +1,55 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: legeling.PromptHub -PackageVersion: 0.3.9 -PackageLocale: zh-CN -Publisher: legeling -PublisherUrl: https://github.com/legeling -PublisherSupportUrl: https://github.com/legeling/PromptHub/issues -Author: 凌小添 -PackageName: PromptHub -PackageUrl: https://github.com/legeling/PromptHub -License: AGPL-3.0 -LicenseUrl: https://github.com/legeling/PromptHub/blob/HEAD/LICENSE -Copyright: © 2026 PromptHub -ShortDescription: 䞀欟匀源、纯本地 AI Prompt 管理工具垮助䜠高效管理、版本控制和倍甚 Prompt -Description: |- - 还圚笔记本、文档和聊倩记圕里到倄翻扟 PromptPromptHub 让䜠像管理代码䞀样管理 Prompt — 支持版本控制、变量暡板、倚暡型测试所有数据郜存圚本地隐私安党有保障。 - ✹ 功胜特性 - - 📝 Prompt 管理 - 创建、猖蟑、删陀支持文件倹和标筟分类 - - ⭐ 收藏系统 - 快速收藏垞甚 Prompt䞀键访问 - - 🔄 版本控制 - 自劚保存历史版本支持查看和回滚 - - 🔧 变量系统 - 暡板变量 {{variable}}劚态替换 - - 📋 䞀键倍制 - 快速倍制 Prompt 到剪莎板 - - 🔍 党文搜玢 - 快速搜玢标题、描述和内容 - - 📀 数据富出 - JSON 栌匏倇仜和恢倍 - - 🎚 䞻题定制 - 深色/浅色/跟随系统倚种䞻题色可选 - - 🌐 倚语蚀 - 支持䞭文和英文界面 - - 💟 本地存傚 - 所有数据存傚圚本地隐私安党有保障 - - 🖥 跚平台 - 支持 macOS、Windows、Linux - - 📊 列衚视囟 - 衚栌匏展瀺 Prompt支持排序和批量操䜜 - - 🀖 AI 测试 - 内眮倚暡型测试支持 18+ 服务商 -Tags: -- 人工智胜 -- 倧语蚀暡型 -- 提瀺词 -- 聊倩机噚人 -ReleaseNotes: |- - 新功胜 / Added - - ⌚ 局郚快捷键暡匏新增局郚快捷键支持可圚讟眮䞭䞺每䞪快捷键独立选择"å…šå±€"或"局郚"暡匏局郚暡匏仅圚应甚窗口激掻时生效避免䞎其他应甚冲突 - - Local Shortcut Mode: Added per-shortcut mode selection (Global/Local) in settings. Local shortcuts only work when the app window is focused, avoiding conflicts with other applications - - 📀 分享䞺 JSON新增"分享䞺 JSON"功胜支持将 Prompt 序列化䞺 JSON 并倍制到剪莎板方䟿分享和迁移 - - Share as JSON: Added "Share as JSON" feature to serialize prompts for easy sharing and migration - - 📥 剪莎板智胜富入增区剪莎板富入现圚打匀完敎的猖蟑窗口而非简单预览支持富入前修改所有字段 - - Enhanced Clipboard Import: Clipboard import now opens the full editor instead of a preview modal, allowing field modifications before saving - 䌘化 / Improvements - - 🎚 右键菜单增区圚列衚、衚栌、看板视囟的右键菜单䞭新增"分享䞺 JSON"选项 - - Context Menu Enhancement: Added "Share as JSON" option to context menus across all view modes - - ✹ 诊情页分享按钮圚 Prompt 诊情页倎郚新增分享按钮点击即可快速分享 - - Detail View Share Button: Added a share button in the prompt detail header for quick access - - 🔄 防重倍富入分享后䌚讟眮标记防止立即将自己分享的内容再次富入 - - Prevent Self-Import: Shared content is marked to prevent immediate re-import of your own prompts -ReleaseNotesUrl: https://github.com/legeling/PromptHub/blob/HEAD/CHANGELOG.md#039---2026-01-24 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: legeling.PromptHub +PackageVersion: 0.3.9 +PackageLocale: zh-CN +Publisher: legeling +PublisherUrl: https://github.com/legeling +PublisherSupportUrl: https://github.com/legeling/PromptHub/issues +Author: 凌小添 +PackageName: PromptHub +PackageUrl: https://github.com/legeling/PromptHub +License: AGPL-3.0 +LicenseUrl: https://github.com/legeling/PromptHub/blob/HEAD/LICENSE +Copyright: © 2026 PromptHub +ShortDescription: 䞀欟匀源、纯本地 AI Prompt 管理工具垮助䜠高效管理、版本控制和倍甚 Prompt +Description: |- + 还圚笔记本、文档和聊倩记圕里到倄翻扟 PromptPromptHub 让䜠像管理代码䞀样管理 Prompt — 支持版本控制、变量暡板、倚暡型测试所有数据郜存圚本地隐私安党有保障。 + ✹ 功胜特性 + - 📝 Prompt 管理 - 创建、猖蟑、删陀支持文件倹和标筟分类 + - ⭐ 收藏系统 - 快速收藏垞甚 Prompt䞀键访问 + - 🔄 版本控制 - 自劚保存历史版本支持查看和回滚 + - 🔧 变量系统 - 暡板变量 {{variable}}劚态替换 + - 📋 䞀键倍制 - 快速倍制 Prompt 到剪莎板 + - 🔍 党文搜玢 - 快速搜玢标题、描述和内容 + - 📀 数据富出 - JSON 栌匏倇仜和恢倍 + - 🎚 䞻题定制 - 深色/浅色/跟随系统倚种䞻题色可选 + - 🌐 倚语蚀 - 支持䞭文和英文界面 + - 💟 本地存傚 - 所有数据存傚圚本地隐私安党有保障 + - 🖥 跚平台 - 支持 macOS、Windows、Linux + - 📊 列衚视囟 - 衚栌匏展瀺 Prompt支持排序和批量操䜜 + - 🀖 AI 测试 - 内眮倚暡型测试支持 18+ 服务商 +Tags: +- 人工智胜 +- 倧语蚀暡型 +- 提瀺词 +- 聊倩机噚人 +ReleaseNotes: |- + 新功胜 / Added + - ⌚ 局郚快捷键暡匏新增局郚快捷键支持可圚讟眮䞭䞺每䞪快捷键独立选择"å…šå±€"或"局郚"暡匏局郚暡匏仅圚应甚窗口激掻时生效避免䞎其他应甚冲突 + - Local Shortcut Mode: Added per-shortcut mode selection (Global/Local) in settings. Local shortcuts only work when the app window is focused, avoiding conflicts with other applications + - 📀 分享䞺 JSON新增"分享䞺 JSON"功胜支持将 Prompt 序列化䞺 JSON 并倍制到剪莎板方䟿分享和迁移 + - Share as JSON: Added "Share as JSON" feature to serialize prompts for easy sharing and migration + - 📥 剪莎板智胜富入增区剪莎板富入现圚打匀完敎的猖蟑窗口而非简单预览支持富入前修改所有字段 + - Enhanced Clipboard Import: Clipboard import now opens the full editor instead of a preview modal, allowing field modifications before saving + 䌘化 / Improvements + - 🎚 右键菜单增区圚列衚、衚栌、看板视囟的右键菜单䞭新增"分享䞺 JSON"选项 + - Context Menu Enhancement: Added "Share as JSON" option to context menus across all view modes + - ✹ 诊情页分享按钮圚 Prompt 诊情页倎郚新增分享按钮点击即可快速分享 + - Detail View Share Button: Added a share button in the prompt detail header for quick access + - 🔄 防重倍富入分享后䌚讟眮标记防止立即将自己分享的内容再次富入 + - Prevent Self-Import: Shared content is marked to prevent immediate re-import of your own prompts +ReleaseNotesUrl: https://github.com/legeling/PromptHub/blob/HEAD/CHANGELOG.md#039---2026-01-24 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.yaml b/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.yaml index 4bb17591fd63..31b63dec6eba 100644 --- a/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.yaml +++ b/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: legeling.PromptHub -PackageVersion: 0.3.9 -DefaultLocale: zh-CN -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: legeling.PromptHub +PackageVersion: 0.3.9 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.installer.yaml b/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.installer.yaml index 3558bc15452f..1712f492e763 100644 --- a/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.installer.yaml +++ b/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.installer.yaml @@ -1,32 +1,32 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: legeling.PromptHub -PackageVersion: 0.4.0 -InstallerType: nullsoft -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ProductCode: 16181c11-b075-53d6-87cb-f192f9b74217 -ReleaseDate: 2026-02-13 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.4.0/PromptHub-Setup-0.4.0-x64.exe - InstallerSha256: B4ED666734A2184EBF955B9FDD708AB92D8AE98AE28FD6A42E9A298C4051E365 - InstallerSwitches: - Custom: /currentuser -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.4.0/PromptHub-Setup-0.4.0-x64.exe - InstallerSha256: B4ED666734A2184EBF955B9FDD708AB92D8AE98AE28FD6A42E9A298C4051E365 - InstallerSwitches: - Custom: /allusers -- Architecture: arm64 - Scope: machine - InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.4.0/PromptHub-Setup-0.4.0-arm64.exe - InstallerSha256: B3AD374AD9081C50A3AD14C4B190EC7EF5E31342D06258B3D8A945167970C3A7 - InstallerSwitches: - Custom: /allusers -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: legeling.PromptHub +PackageVersion: 0.4.0 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 16181c11-b075-53d6-87cb-f192f9b74217 +ReleaseDate: 2026-02-13 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.4.0/PromptHub-Setup-0.4.0-x64.exe + InstallerSha256: F2B79D86F68D00DC6F547848CF7E6225BC43E78F69A79165CE5C5F5D22BB011B + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.4.0/PromptHub-Setup-0.4.0-x64.exe + InstallerSha256: F2B79D86F68D00DC6F547848CF7E6225BC43E78F69A79165CE5C5F5D22BB011B + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.4.0/PromptHub-Setup-0.4.0-arm64.exe + InstallerSha256: 47F9649585A7E323F8EA403CD5EA0C94AD775885F32881BFA5660DA179C7964A + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.locale.en-US.yaml b/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.locale.en-US.yaml index cf4c5e170770..2319553db3e3 100644 --- a/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.locale.en-US.yaml +++ b/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.locale.en-US.yaml @@ -1,31 +1,31 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: legeling.PromptHub -PackageVersion: 0.4.0 -PackageLocale: en-US -ShortDescription: An open-source, local-first AI prompt management tool that helps you efficiently manage, version-control, and reuse your prompts -Description: |- - Tired of searching for prompts in notebooks, documents, and chat histories? PromptHub lets you manage prompts like code — version control, variable templates, multi-model testing, all local and privacy-first. - ✹ Features - - 📝 Prompt Management - Create, edit, delete with folder and tag organization - - ⭐ Favorites - Quick access to frequently used prompts - - 🔄 Version Control - Auto-save history with view and rollback support - - 🔧 Variable System - Template variables {{variable}} with dynamic replacement - - 📋 One-Click Copy - Quickly copy prompts to clipboard - - 🔍 Full-Text Search - Fast search across titles, descriptions, and content - - 📀 Data Export - JSON format backup and restore - - 🎚 Theme Customization - Dark/Light/System modes with multiple accent colors - - 🌐 Multi-Language - Chinese and English interface support - - 💟 Local Storage - All data stored locally for privacy - - 🖥 Cross-Platform - Support for macOS, Windows, Linux - - 📊 List View - Table-style display with sorting and batch operations - - 🀖 AI Testing - Built-in multi-model testing with 18+ providers -Tags: -- ai -- chatbot -- large-language-model -- llm -- prompt -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: legeling.PromptHub +PackageVersion: 0.4.0 +PackageLocale: en-US +ShortDescription: An open-source, local-first AI prompt management tool that helps you efficiently manage, version-control, and reuse your prompts +Description: |- + Tired of searching for prompts in notebooks, documents, and chat histories? PromptHub lets you manage prompts like code — version control, variable templates, multi-model testing, all local and privacy-first. + ✹ Features + - 📝 Prompt Management - Create, edit, delete with folder and tag organization + - ⭐ Favorites - Quick access to frequently used prompts + - 🔄 Version Control - Auto-save history with view and rollback support + - 🔧 Variable System - Template variables {{variable}} with dynamic replacement + - 📋 One-Click Copy - Quickly copy prompts to clipboard + - 🔍 Full-Text Search - Fast search across titles, descriptions, and content + - 📀 Data Export - JSON format backup and restore + - 🎚 Theme Customization - Dark/Light/System modes with multiple accent colors + - 🌐 Multi-Language - Chinese and English interface support + - 💟 Local Storage - All data stored locally for privacy + - 🖥 Cross-Platform - Support for macOS, Windows, Linux + - 📊 List View - Table-style display with sorting and batch operations + - 🀖 AI Testing - Built-in multi-model testing with 18+ providers +Tags: +- ai +- chatbot +- large-language-model +- llm +- prompt +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.locale.zh-CN.yaml b/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.locale.zh-CN.yaml index 877ecd494a88..97057e40505f 100644 --- a/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.locale.zh-CN.yaml +++ b/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.locale.zh-CN.yaml @@ -1,61 +1,61 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: legeling.PromptHub -PackageVersion: 0.4.0 -PackageLocale: zh-CN -Publisher: legeling -PublisherUrl: https://github.com/legeling -PublisherSupportUrl: https://github.com/legeling/PromptHub/issues -Author: 凌小添 -PackageName: PromptHub -PackageUrl: https://github.com/legeling/PromptHub -License: AGPL-3.0 -LicenseUrl: https://github.com/legeling/PromptHub/blob/HEAD/LICENSE -Copyright: © 2026 PromptHub -ShortDescription: 䞀欟匀源、纯本地 AI Prompt 管理工具垮助䜠高效管理、版本控制和倍甚 Prompt -Description: |- - 还圚笔记本、文档和聊倩记圕里到倄翻扟 PromptPromptHub 让䜠像管理代码䞀样管理 Prompt — 支持版本控制、变量暡板、倚暡型测试所有数据郜存圚本地隐私安党有保障。 - ✹ 功胜特性 - - 📝 Prompt 管理 - 创建、猖蟑、删陀支持文件倹和标筟分类 - - ⭐ 收藏系统 - 快速收藏垞甚 Prompt䞀键访问 - - 🔄 版本控制 - 自劚保存历史版本支持查看和回滚 - - 🔧 变量系统 - 暡板变量 {{variable}}劚态替换 - - 📋 䞀键倍制 - 快速倍制 Prompt 到剪莎板 - - 🔍 党文搜玢 - 快速搜玢标题、描述和内容 - - 📀 数据富出 - JSON 栌匏倇仜和恢倍 - - 🎚 䞻题定制 - 深色/浅色/跟随系统倚种䞻题色可选 - - 🌐 倚语蚀 - 支持䞭文和英文界面 - - 💟 本地存傚 - 所有数据存傚圚本地隐私安党有保障 - - 🖥 跚平台 - 支持 macOS、Windows、Linux - - 📊 列衚视囟 - 衚栌匏展瀺 Prompt支持排序和批量操䜜 - - 🀖 AI 测试 - 内眮倚暡型测试支持 18+ 服务商 -Tags: -- 人工智胜 -- 倧语蚀暡型 -- 提瀺词 -- 聊倩机噚人 -ReleaseNotes: |- - 新功胜 / Added - - 🧩 Skill 技胜商店内建 20+ 粟选 AI 代理技胜来自 Anthropic、OpenAI 等官方源 - - Skill Store: Built-in store with 20+ curated AI agent skills from Anthropic, OpenAI and more - - 🚀 倚平台䞀键安装支持将 SKILL.md 安装到 Claude Code、Cursor、Windsurf、Codex、Kiro、Gemini CLI 等 12+ 平台 - - Multi-Platform Install: One-click install SKILL.md to Claude Code, Cursor, Windsurf, Codex, Kiro, Gemini CLI and 12+ platforms - - 🔍 本地扫描预览自劚发现本地已有 SKILL.md支持预览选擇后批量富入 - - Local Scan Preview: Auto-discover local SKILL.md files, preview and batch import - - 🔗 Symlink/倍制暡匏支持蜯铟接同步猖蟑或独立倍制到各平台 - - Symlink/Copy Mode: Symbolic link for synced editing or independent copy to each platform - - 🌐 AI 技胜翻译支持沉浞匏翻译和党文翻译技胜内容 - - AI Skill Translation: Immersive and full-text translation modes for skill content - - 🏷 技胜标筟筛选䟧蟹栏标筟快速过滀技胜 - - Skill Tag Filtering: Sidebar tags for quick skill filtering - - 📊 枅晰的工䜜流「添加到库」→ 自劚匹出「安装到平台」选择匹窗 - - Clear Workflow: "Add to Library" → auto-popup "Install to Platform" dialog - 䌘化 / Improvements - - 🎚 术语统䞀平台操䜜统䞀䜿甚「安装」术语曎盎观 - - Terminology: Unified platform operations to use "Install" terminology - - 🧩 标筟过滀䌘化自劚过滀系统生成的无意义标筟local、discovered、平台 ID 等 - - Tag Filter Polish: Auto-filter system-generated tags (local, discovered, platform IDs) -ReleaseNotesUrl: https://github.com/legeling/PromptHub/blob/HEAD/CHANGELOG.md#040---2026-02-12 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: legeling.PromptHub +PackageVersion: 0.4.0 +PackageLocale: zh-CN +Publisher: legeling +PublisherUrl: https://github.com/legeling +PublisherSupportUrl: https://github.com/legeling/PromptHub/issues +Author: 凌小添 +PackageName: PromptHub +PackageUrl: https://github.com/legeling/PromptHub +License: AGPL-3.0 +LicenseUrl: https://github.com/legeling/PromptHub/blob/HEAD/LICENSE +Copyright: © 2026 PromptHub +ShortDescription: 䞀欟匀源、纯本地 AI Prompt 管理工具垮助䜠高效管理、版本控制和倍甚 Prompt +Description: |- + 还圚笔记本、文档和聊倩记圕里到倄翻扟 PromptPromptHub 让䜠像管理代码䞀样管理 Prompt — 支持版本控制、变量暡板、倚暡型测试所有数据郜存圚本地隐私安党有保障。 + ✹ 功胜特性 + - 📝 Prompt 管理 - 创建、猖蟑、删陀支持文件倹和标筟分类 + - ⭐ 收藏系统 - 快速收藏垞甚 Prompt䞀键访问 + - 🔄 版本控制 - 自劚保存历史版本支持查看和回滚 + - 🔧 变量系统 - 暡板变量 {{variable}}劚态替换 + - 📋 䞀键倍制 - 快速倍制 Prompt 到剪莎板 + - 🔍 党文搜玢 - 快速搜玢标题、描述和内容 + - 📀 数据富出 - JSON 栌匏倇仜和恢倍 + - 🎚 䞻题定制 - 深色/浅色/跟随系统倚种䞻题色可选 + - 🌐 倚语蚀 - 支持䞭文和英文界面 + - 💟 本地存傚 - 所有数据存傚圚本地隐私安党有保障 + - 🖥 跚平台 - 支持 macOS、Windows、Linux + - 📊 列衚视囟 - 衚栌匏展瀺 Prompt支持排序和批量操䜜 + - 🀖 AI 测试 - 内眮倚暡型测试支持 18+ 服务商 +Tags: +- 人工智胜 +- 倧语蚀暡型 +- 提瀺词 +- 聊倩机噚人 +ReleaseNotes: |- + 新功胜 / Added + - 🧩 Skill 技胜商店内建 20+ 粟选 AI 代理技胜来自 Anthropic、OpenAI 等官方源 + - Skill Store: Built-in store with 20+ curated AI agent skills from Anthropic, OpenAI and more + - 🚀 倚平台䞀键安装支持将 SKILL.md 安装到 Claude Code、Cursor、Windsurf、Codex、Kiro、Gemini CLI 等 12+ 平台 + - Multi-Platform Install: One-click install SKILL.md to Claude Code, Cursor, Windsurf, Codex, Kiro, Gemini CLI and 12+ platforms + - 🔍 本地扫描预览自劚发现本地已有 SKILL.md支持预览选擇后批量富入 + - Local Scan Preview: Auto-discover local SKILL.md files, preview and batch import + - 🔗 Symlink/倍制暡匏支持蜯铟接同步猖蟑或独立倍制到各平台 + - Symlink/Copy Mode: Symbolic link for synced editing or independent copy to each platform + - 🌐 AI 技胜翻译支持沉浞匏翻译和党文翻译技胜内容 + - AI Skill Translation: Immersive and full-text translation modes for skill content + - 🏷 技胜标筟筛选䟧蟹栏标筟快速过滀技胜 + - Skill Tag Filtering: Sidebar tags for quick skill filtering + - 📊 枅晰的工䜜流「添加到库」→ 自劚匹出「安装到平台」选择匹窗 + - Clear Workflow: "Add to Library" → auto-popup "Install to Platform" dialog + 䌘化 / Improvements + - 🎚 术语统䞀平台操䜜统䞀䜿甚「安装」术语曎盎观 + - Terminology: Unified platform operations to use "Install" terminology + - 🧩 标筟过滀䌘化自劚过滀系统生成的无意义标筟local、discovered、平台 ID 等 + - Tag Filter Polish: Auto-filter system-generated tags (local, discovered, platform IDs) +ReleaseNotesUrl: https://github.com/legeling/PromptHub/blob/HEAD/CHANGELOG.md#040---2026-02-12 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.yaml b/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.yaml index deeaa0b3a066..4a7548876616 100644 --- a/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.yaml +++ b/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: legeling.PromptHub -PackageVersion: 0.4.0 -DefaultLocale: zh-CN -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: legeling.PromptHub +PackageVersion: 0.4.0 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/VisualStudio/SlnGen/12.0.32/Microsoft.VisualStudio.SlnGen.installer.yaml b/manifests/m/Microsoft/VisualStudio/SlnGen/12.0.32/Microsoft.VisualStudio.SlnGen.installer.yaml new file mode 100644 index 000000000000..a038fedc1ceb --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/SlnGen/12.0.32/Microsoft.VisualStudio.SlnGen.installer.yaml @@ -0,0 +1,25 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.SlnGen +PackageVersion: 12.0.32 +ReleaseDate: 2025-12-05 +InstallerType: zip # .nupkg with .exe-s inside. +NestedInstallerType: portable +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://globalcdn.nuget.org/packages/microsoft.visualstudio.slngen.tool.12.0.32.nupkg + InstallerSha256: 191bf489da5821dbd19d7f43ed0f84bcc2a70be91be24321899894b236e0871e + NestedInstallerFiles: + - RelativeFilePath: tools\slngen\net10.0\slngen.exe + - RelativeFilePath: tools\slngen\net472\slngen.exe + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.SDK.10 +- Architecture: x86 + InstallerUrl: https://globalcdn.nuget.org/packages/microsoft.visualstudio.slngen.tool.12.0.32.nupkg + InstallerSha256: 191bf489da5821dbd19d7f43ed0f84bcc2a70be91be24321899894b236e0871e + NestedInstallerFiles: + - RelativeFilePath: tools\slngen\net472\slngen.exe +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/VisualStudio/SlnGen/12.0.32/Microsoft.VisualStudio.SlnGen.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/SlnGen/12.0.32/Microsoft.VisualStudio.SlnGen.locale.en-US.yaml new file mode 100644 index 000000000000..81575afadd11 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/SlnGen/12.0.32/Microsoft.VisualStudio.SlnGen.locale.en-US.yaml @@ -0,0 +1,24 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.SlnGen +PackageVersion: 12.0.32 +PackageLocale: en-US +Publisher: Microsft Corporation +PackageName: SlnGen +PackageUrl: https://microsoft.github.io/slngen/ +License: MIT +ShortDescription: A Visual Studio solution file generator. +Description: |- + A Visual Studio solution file generator. + + In this Winget package, the x64 installer mode is designed with .NET 10.0 and .NET Framework in mind, while the x86 installer mode is designed with only .NET Framework in mind. The executables for .NET 8.0 and 9.0 are also in the package, but they and their dependencies would need to be handled client-side. +Tags: +- Microsoft.VisualStudio.SlnGen.Tool +- visual-studio-solution-file-generator +- visualstudiosolutionfilegenerator +- singen +- sln-generator +- slngenerator +- requirescmd +ManifestType: defaultLocale +ManifestVersion: 1.12.0 \ No newline at end of file diff --git a/manifests/m/Microsoft/VisualStudio/SlnGen/12.0.32/Microsoft.VisualStudio.SlnGen.yaml b/manifests/m/Microsoft/VisualStudio/SlnGen/12.0.32/Microsoft.VisualStudio.SlnGen.yaml new file mode 100644 index 000000000000..ea348a22df6d --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/SlnGen/12.0.32/Microsoft.VisualStudio.SlnGen.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.SlnGen +PackageVersion: 12.0.32 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 \ No newline at end of file diff --git a/manifests/m/Microsoft/WindowsADK/10.1.28000.1/Microsoft.WindowsADK.locale.en-GB.yaml b/manifests/m/Microsoft/WindowsADK/10.1.28000.1/Microsoft.WindowsADK.locale.en-GB.yaml new file mode 100644 index 000000000000..67f9fd91ca1e --- /dev/null +++ b/manifests/m/Microsoft/WindowsADK/10.1.28000.1/Microsoft.WindowsADK.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Microsoft.WindowsADK +PackageVersion: 10.1.28000.1 +PackageLocale: en-GB +PublisherUrl: https://www.microsoft.com/en-gb +PublisherSupportUrl: https://support.microsoft.com/en-gb +PrivacyUrl: https://www.microsoft.com/en-gb/privacy/privacystatement +PackageName: Windows Assessment and Deployment Kit +License: Proprietary +LicenseUrl: https://www.microsoft.com/en-gb/legal/terms-of-use +Copyright: © Microsoft Corporation. All rights reserved. +CopyrightUrl: https://www.microsoft.com/en-gb/legal/intellectualproperty/trademarks +ShortDescription: The Windows Assessment and Deployment Kit (Windows ADK) has the tools you need to customise Windows images for large-scale deployment, and to test the quality and performance of your system, its added components, and the applications running on it. +Tags: +- adk +- mdt +- sccm +- windows +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsADK/10.1.28000.1/Microsoft.WindowsADK.locale.nb-NO.yaml b/manifests/m/Microsoft/WindowsADK/10.1.28000.1/Microsoft.WindowsADK.locale.nb-NO.yaml new file mode 100644 index 000000000000..f8ede713c286 --- /dev/null +++ b/manifests/m/Microsoft/WindowsADK/10.1.28000.1/Microsoft.WindowsADK.locale.nb-NO.yaml @@ -0,0 +1,23 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Microsoft.WindowsADK +PackageVersion: 10.1.28000.1 +PackageLocale: nb-NO +PublisherUrl: https://www.microsoft.com/nb-no +PublisherSupportUrl: https://support.microsoft.com/nb-no +PrivacyUrl: https://www.microsoft.com/nb-no/privacy/privacystatement +PackageName: Windows sitt vurderings- og distribusjonssett +PackageUrl: https://learn.microsoft.com/nb-no/windows-hardware/get-started/adk-install +License: ProprietÊr +LicenseUrl: https://www.microsoft.com/nb-no/legal/terms-of-use +Copyright: © Microsoft Corporation. Alle rettigheter forbeholdt. +CopyrightUrl: https://www.microsoft.com/nb-no/legal/intellectualproperty/trademarks +ShortDescription: Windows sitt vurderings- og distribusjonssett (Windows ADK) har verktÞyene for Ã¥ tilpasse Windows-avbildninger for utstasjonering i stor skala, og for Ã¥ teste kvaliteten og ytelsen til systemet ditt, dens tilfÞyde komponenter, og programmene den kjÞrer. +Tags: +- vurderings-og-distribusjonssett +- vurderingsogdistribusjonssett +- adk +- mdt +- sccm +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.installer.yaml b/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.installer.yaml index 72b4b4de487d..2914718eb049 100644 --- a/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.installer.yaml +++ b/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.installer.yaml @@ -1,5 +1,5 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Mihomo-Party.Mihomo-Party PackageVersion: 1.9.0 @@ -14,12 +14,12 @@ AppsAndFeaturesEntries: Installers: - Architecture: x86 InstallerUrl: https://github.com/mihomo-party-org/clash-party/releases/download/v1.9.0/clash-party-windows-1.9.0-ia32-setup.exe - InstallerSha256: 60F2461A647AB965816B1CCD5C58A2B6E089E45A27B6985650E2384DD3E1EAB0 + InstallerSha256: 7381AE8A6C22B8B1926C19FECF9CCCAE80F0C7F491C0B6A04A78922E3D882728 - Architecture: x64 InstallerUrl: https://github.com/mihomo-party-org/clash-party/releases/download/v1.9.0/clash-party-windows-1.9.0-x64-setup.exe - InstallerSha256: D139E1FCDFDE8A09B8D41A00C9FA0358331D92241A1D0AAB6702B0BCC6B7EB72 + InstallerSha256: 35295D79CC6FE95ED8260CEBCF626F263A27327A2237D528A7220A83E1C74691 - Architecture: arm64 InstallerUrl: https://github.com/mihomo-party-org/clash-party/releases/download/v1.9.0/clash-party-windows-1.9.0-arm64-setup.exe - InstallerSha256: 2AE9879A7A406C6ADED68FFB74C73E11B4BEE08513415E4A67C3A6B9BC5C8160 + InstallerSha256: 3D4438816FAABA5A7573A4A31369756C86853115FE210E9EF4427261C2C76DA2 ManifestType: installer -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.locale.en-US.yaml b/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.locale.en-US.yaml index fe7fcd7273af..defd597cfcaa 100644 --- a/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.locale.en-US.yaml +++ b/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Mihomo-Party.Mihomo-Party PackageVersion: 1.9.0 @@ -21,4 +21,4 @@ Tags: - mihomo - mihomo-party ManifestType: defaultLocale -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.yaml b/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.yaml index 8ce5fc7ae4f8..8c1ad94897e5 100644 --- a/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.yaml +++ b/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.yaml @@ -1,8 +1,8 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Mihomo-Party.Mihomo-Party PackageVersion: 1.9.0 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.installer.yaml new file mode 100644 index 000000000000..71440e2ec894 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.af +PackageVersion: 140.10.2 +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: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/af/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 0D3842603EF0219FE69B337A04F5C847F2D7FFDF7DA62DE40CF7EC5E2E63FAF0 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 af) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/af/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 453105A8E7155F9CE3A3098643B498B1EB7CFDD4EFBF7BD39E4B57F7B1F3791E + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 af) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/af/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 8F757DF0F4591EE39D553C569D6287E2418C6CB7C39FCA22468EE7B6C339270C + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 af) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.locale.de-DE.yaml new file mode 100644 index 000000000000..31192fce1ded --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.af +PackageVersion: 140.10.2 +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 (af) +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.locale.en-US.yaml new file mode 100644 index 000000000000..dd82054ba5f2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.af +PackageVersion: 140.10.2 +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 (af) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.locale.zh-CN.yaml new file mode 100644 index 000000000000..502bb428b05a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.af +PackageVersion: 140.10.2 +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 (af) +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.yaml b/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.yaml new file mode 100644 index 000000000000..230e5ab0d997 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.af +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.installer.yaml new file mode 100644 index 000000000000..cd8c7d70e0d0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.an +PackageVersion: 140.10.2 +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: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/an/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 74EA44B06A80C0E4F27C192F99D3F544D37ACF7B4854E96CF8B4589D78AB7B92 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 an) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/an/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 87CCD666E0CEE8275917C3D476E6AFADC48153CD2CF6182B61FF8DDC851EBE38 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 an) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/an/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 7E4EF021EA3A90A19E3E80AE1D6C39A7145B3F762E783682FB44DE0A8E44BE57 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 an) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.locale.de-DE.yaml new file mode 100644 index 000000000000..6ef673dc1de3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.an +PackageVersion: 140.10.2 +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 (an) +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.locale.en-US.yaml new file mode 100644 index 000000000000..64a647b1186d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.an +PackageVersion: 140.10.2 +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 (an) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.locale.zh-CN.yaml new file mode 100644 index 000000000000..f22f0e3a4bf1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.an +PackageVersion: 140.10.2 +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 (an) +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.yaml b/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.yaml new file mode 100644 index 000000000000..be3b8ef2f2bf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.an +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.installer.yaml new file mode 100644 index 000000000000..63aba4e0748b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.ar +PackageVersion: 140.10.2 +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: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/ar/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 1728D1B8D15953E480E912E8460658D53D6D98202AF5CC7AA955AD9CF270A8B2 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 ar) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/ar/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: A239769DFEE21A582B0DB114B0C2DFD0DDF4412CE12F3C1BAC498DBCDC49F639 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 ar) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/ar/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 98C4F283AFA5128AE55F95E6A32A0743396EFBA76C80EE893AF6165A1E14A431 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 ar) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.locale.de-DE.yaml new file mode 100644 index 000000000000..3d4b7b7778d9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.ar +PackageVersion: 140.10.2 +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 (ar) +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.locale.en-US.yaml new file mode 100644 index 000000000000..fb42e61a390b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.ar +PackageVersion: 140.10.2 +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 (ar) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.locale.zh-CN.yaml new file mode 100644 index 000000000000..e5f01111e777 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.ar +PackageVersion: 140.10.2 +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 (ar) +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.yaml b/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.yaml new file mode 100644 index 000000000000..7a6e53290af5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.ar +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.installer.yaml new file mode 100644 index 000000000000..f299d8cef1fa --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.bs +PackageVersion: 140.10.2 +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: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/bs/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 3E051895D7178365BE9E6D6F11E0043B54077A73666135C0C4E070D9FE9D244D + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 bs) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/bs/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: EDB1C485047C0263E9D3D3C1610E1039411D490CC4F46AB215FA665683139213 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 bs) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/bs/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 7A4EA875F0946AB1225D54A97AB49148A4EBA8A9AAA0BF210633429181716FB6 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 bs) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.locale.de-DE.yaml new file mode 100644 index 000000000000..40bd505e6117 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.bs +PackageVersion: 140.10.2 +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 (bs) +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.locale.en-US.yaml new file mode 100644 index 000000000000..e257f5a36897 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.bs +PackageVersion: 140.10.2 +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 (bs) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.locale.zh-CN.yaml new file mode 100644 index 000000000000..430625a70afc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.bs +PackageVersion: 140.10.2 +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 (bs) +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.yaml b/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.yaml new file mode 100644 index 000000000000..e272ff6b5f30 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.bs +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.installer.yaml new file mode 100644 index 000000000000..be3e00470539 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.cak +PackageVersion: 140.10.2 +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: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/cak/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: CAC1DB57D1344DF68F2848EE9B0D134F0938AF4D1E91DAABE1C6140CBD7DF0A0 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 cak) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/cak/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: FF7C5C0752C89F31E06E9D4E3C5C80BA41C4FE7DA68915A445D2379721364C32 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 cak) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/cak/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: DABD117013E521EA5B2351245BF2A56DEE1626CFAD7A1E652D818BF5179C530C + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 cak) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.locale.de-DE.yaml new file mode 100644 index 000000000000..45b5752f2bf0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.cak +PackageVersion: 140.10.2 +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 (cak) +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.locale.en-US.yaml new file mode 100644 index 000000000000..1023f6681832 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.cak +PackageVersion: 140.10.2 +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 (cak) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.locale.zh-CN.yaml new file mode 100644 index 000000000000..4a3c8f50a5e5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.cak +PackageVersion: 140.10.2 +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 (cak) +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.yaml b/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.yaml new file mode 100644 index 000000000000..968fd002592e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.cak +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.installer.yaml new file mode 100644 index 000000000000..79e8ef8389ad --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.cy +PackageVersion: 140.10.2 +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: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/cy/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: FC79246AF3DAA565B6FBAD8C5BF721EF04AA730D85CFD6996BF7FB921F41AB72 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 cy) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/cy/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: FE8610E85D1CA277C715C2A172B69D7954E152B0D69A3D70A3A11409FC301688 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 cy) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/cy/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 3D5D9304BB3562C1091013029CC39A5717747E05C5D9DD4D626F24894748D28F + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 cy) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.locale.de-DE.yaml new file mode 100644 index 000000000000..b08ea40fa3ff --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.cy +PackageVersion: 140.10.2 +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 (cy) +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.locale.en-US.yaml new file mode 100644 index 000000000000..3972ae1411cd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.cy +PackageVersion: 140.10.2 +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 (cy) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.locale.zh-CN.yaml new file mode 100644 index 000000000000..6a8f5d2d28db --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.cy +PackageVersion: 140.10.2 +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 (cy) +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.yaml b/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.yaml new file mode 100644 index 000000000000..74aa8075d1cf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.cy +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.installer.yaml new file mode 100644 index 000000000000..41fee1b373b9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.da +PackageVersion: 140.10.2 +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: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/da/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 6C14E409100383446A345A5AB9B6E832A9154CCF245A93CC55CBD2AC82181C43 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 da) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/da/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: BEEFFB8203ACE8E1E4E63FA65AAB5BEBF97CBD2ED33CB636A4D6902AEC926417 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 da) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/da/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 2B96C47D927EF54135B729243E27C6E0904149474A9376C36541EBBA9EED6FF4 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 da) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.locale.de-DE.yaml new file mode 100644 index 000000000000..4d121d7f774b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.da +PackageVersion: 140.10.2 +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 (da) +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.locale.en-US.yaml new file mode 100644 index 000000000000..fce30a6a61ba --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.da +PackageVersion: 140.10.2 +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 (da) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.locale.zh-CN.yaml new file mode 100644 index 000000000000..e7607aa42a30 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.da +PackageVersion: 140.10.2 +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 (da) +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.yaml b/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.yaml new file mode 100644 index 000000000000..19229fad466b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.da +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.installer.yaml new file mode 100644 index 000000000000..e195003ebd30 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/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.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.de +PackageVersion: 140.10.2 +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: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/de/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 0B61D70694C87E2F4DADA9474FB3D61312B11330BC47AC727E52F948783EEC7E + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 de) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/de/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 6E49958CC711857A520FCE5B681FB8A74903E043183D34F5D9F0D70AB9CE59D6 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 de) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/de/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 8B192461AE788B2C102C340128C66055DE64BBFFB0940398AA6942F124B34AC4 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 de) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.locale.de-DE.yaml new file mode 100644 index 000000000000..a65c322a22d9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.de +PackageVersion: 140.10.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.locale.en-US.yaml new file mode 100644 index 000000000000..d75e20343a7b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.de +PackageVersion: 140.10.2 +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.locale.zh-CN.yaml new file mode 100644 index 000000000000..c0e29bb1760b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.de +PackageVersion: 140.10.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.yaml b/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.yaml new file mode 100644 index 000000000000..777b5551eb2f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/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.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.de +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.installer.yaml new file mode 100644 index 000000000000..d74a0b0b4450 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.es-AR +PackageVersion: 140.10.2 +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: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/es-AR/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 6F58728AAAF429BC714FD822993B71591EDB59E9B0C9C14A98B3E24F2AB6FEC9 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 es-AR) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/es-AR/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: E6F123B22FA7FC549CF6509D39283055C11C3BBAC9CED203788FD9178A90A3A2 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 es-AR) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/es-AR/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: FA700CB351B0FC25658A0197411156E34A9BA4FBB2B6462D8C98FB43B366852C + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 es-AR) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.locale.de-DE.yaml new file mode 100644 index 000000000000..a32fc815f33e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.es-AR +PackageVersion: 140.10.2 +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 (es-AR) +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.locale.en-US.yaml new file mode 100644 index 000000000000..079844354983 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.es-AR +PackageVersion: 140.10.2 +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 (es-AR) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.locale.zh-CN.yaml new file mode 100644 index 000000000000..6a6b4a305b66 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.es-AR +PackageVersion: 140.10.2 +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 (es-AR) +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.yaml b/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.yaml new file mode 100644 index 000000000000..9c825a53964f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.es-AR +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/es-MX/140.10.2/Mozilla.Firefox.ESR.es-MX.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/es-MX/140.10.2/Mozilla.Firefox.ESR.es-MX.installer.yaml new file mode 100644 index 000000000000..f8ca9081ac59 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-MX/140.10.2/Mozilla.Firefox.ESR.es-MX.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.es-MX +PackageVersion: 140.10.2 +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: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/es-MX/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 0DB47270B5A1DD16A6D12FF5893E268DC27270225333C07E91D2D75B8241422D + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 es-MX) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/es-MX/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: F162CD89EE5FCC942666EB468DC88AC0F374BCCE4DFD6270424C9B8791B8962D + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 es-MX) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/es-MX/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: DAA5EDD4CDD3859D8E354405B99AAFBEA10A852150142334D8464D240B9CABF0 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 es-MX) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/es-MX/140.10.2/Mozilla.Firefox.ESR.es-MX.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/es-MX/140.10.2/Mozilla.Firefox.ESR.es-MX.locale.de-DE.yaml new file mode 100644 index 000000000000..a988f31c4202 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-MX/140.10.2/Mozilla.Firefox.ESR.es-MX.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.es-MX +PackageVersion: 140.10.2 +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 (es-MX) +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/es-MX/140.10.2/Mozilla.Firefox.ESR.es-MX.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/es-MX/140.10.2/Mozilla.Firefox.ESR.es-MX.locale.en-US.yaml new file mode 100644 index 000000000000..b075833af767 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-MX/140.10.2/Mozilla.Firefox.ESR.es-MX.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.es-MX +PackageVersion: 140.10.2 +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 (es-MX) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/es-MX/140.10.2/Mozilla.Firefox.ESR.es-MX.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/es-MX/140.10.2/Mozilla.Firefox.ESR.es-MX.locale.zh-CN.yaml new file mode 100644 index 000000000000..5db002218e2b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-MX/140.10.2/Mozilla.Firefox.ESR.es-MX.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.es-MX +PackageVersion: 140.10.2 +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 (es-MX) +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/es-MX/140.10.2/Mozilla.Firefox.ESR.es-MX.yaml b/manifests/m/Mozilla/Firefox/ESR/es-MX/140.10.2/Mozilla.Firefox.ESR.es-MX.yaml new file mode 100644 index 000000000000..dda5deaeac00 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-MX/140.10.2/Mozilla.Firefox.ESR.es-MX.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.es-MX +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.installer.yaml new file mode 100644 index 000000000000..be564e654123 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.fr +PackageVersion: 140.10.2 +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: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/fr/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 762D8259B823A498CAD5DE0CCBE92BF98897F4C6D7B85233EEE45D4E4DC32350 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 fr) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/fr/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: E08A2A6BADCEDC044DA5BF2557CBD4A9EA6EF7ADA8F7E7A2C3D4FA2C1065C0F0 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 fr) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/fr/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: B61C572A4778674D22AC46EB21795FBFE30ABA769D74E02631D6C65137D9458D + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 fr) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.locale.de-DE.yaml new file mode 100644 index 000000000000..2c9a13440fe5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.fr +PackageVersion: 140.10.2 +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 (fr) +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.locale.en-US.yaml new file mode 100644 index 000000000000..278e1915acb8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.fr +PackageVersion: 140.10.2 +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 (fr) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.locale.zh-CN.yaml new file mode 100644 index 000000000000..69eb30941f4c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.fr +PackageVersion: 140.10.2 +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 (fr) +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.yaml b/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.yaml new file mode 100644 index 000000000000..b4a63550a4d5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.fr +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/hi-IN/140.10.2/Mozilla.Firefox.ESR.hi-IN.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/hi-IN/140.10.2/Mozilla.Firefox.ESR.hi-IN.installer.yaml new file mode 100644 index 000000000000..66d73055136c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/hi-IN/140.10.2/Mozilla.Firefox.ESR.hi-IN.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.hi-IN +PackageVersion: 140.10.2 +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: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/hi-IN/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 70DFCF71E9212DD4C688B3279C66379A54FBC74A4F98E76756DB4394E86D462E + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 hi-IN) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/hi-IN/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: C3F718A73F8DD55C85E1ED4BEC8440924BBD5F78266CEE79C26F6B3F2C9C8A61 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 hi-IN) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/hi-IN/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: D273E0E9228C4941512D1B8281C9584C40373CF15FBD9C716673F87E2D953A70 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 hi-IN) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/hi-IN/140.10.2/Mozilla.Firefox.ESR.hi-IN.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/hi-IN/140.10.2/Mozilla.Firefox.ESR.hi-IN.locale.de-DE.yaml new file mode 100644 index 000000000000..d67f72700910 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/hi-IN/140.10.2/Mozilla.Firefox.ESR.hi-IN.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.hi-IN +PackageVersion: 140.10.2 +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 (hi-IN) +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/hi-IN/140.10.2/Mozilla.Firefox.ESR.hi-IN.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/hi-IN/140.10.2/Mozilla.Firefox.ESR.hi-IN.locale.en-US.yaml new file mode 100644 index 000000000000..4a555019cf04 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/hi-IN/140.10.2/Mozilla.Firefox.ESR.hi-IN.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.hi-IN +PackageVersion: 140.10.2 +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 (hi-IN) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/hi-IN/140.10.2/Mozilla.Firefox.ESR.hi-IN.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/hi-IN/140.10.2/Mozilla.Firefox.ESR.hi-IN.locale.zh-CN.yaml new file mode 100644 index 000000000000..6f918e3bd652 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/hi-IN/140.10.2/Mozilla.Firefox.ESR.hi-IN.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.hi-IN +PackageVersion: 140.10.2 +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 (hi-IN) +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/hi-IN/140.10.2/Mozilla.Firefox.ESR.hi-IN.yaml b/manifests/m/Mozilla/Firefox/ESR/hi-IN/140.10.2/Mozilla.Firefox.ESR.hi-IN.yaml new file mode 100644 index 000000000000..73c1848a4b09 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/hi-IN/140.10.2/Mozilla.Firefox.ESR.hi-IN.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.hi-IN +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ia/140.10.2/Mozilla.Firefox.ESR.ia.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/ia/140.10.2/Mozilla.Firefox.ESR.ia.installer.yaml new file mode 100644 index 000000000000..e4e3d9e4f358 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ia/140.10.2/Mozilla.Firefox.ESR.ia.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.ia +PackageVersion: 140.10.2 +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: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/ia/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 70E5EB433E300CDE31ACED6B0C24BB79A7F6C42D2842972D02A9BF9E42699F49 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 ia) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/ia/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 0929B0AEB2A2C3BCAE18C0DC197FB204090092FEF32328BC272D2BA40244C295 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 ia) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/ia/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: F00B603A1C1EF8B9E883452D0F231548F411486A13DA196C4F85EC5191A9133A + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 ia) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ia/140.10.2/Mozilla.Firefox.ESR.ia.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/ia/140.10.2/Mozilla.Firefox.ESR.ia.locale.de-DE.yaml new file mode 100644 index 000000000000..0b29b2132ae6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ia/140.10.2/Mozilla.Firefox.ESR.ia.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.ia +PackageVersion: 140.10.2 +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 (ia) +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ia/140.10.2/Mozilla.Firefox.ESR.ia.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/ia/140.10.2/Mozilla.Firefox.ESR.ia.locale.en-US.yaml new file mode 100644 index 000000000000..b656659576e2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ia/140.10.2/Mozilla.Firefox.ESR.ia.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.ia +PackageVersion: 140.10.2 +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 (ia) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ia/140.10.2/Mozilla.Firefox.ESR.ia.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/ia/140.10.2/Mozilla.Firefox.ESR.ia.locale.zh-CN.yaml new file mode 100644 index 000000000000..b55d5fe515c2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ia/140.10.2/Mozilla.Firefox.ESR.ia.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.ia +PackageVersion: 140.10.2 +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 (ia) +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ia/140.10.2/Mozilla.Firefox.ESR.ia.yaml b/manifests/m/Mozilla/Firefox/ESR/ia/140.10.2/Mozilla.Firefox.ESR.ia.yaml new file mode 100644 index 000000000000..2a70f0f5110e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ia/140.10.2/Mozilla.Firefox.ESR.ia.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.ia +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/kk/140.10.2/Mozilla.Firefox.ESR.kk.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/kk/140.10.2/Mozilla.Firefox.ESR.kk.installer.yaml new file mode 100644 index 000000000000..6fae9fc88ab8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/kk/140.10.2/Mozilla.Firefox.ESR.kk.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.kk +PackageVersion: 140.10.2 +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: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/kk/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 4B43D4960B69123D4866651637D7C6939BECA2515114612A5EEEDE49CD616D49 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 kk) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/kk/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: F7EB4BA41767EF5D4DB86C8F36A5CD66B2D84E9CBEF3224499EC5F63F7E58F51 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 kk) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/kk/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: A50C1D0A6DD3C2658AC5D076FD09744E23ACD53B2CC7081D1447A459B6EBBC2A + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 kk) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/kk/140.10.2/Mozilla.Firefox.ESR.kk.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/kk/140.10.2/Mozilla.Firefox.ESR.kk.locale.de-DE.yaml new file mode 100644 index 000000000000..96c61dcdc3c6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/kk/140.10.2/Mozilla.Firefox.ESR.kk.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.kk +PackageVersion: 140.10.2 +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 (kk) +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/kk/140.10.2/Mozilla.Firefox.ESR.kk.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/kk/140.10.2/Mozilla.Firefox.ESR.kk.locale.en-US.yaml new file mode 100644 index 000000000000..fdc137995040 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/kk/140.10.2/Mozilla.Firefox.ESR.kk.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.kk +PackageVersion: 140.10.2 +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 (kk) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/kk/140.10.2/Mozilla.Firefox.ESR.kk.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/kk/140.10.2/Mozilla.Firefox.ESR.kk.locale.zh-CN.yaml new file mode 100644 index 000000000000..b8c1b44ab1fa --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/kk/140.10.2/Mozilla.Firefox.ESR.kk.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.kk +PackageVersion: 140.10.2 +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 (kk) +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/kk/140.10.2/Mozilla.Firefox.ESR.kk.yaml b/manifests/m/Mozilla/Firefox/ESR/kk/140.10.2/Mozilla.Firefox.ESR.kk.yaml new file mode 100644 index 000000000000..bd5ee411584a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/kk/140.10.2/Mozilla.Firefox.ESR.kk.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.kk +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/mk/140.10.2/Mozilla.Firefox.ESR.mk.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/mk/140.10.2/Mozilla.Firefox.ESR.mk.installer.yaml new file mode 100644 index 000000000000..4af577f79272 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/mk/140.10.2/Mozilla.Firefox.ESR.mk.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.mk +PackageVersion: 140.10.2 +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: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/mk/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 465C10615D64F72B02C9880BAC142D08F1FF9AAD18188753A51289C12CF9CDC8 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 mk) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/mk/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: B9200CF72505A7A3AFA91A9BDB6C4D6E3A42D6B780DA5D4B49F80E61DB2BA352 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 mk) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/mk/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 3301879C352BA6AF146E70DD36C7352FE4E91CB3C79158B3FFBFC14BB7363580 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 mk) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/mk/140.10.2/Mozilla.Firefox.ESR.mk.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/mk/140.10.2/Mozilla.Firefox.ESR.mk.locale.de-DE.yaml new file mode 100644 index 000000000000..8e9aff434538 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/mk/140.10.2/Mozilla.Firefox.ESR.mk.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.mk +PackageVersion: 140.10.2 +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 (mk) +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/mk/140.10.2/Mozilla.Firefox.ESR.mk.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/mk/140.10.2/Mozilla.Firefox.ESR.mk.locale.en-US.yaml new file mode 100644 index 000000000000..ae667d247199 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/mk/140.10.2/Mozilla.Firefox.ESR.mk.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.mk +PackageVersion: 140.10.2 +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 (mk) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/mk/140.10.2/Mozilla.Firefox.ESR.mk.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/mk/140.10.2/Mozilla.Firefox.ESR.mk.locale.zh-CN.yaml new file mode 100644 index 000000000000..9bf149cb927e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/mk/140.10.2/Mozilla.Firefox.ESR.mk.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.mk +PackageVersion: 140.10.2 +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 (mk) +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/mk/140.10.2/Mozilla.Firefox.ESR.mk.yaml b/manifests/m/Mozilla/Firefox/ESR/mk/140.10.2/Mozilla.Firefox.ESR.mk.yaml new file mode 100644 index 000000000000..d5d407d256d4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/mk/140.10.2/Mozilla.Firefox.ESR.mk.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.mk +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.installer.yaml b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.installer.yaml new file mode 100644 index 000000000000..63d30b48326d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/af/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 8D15EE2912773C059AE0CA4C7311E783ABC881515F995FA63380973C20F674DA +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/af/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 543CF65B1FFD6E5319243C821BDBC4C4106B76C2FFFFD632465719A2B9F603DF +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/af/Firefox%20Setup%20150.0.2.exe + InstallerSha256: DE9D52C067BD0D3777998C32DEE3734024FA4925386A6BE574C2E70B38D70F65 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.cs-CZ.yaml new file mode 100644 index 000000000000..a53d66d16563 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.da-DK.yaml new file mode 100644 index 000000000000..02280ad1383c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.de-DE.yaml new file mode 100644 index 000000000000..16ec20f641c5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.el-GR.yaml new file mode 100644 index 000000000000..3bded24ca220 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.en-GB.yaml new file mode 100644 index 000000000000..93b3d735d22a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.en-US.yaml new file mode 100644 index 000000000000..3c1a035de3d4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 150.0.2 +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 (af) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.es-MX.yaml new file mode 100644 index 000000000000..bec211c9c87e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.fr-FR.yaml new file mode 100644 index 000000000000..75f6399cd6b8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.hu-HU.yaml new file mode 100644 index 000000000000..84056e337f94 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.ja-JP.yaml new file mode 100644 index 000000000000..25b4aef926d9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.nb-NO.yaml new file mode 100644 index 000000000000..780985eef73b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.ru-RU.yaml new file mode 100644 index 000000000000..6cd826d4d789 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.ta-IN.yaml new file mode 100644 index 000000000000..5ef8c886f994 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.zh-CN.yaml new file mode 100644 index 000000000000..8cb872726b7c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.yaml b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.yaml new file mode 100644 index 000000000000..8f47ddfb3f72 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/af/150.0.2/Mozilla.Firefox.af.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.af +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.installer.yaml b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.installer.yaml new file mode 100644 index 000000000000..f258810d9f59 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ast +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/ast/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 4A867BBDF4F92FEB5441D5DD447D4F016BC096AAD9C25F986482E3A7E5702061 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/ast/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 5D9FE23D3DD6C4DE98DF34E4F0C0929F717725EC6FDD8DB3965D917E5049AEAF +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/ast/Firefox%20Setup%20150.0.2.exe + InstallerSha256: BD72CB645CF934819EF352EA458E13417302AA088D84C862A2D1CF7604C3A6BC +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.cs-CZ.yaml new file mode 100644 index 000000000000..48fd9580cef7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ast +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.da-DK.yaml new file mode 100644 index 000000000000..04efae00d487 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ast +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.de-DE.yaml new file mode 100644 index 000000000000..d4b040160d81 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ast +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.el-GR.yaml new file mode 100644 index 000000000000..66339e471452 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ast +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.en-GB.yaml new file mode 100644 index 000000000000..178250111f0f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ast +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.en-US.yaml new file mode 100644 index 000000000000..5d2e83ebb553 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ast +PackageVersion: 150.0.2 +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 (ast) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.es-MX.yaml new file mode 100644 index 000000000000..528241fd7a8c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ast +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.fr-FR.yaml new file mode 100644 index 000000000000..869a40b95297 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ast +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.hu-HU.yaml new file mode 100644 index 000000000000..6f28758f1207 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ast +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.ja-JP.yaml new file mode 100644 index 000000000000..ea06ce9d5e87 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ast +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.nb-NO.yaml new file mode 100644 index 000000000000..24295400e63f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ast +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.ru-RU.yaml new file mode 100644 index 000000000000..1c206ff912ad --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ast +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.ta-IN.yaml new file mode 100644 index 000000000000..03beb0c220e3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ast +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.zh-CN.yaml new file mode 100644 index 000000000000..205da097dc61 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ast +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.yaml b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.yaml new file mode 100644 index 000000000000..0252e72a7864 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ast/150.0.2/Mozilla.Firefox.ast.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ast +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.installer.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.installer.yaml new file mode 100644 index 000000000000..527a50a9a4af --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/be/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 4B775353CC95F068BB742D2D1429C2CCD9987ABB52F02B6C0DCB90E225CDEB7D +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/be/Firefox%20Setup%20150.0.2.exe + InstallerSha256: C22046A5E41DDCA709E1E00E46351980520C91A86D80FCA1741FDE0F0BA9E018 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/be/Firefox%20Setup%20150.0.2.exe + InstallerSha256: B2E3402A2C819E1B4ECBEC528202AF2BF4A3393F22F62CDCCFD1230D5F7413B1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.cs-CZ.yaml new file mode 100644 index 000000000000..b9d9f3bef82b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.da-DK.yaml new file mode 100644 index 000000000000..5c30ec3b67b8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.de-DE.yaml new file mode 100644 index 000000000000..0db5800171b1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.el-GR.yaml new file mode 100644 index 000000000000..3adfda2c3382 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.en-GB.yaml new file mode 100644 index 000000000000..127691d57a5e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.en-US.yaml new file mode 100644 index 000000000000..c12fd5ce890c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +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 (be) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.es-MX.yaml new file mode 100644 index 000000000000..ca1db28ea3c3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.fr-FR.yaml new file mode 100644 index 000000000000..9dd32d0dcd93 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.hu-HU.yaml new file mode 100644 index 000000000000..19dacc8c7f9c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.ja-JP.yaml new file mode 100644 index 000000000000..17e815fcd69c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.nb-NO.yaml new file mode 100644 index 000000000000..7278a19f823c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.ru-RU.yaml new file mode 100644 index 000000000000..77a7c75e4fd7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.ta-IN.yaml new file mode 100644 index 000000000000..500962677bb5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.zh-CN.yaml new file mode 100644 index 000000000000..40bbb65dd421 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.yaml new file mode 100644 index 000000000000..7702c02fa450 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.installer.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.installer.yaml new file mode 100644 index 000000000000..7c2920108313 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/br/Firefox%20Setup%20150.0.2.exe + InstallerSha256: DFE786550D632627B6549B51D31DA6A04699645B0ACD699D40A6580D01833F35 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/br/Firefox%20Setup%20150.0.2.exe + InstallerSha256: DEC47D148E9C7F8BC11DA985FD67D5B0BA879A6DD43284FCC7AE5F75B2172967 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/br/Firefox%20Setup%20150.0.2.exe + InstallerSha256: A3382ABD8477012301D8E9C52F8312BB389CFA212F856CBF751FC8C400DA078C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.cs-CZ.yaml new file mode 100644 index 000000000000..6dc06c4cb724 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.da-DK.yaml new file mode 100644 index 000000000000..3f410a9e24ed --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.de-DE.yaml new file mode 100644 index 000000000000..e71122df8299 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.el-GR.yaml new file mode 100644 index 000000000000..cf53a67041ab --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.en-GB.yaml new file mode 100644 index 000000000000..ca2cc9ac3c67 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.en-US.yaml new file mode 100644 index 000000000000..a4f4b8ee32e3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +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 (br) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.es-MX.yaml new file mode 100644 index 000000000000..ad29de4fefb0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.fr-FR.yaml new file mode 100644 index 000000000000..a074ac5ad0f6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.hu-HU.yaml new file mode 100644 index 000000000000..77e69d1c5f93 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.ja-JP.yaml new file mode 100644 index 000000000000..8271bb4806d1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.nb-NO.yaml new file mode 100644 index 000000000000..e50f6de09ddd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.ru-RU.yaml new file mode 100644 index 000000000000..484e6f902c8b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.ta-IN.yaml new file mode 100644 index 000000000000..3c0292260b5d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.zh-CN.yaml new file mode 100644 index 000000000000..93ddd411d8e1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.yaml new file mode 100644 index 000000000000..4496da172c92 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.installer.yaml b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.installer.yaml new file mode 100644 index 000000000000..663ad0d95f8e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ca +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/ca/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 7329B37CA271CC1FCB94D7D4A0D5B99C69DE0FD5D78354588497A2053E4A7F29 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/ca/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 6F2C9008C7EB2ABD61CAC62C4FC51E1E404D31962CAA461FF279D43C1F36029A +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/ca/Firefox%20Setup%20150.0.2.exe + InstallerSha256: CEEF53DE26C31FE7AF4E814F18EBC43638DC5B276A03ECDFF2AF03ACA2D7355F +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.cs-CZ.yaml new file mode 100644 index 000000000000..f2688ddb37d0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ca +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.da-DK.yaml new file mode 100644 index 000000000000..e6104fd4849c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ca +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.de-DE.yaml new file mode 100644 index 000000000000..5cbff4daf703 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ca +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.el-GR.yaml new file mode 100644 index 000000000000..0fa419a4aa49 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ca +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.en-GB.yaml new file mode 100644 index 000000000000..016426c466bf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ca +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.en-US.yaml new file mode 100644 index 000000000000..06911f0672f4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ca +PackageVersion: 150.0.2 +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 (ca) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.es-MX.yaml new file mode 100644 index 000000000000..2cbd77536e3b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ca +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.fr-FR.yaml new file mode 100644 index 000000000000..0f752b8a9fca --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ca +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.hu-HU.yaml new file mode 100644 index 000000000000..17221ce1be4d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ca +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.ja-JP.yaml new file mode 100644 index 000000000000..6a340dd4a6d0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ca +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.nb-NO.yaml new file mode 100644 index 000000000000..27a5b2b73e0c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ca +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.ru-RU.yaml new file mode 100644 index 000000000000..22df252d70ac --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ca +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.ta-IN.yaml new file mode 100644 index 000000000000..fa9b5e68c0c9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ca +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.zh-CN.yaml new file mode 100644 index 000000000000..41f63e20415d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ca +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.yaml b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.yaml new file mode 100644 index 000000000000..ea4f4ec5b7e4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ca/150.0.2/Mozilla.Firefox.ca.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ca +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.installer.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.installer.yaml new file mode 100644 index 000000000000..e808fee49490 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/et/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 1F4ADA3A099ABF61D6CA30F2F9D2E377B91F83651C6DF2F3ADCCFB6544A81063 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/et/Firefox%20Setup%20150.0.2.exe + InstallerSha256: F59EFCC9E02D289C2BF0565641AE55FC0B1F4F212543033FE15FD704D43E5B85 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/et/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 490C539FCDC2A9B65E56F3C186B3A6ADECA7F48B614E7C656F8E9B151A719A6A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.cs-CZ.yaml new file mode 100644 index 000000000000..f9e6fafae470 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.da-DK.yaml new file mode 100644 index 000000000000..242c143d226c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.de-DE.yaml new file mode 100644 index 000000000000..bda44e5e1e7b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.el-GR.yaml new file mode 100644 index 000000000000..2558966d7334 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.en-GB.yaml new file mode 100644 index 000000000000..6b7295b83f96 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.en-US.yaml new file mode 100644 index 000000000000..ea22669ca961 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +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 (et) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.es-MX.yaml new file mode 100644 index 000000000000..8be287bfd93f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.fr-FR.yaml new file mode 100644 index 000000000000..8f7d9e6ba6e7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.hu-HU.yaml new file mode 100644 index 000000000000..722c820eeab6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.ja-JP.yaml new file mode 100644 index 000000000000..7ee36a8323c5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.nb-NO.yaml new file mode 100644 index 000000000000..a08d020ab97b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.ru-RU.yaml new file mode 100644 index 000000000000..3a1a6ed03ce6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.ta-IN.yaml new file mode 100644 index 000000000000..6fd7dac2c5aa --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.zh-CN.yaml new file mode 100644 index 000000000000..b5216ce4b716 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.yaml new file mode 100644 index 000000000000..25ed6e55eab2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.installer.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.installer.yaml new file mode 100644 index 000000000000..dabf0877bf6e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/eu/Firefox%20Setup%20150.0.2.exe + InstallerSha256: EBEB57F5DABA91C263772D4EDB5D5FD5098179C7DA29888DE224CADB2BAA9C78 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/eu/Firefox%20Setup%20150.0.2.exe + InstallerSha256: E4029CD981F4D2BFF55683314A615056A7084E329E610ADB3654FF85CBFF9C0F +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/eu/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 345FFF162091419AE1A8D138508145EFC8B4A7377FDDD350BA87456CB5D4AF2A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.cs-CZ.yaml new file mode 100644 index 000000000000..46b3e143f648 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.da-DK.yaml new file mode 100644 index 000000000000..43d13693c0e4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.de-DE.yaml new file mode 100644 index 000000000000..48a490ccd052 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.el-GR.yaml new file mode 100644 index 000000000000..ff28071dcb54 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.en-GB.yaml new file mode 100644 index 000000000000..f3ffcdadb16e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.en-US.yaml new file mode 100644 index 000000000000..43a15c30a2e8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +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 (eu) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.es-MX.yaml new file mode 100644 index 000000000000..557cee605898 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.fr-FR.yaml new file mode 100644 index 000000000000..28cb56f8a1c6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.hu-HU.yaml new file mode 100644 index 000000000000..37e232fde76d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.ja-JP.yaml new file mode 100644 index 000000000000..66f90786f3dd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.nb-NO.yaml new file mode 100644 index 000000000000..5f45bcf9950e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.ru-RU.yaml new file mode 100644 index 000000000000..4c8b469d96d1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.ta-IN.yaml new file mode 100644 index 000000000000..a90a6c725659 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.zh-CN.yaml new file mode 100644 index 000000000000..1e794e2965b4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.yaml new file mode 100644 index 000000000000..f26a4a6fae18 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.installer.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.installer.yaml new file mode 100644 index 000000000000..32848428b5d4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/ff/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 4E9283F4C5AC02A253D00D1DA7EFD89FE1E1EEB25FDE4FA573936AB41DCF37A4 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/ff/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 64CA90A972F53EAE8C272E8E7DAD2515E08478486D8E5698C680AD85D6991E2A +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/ff/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 4ACAA83C8706B14B05F87C8EFA19F86FF699F3AE038ACB2815EA6B0D28CF2795 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.cs-CZ.yaml new file mode 100644 index 000000000000..8f1613844d83 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.da-DK.yaml new file mode 100644 index 000000000000..e84f0800f3d6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.de-DE.yaml new file mode 100644 index 000000000000..899c3dffe638 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.el-GR.yaml new file mode 100644 index 000000000000..0859a3571666 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.en-GB.yaml new file mode 100644 index 000000000000..66b7ebcdf2b8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.en-US.yaml new file mode 100644 index 000000000000..391caf8c482f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +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 (ff) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.es-MX.yaml new file mode 100644 index 000000000000..1d18d7835493 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.fr-FR.yaml new file mode 100644 index 000000000000..8076894c2739 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.hu-HU.yaml new file mode 100644 index 000000000000..63936d3683b3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.ja-JP.yaml new file mode 100644 index 000000000000..f1a4277f9012 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.nb-NO.yaml new file mode 100644 index 000000000000..751cc548039a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.ru-RU.yaml new file mode 100644 index 000000000000..dfb2bb1eeefe --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.ta-IN.yaml new file mode 100644 index 000000000000..143f22e5e130 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.zh-CN.yaml new file mode 100644 index 000000000000..7d14c5d3c9b3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.yaml new file mode 100644 index 000000000000..82a5e2e6494d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.installer.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.installer.yaml new file mode 100644 index 000000000000..c9b1f0d54b16 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/fr/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 27B70EBE21963D6C2252C2495CE61FD821833572E06907EB47DA25F31BC8AB75 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/fr/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 977AD532BE7B55027CF5E83AC7F1DAE33D7CAC2682D3AEA8EDE62FAD52AC49DE +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/fr/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 71EC6788A9ED7166F526CA537936A1C96933291F25CCC561732DFAFE9EE70765 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.cs-CZ.yaml new file mode 100644 index 000000000000..be19f003c9ec --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.da-DK.yaml new file mode 100644 index 000000000000..6af482039134 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.de-DE.yaml new file mode 100644 index 000000000000..6d40821b3c45 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.el-GR.yaml new file mode 100644 index 000000000000..19330f58ed6e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.en-GB.yaml new file mode 100644 index 000000000000..94d86325b991 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.en-US.yaml new file mode 100644 index 000000000000..67d6facde03e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +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 (fr) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.es-MX.yaml new file mode 100644 index 000000000000..de543a7d10be --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.fr-FR.yaml new file mode 100644 index 000000000000..426a7aaf8eb1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.hu-HU.yaml new file mode 100644 index 000000000000..5cbb74edbcdc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.ja-JP.yaml new file mode 100644 index 000000000000..dc69cc73e173 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.nb-NO.yaml new file mode 100644 index 000000000000..4752ee8a0eb0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.ru-RU.yaml new file mode 100644 index 000000000000..e1b7816a7275 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.ta-IN.yaml new file mode 100644 index 000000000000..7b94124c6c9b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.zh-CN.yaml new file mode 100644 index 000000000000..7a8d90b3b691 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.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.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.yaml new file mode 100644 index 000000000000..0f42b2d1f887 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.installer.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.installer.yaml new file mode 100644 index 000000000000..9959e38bbc12 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/gd/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 9B70CC649EDBD20748E93DFB8596EEDEFD3EFF671A0659401B06E6BBAFFAEDAD +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/gd/Firefox%20Setup%20150.0.2.exe + InstallerSha256: FF4F5072840F3D367CBF80BF621864868CF07B98731B21C99FDC2753BF773356 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/gd/Firefox%20Setup%20150.0.2.exe + InstallerSha256: E5A11932F26470A50B1D61E89F7CE8E9A8A4591C5BFDA188B5860289F7B9E427 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.cs-CZ.yaml new file mode 100644 index 000000000000..5c03f212ba02 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.da-DK.yaml new file mode 100644 index 000000000000..3eceed02e458 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.de-DE.yaml new file mode 100644 index 000000000000..064593f95ba8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.el-GR.yaml new file mode 100644 index 000000000000..4b7058f939b8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.en-GB.yaml new file mode 100644 index 000000000000..aa6a40d009f1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.en-US.yaml new file mode 100644 index 000000000000..8cfee09c496c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +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 (gd) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.es-MX.yaml new file mode 100644 index 000000000000..cd17e35ac745 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.fr-FR.yaml new file mode 100644 index 000000000000..6001bc165528 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.hu-HU.yaml new file mode 100644 index 000000000000..c613a6ac46cc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.ja-JP.yaml new file mode 100644 index 000000000000..477f1f019b97 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.nb-NO.yaml new file mode 100644 index 000000000000..5b4164fee36d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.ru-RU.yaml new file mode 100644 index 000000000000..62ec794b8b93 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.ta-IN.yaml new file mode 100644 index 000000000000..968c8f2b8b36 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.zh-CN.yaml new file mode 100644 index 000000000000..3032d25da106 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.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.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.yaml new file mode 100644 index 000000000000..43faed09156d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.installer.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.installer.yaml new file mode 100644 index 000000000000..a12d61f12efb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/gl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 2AC973A120B4F67CB4B542609E3C2A1475DC4DF504FB464ED2E3EE3D0E694A72 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/gl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 5199EE9A53183AC1FCCCF0B43D862EABB12A5F1E0843C358C73FDBE810F97FCD +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/gl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 541A9C8AF97AC6D14A5676169825E1DAF085E1EA4B621FD51AE6811694B5CCCE +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.cs-CZ.yaml new file mode 100644 index 000000000000..e7ca21734f3f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.da-DK.yaml new file mode 100644 index 000000000000..c95a4ece1a7f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.de-DE.yaml new file mode 100644 index 000000000000..6ea1b4ac892f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.el-GR.yaml new file mode 100644 index 000000000000..d0498a624cfe --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.en-GB.yaml new file mode 100644 index 000000000000..295f5e54e1f4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.en-US.yaml new file mode 100644 index 000000000000..ea08882fea1b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +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 (gl) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.es-MX.yaml new file mode 100644 index 000000000000..840d3346417d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.fr-FR.yaml new file mode 100644 index 000000000000..84132b486ebe --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.hu-HU.yaml new file mode 100644 index 000000000000..60e74c3720cf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.ja-JP.yaml new file mode 100644 index 000000000000..7f7ee82cf722 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.nb-NO.yaml new file mode 100644 index 000000000000..943d4abddc56 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.ru-RU.yaml new file mode 100644 index 000000000000..1912e3107d0c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.ta-IN.yaml new file mode 100644 index 000000000000..55455581de83 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.zh-CN.yaml new file mode 100644 index 000000000000..44cf9bfe72e4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.yaml new file mode 100644 index 000000000000..9333d3b84b18 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.installer.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.installer.yaml new file mode 100644 index 000000000000..d7671c2baac4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/gn/Firefox%20Setup%20150.0.2.exe + InstallerSha256: BB6CE23CCC349CFEBBB32AF581CC2BB7B2D2F36757363D05AF29CB96C0EC6F81 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/gn/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 50259B15F61CBCBB6BF7CA63596A61B707E70DD8F7E2C19425649E7A7847701A +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/gn/Firefox%20Setup%20150.0.2.exe + InstallerSha256: D3194A3DCB3E83EB08AFA1402BC557939C84C40F23DFF46814D5C0DA00395117 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.cs-CZ.yaml new file mode 100644 index 000000000000..55bef0660d3e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.da-DK.yaml new file mode 100644 index 000000000000..336c4b0c4bd8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.de-DE.yaml new file mode 100644 index 000000000000..92a8a5d4264d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.el-GR.yaml new file mode 100644 index 000000000000..634ce643d681 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.en-GB.yaml new file mode 100644 index 000000000000..ac1dd25932c0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.en-US.yaml new file mode 100644 index 000000000000..b7583bd03035 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +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 (gn) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.es-MX.yaml new file mode 100644 index 000000000000..9340024d66b6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.fr-FR.yaml new file mode 100644 index 000000000000..20cb3cb41d4c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.hu-HU.yaml new file mode 100644 index 000000000000..48b600d47877 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.ja-JP.yaml new file mode 100644 index 000000000000..4d25989fc285 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.nb-NO.yaml new file mode 100644 index 000000000000..6d117629c4c5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.ru-RU.yaml new file mode 100644 index 000000000000..2d527337b1cd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.ta-IN.yaml new file mode 100644 index 000000000000..63bfd331fbaf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.zh-CN.yaml new file mode 100644 index 000000000000..54568304e6c7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.yaml new file mode 100644 index 000000000000..0ffafccf79c2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.installer.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.installer.yaml new file mode 100644 index 000000000000..0f62201b28fc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/gu-IN/Firefox%20Setup%20150.0.2.exe + InstallerSha256: E6A0F1E9280C162024ECC3E1C02A54D9830463724A7E417985171F9FBF0A568D +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/gu-IN/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 846A3C66AE7639F081FC09C41E9C9DE643D21818BBFD5A180850CDF4B45F9E4C +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/gu-IN/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 44FC1158DF3FE90724F8D06534867B6A5E0615984D76E2CBEFAA9DC69F6E738E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.cs-CZ.yaml new file mode 100644 index 000000000000..a116f5bc87f2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.da-DK.yaml new file mode 100644 index 000000000000..44054404c6fd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.de-DE.yaml new file mode 100644 index 000000000000..a37d5bb140d8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.el-GR.yaml new file mode 100644 index 000000000000..09118e21fd52 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.en-GB.yaml new file mode 100644 index 000000000000..618c6e86fda8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.en-US.yaml new file mode 100644 index 000000000000..2af8a620a70c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +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 (gu-IN) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.es-MX.yaml new file mode 100644 index 000000000000..b964966840da --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.fr-FR.yaml new file mode 100644 index 000000000000..4d750d005904 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.hu-HU.yaml new file mode 100644 index 000000000000..e96c738066b0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.ja-JP.yaml new file mode 100644 index 000000000000..1f1d9b4dd118 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.nb-NO.yaml new file mode 100644 index 000000000000..c14b20007033 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.ru-RU.yaml new file mode 100644 index 000000000000..17db10899148 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.ta-IN.yaml new file mode 100644 index 000000000000..d9651299ce57 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.zh-CN.yaml new file mode 100644 index 000000000000..04ad572ab9f7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.yaml new file mode 100644 index 000000000000..29e99b55b693 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.installer.yaml b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.installer.yaml new file mode 100644 index 000000000000..09cd06e9cc0f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/hy-AM/Firefox%20Setup%20150.0.2.exe + InstallerSha256: FA8CFD637D83B0DBBBD57676BA47571800FDA62424070B8DBDF4C711320567EA +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/hy-AM/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 3FAF0C4578C4203785684B7C6412B946ED739EA92900E17DE556645419DDBB4E +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/hy-AM/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 10FDFE9854E0B28CB737B65974DBA81636448DB7551A08D99A7FFAF3FABD7983 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.cs-CZ.yaml new file mode 100644 index 000000000000..74620c1691ae --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.da-DK.yaml new file mode 100644 index 000000000000..f40fdd8cb981 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.de-DE.yaml new file mode 100644 index 000000000000..46fb0135ac4c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.el-GR.yaml new file mode 100644 index 000000000000..2652ea9c3f4c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.en-GB.yaml new file mode 100644 index 000000000000..93816cfe642c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.en-US.yaml new file mode 100644 index 000000000000..fc3650ca6a82 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 150.0.2 +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 (hy-AM) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.es-MX.yaml new file mode 100644 index 000000000000..8cf9b87a232f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.fr-FR.yaml new file mode 100644 index 000000000000..d91840ae1a84 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.hu-HU.yaml new file mode 100644 index 000000000000..977e16faeed0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.ja-JP.yaml new file mode 100644 index 000000000000..e02ddd340175 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.nb-NO.yaml new file mode 100644 index 000000000000..a69cd0074f29 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.ru-RU.yaml new file mode 100644 index 000000000000..59274c47099d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.ta-IN.yaml new file mode 100644 index 000000000000..c46065e10c96 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.locale.zh-CN.yaml new file mode 100644 index 000000000000..b873d0266323 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.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.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.yaml b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.yaml new file mode 100644 index 000000000000..add85477d80b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/hy-AM/150.0.2/Mozilla.Firefox.hy-AM.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.hy-AM +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.installer.yaml b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.installer.yaml new file mode 100644 index 000000000000..f4b413421ec3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/is/Firefox%20Setup%20150.0.2.exe + InstallerSha256: C383EDAC3DBEC68A90E6D1D5598D868B36E8D284DC13BF357BBDBA5ECAC7B57D +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/is/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 0D926AB8D9A2CC8AEBB69F6672C608596265F9D2180F5A601F9A305458B69106 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/is/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 5558715587A06A74FB94F354250717AB0C2619563D2160EE9B0E02CCE02D4734 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.cs-CZ.yaml new file mode 100644 index 000000000000..efbfc879ae40 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.da-DK.yaml new file mode 100644 index 000000000000..1ed35cdbfe9d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.de-DE.yaml new file mode 100644 index 000000000000..707dfce31028 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.el-GR.yaml new file mode 100644 index 000000000000..70114c82bbe0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.en-GB.yaml new file mode 100644 index 000000000000..40e6119fed0c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.en-US.yaml new file mode 100644 index 000000000000..f347c9c8ff34 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 150.0.2 +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 (is) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.es-MX.yaml new file mode 100644 index 000000000000..d695e2cf0d0a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.fr-FR.yaml new file mode 100644 index 000000000000..7958ef7303ae --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.hu-HU.yaml new file mode 100644 index 000000000000..8a8e81451022 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.ja-JP.yaml new file mode 100644 index 000000000000..7f0084e92f2d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.nb-NO.yaml new file mode 100644 index 000000000000..5e36f1ec1171 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.ru-RU.yaml new file mode 100644 index 000000000000..06cfb4f1919f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.ta-IN.yaml new file mode 100644 index 000000000000..b5e43f41444d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.zh-CN.yaml new file mode 100644 index 000000000000..133f9400851f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.yaml b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.yaml new file mode 100644 index 000000000000..b9c22ba572d5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/is/150.0.2/Mozilla.Firefox.is.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.is +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.installer.yaml b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.installer.yaml new file mode 100644 index 000000000000..380fa68b2bce --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kk +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/kk/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 2CE7C08471C94F1466EE86FF8A4DDE41C41AD835C3132B5EA1DDD59160943A9C +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/kk/Firefox%20Setup%20150.0.2.exe + InstallerSha256: AB8CE152500A3B4FC5E072D21E2BD049894D7EB208136359217E9C31C91C8906 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/kk/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 38E13041C4B4E6425D3C15928BC040CB7DEFE0BD809AE98239181F2278237E0D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.cs-CZ.yaml new file mode 100644 index 000000000000..dbe65eda8c73 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kk +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.da-DK.yaml new file mode 100644 index 000000000000..d63941d5daa8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kk +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.de-DE.yaml new file mode 100644 index 000000000000..37367c2808ee --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kk +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.el-GR.yaml new file mode 100644 index 000000000000..613a920487c6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kk +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.en-GB.yaml new file mode 100644 index 000000000000..355fbea176d5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kk +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.en-US.yaml new file mode 100644 index 000000000000..3c243bd7f124 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kk +PackageVersion: 150.0.2 +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 (kk) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.es-MX.yaml new file mode 100644 index 000000000000..2c6ed7d30c38 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kk +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.fr-FR.yaml new file mode 100644 index 000000000000..3fd8783af166 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kk +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.hu-HU.yaml new file mode 100644 index 000000000000..f3fcb02ffc6a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kk +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.ja-JP.yaml new file mode 100644 index 000000000000..e0a9d3cabede --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kk +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.nb-NO.yaml new file mode 100644 index 000000000000..18ebc1b6cfa8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kk +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.ru-RU.yaml new file mode 100644 index 000000000000..6e2205cca8c3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kk +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.ta-IN.yaml new file mode 100644 index 000000000000..cfac0a6ebd3c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kk +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.zh-CN.yaml new file mode 100644 index 000000000000..53ab290e8c4e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kk +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.yaml b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.yaml new file mode 100644 index 000000000000..6d9f5c272d76 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kk/150.0.2/Mozilla.Firefox.kk.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.kk +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.installer.yaml b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.installer.yaml new file mode 100644 index 000000000000..1c186e78fef8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/mk/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 0F267FB5273B8C8CBDB23106D4D52EBBF36E512C341A95E197B321819465FC3B +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/mk/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 8A1FAEF4CDC682ED25CFC06DEC3DB58CAE3B00C21FE6EAF47D6C448C8D39A162 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/mk/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 73EC487AF220F5BA39DC18F9DBB50E21E4FF2B84984C1D9F48E3BA8BBE762A94 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.cs-CZ.yaml new file mode 100644 index 000000000000..90c5ac9c1e5c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.da-DK.yaml new file mode 100644 index 000000000000..6911f5e15d51 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.de-DE.yaml new file mode 100644 index 000000000000..7f259d95353f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.el-GR.yaml new file mode 100644 index 000000000000..a88129a659c4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.en-GB.yaml new file mode 100644 index 000000000000..7ec523221186 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.en-US.yaml new file mode 100644 index 000000000000..7a2aeed327c3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 150.0.2 +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 (mk) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.es-MX.yaml new file mode 100644 index 000000000000..2b5ec945f64d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.fr-FR.yaml new file mode 100644 index 000000000000..d9fe84cca747 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.hu-HU.yaml new file mode 100644 index 000000000000..c42597c0df9a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.ja-JP.yaml new file mode 100644 index 000000000000..2fdbd8437acb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.nb-NO.yaml new file mode 100644 index 000000000000..98b8d3c6e696 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.ru-RU.yaml new file mode 100644 index 000000000000..911d87b9b023 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.ta-IN.yaml new file mode 100644 index 000000000000..1c63e94c078e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.zh-CN.yaml new file mode 100644 index 000000000000..58167d1a6f79 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.yaml b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.yaml new file mode 100644 index 000000000000..e0b48405b19e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/mk/150.0.2/Mozilla.Firefox.mk.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.mk +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.installer.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.installer.yaml new file mode 100644 index 000000000000..b676144aabf1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/nl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 893AC6409075184C558A66219A41D5279D84344C601BA6307F26AC2854CCC878 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/nl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 8F93103C379D56BE935AD8B7E93AF59198B2628B8DAF77FE2ED48B3B2F169943 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/nl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 2A918A8C55CEF7935B8F5B39A0841C7EF52D91C91D42E638B9C84DB02ACBF36B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.cs-CZ.yaml new file mode 100644 index 000000000000..d46fa70088a4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.da-DK.yaml new file mode 100644 index 000000000000..dd220b22e569 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.de-DE.yaml new file mode 100644 index 000000000000..ed9989c05a93 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.el-GR.yaml new file mode 100644 index 000000000000..b49b7fa50912 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.en-GB.yaml new file mode 100644 index 000000000000..39546d39f74c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.en-US.yaml new file mode 100644 index 000000000000..8b13956e92de --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +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 (nl) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.es-MX.yaml new file mode 100644 index 000000000000..a146d5d173f2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.fr-FR.yaml new file mode 100644 index 000000000000..ec9daa716cd9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.hu-HU.yaml new file mode 100644 index 000000000000..57f398598b8d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.ja-JP.yaml new file mode 100644 index 000000000000..9e3f5ad75dd1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.nb-NO.yaml new file mode 100644 index 000000000000..09bac60ece2d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.ru-RU.yaml new file mode 100644 index 000000000000..5b81539537d2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.ta-IN.yaml new file mode 100644 index 000000000000..4fb153eed42b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.zh-CN.yaml new file mode 100644 index 000000000000..dd289174f262 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.yaml new file mode 100644 index 000000000000..a4f694699cc7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.installer.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.installer.yaml new file mode 100644 index 000000000000..0910f285ea62 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/nn-NO/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 7C9928BA83D17001788806DD69837C4F55D21DE85BDCAC4C1398204E090B0B53 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/nn-NO/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 48D001B368A6E1568315C7ECE08553CE0B8F3F23FC560A479AA3AD6C0454E207 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/nn-NO/Firefox%20Setup%20150.0.2.exe + InstallerSha256: EC3A4F9D2AF20969AAD9B1D61D3C2D7BBF25DAF5D5E3C2B10837BED429AFEE9E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.cs-CZ.yaml new file mode 100644 index 000000000000..a77d044aa4c1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.da-DK.yaml new file mode 100644 index 000000000000..10c0e94cf7f0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.de-DE.yaml new file mode 100644 index 000000000000..373d5520bfe4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.el-GR.yaml new file mode 100644 index 000000000000..5661cc68e86d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.en-GB.yaml new file mode 100644 index 000000000000..c22c9eab4e2d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.en-US.yaml new file mode 100644 index 000000000000..4bec71aa4fa0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +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 (nn-NO) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.es-MX.yaml new file mode 100644 index 000000000000..677730512370 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.fr-FR.yaml new file mode 100644 index 000000000000..23d94c30570a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.hu-HU.yaml new file mode 100644 index 000000000000..86c9b40dc880 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.ja-JP.yaml new file mode 100644 index 000000000000..3fba350fd112 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.nb-NO.yaml new file mode 100644 index 000000000000..469dadeb210b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.ru-RU.yaml new file mode 100644 index 000000000000..0a937eaa9fec --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.ta-IN.yaml new file mode 100644 index 000000000000..800526dd2b7b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.zh-CN.yaml new file mode 100644 index 000000000000..bd2cc05d3bb9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.yaml new file mode 100644 index 000000000000..b49524fa6899 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.installer.yaml b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.installer.yaml new file mode 100644 index 000000000000..dfc3f7775ca3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/pa-IN/Firefox%20Setup%20150.0.2.exe + InstallerSha256: B84831A62302F07CC7DD7005D87E40CCF261A3577D272D8F89C4297248B7C39E +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/pa-IN/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 47CA26FA624B6C4493B84B5C5F5EF97DAC25816A71984A455AF606A2C4E5845C +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/pa-IN/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 7C63A0D7B895A223736C733077818F93FB0A538606D483E1EA592B49F27A067B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.cs-CZ.yaml new file mode 100644 index 000000000000..0a83a4159cec --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.da-DK.yaml new file mode 100644 index 000000000000..d587271d407c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.de-DE.yaml new file mode 100644 index 000000000000..b2e3513f1e94 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.el-GR.yaml new file mode 100644 index 000000000000..5dffca9e1d04 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.en-GB.yaml new file mode 100644 index 000000000000..78211fddca78 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.en-US.yaml new file mode 100644 index 000000000000..33235afc1533 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 150.0.2 +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 (pa-IN) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.es-MX.yaml new file mode 100644 index 000000000000..0c805773e398 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.fr-FR.yaml new file mode 100644 index 000000000000..d4f9d2554fbc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.hu-HU.yaml new file mode 100644 index 000000000000..f9a4ed0b055f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.ja-JP.yaml new file mode 100644 index 000000000000..13e7b3aaeeb7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.nb-NO.yaml new file mode 100644 index 000000000000..7fc29146ac02 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.ru-RU.yaml new file mode 100644 index 000000000000..f3e81dd9421d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.ta-IN.yaml new file mode 100644 index 000000000000..6fe7e43bf718 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.zh-CN.yaml new file mode 100644 index 000000000000..d9ab6eaf2064 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.yaml b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.yaml new file mode 100644 index 000000000000..eedaf20824f3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pa-IN/150.0.2/Mozilla.Firefox.pa-IN.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pa-IN +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.installer.yaml b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.installer.yaml new file mode 100644 index 000000000000..06d09ebf87ec --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/pt-PT/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 54796DD7CC8F633D017119FF04AF804116609B9617FD42FB609F1065D00EA9B7 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/pt-PT/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 707488B7336839D24D1444035B9785FC8820D66ECE12B6A0B9A0F3D9A17887C1 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/pt-PT/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 48C6DDF43BA2796DBF120E1B7D7E71F1943C7CA2BD0B4843FDEBAADB7D385D45 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.cs-CZ.yaml new file mode 100644 index 000000000000..85d919bcead1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.da-DK.yaml new file mode 100644 index 000000000000..c727c709275b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.de-DE.yaml new file mode 100644 index 000000000000..4d9ec72bddc3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.el-GR.yaml new file mode 100644 index 000000000000..7d7bbc9f7648 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.en-GB.yaml new file mode 100644 index 000000000000..928c20c6130e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.en-US.yaml new file mode 100644 index 000000000000..6d5e3415e7f1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 150.0.2 +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 (pt-PT) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.es-MX.yaml new file mode 100644 index 000000000000..47d760460f5a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.fr-FR.yaml new file mode 100644 index 000000000000..3c266b43f03c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.hu-HU.yaml new file mode 100644 index 000000000000..17adc743d4a1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.ja-JP.yaml new file mode 100644 index 000000000000..97f132862a1f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.nb-NO.yaml new file mode 100644 index 000000000000..52615486e232 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.ru-RU.yaml new file mode 100644 index 000000000000..13df0cdee0f1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.ta-IN.yaml new file mode 100644 index 000000000000..3ce8d1596d27 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.zh-CN.yaml new file mode 100644 index 000000000000..7a147adcaaab --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.yaml b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.yaml new file mode 100644 index 000000000000..df59d95b77b7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/pt-PT/150.0.2/Mozilla.Firefox.pt-PT.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.pt-PT +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.installer.yaml b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.installer.yaml new file mode 100644 index 000000000000..f39cb24a6a1c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/ru/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 62C1682C014B9D7480D947A6D3A520EDD26C61BA805DB0B4D14CED29DA7BF4BD +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/ru/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 80E06B2E94185DC38E54E17BB40676BE02D71DF5EB4CD97B98D81C8660859C83 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/ru/Firefox%20Setup%20150.0.2.exe + InstallerSha256: D53F98AB0D0D8CD97A504036ABE4041CCFFC543330CE086FC4377590C7E0484C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.cs-CZ.yaml new file mode 100644 index 000000000000..28f153c54dcb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.da-DK.yaml new file mode 100644 index 000000000000..8eb506022a6f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.de-DE.yaml new file mode 100644 index 000000000000..1dea54e4dd7b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.el-GR.yaml new file mode 100644 index 000000000000..5fc1b1733c18 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.en-GB.yaml new file mode 100644 index 000000000000..1efeccb57aba --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.en-US.yaml new file mode 100644 index 000000000000..b28039a67b90 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 150.0.2 +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 (ru) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.es-MX.yaml new file mode 100644 index 000000000000..a1fd134b540d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.fr-FR.yaml new file mode 100644 index 000000000000..2e533fb3086f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.hu-HU.yaml new file mode 100644 index 000000000000..e271aa66f503 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.ja-JP.yaml new file mode 100644 index 000000000000..c9d99c3ba0c6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.nb-NO.yaml new file mode 100644 index 000000000000..b66ba8d18234 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.ru-RU.yaml new file mode 100644 index 000000000000..5f34792e5219 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.ta-IN.yaml new file mode 100644 index 000000000000..dec5ff06be39 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.zh-CN.yaml new file mode 100644 index 000000000000..4bb53a3da2d5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.yaml b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.yaml new file mode 100644 index 000000000000..a55c34779187 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ru/150.0.2/Mozilla.Firefox.ru.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ru +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.installer.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.installer.yaml new file mode 100644 index 000000000000..e6ee47919cb9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/sl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 6CADC7857776D89348E24DB9ECF4043DC58D25041CA058020E0F59779E86BF79 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/sl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: B13B42A54C2CBAFD929B5824B913A499BF1A26467E08E3F2A4E9544972E44BF8 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/sl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 812D750FD30434E8BC6518FF2B5E8329FF3941F67DBE79995E9BED65CDDA18A1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.cs-CZ.yaml new file mode 100644 index 000000000000..1d292fe10375 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.da-DK.yaml new file mode 100644 index 000000000000..165220acba5d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.de-DE.yaml new file mode 100644 index 000000000000..ebe6cf37b881 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.el-GR.yaml new file mode 100644 index 000000000000..a2055f0a988d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.en-GB.yaml new file mode 100644 index 000000000000..217f69ef0758 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.en-US.yaml new file mode 100644 index 000000000000..6b6a06f65ad0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +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 (sl) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.es-MX.yaml new file mode 100644 index 000000000000..20fb899534bb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.fr-FR.yaml new file mode 100644 index 000000000000..cd3ff1b49694 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.hu-HU.yaml new file mode 100644 index 000000000000..383e5d284714 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.ja-JP.yaml new file mode 100644 index 000000000000..e1f522e8ed9a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.nb-NO.yaml new file mode 100644 index 000000000000..a4dc07942327 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.ru-RU.yaml new file mode 100644 index 000000000000..4db29f628ba0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.ta-IN.yaml new file mode 100644 index 000000000000..ae3029c97911 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.zh-CN.yaml new file mode 100644 index 000000000000..9c5b0667ab93 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.yaml new file mode 100644 index 000000000000..f736f37d8090 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.installer.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.installer.yaml new file mode 100644 index 000000000000..eeca556629a1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/son/Firefox%20Setup%20150.0.2.exe + InstallerSha256: E1736BD57DE5BC0CB7E3B5E8DB0ADA7B2B6370BE03D12CFFF2FD01CAC2477770 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/son/Firefox%20Setup%20150.0.2.exe + InstallerSha256: E978282E335B92EDBB9F0D994CFD683D4D69BF0080BBB86581855D87AAAE3C78 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/son/Firefox%20Setup%20150.0.2.exe + InstallerSha256: A093B38187ED955405AA26E8E09863A40AA7FF23559880ECC9628131B4F1C503 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.cs-CZ.yaml new file mode 100644 index 000000000000..f3a53ca54d31 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.da-DK.yaml new file mode 100644 index 000000000000..a23a25f30ff2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.de-DE.yaml new file mode 100644 index 000000000000..154d00e4244b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.el-GR.yaml new file mode 100644 index 000000000000..748dd0689a56 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.en-GB.yaml new file mode 100644 index 000000000000..6aaa2a3491b8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.en-US.yaml new file mode 100644 index 000000000000..19759b3b1d6f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +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 (son) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.es-MX.yaml new file mode 100644 index 000000000000..5db8569fa05b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.fr-FR.yaml new file mode 100644 index 000000000000..b5be19766d4d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.hu-HU.yaml new file mode 100644 index 000000000000..0a7b3ecf7092 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.ja-JP.yaml new file mode 100644 index 000000000000..fd2539cabb1f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.nb-NO.yaml new file mode 100644 index 000000000000..dccd2a66273f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.ru-RU.yaml new file mode 100644 index 000000000000..df5dc875a734 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.ta-IN.yaml new file mode 100644 index 000000000000..e7c3867122cc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.zh-CN.yaml new file mode 100644 index 000000000000..806309f41ee4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.yaml new file mode 100644 index 000000000000..e15c6cdc43f7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.installer.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.installer.yaml new file mode 100644 index 000000000000..7ceb907d1c91 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/sv-SE/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 09AFAE0C087E9A3730D9346AC2E8C6B47445F9DDD30216BFFDE1410841D13550 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/sv-SE/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 6FD2E4129E7D194F605AB1E9FF607AA703BD97D10366DB41422BFB88196A9556 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/sv-SE/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 494CFFED917A5D72F7795D2D0BBD92D397E96AD376D9EE08E32C00FF6C8BCA7C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.cs-CZ.yaml new file mode 100644 index 000000000000..7c14685aa506 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.da-DK.yaml new file mode 100644 index 000000000000..b37a29c48852 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.de-DE.yaml new file mode 100644 index 000000000000..6b1375100d5d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.el-GR.yaml new file mode 100644 index 000000000000..db472f28f0cf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.en-GB.yaml new file mode 100644 index 000000000000..d7aa1348f463 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.en-US.yaml new file mode 100644 index 000000000000..5c83b84c5e32 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +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 (sv-SE) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.es-MX.yaml new file mode 100644 index 000000000000..b2e9481ca974 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.fr-FR.yaml new file mode 100644 index 000000000000..c57b4cb06a4f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.hu-HU.yaml new file mode 100644 index 000000000000..fed9d3e06279 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.ja-JP.yaml new file mode 100644 index 000000000000..2cc58b257a13 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.nb-NO.yaml new file mode 100644 index 000000000000..c274a9969780 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.ru-RU.yaml new file mode 100644 index 000000000000..dd26ca50ba74 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.ta-IN.yaml new file mode 100644 index 000000000000..0d275e214bf0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.zh-CN.yaml new file mode 100644 index 000000000000..afed56b8561e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.yaml new file mode 100644 index 000000000000..1a2df6596a00 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.installer.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.installer.yaml new file mode 100644 index 000000000000..0b1c9ff94d69 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +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 +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/tl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: AAC6E14B7CCBB42C393AC0A0CF3A7A1AC55784AEBC2440BB89C972F2ED7DD10F +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/tl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 0F01CE21F7D0ECE7EDC6E826AC08FBB08E386EF3DAEFCC1EBD4E38D299A85F3C +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/tl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 6C36CDA888F32D47418D04E4B100FED5907A5F16BF8DA97714FA27193B6D054B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.cs-CZ.yaml new file mode 100644 index 000000000000..94437ba9956a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.da-DK.yaml new file mode 100644 index 000000000000..3d7d5f39da33 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +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. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.de-DE.yaml new file mode 100644 index 000000000000..8561e3d7cec4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.el-GR.yaml new file mode 100644 index 000000000000..5fcfe77e2be2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +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, Όια Όη κερΎοσκοπική οργάΜωση αφιερωΌέΜη στηΜ υγεία και το απόρρητο του ΎιαΎικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.en-GB.yaml new file mode 100644 index 000000000000..b8166b802351 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.en-US.yaml new file mode 100644 index 000000000000..5fcccc0c3045 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +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 (tl) +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: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.es-MX.yaml new file mode 100644 index 000000000000..fd2166241794 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.fr-FR.yaml new file mode 100644 index 000000000000..5739b0c8a419 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.hu-HU.yaml new file mode 100644 index 000000000000..569d26d4d0f9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.ja-JP.yaml new file mode 100644 index 000000000000..3220e22553d4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +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 は無料のオヌプン゜ヌス゜フトりェアであり、䞖界䞭の倚数のコミュニティによっお開発されおいたす。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.nb-NO.yaml new file mode 100644 index 000000000000..0321c3ae28e3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +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 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.ru-RU.yaml new file mode 100644 index 000000000000..bed197cc3c01 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +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: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.ta-IN.yaml new file mode 100644 index 000000000000..2063ea960cbf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +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: +- இணைய-உலடவி +- உலடவி +- குவடண்டம் +- குறுக்கு-஀ளம் +- கெக்கோ +- சிலச்஀ி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.zh-CN.yaml new file mode 100644 index 000000000000..8d11ce14a9f6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +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 +- 浏览噚 +- 火狐 +- 火狐浏览噚 +- 眑页 +- 眑页浏览噚 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.yaml new file mode 100644 index 000000000000..1149a27545c3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/mikf/gallery-dl/1.32.1/mikf.gallery-dl.installer.yaml b/manifests/m/mikf/gallery-dl/1.32.1/mikf.gallery-dl.installer.yaml index a8af39cba03b..b87d8e2c0862 100644 --- a/manifests/m/mikf/gallery-dl/1.32.1/mikf.gallery-dl.installer.yaml +++ b/manifests/m/mikf/gallery-dl/1.32.1/mikf.gallery-dl.installer.yaml @@ -1,18 +1,31 @@ -# Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: mikf.gallery-dl PackageVersion: 1.32.1 +Platform: +- Windows.Desktop InstallerType: portable -Commands: -- gallery-dl -Dependencies: - PackageDependencies: - - PackageIdentifier: Microsoft.VCRedist.2015+.x86 ReleaseDate: 2026-05-03 Installers: +- Architecture: x64 + InstallerUrl: https://codeberg.org/mikf/gallery-dl/releases/download/v1.32.1/gallery-dl.exe + InstallerSha256: a258d78e154164049398d9d1b971a0c3056bc8f2fa3066d9c365c34241a82da6 + Commands: + - gallery-dl + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + AppsAndFeaturesEntries: + - DisplayName: gallery-dl (x64) - Architecture: x86 InstallerUrl: https://codeberg.org/mikf/gallery-dl/releases/download/v1.32.1/gallery-dl_x86.exe InstallerSha256: 1F7C220C702EBF92228CC9FE0437EFF6C08924BC759440908E9EA76307A51286 + Commands: + - gallery-dl86 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 + AppsAndFeaturesEntries: + - DisplayName: gallery-dl (x86) ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/n/NetSentinel/NetSentinel/1.7.5/NetSentinel.NetSentinel.installer.yaml b/manifests/n/NetSentinel/NetSentinel/1.7.5/NetSentinel.NetSentinel.installer.yaml new file mode 100644 index 000000000000..17160924fc03 --- /dev/null +++ b/manifests/n/NetSentinel/NetSentinel/1.7.5/NetSentinel.NetSentinel.installer.yaml @@ -0,0 +1,22 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: NetSentinel.NetSentinel +PackageVersion: 1.7.5 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /TASKS="!installookla" + SilentWithProgress: /SILENT /SUPPRESSMSGBOXES /NORESTART /TASKS="!installookla" + Log: /"{localappdata}\NetSentinel\install.log" +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ossianericson/netsentinel/releases/download/v1.7.5/NetSentinel-Setup-1.7.5.exe + InstallerSha256: DFC52C40A614D1DA31617E6120B4962B68219296720B7FE00695F3298256BE39 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetSentinel/NetSentinel/1.7.5/NetSentinel.NetSentinel.locale.en-US.yaml b/manifests/n/NetSentinel/NetSentinel/1.7.5/NetSentinel.NetSentinel.locale.en-US.yaml new file mode 100644 index 000000000000..51386edef4f0 --- /dev/null +++ b/manifests/n/NetSentinel/NetSentinel/1.7.5/NetSentinel.NetSentinel.locale.en-US.yaml @@ -0,0 +1,54 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: NetSentinel.NetSentinel +PackageVersion: 1.7.5 +PackageLocale: en-US +Publisher: NetSentinel Project +PublisherUrl: https://github.com/ossianericson/netsentinel +PublisherSupportUrl: https://github.com/ossianericson/netsentinel/issues +PackageName: NetSentinel +PackageUrl: https://github.com/ossianericson/netsentinel +License: MIT +LicenseUrl: https://raw.githubusercontent.com/ossianericson/netsentinel/master/LICENSE +ShortDescription: Network security scanner — rogue device detector, STP monitor, and connectivity analyser +Description: |- + NetSentinel is a one-stop network diagnostic and security tool for Windows. + It combines several tools that previously required separate utilities: + + • Device Fingerprinter — scans your LAN's ARP table and identifies every + device by MAC OUI, hostname, and device type (camera, smart speaker, router, etc.) + • Rogue Bridge Detector — captures 802.1D/RSTP BPDUs and flags any device + that steals the Root Bridge role and causes periodic 15-45 second outages. + • Broadcast Storm Analyser — measures broadcast/multicast packet rates and + identifies which device is flooding the network. + • IoT Behavioral Baseline — learns normal IoT traffic patterns and raises + an alert if your smart fridge starts port-scanning or talking to a C2 server. + • Root Cause Correlator — links trace results, storm data, and STP findings + into a single plain-English verdict with actionable remediation steps. + • Connection Stability Monitor — long-term background ping logger with + outage detection, jitter analysis, and a 24-hour stability score. + • TCP Port Scanner, OS Fingerprinter, CVE Lookup, DNS Leak Test, Speed Test, + ARP spoof detector, DHCP monitor, SNMP poller, and more. + + Most features require Administrator privileges for raw packet capture. + Install Npcap (https://npcap.com) for STP, Storm, and ARP modules. +Moniker: netsentinel +Tags: +- network +- security +- scanner +- rogue-device +- stp +- lan +- diagnostics +- iot +- monitoring +- arp +- broadcast-storm +- wifi +- dns +- port-scanner +ReleaseNotesUrl: https://github.com/ossianericson/netsentinel/releases/tag/v1.7.5 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetSentinel/NetSentinel/1.7.5/NetSentinel.NetSentinel.yaml b/manifests/n/NetSentinel/NetSentinel/1.7.5/NetSentinel.NetSentinel.yaml new file mode 100644 index 000000000000..3d02fd63751d --- /dev/null +++ b/manifests/n/NetSentinel/NetSentinel/1.7.5/NetSentinel.NetSentinel.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: NetSentinel.NetSentinel +PackageVersion: 1.7.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.installer.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.installer.yaml new file mode 100644 index 000000000000..19058951f2b4 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseCloudServer +PackageVersion: 9.5.7 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- nxr +- nxs +- nxv +- nxw +ProductCode: NoMachine_is1 +ReleaseDate: 2026-05-07 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + InstallerUrl: https://web9001.nomachine.com/packages/9.5-PRODUCTION/Windows/nomachine-enterprise-cloud-server_9.5.7_1_x86.exe + InstallerSha256: 45250DE5895CD52470BAB381FD30E96F6B7637929743366E51B714635F6B75E7 +- Architecture: x64 + InstallerUrl: https://web9001.nomachine.com/packages/9.5-PRODUCTION/Windows/nomachine-enterprise-cloud-server_9.5.7_1_x64.exe + InstallerSha256: 390BDD0A90A475A9BB99ADE581A6B22A595CB9AA0903733BEB403437ABE6CE08 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.locale.en-US.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.locale.en-US.yaml new file mode 100644 index 000000000000..4ee1c1135d5c --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseCloudServer +PackageVersion: 9.5.7 +PackageLocale: en-US +Publisher: NoMachine S.a.r.l. +PublisherUrl: https://www.nomachine.com/ +PublisherSupportUrl: https://www.nomachine.com/support +PrivacyUrl: https://kb.nomachine.com/AR05P00977 +Author: NoMachine S.à r.l. +PackageName: NoMachine Enterprise Cloud Server +PackageUrl: https://downloads.nomachine.com/ +License: Proprietary +LicenseUrl: https://www.nomachine.com/licensing +Copyright: Copyright 2002, 2026 © NoMachine +CopyrightUrl: https://www.nomachine.com/licensing +ShortDescription: A remote access gateway which securely tunnels connections to NoMachine Windows, macOS or Linux nodes as well as foreign Unix hosts residing on the corporate network. +Description: NoMachine Enterprise Cloud Server provides centralized remote access for unlimited users permitting work-from-home employees or off-site students to reach their desktop, on any OS, regardless of where they are or what device they’re using. By adding NoMachine Enterprise Desktops, Workstations, Terminal Servers, Enterprise Terminal Servers, even another Cloud Server, to Enterprise Cloud Server, organizations can unify access to any corporate computer and hosted resource. It conveniently converges any number of NoMachine nodes and also foreign X servers such as HP-UX, Solaris and AIX hosts. +Tags: +- remote +- remote-access +- remote-control +- remote-desktop +ReleaseNotes: |- + NoMachine makes available version 9.5.7, providing fixes for issues found in previous releases and a possible privilege escalation on Windows. It also sports updates to some third parties libraries and enhancements to support for CA certificates: + OpenSSL libraries shipped by NoMachine client and server packages have been updated to v3.0.20. The full list of CVE patched by the new OpenSSL v3.0.20 is available on their Official web site at: https://github.com/openssl/openssl/releases/tag/openssl-3.0.20. + The nxhtd component included in commercial server packages is based on httpd 2.4.67, changes in the new version of Apache are listed here: https://downloads.apache.org/httpd/CHANGES_2.4.67. + Additionally, trusted CA certificates for PKI authentication are now supported also for connections via Web and between cluster servers peers. See https://kb.nomachine.com/AR06W01292 for instructions. + Trouble Reports solved +ReleaseNotesUrl: https://kb.nomachine.com/SU05X00274 +PurchaseUrl: https://store.nomachine.com +Documentations: +- DocumentLabel: Documents + DocumentUrl: https://www.nomachine.com/documents +- DocumentLabel: Knowledge Base + DocumentUrl: https://kb.nomachine.com/ +- DocumentLabel: FAQ + DocumentUrl: https://www.nomachine.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.locale.zh-CN.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.locale.zh-CN.yaml new file mode 100644 index 000000000000..212f82dba2ac --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseCloudServer +PackageVersion: 9.5.7 +PackageLocale: zh-CN +License: 䞓有蜯件 +ShortDescription: 䞀欟远皋接入眑关可安党建立通埀 NoMachine Windows、macOS 或 Linux 节点以及䌁䞚眑络内倖郚 Unix 䞻机的加密隧道。该方案完矎实现倧规暡甚户矀䜓的统䞀接入支持无限甚户通过任意讟倇包括眑页浏览噚进行连接。 +Description: NoMachine 䌁䞚级云服务噚䞺无限甚户提䟛集䞭匏远皋访问䜿居家办公人员或校倖垈生胜借跚操䜜系统、跚地域、跚讟倇接入䞓属桌面。通过将 NoMachine 䌁䞚级桌面、工䜜站、终端服务噚、䌁䞚级终端服务噚乃至其他云服务噚敎合至䌁䞚级云服务噚平台机构可实现对所有䌁䞚计算机及托管资源的统䞀访问。该系统䞍仅胜无猝汇聚任意数量的 NoMachine 节点还可兌容 HP-UX、Solaris 和 AIX 等第䞉方 X 服务噚䞻机。 +Tags: +- 远皋 +- 远皋控制 +- 远皋桌面 +- 远皋访问 +- 远皋连接 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://www.nomachine.com/documents +- DocumentLabel: 知识库 + DocumentUrl: https://kb.nomachine.com/ +- DocumentLabel: 垞见问题 + DocumentUrl: https://www.nomachine.com/faq +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.yaml new file mode 100644 index 000000000000..744094c78e1f --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseCloudServer +PackageVersion: 9.5.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/o/ONFStudios/OreNoFusen/3.3.11/ONFStudios.OreNoFusen.installer.yaml b/manifests/o/ONFStudios/OreNoFusen/3.3.11/ONFStudios.OreNoFusen.installer.yaml new file mode 100644 index 000000000000..b935e9b3a5f7 --- /dev/null +++ b/manifests/o/ONFStudios/OreNoFusen/3.3.11/ONFStudios.OreNoFusen.installer.yaml @@ -0,0 +1,17 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ONFStudios.OreNoFusen +PackageVersion: 3.3.11 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +ReleaseDate: 2026-05-07 +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\ore-no-fusen' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ore-no-fusen/ore-no-fusen/releases/download/v3.3.11/ore-no-fusen_3.3.11_x64-setup.exe + InstallerSha256: 7422701641EAF03F0839118F897100FEEDA5FB05FC5BF01AF91DC24B6AC6073B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/ONFStudios/OreNoFusen/3.3.11/ONFStudios.OreNoFusen.locale.en-US.yaml b/manifests/o/ONFStudios/OreNoFusen/3.3.11/ONFStudios.OreNoFusen.locale.en-US.yaml new file mode 100644 index 000000000000..6ab3ad08f8b9 --- /dev/null +++ b/manifests/o/ONFStudios/OreNoFusen/3.3.11/ONFStudios.OreNoFusen.locale.en-US.yaml @@ -0,0 +1,35 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ONFStudios.OreNoFusen +PackageVersion: 3.3.11 +PackageLocale: en-US +Publisher: ONF Studios +PublisherUrl: https://github.com/ore-no-fusen +PublisherSupportUrl: https://github.com/ore-no-fusen/ore-no-fusen/issues +PackageName: 俺の付箋 +PackageUrl: https://github.com/ore-no-fusen/ore-no-fusen +License: MIT +LicenseUrl: https://github.com/ore-no-fusen/ore-no-fusen/blob/HEAD/LICENSE +Copyright: Copyright (c) ONF Studios +ShortDescription: A fast sticky note app that stays on your desktop +Description: |- + 俺の付箋 (Ore no Fusen) is a desktop sticky note app built with Tauri + Next.js. + Key features: + - Instant editing — cursor is ready on first click + - WYSIWYG rich text (bold, headings, lists, checkboxes) + - Auto-save with floating windows that stay on top + - Multi-window: each note is an independent window +Moniker: ore-no-fusen +Tags: +- desktop +- notes +- productivity +- sticky-notes +ReleaseNotes: release +ReleaseNotesUrl: https://github.com/ore-no-fusen/ore-no-fusen/releases/tag/v3.3.11 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/ore-no-fusen/ore-no-fusen/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/ONFStudios/OreNoFusen/3.3.11/ONFStudios.OreNoFusen.yaml b/manifests/o/ONFStudios/OreNoFusen/3.3.11/ONFStudios.OreNoFusen.yaml new file mode 100644 index 000000000000..ef3291875332 --- /dev/null +++ b/manifests/o/ONFStudios/OreNoFusen/3.3.11/ONFStudios.OreNoFusen.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: ONFStudios.OreNoFusen +PackageVersion: 3.3.11 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/o/Opera/OperaAir/131.0.5877.39/Opera.OperaAir.installer.yaml b/manifests/o/Opera/OperaAir/131.0.5877.39/Opera.OperaAir.installer.yaml new file mode 100644 index 000000000000..bd9e8e21be5c --- /dev/null +++ b/manifests/o/Opera/OperaAir/131.0.5877.39/Opera.OperaAir.installer.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Opera.OperaAir +PackageVersion: 131.0.5877.39 +InstallerType: exe +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /silent + SilentWithProgress: /silent +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- crx +- htm +- html +- opdownload +- pdf +- shtml +- xht +- xhtml +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://get.geo.opera.com/pub/opera_air/131.0.5877.39/win/Opera_Air_131.0.5877.39_Setup_x64.exe + InstallerSha256: 56B6D8BBC419B87210B8881F3C0418423F7678646F690F69BFE2A39D3F61F380 + InstallerSwitches: + Custom: /allusers=0 +- Architecture: x64 + Scope: machine + InstallerUrl: https://get.geo.opera.com/pub/opera_air/131.0.5877.39/win/Opera_Air_131.0.5877.39_Setup_x64.exe + InstallerSha256: 56B6D8BBC419B87210B8881F3C0418423F7678646F690F69BFE2A39D3F61F380 + InstallerSwitches: + Custom: /allusers=1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/Opera/OperaAir/131.0.5877.39/Opera.OperaAir.locale.en-US.yaml b/manifests/o/Opera/OperaAir/131.0.5877.39/Opera.OperaAir.locale.en-US.yaml new file mode 100644 index 000000000000..daea5d253551 --- /dev/null +++ b/manifests/o/Opera/OperaAir/131.0.5877.39/Opera.OperaAir.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Opera.OperaAir +PackageVersion: 131.0.5877.39 +PackageLocale: en-US +Publisher: Opera Software +PublisherUrl: https://www.opera.com/ +PublisherSupportUrl: https://www.opera.com/help +PrivacyUrl: https://legal.opera.com/privacy/ +Author: Opera Norway AS +PackageName: Opera Air +PackageUrl: https://www.opera.com/air +License: Freeware +LicenseUrl: https://legal.opera.com/eula/computers/ +Copyright: Copyright © 1995-2026 Opera Software AS. All rights reserved. +CopyrightUrl: https://legal.opera.com/terms/ +ShortDescription: The world’s first browser with mindfulness at its core - no subscriptions, no app juggling. Discover a focused, balanced, and stress-free web. +Description: |- + Opera Air is a brand new browser with mindfulness at its core, that meets the needs of our busy lives by reducing distractions and helping you focus. It integrates features that support relaxation and well-being, such as meditation and breathing practices, binaural beats, and neck stretches. + Developed with tried and true methods, Opera Air creates an environment that helps boost productivity and creativity while promoting mental health and creating a calmer, more focused browsing experience. +Tags: +- browser +- chromium +- internet +- manifestv2 +- mv2 +- web +- webpage +Documentations: +- DocumentLabel: Tutorial + DocumentUrl: https://www.opera.com/tutorials +- DocumentLabel: FAQ + DocumentUrl: https://help.opera.com/faq/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/Opera/OperaAir/131.0.5877.39/Opera.OperaAir.locale.zh-CN.yaml b/manifests/o/Opera/OperaAir/131.0.5877.39/Opera.OperaAir.locale.zh-CN.yaml new file mode 100644 index 000000000000..d00a1ec03f29 --- /dev/null +++ b/manifests/o/Opera/OperaAir/131.0.5877.39/Opera.OperaAir.locale.zh-CN.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Opera.OperaAir +PackageVersion: 131.0.5877.39 +PackageLocale: zh-CN +PublisherUrl: https://www.opera.com/zh-cn +PublisherSupportUrl: https://www.opera.com/zh-cn/help +PackageUrl: https://www.opera.com/zh-cn/air +License: 免莹蜯件 +Copyright: 版权所有 © 1995-2026 Opera Software AS。保留所有权利。 +ShortDescription: 党球銖欟以“䞓泚”䞺栞心的浏览噚--无需订阅无需玩蜬各种应甚。探玢䞀䞪䞓泚、平衡、无压力的眑络。 +Description: |- + Opera Air 是䞀欟党新的浏览噚其栞心是“心智”通过减少干扰和垮助悚集䞭泚意力从而满足我们圚繁忙生掻䞭的需求。它集成了攟束䞎健康功胜劂冥想和呌吞练习、双耳节拍和颈郚拉䌞。 + Opera Air 基于久经考验的方法匀发创造了䞀种有助于提高工䜜效率和创造力的环境同时促进了心理健康创造了䞀种曎平静、曎䞓泚的浏览䜓验。 +Tags: +- chromium +- 互联眑 +- 浏览噚 +- 眑页 +Documentations: +- DocumentLabel: 教皋 + DocumentUrl: https://www.opera.com/tutorials +- DocumentLabel: 垞见问题 + DocumentUrl: https://help.opera.com/faq/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/o/Opera/OperaAir/131.0.5877.39/Opera.OperaAir.yaml b/manifests/o/Opera/OperaAir/131.0.5877.39/Opera.OperaAir.yaml new file mode 100644 index 000000000000..48c3b0ec6489 --- /dev/null +++ b/manifests/o/Opera/OperaAir/131.0.5877.39/Opera.OperaAir.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Opera.OperaAir +PackageVersion: 131.0.5877.39 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/Pantelis23/KernRift/v2.8.25/Pantelis23.KernRift.installer.yaml b/manifests/p/Pantelis23/KernRift/v2.8.25/Pantelis23.KernRift.installer.yaml new file mode 100644 index 000000000000..c7f6f0bb94f6 --- /dev/null +++ b/manifests/p/Pantelis23/KernRift/v2.8.25/Pantelis23.KernRift.installer.yaml @@ -0,0 +1,30 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +PackageIdentifier: Pantelis23.KernRift +PackageVersion: v2.8.25 +InstallerType: zip +NestedInstallerType: portable +FileExtensions: +- exe +Commands: +- krc +- kr +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: krc.exe + PortableCommandAlias: krc + - RelativeFilePath: kr.exe + PortableCommandAlias: kr + InstallerUrl: https://github.com/Pantelis23/KernRift/releases/download/v2.8.25/krc-windows-x86_64.zip + InstallerSha256: 25B55E2864FA7BB2DEE17E0A509949E37359723659BE62795AF36D26504D5DA1 +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: krc.exe + PortableCommandAlias: krc + - RelativeFilePath: kr.exe + PortableCommandAlias: kr + InstallerUrl: https://github.com/Pantelis23/KernRift/releases/download/v2.8.25/krc-windows-arm64.zip + InstallerSha256: 6771A3F7A47F35BE27FCB5FDB61CFDC3B4CD17CD500938A70EFDBD4E7B0F6858 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/p/Pantelis23/KernRift/v2.8.25/Pantelis23.KernRift.locale.en-US.yaml b/manifests/p/Pantelis23/KernRift/v2.8.25/Pantelis23.KernRift.locale.en-US.yaml new file mode 100644 index 000000000000..b36e4f43939e --- /dev/null +++ b/manifests/p/Pantelis23/KernRift/v2.8.25/Pantelis23.KernRift.locale.en-US.yaml @@ -0,0 +1,31 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +PackageIdentifier: Pantelis23.KernRift +PackageVersion: v2.8.25 +PackageLocale: en-US +Publisher: Pantelis Christou +PublisherUrl: https://github.com/Pantelis23/KernRift +PublisherSupportUrl: https://github.com/Pantelis23/KernRift/issues +Author: Pantelis Christou +PackageName: KernRift +PackageUrl: https://github.com/Pantelis23/KernRift +License: MIT +LicenseUrl: https://github.com/Pantelis23/KernRift/blob/HEAD/LICENSE +Copyright: Copyright (c) 2025 Pantelis Christou +ShortDescription: Self-hosted bare-metal systems programming language and compiler +Description: KernRift is a zero-dependency self-hosted compiler. The package installs two portable command-line tools — krc (the compiler) and kr (the fat-binary runner). It compiles to native x86_64 and ARM64 binaries for Linux, Windows, macOS, and Android. The compiler is written entirely in KernRift itself and produces ELF, PE, Mach-O, and fat binaries. +Moniker: kernrift +Tags: + - aot + - arm64 + - bare-metal + - compiler + - cross-compiler + - programming-language + - self-hosted + - systems-programming + - x86_64 +ReleaseNotes: 'Full Changelog: https://github.com/Pantelis23/KernRift/releases/tag/v2.8.25' +ReleaseNotesUrl: https://github.com/Pantelis23/KernRift/releases/tag/v2.8.25 +InstallationNotes: The install directory is added to PATH automatically by winget (portable nested installer). Run 'krc --version' and 'kr --version' to verify. +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/FirebaseCLI/15.1.0/Google.FirebaseCLI.yaml b/manifests/p/Pantelis23/KernRift/v2.8.25/Pantelis23.KernRift.yaml similarity index 61% rename from manifests/g/Google/FirebaseCLI/15.1.0/Google.FirebaseCLI.yaml rename to manifests/p/Pantelis23/KernRift/v2.8.25/Pantelis23.KernRift.yaml index ecda48ecd780..c4dbfc96af73 100644 --- a/manifests/g/Google/FirebaseCLI/15.1.0/Google.FirebaseCLI.yaml +++ b/manifests/p/Pantelis23/KernRift/v2.8.25/Pantelis23.KernRift.yaml @@ -1,8 +1,6 @@ -# Created with komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Google.FirebaseCLI -PackageVersion: 15.1.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +PackageIdentifier: Pantelis23.KernRift +PackageVersion: v2.8.25 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511/PerfectWorld.PerfectWorldArena.installer.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511/PerfectWorld.PerfectWorldArena.installer.yaml deleted file mode 100644 index 624fa994a1c7..000000000000 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511/PerfectWorld.PerfectWorldArena.installer.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: PerfectWorld.PerfectWorldArena -PackageVersion: 1.0.25122511 -InstallerType: nullsoft -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -FileExtensions: -- wmpvp -ProductCode: '{a9be7c93-59b5-5f11-bbb9-964db82cbf57}' -ReleaseDate: 2025-12-24 -Installers: -- Architecture: x86 - InstallerUrl: https://client.wmpvp.com/download/perfectworldarena_win32_v1.0.25122511.exe - InstallerSha256: 84C3D54EA4F5D016F9EEE83989B83EF364A566333E072ED03E3B9B033B87A7A7 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511/PerfectWorld.PerfectWorldArena.locale.en-US.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511/PerfectWorld.PerfectWorldArena.locale.en-US.yaml deleted file mode 100644 index 0f2d3a384863..000000000000 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511/PerfectWorld.PerfectWorldArena.locale.en-US.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: PerfectWorld.PerfectWorldArena -PackageVersion: 1.0.25122511 -PackageLocale: en-US -Publisher: Perfect World -PublisherUrl: https://www.pwesports.cn/ -Author: Perfect World Zhengqi (Shanghai) Multimedia Technology Co., Ltd. -PackageName: 完矎䞖界竞技平台 -PackageUrl: https://pvp.wanmei.com/ -License: Proprietary -Copyright: Copyright © 2025 Perfect World -ShortDescription: Perfect World Arena is a comprehensive PvP platform developed by Perfect World for every player. It is low-threshold, easy to use, interaction aware, and professional yet fun. -Tags: -- csgo -- dota2 -- game -- gaming -PurchaseUrl: https://pvp.wanmei.com/vip -Documentations: -- DocumentLabel: FAQ - DocumentUrl: https://pvp.wanmei.com/csgo/question/list -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml deleted file mode 100644 index 09b97505933c..000000000000 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: PerfectWorld.PerfectWorldArena -PackageVersion: 1.0.25122511 -PackageLocale: zh-CN -Publisher: Perfect World -PublisherUrl: https://www.pwesports.cn/ -Author: 完矎䞖界埁奇䞊海倚媒䜓科技有限公叞 -PackageName: 完矎䞖界竞技平台 -PackageUrl: https://pvp.wanmei.com/ -License: 䞓有蜯件 -Copyright: Copyright © 2025 Perfect World -ShortDescription: 完矎䞖界竞技平台是䞀欟由完矎䞖界匀发的适合每䞀䜍玩家的䜎闚槛、易操䜜、重亀互、兌具䞓䞚性䞎趣味性的集成匏对战平台。 -Tags: -- csgo -- dota2 -- 枞戏 -ReleaseNotes: |- - 【掻劚】党新 “CN 高校冲抜掻劚” 将圚 12 月 26 日䞊线高校玩家参䞎倩梯䞺自己孊校竞债积分癟人瓜分海量奖孊金现金同校组排曎有积分加成毕䞚玩家亊可参䞎 - 【䌘化】修倍了竞技暡匏 “机䜠倪没” 问题由于我方退出枞戏富臎对方 BOT 匂垞消倱圚歀感谢玩家 “CSGO 诞势”( Ž・◡・) - 【䌘化】明星时刻-明星训练新增关卡添加红点提瀺 - 【䌘化】䌘化回防暡匏的道具发攟机制现将于每回合匀始时统䞀发攟 - 【䌘化】䌘化页面亀互逻蟑修倍了 UI 展瀺问题 - 【反䜜匊】基于新技术检测结果持续曎新高危莊号䞎硬件讟倇特埁库并䌘化现有指标䞊报提升倖挂识别的准确性和封犁效率 -PurchaseUrl: https://pvp.wanmei.com/vip -Documentations: -- DocumentLabel: 垞见问题 - DocumentUrl: https://pvp.wanmei.com/csgo/question/list -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511/PerfectWorld.PerfectWorldArena.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511/PerfectWorld.PerfectWorldArena.yaml deleted file mode 100644 index a17a34930984..000000000000 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511/PerfectWorld.PerfectWorldArena.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: PerfectWorld.PerfectWorldArena -PackageVersion: 1.0.25122511 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.installer.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.installer.yaml deleted file mode 100644 index 6bf774117a3c..000000000000 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.installer.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: PerfectWorld.PerfectWorldArena -PackageVersion: 1.0.26020511 -InstallerType: nullsoft -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -FileExtensions: -- wmpvp -ProductCode: '{a9be7c93-59b5-5f11-bbb9-964db82cbf57}' -ReleaseDate: 2026-02-04 -Installers: -- Architecture: x86 - InstallerUrl: https://client.wmpvp.com/download/perfectworldarena_win32_v1.0.26020511.exe - InstallerSha256: 180FFDD71F2E41EBA07EB06DE78649B50621E524AD1171E1449A1474472FCB0D -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.locale.en-US.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.locale.en-US.yaml deleted file mode 100644 index 99865cecc14f..000000000000 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.locale.en-US.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: PerfectWorld.PerfectWorldArena -PackageVersion: 1.0.26020511 -PackageLocale: en-US -Publisher: Perfect World -PublisherUrl: https://www.pwesports.cn/ -Author: Perfect World Zhengqi (Shanghai) Multimedia Technology Co., Ltd. -PackageName: 完矎䞖界竞技平台 -PackageUrl: https://pvp.wanmei.com/ -License: Proprietary -Copyright: Copyright © 2026 Perfect World -ShortDescription: Perfect World Arena is a comprehensive PvP platform developed by Perfect World for every player. It is low-threshold, easy to use, interaction aware, and professional yet fun. -Tags: -- csgo -- dota2 -- game -- gaming -PurchaseUrl: https://pvp.wanmei.com/vip -Documentations: -- DocumentLabel: FAQ - DocumentUrl: https://pvp.wanmei.com/csgo/question/list -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml deleted file mode 100644 index 1ceb138ee941..000000000000 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: PerfectWorld.PerfectWorldArena -PackageVersion: 1.0.26020511 -PackageLocale: zh-CN -Publisher: Perfect World -PublisherUrl: https://www.pwesports.cn/ -Author: 完矎䞖界埁奇䞊海倚媒䜓科技有限公叞 -PackageName: 完矎䞖界竞技平台 -PackageUrl: https://pvp.wanmei.com/ -License: 䞓有蜯件 -Copyright: Copyright © 2026 Perfect World -ShortDescription: 完矎䞖界竞技平台是䞀欟由完矎䞖界匀发的适合每䞀䜍玩家的䜎闚槛、易操䜜、重亀互、兌具䞓䞚性䞎趣味性的集成匏对战平台。 -Tags: -- csgo -- dota2 -- 枞戏 -PurchaseUrl: https://pvp.wanmei.com/vip -Documentations: -- DocumentLabel: 垞见问题 - DocumentUrl: https://pvp.wanmei.com/csgo/question/list -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.installer.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.installer.yaml deleted file mode 100644 index f634c1f1e743..000000000000 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.installer.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: PerfectWorld.PerfectWorldArena -PackageVersion: 1.0.26040912 -InstallerType: nullsoft -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -FileExtensions: -- wmpvp -ProductCode: '{a9be7c93-59b5-5f11-bbb9-964db82cbf57}' -ReleaseDate: 2026-04-08 -Installers: -- Architecture: x86 - InstallerUrl: https://client.wmpvp.com/download/perfectworldarena_win32_v1.0.26040912.exe - InstallerSha256: 02EFFDB24E102045C02B360151133D462846023E5340F637AA65BB06FE3A668D -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.locale.en-US.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.locale.en-US.yaml deleted file mode 100644 index da4fb0581c58..000000000000 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.locale.en-US.yaml +++ /dev/null @@ -1,19 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: PerfectWorld.PerfectWorldArena -PackageVersion: 1.0.26040912 -PackageLocale: en-US -Author: Perfect World Zhengqi (Shanghai) Multimedia Technology Co., Ltd. -License: Proprietary -ShortDescription: Perfect World Arena is a comprehensive PvP platform developed by Perfect World for every player. It is low-threshold, easy to use, interaction aware, and professional yet fun. -Tags: -- csgo -- dota2 -- game -- gaming -Documentations: -- DocumentLabel: FAQ - DocumentUrl: https://pvp.wanmei.com/csgo/question/list -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml deleted file mode 100644 index b17199306953..000000000000 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: PerfectWorld.PerfectWorldArena -PackageVersion: 1.0.26040912 -PackageLocale: zh-CN -Publisher: Perfect World -PublisherUrl: https://www.pwesports.cn/ -Author: 完矎䞖界埁奇䞊海倚媒䜓科技有限公叞 -PackageName: 完矎䞖界竞技平台 -PackageUrl: https://pvp.wanmei.com/ -License: 䞓有蜯件 -Copyright: Copyright © 2026 Perfect World -ShortDescription: 完矎䞖界竞技平台是䞀欟由完矎䞖界匀发的适合每䞀䜍玩家的䜎闚槛、易操䜜、重亀互、兌具䞓䞚性䞎趣味性的集成匏对战平台。 -Tags: -- csgo -- dota2 -- 枞戏 -PurchaseUrl: https://pvp.wanmei.com/vip -Documentations: -- DocumentLabel: 垞见问题 - DocumentUrl: https://pvp.wanmei.com/csgo/question/list -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.yaml deleted file mode 100644 index 1eca614299ce..000000000000 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: PerfectWorld.PerfectWorldArena -PackageVersion: 1.0.26040912 -DefaultLocale: zh-CN -ManifestType: version -ManifestVersion: 1.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.installer.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.installer.yaml deleted file mode 100644 index b1110132dc53..000000000000 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.installer.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: PerfectWorld.PerfectWorldArena -PackageVersion: 1.0.26042311 -InstallerType: nullsoft -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -FileExtensions: -- wmpvp -ProductCode: '{a9be7c93-59b5-5f11-bbb9-964db82cbf57}' -ReleaseDate: 2026-04-22 -Installers: -- Architecture: x86 - InstallerUrl: https://client.wmpvp.com/download/perfectworldarena_win32_v1.0.26042311.exe - InstallerSha256: 79B13E3889ADD6201E4A10017E5EF0559F1FFABF04C3F33D8A887ACFD688B23D -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.locale.en-US.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.locale.en-US.yaml deleted file mode 100644 index c00efb5351a9..000000000000 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.locale.en-US.yaml +++ /dev/null @@ -1,19 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: PerfectWorld.PerfectWorldArena -PackageVersion: 1.0.26042311 -PackageLocale: en-US -Author: Perfect World Zhengqi (Shanghai) Multimedia Technology Co., Ltd. -License: Proprietary -ShortDescription: Perfect World Arena is a comprehensive PvP platform developed by Perfect World for every player. It is low-threshold, easy to use, interaction aware, and professional yet fun. -Tags: -- csgo -- dota2 -- game -- gaming -Documentations: -- DocumentLabel: FAQ - DocumentUrl: https://pvp.wanmei.com/csgo/question/list -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml deleted file mode 100644 index 9e3d0c75d0b4..000000000000 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml +++ /dev/null @@ -1,24 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: PerfectWorld.PerfectWorldArena -PackageVersion: 1.0.26042311 -PackageLocale: zh-CN -Publisher: Perfect World -PublisherUrl: https://www.pwesports.cn/ -Author: 完矎䞖界埁奇䞊海倚媒䜓科技有限公叞 -PackageName: 完矎䞖界竞技平台 -PackageUrl: https://pvp.wanmei.com/ -License: 䞓有蜯件 -Copyright: Copyright © 2026 Perfect World -ShortDescription: 完矎䞖界竞技平台是䞀欟由完矎䞖界匀发的适合每䞀䜍玩家的䜎闚槛、易操䜜、重亀互、兌具䞓䞚性䞎趣味性的集成匏对战平台。 -Tags: -- csgo -- dota2 -- 枞戏 -PurchaseUrl: https://pvp.wanmei.com/vip -Documentations: -- DocumentLabel: 垞见问题 - DocumentUrl: https://pvp.wanmei.com/csgo/question/list -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.yaml deleted file mode 100644 index 1a0794518e49..000000000000 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: PerfectWorld.PerfectWorldArena -PackageVersion: 1.0.26042311 -DefaultLocale: zh-CN -ManifestType: version -ManifestVersion: 1.12.0 diff --git a/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.installer.yaml b/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.installer.yaml deleted file mode 100644 index e05adf2236ea..000000000000 --- a/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.installer.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: PostgreSQL.psqlODBC.mimalloc -PackageVersion: 17.00.0009 -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2026-03-18 -Installers: -- Architecture: x86 - InstallerType: burn - InstallerUrl: https://github.com/postgresql-interfaces/psqlodbc/releases/download/REL-17_00_0009-mimalloc/psqlodbc-setup.exe - InstallerSha256: 88906E5DBE57165FE24AFE402E000B613CCE96DE4DF8C21A6A038C371B3B0AE0 - ProductCode: '{0aa860f3-94e4-4fe2-b72c-4c8305af5186}' -- Architecture: x64 - InstallerType: burn - InstallerUrl: https://github.com/postgresql-interfaces/psqlodbc/releases/download/REL-17_00_0009-mimalloc/psqlodbc-setup.exe - InstallerSha256: 88906E5DBE57165FE24AFE402E000B613CCE96DE4DF8C21A6A038C371B3B0AE0 - ProductCode: '{0aa860f3-94e4-4fe2-b72c-4c8305af5186}' -- Architecture: x86 - InstallerType: wix - InstallerUrl: https://github.com/postgresql-interfaces/psqlodbc/releases/download/REL-17_00_0009-mimalloc/psqlodbc_x86.msi - InstallerSha256: 9D85837FAF48418293263CE0EE2474F9D2BD7EE157241CB23310D792631E29F5 - InstallerSwitches: - InstallLocation: BASEDIR="" - ProductCode: '{FBC651D2-77BF-43EC-9FD3-0CF34EAF45E1}' -- Architecture: x64 - InstallerType: wix - InstallerUrl: https://github.com/postgresql-interfaces/psqlodbc/releases/download/REL-17_00_0009-mimalloc/psqlodbc_x64.msi - InstallerSha256: 5155121B83181C4050607CCC554423629A8F17D1F613AA5C3FADC7DE34109E09 - InstallerSwitches: - InstallLocation: BASEDIR="" - ProductCode: '{717B77DC-4978-4BFE-B814-0C560026B611}' -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.locale.en-US.yaml b/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.locale.en-US.yaml deleted file mode 100644 index 2a31c6ae7756..000000000000 --- a/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: PostgreSQL.psqlODBC.mimalloc -PackageVersion: 17.00.0009 -PackageLocale: en-US -Publisher: PostgreSQL Global Development Group -PublisherUrl: https://www.postgresql.org/ -PublisherSupportUrl: https://github.com/postgresql-interfaces/psqlodbc/issues -PrivacyUrl: https://www.postgresql.org/about/policies/privacy/ -PackageName: psqlodbc (mimalloc version) -PackageUrl: https://odbc.postgresql.org/ -License: LGPL-2.0 -LicenseUrl: https://github.com/postgresql-interfaces/psqlodbc/blob/HEAD/license.txt -Copyright: Copyright © 1996-2026 The PostgreSQL Global Development Group -CopyrightUrl: https://www.postgresql.org/about/policies/trademarks/ -ShortDescription: The official PostgreSQL ODBC Driver. Use the mimalloc allocator for improved performance. -Tags: -- odbc -- postgresql -ReleaseNotesUrl: https://odbc.postgresql.org/docs/release.html -Documentations: -- DocumentLabel: FAQ - DocumentUrl: https://odbc.postgresql.org/faq.html -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.locale.zh-CN.yaml b/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.locale.zh-CN.yaml deleted file mode 100644 index b98f85d78902..000000000000 --- a/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.locale.zh-CN.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: PostgreSQL.psqlODBC.mimalloc -PackageVersion: 17.00.0009 -PackageLocale: zh-CN -Publisher: PostgreSQL Global Development Group -PublisherUrl: https://www.postgresql.org/ -PublisherSupportUrl: https://github.com/postgresql-interfaces/psqlodbc/issues -PrivacyUrl: https://www.postgresql.org/about/policies/privacy/ -PackageName: psqlodbc (mimalloc 版) -PackageUrl: https://odbc.postgresql.org/ -License: LGPL-2.0 -LicenseUrl: https://github.com/postgresql-interfaces/psqlodbc/blob/HEAD/license.txt -Copyright: Copyright © 1996-2026 The PostgreSQL Global Development Group -CopyrightUrl: https://www.postgresql.org/about/policies/trademarks/ -ShortDescription: 官方 PostgreSQL ODBC 驱劚。䜿甚 mimalloc allocator 以提高性胜。 -Tags: -- odbc -- postgresql -ReleaseNotesUrl: https://odbc.postgresql.org/docs/release.html -Documentations: -- DocumentLabel: 垞见问题 - DocumentUrl: https://odbc.postgresql.org/faq.html -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/p/Pulover/PuloversMacroCreator/5.4.1/Pulover.PuloversMacroCreator.installer.yaml b/manifests/p/Pulover/PuloversMacroCreator/5.4.1/Pulover.PuloversMacroCreator.installer.yaml deleted file mode 100644 index e010437e6255..000000000000 --- a/manifests/p/Pulover/PuloversMacroCreator/5.4.1/Pulover.PuloversMacroCreator.installer.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with komac v2.13.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Pulover.PuloversMacroCreator -PackageVersion: 5.4.1 -InstallerLocale: en-US -InstallerType: inno -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -ProductCode: '{223FFB42-2D49-4AF6-9EF2-82B7D0CAF8B4}_is1' -ReleaseDate: 2021-12-06 -AppsAndFeaturesEntries: -- ProductCode: '{223FFB42-2D49-4AF6-9EF2-82B7D0CAF8B4}_is1' -ElevationRequirement: elevatesSelf -InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\MacroCreator' -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/Pulover/PuloversMacroCreator/releases/download/v5.4.1/MacroCreator-setup.exe - InstallerSha256: 92FFA6DA0BEA664F2499CFBEC2A578BF882ED861CBB218B384E6AF6EA589DDE9 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/p/Pulover/PuloversMacroCreator/5.4.1/Pulover.PuloversMacroCreator.locale.en-US.yaml b/manifests/p/Pulover/PuloversMacroCreator/5.4.1/Pulover.PuloversMacroCreator.locale.en-US.yaml deleted file mode 100644 index 495a72139cab..000000000000 --- a/manifests/p/Pulover/PuloversMacroCreator/5.4.1/Pulover.PuloversMacroCreator.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Created with komac v2.13.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Pulover.PuloversMacroCreator -PackageVersion: 5.4.1 -PackageLocale: en-US -Publisher: Cloversoft Serviços de Informática Ltda -PublisherUrl: https://github.com/Pulover -PublisherSupportUrl: https://github.com/Pulover/PuloversMacroCreator/issues -Author: Rodolfo U. Batista -PackageName: Pulover's Macro Creator -PackageUrl: https://www.macrocreator.com/ -License: Freeware -LicenseUrl: https://github.com/Pulover/PuloversMacroCreator?tab=License-1-ov-file -Copyright: Copyright © 2012-2021 Cloversoft Serviços de Informática Ltda -ShortDescription: Pulover’s Macro Creator is a Free Automation Tool and Script Generator. It is based on AutoHotkey language and provides users with multiple automation functions, as well as a built-in recorder. -Description: |- - Pulover’s Macro Creator is a Free Automation Tool and Script Generator. It is based on AutoHotkey language and provides users with multiple automation functions, as well as a built-in recorder. - - You can add not only keystrokes and mouse actions to your scripts but also manage windows, controls, files, strings, search images/pixels and even create If/Else Statements to control the flow of your macros! From simple repetitive tasks to complex automation projects, Pulover’s Macro Creator will save you hours of monotonous work. Everything with a friendly and intuitive interface. -Tags: -- ahk -- autohotkey -- automation -- robot -- rpa -- tesseract -ReleaseNotesUrl: https://github.com/Pulover/PuloversMacroCreator/releases/tag/v5.4.1 -Documentations: -- DocumentLabel: Help - DocumentUrl: https://www.macrocreator.com/help/ -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/p/Pulover/PuloversMacroCreator/5.4.1/Pulover.PuloversMacroCreator.yaml b/manifests/p/Pulover/PuloversMacroCreator/5.4.1/Pulover.PuloversMacroCreator.yaml deleted file mode 100644 index 8672cc32dce5..000000000000 --- a/manifests/p/Pulover/PuloversMacroCreator/5.4.1/Pulover.PuloversMacroCreator.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with komac v2.13.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Pulover.PuloversMacroCreator -PackageVersion: 5.4.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/p/purocean/YankNote/3.89.1/purocean.YankNote.installer.yaml b/manifests/p/purocean/YankNote/3.89.1/purocean.YankNote.installer.yaml new file mode 100644 index 000000000000..b35ca200fb28 --- /dev/null +++ b/manifests/p/purocean/YankNote/3.89.1/purocean.YankNote.installer.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: purocean.YankNote +PackageVersion: 3.89.1 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: user +InstallModes: +- silent +UpgradeBehavior: install +ProductCode: 5f2adf60-437d-51b9-8ef9-da70e93bc3f1 +AppsAndFeaturesEntries: +- DisplayName: Yank Note 3.86.1 + ProductCode: 5f2adf60-437d-51b9-8ef9-da70e93bc3f1 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/purocean/yn/releases/download/v3.89.1/Yank-Note-win-x64-3.89.1.exe + InstallerSha256: BFEEF5F0E7F896515C3F92444AB8CB7CC81E0E1777C05D7FEA1436019417F188 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/purocean/YankNote/3.89.1/purocean.YankNote.locale.en-US.yaml b/manifests/p/purocean/YankNote/3.89.1/purocean.YankNote.locale.en-US.yaml new file mode 100644 index 000000000000..70e7e20ac08e --- /dev/null +++ b/manifests/p/purocean/YankNote/3.89.1/purocean.YankNote.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: purocean.YankNote +PackageVersion: 3.89.1 +PackageLocale: en-US +Publisher: purocean +PublisherUrl: https://github.com/purocean +PublisherSupportUrl: https://github.com/purocean/yn/issues +Author: purocean +PackageName: Yank Note +PackageUrl: https://github.com/purocean/yn +License: AGPL-3.0 +LicenseUrl: https://github.com/purocean/yn/blob/HEAD/LICENSE +CopyrightUrl: https://github.com/purocean/yn/blob/develop/LICENSE +ShortDescription: A hackable markdown note application for programmers +Description: |- + A Hackable Markdown Note Application for Programmers. + Version control, AI completion, mind map, documents encryption, code snippet running, integrated terminal, chart embedding, HTML applets, Reveal.js, plug-in, and macro replacement. +Tags: +- drawio +- editor +- electron +- gpt3 +- koa2 +- makrdown-it +- markdown +- mermaid +- monaco-editor +- node +- note +- openai +- plantuml +- progremmer +- reveal-js +- vue +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/purocean/YankNote/3.89.1/purocean.YankNote.yaml b/manifests/p/purocean/YankNote/3.89.1/purocean.YankNote.yaml new file mode 100644 index 000000000000..f235706bce36 --- /dev/null +++ b/manifests/p/purocean/YankNote/3.89.1/purocean.YankNote.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: purocean.YankNote +PackageVersion: 3.89.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/q/qr243vbi/NekoBox/5.11.8/qr243vbi.NekoBox.installer.yaml b/manifests/q/qr243vbi/NekoBox/5.11.8/qr243vbi.NekoBox.installer.yaml deleted file mode 100644 index 818a526f544a..000000000000 --- a/manifests/q/qr243vbi/NekoBox/5.11.8/qr243vbi.NekoBox.installer.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: qr243vbi.NekoBox -PackageVersion: 5.11.8 -InstallerLocale: en-US -InstallerType: nullsoft -Scope: user -ProductCode: NekoBox -ReleaseDate: 2026-05-05 -AppsAndFeaturesEntries: -- ProductCode: NekoBox - DisplayName: NekoBox - Publisher: qr243vbi -InstallModes: - - silentWithProgress - - silent -InstallerSwitches: - Silent: "/S /NOSCRIPT=1 /WINGET=1" - SilentWithProgress: "/S /NOSCRIPT=1 /WINGET=1" -InstallationMetadata: - DefaultInstallLocation: '%AppData%\NekoBox' -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/qr243vbi/nekobox/releases/download/5.11.8/nekobox-5.11.8-windows64-installer.exe - InstallerSha256: A42FF95EEEA7D23E423B565B87CD27AF9D733DCF2AA72EAF11F7910FBA708F42 -- Architecture: arm64 - InstallerUrl: https://github.com/qr243vbi/nekobox/releases/download/5.11.8/nekobox-5.11.8-windows-arm64-installer.exe - InstallerSha256: 1D4EC278C210C46A05A5D7619F838141B17FC4919970210CCAF6DAADD82A2FBF -ManifestType: installer -ManifestVersion: 1.10.0 \ No newline at end of file diff --git a/manifests/q/qr243vbi/NekoBox/5.11.8/qr243vbi.NekoBox.locale.en-US.yaml b/manifests/q/qr243vbi/NekoBox/5.11.8/qr243vbi.NekoBox.locale.en-US.yaml deleted file mode 100644 index 2b10c255ae38..000000000000 --- a/manifests/q/qr243vbi/NekoBox/5.11.8/qr243vbi.NekoBox.locale.en-US.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json -PackageIdentifier: qr243vbi.NekoBox -PackageVersion: 5.11.8 -PackageLocale: en-US -Publisher: qr243vbi -PublisherUrl: https://github.com/qr243vbi -PublisherSupportUrl: https://github.com/qr243vbi/nekobox/issues -PackageName: NekoBox -PackageUrl: https://github.com/qr243vbi/nekobox -License: GPL-3.0 -LicenseUrl: https://github.com/qr243vbi/nekobox/blob/HEAD/LICENSE -ShortDescription: Cross-platform GUI proxy utility (Empowered by sing-box) -Tags: -- sing-box -- v2ray -- VLESS -- Vmess -- ShadowSocks -- Tor -- Mieru -- Trojan -- Hysteria -- Wireguard -- NyameBox -- TUIC -- SSH -- VPN -- ShadowTLS -- AnyTLS -ManifestType: defaultLocale -ManifestVersion: 1.10.0 \ No newline at end of file diff --git a/manifests/q/qr243vbi/NekoBox/5.11.8/qr243vbi.NekoBox.yaml b/manifests/q/qr243vbi/NekoBox/5.11.8/qr243vbi.NekoBox.yaml deleted file mode 100644 index 5066480cdd31..000000000000 --- a/manifests/q/qr243vbi/NekoBox/5.11.8/qr243vbi.NekoBox.yaml +++ /dev/null @@ -1,7 +0,0 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: qr243vbi.NekoBox -PackageVersion: 5.11.8 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 \ No newline at end of file diff --git a/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.installer.yaml b/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.installer.yaml new file mode 100644 index 000000000000..98270f299962 --- /dev/null +++ b/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.installer.yaml @@ -0,0 +1,24 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: RiotGames.Valorant.NA +PackageVersion: 123.0.2.3988 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silentWithProgress +InstallerSwitches: + Silent: --skip-to-install + SilentWithProgress: --skip-to-install + InstallLocation: --install-path="" + Log: --log-root="" + Custom: --disable-auto-launch +RequireExplicitUpgrade: true +Installers: +- Architecture: x64 + InstallerUrl: https://valorant.secure.dyn.riotcdn.net/channels/public/x/installer/current/live.live.na.exe + InstallerSha256: A2D9F9BE91DA09E95FEF0B6C2285D74F84316A0174A1DAD3DB475C88D2B78F10 + ProductCode: Riot Game valorant.live +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.locale.en-US.yaml b/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.locale.en-US.yaml new file mode 100644 index 000000000000..7085a308c778 --- /dev/null +++ b/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: RiotGames.Valorant.NA +PackageVersion: 123.0.2.3988 +PackageLocale: en-US +Publisher: Riot Games, Inc +PublisherUrl: https://www.riotgames.com/ +PublisherSupportUrl: https://support-valorant.riotgames.com/ +PrivacyUrl: https://www.riotgames.com/en/privacy-notice +Author: Riot Games, Inc. +PackageName: VALORANT (North America server) +PackageUrl: https://playvalorant.com/ +License: Proprietary +LicenseUrl: https://www.riotgames.com/en/terms-of-service +Copyright: Copyright © 2024 Riot Games +ShortDescription: A 5v5 character-based tactical shooter +Description: A 5v5 character-based tactical FPS by Riot Games where precise gunplay meets unique agent abilities. +Moniker: valorant +Tags: +- fps +- game +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.locale.zh-CN.yaml b/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.locale.zh-CN.yaml new file mode 100644 index 000000000000..9de7b6d43a04 --- /dev/null +++ b/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: RiotGames.Valorant.NA +PackageVersion: 123.0.2.3988 +PackageLocale: zh-CN +Publisher: Riot Games, Inc +PublisherUrl: https://www.riotgames.com/zh-cn +PublisherSupportUrl: https://support-valorant.riotgames.com/ +PrivacyUrl: https://www.riotgames.com/en/privacy-notice +Author: Riot Games, Inc. +PackageName: VALORANT北矎服务噚 +PackageUrl: https://playvalorant.com/ +License: 䞓有蜯件 +LicenseUrl: https://www.riotgames.com/en/terms-of-service +Copyright: Copyright © 2024 Riot Games +ShortDescription: 以角色䞺栞心的 5 对 5 战略射击枞戏 +Description: 䞀欟以角色䞺栞心的 5 对 5 第䞀人称战略射击枞戏展现粟准射击䞎特务独闚技胜的完矎结合。 +Tags: +- fps +- 无畏契纊 +- 枞戏 +- 特战英豪 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.yaml b/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.yaml new file mode 100644 index 000000000000..12ea45835fd6 --- /dev/null +++ b/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: RiotGames.Valorant.NA +PackageVersion: 123.0.2.3988 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/RodZill4/MaterialMaker/1.6/RodZill4.MaterialMaker.installer.yaml b/manifests/r/RodZill4/MaterialMaker/1.6/RodZill4.MaterialMaker.installer.yaml new file mode 100644 index 000000000000..d51feb8988c4 --- /dev/null +++ b/manifests/r/RodZill4/MaterialMaker/1.6/RodZill4.MaterialMaker.installer.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: RodZill4.MaterialMaker +PackageVersion: '1.6' +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: material_maker_1_6_windows/material_maker.exe +InstallModes: +- silent +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2026-04-18 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/RodZill4/material-maker/releases/download/1.6/material_maker_1_6_windows.zip + InstallerSha256: F8A07EF149B227FD7E193139589FC9877D5638A98DAE755C6832D7C93CEDA5BA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/RodZill4/MaterialMaker/1.6/RodZill4.MaterialMaker.locale.en-US.yaml b/manifests/r/RodZill4/MaterialMaker/1.6/RodZill4.MaterialMaker.locale.en-US.yaml new file mode 100644 index 000000000000..82e5a806d265 --- /dev/null +++ b/manifests/r/RodZill4/MaterialMaker/1.6/RodZill4.MaterialMaker.locale.en-US.yaml @@ -0,0 +1,86 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: RodZill4.MaterialMaker +PackageVersion: '1.6' +PackageLocale: en-US +Publisher: RodZill4 +PublisherUrl: https://github.com/RodZill4 +PublisherSupportUrl: https://github.com/RodZill4/material-maker/issues +Author: Rodz Labs +PackageName: Material Maker +PackageUrl: https://github.com/RodZill4/material-maker +License: MIT +LicenseUrl: https://github.com/RodZill4/material-maker/blob/HEAD/LICENSE.md +Copyright: Copyright (c) 2018-2025 Rodolphe Suescun and contributors +CopyrightUrl: https://github.com/RodZill4/material-maker/blob/master/LICENSE.md +ShortDescription: | + A procedural textures authoring and 3D model painting tool based on the Godot game engine +Description: | + This is a tool based on Godot Engine that can be used to create textures procedurally and paint 3D models. Its user interface is based on Godot's GraphEdit node: textures and brushes are described as interconnected nodes. +Tags: +- glsl +- godot-engine +- godotengine +- material-maker +- painting +- procedural-generation +- texture-synthesis +- textures +ReleaseNotes: |- + General + - Allowed closing named parameter dialog via window button (contributed by williamchange) + - Implemented vertical tabs in the Preferences dialog (contributed by williamchange) + - Improved debug console link navigation (contributed by williamchange) + - Enabled tab rearrangement for projects panel (contributed by williamchange) + - Made tab styles more consistent (contributed by williamchange) + - Updated icons to use SVG when possible (contributed by williamchange) + - Configured default FileDialog path to user's home directory (contributed by williamchange) + - Added documentation for user interface shortcuts (contributed by williamchange) + - Added a menu item to show examples folder (contributed by williamchange) + - Added documentation for user interface shortcuts (contributed by williamchange) + Graph view + - Updated graph navigation to retain subgraph offsets (contributed by williamchange) + - Added circuit/metro style (diagonal) connections (contributed by williamchange) + - Implemented node grabbing via G key (contributed by williamchange) + - Added drag and drop support for image parameter (contributed by williamchange) + - Made the close/minimize node buttons optional (contributed by williamchange) + - Improved node interaction when zoomed out (contributed by williamchange) + - Added port previews for group input nodes (contributed by williamchange) + - Improved remote parameters rearrangement (contributed by williamchange) + - Added edge scrolling when dragging connection (contributed by williamchange) + Library + - Show top-level section labels in the Library panel in bold (contributed by williamchange) + - Modified the "Update library item" action to keep the thumbnail (contributed by williamchange) + 2D Preview + - Improved $node to use node title in 2D export (contributed by williamchange) + - Updated 2D preview to gizmos during transform until LMB is released (contributed by williamchange) + 3D Preview + - Added alternative inputs for graph panning/camera orbiting (contributed by williamchange) + Nodes + - Added controlled variations and related nodes + - Implemented portal nodes (contributed by williamchange) + - Added a variadic Color Pick node (contributed by myaaaaaaaaa) + - Added a basic glTF exporter for static PBR materials (contributed by myaaaaaaaaa) + - Added lacunarity for FBM noise node (contributed by williamchange) + - Added gabor noise for FBM noise node (contributed by williamchange) + - Improved export node to support $ variables (contributed by williamchange) + Bug Fixes + - Fixed crash when adjusting BPP in pixels node (contributed by williamchange) + - Fixed Morphology node Y dilation to use resolution (contributed by DevFika) + - Fixed SDF FBM node not displaying correctly (contributed by williamchange) + - Fixed opaque background for tooltip/popup menu panels (contributed by williamchange) + - Reintroduced AO export for Blender export target (contributed by williamchange) + - Placed graph UI (hierarchy and subgraph controls) above nodes (contributed by williamchange) + - Updated reroute/preview2d bg checker to match defaults (contributed by williamchange) + - Fixed console meta navigation on multiple clicks (contributed by williamchange) + - Fixed group parameters using default values from linked widgets (contributed by williamchange) + - Fixed hierarchy/subgraph UI position (contributed by williamchange) + - Fixed crash when opening named parameter editor (contributed by williamchange) + - Fixed zoom in/out buttons conflicting with node align (contributed by williamchange) + - Added check to prevent self-referencing in float parameter editor (contributed by williamchange) + - Fixed lattice, pixels, polygon views not centering (contributed by williamchange) + - Fixed default lattice point positions (contributed by williamchange) +ReleaseNotesUrl: https://github.com/RodZill4/material-maker/releases/tag/1.6 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RodZill4/MaterialMaker/1.6/RodZill4.MaterialMaker.yaml b/manifests/r/RodZill4/MaterialMaker/1.6/RodZill4.MaterialMaker.yaml new file mode 100644 index 000000000000..dc6da2073cd3 --- /dev/null +++ b/manifests/r/RodZill4/MaterialMaker/1.6/RodZill4.MaterialMaker.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: RodZill4.MaterialMaker +PackageVersion: '1.6' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/RoxyBrowser/RoxyBrowser/3.6.3/RoxyBrowser.RoxyBrowser.installer.yaml b/manifests/r/RoxyBrowser/RoxyBrowser/3.6.3/RoxyBrowser.RoxyBrowser.installer.yaml index d91a11816a77..659608ad028d 100644 --- a/manifests/r/RoxyBrowser/RoxyBrowser/3.6.3/RoxyBrowser.RoxyBrowser.installer.yaml +++ b/manifests/r/RoxyBrowser/RoxyBrowser/3.6.3/RoxyBrowser.RoxyBrowser.installer.yaml @@ -1,38 +1,38 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: RoxyBrowser.RoxyBrowser -PackageVersion: 3.6.3 -InstallerType: nullsoft -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ProductCode: 5633cfcb-8c5e-5d87-b6fa-ae51c376d817 -ReleaseDate: 2025-12-18 -Installers: -- Architecture: x86 - Scope: user - InstallerUrl: https://lumibrowser-hk.oss-cn-hongkong.aliyuncs.com/public/package/app/Windows/32/3.6.3/RoxyBrowser_x86_3.6.3.exe - InstallerSha256: CDA7324CBAE6DFB11BA9C3F4A1569F5A5A06B04197DCBB2971564A5BAC39E99A - InstallerSwitches: - Custom: /currentuser -- Architecture: x86 - Scope: machine - InstallerUrl: https://lumibrowser-hk.oss-cn-hongkong.aliyuncs.com/public/package/app/Windows/32/3.6.3/RoxyBrowser_x86_3.6.3.exe - InstallerSha256: CDA7324CBAE6DFB11BA9C3F4A1569F5A5A06B04197DCBB2971564A5BAC39E99A - InstallerSwitches: - Custom: /allusers -- Architecture: x64 - Scope: user - InstallerUrl: https://lumibrowser-hk.oss-cn-hongkong.aliyuncs.com/public/package/app/Windows/64/3.6.3/RoxyBrowser_x64_3.6.3.exe - InstallerSha256: 20DCF8E243B3D94C6E9F67F1C446BF61B45DA81A83B6AC754C69C2AF525C9426 - InstallerSwitches: - Custom: /currentuser -- Architecture: x64 - Scope: machine - InstallerUrl: https://lumibrowser-hk.oss-cn-hongkong.aliyuncs.com/public/package/app/Windows/64/3.6.3/RoxyBrowser_x64_3.6.3.exe - InstallerSha256: 20DCF8E243B3D94C6E9F67F1C446BF61B45DA81A83B6AC754C69C2AF525C9426 - InstallerSwitches: - Custom: /allusers -ManifestType: installer -ManifestVersion: 1.10.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: RoxyBrowser.RoxyBrowser +PackageVersion: 3.6.3 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 5633cfcb-8c5e-5d87-b6fa-ae51c376d817 +ReleaseDate: 2025-12-18 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://lumibrowser-hk.oss-cn-hongkong.aliyuncs.com/public/package/app/Windows/32/3.6.3/RoxyBrowser_x86_3.6.3.exe + InstallerSha256: 6A2D131991AC67AE422D248337396A1E25F71AAE6A3E8B63D997E74CAD7BAC3E + InstallerSwitches: + Custom: /currentuser +- Architecture: x86 + Scope: machine + InstallerUrl: https://lumibrowser-hk.oss-cn-hongkong.aliyuncs.com/public/package/app/Windows/32/3.6.3/RoxyBrowser_x86_3.6.3.exe + InstallerSha256: 6A2D131991AC67AE422D248337396A1E25F71AAE6A3E8B63D997E74CAD7BAC3E + InstallerSwitches: + Custom: /allusers +- Architecture: x64 + Scope: user + InstallerUrl: https://lumibrowser-hk.oss-cn-hongkong.aliyuncs.com/public/package/app/Windows/64/3.6.3/RoxyBrowser_x64_3.6.3.exe + InstallerSha256: 7393A48C586AE46BD294587D8CC5E5525BC9E975A65323113DDE3CAA7AC033AB + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://lumibrowser-hk.oss-cn-hongkong.aliyuncs.com/public/package/app/Windows/64/3.6.3/RoxyBrowser_x64_3.6.3.exe + InstallerSha256: 7393A48C586AE46BD294587D8CC5E5525BC9E975A65323113DDE3CAA7AC033AB + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/RoxyBrowser/RoxyBrowser/3.6.3/RoxyBrowser.RoxyBrowser.locale.en-US.yaml b/manifests/r/RoxyBrowser/RoxyBrowser/3.6.3/RoxyBrowser.RoxyBrowser.locale.en-US.yaml index cb45319b535c..e2ad8ae2f01f 100644 --- a/manifests/r/RoxyBrowser/RoxyBrowser/3.6.3/RoxyBrowser.RoxyBrowser.locale.en-US.yaml +++ b/manifests/r/RoxyBrowser/RoxyBrowser/3.6.3/RoxyBrowser.RoxyBrowser.locale.en-US.yaml @@ -1,28 +1,28 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: RoxyBrowser.RoxyBrowser -PackageVersion: 3.6.3 -PackageLocale: en-US -Publisher: kuajingzhiyan -PublisherUrl: https://roxybrowser.com/ -PrivacyUrl: https://roxybrowser.com/copyright/privacy -PackageName: RoxyBrowser -PackageUrl: https://roxybrowser.com/download -License: Proprietary -LicenseUrl: https://roxybrowser.com/copyright/user -Copyright: © 2025 RoxyBrowser -CopyrightUrl: https://roxybrowser.com/copyright/user -ShortDescription: A premier antidetect browser that streamlines your workflow effortlessly -Tags: -- browser -- internet -- web -- webpage -ReleaseNotes: |- - 1. Added IP query method: ipinfo.io. - 2. Added to Proxy Store: Socks5.io and ROLA-IP. - 3. Optimized interactive experience. -PurchaseUrl: https://roxybrowser.com/pricing -ManifestType: defaultLocale -ManifestVersion: 1.10.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: RoxyBrowser.RoxyBrowser +PackageVersion: 3.6.3 +PackageLocale: en-US +Publisher: kuajingzhiyan +PublisherUrl: https://roxybrowser.com/ +PrivacyUrl: https://roxybrowser.com/copyright/privacy +PackageName: RoxyBrowser +PackageUrl: https://roxybrowser.com/download +License: Proprietary +LicenseUrl: https://roxybrowser.com/copyright/user +Copyright: © 2025 RoxyBrowser +CopyrightUrl: https://roxybrowser.com/copyright/user +ShortDescription: A premier antidetect browser that streamlines your workflow effortlessly +Tags: +- browser +- internet +- web +- webpage +ReleaseNotes: |- + 1. Added IP query method: ipinfo.io. + 2. Added to Proxy Store: Socks5.io and ROLA-IP. + 3. Optimized interactive experience. +PurchaseUrl: https://roxybrowser.com/pricing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RoxyBrowser/RoxyBrowser/3.6.3/RoxyBrowser.RoxyBrowser.locale.zh-CN.yaml b/manifests/r/RoxyBrowser/RoxyBrowser/3.6.3/RoxyBrowser.RoxyBrowser.locale.zh-CN.yaml index dd09d1d922b4..513c189b1b69 100644 --- a/manifests/r/RoxyBrowser/RoxyBrowser/3.6.3/RoxyBrowser.RoxyBrowser.locale.zh-CN.yaml +++ b/manifests/r/RoxyBrowser/RoxyBrowser/3.6.3/RoxyBrowser.RoxyBrowser.locale.zh-CN.yaml @@ -1,25 +1,25 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: RoxyBrowser.RoxyBrowser -PackageVersion: 3.6.3 -PackageLocale: zh-CN -PublisherUrl: https://roxybrowser.com/zh -PrivacyUrl: https://roxybrowser.com/zh/copyright/privacy -PackageUrl: https://roxybrowser.com/zh/download -License: 䞓有蜯件 -LicenseUrl: https://roxybrowser.com/zh/copyright/user -CopyrightUrl: https://roxybrowser.com/zh/copyright/user -ShortDescription: 䞀欟顶尖的防检测浏览噚蜻束䌘化悚的工䜜流皋 -Tags: -- 互联眑 -- 浏览噚 -- 眑页 -ReleaseNotes: |- - 1. 支持手机号泚册/登圕。 - 2. 新增 ip 查询方匏ipinfo.io。 - 3. 代理商店新增Socks5.io 和 ROLA-IP。 - 4. 亀互䜓验䌘化。 -PurchaseUrl: https://roxybrowser.com/zh/pricing -ManifestType: locale -ManifestVersion: 1.10.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: RoxyBrowser.RoxyBrowser +PackageVersion: 3.6.3 +PackageLocale: zh-CN +PublisherUrl: https://roxybrowser.com/zh +PrivacyUrl: https://roxybrowser.com/zh/copyright/privacy +PackageUrl: https://roxybrowser.com/zh/download +License: 䞓有蜯件 +LicenseUrl: https://roxybrowser.com/zh/copyright/user +CopyrightUrl: https://roxybrowser.com/zh/copyright/user +ShortDescription: 䞀欟顶尖的防检测浏览噚蜻束䌘化悚的工䜜流皋 +Tags: +- 互联眑 +- 浏览噚 +- 眑页 +ReleaseNotes: |- + 1. 支持手机号泚册/登圕。 + 2. 新增 ip 查询方匏ipinfo.io。 + 3. 代理商店新增Socks5.io 和 ROLA-IP。 + 4. 亀互䜓验䌘化。 +PurchaseUrl: https://roxybrowser.com/zh/pricing +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RoxyBrowser/RoxyBrowser/3.6.3/RoxyBrowser.RoxyBrowser.yaml b/manifests/r/RoxyBrowser/RoxyBrowser/3.6.3/RoxyBrowser.RoxyBrowser.yaml index 71c3ab1d9782..8b23215556fa 100644 --- a/manifests/r/RoxyBrowser/RoxyBrowser/3.6.3/RoxyBrowser.RoxyBrowser.yaml +++ b/manifests/r/RoxyBrowser/RoxyBrowser/3.6.3/RoxyBrowser.RoxyBrowser.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: RoxyBrowser.RoxyBrowser -PackageVersion: 3.6.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: RoxyBrowser.RoxyBrowser +PackageVersion: 3.6.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/S3Drive/S3Drive/1.17.0/S3Drive.S3Drive.installer.yaml b/manifests/s/S3Drive/S3Drive/1.17.0/S3Drive.S3Drive.installer.yaml index 3f3d08aa055e..47b0734a9b04 100644 --- a/manifests/s/S3Drive/S3Drive/1.17.0/S3Drive.S3Drive.installer.yaml +++ b/manifests/s/S3Drive/S3Drive/1.17.0/S3Drive.S3Drive.installer.yaml @@ -1,4 +1,4 @@ -# Created with komac v2.16.0 +# Automatically updated by the winget bot at 2026/May/07 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: S3Drive.S3Drive @@ -26,6 +26,6 @@ InstallationMetadata: Installers: - Architecture: x64 InstallerUrl: https://github.com/s3drive/windows-app/releases/download/1.17.0/s3drive-win-x64.exe - InstallerSha256: 2E22A5D9600E66259D6263394E2E87FAD3276DC661EE2F1C7613F9AB8DDE7BBE + InstallerSha256: 0CA7E71D17A9C349AA193F735B2CD9097B4C6DCC6834CCF4EA822AD7D948FD4C ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/s/S3Drive/S3Drive/1.17.0/S3Drive.S3Drive.locale.en-US.yaml b/manifests/s/S3Drive/S3Drive/1.17.0/S3Drive.S3Drive.locale.en-US.yaml index bb33ec6cb742..15bac7d978dd 100644 --- a/manifests/s/S3Drive/S3Drive/1.17.0/S3Drive.S3Drive.locale.en-US.yaml +++ b/manifests/s/S3Drive/S3Drive/1.17.0/S3Drive.S3Drive.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with komac v2.16.0 +# Automatically updated by the winget bot at 2026/May/07 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: S3Drive.S3Drive diff --git a/manifests/s/S3Drive/S3Drive/1.17.0/S3Drive.S3Drive.yaml b/manifests/s/S3Drive/S3Drive/1.17.0/S3Drive.S3Drive.yaml index 409a7e3c9c21..093ad8ba8b73 100644 --- a/manifests/s/S3Drive/S3Drive/1.17.0/S3Drive.S3Drive.yaml +++ b/manifests/s/S3Drive/S3Drive/1.17.0/S3Drive.S3Drive.yaml @@ -1,4 +1,4 @@ -# Created with komac v2.16.0 +# Automatically updated by the winget bot at 2026/May/07 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: S3Drive.S3Drive diff --git a/manifests/s/Shilihu/Mubu/5.4.2/Shilihu.Mubu.installer.yaml b/manifests/s/Shilihu/Mubu/5.4.2/Shilihu.Mubu.installer.yaml index 376d377caade..5a92239322df 100644 --- a/manifests/s/Shilihu/Mubu/5.4.2/Shilihu.Mubu.installer.yaml +++ b/manifests/s/Shilihu/Mubu/5.4.2/Shilihu.Mubu.installer.yaml @@ -1,20 +1,20 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Shilihu.Mubu -PackageVersion: 5.4.2 -InstallerType: nullsoft -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ProductCode: '{1ae3bcb7-9c85-5736-9801-7c661841c457}' -Installers: -- Architecture: x86 - InstallerUrl: https://assets.mubu.com/client/5.4.2/win/Mubu-5.4.2-ia32.exe - InstallerSha256: 5F7B0F0015ADE6AD4837BA68EA980EA0D639BB24DAA2EF258D809ABA02C1CAB8 -- Architecture: x64 - InstallerUrl: https://assets.mubu.com/client/5.4.2/win/Mubu-5.4.2-x64.exe - InstallerSha256: 858027EC44DC5DA389CB6DB3A8E0693CEF36F6502D4BEBC08EBE10FDA8C79647 -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Shilihu.Mubu +PackageVersion: 5.4.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: '{1ae3bcb7-9c85-5736-9801-7c661841c457}' +Installers: +- Architecture: x86 + InstallerUrl: https://assets.mubu.com/client/5.4.2/win/Mubu-5.4.2-ia32.exe + InstallerSha256: C578B5F75FC6E5A73516ED259F4BF7E629E56224C6316798684017411D10F13B +- Architecture: x64 + InstallerUrl: https://assets.mubu.com/client/5.4.2/win/Mubu-5.4.2-x64.exe + InstallerSha256: DF6AA88DCE081EADAA9DC272C6D6099841E64BA41F1B5A50379F30656ECC2F1A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/Shilihu/Mubu/5.4.2/Shilihu.Mubu.locale.en-US.yaml b/manifests/s/Shilihu/Mubu/5.4.2/Shilihu.Mubu.locale.en-US.yaml index 64ac073c4e2e..3e6d68ffe2b9 100644 --- a/manifests/s/Shilihu/Mubu/5.4.2/Shilihu.Mubu.locale.en-US.yaml +++ b/manifests/s/Shilihu/Mubu/5.4.2/Shilihu.Mubu.locale.en-US.yaml @@ -1,36 +1,36 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Shilihu.Mubu -PackageVersion: 5.4.2 -PackageLocale: en-US -Publisher: mubu.com -PublisherUrl: https://mubu.com/ -PublisherSupportUrl: https://mubu.com/help/ -PrivacyUrl: https://mubu.com/privacyPolicy -Author: Shenzhen Shilihu Technology Co., Ltd. -PackageName: 幕垃 -PackageUrl: https://mubu.com/apps -License: Proprietary -LicenseUrl: https://mubu.com/agreement -Copyright: ©2017-2026 Mubu -CopyrightUrl: https://mubu.com/agreement -ShortDescription: Minimalist outline notes, generate mind maps with one click -Description: Mubu is a knowledge management tool that combines outliner and mind map to help you take notes, manage tasks, make plans and even organize brainstorms in a more efficient way and with a clearer structure. -Tags: -- article -- docs -- document -- editor -- markdown -- mind-map -- mind-mapping -- mindmap -- notes -- outline -- outliner -- writing -ReleaseNotesUrl: https://mubu.com/doc/d5501245199 -PurchaseUrl: https://mubu.com/about-pro -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Shilihu.Mubu +PackageVersion: 5.4.2 +PackageLocale: en-US +Publisher: mubu.com +PublisherUrl: https://mubu.com/ +PublisherSupportUrl: https://mubu.com/help/ +PrivacyUrl: https://mubu.com/privacyPolicy +Author: Shenzhen Shilihu Technology Co., Ltd. +PackageName: 幕垃 +PackageUrl: https://mubu.com/apps +License: Proprietary +LicenseUrl: https://mubu.com/agreement +Copyright: ©2017-2026 Mubu +CopyrightUrl: https://mubu.com/agreement +ShortDescription: Minimalist outline notes, generate mind maps with one click +Description: Mubu is a knowledge management tool that combines outliner and mind map to help you take notes, manage tasks, make plans and even organize brainstorms in a more efficient way and with a clearer structure. +Tags: +- article +- docs +- document +- editor +- markdown +- mind-map +- mind-mapping +- mindmap +- notes +- outline +- outliner +- writing +ReleaseNotesUrl: https://mubu.com/doc/d5501245199 +PurchaseUrl: https://mubu.com/about-pro +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Shilihu/Mubu/5.4.2/Shilihu.Mubu.locale.zh-CN.yaml b/manifests/s/Shilihu/Mubu/5.4.2/Shilihu.Mubu.locale.zh-CN.yaml index 9bec083e1f36..db630ca80119 100644 --- a/manifests/s/Shilihu/Mubu/5.4.2/Shilihu.Mubu.locale.zh-CN.yaml +++ b/manifests/s/Shilihu/Mubu/5.4.2/Shilihu.Mubu.locale.zh-CN.yaml @@ -1,34 +1,34 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: Shilihu.Mubu -PackageVersion: 5.4.2 -PackageLocale: zh-CN -Publisher: mubu.com -PublisherUrl: https://mubu.com/ -PublisherSupportUrl: https://mubu.com/help/ -PrivacyUrl: https://mubu.com/privacyPolicy -Author: 深圳垂十里湖科技有限公叞 -PackageName: 幕垃 -PackageUrl: https://mubu.com/apps -License: 䞓有蜯件 -LicenseUrl: https://mubu.com/agreement -Copyright: ©2017-2026 幕垃 -CopyrightUrl: https://mubu.com/agreement -ShortDescription: 极简倧纲笔记䞀键生成思绎富囟 -Description: 幕垃是䞀欟结合了倧纲笔记和思绎富囟的倎脑管理工具垮䜠甚曎高效的方匏和曎枅晰的结构来记圕笔记、管理任务、制定计划甚至是组织倎脑风暎。 -Tags: -- markdown -- 写䜜 -- 倧纲 -- 思绎富囟 -- 文档 -- 文皿 -- 文章 -- 笔记 -- 猖蟑噚 -- 脑囟 -ReleaseNotesUrl: https://mubu.com/doc/d5501245199 -PurchaseUrl: https://mubu.com/about-pro -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Shilihu.Mubu +PackageVersion: 5.4.2 +PackageLocale: zh-CN +Publisher: mubu.com +PublisherUrl: https://mubu.com/ +PublisherSupportUrl: https://mubu.com/help/ +PrivacyUrl: https://mubu.com/privacyPolicy +Author: 深圳垂十里湖科技有限公叞 +PackageName: 幕垃 +PackageUrl: https://mubu.com/apps +License: 䞓有蜯件 +LicenseUrl: https://mubu.com/agreement +Copyright: ©2017-2026 幕垃 +CopyrightUrl: https://mubu.com/agreement +ShortDescription: 极简倧纲笔记䞀键生成思绎富囟 +Description: 幕垃是䞀欟结合了倧纲笔记和思绎富囟的倎脑管理工具垮䜠甚曎高效的方匏和曎枅晰的结构来记圕笔记、管理任务、制定计划甚至是组织倎脑风暎。 +Tags: +- markdown +- 写䜜 +- 倧纲 +- 思绎富囟 +- 文档 +- 文皿 +- 文章 +- 笔记 +- 猖蟑噚 +- 脑囟 +ReleaseNotesUrl: https://mubu.com/doc/d5501245199 +PurchaseUrl: https://mubu.com/about-pro +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Shilihu/Mubu/5.4.2/Shilihu.Mubu.yaml b/manifests/s/Shilihu/Mubu/5.4.2/Shilihu.Mubu.yaml index afc09a3e342c..e8ed49695d1b 100644 --- a/manifests/s/Shilihu/Mubu/5.4.2/Shilihu.Mubu.yaml +++ b/manifests/s/Shilihu/Mubu/5.4.2/Shilihu.Mubu.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: Shilihu.Mubu -PackageVersion: 5.4.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Shilihu.Mubu +PackageVersion: 5.4.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/Shilihu/Mubu/5.5.0/Shilihu.Mubu.installer.yaml b/manifests/s/Shilihu/Mubu/5.5.0/Shilihu.Mubu.installer.yaml index 163ef3da5263..15c980645fba 100644 --- a/manifests/s/Shilihu/Mubu/5.5.0/Shilihu.Mubu.installer.yaml +++ b/manifests/s/Shilihu/Mubu/5.5.0/Shilihu.Mubu.installer.yaml @@ -1,20 +1,20 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Shilihu.Mubu -PackageVersion: 5.5.0 -InstallerType: nullsoft -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ProductCode: '{1ae3bcb7-9c85-5736-9801-7c661841c457}' -Installers: -- Architecture: x86 - InstallerUrl: https://assets.mubu.com/client/5.5.0/win/Mubu-5.5.0-ia32.exe - InstallerSha256: 8029F0DBDB9C796B408FDF648064C1838721A0D780B3A3EF919DED8B3AE443F5 -- Architecture: x64 - InstallerUrl: https://assets.mubu.com/client/5.5.0/win/Mubu-5.5.0-x64.exe - InstallerSha256: 604A6D2234C69856739198A71912C4D2AA26BC405BE084021FC6A8054E2B4A3E -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Shilihu.Mubu +PackageVersion: 5.5.0 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: '{1ae3bcb7-9c85-5736-9801-7c661841c457}' +Installers: +- Architecture: x86 + InstallerUrl: https://assets.mubu.com/client/5.5.0/win/Mubu-5.5.0-ia32.exe + InstallerSha256: D5A527A60E6C8541861CC295792944A665E753F720B5C64447F26C44C908253B +- Architecture: x64 + InstallerUrl: https://assets.mubu.com/client/5.5.0/win/Mubu-5.5.0-x64.exe + InstallerSha256: 0C3C43D65D244D69C273EC2CAE102D7F4E0F518DA8A24426F88F466B782FC521 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/Shilihu/Mubu/5.5.0/Shilihu.Mubu.locale.en-US.yaml b/manifests/s/Shilihu/Mubu/5.5.0/Shilihu.Mubu.locale.en-US.yaml index c194c34d53a7..f1dc2a9cb74c 100644 --- a/manifests/s/Shilihu/Mubu/5.5.0/Shilihu.Mubu.locale.en-US.yaml +++ b/manifests/s/Shilihu/Mubu/5.5.0/Shilihu.Mubu.locale.en-US.yaml @@ -1,38 +1,38 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Shilihu.Mubu -PackageVersion: 5.5.0 -PackageLocale: en-US -Publisher: mubu.com -PublisherUrl: https://mubu.com/ -PublisherSupportUrl: https://mubu.com/help/ -PrivacyUrl: https://mubu.com/privacyPolicy -Author: Shenzhen Shilihu Technology Co., Ltd. -PackageName: 幕垃 -PackageUrl: https://mubu.com/apps -License: Proprietary -LicenseUrl: https://mubu.com/agreement -Copyright: ©2017-2026 Mubu -CopyrightUrl: https://mubu.com/agreement -ShortDescription: Minimalist outline notes, generate mind maps with one click. -Description: Mubu is a knowledge management tool that combines outliner and mind map to help you take notes, manage tasks, make plans and even organize brainstorms in a more efficient way and with a clearer structure. -Tags: -- article -- docs -- document -- editor -- markdown -- mind-map -- mind-mapping -- mindmap -- notes -- outline -- outliner -- writing -- prc -- china -ReleaseNotesUrl: https://mubu.com/doc/d5501245199 -PurchaseUrl: https://mubu.com/about-pro -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Shilihu.Mubu +PackageVersion: 5.5.0 +PackageLocale: en-US +Publisher: mubu.com +PublisherUrl: https://mubu.com/ +PublisherSupportUrl: https://mubu.com/help/ +PrivacyUrl: https://mubu.com/privacyPolicy +Author: Shenzhen Shilihu Technology Co., Ltd. +PackageName: 幕垃 +PackageUrl: https://mubu.com/apps +License: Proprietary +LicenseUrl: https://mubu.com/agreement +Copyright: ©2017-2026 Mubu +CopyrightUrl: https://mubu.com/agreement +ShortDescription: Minimalist outline notes, generate mind maps with one click. +Description: Mubu is a knowledge management tool that combines outliner and mind map to help you take notes, manage tasks, make plans and even organize brainstorms in a more efficient way and with a clearer structure. +Tags: +- article +- docs +- document +- editor +- markdown +- mind-map +- mind-mapping +- mindmap +- notes +- outline +- outliner +- writing +- prc +- china +ReleaseNotesUrl: https://mubu.com/doc/d5501245199 +PurchaseUrl: https://mubu.com/about-pro +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Shilihu/Mubu/5.5.0/Shilihu.Mubu.locale.zh-CN.yaml b/manifests/s/Shilihu/Mubu/5.5.0/Shilihu.Mubu.locale.zh-CN.yaml index 71de3845c999..eb90eeba64a3 100644 --- a/manifests/s/Shilihu/Mubu/5.5.0/Shilihu.Mubu.locale.zh-CN.yaml +++ b/manifests/s/Shilihu/Mubu/5.5.0/Shilihu.Mubu.locale.zh-CN.yaml @@ -1,34 +1,34 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: Shilihu.Mubu -PackageVersion: 5.5.0 -PackageLocale: zh-CN -Publisher: mubu.com -PublisherUrl: https://mubu.com/ -PublisherSupportUrl: https://mubu.com/help/ -PrivacyUrl: https://mubu.com/privacyPolicy -Author: 深圳垂十里湖科技有限公叞 -PackageName: 幕垃 -PackageUrl: https://mubu.com/apps -License: 䞓有蜯件 -LicenseUrl: https://mubu.com/agreement -Copyright: ©2017-2026 幕垃 -CopyrightUrl: https://mubu.com/agreement -ShortDescription: 极简倧纲笔记䞀键生成思绎富囟 -Description: 幕垃是䞀欟结合了倧纲笔记和思绎富囟的倎脑管理工具垮䜠甚曎高效的方匏和曎枅晰的结构来记圕笔记、管理任务、制定计划甚至是组织倎脑风暎。 -Tags: -- markdown -- 写䜜 -- 倧纲 -- 思绎富囟 -- 文档 -- 文皿 -- 文章 -- 笔记 -- 猖蟑噚 -- 脑囟 -ReleaseNotesUrl: https://mubu.com/doc/d5501245199 -PurchaseUrl: https://mubu.com/about-pro -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Shilihu.Mubu +PackageVersion: 5.5.0 +PackageLocale: zh-CN +Publisher: mubu.com +PublisherUrl: https://mubu.com/ +PublisherSupportUrl: https://mubu.com/help/ +PrivacyUrl: https://mubu.com/privacyPolicy +Author: 深圳垂十里湖科技有限公叞 +PackageName: 幕垃 +PackageUrl: https://mubu.com/apps +License: 䞓有蜯件 +LicenseUrl: https://mubu.com/agreement +Copyright: ©2017-2026 幕垃 +CopyrightUrl: https://mubu.com/agreement +ShortDescription: 极简倧纲笔记䞀键生成思绎富囟 +Description: 幕垃是䞀欟结合了倧纲笔记和思绎富囟的倎脑管理工具垮䜠甚曎高效的方匏和曎枅晰的结构来记圕笔记、管理任务、制定计划甚至是组织倎脑风暎。 +Tags: +- markdown +- 写䜜 +- 倧纲 +- 思绎富囟 +- 文档 +- 文皿 +- 文章 +- 笔记 +- 猖蟑噚 +- 脑囟 +ReleaseNotesUrl: https://mubu.com/doc/d5501245199 +PurchaseUrl: https://mubu.com/about-pro +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Shilihu/Mubu/5.5.0/Shilihu.Mubu.yaml b/manifests/s/Shilihu/Mubu/5.5.0/Shilihu.Mubu.yaml index bec51797102a..d34766b0ae2b 100644 --- a/manifests/s/Shilihu/Mubu/5.5.0/Shilihu.Mubu.yaml +++ b/manifests/s/Shilihu/Mubu/5.5.0/Shilihu.Mubu.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: Shilihu.Mubu -PackageVersion: 5.5.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Shilihu.Mubu +PackageVersion: 5.5.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.installer.yaml b/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.installer.yaml new file mode 100644 index 000000000000..e5cc533516a5 --- /dev/null +++ b/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.installer.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: SmartBear.ReadyAPILoadUIAgent +PackageVersion: 4.0.0 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: -q -Dinstall4j.suppressUnattendedReboot=true + SilentWithProgress: -q -splash "" -Dinstall4j.suppressUnattendedReboot=true + InstallLocation: -dir "" + Log: -Dinstall4j.log="" +UpgradeBehavior: install +ProductCode: 9095-5466-5721-4690 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.eviware.com/ready-api/4.0.0/LoadUIAgent-x64-4.0.0.exe + InstallerSha256: 031ABBA0757545023829568044DC85D70ECDF2E621605FAF1A25FF961297D1DA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.locale.en-US.yaml b/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.locale.en-US.yaml new file mode 100644 index 000000000000..082064e8349c --- /dev/null +++ b/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: SmartBear.ReadyAPILoadUIAgent +PackageVersion: 4.0.0 +PackageLocale: en-US +Publisher: SmartBear Software +PublisherUrl: https://smartbear.com/ +PublisherSupportUrl: https://support.smartbear.com/ +PrivacyUrl: https://smartbear.com/privacy/ +Author: SmartBear Software Inc. +PackageName: ReadyAPI LoadUI Agent +PackageUrl: https://support.smartbear.com/readyapi/docs/en/performance-tests/distributed-load-testing/load-test-agents.html +License: Proprietary +LicenseUrl: https://smartbear.com/terms-of-use/ +Copyright: Copyright (C) 2004-2026 smartbear.com +CopyrightUrl: https://smartbear.com/terms-of-use/ +ShortDescription: Run distributed load tests on any number of Agents +Tags: +- readyapi +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.locale.zh-CN.yaml b/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.locale.zh-CN.yaml new file mode 100644 index 000000000000..ac16f345be09 --- /dev/null +++ b/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.locale.zh-CN.yaml @@ -0,0 +1,9 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: SmartBear.ReadyAPILoadUIAgent +PackageVersion: 4.0.0 +PackageLocale: zh-CN +ShortDescription: 圚任意数量的代理䞊运行分垃匏莟蜜测试 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.yaml b/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.yaml new file mode 100644 index 000000000000..33c40f4f5c56 --- /dev/null +++ b/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: SmartBear.ReadyAPILoadUIAgent +PackageVersion: 4.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/SoftPerfect/NetWorx/26.5/SoftPerfect.NetWorx.installer.yaml b/manifests/s/SoftPerfect/NetWorx/26.5/SoftPerfect.NetWorx.installer.yaml index 37d69ab9e978..576f3ba2ace0 100644 --- a/manifests/s/SoftPerfect/NetWorx/26.5/SoftPerfect.NetWorx.installer.yaml +++ b/manifests/s/SoftPerfect/NetWorx/26.5/SoftPerfect.NetWorx.installer.yaml @@ -10,6 +10,6 @@ ReleaseDate: 2026-05-07 Installers: - Architecture: x64 InstallerUrl: https://www.softperfect.com/download/files/networx_setup.exe - InstallerSha256: F036584F2C7A940558AF833238065AB80F58C90A66F7398D7C31BFB64692842C + InstallerSha256: 31BC5D103F091CEDB58A60643C1F55703135D3F7D6070374D20E816170FC35CB ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/s/StackExchange/DNSControl/4.37.0/StackExchange.DNSControl.installer.yaml b/manifests/s/StackExchange/DNSControl/4.37.0/StackExchange.DNSControl.installer.yaml new file mode 100644 index 000000000000..b79e1a70bf1a --- /dev/null +++ b/manifests/s/StackExchange/DNSControl/4.37.0/StackExchange.DNSControl.installer.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: StackExchange.DNSControl +PackageVersion: 4.37.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: dnscontrol.exe +Commands: +- dnscontrol +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/DNSControl/dnscontrol/releases/download/v4.37.0/dnscontrol_4.37.0_windows_amd64.zip + InstallerSha256: 3F326D28F86E0AA34741D1C33D23EECA2BDCF2476E2707045220A27078D14034 +- Architecture: arm64 + InstallerUrl: https://github.com/DNSControl/dnscontrol/releases/download/v4.37.0/dnscontrol_4.37.0_windows_arm64.zip + InstallerSha256: 1C825245AA88E445C86EA6145D9B4B53B7D0BF6F772128B2D59C4AA1C4E39A1B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/StackExchange/DNSControl/4.37.0/StackExchange.DNSControl.locale.en-US.yaml b/manifests/s/StackExchange/DNSControl/4.37.0/StackExchange.DNSControl.locale.en-US.yaml new file mode 100644 index 000000000000..254cda04344a --- /dev/null +++ b/manifests/s/StackExchange/DNSControl/4.37.0/StackExchange.DNSControl.locale.en-US.yaml @@ -0,0 +1,114 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: StackExchange.DNSControl +PackageVersion: 4.37.0 +PackageLocale: en-US +Publisher: Stack Exchange, Inc. +PublisherUrl: https://stackoverflow.com/ +PublisherSupportUrl: https://github.com/StackExchange/dnscontrol/issues +PrivacyUrl: https://stackoverflow.com/legal/privacy-policy +Author: Stack Exchange, Inc. +PackageName: DNSControl +PackageUrl: https://dnscontrol.org/ +License: MIT +LicenseUrl: https://github.com/StackExchange/dnscontrol/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Stack Overflow +ShortDescription: Infrastructure as code for DNS! +Description: DNSControl is an opinionated platform for seamlessly managing your DNS configuration across any number of DNS hosts, both in the cloud or in your own infrastructure. It manages all of the domains for the Stack Overflow network, and can do the same for you! +Moniker: dnscontrol +Tags: +- dns +ReleaseNotes: |- + Greetings DNS fans! + It's been a while since the last release. Thank you for your patience. We have some exciting news! + DNSControl has gone independent! The GitHub repos have been transfers to an independent GitHub org appropriately named DNSControl. We thank Stack Overflow for their past support and a special thanks to the SO employees (CP and RJ especially) involved in the negotiations and the technical work to complete the transfers that followed. + - Due to the change, our CI/CD pipeline required many updates. The goal of this release is to fix those issues without introducing any new features. See https://github.com/DNSControl/dnscontrol/issues/4227 for details. It also includes some bug fixes and new features that had been merged but not yet released prior to the separation. + - Once we're confident the new system works, we'll start merging the PRs that have been accumulating since May. + Special thanks to @cafferata and @chicks-net for their help getting this release across the finish line! + Action needed: New names + New org, new names! + Homebrew is now DNSControl/tap/dnscontrol. You'll want to uninstall the old name: + brew uninstall stackexchange/tap/dnscontrol + brew install DNSControl/tap/dnscontrol + There are new URLs for Containers: + - Docker hub: https://hub.docker.com/r/dnscontrol/dnscontrol/ + - GitHub Container Registry: https://github.com/dnscontrol/dnscontrol/pkgs/container/dnscontrol + The official GitHub Action is now: + - https://github.com/DNSControl/dnscontrol-action + - Please update your .github files. + Release highlights: + - Many PRs related to the separation including CICD and documentation fixes. @cafferata took on most of the burden! + - e4702af24985b07fd291f0e0ed70f745027a379b: NEW FEATURE: IGNORE()'d record report now in dnsconfigjs format (#4148) (@tlimoncelli) + - cfa11260f61e0bd08e2913e58446900a3368c61a: BUGFIX: Make OPENPGPKEY records functional. (#4139) (@gucci-on-fleek) + - d6cb9148575411f92f16e1572ef9f811ca0a4a55: BUGFIX: Two global flags can be appreviated to -v, causing confusion (#4141) (@tlimoncelli) + Provider-specific changes: + - 49260f570fe31574435457cb3abf98403e238d26: GCLOUD: Enable support for metadata-driven DNSSEC (#4147) (@miono) + - 342e4d1e5ba9367348847ffcbdadb8788a48b1cf: CLOUDFLAREAPI: Document auto-maintained records, debug mode (#4146) + Thanks to all contributors involved in this release! This is a community project and we couldn't do it without all of your contributions! + Sincerely, + --Tom Limoncelli + Monthly video call! + Everyone is invited to the Monthly DNSControl Community Video Conference Call on the 2nd Tuesday of each month. Join whether you are a new user with questions or an experienced developer that wants to discuss DNSControl internals... or anything in between! Meeting details on + GitHub Discussions. + Changelog + Major features: + - e4702af24985b07fd291f0e0ed70f745027a379b: NEW FEATURE: IGNORE()'d record report now in dnsconfigjs format (#4148) (@tlimoncelli) + Provider-specific changes: + - 49260f570fe31574435457cb3abf98403e238d26: GCLOUD: Enable support for metadata-driven DNSSEC (#4147) (@miono) + - 342e4d1e5ba9367348847ffcbdadb8788a48b1cf: CLOUDFLAREAPI: Document auto-maintained records, debug mode (#4146) (@tlimoncelli) + Documentation: + - 92d4efa3d4b5f00fb731fc9b318b9dbfe8556c44: DOCS: Fixed 404 account URL in namedotcom documentation (#4168) (@cafferata) + - 5ec62101758144f0c2fad8f3b9f2baf9888a8da0: DOCS: Homebrew-tap GitHub fine-grained PAT (#4228) (@cafferata) + - fc6e497a9f1952cc6e15d6cbd91f9e7dcbaf8705: DOCS: Remove Stack Overflow weekly accomplishments from release steps (#4226) (@cafferata) + CI/CD: + - 58966dc9403aa37ca83859f6f69a1bfc146e22cb: BUILD: Fix typo in GoReleaser GHCR image path (#4223) (@cafferata) + - ec4726bf0194dd6260b1c059fec77f01111aeec2: BUILD: Speed up GoReleaser in PR builds with --single-target --skip=before (#4167) (@cafferata) + - 70f410c5f9fa843625b42f6f3a2f014ddbeb5933: Build(deps): Bump alpine from 3.23.3 to 3.23.4 (#4212) (@dependabot[bot]) + - 7ef968281712694b734ec22881fb9ef972cb54d5: Build(deps): Bump docker/login-action from 3 to 4 (#4144) (@dependabot[bot]) + - 28cde9c6b3873e2439792a2fbb282586195db5bc: Build(deps): Bump docker/setup-buildx-action from 3 to 4 (#4143) (@dependabot[bot]) + - 10e244e82214415466f9e4fe202ea40d32384a43: Build(deps): Bump docker/setup-qemu-action from 3 to 4 (#4142) (@dependabot[bot]) + - 5744b1defa51a33ecb091a92a39a4edac1cbe02b: CICD: Automate release prep steps: bin/prepare_release.sh (#4145) (@tlimoncelli) + - d582b8843286821701202f092493ef3e534c20de: CICD: Run integration tests daily/manually instead of with each push (#4150) (@tlimoncelli) + - b4ef11b4b2ebadf9803e7b9e44bbdb7576e70bcd: CICD: pr_integration_tests.yml should only run a smoke test unless fulltest is needed (#4153) (@tlimoncelli) + - 7aa4fb3ffe9f509b1174133622d314344f9c8b9b: cicd(gocov): Upgrade from golang.org/x/exp/slices to slices (#4217) (@TomOnTime) + - 39f5775bccdc158a2e16c44900d3b33bbe318de1: cicd(golangci): Exclude govet false positive (#4215) (@TomOnTime) + Dependencies: + - b2cab1129d012bb99508262461374eaba483005c: CHORE: Update dependencies (#4222) (@TomOnTime) + - 6cb7f44d82c09ff3c7d995c7554801007803062b: CHORE: Update dependencies (#4229) (@TomOnTime) + Other changes and improvements: + - cfa11260f61e0bd08e2913e58446900a3368c61a: BUGFIX: Make OPENPGPKEY records functional. (#4139) (@gucci-on-fleek) + - d6cb9148575411f92f16e1572ef9f811ca0a4a55: BUGFIX: Two global flags can be appreviated to -v, causing confusion (#4141) (@tlimoncelli) + - 3b9fac8354f3fcddf81d619913f9c822c3b1f562: CHORE: fmt github yml files (#4149) (@tlimoncelli) + - f62e69116236425fbb687cd37945446c3d9766f7: Fix .goreleaser.yml (@TomOnTime) + - 2f3c93708d31f5474b10e678f415dc111a8842d6: Fix .linkspector.yml (@TomOnTime) + - 560c67b908cb28dad3d8a734dbe0e9f8e8b2c4a4: Fix README (@TomOnTime) + - b155ae49ac9be9896117e0f55087726fb73f04c5: Fix StackExchange in docs (@TomOnTime) + - c4531b21d21489337aa50c3db3b8a46eb2d759fb: Fix actions (@TomOnTime) + - 80da7b1ec21f3eb8a1e872717f487e93f581974f: Fix badges (@TomOnTime) + - f1d0bdfd55c22a8c4e03ae00349f730661f4ab79: Fix build (@TomOnTime) + - d5722fcc5b23c1eee3e865989a9fbf0a636afce6: Fix code-tricks.md (@TomOnTime) + - 16d0d81d36ee203de1a35e579b5f4b4fd837a57d: Fix dockerhub/ghcr references (@TomOnTime) + - 0c2a0c45923d79cb315e4383836644c5598c487b: Fix github pages (@TomOnTime) + - 2e1ab98466d56e45213331cd18c391ea458d697f: Fix gitlab instructions (@TomOnTime) + - 9dbd55700fa3ac2155d060cc989d6df5004707bc: Fix homebrew (@TomOnTime) + - 323d4e12a48fa728a96d2f479b368156a20463de: Fix imports (@TomOnTime) + - 70b1d6e64edf295a3502a37cc0014f17ccda9c86: Fix issues (@TomOnTime) + - 67a137657396ef50f6d1ed4a1ffbec61b2fa0a84: Fix reference to github source (@TomOnTime) + - 006dc26b1e5d7029cba618fea18439aadeb5dee7: Fix release eng (@TomOnTime) + - 5aece98acf53ce295c562a799adc5701f88fff69: Fix remaining references to https://github.com/StackExchange/dnscontrol (@TomOnTime) + - c0043d997c1e00212dcba95e227742193168a369: Fix starchart (@TomOnTime) + - e02fa902fc11512251d6746fcbdddbfc1faa959b: Fix tom's github and email address (@TomOnTime) + - 1343b231c5005880cc4052897f220d80f11206ae: REFACTOR: Change GetZoneRecords() signature (#4152) (@tlimoncelli) + - 6a9ac66cf20c8e0a0117a20cf0ce1846d5f2ebcf: Remove references to blackbox (@TomOnTime) + - 0f20c4bb6b05b0330a98035e8e46fd4fb157ad97: goimports (@TomOnTime) + Deprecation warnings + [!WARNING] + - REV() will switch from RFC2317 to RFC4183 in v5.0. This is a breaking change. Warnings are output if your configuration is affected. No date has been announced for v5.0. See https://docs.dnscontrol.org/language-reference/top-level-functions/revcompat + - NAMEDOTCOM, OPENSRS and SOFTLAYER need maintainers! These providers have no maintainer. Maintainers respond to PRs and fix bugs in a timely manner, and try to stay on top of protocol changes. +ReleaseNotesUrl: https://github.com/DNSControl/dnscontrol/releases/tag/v4.37.0 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.dnscontrol.org/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/StackExchange/DNSControl/4.37.0/StackExchange.DNSControl.locale.zh-CN.yaml b/manifests/s/StackExchange/DNSControl/4.37.0/StackExchange.DNSControl.locale.zh-CN.yaml new file mode 100644 index 000000000000..53f0efbfa503 --- /dev/null +++ b/manifests/s/StackExchange/DNSControl/4.37.0/StackExchange.DNSControl.locale.zh-CN.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: StackExchange.DNSControl +PackageVersion: 4.37.0 +PackageLocale: zh-CN +Publisher: Stack Exchange, Inc. +PackageName: DNSControl +ShortDescription: DNS 的基础讟斜即代码 +Description: DNSControl 是䞀䞪有䞻见的平台可圚云端或悚自己的基础架构䞭无猝管理任意数量 DNS 䞻机的 DNS 配眮。它既可以管理 Stack Overflow 眑络的所有域名也可以䞺悚提䟛同样的服务 +ReleaseNotesUrl: https://github.com/DNSControl/dnscontrol/releases/tag/v4.37.0 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.dnscontrol.org/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/s/StackExchange/DNSControl/4.37.0/StackExchange.DNSControl.yaml b/manifests/s/StackExchange/DNSControl/4.37.0/StackExchange.DNSControl.yaml new file mode 100644 index 000000000000..1c4dc4d0c199 --- /dev/null +++ b/manifests/s/StackExchange/DNSControl/4.37.0/StackExchange.DNSControl.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: StackExchange.DNSControl +PackageVersion: 4.37.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/StardockSystems/ConnectionExplorer/0.9.5.0/StardockSystems.ConnectionExplorer.installer.yaml b/manifests/s/StardockSystems/ConnectionExplorer/0.9.5.0/StardockSystems.ConnectionExplorer.installer.yaml deleted file mode 100644 index 50f89667246d..000000000000 --- a/manifests/s/StardockSystems/ConnectionExplorer/0.9.5.0/StardockSystems.ConnectionExplorer.installer.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: StardockSystems.ConnectionExplorer -PackageVersion: 0.9.5.0 -InstallerType: exe -InstallerSwitches: - Silent: /s - SilentWithProgress: /s -InstallerSuccessCodes: -- 3010 -Installers: -- Architecture: x64 - InstallerUrl: https://stardock.cachefly.net/software/ConnectionExplorer/v1/ConnectionExplorer_setup.exe - InstallerSha256: 1485418E250ACFC9EEFED8FB47BCD0A1EAF43F8488F47A5BAA06897F44341E2D -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/s/StardockSystems/ConnectionExplorer/0.9.5.0/StardockSystems.ConnectionExplorer.locale.en-US.yaml b/manifests/s/StardockSystems/ConnectionExplorer/0.9.5.0/StardockSystems.ConnectionExplorer.locale.en-US.yaml deleted file mode 100644 index b85970c12a4e..000000000000 --- a/manifests/s/StardockSystems/ConnectionExplorer/0.9.5.0/StardockSystems.ConnectionExplorer.locale.en-US.yaml +++ /dev/null @@ -1,13 +0,0 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: StardockSystems.ConnectionExplorer -PackageVersion: 0.9.5.0 -PackageLocale: en-US -Publisher: Stardock Systems -PackageName: Connection Explorer -License: proprietary -Copyright: Copyright © 2026 Stardock Systems -ShortDescription: Connection Explorer Setup Application -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/s/StardockSystems/ConnectionExplorer/0.9.5.0/StardockSystems.ConnectionExplorer.yaml b/manifests/s/StardockSystems/ConnectionExplorer/0.9.5.0/StardockSystems.ConnectionExplorer.yaml deleted file mode 100644 index c8e77d4fae68..000000000000 --- a/manifests/s/StardockSystems/ConnectionExplorer/0.9.5.0/StardockSystems.ConnectionExplorer.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.10.3.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: StardockSystems.ConnectionExplorer -PackageVersion: 0.9.5.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/s/Streamlink/Streamlink/8.4.0-1/Streamlink.Streamlink.installer.yaml b/manifests/s/Streamlink/Streamlink/8.4.0-1/Streamlink.Streamlink.installer.yaml new file mode 100644 index 000000000000..2e827a2a34b3 --- /dev/null +++ b/manifests/s/Streamlink/Streamlink/8.4.0-1/Streamlink.Streamlink.installer.yaml @@ -0,0 +1,31 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Streamlink.Streamlink +PackageVersion: 8.4.0-1 +InstallerType: nullsoft +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: Streamlink +ReleaseDate: 2026-05-06 +AppsAndFeaturesEntries: +- ProductCode: Streamlink +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Streamlink' +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/streamlink/windows-builds/releases/download/8.4.0-1/streamlink-8.4.0-1-py314-x86_64.exe + InstallerSha256: A25AF2447B265E297953E3F6016AA3983ACB1411BB349E862BC5BE62BDBA7A33 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/streamlink/windows-builds/releases/download/8.4.0-1/streamlink-8.4.0-1-py314-x86_64.exe + InstallerSha256: A25AF2447B265E297953E3F6016AA3983ACB1411BB349E862BC5BE62BDBA7A33 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/Streamlink/Streamlink/8.4.0-1/Streamlink.Streamlink.locale.en-US.yaml b/manifests/s/Streamlink/Streamlink/8.4.0-1/Streamlink.Streamlink.locale.en-US.yaml new file mode 100644 index 000000000000..fb955bd1c635 --- /dev/null +++ b/manifests/s/Streamlink/Streamlink/8.4.0-1/Streamlink.Streamlink.locale.en-US.yaml @@ -0,0 +1,46 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Streamlink.Streamlink +PackageVersion: 8.4.0-1 +PackageLocale: en-US +Publisher: Streamlink +PublisherUrl: https://github.com/streamlink +PublisherSupportUrl: https://github.com/streamlink/streamlink/issues +Author: Streamlink +PackageName: Streamlink +PackageUrl: https://streamlink.github.io/ +License: BSD-2-Clause +LicenseUrl: https://github.com/streamlink/windows-builds/blob/HEAD/LICENSE +Copyright: |- + Copyright (c) 2011-2016, Christopher Rosell + Copyright (c) 2016-2026, Streamlink Team + All rights reserved. +CopyrightUrl: https://github.com/streamlink/streamlink/blob/HEAD/LICENSE +ShortDescription: Streamlink is a CLI utility which pipes video streams from various services into a video player, such as VLC. +Description: |- + Streamlink is a command-line utility which pipes video streams from various services into a video player, such as VLC or mpv. The main purpose of Streamlink is to avoid resource-heavy and unoptimized websites, while still allowing the user to enjoy various streamed content. There is also a Python API available for developers who want access to the stream data. + + This project was forked from Livestreamer, which is no longer maintained. +Tags: +- cli +- livestream +- streaming +- streaming-services +- twitch +- vlc +ReleaseNotes: |- + 📝 Changelog + See the full Streamlink 8.4.0 release changelog here. + - Updated Streamlink to 8.4.0 with important security fixes, updated its dependencies + + ⚙ Instructions + See the README.md for all the details about the installers and portable archives. + Further information can be found in Streamlink's install docs and Command-Line Interface usage guide. + + ❀ Support + If you think that Streamlink is useful and if you want to keep the project alive, then please consider supporting its maintainers by sending a small and optionally recurring tip via the available options. + Your support is very much appreciated, thank you! +ReleaseNotesUrl: https://github.com/streamlink/windows-builds/releases/tag/8.4.0-1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Streamlink/Streamlink/8.4.0-1/Streamlink.Streamlink.yaml b/manifests/s/Streamlink/Streamlink/8.4.0-1/Streamlink.Streamlink.yaml new file mode 100644 index 000000000000..f522003a883b --- /dev/null +++ b/manifests/s/Streamlink/Streamlink/8.4.0-1/Streamlink.Streamlink.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Streamlink.Streamlink +PackageVersion: 8.4.0-1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/sonicboom15/daimon/0.2.8/sonicboom15.daimon.installer.yaml b/manifests/s/sonicboom15/daimon/0.2.8/sonicboom15.daimon.installer.yaml new file mode 100644 index 000000000000..8a42495848f9 --- /dev/null +++ b/manifests/s/sonicboom15/daimon/0.2.8/sonicboom15.daimon.installer.yaml @@ -0,0 +1,17 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: sonicboom15.daimon +PackageVersion: 0.2.8 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: daimon.exe + PortableCommandAlias: daimon +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/sonicboom15/daimon/releases/download/v0.2.8/daimon_0.2.8_windows_amd64.zip + InstallerSha256: 080BE07322107BE77715532E831AB53812930CEB82284CADB5867B76DD67EAE0 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/sonicboom15/daimon/0.2.8/sonicboom15.daimon.locale.en-US.yaml b/manifests/s/sonicboom15/daimon/0.2.8/sonicboom15.daimon.locale.en-US.yaml new file mode 100644 index 000000000000..465478955a7c --- /dev/null +++ b/manifests/s/sonicboom15/daimon/0.2.8/sonicboom15.daimon.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: sonicboom15.daimon +PackageVersion: 0.2.8 +PackageLocale: en-US +Publisher: sonicboom15 +PublisherUrl: https://github.com/sonicboom15 +PublisherSupportUrl: https://github.com/sonicboom15/daimon/issues +PackageName: daimon +PackageUrl: https://github.com/sonicboom15/daimon +License: Apache-2.0 +LicenseUrl: https://github.com/sonicboom15/daimon/blob/HEAD/LICENSE +ShortDescription: The spirit that runs alongside your AI app. A pluggable sidecar runtime for LLMs, memory, and tools. +ReleaseNotes: |- + Changelog + - e30f3f4: ci: pass WINGET_TOKEN as action input, not env var (@sonicboom15) + Install + macOS / Linux — Homebrew + brew tap sonicboom15/tap + brew install daimon + Windows — Winget + winget install sonicboom15.daimon + Windows — Scoop + scoop bucket add sonicboom15 https://github.com/sonicboom15/scoop-bucket + scoop install daimon + Linux — apt + # Download the .deb from assets below + sudo dpkg -i daimon_0.2.8_linux_amd64.deb + Linux — rpm + # Download the .rpm from assets below + sudo rpm -i daimon_0.2.8_linux_amd64.rpm +ReleaseNotesUrl: https://github.com/sonicboom15/daimon/releases/tag/v0.2.8 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/sonicboom15/daimon/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/sonicboom15/daimon/0.2.8/sonicboom15.daimon.yaml b/manifests/s/sonicboom15/daimon/0.2.8/sonicboom15.daimon.yaml new file mode 100644 index 000000000000..cfdcbcca4333 --- /dev/null +++ b/manifests/s/sonicboom15/daimon/0.2.8/sonicboom15.daimon.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: sonicboom15.daimon +PackageVersion: 0.2.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/t/T-Troll/AlienFXTools/9.5.1/T-Troll.AlienFXTools.installer.yaml b/manifests/t/T-Troll/AlienFXTools/9.5.1/T-Troll.AlienFXTools.installer.yaml new file mode 100644 index 000000000000..44bd79bbb1b7 --- /dev/null +++ b/manifests/t/T-Troll/AlienFXTools/9.5.1/T-Troll.AlienFXTools.installer.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: T-Troll.AlienFXTools +PackageVersion: 9.5.1 +InstallerLocale: en-US +InstallerType: msi +Scope: user +ProductCode: '{909D9874-7FF7-4535-BC9F-3235A3FD550A}' +ReleaseDate: 2026-05-05 +AppsAndFeaturesEntries: +- DisplayVersion: 9.5.100 + ProductCode: '{909D9874-7FF7-4535-BC9F-3235A3FD550A}' + UpgradeCode: '{EFC2D182-AE5E-4585-92D3-0759F77F59AA}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/T-Troll/alienfx-tools/releases/download/9.5.1/alienfx-tools.msi + InstallerSha256: 3DA7D246E4252A6ECBB8505EF221582D0B00B2E9A258B870B40AA7FB8572381B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/T-Troll/AlienFXTools/9.5.1/T-Troll.AlienFXTools.locale.en-US.yaml b/manifests/t/T-Troll/AlienFXTools/9.5.1/T-Troll.AlienFXTools.locale.en-US.yaml new file mode 100644 index 000000000000..742654024558 --- /dev/null +++ b/manifests/t/T-Troll/AlienFXTools/9.5.1/T-Troll.AlienFXTools.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: T-Troll.AlienFXTools +PackageVersion: 9.5.1 +PackageLocale: en-US +Publisher: T-Troll +PublisherUrl: https://github.com/T-Troll +PublisherSupportUrl: https://discord.gg/XU6UJbN9J5 +Author: T-Troll +PackageName: AlienFX Tools +PackageUrl: https://github.com/T-Troll/alienfx-tools +License: MIT +LicenseUrl: https://github.com/T-Troll/alienfx-tools/blob/HEAD/LICENSE +ShortDescription: Alienware systems lights, fans, and power control tools and apps +Description: AWCC alternative in 500kb. You can control your system lights (including hardware and software effects such as system parameters monitoring, ambient lights, sound haptic), fans, temperatures, power settings, and a lot more. +Moniker: AlienFX-Tools +Tags: +- alienfx +- alienfx-usb-controller +- alienware +- alienware-computer +- alienware-fans +- cli +- cplusplus +- fan-control +- gui +- light-control +- lighting-effects +- power-control +- windows-10 +ReleaseNotes: |- + Important! If you are using tools for the first time, please read the Beginner's guide and AlienFX-GUI readme to configure its concept and operation principle. + Fan-SDK_V1.zip has binaries built against older fan control versions; use it only in case you know what you're doing (or have Aurora R7), Check the readme file inside the archive first to configure it to work! + Changes in this release: + AlienFX-GUI, AlienFan-GUI: + - Tray tooltip reworked: + - It now shows fan RPM percent instead of bare RPMs (a more compact view for longer descriptions). + - Bug fixed: The tool crashed for a very long fan list (e.g., a desktop system with a lot of fans). + AlienFX-GUI: + - Bug fixed: The tool crashed if the first profile was active and removed using the "Profiles" tab's profile remove function. + - Bug fixed: The tool crashed at start if an active profile was not found (e.g., after the situation described above). In this case, a new profile will be created (and can be deleted later at the "Profiles" tab). +ReleaseNotesUrl: https://github.com/T-Troll/alienfx-tools/releases/tag/9.5.1 +Documentations: +- DocumentLabel: AlienFX Control Application (CLI) + DocumentUrl: https://github.com/T-Troll/alienfx-tools/blob/master/Doc/alienfx-cli.md +- DocumentLabel: AlienFX Control application + DocumentUrl: https://github.com/T-Troll/alienfx-tools/blob/master/Doc/alienfx-gui.md +- DocumentLabel: AlienFX Monitor + DocumentUrl: https://github.com/T-Troll/alienfx-tools/blob/master/Doc/alienfx-mon.md +- DocumentLabel: AlienFan Control + DocumentUrl: https://github.com/T-Troll/alienfx-tools/blob/master/Doc/alienfan-gui.md +- DocumentLabel: AlienFan Control (CLI) + DocumentUrl: https://github.com/T-Troll/alienfx-tools/blob/master/Doc/alienfan-cli.md +- DocumentLabel: Beginner's guide + DocumentUrl: https://github.com/T-Troll/alienfx-tools/wiki/How-to-start-(Beginner's-guide) +- DocumentLabel: LightFX emulator + DocumentUrl: https://github.com/T-Troll/alienfx-tools/blob/master/Doc/LightFX.md +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/T-Troll/AlienFXTools/9.5.1/T-Troll.AlienFXTools.yaml b/manifests/t/T-Troll/AlienFXTools/9.5.1/T-Troll.AlienFXTools.yaml new file mode 100644 index 000000000000..0898c285a937 --- /dev/null +++ b/manifests/t/T-Troll/AlienFXTools/9.5.1/T-Troll.AlienFXTools.yaml @@ -0,0 +1,8 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: T-Troll.AlienFXTools +PackageVersion: 9.5.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/t/TandemHealth/Tandem/MSI/26.03.10/TandemHealth.Tandem.MSI.locale.no.yaml b/manifests/t/TandemHealth/Tandem/MSI/26.03.10/TandemHealth.Tandem.MSI.locale.nb-NO.yaml similarity index 91% rename from manifests/t/TandemHealth/Tandem/MSI/26.03.10/TandemHealth.Tandem.MSI.locale.no.yaml rename to manifests/t/TandemHealth/Tandem/MSI/26.03.10/TandemHealth.Tandem.MSI.locale.nb-NO.yaml index deff482ca8c1..1ec1311ea11b 100644 --- a/manifests/t/TandemHealth/Tandem/MSI/26.03.10/TandemHealth.Tandem.MSI.locale.no.yaml +++ b/manifests/t/TandemHealth/Tandem/MSI/26.03.10/TandemHealth.Tandem.MSI.locale.nb-NO.yaml @@ -1,9 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem.MSI PackageVersion: 26.03.10 -PackageLocale: "no" +PackageLocale: nb-NO PublisherUrl: https://tandemhealth.ai/no/ PrivacyUrl: https://tandemhealth.ai/no/juridisk/personvern PackageUrl: https://tandemhealth.ai/no/produkt/nedlastinger diff --git a/manifests/t/TorProject/TorBrowser/15.0.12/TorProject.TorBrowser.installer.yaml b/manifests/t/TorProject/TorBrowser/15.0.12/TorProject.TorBrowser.installer.yaml new file mode 100644 index 000000000000..c789cf35d3e1 --- /dev/null +++ b/manifests/t/TorProject/TorBrowser/15.0.12/TorProject.TorBrowser.installer.yaml @@ -0,0 +1,28 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: TorProject.TorBrowser +PackageVersion: 15.0.12 +InstallerType: nullsoft +Scope: user +InstallModes: +- silent +UpgradeBehavior: install +Protocols: +- http +- https +FileExtensions: +- htm +- html +ReleaseDate: 2026-05-07 +InstallationMetadata: + DefaultInstallLocation: Desktop\Tor Browser +Installers: +- Architecture: x86 + InstallerUrl: https://archive.torproject.org/tor-package-archive/torbrowser/15.0.12/tor-browser-windows-i686-portable-15.0.12.exe + InstallerSha256: D82AC01E3BF5193EFB7AAA0BEB50621CD314628237F70DE5ED03A31B6641BC8B +- Architecture: x64 + InstallerUrl: https://archive.torproject.org/tor-package-archive/torbrowser/15.0.12/tor-browser-windows-x86_64-portable-15.0.12.exe + InstallerSha256: 856D7192969115523C1E93391FC3389D612B31CF01E155284FD8BF6F0E783CDB +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/TorProject/TorBrowser/15.0.12/TorProject.TorBrowser.locale.en-US.yaml b/manifests/t/TorProject/TorBrowser/15.0.12/TorProject.TorBrowser.locale.en-US.yaml new file mode 100644 index 000000000000..784c3a7cac60 --- /dev/null +++ b/manifests/t/TorProject/TorBrowser/15.0.12/TorProject.TorBrowser.locale.en-US.yaml @@ -0,0 +1,52 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: TorProject.TorBrowser +PackageVersion: 15.0.12 +PackageLocale: en-US +Publisher: Tor Project +PublisherUrl: https://www.torproject.org/ +PublisherSupportUrl: https://support.torproject.org/ +Author: Tor Project +PackageName: Tor Browser +PackageUrl: https://www.torproject.org/ +License: MPL-2.0 +LicenseUrl: https://support.torproject.org/about/distribute-tor/ +ShortDescription: Protect yourself against tracking, surveillance, and censorship. +Description: The Tor software protects you by bouncing your communications around a distributed network of relays run by volunteers all around the world, it prevents somebody watching your Internet connection from learning what sites you visit, it prevents the sites you visit from learning your physical location, and it lets you access sites which are blocked. +Moniker: tor-browser +Tags: +- anonymity +- browser +- cross-platform +- foss +- gecko +- network +- open-source +- privacy +- relay +- security +- tor +- web-browser +ReleaseNotes: |- + Changelog + All Platforms + - Updated tor to 0.4.9.7 + - Bug tor-browser#44940: Rebase Tor Browser stable onto 140.10.2esr + Windows + macOS + Linux + - Updated Firefox to 140.10.2esr + - Bug tor-browser#44746: Funding the Commons Implementation (Desktop) + Android + - Updated GeckoView to 140.10.2esr + - Bug tor-browser#44747: Funding the Commons Implementation (Android) + Build System + All Platforms + - Bug tor-browser-build#41781: Fix clean section in rbm.local.conf.example +ReleaseNotesUrl: https://blog.torproject.org/new-release-tor-browser-15012 +Documentations: +- DocumentLabel: Glossary + DocumentUrl: https://support.torproject.org/glossary/ +- DocumentLabel: User Manual + DocumentUrl: https://tb-manual.torproject.org/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/TorProject/TorBrowser/15.0.12/TorProject.TorBrowser.yaml b/manifests/t/TorProject/TorBrowser/15.0.12/TorProject.TorBrowser.yaml new file mode 100644 index 000000000000..523308900a3a --- /dev/null +++ b/manifests/t/TorProject/TorBrowser/15.0.12/TorProject.TorBrowser.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: TorProject.TorBrowser +PackageVersion: 15.0.12 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/t/TrackerSoftware/PDF-XChangeStandard/10.8.5.410/TrackerSoftware.PDF-XChangeStandard.installer.yaml b/manifests/t/TrackerSoftware/PDF-XChangeStandard/10.8.5.410/TrackerSoftware.PDF-XChangeStandard.installer.yaml new file mode 100644 index 000000000000..a7b51cf141d5 --- /dev/null +++ b/manifests/t/TrackerSoftware/PDF-XChangeStandard/10.8.5.410/TrackerSoftware.PDF-XChangeStandard.installer.yaml @@ -0,0 +1,43 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: TrackerSoftware.PDF-XChangeStandard +PackageVersion: 10.8.5.410 +InstallerLocale: en-US +InstallerType: wix +Scope: machine +UpgradeBehavior: install +ReleaseDate: 2026-01-15 +Installers: +- Architecture: x86 + InstallerUrl: https://www.pdf-xchange.com/StandardV10.x86.msi + InstallerSha256: BDE9BEA5516340838ACC5C13A22E11CB420D2B6041D0062F0C939363ABA0CCD9 + ProductCode: '{4FE73D30-AF23-4DEB-A6D1-AD4A941E1B33}' + AppsAndFeaturesEntries: + - Publisher: PDF-XChange Co Ltd. + ProductCode: '{8C46FCFD-4366-4542-9435-3DB13C2FA234}' + UpgradeCode: '{B0A987BC-5E91-4930-9437-ABFFA517DBE1}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%/Tracker Software' +- Architecture: x64 + InstallerUrl: https://www.pdf-xchange.com/StandardV10.x64.msi + InstallerSha256: 5AB09A7778FE2DBA14616251B47C1666A5A2A8E3C8EE69D768042EF4C50376B6 + ProductCode: '{F0D3D6F6-22CB-4BC4-97B7-9CA6FC9EFEAD}' + AppsAndFeaturesEntries: + - Publisher: PDF-XChange Co Ltd. + ProductCode: '{6AD14CCA-A680-4181-A925-C1CC1FB100FE}' + UpgradeCode: '{CA231CAC-3C44-45AD-BB95-0F6288945DF6}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/Tracker Software' +- Architecture: arm64 + InstallerUrl: https://www.pdf-xchange.com/StandardV10.ARM64.msi + InstallerSha256: A93708A71C0DB5FD28B5163C7B32FCA69FED84F32C4D7414D34AEA5AD674DF9C + ProductCode: '{C722DB23-C6CE-4EAF-B0E6-65DD20F1F879}' + AppsAndFeaturesEntries: + - Publisher: PDF-XChange Co Ltd. + ProductCode: '{8A8E7888-2E33-463D-BCFC-A2B0EE885B4F}' + UpgradeCode: '{B0A987BC-5E91-4930-9437-ABFFA517DBE1}' + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/Tracker Software' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/TrackerSoftware/PDF-XChangeStandard/10.8.5.410/TrackerSoftware.PDF-XChangeStandard.locale.en-US.yaml b/manifests/t/TrackerSoftware/PDF-XChangeStandard/10.8.5.410/TrackerSoftware.PDF-XChangeStandard.locale.en-US.yaml new file mode 100644 index 000000000000..3741f62a1a07 --- /dev/null +++ b/manifests/t/TrackerSoftware/PDF-XChangeStandard/10.8.5.410/TrackerSoftware.PDF-XChangeStandard.locale.en-US.yaml @@ -0,0 +1,17 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: TrackerSoftware.PDF-XChangeStandard +PackageVersion: 10.8.5.410 +PackageLocale: en-US +Publisher: Tracker Software Products (Canada) Ltd. +PublisherUrl: https://www.tracker-software.com/ +PublisherSupportUrl: https://www.tracker-software.com/support +PrivacyUrl: https://www.tracker-software.com/privacy-policy +PackageName: PDF-XChange Standard +PackageUrl: https://www.tracker-software.com/product/pdf-xchange-standard +License: Proprietary +Copyright: (c) 1997-2022 Tracker Software Products +ShortDescription: This feature-rich virtual printer allows you to print-to-PDF to create fully compatible, text-searchable PDF files. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/TrackerSoftware/PDF-XChangeStandard/10.8.5.410/TrackerSoftware.PDF-XChangeStandard.yaml b/manifests/t/TrackerSoftware/PDF-XChangeStandard/10.8.5.410/TrackerSoftware.PDF-XChangeStandard.yaml new file mode 100644 index 000000000000..80f39f09fc5c --- /dev/null +++ b/manifests/t/TrackerSoftware/PDF-XChangeStandard/10.8.5.410/TrackerSoftware.PDF-XChangeStandard.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: TrackerSoftware.PDF-XChangeStandard +PackageVersion: 10.8.5.410 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tutanota/Tutanota/348.260506.0/Tutanota.Tutanota.installer.yaml b/manifests/t/Tutanota/Tutanota/348.260506.0/Tutanota.Tutanota.installer.yaml new file mode 100644 index 000000000000..c9c42cb7d4a3 --- /dev/null +++ b/manifests/t/Tutanota/Tutanota/348.260506.0/Tutanota.Tutanota.installer.yaml @@ -0,0 +1,27 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Tutanota.Tutanota +PackageVersion: 348.260506.0 +InstallerType: nullsoft +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: 450699d2-1c81-5ee5-aec6-08dddb7af9d7 +ReleaseDate: 2026-05-07 +AppsAndFeaturesEntries: +- DisplayName: Tuta Mail 348.260506.0 + ProductCode: 450699d2-1c81-5ee5-aec6-08dddb7af9d7 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/tutao/tutanota/releases/download/tutanota-desktop-release-348.260506.0/tutanota-desktop-win.exe + InstallerSha256: 6A0B4B4E3D13959E24B732AE358993D8CF8FFA3B09735086DEE6804058843972 +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/tutao/tutanota/releases/download/tutanota-desktop-release-348.260506.0/tutanota-desktop-win.exe + InstallerSha256: 6A0B4B4E3D13959E24B732AE358993D8CF8FFA3B09735086DEE6804058843972 + ElevationRequirement: elevatesSelf +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tutanota/Tutanota/348.260506.0/Tutanota.Tutanota.locale.en-US.yaml b/manifests/t/Tutanota/Tutanota/348.260506.0/Tutanota.Tutanota.locale.en-US.yaml new file mode 100644 index 000000000000..47d2825a2708 --- /dev/null +++ b/manifests/t/Tutanota/Tutanota/348.260506.0/Tutanota.Tutanota.locale.en-US.yaml @@ -0,0 +1,79 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Tutanota.Tutanota +PackageVersion: 348.260506.0 +PackageLocale: en-US +Publisher: Tutao GmbH +PublisherUrl: https://tuta.com/ +PublisherSupportUrl: https://github.com/tutao/tutanota/issues +Author: Tutao GmbH +PackageName: Tutanota Desktop +PackageUrl: https://github.com/tutao/tutanota +License: GPL-3.0 +LicenseUrl: https://github.com/tutao/tutanota/blob/HEAD/LICENSE.txt +Copyright: Copyright © 2022 Tutao GmbH +ShortDescription: Tutanota is an email client with a strong focus on security and privacy that lets you encrypt emails on all your devices. +Description: |- + Tutanota is the worlds most secure email service, easy to use and private by design. + With end-to-end encryption and 2FA, your emails have never been more secure. + The built-in encryption guarantees that your mailbox belongs to you. + Nobody can decrypt or read your data. +Moniker: tutanota +Tags: +- calendar +- email +- email-client +- encryption +- end-to-end-encryption +- privacy +- private +- secure +ReleaseNotes: |- + What's new + - Change mark unread behavior to only mark the latest mail in the current list when list is set to group by conversation #9545 + - Add "Reapply inbox rules" action to Settings > Email > Inbox rules #10461 + - Enforcing password change should apply to new users #10458 + - Allow navigating to Settings > Email > Undo send using Quick Actions #10492 + - Improvements to similar contact name comparison #10497 + - Ignore extra whitespace when comparing contacts for merging #10497 + - Too much empty space in the MailViewerHeader when the sender name isn't set #9547 + - Always pass id encoding when comparing ids of entities #10746 + - Update Request Size Limit Map #10523 + - Update Electron to v42.0.0 + + Bugfixes + - Incorrect counters caused by counter fixup while client is still syncing #10761 + - Index quick extend action does nothing on Free Accounts #10700 + - Search URL is not updated when viewing different mails in the list #10674 + - Cannot set offline range date more than 20 years from settings #10673 + - Uncaught Illegal key length error when entering incorrect Recovery Key #10602 + - Inbox rule priority not respected when "Never send it to spam" is unchecked #10598 + - Drafted email will not delete #10522 + - No contact found when viewing a contact list entry if the contact's email address has uppercase characters #10499 + - Invalid SpellCheckerDictionaryDownloadURL when updateUrl isn't set #10490 + - Spellchecker doesn't work on first launch until spellcheck language is changed #10487 + - ProgrammingError when loading mailDetailsBlob immediately after sending a draft #10476 + - Be able to properly undo deleted inline image #10468 + - Check for email count text is not correct #10467 + - [windows] EPERM, Permission denied error when setting Default mail handler #10435 + - Mac client update fails when the client is ran from a read-only volume #10185 + - Unset repository url error during custom desktop release #10465 + + Milestone + https://github.com/tutao/tutanota/milestone/422?closed=1 + + Asset Checksums (SHA256) + tutanota-desktop-linux.AppImage: + 4b3842d9917ad127d7ba0a5be11187576ea3b5746aaaece7cef82bfe1f225327 + tutanota-desktop-win.exe: + 6a0b4b4e3d13959e24b732ae358993d8cf8ffa3b09735086dee6804058843972 + tutanota-desktop-mac.dmg: + 240f49ee8bc9b00e80454b8e8645c8cb65146d2d851646766bc97eed4c003ea8 +ReleaseNotesUrl: https://github.com/tutao/tutanota/releases/tag/tutanota-desktop-release-348.260506.0 +PurchaseUrl: https://tutanota.com/pricing +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://tutanota.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tutanota/Tutanota/348.260506.0/Tutanota.Tutanota.yaml b/manifests/t/Tutanota/Tutanota/348.260506.0/Tutanota.Tutanota.yaml new file mode 100644 index 000000000000..9c9f02de69c2 --- /dev/null +++ b/manifests/t/Tutanota/Tutanota/348.260506.0/Tutanota.Tutanota.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Tutanota.Tutanota +PackageVersion: 348.260506.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/t/t8y2/DBX/0.4.3/t8y2.DBX.installer.yaml b/manifests/t/t8y2/DBX/0.4.3/t8y2.DBX.installer.yaml new file mode 100644 index 000000000000..572190b13741 --- /dev/null +++ b/manifests/t/t8y2/DBX/0.4.3/t8y2.DBX.installer.yaml @@ -0,0 +1,26 @@ +# Created with WinGet Tracker using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: t8y2.DBX +PackageVersion: 0.4.3 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: DBX +ReleaseDate: 2026-05-07 +AppsAndFeaturesEntries: +- Publisher: dbx + ProductCode: DBX +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\DBX' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/t8y2/dbx/releases/download/v0.4.3/DBX_0.4.3_x64-setup.exe + InstallerSha256: 32489B6AED9FB86DF8923BD7C513E6A5F85841F01CCE38FDB2D4204DC9D6E82C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/t8y2/DBX/0.4.3/t8y2.DBX.locale.en-US.yaml b/manifests/t/t8y2/DBX/0.4.3/t8y2.DBX.locale.en-US.yaml new file mode 100644 index 000000000000..1e754c824c69 --- /dev/null +++ b/manifests/t/t8y2/DBX/0.4.3/t8y2.DBX.locale.en-US.yaml @@ -0,0 +1,111 @@ +# Created with WinGet Tracker using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: t8y2.DBX +PackageVersion: 0.4.3 +PackageLocale: en-US +Publisher: t8y2 +PublisherUrl: https://github.com/t8y2 +PublisherSupportUrl: https://github.com/t8y2/dbx/issues +Author: t8y2 +PackageName: DBX +PackageUrl: https://github.com/t8y2/dbx +License: AGPL-3.0 +LicenseUrl: https://github.com/t8y2/dbx/blob/HEAD/LICENSE +ShortDescription: 15MBlightweight, cross-platform database client. Supports MySQL, PostgreSQL, SQLite, Redis, MongoDB, DuckDB, ClickHouse, SQL Server and more. +Tags: +- clickhouse +- database +- database-client +- database-management +- duckdb +- gui +- mongodb +- mysql +- postgresql +- redis +- rust +- sql-server +- sqlite +- tauri +- vue +ReleaseNotes: |- + 新功胜 + - 结果集数据猖蟑 — 圓查询䞺单衚䞔包含䞻键时可以圚查询结果集䞭双击单元栌盎接修改数据修改以事务圢匏提亀或回滚 (contributed by @rarnu) + - 讟眮默讀数据库 — 支持圚数据库树和顶郚选择区域讟眮/取消默讀数据库新建查询时䌘先䜿甚默讀数据库 (contributed by @Bacon2994) + - Elasticsearch REST 查询 — SQL 猖蟑噚支持对 Elasticsearch 执行 REST 风栌查询 + - SQL 猖蟑噚 Ctrl+点击 — 圚 SQL 猖蟑噚䞭按䜏 CtrlMac 䞺 Cmd点击衚名查看建衚 DDL点击列名查看列信息 (contributed by @rarnu) + - 蟟梊数据库支持 — 新增 DM蟟梊数据库 ODBC 连接支持 + - GaussDB 原生驱劚 — GaussDB/openGauss 从 ODBC 切换䞺原生 Rust 驱劚连接曎皳定、无需额倖安装 ODBC 驱劚 + - 䟧栏衚管理菜单 — 䟧栏衚/视囟右键菜单新增截断、删陀、倍制名称等管理操䜜 + - 数据迁移 Upsert 暡匏 — 数据迁移支持 Upsert 暡匏遇到䞻键冲突时自劚曎新而非报错 + - 䟧栏暡糊搜玢 — 衚和 Schema 筛选支持暡糊搜玢 + - AI 助手 Markdown 枲染 — AI 助手回倍内容支持 Markdown 栌匏枲染 + 改进 + - BigInt 粟床保持 — 超出 JavaScript 安党敎数范囎的 BigInt 倌䞍再䞢倱粟床 + - 曎新䜓验䌘化 — 曎新对话框圚䞋蜜和安装期闎锁定release notes 以 Markdown 栌匏枲染 + - 事务执行可靠性 — 修倍事务内倚条语句可胜圚䞍同连接䞊执行的问题BEGIN 倱莥时盎接报错而非静默降级 + 修倍 + - macOS 应甚无法打匀 — 修倍 macOS 版本安装后无法启劚的问题正确打包 ODBC 劚态库 + - PostgreSQL 补党匂垞 — 修倍 PostgreSQL 自劚补党倱莥后富臎所有后续补党郜䞍可甚的问题 + - SQL Server Unicode — 修倍 SQL Server i16 列元数据倄理和 Unicode 字笊䞲猺少 N'' 前猀的问题 + - 分页排序䞢倱 — 修倍翻页后排序顺序被重眮的问题 + - CSV 富出䞭文 — CSV 富出添加 UTF-8 BOM修倍 Excel 打匀䞭文乱码 + - 查询错误提瀺 — 查询错误改䞺匹窗提瀺䞍再䜜䞺衚栌行星瀺 + - Oracle 连接修倍 — 修倍 Oracle bit vector buffer 溢出问题 + - GaussDB 连接迁移 — 旧版 GaussDB/openGauss 连接自劚迁移到原生驱劚 + - Oracle/蟟梊 Schema 过滀 — 过滀 Oracle 和蟟梊的系统 Schema䟧栏只星瀺甚户 Schema + 䞋蜜安装 + 系统芁求 + ────────┬──────────────────────────────┬─────────────────────────────────── + 操䜜系统│最䜎版本 │架构 + ────────┌──────────────────────────────┌─────────────────────────────────── + Windows │Windows 10 或曎高版本 │x64 + ────────┌──────────────────────────────┌─────────────────────────────────── + macOS │macOS 12 (Monterey) 或曎高版本│Intel (x64) / Apple Silicon (arm64) + ────────┌──────────────────────────────┌─────────────────────────────────── + Linux │见䞋衚 │x64 + ────────┮──────────────────────────────┮─────────────────────────────────── + Windows + ───────────────────────┬──────────────────────────────── + 文件 │诎明 + ───────────────────────┌──────────────────────────────── + DBX_0.4.3_x64-setup.exe│掚荐 — NSIS 安装包支持自劚曎新 + ───────────────────────┌──────────────────────────────── + DBX_0.4.3_x64_en-US.msi│MSI 安装包适甚于䌁䞚郚眲 + ───────────────────────┮──────────────────────────────── + Scoop: + scoop bucket add dbx https://github.com/t8y2/scoop-bucket + scoop install dbx + 曎新 + scoop update dbx + macOS + ─────────────────────┬───────────────────────────────────────── + 文件 │诎明 + ─────────────────────┌───────────────────────────────────────── + DBX_0.4.3_aarch64.dmg│掚荐 — 适甚于 Apple Silicon (M1/M2/M3/M4) + ─────────────────────┌───────────────────────────────────────── + DBX_0.4.3_x64.dmg │适甚于 Intel Mac + ─────────────────────┮───────────────────────────────────────── + Homebrew: + brew install --cask t8y2/tap/dbx + 曎新 + brew upgrade --cask t8y2/tap/dbx + Linux + ──────────────────────────────────────┬─────────┬───────────────────────────────────────────────────── + 发行版 │掚荐栌匏 │安装方匏 + ──────────────────────────────────────┌─────────┌───────────────────────────────────────────────────── + Ubuntu / Debian / Linux Mint / Pop!_OS│.deb │sudo dpkg -i DBX_*.deb 或 sudo apt install + │ │./DBX_*.deb + ──────────────────────────────────────┌─────────┌───────────────────────────────────────────────────── + Fedora / RHEL / CentOS / Rocky Linux │.rpm │sudo rpm -i DBX-*.rpm 或 sudo dnf install ./DBX-*.rpm + ──────────────────────────────────────┌─────────┌───────────────────────────────────────────────────── + openSUSE │.rpm │sudo zypper install ./DBX-*.rpm + ──────────────────────────────────────┌─────────┌───────────────────────────────────────────────────── + Arch Linux / Manjaro │.AppImage│添加执行权限后运行 + ──────────────────────────────────────┌─────────┌───────────────────────────────────────────────────── + 其他发行版 │.AppImage│chmod +x DBX_*.AppImage && ./DBX_*.AppImage + ──────────────────────────────────────┮─────────┮───────────────────────────────────────────────────── +ReleaseNotesUrl: https://github.com/t8y2/dbx/releases/tag/v0.4.3 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/t8y2/DBX/0.4.3/t8y2.DBX.yaml b/manifests/t/t8y2/DBX/0.4.3/t8y2.DBX.yaml new file mode 100644 index 000000000000..e294d8cc1aac --- /dev/null +++ b/manifests/t/t8y2/DBX/0.4.3/t8y2.DBX.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Tracker using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: t8y2.DBX +PackageVersion: 0.4.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.installer.yaml b/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.installer.yaml deleted file mode 100644 index ad4eaa413fcb..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.4.9 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: VidJuice UniTube_is1 -ReleaseDate: 2026-03-11 -Installers: -- Architecture: x64 - InstallerUrl: https://download.vidjuice.com/unitube.exe?v=7.4.9 - InstallerSha256: 774C80C96C66E435B35E80770D5DD25F2B78EA0E8D9FAB2627EAE84BB11479BE -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.locale.en-US.yaml b/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.locale.en-US.yaml deleted file mode 100644 index 6d0a80b83654..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.4.9 -PackageLocale: en-US -Publisher: Mobee Technology Co., Limited -PublisherUrl: https://www.vidjuice.com/ -PublisherSupportUrl: https://www.vidjuice.com/support/ -PrivacyUrl: https://www.vidjuice.com/privacy-policy/ -PackageName: VidJuice UniTube -PackageUrl: https://www.vidjuice.com/download/ -License: Proprietary -LicenseUrl: https://www.vidjuice.com/terms-of-service/ -Copyright: Copyright © 2026 VidJuice. All rights reserved. -CopyrightUrl: https://www.vidjuice.com/terms-of-service/ -ShortDescription: Download videos and audios from 10,000+ sites across all your devices -Tags: -- audio -- audio-downloader -- download -- downloader -- media -- media-downloader -- video -- video-downloader -ReleaseNotes: 1. Fixed some bugs. -ReleaseNotesUrl: https://www.vidjuice.com/tech-specs/unitube-update-history/ -PurchaseUrl: https://www.vidjuice.com/pricing/unitube-video-downloader/ -Documentations: -- DocumentLabel: User Guide - DocumentUrl: https://www.vidjuice.com/guide/how-to-download-online-videos-with-vidjuice-unitube/ -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.locale.zh-CN.yaml b/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.locale.zh-CN.yaml deleted file mode 100644 index a95e691caf4a..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.locale.zh-CN.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.4.9 -PackageLocale: zh-CN -Publisher: Mobee Technology Co., Limited -PublisherUrl: https://zh-cn.vidjuice.com/ -PublisherSupportUrl: https://zh-cn.vidjuice.com/support/ -PrivacyUrl: https://zh-cn.vidjuice.com/privacy-policy/ -PackageName: VidJuice UniTube -PackageUrl: https://zh-cn.vidjuice.com/download/ -License: 䞓有蜯件 -LicenseUrl: https://zh-cn.vidjuice.com/terms-of-service/ -Copyright: Copyright © 2026 VidJuice. All rights reserved. -CopyrightUrl: https://zh-cn.vidjuice.com/terms-of-service/ -ShortDescription: 圚所有讟倇䞊从 10,000+ 眑站䞋蜜视频和音频 -Tags: -- 䞋蜜 -- 䞋蜜噚 -- 媒䜓 -- 视频 -- 音乐 -- 音频 -ReleaseNotesUrl: https://zh-cn.vidjuice.com/tech-specs/unitube-update-history -PurchaseUrl: https://zh-cn.vidjuice.com/pricing/unitube-video-downloader/ -Documentations: -- DocumentLabel: 甚户指南 - DocumentUrl: https://zh-cn.vidjuice.com/guide/how-to-download-online-videos-with-vidjuice-unitube/ -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.installer.yaml b/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.installer.yaml deleted file mode 100644 index 030e328b74ae..000000000000 --- a/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.5.0 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: VidJuice UniTube_is1 -ReleaseDate: 2026-03-16 -Installers: -- Architecture: x64 - InstallerUrl: https://download.vidjuice.com/unitube.exe?v=7.5.0 - InstallerSha256: E6EC242A6B8289ACC91BAA305EF960C3D0E639FC9519E61A72D7357D29F13DE3 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.locale.en-US.yaml b/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.locale.en-US.yaml deleted file mode 100644 index a08b699307b1..000000000000 --- a/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.5.0 -PackageLocale: en-US -Publisher: Mobee Technology Co., Limited -PublisherUrl: https://www.vidjuice.com/ -PublisherSupportUrl: https://www.vidjuice.com/support/ -PrivacyUrl: https://www.vidjuice.com/privacy-policy/ -PackageName: VidJuice UniTube -PackageUrl: https://www.vidjuice.com/download/ -License: Proprietary -LicenseUrl: https://www.vidjuice.com/terms-of-service/ -Copyright: Copyright © 2026 VidJuice. All rights reserved. -CopyrightUrl: https://www.vidjuice.com/terms-of-service/ -ShortDescription: Download videos and audios from 10,000+ sites across all your devices -Tags: -- audio -- audio-downloader -- download -- downloader -- media -- media-downloader -- video -- video-downloader -ReleaseNotes: 1. Fixed some bugs. -ReleaseNotesUrl: https://www.vidjuice.com/tech-specs/unitube-update-history/ -PurchaseUrl: https://www.vidjuice.com/pricing/unitube-video-downloader/ -Documentations: -- DocumentLabel: User Guide - DocumentUrl: https://www.vidjuice.com/guide/how-to-download-online-videos-with-vidjuice-unitube/ -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.locale.zh-CN.yaml b/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.locale.zh-CN.yaml deleted file mode 100644 index 5415f30dec91..000000000000 --- a/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.locale.zh-CN.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.5.0 -PackageLocale: zh-CN -Publisher: Mobee Technology Co., Limited -PublisherUrl: https://zh-cn.vidjuice.com/ -PublisherSupportUrl: https://zh-cn.vidjuice.com/support/ -PrivacyUrl: https://zh-cn.vidjuice.com/privacy-policy/ -PackageName: VidJuice UniTube -PackageUrl: https://zh-cn.vidjuice.com/download/ -License: 䞓有蜯件 -LicenseUrl: https://zh-cn.vidjuice.com/terms-of-service/ -Copyright: Copyright © 2026 VidJuice. All rights reserved. -CopyrightUrl: https://zh-cn.vidjuice.com/terms-of-service/ -ShortDescription: 圚所有讟倇䞊从 10,000+ 眑站䞋蜜视频和音频 -Tags: -- 䞋蜜 -- 䞋蜜噚 -- 媒䜓 -- 视频 -- 音乐 -- 音频 -ReleaseNotesUrl: https://zh-cn.vidjuice.com/tech-specs/unitube-update-history -PurchaseUrl: https://zh-cn.vidjuice.com/pricing/unitube-video-downloader/ -Documentations: -- DocumentLabel: 甚户指南 - DocumentUrl: https://zh-cn.vidjuice.com/guide/how-to-download-online-videos-with-vidjuice-unitube/ -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.installer.yaml b/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.installer.yaml deleted file mode 100644 index 7b6d9487219f..000000000000 --- a/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.5.1 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: VidJuice UniTube_is1 -ReleaseDate: 2026-03-21 -Installers: -- Architecture: x64 - InstallerUrl: https://download.vidjuice.com/unitube.exe?v=7.5.1 - InstallerSha256: 870991984D8378E2C040A0968A4EF07E46F4D38112B1BCE2DFAC7CD298E20750 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.locale.en-US.yaml b/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.locale.en-US.yaml deleted file mode 100644 index 58a2af3b5a8d..000000000000 --- a/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.5.1 -PackageLocale: en-US -Publisher: Mobee Technology Co., Limited -PublisherUrl: https://www.vidjuice.com/ -PublisherSupportUrl: https://www.vidjuice.com/support/ -PrivacyUrl: https://www.vidjuice.com/privacy-policy/ -PackageName: VidJuice UniTube -PackageUrl: https://www.vidjuice.com/download/ -License: Proprietary -LicenseUrl: https://www.vidjuice.com/terms-of-service/ -Copyright: Copyright © 2026 VidJuice. All rights reserved. -CopyrightUrl: https://www.vidjuice.com/terms-of-service/ -ShortDescription: Download videos and audios from 10,000+ sites across all your devices -Tags: -- audio -- audio-downloader -- download -- downloader -- media -- media-downloader -- video -- video-downloader -ReleaseNotes: 1. Fixed some bugs. -ReleaseNotesUrl: https://www.vidjuice.com/tech-specs/unitube-update-history/ -PurchaseUrl: https://www.vidjuice.com/pricing/unitube-video-downloader/ -Documentations: -- DocumentLabel: User Guide - DocumentUrl: https://www.vidjuice.com/guide/how-to-download-online-videos-with-vidjuice-unitube/ -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.locale.zh-CN.yaml b/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.locale.zh-CN.yaml deleted file mode 100644 index a318650cd65f..000000000000 --- a/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.locale.zh-CN.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.5.1 -PackageLocale: zh-CN -Publisher: Mobee Technology Co., Limited -PublisherUrl: https://zh-cn.vidjuice.com/ -PublisherSupportUrl: https://zh-cn.vidjuice.com/support/ -PrivacyUrl: https://zh-cn.vidjuice.com/privacy-policy/ -PackageName: VidJuice UniTube -PackageUrl: https://zh-cn.vidjuice.com/download/ -License: 䞓有蜯件 -LicenseUrl: https://zh-cn.vidjuice.com/terms-of-service/ -Copyright: Copyright © 2026 VidJuice. All rights reserved. -CopyrightUrl: https://zh-cn.vidjuice.com/terms-of-service/ -ShortDescription: 圚所有讟倇䞊从 10,000+ 眑站䞋蜜视频和音频 -Tags: -- 䞋蜜 -- 䞋蜜噚 -- 媒䜓 -- 视频 -- 音乐 -- 音频 -ReleaseNotesUrl: https://zh-cn.vidjuice.com/tech-specs/unitube-update-history -PurchaseUrl: https://zh-cn.vidjuice.com/pricing/unitube-video-downloader/ -Documentations: -- DocumentLabel: 甚户指南 - DocumentUrl: https://zh-cn.vidjuice.com/guide/how-to-download-online-videos-with-vidjuice-unitube/ -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/v/VirtualDesktop/Streamer/1.34.18/VirtualDesktop.Streamer.installer.yaml b/manifests/v/VirtualDesktop/Streamer/1.34.18/VirtualDesktop.Streamer.installer.yaml new file mode 100644 index 000000000000..f5396c1a4a3a --- /dev/null +++ b/manifests/v/VirtualDesktop/Streamer/1.34.18/VirtualDesktop.Streamer.installer.yaml @@ -0,0 +1,16 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: VirtualDesktop.Streamer +PackageVersion: 1.34.18 +InstallerType: exe +Scope: machine +InstallerSwitches: + Silent: /q +ReleaseDate: 2026-02-12 +Installers: +- Architecture: x64 + InstallerUrl: https://files.vrdesktop.net/files/VirtualDesktop.Streamer.Setup.exe + InstallerSha256: B2559F75F4EEA69902AD86A43A4944521DDFFC0DA55E817701A8386CA618B8C8 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/v/VirtualDesktop/Streamer/1.34.18/VirtualDesktop.Streamer.locale.en-US.yaml b/manifests/v/VirtualDesktop/Streamer/1.34.18/VirtualDesktop.Streamer.locale.en-US.yaml new file mode 100644 index 000000000000..23d778095746 --- /dev/null +++ b/manifests/v/VirtualDesktop/Streamer/1.34.18/VirtualDesktop.Streamer.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: VirtualDesktop.Streamer +PackageVersion: 1.34.18 +PackageLocale: en-US +Publisher: Virtual Desktop, Inc. +PackageName: Virtual Desktop Streamer +License: Proprietary +Copyright: Copyright (C) 2022 Virtual Desktop, Inc. +ShortDescription: Watch movies, browse the web or play games on a giant virtual screen. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/v/VirtualDesktop/Streamer/1.34.18/VirtualDesktop.Streamer.yaml b/manifests/v/VirtualDesktop/Streamer/1.34.18/VirtualDesktop.Streamer.yaml new file mode 100644 index 000000000000..d95252795e92 --- /dev/null +++ b/manifests/v/VirtualDesktop/Streamer/1.34.18/VirtualDesktop.Streamer.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: VirtualDesktop.Streamer +PackageVersion: 1.34.18 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.installer.yaml b/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.installer.yaml new file mode 100644 index 000000000000..a1d2b4567b25 --- /dev/null +++ b/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.installer.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: WireGuard.WireGuard +PackageVersion: "1.1" +InstallerType: wix +Scope: machine +InstallerSwitches: + Custom: DO_NOT_LAUNCH=1 +UpgradeBehavior: install +FileExtensions: +- conf +- zip +Installers: +- Architecture: x86 + InstallerUrl: https://download.wireguard.com/windows-client/wireguard-x86-1.1.msi + InstallerSha256: 71811698D544607E6BD94BBFFF14E936B186DA53B2934FF74D736DAA74105481 + ProductCode: '{B90DE94F-FC4B-4FEF-ACDF-BD2BA2A545FB}' + AppsAndFeaturesEntries: + - UpgradeCode: '{62754A0A-FEE9-4412-B739-E8DA2E7C9405}' +- Architecture: x64 + InstallerUrl: https://download.wireguard.com/windows-client/wireguard-amd64-1.1.msi + InstallerSha256: 6DAA5D37A9E2950DFB8C48B95AB8E562CB2BAD1C785D020F38F97BEA4C6A5566 + ProductCode: '{99A54A94-4BE0-4374-B3A6-F504E826DDF8}' + AppsAndFeaturesEntries: + - UpgradeCode: '{5E5A1DA5-BA36-404D-92EC-41050D1C799C}' +- Architecture: arm64 + InstallerUrl: https://download.wireguard.com/windows-client/wireguard-arm64-1.1.msi + InstallerSha256: A2A67FBB2DB199525C35CE79EA6DD9031B116BA46561F2B993FB858668440131 + ProductCode: '{C55D0D9D-310E-4767-8382-BC4BBBBE6FDB}' + AppsAndFeaturesEntries: + - UpgradeCode: '{7FF76099-8940-4D3E-99B9-50A3B3CA1EE9}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.locale.en-US.yaml b/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.locale.en-US.yaml new file mode 100644 index 000000000000..41f689c0cb06 --- /dev/null +++ b/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.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.12.0.schema.json + +PackageIdentifier: WireGuard.WireGuard +PackageVersion: "1.1" +PackageLocale: en-US +Publisher: WireGuard LLC +PublisherUrl: https://www.wireguard.com/ +PublisherSupportUrl: https://www.wireguard.com/#about-the-project +Author: WireGuard LLC +PackageName: WireGuard +PackageUrl: https://www.wireguard.com/install/ +License: MIT +LicenseUrl: https://git.zx2c4.com/wireguard-windows/tree/COPYING +Copyright: Copyright © 2015-2026 Jason A. Donenfeld. All Rights Reserved. +ShortDescription: Fast, Modern, Secure VPN Tunnel +Description: WireGuard® is an extremely simple yet fast and modern VPN that utilizes state-of-the-art cryptography. It aims to be faster, simpler, leaner, and more useful than IPsec, while avoiding the massive headache. It intends to be considerably more performant than OpenVPN. WireGuard is designed as a general purpose VPN for running on embedded interfaces and super computers alike, fit for many different circumstances. Initially released for the Linux kernel, it is now cross-platform (Windows, macOS, BSD, iOS, Android) and widely deployable. It is currently under heavy development, but already it might be regarded as the most secure, easiest to use, and simplest VPN solution in the industry. +Moniker: wireguard +Tags: +- network +- secure +- security +- tunnel +- vpn +Documentations: +- DocumentLabel: Quick Start + DocumentUrl: https://www.wireguard.com/quickstart/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.locale.zh-CN.yaml b/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.locale.zh-CN.yaml new file mode 100644 index 000000000000..c9f3b5d16249 --- /dev/null +++ b/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.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.12.0.schema.json + +PackageIdentifier: WireGuard.WireGuard +PackageVersion: "1.1" +PackageLocale: zh-CN +ShortDescription: 快速、现代、安党的 VPN 隧道 +Description: WireGuard® 是䞀欟极其简单华快速现代的 VPN采甚尖端加密技术。它旚圚比 IPsec 曎快、曎简掁、曎蜻量䞔曎实甚同时规避了倍杂性问题性胜也星著䌘于 OpenVPN。䜜䞺通甚型 VPNWireGuard 既胜运行于嵌入匏讟倇也可郚眲于超级计算机适应倚种应甚场景。最初䞺 Linux 内栞匀发现已支持跚平台Windows、macOS、BSD、iOS、Android广泛郚眲。尜管仍圚积极匀发䞭它已被䞚界视䞺圓前最安党、最易甚䞔最简掁的 VPN 解决方案。 +Tags: +- vpn +- 安党 +- 眑络 +- 隧道 +Documentations: +- DocumentLabel: 快速入闚 + DocumentUrl: https://www.wireguard.com/quickstart/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.yaml b/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.yaml new file mode 100644 index 000000000000..28af2b2ee534 --- /dev/null +++ b/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: WireGuard.WireGuard +PackageVersion: "1.1" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.installer.yaml b/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.installer.yaml new file mode 100644 index 000000000000..1943dde17f81 --- /dev/null +++ b/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.installer.yaml @@ -0,0 +1,33 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: WorksMobile.NAVERWORKS +PackageVersion: 4.5.1.7 +InstallerLocale: ko-KR +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: nullsoft +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://download.worksmobile.com/k/wminst/r/naverworks/deploy_pcmsgapp_win32_exe + InstallerSha256: 032B9C9161398689D202FF573EC90FAB421F0E5652D618123D551E73DBC5B779 + AppsAndFeaturesEntries: + - DisplayName: WORKS + Publisher: Works Mobile Corp. + ProductCode: NaverWorks +- Architecture: x64 + InstallerUrl: https://download.worksmobile.com/k/wminst/r/naverworks/deploy_pcmsgapp_win64_exe + InstallerSha256: 032B9C9161398689D202FF573EC90FAB421F0E5652D618123D551E73DBC5B779 + AppsAndFeaturesEntries: + - DisplayName: WORKS + Publisher: Works Mobile Corp. + ProductCode: NaverWorks +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.locale.en-US.yaml b/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.locale.en-US.yaml new file mode 100644 index 000000000000..486e52634488 --- /dev/null +++ b/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: WorksMobile.NAVERWORKS +PackageVersion: 4.5.1.7 +PackageLocale: en-US +Publisher: Works Mobile Corp. +PublisherUrl: https://naver.worksmobile.com +PublisherSupportUrl: https://guide.worksmobile.com/kr/ +PrivacyUrl: https://www.ncloud.com/policy/infou/infou +Author: Works Mobile Corp. +PackageName: WORKS +PackageUrl: https://naver.worksmobile.com +License: Proprietary +LicenseUrl: https://www.ncloud.com/policy/terms/works +Copyright: © Works Mobile Corp. +CopyrightUrl: https://www.ncloud.com/policy/terms/works +ShortDescription: NAVER WORKS is business communication tool developed by Naver Cloud Corp. (Naver Cloud Platform, NCP) and Works Mobile Corp. +Description: NAVER WORKS is business communication tool developed by Naver Cloud Corp. (Naver Cloud Platform, NCP) and Works Mobile Corp. +Moniker: naverworks +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.locale.ko-KR.yaml b/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.locale.ko-KR.yaml new file mode 100644 index 000000000000..ec1fcc3afb02 --- /dev/null +++ b/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.locale.ko-KR.yaml @@ -0,0 +1,21 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: WorksMobile.NAVERWORKS +PackageVersion: 4.5.1.7 +PackageLocale: ko-KR +Publisher: Works Mobile Corp. +PublisherUrl: https://naver.worksmobile.com +PublisherSupportUrl: https://guide.worksmobile.com/kr/ +PrivacyUrl: https://www.ncloud.com/policy/infou/infou +Author: Works Mobile Corp. +PackageName: NAVER WORKS +PackageUrl: https://naver.worksmobile.com +License: Proprietary +LicenseUrl: https://www.ncloud.com/policy/terms/works +Copyright: © Works Mobile Corp. +CopyrightUrl: https://www.ncloud.com/policy/terms/works +ShortDescription: 넀읎버 웍슀는 넀읎버 큎띌우드 (Naver Cloud Platform, NCP)와 웍슀 몚바음읎 개발 한 비슈니슀 컀뮀니쌀읎션 도구입니닀. +Description: 넀읎버 웍슀는 넀읎버 큎띌우드 (Naver Cloud Platform, NCP)와 웍슀 몚바음읎 개발 한 비슈니슀 컀뮀니쌀읎션 도구입니닀. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.yaml b/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.yaml new file mode 100644 index 000000000000..5a935866d4bb --- /dev/null +++ b/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: WorksMobile.NAVERWORKS +PackageVersion: 4.5.1.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/w/wasmCloud/wash/2.1.0/wasmCloud.wash.installer.yaml b/manifests/w/wasmCloud/wash/2.1.0/wasmCloud.wash.installer.yaml new file mode 100644 index 000000000000..790475629990 --- /dev/null +++ b/manifests/w/wasmCloud/wash/2.1.0/wasmCloud.wash.installer.yaml @@ -0,0 +1,17 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: wasmCloud.wash +PackageVersion: 2.1.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: wash.exe + PortableCommandAlias: wash +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/wasmCloud/wasmCloud/releases/download/v2.1.0/wash-x86_64-pc-windows-msvc.zip + InstallerSha256: DA07FC3D17BA554584C54066F3F3633D066A445C4CF9C0980C3A6B15F45A09D4 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/w/wasmCloud/wash/2.1.0/wasmCloud.wash.locale.en-US.yaml b/manifests/w/wasmCloud/wash/2.1.0/wasmCloud.wash.locale.en-US.yaml new file mode 100644 index 000000000000..e658cfed4430 --- /dev/null +++ b/manifests/w/wasmCloud/wash/2.1.0/wasmCloud.wash.locale.en-US.yaml @@ -0,0 +1,85 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: wasmCloud.wash +PackageVersion: 2.1.0 +PackageLocale: en-US +Publisher: wasmCloud +PublisherUrl: https://wasmcloud.com/ +PublisherSupportUrl: https://github.com/wasmCloud/wasmCloud/issues +Author: The wasmCloud Authors +PackageName: wash +PackageUrl: https://wasmcloud.com/docs/wash/ +License: Apache-2.0 +LicenseUrl: https://github.com/wasmCloud/wasmCloud/blob/HEAD/LICENSE +Copyright: Copyright The wasmCloud Authors +ShortDescription: The wasmCloud Shell (wash) - a CLI for building, running, and managing WebAssembly components and wasmCloud applications. +Description: |- + wash is the wasmCloud Shell, a single CLI tool for working with WebAssembly components and wasmCloud. + - Build WebAssembly components from multiple languages with `wash build` + - Iterate quickly with a live dev loop using `wash dev` + - Run a local wasmCloud host and deploy applications + - Manage plugins and WIT interfaces +Moniker: wash +Tags: +- cli +- component +- rust +- wasi +- wasm +- wasmcloud +- webassembly +- wit +ReleaseNotes: |- + What's Changed + - fix(http): return typed RouteError with accurate HTTP status codes by @Aditya1404Sal in #5082 + - chore: rm passing wash prefix to brew by @dphilla in #5083 + - feat: Expand DevRouter and DynamicRouter Tests by @Aditya1404Sal in #5064 + - chore: upgrade async-nats to 0.47 by @ricochet in #5087 + - [bugfix] Add port name to hello-world by @jfleitz in #5090 + - Fix workload readiness for NATS subs by @ricochet in #5086 + - docs(templates): reorganize Rust templates and add HTTP handler set by @ericgregory in #5084 + - ci: re-enable dependabot for main and release-1.9.x by @officialasishkumar in #5035 + - chore(deps): bump the all-docker group across 2 directories with 1 update by @dependabot[bot] in #5091 + - chore: upgrade to go 1.26 by @ricochet in #5095 + - chore(deps): bump the all-github-actions group across 6 directories with 24 updates by @dependabot[bot] in #5093 + - chore(deps): bump the all-go group across 2 directories with 12 updates by @dependabot[bot] in #5092 + - fix(test): wait on the host by @ricochet in #5100 + - fix(operator): gate WorkloadDeployment Ready on replica availability by @ricochet in #5101 + - chore(security): bump wasmtime, drop rustls-pemfile, add cargo audit by @ricochet in #5102 + - ci: automated release train by @ricochet in #5098 + - ci: disable 1.9 dependabot by @ricochet in #5097 + - fix: remove canary-v2 now that canary exists by @ricochet in #5104 + - chore(deps): bump the all-go group across 1 directory with 3 updates by @dependabot[bot] in #5103 + - ci: fix sed for release-train by @ricochet in #5105 + - backout publishing wash-runtime by @ricochet in #5106 + - release: v2.0.6 by @automation-wasmcloud in #5107 + - harden release train CI by @ricochet in #5108 + - pass sha input for release-tag by @ricochet in #5109 + - chore(deps): bump the all-github-actions group across 2 directories with 1 update by @dependabot[bot] in #5112 + - chore(deps): bump go.wasmcloud.dev/runtime-operator/v2 from 2.0.5 to 2.0.6 in /runtime-gateway in the all-go group across 1 directory by @dependabot[bot] in #5111 + - ci: make package-manager publishing best-effort by @ricochet in #5110 + - fix(dev): friendly url by @ricochet in #5114 + - ci: OpenSSF Scorecard workflow by @ricochet in #5115 + - ci: fix scorecard publish and harden workflows by @ricochet in #5118 + - Revert "ci: fix scorecard publish and harden workflows" by @ricochet in #5119 + - ci: lint workflows and actions by @ricochet in #5120 + - ci(zizmor): grant write for security upload by @ricochet in #5123 + - release: v2.0.7 by @automation-wasmcloud in #5124 + - feat: support plugins in services by @MendyBerger in #5122 + - Add micro benchmarks for http invocation by @ricochet in #5063 + - docs(governance): MAINTAINERS.md with ci-maintainers by @ricochet in #5130 + - ci: hardening with zizmor by @ricochet in #5129 + - ci: docker images without the v by @ricochet in #5131 + - Add Host location and namespace deployment support by @jfleitz in #5128 + - ci: add codeql workflow by @ricochet in #5133 + - release: v2.1.0 by @automation-wasmcloud in #5134 + New Contributors + - @officialasishkumar made their first contribution in #5035 + - @MendyBerger made their first contribution in #5122 + Full Changelog: v2.0.5...v2.1.0 +ReleaseNotesUrl: https://github.com/wasmCloud/wasmCloud/releases/tag/v2.1.0 +Documentations: +- DocumentUrl: https://wasmcloud.com/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/wasmCloud/wash/2.1.0/wasmCloud.wash.yaml b/manifests/w/wasmCloud/wash/2.1.0/wasmCloud.wash.yaml new file mode 100644 index 000000000000..aa6121e81c32 --- /dev/null +++ b/manifests/w/wasmCloud/wash/2.1.0/wasmCloud.wash.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: wasmCloud.wash +PackageVersion: 2.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/z/ZedIndustries/Zed/Preview/1.2.1-pre/ZedIndustries.Zed.Preview.installer.yaml b/manifests/z/ZedIndustries/Zed/Preview/1.2.1-pre/ZedIndustries.Zed.Preview.installer.yaml new file mode 100644 index 000000000000..954a4c7235c7 --- /dev/null +++ b/manifests/z/ZedIndustries/Zed/Preview/1.2.1-pre/ZedIndustries.Zed.Preview.installer.yaml @@ -0,0 +1,29 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ZedIndustries.Zed.Preview +PackageVersion: 1.2.1-pre +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{F70E4811-D0E2-4D88-AC99-D63752799F95}_is1' +ReleaseDate: 2026-05-06 +AppsAndFeaturesEntries: +- DisplayVersion: 1.2.1 + ProductCode: '{F70E4811-D0E2-4D88-AC99-D63752799F95}_is1' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Zed Preview' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/zed-industries/zed/releases/download/v1.2.1-pre/Zed-x86_64.exe + InstallerSha256: 73876D56DE59B3BEA946FA34A67F5BE27377E464E8917D4B01F599C0CE62F7F2 +- Architecture: arm64 + InstallerUrl: https://github.com/zed-industries/zed/releases/download/v1.2.1-pre/Zed-aarch64.exe + InstallerSha256: 3ABDF279CF6F729FD5C52D913295DF6EF042254F0CAA90F3282CFFC2136BFA0D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/z/ZedIndustries/Zed/Preview/1.2.1-pre/ZedIndustries.Zed.Preview.locale.en-US.yaml b/manifests/z/ZedIndustries/Zed/Preview/1.2.1-pre/ZedIndustries.Zed.Preview.locale.en-US.yaml new file mode 100644 index 000000000000..a8fad62c1dc4 --- /dev/null +++ b/manifests/z/ZedIndustries/Zed/Preview/1.2.1-pre/ZedIndustries.Zed.Preview.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ZedIndustries.Zed.Preview +PackageVersion: 1.2.1-pre +PackageLocale: en-US +Publisher: Zed Industries +PublisherUrl: https://zed.dev/ +PublisherSupportUrl: https://zed.dev/support +PrivacyUrl: https://zed.dev/privacy-policy +Author: The Zed Industries Authors +PackageName: Zed Preview +PackageUrl: https://zed.dev/windows +License: GPL-3.0 +LicenseUrl: https://github.com/zed-industries/zed/blob/main/LICENSE-GPL +Copyright: Copyright 2022 - 2025 Zed Industries, Inc. +ShortDescription: High-performance, multiplayer code editor from the creators of Atom and Tree-sitter. +Description: |- + Zed is a next-generation code editor designed for high-performance collaboration with humans and AI. + + - Written from scratch in Rust to efficiently leverage multiple CPU cores and your GPU. + - Integrate upcoming LLMs into your workflow to generate, transform, and analyze code. + - Chat with teammates, write notes together, and share your screen and project. All included. + - Zed now speaks WSL. You can open a Linux distro as a first-class “remote” target, edit projects that live inside it. + - All of Zed’s AI features, including edit predictions and ACP-powered agents, are fully supported on Windows. + - All Zed extensions now work seamlessly on Windows; no special steps, no caveats. + - To run on almost all Windows versions, including VMs, we created a new rendering backend based on DirectX 11. +Tags: +- code-editor +- developer-tools +- editor +- text-editor +ReleaseNotes: |- + - Fixed ACP agents failing to launch on Windows with "The system cannot find the file specified" (#55946) + - Fixed inotify event queue overflows on Linux (#55941) +ReleaseNotesUrl: https://github.com/zed-industries/zed/releases/tag/v1.2.1-pre +PurchaseUrl: https://zed.dev/pricing +Documentations: +- DocumentLabel: Community Links + DocumentUrl: https://zed.dev/community-links +- DocumentLabel: Getting Started + DocumentUrl: https://zed.dev/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/z/ZedIndustries/Zed/Preview/1.2.1-pre/ZedIndustries.Zed.Preview.yaml b/manifests/z/ZedIndustries/Zed/Preview/1.2.1-pre/ZedIndustries.Zed.Preview.yaml new file mode 100644 index 000000000000..01669f7e0c12 --- /dev/null +++ b/manifests/z/ZedIndustries/Zed/Preview/1.2.1-pre/ZedIndustries.Zed.Preview.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: ZedIndustries.Zed.Preview +PackageVersion: 1.2.1-pre +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0