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.4.1/Actifile.ActifileAgent.installer.yaml b/manifests/a/Actifile/ActifileAgent/3.0.4.1/Actifile.ActifileAgent.installer.yaml new file mode 100644 index 000000000000..f6722b97376f --- /dev/null +++ b/manifests/a/Actifile/ActifileAgent/3.0.4.1/Actifile.ActifileAgent.installer.yaml @@ -0,0 +1,14 @@ +# Automatically updated by the winget bot at 2026/May/05 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Actifile.ActifileAgent +PackageVersion: 3.0.4.1 +Installers: +- Architecture: x86 + InstallerType: msi + InstallerUrl: https://app.actifile.com/Home/DownloadAgentMsi + InstallerSha256: 8110AD65B284D0C53D612404EE382DA01737E668D6A01EF10927C26B79D24091 + ProductCode: "{0D13F554-E542-4590-AACB-AA60CAE75A64}" + Scope: machine +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/Actifile/ActifileAgent/3.0.4.1/Actifile.ActifileAgent.locale.en-US.yaml b/manifests/a/Actifile/ActifileAgent/3.0.4.1/Actifile.ActifileAgent.locale.en-US.yaml new file mode 100644 index 000000000000..be4d4c57fab5 --- /dev/null +++ b/manifests/a/Actifile/ActifileAgent/3.0.4.1/Actifile.ActifileAgent.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Automatically updated by the winget bot at 2026/May/05 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Actifile.ActifileAgent +PackageVersion: 3.0.4.1 +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.12.0 diff --git a/manifests/a/Actifile/ActifileAgent/3.0.4.1/Actifile.ActifileAgent.yaml b/manifests/a/Actifile/ActifileAgent/3.0.4.1/Actifile.ActifileAgent.yaml new file mode 100644 index 000000000000..15690e77524c --- /dev/null +++ b/manifests/a/Actifile/ActifileAgent/3.0.4.1/Actifile.ActifileAgent.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2026/May/05 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Actifile.ActifileAgent +PackageVersion: 3.0.4.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/Akiflow/Akiflow/2.71.6/Akiflow.Akiflow.installer.yaml b/manifests/a/Akiflow/Akiflow/2.71.6/Akiflow.Akiflow.installer.yaml index af6cd7ce4da3..c218f6818739 100644 --- a/manifests/a/Akiflow/Akiflow/2.71.6/Akiflow.Akiflow.installer.yaml +++ b/manifests/a/Akiflow/Akiflow/2.71.6/Akiflow.Akiflow.installer.yaml @@ -1,17 +1,17 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Akiflow.Akiflow -PackageVersion: 2.71.6 -InstallerType: nullsoft -Scope: user -InstallerSwitches: - Upgrade: --updated -ProductCode: fcfd5b65-85a1-59d9-8eb7-a98bf4457cb3 -ReleaseDate: 2026-04-13 -Installers: -- Architecture: x64 - InstallerUrl: https://download.akiflow.com/builds/Akiflow-2.71.6-31677681-x64.exe - InstallerSha256: 5C82EAD5FA1909128A5B99B48641AC09D2291F87384C86B1AB9422F88C51FA85 -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: Akiflow.Akiflow +PackageVersion: 2.71.6 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +ProductCode: fcfd5b65-85a1-59d9-8eb7-a98bf4457cb3 +ReleaseDate: 2026-04-13 +Installers: +- Architecture: x64 + InstallerUrl: https://download.akiflow.com/builds/Akiflow-2.71.6-31677681-x64.exe + InstallerSha256: 103915199E9BAA42A8CC730EF3A55832E993BC7A09176D71A938F2A3987664F9 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/Akiflow/Akiflow/2.71.6/Akiflow.Akiflow.locale.en-US.yaml b/manifests/a/Akiflow/Akiflow/2.71.6/Akiflow.Akiflow.locale.en-US.yaml index a7d9e2843011..8445ac8e3fb0 100644 --- a/manifests/a/Akiflow/Akiflow/2.71.6/Akiflow.Akiflow.locale.en-US.yaml +++ b/manifests/a/Akiflow/Akiflow/2.71.6/Akiflow.Akiflow.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: Akiflow.Akiflow -PackageVersion: 2.71.6 -PackageLocale: en-US -Publisher: Akiflow Inc. -PublisherUrl: https://akiflow.com/ -PrivacyUrl: https://akiflow.com/privacy-policy -Author: Akiflow Inc. -PackageName: Akiflow -PackageUrl: https://akiflow.com/download/ -License: Proprietary -LicenseUrl: https://akiflow.com/terms-of-service -Copyright: Akiflow © 2026 -CopyrightUrl: https://akiflow.com/terms-of-service -ShortDescription: One App for Tasks & Calendars -Tags: -- agenda -- calendar -- checklist -- collaborate -- collaboration -- gtd -- list -- schedule -- task -- to-do -- todo -ReleaseNotesUrl: https://product.akiflow.com/changelog -PurchaseUrl: https://akiflow.com/pricing/ -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: Akiflow.Akiflow +PackageVersion: 2.71.6 +PackageLocale: en-US +Publisher: Akiflow Inc. +PublisherUrl: https://akiflow.com/ +PrivacyUrl: https://akiflow.com/privacy-policy +Author: Akiflow Inc. +PackageName: Akiflow +PackageUrl: https://akiflow.com/download/ +License: Proprietary +LicenseUrl: https://akiflow.com/terms-of-service +Copyright: Akiflow © 2026 +CopyrightUrl: https://akiflow.com/terms-of-service +ShortDescription: One App for Tasks & Calendars +Tags: +- agenda +- calendar +- checklist +- collaborate +- collaboration +- gtd +- list +- schedule +- task +- to-do +- todo +ReleaseNotesUrl: https://product.akiflow.com/changelog +PurchaseUrl: https://akiflow.com/pricing/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Akiflow/Akiflow/2.71.6/Akiflow.Akiflow.locale.zh-CN.yaml b/manifests/a/Akiflow/Akiflow/2.71.6/Akiflow.Akiflow.locale.zh-CN.yaml index 2acf6f86e3f3..0af6772b6885 100644 --- a/manifests/a/Akiflow/Akiflow/2.71.6/Akiflow.Akiflow.locale.zh-CN.yaml +++ b/manifests/a/Akiflow/Akiflow/2.71.6/Akiflow.Akiflow.locale.zh-CN.yaml @@ -1,22 +1,22 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: Akiflow.Akiflow -PackageVersion: 2.71.6 -PackageLocale: zh-CN -License: 专有软件 -ShortDescription: 任务与日历二合一应用 -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: Akiflow.Akiflow +PackageVersion: 2.71.6 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 任务与日历二合一应用 +Tags: +- 任务 +- 列表 +- 待办 +- 待办事项 +- 提醒事项 +- 日历 +- 日程 +- 日程管理 +- 时间管理 +- 清单 +- 议程 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Akiflow/Akiflow/2.71.6/Akiflow.Akiflow.yaml b/manifests/a/Akiflow/Akiflow/2.71.6/Akiflow.Akiflow.yaml index 24af10aeb387..19ee8fbb32cd 100644 --- a/manifests/a/Akiflow/Akiflow/2.71.6/Akiflow.Akiflow.yaml +++ b/manifests/a/Akiflow/Akiflow/2.71.6/Akiflow.Akiflow.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: Akiflow.Akiflow -PackageVersion: 2.71.6 -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: Akiflow.Akiflow +PackageVersion: 2.71.6 +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/AppSolves/TikArcade-Studio/3.0.5/AppSolves.TikArcade-Studio.installer.yaml b/manifests/a/AppSolves/TikArcade-Studio/3.0.5/AppSolves.TikArcade-Studio.installer.yaml new file mode 100644 index 000000000000..b2fc0c1e3dd2 --- /dev/null +++ b/manifests/a/AppSolves/TikArcade-Studio/3.0.5/AppSolves.TikArcade-Studio.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: AppSolves.TikArcade-Studio +PackageVersion: 3.0.5 +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://tikarcade.appsolves.dev/api/v1/releases/download/latest + InstallerSha256: 1BF4E7F078954478526BE57C4B5CB18BD623129B6F92B010B3ADEF83900E794C + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.EdgeWebView2Runtime + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + MinimumVersion: 14.0.0.0 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/AppSolves/TikArcade-Studio/3.0.5/AppSolves.TikArcade-Studio.locale.en-US.yaml b/manifests/a/AppSolves/TikArcade-Studio/3.0.5/AppSolves.TikArcade-Studio.locale.en-US.yaml new file mode 100644 index 000000000000..2b500593ba87 --- /dev/null +++ b/manifests/a/AppSolves/TikArcade-Studio/3.0.5/AppSolves.TikArcade-Studio.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: AppSolves.TikArcade-Studio +PackageVersion: 3.0.5 +PackageLocale: en-US +Publisher: AppSolves +PublisherUrl: https://appsolves.dev +PublisherSupportUrl: https://tikarcade.appsolves.dev/help +PrivacyUrl: https://appsolves.dev/privacy_policy +Author: Kaan Gönüldinc (AppSolves) +PackageName: TikArcade Studio +PackageUrl: https://tikarcade.appsolves.dev +License: Custom +LicenseUrl: https://tikarcade.appsolves.dev/info/license +Copyright: Copyright © 2025 Kaan Gönüldinc. All rights reserved. +CopyrightUrl: https://tikarcade.appsolves.dev/info/license +ShortDescription: Automate your TikTok Live bots easily! +Description: Supercharge your TikTok LIVE! Automate streams, engage viewers with interactive games, grow your presence, and integrate custom bots effortlessly. Download now and take full control of your LIVE experience! +Moniker: tikarcade +Tags: +- tiktok +- livestream +- automation +- game +- interactive +- tiktok-live +- python +- python3 +- rtmp +- streaming +- desktop-app +- bot +- money +ReleaseNotes: Improved performance, minor bug fixes, and additional features. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/PowerBIReportBuilder/15.7.1816.327/Microsoft.PowerBIReportBuilder.yaml b/manifests/a/AppSolves/TikArcade-Studio/3.0.5/AppSolves.TikArcade-Studio.yaml similarity index 71% rename from manifests/m/Microsoft/PowerBIReportBuilder/15.7.1816.327/Microsoft.PowerBIReportBuilder.yaml rename to manifests/a/AppSolves/TikArcade-Studio/3.0.5/AppSolves.TikArcade-Studio.yaml index c134b9ed1809..ac2508b66348 100644 --- a/manifests/m/Microsoft/PowerBIReportBuilder/15.7.1816.327/Microsoft.PowerBIReportBuilder.yaml +++ b/manifests/a/AppSolves/TikArcade-Studio/3.0.5/AppSolves.TikArcade-Studio.yaml @@ -1,8 +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: Microsoft.PowerBIReportBuilder -PackageVersion: 15.7.1816.327 -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: AppSolves.TikArcade-Studio +PackageVersion: 3.0.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 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/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.3.5/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.3.5/VidJuice.UniTube.yaml rename to manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.yaml index 132d7067f0a5..e151cc0347db 100644 --- a/manifests/v/VidJuice/UniTube/7.3.5/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.3.5 +PackageIdentifier: astral-sh.uv +PackageVersion: 0.11.10 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/a/astral-sh/uv/0.11.11/astral-sh.uv.installer.yaml b/manifests/a/astral-sh/uv/0.11.11/astral-sh.uv.installer.yaml new file mode 100644 index 000000000000..b60be554b28d --- /dev/null +++ b/manifests/a/astral-sh/uv/0.11.11/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.11 +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-06 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.11.11/uv-i686-pc-windows-msvc.zip + InstallerSha256: C230FCCBE5737E1A54A2F77FF3116C88FBEE21C9B437323907618931B767410E + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.11.11/uv-x86_64-pc-windows-msvc.zip + InstallerSha256: 2F75A0DB2C3530B6B3C24434DC38137F61FF1F4E5F2D7B4DDC5BCD142CF58B65 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.11.11/uv-aarch64-pc-windows-msvc.zip + InstallerSha256: 3D8F05DE7ED9DE885299565F78832A13E443BE51DE86260F25EDB7CFD0FA05F6 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/astral-sh/uv/0.11.11/astral-sh.uv.locale.en-US.yaml b/manifests/a/astral-sh/uv/0.11.11/astral-sh.uv.locale.en-US.yaml new file mode 100644 index 000000000000..210c529d3d42 --- /dev/null +++ b/manifests/a/astral-sh/uv/0.11.11/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.11 +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-06. + Bug fixes + - Accept legacy ID format from pre-0.11.9 cache entries (#19301) +ReleaseNotesUrl: https://github.com/astral-sh/uv/releases/tag/0.11.11 +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.11/astral-sh.uv.locale.zh-CN.yaml b/manifests/a/astral-sh/uv/0.11.11/astral-sh.uv.locale.zh-CN.yaml new file mode 100644 index 000000000000..2956be2d4cff --- /dev/null +++ b/manifests/a/astral-sh/uv/0.11.11/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.11 +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.11 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.astral.sh/uv/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.3.6/VidJuice.UniTube.yaml b/manifests/a/astral-sh/uv/0.11.11/astral-sh.uv.yaml similarity index 77% rename from manifests/v/VidJuice/UniTube/7.3.6/VidJuice.UniTube.yaml rename to manifests/a/astral-sh/uv/0.11.11/astral-sh.uv.yaml index 86efc6b25e1a..66971df1aeb0 100644 --- a/manifests/v/VidJuice/UniTube/7.3.6/VidJuice.UniTube.yaml +++ b/manifests/a/astral-sh/uv/0.11.11/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.3.6 +PackageIdentifier: astral-sh.uv +PackageVersion: 0.11.11 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.3.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.3.9/VidJuice.UniTube.yaml rename to manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.yaml index 95e100ec2c10..631a3cba5927 100644 --- a/manifests/v/VidJuice/UniTube/7.3.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.3.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.3.7/VidJuice.UniTube.yaml b/manifests/b/badlogic/pi/0.74.0/badlogic.pi.yaml similarity index 77% rename from manifests/v/VidJuice/UniTube/7.3.7/VidJuice.UniTube.yaml rename to manifests/b/badlogic/pi/0.74.0/badlogic.pi.yaml index e7cf19d05d5c..66864cc70f22 100644 --- a/manifests/v/VidJuice/UniTube/7.3.7/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.3.7 +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.12.8/CCPGames.EVEOnline.installer.yaml b/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.installer.yaml similarity index 68% rename from manifests/c/CCPGames/EVEOnline/1.12.8/CCPGames.EVEOnline.installer.yaml rename to manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.installer.yaml index 7095b91e5f61..c8a9c8689cc8 100644 --- a/manifests/c/CCPGames/EVEOnline/1.12.8/CCPGames.EVEOnline.installer.yaml +++ b/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.installer.yaml @@ -1,15 +1,15 @@ -# Automatically updated by the winget bot at 2025/Dec/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: CCPGames.EVEOnline -PackageVersion: 1.12.8 +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: C77733E8BE733741B80F197F3E0F810320E78BDAAAF3458A058105D977FE257D + InstallerSha256: FF6836D579250CB41E959DF6A4EEFAA87E75C021935AB54E0FCCAD6EA08A3D64 ProductCode: "eve-online" ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/c/CCPGames/EVEOnline/1.12.8/CCPGames.EVEOnline.locale.en-US.yaml b/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.locale.en-US.yaml similarity index 82% rename from manifests/c/CCPGames/EVEOnline/1.12.8/CCPGames.EVEOnline.locale.en-US.yaml rename to manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.locale.en-US.yaml index 314849e52cd7..1e9d45c599f1 100644 --- a/manifests/c/CCPGames/EVEOnline/1.12.8/CCPGames.EVEOnline.locale.en-US.yaml +++ b/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Dec/16 +# 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.12.8" +PackageVersion: "1.14.1" PackageLocale: en-US Publisher: "CCP ehf" PackageName: "eve-online" diff --git a/manifests/c/CCPGames/EVEOnline/1.12.8/CCPGames.EVEOnline.yaml b/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.yaml similarity index 69% rename from manifests/c/CCPGames/EVEOnline/1.12.8/CCPGames.EVEOnline.yaml rename to manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.yaml index 3b7ba34bc5c8..ef8f6c6ef35e 100644 --- a/manifests/c/CCPGames/EVEOnline/1.12.8/CCPGames.EVEOnline.yaml +++ b/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Dec/16 +# 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.12.8 +PackageVersion: 1.14.1 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/c/CDESoftware/BLS-2026/38.03.0005/CDESoftware.BLS-2026.installer.yaml b/manifests/c/CDESoftware/BLS-2026/38.03.0005/CDESoftware.BLS-2026.installer.yaml deleted file mode 100644 index be22709f8136..000000000000 --- a/manifests/c/CDESoftware/BLS-2026/38.03.0005/CDESoftware.BLS-2026.installer.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json - -PackageIdentifier: CDESoftware.BLS-2026 -PackageVersion: 38.03.0005 -InstallerType: exe -InstallerSwitches: - Silent: /exenoui /qn /norestart -Installers: -- Architecture: x86 - InstallerUrl: https://static.cdesoftware.com/bls2026/BLS2026INSTALLER.EXE - InstallerSha256: 5fa3529e852c35751c0f9475aa61558ec37cc42d7cfee2e316e28d45970b44bf -ManifestType: installer -ManifestVersion: 1.9.0 \ No newline at end of file diff --git a/manifests/c/CDESoftware/BLS-2026/38.03.0005/CDESoftware.BLS-2026.locale.en-US.yaml b/manifests/c/CDESoftware/BLS-2026/38.03.0005/CDESoftware.BLS-2026.locale.en-US.yaml deleted file mode 100644 index 19103f5d3c57..000000000000 --- a/manifests/c/CDESoftware/BLS-2026/38.03.0005/CDESoftware.BLS-2026.locale.en-US.yaml +++ /dev/null @@ -1,18 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json - -PackageIdentifier: CDESoftware.BLS-2026 -PackageVersion: 38.03.0005 -PackageLocale: en-US -Publisher: CDE Software -PublisherUrl: https://cdesoftware.com - -PublisherSupportUrl: https://support.cdesoftware.com -PrivacyUrl: https://www.cdesoftware.com/privacy-policy/ -PackageName: BLS-2026 -License: Proprietary -Copyright: Copyright (c) 2025 CDE Software -ShortDescription: CDE Software BLS-2026 is a league software management program -PurchaseUrl: https://shop.cdesoftware.com -ManifestType: defaultLocale -ManifestVersion: 1.9.0 \ No newline at end of file diff --git a/manifests/c/CDESoftware/BLS-2026/38.03.0005/CDESoftware.BLS-2026.yaml b/manifests/c/CDESoftware/BLS-2026/38.03.0005/CDESoftware.BLS-2026.yaml deleted file mode 100644 index 50f1570e5595..000000000000 --- a/manifests/c/CDESoftware/BLS-2026/38.03.0005/CDESoftware.BLS-2026.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created using wingetcreate 1.9.4.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json - -PackageIdentifier: CDESoftware.BLS-2026 -PackageVersion: 38.03.0005 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.9.0 \ No newline at end of file diff --git a/manifests/c/Caphyon/PacKit/2.2.0/Caphyon.PacKit.installer.yaml b/manifests/c/Caphyon/PacKit/2.2.0/Caphyon.PacKit.installer.yaml new file mode 100644 index 000000000000..4546e81a77fa --- /dev/null +++ b/manifests/c/Caphyon/PacKit/2.2.0/Caphyon.PacKit.installer.yaml @@ -0,0 +1,19 @@ +# 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: Caphyon.PacKit +PackageVersion: 2.2.0 +InstallerLocale: en-US +InstallerType: msi +InstallerSwitches: + Silent: /quiet /qn + SilentWithProgress: /passive + InstallLocation: APPDIR="" + Log: /log "" +ProductCode: '{7A2C8BAA-EBCA-40AE-A888-84A09D1E2243}' +Installers: +- Architecture: x86 + InstallerUrl: https://www.advancedinstaller.com/tools/packit.msi + InstallerSha256: CED2E61F181E39BEDA591E8D3A9281FD645C3EE8CCCD4DAF0BF24019D3AED726 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/Caphyon/PacKit/2.2.0/Caphyon.PacKit.locale.en-US.yaml b/manifests/c/Caphyon/PacKit/2.2.0/Caphyon.PacKit.locale.en-US.yaml new file mode 100644 index 000000000000..12613d1b043b --- /dev/null +++ b/manifests/c/Caphyon/PacKit/2.2.0/Caphyon.PacKit.locale.en-US.yaml @@ -0,0 +1,14 @@ +# 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: Caphyon.PacKit +PackageVersion: 2.2.0 +PackageLocale: en-US +Publisher: Caphyon +PackageName: PacKit +License: Proprietary +LicenseUrl: https://www.getpackit.com/eula/ +Copyright: Copyright © 2003-2025 Caphyon LTD +ShortDescription: PacKit is a user-centric, Windows-based tool designed for centralized post-packaging configuration and deployment. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/Caphyon/PacKit/2.2.0/Caphyon.PacKit.yaml b/manifests/c/Caphyon/PacKit/2.2.0/Caphyon.PacKit.yaml new file mode 100644 index 000000000000..5faff6843ddf --- /dev/null +++ b/manifests/c/Caphyon/PacKit/2.2.0/Caphyon.PacKit.yaml @@ -0,0 +1,8 @@ +# 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: Caphyon.PacKit +PackageVersion: 2.2.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/Coupang/CoupangPOS/1.10.36/Coupang.CoupangPOS.installer.yaml b/manifests/c/Coupang/CoupangPOS/1.10.36/Coupang.CoupangPOS.installer.yaml new file mode 100644 index 000000000000..e7ce2e4754b8 --- /dev/null +++ b/manifests/c/Coupang/CoupangPOS/1.10.36/Coupang.CoupangPOS.installer.yaml @@ -0,0 +1,15 @@ +# 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: Coupang.CoupangPOS +PackageVersion: 1.10.36 +InstallerType: inno +Dependencies: + WindowsFeatures: + - netfx3 +Installers: +- Architecture: x86 + InstallerUrl: https://pos-api.coupang.com/api/v1/app/download/installer + InstallerSha256: 2B3F3521E0CAB7A74A0A248B4A516E5A8A2A2B54182ACE115CBCAEECA4FA5511 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/Coupang/CoupangPOS/1.10.36/Coupang.CoupangPOS.locale.en-US.yaml b/manifests/c/Coupang/CoupangPOS/1.10.36/Coupang.CoupangPOS.locale.en-US.yaml new file mode 100644 index 000000000000..dfe5b8a6c735 --- /dev/null +++ b/manifests/c/Coupang/CoupangPOS/1.10.36/Coupang.CoupangPOS.locale.en-US.yaml @@ -0,0 +1,17 @@ +# 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: Coupang.CoupangPOS +PackageVersion: 1.10.36 +PackageLocale: en-US +Publisher: Coupang, Inc. +PublisherUrl: https://www.aboutcoupang.com/ +PrivacyUrl: https://privacy.coupang.com/en/land/seller/ +PackageName: CoupangPOS +PackageUrl: https://store.coupangeats.com/ +License: Proprietary +Copyright: (c) COUPANG CORP. ALL RIGHTS RESERVED +ShortDescription: Relay for Coupang Eats Online Order System +Moniker: coupangeats-order +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/Coupang/CoupangPOS/1.10.36/Coupang.CoupangPOS.yaml b/manifests/c/Coupang/CoupangPOS/1.10.36/Coupang.CoupangPOS.yaml new file mode 100644 index 000000000000..411478716c95 --- /dev/null +++ b/manifests/c/Coupang/CoupangPOS/1.10.36/Coupang.CoupangPOS.yaml @@ -0,0 +1,8 @@ +# 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: Coupang.CoupangPOS +PackageVersion: 1.10.36 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/control-theory/gonzo/0.4.0/control-theory.gonzo.installer.yaml b/manifests/c/control-theory/gonzo/0.4.0/control-theory.gonzo.installer.yaml new file mode 100644 index 000000000000..de3cf3402af3 --- /dev/null +++ b/manifests/c/control-theory/gonzo/0.4.0/control-theory.gonzo.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: control-theory.gonzo +PackageVersion: 0.4.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: gonzo.exe + PortableCommandAlias: gonzo +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/control-theory/gonzo/releases/download/v0.4.0/gonzo-0.4.0-windows-amd64.zip + InstallerSha256: E00F6FFDE5AA721FFC03C72ADE4CB1A5817AF15AF940DBBE2BFFF57EC919C48F +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-05-06 diff --git a/manifests/c/control-theory/gonzo/0.4.0/control-theory.gonzo.locale.en-US.yaml b/manifests/c/control-theory/gonzo/0.4.0/control-theory.gonzo.locale.en-US.yaml new file mode 100644 index 000000000000..5d3a85da6552 --- /dev/null +++ b/manifests/c/control-theory/gonzo/0.4.0/control-theory.gonzo.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: control-theory.gonzo +PackageVersion: 0.4.0 +PackageLocale: en-US +Publisher: control-theory +PublisherUrl: https://github.com/control-theory +PublisherSupportUrl: https://github.com/control-theory/gonzo/issues +PackageName: Gonzo +PackageUrl: https://github.com/control-theory/gonzo +License: MIT +ShortDescription: Gonzo! The Go based TUI log analysis tool +Tags: +- ai +- golang +- logs +- ollama +- openai +- opentelemetry +- otel +- otlp +- terminal +- tui +ReleaseNotesUrl: https://github.com/control-theory/gonzo/releases/tag/v0.4.0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/control-theory/gonzo/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/control-theory/gonzo/0.4.0/control-theory.gonzo.yaml b/manifests/c/control-theory/gonzo/0.4.0/control-theory.gonzo.yaml new file mode 100644 index 000000000000..284f0f76affb --- /dev/null +++ b/manifests/c/control-theory/gonzo/0.4.0/control-theory.gonzo.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: control-theory.gonzo +PackageVersion: 0.4.0 +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/DiekoMA/Anilist/0.0.1.0/DiekoMA.Anilist.installer.yaml b/manifests/d/DiekoMA/Anilist/0.0.1.0/DiekoMA.Anilist.installer.yaml new file mode 100644 index 000000000000..58b7fd7752e1 --- /dev/null +++ b/manifests/d/DiekoMA/Anilist/0.0.1.0/DiekoMA.Anilist.installer.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: DiekoMA.Anilist +PackageVersion: 0.0.1.0 +InstallerType: inno +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/DiekoMA/AnilistExt/releases/download/AnilistExt-v0.0.1.0/Anilist-Setup-0.0.1.0-x64.exe + InstallerSha256: F4F081E643F7C22EE3A56BBB36FEFB8CCB31ED06635DB7650C1A62D589DFF5E2 +- Architecture: arm64 + InstallerUrl: https://github.com/DiekoMA/AnilistExt/releases/download/AnilistExt-v0.0.1.0/Anilist-Setup-0.0.1.0-arm64.exe + InstallerSha256: B71BCC8B738AA2587CA6730E65131797BD98CCB1B8AEA28F16AC1B469F66BB0B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DiekoMA/Anilist/0.0.1.0/DiekoMA.Anilist.locale.en-US.yaml b/manifests/d/DiekoMA/Anilist/0.0.1.0/DiekoMA.Anilist.locale.en-US.yaml new file mode 100644 index 000000000000..d380a606c253 --- /dev/null +++ b/manifests/d/DiekoMA/Anilist/0.0.1.0/DiekoMA.Anilist.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: DiekoMA.Anilist +PackageVersion: 0.0.1.0 +PackageLocale: en-US +Publisher: DiekoMA +PackageName: Anilist +License: MIT License +ShortDescription: Anilist extension for Powertoys CMD Pal +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DiekoMA/Anilist/0.0.1.0/DiekoMA.Anilist.yaml b/manifests/d/DiekoMA/Anilist/0.0.1.0/DiekoMA.Anilist.yaml new file mode 100644 index 000000000000..4fb4b90ff91a --- /dev/null +++ b/manifests/d/DiekoMA/Anilist/0.0.1.0/DiekoMA.Anilist.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: DiekoMA.Anilist +PackageVersion: 0.0.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 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/Dioss/DiosseIDMiddleware/4.8.0.0/Dioss.DiosseIDMiddleware.yaml b/manifests/d/Dioss/DiosseIDMiddleware/4.8.0.0/Dioss.DiosseIDMiddleware.yaml deleted file mode 100644 index 91fea13b16b9..000000000000 --- a/manifests/d/Dioss/DiosseIDMiddleware/4.8.0.0/Dioss.DiosseIDMiddleware.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.5.0 $debug=NVS1.CRLF.7-5-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Dioss.DiosseIDMiddleware -PackageVersion: 4.8.0.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/d/Dioss/DiosseIDMiddleware/4.8.0.0/Dioss.DiosseIDMiddleware.installer.yaml b/manifests/d/Dioss/DiosseIDMiddleware/5.0.0.0/Dioss.DiosseIDMiddleware.installer.yaml similarity index 59% rename from manifests/d/Dioss/DiosseIDMiddleware/4.8.0.0/Dioss.DiosseIDMiddleware.installer.yaml rename to manifests/d/Dioss/DiosseIDMiddleware/5.0.0.0/Dioss.DiosseIDMiddleware.installer.yaml index 9dad59a3b382..a8bc1d10ada9 100644 --- a/manifests/d/Dioss/DiosseIDMiddleware/4.8.0.0/Dioss.DiosseIDMiddleware.installer.yaml +++ b/manifests/d/Dioss/DiosseIDMiddleware/5.0.0.0/Dioss.DiosseIDMiddleware.installer.yaml @@ -1,21 +1,20 @@ -# Created with YamlCreate.ps1 v2.5.0 $debug=NVS1.CRLF.7-5-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Dioss.DiosseIDMiddleware -PackageVersion: 4.8.0.0 -InstallerType: msi # Advanced Installer +PackageVersion: 5.0.0.0 +InstallerType: msi InstallerSwitches: InstallLocation: APPDIR="" Dependencies: PackageDependencies: - PackageIdentifier: Microsoft.VCRedist.2015+.x86 -ProductCode: '{43218D52-4EE2-400B-829C-6BACA0C3F129}' -ReleaseDate: 2025-06-24 +ProductCode: '{BCB720AE-4AE8-4C58-9C29-E5A6D35A24BD}' AppsAndFeaturesEntries: - UpgradeCode: '{F58A0C53-3AB4-4F12-A808-BAB0AE3AF764}' Installers: - Architecture: x86 InstallerUrl: https://files.dioss.com/public.php/dav/files/e9owfpfTN7W7JZ2/Dioss_Middleware_Setup.msi - InstallerSha256: C67F85213CEA2326CEB8DBF3AE9D391F5516617350BE51428DDCB73A61B087B2 + InstallerSha256: D4B0008DC7B7790D02E13B364F0B4FBBB0B3503E415650182D7A4B77F358444F ManifestType: installer -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/d/Dioss/DiosseIDMiddleware/4.8.0.0/Dioss.DiosseIDMiddleware.locale.en-US.yaml b/manifests/d/Dioss/DiosseIDMiddleware/5.0.0.0/Dioss.DiosseIDMiddleware.locale.en-US.yaml similarity index 74% rename from manifests/d/Dioss/DiosseIDMiddleware/4.8.0.0/Dioss.DiosseIDMiddleware.locale.en-US.yaml rename to manifests/d/Dioss/DiosseIDMiddleware/5.0.0.0/Dioss.DiosseIDMiddleware.locale.en-US.yaml index 63f7c8498166..2713f8c1e8a8 100644 --- a/manifests/d/Dioss/DiosseIDMiddleware/4.8.0.0/Dioss.DiosseIDMiddleware.locale.en-US.yaml +++ b/manifests/d/Dioss/DiosseIDMiddleware/5.0.0.0/Dioss.DiosseIDMiddleware.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.5.0 $debug=NVS1.CRLF.7-5-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Dioss.DiosseIDMiddleware -PackageVersion: 4.8.0.0 +PackageVersion: 5.0.0.0 PackageLocale: en-US Publisher: Dioss PublisherUrl: https://smartsolutions.dioss.com/ @@ -12,20 +12,13 @@ Author: Dioss Smart Solutions NV PackageName: Dioss eID Middleware PackageUrl: https://smartsolutions.dioss.com/products/eid-middleware/dioss-eid-middelware-download-and-install/ License: Proprietary -# LicenseUrl: -Copyright: © 2025 Dioss Smart Solutions. All rights reserved. -# CopyrightUrl: +Copyright: © 2026 Dioss Smart Solutions. All rights reserved. ShortDescription: Use the Belgian eID card on your computer Description: Dioss eID Middleware facilitates the use of the Belgian eID card on your computer and can be used for verification, authentication and (bulk) signing. -# Moniker: Tags: - eid -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: Documentations: - DocumentLabel: FAQ DocumentUrl: https://smartsolutions.dioss.com/products/eid-middleware/dioss-eid-middleware-faq/ ManifestType: defaultLocale -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/d/Dioss/DiosseIDMiddleware/4.8.0.0/Dioss.DiosseIDMiddleware.locale.zh-CN.yaml b/manifests/d/Dioss/DiosseIDMiddleware/5.0.0.0/Dioss.DiosseIDMiddleware.locale.zh-CN.yaml similarity index 57% rename from manifests/d/Dioss/DiosseIDMiddleware/4.8.0.0/Dioss.DiosseIDMiddleware.locale.zh-CN.yaml rename to manifests/d/Dioss/DiosseIDMiddleware/5.0.0.0/Dioss.DiosseIDMiddleware.locale.zh-CN.yaml index cf8a7bb57b85..59238ce1bb54 100644 --- a/manifests/d/Dioss/DiosseIDMiddleware/4.8.0.0/Dioss.DiosseIDMiddleware.locale.zh-CN.yaml +++ b/manifests/d/Dioss/DiosseIDMiddleware/5.0.0.0/Dioss.DiosseIDMiddleware.locale.zh-CN.yaml @@ -1,30 +1,14 @@ -# Created with YamlCreate.ps1 v2.5.0 $debug=NVS1.CRLF.7-5-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Dioss.DiosseIDMiddleware -PackageVersion: 4.8.0.0 +PackageVersion: 5.0.0.0 PackageLocale: zh-CN -# Publisher: -# PublisherUrl: -# PublisherSupportUrl: -# PrivacyUrl: -# Author: -# PackageName: -# PackageUrl: License: 专有软件 -# LicenseUrl: -# Copyright: -# CopyrightUrl: ShortDescription: 在计算机上使用比利时 eID 卡 Description: Dioss eID 中间件可帮助您在计算机上使用比利时 eID,可用于验证、身份认证以及(批量)签名。 -# Moniker: -# Tags: -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: Documentations: - DocumentLabel: 常见问题 DocumentUrl: https://smartsolutions.dioss.com/products/eid-middleware/dioss-eid-middleware-faq/ ManifestType: locale -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/d/Dioss/DiosseIDMiddleware/5.0.0.0/Dioss.DiosseIDMiddleware.yaml b/manifests/d/Dioss/DiosseIDMiddleware/5.0.0.0/Dioss.DiosseIDMiddleware.yaml new file mode 100644 index 000000000000..93668e5fd733 --- /dev/null +++ b/manifests/d/Dioss/DiosseIDMiddleware/5.0.0.0/Dioss.DiosseIDMiddleware.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: Dioss.DiosseIDMiddleware +PackageVersion: 5.0.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/Dioss/DiosseIDMiddleware/Server/4.8.0.0/Dioss.DiosseIDMiddleware.Server.yaml b/manifests/d/Dioss/DiosseIDMiddleware/Server/4.8.0.0/Dioss.DiosseIDMiddleware.Server.yaml deleted file mode 100644 index 1de2628da73f..000000000000 --- a/manifests/d/Dioss/DiosseIDMiddleware/Server/4.8.0.0/Dioss.DiosseIDMiddleware.Server.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.5.0 $debug=NVS1.CRLF.7-5-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Dioss.DiosseIDMiddleware.Server -PackageVersion: 4.8.0.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/d/Dioss/DiosseIDMiddleware/Server/4.8.0.0/Dioss.DiosseIDMiddleware.Server.installer.yaml b/manifests/d/Dioss/DiosseIDMiddleware/Server/5.0.0.0/Dioss.DiosseIDMiddleware.Server.installer.yaml similarity index 59% rename from manifests/d/Dioss/DiosseIDMiddleware/Server/4.8.0.0/Dioss.DiosseIDMiddleware.Server.installer.yaml rename to manifests/d/Dioss/DiosseIDMiddleware/Server/5.0.0.0/Dioss.DiosseIDMiddleware.Server.installer.yaml index 5c0aab180491..7be5902e05b2 100644 --- a/manifests/d/Dioss/DiosseIDMiddleware/Server/4.8.0.0/Dioss.DiosseIDMiddleware.Server.installer.yaml +++ b/manifests/d/Dioss/DiosseIDMiddleware/Server/5.0.0.0/Dioss.DiosseIDMiddleware.Server.installer.yaml @@ -1,21 +1,20 @@ -# Created with YamlCreate.ps1 v2.5.0 $debug=NVS1.CRLF.7-5-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Dioss.DiosseIDMiddleware.Server -PackageVersion: 4.8.0.0 -InstallerType: msi # Advanced Installer +PackageVersion: 5.0.0.0 +InstallerType: msi InstallerSwitches: InstallLocation: APPDIR="" Dependencies: PackageDependencies: - PackageIdentifier: Microsoft.VCRedist.2015+.x86 -ProductCode: '{D04F439C-EAD5-4583-9949-16FFD1D1F5E1}' -ReleaseDate: 2025-06-25 +ProductCode: '{16CC126D-E48D-4630-A710-99C551B4092B}' AppsAndFeaturesEntries: - UpgradeCode: '{6B3566DB-5CDA-4818-9D32-D726DB9F5D3D}' Installers: - Architecture: x86 InstallerUrl: https://files.dioss.com/public.php/dav/files/e9owfpfTN7W7JZ2/Dioss_Middleware_Server_Setup.msi - InstallerSha256: 0106D5E63DDBBC4FE664F67CEB1F04D374AD00841077D0D7FEE3CA35EAFFD223 + InstallerSha256: 396F3A05658CCC9380C40D83814525D17CA89BE2589BAB09FD6080754939055A ManifestType: installer -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/d/Dioss/DiosseIDMiddleware/Server/4.8.0.0/Dioss.DiosseIDMiddleware.Server.locale.en-US.yaml b/manifests/d/Dioss/DiosseIDMiddleware/Server/5.0.0.0/Dioss.DiosseIDMiddleware.Server.locale.en-US.yaml similarity index 74% rename from manifests/d/Dioss/DiosseIDMiddleware/Server/4.8.0.0/Dioss.DiosseIDMiddleware.Server.locale.en-US.yaml rename to manifests/d/Dioss/DiosseIDMiddleware/Server/5.0.0.0/Dioss.DiosseIDMiddleware.Server.locale.en-US.yaml index 991d64f54618..c7a12fedcbb9 100644 --- a/manifests/d/Dioss/DiosseIDMiddleware/Server/4.8.0.0/Dioss.DiosseIDMiddleware.Server.locale.en-US.yaml +++ b/manifests/d/Dioss/DiosseIDMiddleware/Server/5.0.0.0/Dioss.DiosseIDMiddleware.Server.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 v2.5.0 $debug=NVS1.CRLF.7-5-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Dioss.DiosseIDMiddleware.Server -PackageVersion: 4.8.0.0 +PackageVersion: 5.0.0.0 PackageLocale: en-US Publisher: Dioss PublisherUrl: https://smartsolutions.dioss.com/ @@ -12,20 +12,13 @@ Author: Dioss Smart Solutions NV PackageName: Dioss eID Middleware - Server PackageUrl: https://smartsolutions.dioss.com/products/eid-middleware/dioss-eid-middelware-download-and-install/ License: Proprietary -# LicenseUrl: -Copyright: © 2025 Dioss Smart Solutions. All rights reserved. -# CopyrightUrl: +Copyright: © 2026 Dioss Smart Solutions. All rights reserved. ShortDescription: Use the Belgian eID card on your computer Description: Dioss eID Middleware facilitates the use of the Belgian eID card on your computer and can be used for verification, authentication and (bulk) signing. -# Moniker: Tags: - eid -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: Documentations: - DocumentLabel: FAQ DocumentUrl: https://smartsolutions.dioss.com/products/eid-middleware/dioss-eid-middleware-faq/ ManifestType: defaultLocale -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/d/Dioss/DiosseIDMiddleware/Server/4.8.0.0/Dioss.DiosseIDMiddleware.Server.locale.zh-CN.yaml b/manifests/d/Dioss/DiosseIDMiddleware/Server/5.0.0.0/Dioss.DiosseIDMiddleware.Server.locale.zh-CN.yaml similarity index 57% rename from manifests/d/Dioss/DiosseIDMiddleware/Server/4.8.0.0/Dioss.DiosseIDMiddleware.Server.locale.zh-CN.yaml rename to manifests/d/Dioss/DiosseIDMiddleware/Server/5.0.0.0/Dioss.DiosseIDMiddleware.Server.locale.zh-CN.yaml index add5528f9694..d05cd7d3dc3e 100644 --- a/manifests/d/Dioss/DiosseIDMiddleware/Server/4.8.0.0/Dioss.DiosseIDMiddleware.Server.locale.zh-CN.yaml +++ b/manifests/d/Dioss/DiosseIDMiddleware/Server/5.0.0.0/Dioss.DiosseIDMiddleware.Server.locale.zh-CN.yaml @@ -1,30 +1,14 @@ -# Created with YamlCreate.ps1 v2.5.0 $debug=NVS1.CRLF.7-5-3.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Dioss.DiosseIDMiddleware.Server -PackageVersion: 4.8.0.0 +PackageVersion: 5.0.0.0 PackageLocale: zh-CN -# Publisher: -# PublisherUrl: -# PublisherSupportUrl: -# PrivacyUrl: -# Author: -# PackageName: -# PackageUrl: License: 专有软件 -# LicenseUrl: -# Copyright: -# CopyrightUrl: ShortDescription: 在计算机上使用比利时 eID 卡 Description: Dioss eID 中间件可帮助您在计算机上使用比利时 eID,可用于验证、身份认证以及(批量)签名。 -# Moniker: -# Tags: -# ReleaseNotes: -# ReleaseNotesUrl: -# PurchaseUrl: -# InstallationNotes: Documentations: - DocumentLabel: 常见问题 DocumentUrl: https://smartsolutions.dioss.com/products/eid-middleware/dioss-eid-middleware-faq/ ManifestType: locale -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.yaml b/manifests/d/Dioss/DiosseIDMiddleware/Server/5.0.0.0/Dioss.DiosseIDMiddleware.Server.yaml similarity index 72% rename from manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.yaml rename to manifests/d/Dioss/DiosseIDMiddleware/Server/5.0.0.0/Dioss.DiosseIDMiddleware.Server.yaml index 17f44c5f7c93..250ac1ced301 100644 --- a/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.yaml +++ b/manifests/d/Dioss/DiosseIDMiddleware/Server/5.0.0.0/Dioss.DiosseIDMiddleware.Server.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: Dioss.DiosseIDMiddleware.Server +PackageVersion: 5.0.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/f/FilesCommunity/Files/4.0.38.0/FilesCommunity.Files.installer.yaml b/manifests/f/FilesCommunity/Files/4.0.38.0/FilesCommunity.Files.installer.yaml new file mode 100644 index 000000000000..7fe3ef7ccb94 --- /dev/null +++ b/manifests/f/FilesCommunity/Files/4.0.38.0/FilesCommunity.Files.installer.yaml @@ -0,0 +1,48 @@ +# 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: FilesCommunity.Files +PackageVersion: 4.0.38.0 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.19041.0 +InstallerType: msix +InstallModes: +- silent +- silentWithProgress +UpgradeBehavior: install +FileExtensions: +- 7z +- gz +- jar +- mrpack +- rar +- tar +- zip +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCLibs.Desktop.14 + - PackageIdentifier: Microsoft.WindowsAppRuntime.1.8 +PackageFamilyName: Files_1y0xx7n9077q4 +Capabilities: +- internetClient +- privateNetworkClientServer +- removableStorage +RestrictedCapabilities: +- allowElevation +- broadFileSystemAccess +- packageManagement +- runFullTrust +- unvirtualizedResources +ReleaseDate: 2026-03-24 +AppsAndFeaturesEntries: +- Publisher: Yair A +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/WindowsApps/Files_4.0.37.0_x64__1y0xx7n9077q4' +Installers: +- Architecture: arm64 + InstallerUrl: https://cdn.files.community/files/stable/Files.Package/Files.Package_x64_arm64.msixbundle + InstallerSha256: A3938C19D523F2703BDD9177BD35C5F4DE4950F8F7209BD2420361719FA27A04 + SignatureSha256: 3B94A9570A67C2EE8CF445F2DB3114E6D73ADDBF5C0DE1580F82BF4426743B13 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/f/FilesCommunity/Files/4.0.38.0/FilesCommunity.Files.locale.en-US.yaml b/manifests/f/FilesCommunity/Files/4.0.38.0/FilesCommunity.Files.locale.en-US.yaml new file mode 100644 index 000000000000..ef4f745d934b --- /dev/null +++ b/manifests/f/FilesCommunity/Files/4.0.38.0/FilesCommunity.Files.locale.en-US.yaml @@ -0,0 +1,16 @@ +# 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: FilesCommunity.Files +PackageVersion: 4.0.38.0 +PackageLocale: en-US +Publisher: Files Community +PublisherUrl: https://files.community/ +PackageName: Files +PackageUrl: https://github.com/files-community/Files +License: MIT +LicenseUrl: https://github.com/files-community/Files/blob/main/LICENSE +ShortDescription: A modern file manager that helps users organize their files and folders +Moniker: files +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kraken/KrakenDesktop/1.11.2/Kraken.KrakenDesktop.yaml b/manifests/f/FilesCommunity/Files/4.0.38.0/FilesCommunity.Files.yaml similarity index 54% rename from manifests/k/Kraken/KrakenDesktop/1.11.2/Kraken.KrakenDesktop.yaml rename to manifests/f/FilesCommunity/Files/4.0.38.0/FilesCommunity.Files.yaml index 0bbd5d6501a3..5a0d4dc244b9 100644 --- a/manifests/k/Kraken/KrakenDesktop/1.11.2/Kraken.KrakenDesktop.yaml +++ b/manifests/f/FilesCommunity/Files/4.0.38.0/FilesCommunity.Files.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2026/Jan/05 +# 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: Kraken.KrakenDesktop -PackageVersion: 1.11.2 +PackageIdentifier: FilesCommunity.Files +PackageVersion: 4.0.38.0 DefaultLocale: en-US ManifestType: version 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/GitHub/Copilot/Prerelease/v1.0.43-0/GitHub.Copilot.Prerelease.installer.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.43-0/GitHub.Copilot.Prerelease.installer.yaml new file mode 100644 index 000000000000..99c74ea9e50d --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.43-0/GitHub.Copilot.Prerelease.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: GitHub.Copilot.Prerelease +PackageVersion: v1.0.43-0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: copilot.exe +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.PowerShell + MinimumVersion: 7.0.0 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/github/copilot-cli/releases/download/v1.0.43-0/copilot-win32-x64.zip + InstallerSha256: 2FA6F8808ED76BDF59C72E4CD7997449F7FA78CF4821F1E3EF591BE2A70E4CD9 +- Architecture: arm64 + InstallerUrl: https://github.com/github/copilot-cli/releases/download/v1.0.43-0/copilot-win32-arm64.zip + InstallerSha256: F65A13326AF47B95F405227416A43B03E99C3BF495A66D18E9E56F6333F344A0 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-05-06 diff --git a/manifests/g/GitHub/Copilot/Prerelease/v1.0.43-0/GitHub.Copilot.Prerelease.locale.en-US.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.43-0/GitHub.Copilot.Prerelease.locale.en-US.yaml new file mode 100644 index 000000000000..9633acc9bd33 --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.43-0/GitHub.Copilot.Prerelease.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: GitHub.Copilot.Prerelease +PackageVersion: v1.0.43-0 +PackageLocale: en-US +Publisher: GitHub, Inc. +PublisherUrl: https://github.com/home/ +PublisherSupportUrl: https://support.github.com/ +PrivacyUrl: https://docs.github.com/site-policy/privacy-policies/github-privacy-statement +PackageName: Copilot CLI (Preview) +PackageUrl: https://github.com/github/copilot-cli +License: Proprietary +LicenseUrl: https://docs.github.com/en/site-policy/github-terms/github-pre-release-license-terms +Copyright: Copyright (c) GitHub 2025. All rights reserved. +CopyrightUrl: https://github.com/github/copilot-cli?tab=License-1-ov-file +ShortDescription: GitHub Copilot CLI brings the power of Copilot coding agent directly to your terminal. +Description: GitHub Copilot CLI brings AI-powered coding assistance directly to your command line, enabling you to build, debug, and understand code through natural language conversations. Powered by the same agentic harness as GitHub's Copilot coding agent, it provides intelligent assistance while staying deeply integrated with your GitHub workflow. +Moniker: copilot-prerelease +Tags: +- cli +- copilot +- github +ReleaseNotesUrl: https://github.com/github/copilot-cli/releases/tag/v1.0.43-0 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/github/copilot-cli/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GitHub/Copilot/Prerelease/v1.0.43-0/GitHub.Copilot.Prerelease.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.43-0/GitHub.Copilot.Prerelease.yaml new file mode 100644 index 000000000000..d2c116011e21 --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.43-0/GitHub.Copilot.Prerelease.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: GitHub.Copilot.Prerelease +PackageVersion: v1.0.43-0 +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/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.yaml b/manifests/g/Gologin/Gologin/4.2.7/Gologin.Gologin.yaml similarity index 62% rename from manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.yaml rename to manifests/g/Gologin/Gologin/4.2.7/Gologin.Gologin.yaml index ca681f1daada..8681fc28978c 100644 --- a/manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.yaml +++ b/manifests/g/Gologin/Gologin/4.2.7/Gologin.Gologin.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.15.0 +# Created with komac v2.16.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: DigiDNA.iMazing -PackageVersion: 3.5.0.0 +PackageIdentifier: Gologin.Gologin +PackageVersion: 4.2.7 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.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.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/g/Google/FirebaseCLI/15.1.0/Google.FirebaseCLI.yaml b/manifests/g/Google/FirebaseCLI/15.1.0/Google.FirebaseCLI.yaml deleted file mode 100644 index ecda48ecd780..000000000000 --- a/manifests/g/Google/FirebaseCLI/15.1.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.1.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/guoyongchang/WorktreeManager/0.20260507.110023/guoyongchang.WorktreeManager.installer.yaml b/manifests/g/guoyongchang/WorktreeManager/0.20260507.110023/guoyongchang.WorktreeManager.installer.yaml new file mode 100644 index 000000000000..5eb1faea0ecf --- /dev/null +++ b/manifests/g/guoyongchang/WorktreeManager/0.20260507.110023/guoyongchang.WorktreeManager.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: guoyongchang.WorktreeManager +PackageVersion: 0.20260507.110023 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +ProductCode: Worktree Manager +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/guoyongchang/worktree-manager/releases/download/v0.20260507.110023/Worktree-Manager-v0.20260507.110023-Windows-setup.exe + InstallerSha256: 4A5A55005329C4D74C0AF0F74BF3ABBB4240F6CA9FAFE6024F1EB7E619B373C5 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/guoyongchang/WorktreeManager/0.20260507.110023/guoyongchang.WorktreeManager.locale.en-US.yaml b/manifests/g/guoyongchang/WorktreeManager/0.20260507.110023/guoyongchang.WorktreeManager.locale.en-US.yaml new file mode 100644 index 000000000000..96d95e24d994 --- /dev/null +++ b/manifests/g/guoyongchang/WorktreeManager/0.20260507.110023/guoyongchang.WorktreeManager.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: guoyongchang.WorktreeManager +PackageVersion: 0.20260507.110023 +PackageLocale: en-US +License: Freeware +ShortDescription: An elegant Git Worktree managemer with visualization +Description: |- + Git Worktree Manager is built on Git's native worktree capability, allowing you to check out multiple branches into separate directories in the same repository while sharing the same .git data. With automatic symlinking for large folders such as node_modules, it enables zero-cost branch switching and requires no additional disk space. + + Core Features + - Parallel Work on Multiple Branches + Work on multiple branches of the same project simultaneously without mutual interference. No need to stash changes, no need to clone multiple copies of the repository. + - Smart Folder Linking + Automatically links build artifacts such as node_modules, .next, and vendor when creating a worktree to avoid repeated dependency installation. Custom link paths are supported. + - Global Workspace File Sharing + Files including .claude, CLAUDE.md, requirement-docs can be configured as global links to be shared across all worktrees. + - Branch Status at a Glance + Displays real-time information for each branch, including commit count, uncommitted changes, whether it has been merged into the test branch, and more. + - Quick IDE Launch + Open any worktree with VS Code, Cursor or IntelliJ IDEA in one click. + - Built-in Terminal + Each worktree has an independent terminal session, eliminating the need to switch between multiple windows. + - Secure Archiving + Archive the worktree after development is completed. Uncommitted and unpushed code is automatically checked before archiving to prevent data loss. +Tags: +- branch +- code +- coding +- develop +- development +- git +- vcs +- worktree +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/g/guoyongchang/WorktreeManager/0.20260507.110023/guoyongchang.WorktreeManager.locale.zh-CN.yaml b/manifests/g/guoyongchang/WorktreeManager/0.20260507.110023/guoyongchang.WorktreeManager.locale.zh-CN.yaml new file mode 100644 index 000000000000..fc7d7fc30c05 --- /dev/null +++ b/manifests/g/guoyongchang/WorktreeManager/0.20260507.110023/guoyongchang.WorktreeManager.locale.zh-CN.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: guoyongchang.WorktreeManager +PackageVersion: 0.20260507.110023 +PackageLocale: zh-CN +Publisher: Worktree Manager Team +PublisherUrl: https://github.com/guoyongchang +PublisherSupportUrl: https://github.com/guoyongchang/worktree-manager/issues +PackageName: Worktree Manager +PackageUrl: https://github.com/guoyongchang/worktree-manager +License: 免费软件 +ShortDescription: 一个优雅的 Git Worktree 可视化管理工具 +Description: |- + Git Worktree Manager 基于 Git 原生的 worktree 能力构建,让你在同一个仓库中同时检出多个分支到独立目录,共享 .git 数据。配合自动 symlink node_modules 等大文件夹,零成本切换,零额外磁盘占用。 + + 核心功能 + - 多分支并行工作 + 一个项目同时打开多个分支,互不干扰。不用 stash,不用 clone 多份。 + - 智能文件夹链接 + 创建 worktree 时自动链接 node_modules、.next、vendor 等构建产物,避免重复安装依赖。支持自定义链接路径。 + - Workspace 全局文件共享 + .claude、CLAUDE.md、requirement-docs 等文件可以配置为全局链接,在所有 worktree 中共享。 + - 分支状态一目了然 + 实时显示每个分支的提交数、未提交更改、是否合并到测试分支等信息。 + - 快速打开 IDE + 一键用 VS Code、Cursor 或 IntelliJ IDEA 打开任意 worktree。 + - 内置终端 + 每个 worktree 有独立的终端会话,无需在多个窗口之间切换。 + - 安全归档 + 完成开发后归档 worktree,归档前自动检查未提交和未推送的代码,防止丢失。 +Tags: +- git +- worktree +- 代码 +- 分支 +- 开发 +- 版本控制 +ReleaseNotesUrl: https://github.com/guoyongchang/worktree-manager/releases/tag/v0.20260507.110023 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.yaml b/manifests/g/guoyongchang/WorktreeManager/0.20260507.110023/guoyongchang.WorktreeManager.yaml similarity index 71% rename from manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.yaml rename to manifests/g/guoyongchang/WorktreeManager/0.20260507.110023/guoyongchang.WorktreeManager.yaml index 1eca614299ce..2edb5765b1af 100644 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.yaml +++ b/manifests/g/guoyongchang/WorktreeManager/0.20260507.110023/guoyongchang.WorktreeManager.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.26040912 +PackageIdentifier: guoyongchang.WorktreeManager +PackageVersion: 0.20260507.110023 DefaultLocale: zh-CN ManifestType: version ManifestVersion: 1.12.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/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/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/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/j/Jagex/Runescape/2.2.12/Jagex.Runescape.installer.yaml b/manifests/j/Jagex/Runescape/2.2.12/Jagex.Runescape.installer.yaml new file mode 100644 index 000000000000..7b7e8ec2a29d --- /dev/null +++ b/manifests/j/Jagex/Runescape/2.2.12/Jagex.Runescape.installer.yaml @@ -0,0 +1,16 @@ +# Automatically updated by the winget bot at 2026/May/05 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Jagex.Runescape +PackageVersion: 2.2.12 +InstallerType: inno +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DirectX +Installers: +- Architecture: x64 + InstallerUrl: https://content.runescape.com/downloads/windows/RuneScape-Setup.exe + InstallerSha256: 7B15148B91CF521B3B060E1087EDA7FE50AA87AE4392E33DB3E913B9803ABEC9 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/Jagex/Runescape/2.2.12/Jagex.Runescape.locale.en-US.yaml b/manifests/j/Jagex/Runescape/2.2.12/Jagex.Runescape.locale.en-US.yaml new file mode 100644 index 000000000000..5df3d2a3eeb8 --- /dev/null +++ b/manifests/j/Jagex/Runescape/2.2.12/Jagex.Runescape.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Automatically updated by the winget bot at 2026/May/05 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Jagex.Runescape +PackageVersion: 2.2.12 +PackageLocale: en-US +Publisher: Jagex Ltd +PublisherUrl: https://www.jagex.com +PrivacyUrl: https://www.jagex.com/terms/privacy +PackageName: Runescape Launcher +PackageUrl: https://www.runescape.com +License: Proprietary +LicenseUrl: https://www.jagex.com/terms +Copyright: Copyright 2022 Jagex Ltd. +ShortDescription: medieval fantasy MMORPG +Description: |- + RuneScape - available on PC and mobile - is an ever-expanding, living game that’s bursting with activity and life. + Set in a medieval fantasy land, begin by creating a character and then embark on epic journeys through a vast sandbox + world that’s full of gods, warring races, unexplored dungeons, and glittering riches. Propelled by the game’s narrative, + choose your own path through enthralling quests, and progress through 28 diverse skills to shape a single character + in a classless world. In RuneScape, you get to be the hero you always wanted to be and, with new content added almost + every week, there’s always a new and adventurous experience to look forward to. +Moniker: runescape +Tags: +- fantasy +- game +- mmo +- mmorpg +- rpg +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.yaml b/manifests/j/Jagex/Runescape/2.2.12/Jagex.Runescape.yaml similarity index 56% rename from manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.yaml rename to manifests/j/Jagex/Runescape/2.2.12/Jagex.Runescape.yaml index 04f52a2c3f59..d9003a718389 100644 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.yaml +++ b/manifests/j/Jagex/Runescape/2.2.12/Jagex.Runescape.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 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/05 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Jagex.Runescape +PackageVersion: 2.2.12 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/j/jely2002/youtube-dl-gui/3.1.2/jely2002.youtube-dl-gui.installer.yaml b/manifests/j/jely2002/youtube-dl-gui/3.1.2/jely2002.youtube-dl-gui.installer.yaml index 80fed756a81b..5a37e97779ae 100644 --- a/manifests/j/jely2002/youtube-dl-gui/3.1.2/jely2002.youtube-dl-gui.installer.yaml +++ b/manifests/j/jely2002/youtube-dl-gui/3.1.2/jely2002.youtube-dl-gui.installer.yaml @@ -1,5 +1,5 @@ -# Created using wingetcreate 1.10.3.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: jely2002.youtube-dl-gui PackageVersion: 3.1.2 @@ -13,7 +13,7 @@ UpgradeBehavior: install Installers: - Architecture: x64 InstallerUrl: https://github.com/jely2002/youtube-dl-gui/releases/download/app-v3.1.2/Open.Video.Downloader_3.1.2_x64-setup.exe - InstallerSha256: 22E74365CC65F78B2B96275AB33A0F8544623D9BE4E95701DD918BBA19A0CC81 + InstallerSha256: EB857D886451138BA12A52061D77FBF5B9923A56A8EF143D9A4A9DDB5B2CA881 ManifestType: installer -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 ReleaseDate: 2026-02-10 diff --git a/manifests/j/jely2002/youtube-dl-gui/3.1.2/jely2002.youtube-dl-gui.locale.en-US.yaml b/manifests/j/jely2002/youtube-dl-gui/3.1.2/jely2002.youtube-dl-gui.locale.en-US.yaml index 84c636cb4fd6..3f7f59025d03 100644 --- a/manifests/j/jely2002/youtube-dl-gui/3.1.2/jely2002.youtube-dl-gui.locale.en-US.yaml +++ b/manifests/j/jely2002/youtube-dl-gui/3.1.2/jely2002.youtube-dl-gui.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Created using wingetcreate 1.10.3.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: jely2002.youtube-dl-gui PackageVersion: 3.1.2 @@ -28,4 +28,4 @@ Documentations: - DocumentLabel: Wiki DocumentUrl: https://github.com/jely2002/youtube-dl-gui/wiki ManifestType: defaultLocale -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/j/jely2002/youtube-dl-gui/3.1.2/jely2002.youtube-dl-gui.yaml b/manifests/j/jely2002/youtube-dl-gui/3.1.2/jely2002.youtube-dl-gui.yaml index 57c3d25f2165..b80a2783ee9d 100644 --- a/manifests/j/jely2002/youtube-dl-gui/3.1.2/jely2002.youtube-dl-gui.yaml +++ b/manifests/j/jely2002/youtube-dl-gui/3.1.2/jely2002.youtube-dl-gui.yaml @@ -1,8 +1,8 @@ -# Created using wingetcreate 1.10.3.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: jely2002.youtube-dl-gui PackageVersion: 3.1.2 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 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/LiuYunPlayer/TuneLab/1.6.0/LiuYunPlayer.TuneLab.installer.yaml b/manifests/l/LiuYunPlayer/TuneLab/1.6.0/LiuYunPlayer.TuneLab.installer.yaml new file mode 100644 index 000000000000..d957f8bd4faf --- /dev/null +++ b/manifests/l/LiuYunPlayer/TuneLab/1.6.0/LiuYunPlayer.TuneLab.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: LiuYunPlayer.TuneLab +PackageVersion: 1.6.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: TuneLab.exe +UpgradeBehavior: install +Commands: +- tunelab +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.DesktopRuntime.8 +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/LiuYunPlayer/TuneLab/releases/download/v1.6.0/TuneLab-win-x64-v1.6.0.zip + InstallerSha256: 7225DF9A3757B46B90B22FED8AFA3B32B1B157A5255170C4B3D2B4D3D28F2583 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/LiuYunPlayer/TuneLab/1.6.0/LiuYunPlayer.TuneLab.locale.en-US.yaml b/manifests/l/LiuYunPlayer/TuneLab/1.6.0/LiuYunPlayer.TuneLab.locale.en-US.yaml new file mode 100644 index 000000000000..9c9459490eec --- /dev/null +++ b/manifests/l/LiuYunPlayer/TuneLab/1.6.0/LiuYunPlayer.TuneLab.locale.en-US.yaml @@ -0,0 +1,15 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: LiuYunPlayer.TuneLab +PackageVersion: 1.6.0 +PackageLocale: en-US +Publisher: LiuYunPlayer +Author: LiuYunPlayer +PackageName: TuneLab +License: MIT +LicenseUrl: https://github.com/LiuYunPlayer/TuneLab/blob/master/LICENSE.txt +ShortDescription: singing voice synthesis frontend +Description: TuneLab is a lightweight singing voice synthesis editor that supports multiple synthesis engines +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LiuYunPlayer/TuneLab/1.6.0/LiuYunPlayer.TuneLab.yaml b/manifests/l/LiuYunPlayer/TuneLab/1.6.0/LiuYunPlayer.TuneLab.yaml new file mode 100644 index 000000000000..16710a894131 --- /dev/null +++ b/manifests/l/LiuYunPlayer/TuneLab/1.6.0/LiuYunPlayer.TuneLab.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: LiuYunPlayer.TuneLab +PackageVersion: 1.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/Logitech/LogiTune/3.12.193.0/Logitech.LogiTune.installer.yaml b/manifests/l/Logitech/LogiTune/3.12.193.0/Logitech.LogiTune.installer.yaml deleted file mode 100644 index aafe02813f70..000000000000 --- a/manifests/l/Logitech/LogiTune/3.12.193.0/Logitech.LogiTune.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: Logitech.LogiTune -PackageVersion: 3.12.193.0 -InstallerLocale: en-US -InstallerType: burn -Scope: machine -UpgradeBehavior: install -Dependencies: - PackageDependencies: - - PackageIdentifier: Microsoft.VCRedist.2015+.x64 - MinimumVersion: 14.40.33810.0 -ProductCode: '{35432CBC-1509-4712-9121-52174AD6E45F}' -ReleaseDate: 2025-11-06 -AppsAndFeaturesEntries: -- ProductCode: '{40571539-4B99-4B94-B374-25A7734A7150}' - UpgradeCode: '{F523940E-A62E-46CE-8D1F-ABC9D0176736}' - InstallerType: burn -ElevationRequirement: elevatesSelf -Installers: -- Architecture: x64 - InstallerUrl: https://software.vc.logitech.com/downloads/tune/LogiTuneInstall.exe - InstallerSha256: 0AA1281CC2019687A446D26FE93D1C6070A08E0DF8419CC98D87E331A0D7B474 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/l/Logitech/LogiTune/3.12.193.0/Logitech.LogiTune.locale.en-US.yaml b/manifests/l/Logitech/LogiTune/3.12.193.0/Logitech.LogiTune.locale.en-US.yaml deleted file mode 100644 index 5fdf99e1a9ab..000000000000 --- a/manifests/l/Logitech/LogiTune/3.12.193.0/Logitech.LogiTune.locale.en-US.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Created with komac v2.13.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Logitech.LogiTune -PackageVersion: 3.12.193.0 -PackageLocale: en-US -Publisher: Logitech -PublisherUrl: https://www.logitech.com/ -PublisherSupportUrl: https://support.logi.com/ -PrivacyUrl: https://www.logitech.com/legal/product-privacy-policy -PackageName: Logi Tune -PackageUrl: https://www.logitech.com/video-collaboration/software/logi-tune-software -License: Proprietary -LicenseUrl: https://www.logitech.com/tos/software-license-agreement -Copyright: Copyright (c) Logitech. All rights reserved. -ShortDescription: Get more out of your headsets and webcams, and book your spaces for better days in the office. -Description: |- - Take charge of your workplace experience wherever you are — at home, in the office or on the go. Webcam and headset settings are all at your fingertips to ensure you look and sound the way you want in video meetings. - - In addition, if your organization uses Logitech room and desk booking, you can easily find the right space, with the right tools at the right time and with the right people for better days in the office. -Moniker: logitune -Tags: -- audio -- booking -- brio -- business -- headset -- keyboard -- logi-dock -- meetings -- mice -- office -- video -- video-collaboration -- video-meeting -- webcam -- webcam-controls -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/l/Logitech/LogiTune/3.12.193.0/Logitech.LogiTune.yaml b/manifests/l/Logitech/LogiTune/3.12.193.0/Logitech.LogiTune.yaml deleted file mode 100644 index f58556058e87..000000000000 --- a/manifests/l/Logitech/LogiTune/3.12.193.0/Logitech.LogiTune.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: Logitech.LogiTune -PackageVersion: 3.12.193.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.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.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/MBrassey/agtop/2.3.9/MBrassey.agtop.installer.yaml b/manifests/m/MBrassey/agtop/2.3.9/MBrassey.agtop.installer.yaml new file mode 100644 index 000000000000..e5d7dc0e2a6a --- /dev/null +++ b/manifests/m/MBrassey/agtop/2.3.9/MBrassey.agtop.installer.yaml @@ -0,0 +1,14 @@ +PackageIdentifier: MBrassey.agtop +PackageVersion: 2.3.9 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: + - RelativeFilePath: agtop-windows-x86_64\agtop.exe + PortableCommandAlias: agtop +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/MBrassey/agtop/releases/download/v2.3.9/agtop-windows-x86_64.zip + InstallerSha256: 4F0626E76C9CD164421F124BA3E3C48BD141FBABCA47B7A64E37D16C0E7ED139 +ReleaseDate: 2026-05-01 +ManifestType: installer +ManifestVersion: 1.6.0 diff --git a/manifests/m/MBrassey/agtop/2.3.9/MBrassey.agtop.locale.en-US.yaml b/manifests/m/MBrassey/agtop/2.3.9/MBrassey.agtop.locale.en-US.yaml new file mode 100644 index 000000000000..4ed905646b61 --- /dev/null +++ b/manifests/m/MBrassey/agtop/2.3.9/MBrassey.agtop.locale.en-US.yaml @@ -0,0 +1,41 @@ +PackageIdentifier: MBrassey.agtop +PackageVersion: 2.3.9 +PackageLocale: en-US +Publisher: Matt Brassey +PublisherUrl: https://github.com/MBrassey +PublisherSupportUrl: https://github.com/MBrassey/agtop/issues +Author: Matt Brassey +PackageName: agtop +PackageUrl: https://github.com/MBrassey/agtop +License: MIT +LicenseUrl: https://github.com/MBrassey/agtop/blob/main/LICENSE +ShortDescription: Process monitor for AI coding agents (Claude Code, Codex, Aider, Gemini, Goose). +Description: |- + agtop is a top-style ratatui TUI that walks /proc on Linux + (sysinfo on Windows / macOS / *BSD) plus the on-disk session + transcripts of Claude Code, OpenAI Codex, Block Goose, Aider, + and Google Gemini. For each detected agent it reports CPU, + RSS, status, current tool / task, in-flight subagents, + cumulative token usage, estimated cost, context-window fill, + loaded skills, and a live transcript preview. + + On Windows, writable-FD enumeration uses NtQuerySystemInformation + + DuplicateHandle to surface what files each agent has open. + Per-process IO byte counters come from sysinfo's disk_usage(). +Moniker: agtop +Tags: + - agent + - ai + - aider + - claude + - cli + - codex + - gemini + - goose + - htop + - monitor + - process + - top + - tui +ManifestType: defaultLocale +ManifestVersion: 1.6.0 diff --git a/manifests/m/MBrassey/agtop/2.3.9/MBrassey.agtop.yaml b/manifests/m/MBrassey/agtop/2.3.9/MBrassey.agtop.yaml new file mode 100644 index 000000000000..4a4bb992441f --- /dev/null +++ b/manifests/m/MBrassey/agtop/2.3.9/MBrassey.agtop.yaml @@ -0,0 +1,5 @@ +PackageIdentifier: MBrassey.agtop +PackageVersion: 2.3.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.6.0 diff --git a/manifests/m/Microsoft/PowerBIReportBuilder/15.7.1816.327/Microsoft.PowerBIReportBuilder.installer.yaml b/manifests/m/Microsoft/PowerBIReportBuilder/15.7.1816.327/Microsoft.PowerBIReportBuilder.installer.yaml deleted file mode 100644 index 79fadd2d9e85..000000000000 --- a/manifests/m/Microsoft/PowerBIReportBuilder/15.7.1816.327/Microsoft.PowerBIReportBuilder.installer.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created using wingetcreate 1.12.8.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Microsoft.PowerBIReportBuilder -PackageVersion: 15.7.1816.327 -InstallerLocale: en-US -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -ProductCode: '{543B255F-F177-4A0E-BBEB-5DC84BF2C2DA}' -ReleaseDate: 2026-03-30 -AppsAndFeaturesEntries: -- ProductCode: '{543B255F-F177-4A0E-BBEB-5DC84BF2C2DA}' - UpgradeCode: '{330BBDE8-E450-48D7-862A-4E5848329E5B}' -InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Power BI Report Builder' -Installers: -- Architecture: x64 - InstallerUrl: https://download.microsoft.com/download/a/2/e/a2ea07b5-5a65-41d7-9ac0-b46ac953ab63/PowerBIReportBuilder.msi - InstallerSha256: C1D14F456FF5DE0044604B84682F00F5E60C39A36AD09D1ED5A448C9F56AFEB8 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/PowerBIReportBuilder/15.7.1816.327/Microsoft.PowerBIReportBuilder.locale.en-US.yaml b/manifests/m/Microsoft/PowerBIReportBuilder/15.7.1816.327/Microsoft.PowerBIReportBuilder.locale.en-US.yaml deleted file mode 100644 index f23bf876bf00..000000000000 --- a/manifests/m/Microsoft/PowerBIReportBuilder/15.7.1816.327/Microsoft.PowerBIReportBuilder.locale.en-US.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created using wingetcreate 1.12.8.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Microsoft.PowerBIReportBuilder -PackageVersion: 15.7.1816.327 -PackageLocale: en-US -Publisher: Microsoft Corporation -PublisherUrl: https://www.microsoft.com/ -PublisherSupportUrl: https://support.fabric.microsoft.com/support/ -PrivacyUrl: https://privacy.microsoft.com/privacystatement -Author: Microsoft Corporation -PackageName: Power BI Report Builder -PackageUrl: https://www.microsoft.com/en-us/download/details.aspx?id=105942 -License: Proprietary -Copyright: Copyright (c) Microsoft Corporation. All rights reserved. -CopyrightUrl: https://www.microsoft.com/legal/intellectualproperty/trademarks -ShortDescription: Power BI Report Builder provides a productive report-authoring environment for IT professionals and power users of the Microsoft Power BI service. -Documentations: -- DocumentLabel: Power BI Report Builder - DocumentUrl: https://learn.microsoft.com/en-us/power-bi/paginated-reports/report-builder-power-bi -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/PowerBIReportBuilder/15.7.1816.327/Microsoft.PowerBIReportBuilder.locale.zh-CN.yaml b/manifests/m/Microsoft/PowerBIReportBuilder/15.7.1816.327/Microsoft.PowerBIReportBuilder.locale.zh-CN.yaml deleted file mode 100644 index 52b3cac3a354..000000000000 --- a/manifests/m/Microsoft/PowerBIReportBuilder/15.7.1816.327/Microsoft.PowerBIReportBuilder.locale.zh-CN.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created using wingetcreate 1.12.8.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: Microsoft.PowerBIReportBuilder -PackageVersion: 15.7.1816.327 -PackageLocale: zh-CN -Publisher: 微软公司 -PublisherUrl: https://www.microsoft.com/ -PublisherSupportUrl: https://support.fabric.microsoft.com/support/ -PrivacyUrl: https://privacy.microsoft.com/privacystatement -Author: 微软公司 -PackageName: Power BI Report Builder -PackageUrl: https://www.microsoft.com/en-us/download/details.aspx?id=105942 -License: 专有软件 -Copyright: 版权所有 (c) 微软公司。保留所有权利。 -CopyrightUrl: https://www.microsoft.com/legal/intellectualproperty/trademarks -ShortDescription: Power BI 报表生成器为 IT 专业人员和 Microsoft Power BI 服务的高级用户提供了一个高效的报告编写环境。 -Documentations: -- DocumentLabel: Power BI 报表生成器 - DocumentUrl: https://learn.microsoft.com/zh-cn/power-bi/paginated-reports/report-builder-power-bi -ManifestType: locale -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/MongoDB/Shell/2.8.3/MongoDB.Shell.installer.yaml b/manifests/m/MongoDB/Shell/2.8.3/MongoDB.Shell.installer.yaml new file mode 100644 index 000000000000..18203b721c6e --- /dev/null +++ b/manifests/m/MongoDB/Shell/2.8.3/MongoDB.Shell.installer.yaml @@ -0,0 +1,26 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: MongoDB.Shell +PackageVersion: 2.8.3 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +UpgradeBehavior: install +Commands: +- mongo +ProductCode: '{C05C63E5-7952-4446-9661-D6EF210A0863}' +ReleaseDate: 2026-05-01 +AppsAndFeaturesEntries: +- ProductCode: '{C05C63E5-7952-4446-9661-D6EF210A0863}' + UpgradeCode: '{DD25C0EE-96F6-41B6-822E-114383205DDF}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\mongosh' +Installers: +- Architecture: x64 + InstallerUrl: https://downloads.mongodb.com/compass/mongosh-2.8.3-x64.msi + InstallerSha256: 820C88B441699EA2A4C93571C590902B6D53574989E86B7D1B5FC0C2C231699F +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/MongoDB/Shell/2.8.3/MongoDB.Shell.locale.en-US.yaml b/manifests/m/MongoDB/Shell/2.8.3/MongoDB.Shell.locale.en-US.yaml new file mode 100644 index 000000000000..13d59cbac13a --- /dev/null +++ b/manifests/m/MongoDB/Shell/2.8.3/MongoDB.Shell.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: MongoDB.Shell +PackageVersion: 2.8.3 +PackageLocale: en-US +Publisher: MongoDB Inc. +PublisherUrl: https://www.mongodb.com/ +PublisherSupportUrl: https://www.mongodb.com/contact +PrivacyUrl: https://www.mongodb.com/legal/privacy-policy +Author: MongoDB Inc. +PackageName: MongoDB Shell +PackageUrl: https://www.mongodb.com/products/shell +License: Apache License 2.0 +LicenseUrl: https://github.com/mongodb-js/mongosh/raw/main/LICENSE +Copyright: Copyright 2023 MongoDB Inc. +CopyrightUrl: https://www.mongodb.com/customer-agreement +ShortDescription: The mongo shell is an interactive JavaScript interface to MongoDB. +Description: The mongo shell is an interactive JavaScript interface to MongoDB. You can use the mongo shell to query and update data as well as perform administrative operations. +Moniker: mongodb-shell +Tags: +- db +- mongo +- mongodb +- shell +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.mongodb.com/mongodb-shell/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MongoDB/Shell/2.8.3/MongoDB.Shell.yaml b/manifests/m/MongoDB/Shell/2.8.3/MongoDB.Shell.yaml new file mode 100644 index 000000000000..7630c7eec308 --- /dev/null +++ b/manifests/m/MongoDB/Shell/2.8.3/MongoDB.Shell.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: MongoDB.Shell +PackageVersion: 2.8.3 +DefaultLocale: en-US +ManifestType: version +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/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/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/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/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.yaml b/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.yaml similarity index 74% rename from manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.yaml rename to manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.yaml index e95582bf2bf6..9c825a53964f 100644 --- a/manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.yaml +++ b/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.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: 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/he/140.10.2/Mozilla.Firefox.ESR.he.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/he/140.10.2/Mozilla.Firefox.ESR.he.installer.yaml new file mode 100644 index 000000000000..f3e3b3fce0b9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/he/140.10.2/Mozilla.Firefox.ESR.he.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.he +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/he/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: C897A44A323E8AFE6A2B625B93FB51A3F84CB9C52CB50208139B51A9BF4A38A6 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 he) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/he/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: A4B362322942872D156CF876A717A7851049E7755C2423706449A5C7ED561BCF + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 he) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/he/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 01571EEE704F180D6F7C26BAA515D1907600AE4D2BFCA468B507779F3DFFFC6F + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 he) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/he/140.10.2/Mozilla.Firefox.ESR.he.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/he/140.10.2/Mozilla.Firefox.ESR.he.locale.de-DE.yaml new file mode 100644 index 000000000000..2204e7090287 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/he/140.10.2/Mozilla.Firefox.ESR.he.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.he +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 (he) +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/he/140.10.2/Mozilla.Firefox.ESR.he.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/he/140.10.2/Mozilla.Firefox.ESR.he.locale.en-US.yaml new file mode 100644 index 000000000000..86291f8873bc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/he/140.10.2/Mozilla.Firefox.ESR.he.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.he +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 (he) +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/he/140.10.2/Mozilla.Firefox.ESR.he.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/he/140.10.2/Mozilla.Firefox.ESR.he.locale.zh-CN.yaml new file mode 100644 index 000000000000..39c055734dda --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/he/140.10.2/Mozilla.Firefox.ESR.he.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.he +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 (he) +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/he/140.10.2/Mozilla.Firefox.ESR.he.yaml b/manifests/m/Mozilla/Firefox/ESR/he/140.10.2/Mozilla.Firefox.ESR.he.yaml new file mode 100644 index 000000000000..d81144118398 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/he/140.10.2/Mozilla.Firefox.ESR.he.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.he +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/an/150.0.2/Mozilla.Firefox.an.installer.yaml b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.installer.yaml new file mode 100644 index 000000000000..a8420f2841dc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.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.an +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/an/Firefox%20Setup%20150.0.2.exe + InstallerSha256: B4A7F1DD3798BCB3E9A5948EB6D348A519A0BB30E24BB4758A7726E06A4AADF1 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/an/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 408D6461D495B399D551774C4B85FBB0EE104B2D41D290FDF351E9018D825ECF +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/an/Firefox%20Setup%20150.0.2.exe + InstallerSha256: B1F10DC4710E0BD90D02A4CA1F61FD0DCAC44D1D0CF2EDA616EF8867365C79F8 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.locale.cs-CZ.yaml new file mode 100644 index 000000000000..e31d3cc3fc8b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.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.an +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/an/150.0.2/Mozilla.Firefox.an.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.locale.da-DK.yaml new file mode 100644 index 000000000000..0694dbcfbca7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.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.an +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/an/150.0.2/Mozilla.Firefox.an.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.locale.de-DE.yaml new file mode 100644 index 000000000000..2f030b2eeffb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.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.an +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/an/150.0.2/Mozilla.Firefox.an.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.locale.el-GR.yaml new file mode 100644 index 000000000000..3d5ae3888f6f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.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.an +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/an/150.0.2/Mozilla.Firefox.an.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.locale.en-GB.yaml new file mode 100644 index 000000000000..3db9213bf3b6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.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.an +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/an/150.0.2/Mozilla.Firefox.an.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.locale.en-US.yaml new file mode 100644 index 000000000000..b149202c0bc2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.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.an +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 (an) +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/an/150.0.2/Mozilla.Firefox.an.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.locale.es-MX.yaml new file mode 100644 index 000000000000..3cc11586f1ea --- /dev/null +++ b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.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.an +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/an/150.0.2/Mozilla.Firefox.an.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.locale.fr-FR.yaml new file mode 100644 index 000000000000..d64b2f69f99f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.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.an +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/an/150.0.2/Mozilla.Firefox.an.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.locale.hu-HU.yaml new file mode 100644 index 000000000000..ca2e81347443 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.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.an +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/an/150.0.2/Mozilla.Firefox.an.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.locale.ja-JP.yaml new file mode 100644 index 000000000000..3d2c6233e6b7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.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.an +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/an/150.0.2/Mozilla.Firefox.an.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.locale.nb-NO.yaml new file mode 100644 index 000000000000..a0d34b637830 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.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.an +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/an/150.0.2/Mozilla.Firefox.an.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.locale.ru-RU.yaml new file mode 100644 index 000000000000..614f291fb1fe --- /dev/null +++ b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.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.an +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/an/150.0.2/Mozilla.Firefox.an.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.locale.ta-IN.yaml new file mode 100644 index 000000000000..1a765ee0dc6b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.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.an +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/an/150.0.2/Mozilla.Firefox.an.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.locale.zh-CN.yaml new file mode 100644 index 000000000000..2ce3d39ba87a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.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.an +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/an/150.0.2/Mozilla.Firefox.an.yaml b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.an.yaml new file mode 100644 index 000000000000..43e2368c1c41 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/an/150.0.2/Mozilla.Firefox.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.an +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.installer.yaml b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.installer.yaml new file mode 100644 index 000000000000..d29f36cd8576 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.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.ar +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/ar/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 4B6C27548F8C6F51AC0959186549E76FCFF4AB485D72705C743B3DA59EC84B13 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/ar/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 5C5E6E1CA981D880B277F30C7CD0F3D0824047709A43B472078E2D5E49F70416 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/ar/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 0A4FC7F2B7BCB44B25D07B48C8CD45CCB36AA91C949C347B04D1E1A9FB1119B8 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.locale.cs-CZ.yaml new file mode 100644 index 000000000000..85a3c63da650 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.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.ar +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/ar/150.0.2/Mozilla.Firefox.ar.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.locale.da-DK.yaml new file mode 100644 index 000000000000..ad7a5ea26f7a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.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.ar +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/ar/150.0.2/Mozilla.Firefox.ar.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.locale.de-DE.yaml new file mode 100644 index 000000000000..026973746063 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.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.ar +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/ar/150.0.2/Mozilla.Firefox.ar.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.locale.el-GR.yaml new file mode 100644 index 000000000000..66744c2b3abf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.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.ar +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/ar/150.0.2/Mozilla.Firefox.ar.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.locale.en-GB.yaml new file mode 100644 index 000000000000..28897cca3b58 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.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.ar +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/ar/150.0.2/Mozilla.Firefox.ar.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.locale.en-US.yaml new file mode 100644 index 000000000000..57d88a8c86ad --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.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.ar +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 (ar) +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/ar/150.0.2/Mozilla.Firefox.ar.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.locale.es-MX.yaml new file mode 100644 index 000000000000..cbca5884e71c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.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.ar +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/ar/150.0.2/Mozilla.Firefox.ar.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.locale.fr-FR.yaml new file mode 100644 index 000000000000..420518b102b1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.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.ar +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/ar/150.0.2/Mozilla.Firefox.ar.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.locale.hu-HU.yaml new file mode 100644 index 000000000000..79bbc416399d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.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.ar +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/ar/150.0.2/Mozilla.Firefox.ar.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.locale.ja-JP.yaml new file mode 100644 index 000000000000..ab60906b1e0d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.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.ar +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/ar/150.0.2/Mozilla.Firefox.ar.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.locale.nb-NO.yaml new file mode 100644 index 000000000000..60d66dc25b7d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.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.ar +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/ar/150.0.2/Mozilla.Firefox.ar.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.locale.ru-RU.yaml new file mode 100644 index 000000000000..6678d7e5adb5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.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.ar +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/ar/150.0.2/Mozilla.Firefox.ar.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.locale.ta-IN.yaml new file mode 100644 index 000000000000..550d88525f51 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.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.ar +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/ar/150.0.2/Mozilla.Firefox.ar.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.locale.zh-CN.yaml new file mode 100644 index 000000000000..84fff83a8ea0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.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.ar +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/ar/150.0.2/Mozilla.Firefox.ar.yaml b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.ar.yaml new file mode 100644 index 000000000000..3a69c0bcd5a0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ar/150.0.2/Mozilla.Firefox.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.ar +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/bg/150.0.2/Mozilla.Firefox.bg.installer.yaml b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.installer.yaml new file mode 100644 index 000000000000..2e87f1417356 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.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.bg +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/bg/Firefox%20Setup%20150.0.2.exe + InstallerSha256: F3E497675F2AC4488749C38A4B3A7581CC06CC994A51F147B0E0555732335298 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/bg/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 9DA10D4767CF370C92485252E17CF052A1E80ADEDC1A202CA7FD453EDD188D71 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/bg/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 662A851ACF027A5A1DBACBDA020577879FE85B3B60EF153F082AA2F5FE578CD8 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.locale.cs-CZ.yaml new file mode 100644 index 000000000000..8bec4c27fa45 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.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.bg +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/bg/150.0.2/Mozilla.Firefox.bg.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.locale.da-DK.yaml new file mode 100644 index 000000000000..90c931770b13 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.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.bg +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/bg/150.0.2/Mozilla.Firefox.bg.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.locale.de-DE.yaml new file mode 100644 index 000000000000..31839addd016 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.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.bg +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/bg/150.0.2/Mozilla.Firefox.bg.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.locale.el-GR.yaml new file mode 100644 index 000000000000..885a836f3d22 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.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.bg +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/bg/150.0.2/Mozilla.Firefox.bg.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.locale.en-GB.yaml new file mode 100644 index 000000000000..f6b9a91640d8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.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.bg +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/bg/150.0.2/Mozilla.Firefox.bg.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.locale.en-US.yaml new file mode 100644 index 000000000000..f271db904d84 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.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.bg +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 (bg) +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/bg/150.0.2/Mozilla.Firefox.bg.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.locale.es-MX.yaml new file mode 100644 index 000000000000..fa61ae1f1562 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.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.bg +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/bg/150.0.2/Mozilla.Firefox.bg.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.locale.fr-FR.yaml new file mode 100644 index 000000000000..e434371d5380 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.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.bg +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/bg/150.0.2/Mozilla.Firefox.bg.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.locale.hu-HU.yaml new file mode 100644 index 000000000000..13d078db02c2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.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.bg +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/bg/150.0.2/Mozilla.Firefox.bg.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.locale.ja-JP.yaml new file mode 100644 index 000000000000..34319b576a63 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.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.bg +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/bg/150.0.2/Mozilla.Firefox.bg.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.locale.nb-NO.yaml new file mode 100644 index 000000000000..29242853b30c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.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.bg +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/bg/150.0.2/Mozilla.Firefox.bg.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.locale.ru-RU.yaml new file mode 100644 index 000000000000..023baa972bf1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.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.bg +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/bg/150.0.2/Mozilla.Firefox.bg.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.locale.ta-IN.yaml new file mode 100644 index 000000000000..369e9f386392 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.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.bg +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/bg/150.0.2/Mozilla.Firefox.bg.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.locale.zh-CN.yaml new file mode 100644 index 000000000000..efb3cb0c6fcf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.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.bg +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/bg/150.0.2/Mozilla.Firefox.bg.yaml b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.yaml new file mode 100644 index 000000000000..a3f75fc61a07 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bg/150.0.2/Mozilla.Firefox.bg.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.bg +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.installer.yaml b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.installer.yaml new file mode 100644 index 000000000000..139a480cdf19 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.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.bn +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/bn/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 425205F05779D62719C9B41A91C909BC618BDC3B8A4336DCFAF928E19C745C34 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/bn/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 2FF187A15A0D77D58690F78EC27281DA2AEB6D1B23ECE057F6C026E9CB1F22A4 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/bn/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 0A49ABE6AA64997FB7A1BB7B4EC39529B75A3199C4C75805B32C709AE6241668 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.locale.cs-CZ.yaml new file mode 100644 index 000000000000..f34defa9688e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.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.bn +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/bn/150.0.2/Mozilla.Firefox.bn.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.locale.da-DK.yaml new file mode 100644 index 000000000000..f0cfc997c043 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.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.bn +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/bn/150.0.2/Mozilla.Firefox.bn.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.locale.de-DE.yaml new file mode 100644 index 000000000000..91003924fdf9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.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.bn +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/bn/150.0.2/Mozilla.Firefox.bn.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.locale.el-GR.yaml new file mode 100644 index 000000000000..594d36e31371 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.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.bn +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/bn/150.0.2/Mozilla.Firefox.bn.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.locale.en-GB.yaml new file mode 100644 index 000000000000..6256be7478a4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.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.bn +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/bn/150.0.2/Mozilla.Firefox.bn.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.locale.en-US.yaml new file mode 100644 index 000000000000..2e78b22883b5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.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.bn +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 (bn) +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/bn/150.0.2/Mozilla.Firefox.bn.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.locale.es-MX.yaml new file mode 100644 index 000000000000..a7fe1fd8ffba --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.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.bn +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/bn/150.0.2/Mozilla.Firefox.bn.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.locale.fr-FR.yaml new file mode 100644 index 000000000000..04ee50184cce --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.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.bn +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/bn/150.0.2/Mozilla.Firefox.bn.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.locale.hu-HU.yaml new file mode 100644 index 000000000000..13d0ff721d99 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.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.bn +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/bn/150.0.2/Mozilla.Firefox.bn.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.locale.ja-JP.yaml new file mode 100644 index 000000000000..1f5b7e11de04 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.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.bn +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/bn/150.0.2/Mozilla.Firefox.bn.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.locale.nb-NO.yaml new file mode 100644 index 000000000000..13869d12620f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.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.bn +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/bn/150.0.2/Mozilla.Firefox.bn.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.locale.ru-RU.yaml new file mode 100644 index 000000000000..cd3d394f5af1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.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.bn +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/bn/150.0.2/Mozilla.Firefox.bn.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.locale.ta-IN.yaml new file mode 100644 index 000000000000..d84abb7b5db0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.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.bn +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/bn/150.0.2/Mozilla.Firefox.bn.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.locale.zh-CN.yaml new file mode 100644 index 000000000000..6dad780a4b05 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.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.bn +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/bn/150.0.2/Mozilla.Firefox.bn.yaml b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.yaml new file mode 100644 index 000000000000..5bd9607cb471 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bn/150.0.2/Mozilla.Firefox.bn.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.bn +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/cak/150.0.2/Mozilla.Firefox.cak.installer.yaml b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.installer.yaml new file mode 100644 index 000000000000..9739b3e9d908 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.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.cak +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/cak/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 0AC426BDB1296333F7715E70DA407FE2A0F2459A684010D6DE191BB81E4D6201 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/cak/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 421E442349510823D350D30ADC0472969705F4CC34B8E4B93DE268FDFD9CF856 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/cak/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 6A0BB8EEEEEDC33A39E9526DB96E3601B2D0AF59DB48A48A11E82720CF067DA6 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.locale.cs-CZ.yaml new file mode 100644 index 000000000000..f9f441b9119b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.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.cak +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/cak/150.0.2/Mozilla.Firefox.cak.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.locale.da-DK.yaml new file mode 100644 index 000000000000..4946e2e2063f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.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.cak +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/cak/150.0.2/Mozilla.Firefox.cak.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.locale.de-DE.yaml new file mode 100644 index 000000000000..73fc2e7ddc4c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.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.cak +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/cak/150.0.2/Mozilla.Firefox.cak.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.locale.el-GR.yaml new file mode 100644 index 000000000000..5844ce515c2f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.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.cak +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/cak/150.0.2/Mozilla.Firefox.cak.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.locale.en-GB.yaml new file mode 100644 index 000000000000..84ea44c0af80 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.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.cak +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/cak/150.0.2/Mozilla.Firefox.cak.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.locale.en-US.yaml new file mode 100644 index 000000000000..449d5d444804 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.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.cak +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 (cak) +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/cak/150.0.2/Mozilla.Firefox.cak.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.locale.es-MX.yaml new file mode 100644 index 000000000000..97e8fe963561 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.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.cak +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/cak/150.0.2/Mozilla.Firefox.cak.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.locale.fr-FR.yaml new file mode 100644 index 000000000000..e1eccb524632 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.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.cak +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/cak/150.0.2/Mozilla.Firefox.cak.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.locale.hu-HU.yaml new file mode 100644 index 000000000000..2499f87d7a8c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.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.cak +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/cak/150.0.2/Mozilla.Firefox.cak.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.locale.ja-JP.yaml new file mode 100644 index 000000000000..5571e50edf45 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.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.cak +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/cak/150.0.2/Mozilla.Firefox.cak.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.locale.nb-NO.yaml new file mode 100644 index 000000000000..6eb2c4f43676 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.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.cak +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/cak/150.0.2/Mozilla.Firefox.cak.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.locale.ru-RU.yaml new file mode 100644 index 000000000000..7335ceb1e1d1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.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.cak +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/cak/150.0.2/Mozilla.Firefox.cak.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.locale.ta-IN.yaml new file mode 100644 index 000000000000..034dadc3045c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.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.cak +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/cak/150.0.2/Mozilla.Firefox.cak.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.locale.zh-CN.yaml new file mode 100644 index 000000000000..f2933eeb2bee --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.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.cak +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/cak/150.0.2/Mozilla.Firefox.cak.yaml b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.cak.yaml new file mode 100644 index 000000000000..b117117c0569 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cak/150.0.2/Mozilla.Firefox.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.cak +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.installer.yaml b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.installer.yaml new file mode 100644 index 000000000000..1996255acedf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.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.cy +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/cy/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 0F9FC4DFAE325CBCCB20909048511F1A921593CF8DB8AFB14E9520043F8D09A4 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/cy/Firefox%20Setup%20150.0.2.exe + InstallerSha256: D5F0DB8F9E61FA51B0FC47B52CE3039588E0B6437ED95D7C7E4909F1786C7978 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/cy/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 5D9B17FFD37DAAB6578EC80AF7C28A2517AEC422A3B86CDA10991042FBD82458 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.locale.cs-CZ.yaml new file mode 100644 index 000000000000..21e87051db25 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.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.cy +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/cy/150.0.2/Mozilla.Firefox.cy.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.locale.da-DK.yaml new file mode 100644 index 000000000000..6d64228c67fb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.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.cy +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/cy/150.0.2/Mozilla.Firefox.cy.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.locale.de-DE.yaml new file mode 100644 index 000000000000..c62daf48390d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.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.cy +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/cy/150.0.2/Mozilla.Firefox.cy.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.locale.el-GR.yaml new file mode 100644 index 000000000000..aa200660f81b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.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.cy +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/cy/150.0.2/Mozilla.Firefox.cy.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.locale.en-GB.yaml new file mode 100644 index 000000000000..d058d96a96af --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.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.cy +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/cy/150.0.2/Mozilla.Firefox.cy.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.locale.en-US.yaml new file mode 100644 index 000000000000..08907df8ff8c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.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.cy +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 (cy) +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/cy/150.0.2/Mozilla.Firefox.cy.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.locale.es-MX.yaml new file mode 100644 index 000000000000..db619c382a34 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.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.cy +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/cy/150.0.2/Mozilla.Firefox.cy.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.locale.fr-FR.yaml new file mode 100644 index 000000000000..a90010b6378d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.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.cy +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/cy/150.0.2/Mozilla.Firefox.cy.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.locale.hu-HU.yaml new file mode 100644 index 000000000000..944d2bae62d7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.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.cy +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/cy/150.0.2/Mozilla.Firefox.cy.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.locale.ja-JP.yaml new file mode 100644 index 000000000000..333cf8ba0876 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.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.cy +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/cy/150.0.2/Mozilla.Firefox.cy.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.locale.nb-NO.yaml new file mode 100644 index 000000000000..56abd516aea5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.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.cy +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/cy/150.0.2/Mozilla.Firefox.cy.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.locale.ru-RU.yaml new file mode 100644 index 000000000000..472885940703 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.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.cy +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/cy/150.0.2/Mozilla.Firefox.cy.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.locale.ta-IN.yaml new file mode 100644 index 000000000000..24ca60536f2b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.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.cy +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/cy/150.0.2/Mozilla.Firefox.cy.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.locale.zh-CN.yaml new file mode 100644 index 000000000000..d9e71fadd46f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.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.cy +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/cy/150.0.2/Mozilla.Firefox.cy.yaml b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.cy.yaml new file mode 100644 index 000000000000..bc4cb9d33a2e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/cy/150.0.2/Mozilla.Firefox.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.cy +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.installer.yaml b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.installer.yaml new file mode 100644 index 000000000000..a2a6a3cdeebc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.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.da +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/da/Firefox%20Setup%20150.0.2.exe + InstallerSha256: DE1EC563A04D8DD7D0EA820B1B0B1C412A912C869660A0EA6DCAA9A358CA4A6B +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/da/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 59E03E1A63251CD9AD1F5EC01E64598B33219E799A0EF6D768389BBE2E8EE151 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/da/Firefox%20Setup%20150.0.2.exe + InstallerSha256: CF313FF9AFA02763ED25E89FCE4A0FCBA75FD312B734BCE353D94D2C8FA61B71 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.locale.cs-CZ.yaml new file mode 100644 index 000000000000..2744f53c6214 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.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.da +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/da/150.0.2/Mozilla.Firefox.da.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.locale.da-DK.yaml new file mode 100644 index 000000000000..16d0fbfa43d3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.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.da +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/da/150.0.2/Mozilla.Firefox.da.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.locale.de-DE.yaml new file mode 100644 index 000000000000..48087bd33f44 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.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.da +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/da/150.0.2/Mozilla.Firefox.da.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.locale.el-GR.yaml new file mode 100644 index 000000000000..1d65d162f75d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.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.da +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/da/150.0.2/Mozilla.Firefox.da.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.locale.en-GB.yaml new file mode 100644 index 000000000000..ba7f75ddda82 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.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.da +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/da/150.0.2/Mozilla.Firefox.da.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.locale.en-US.yaml new file mode 100644 index 000000000000..7e6238107fc2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.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.da +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 (da) +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/da/150.0.2/Mozilla.Firefox.da.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.locale.es-MX.yaml new file mode 100644 index 000000000000..8a0a3481feaa --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.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.da +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/da/150.0.2/Mozilla.Firefox.da.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.locale.fr-FR.yaml new file mode 100644 index 000000000000..af718afea94c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.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.da +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/da/150.0.2/Mozilla.Firefox.da.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.locale.hu-HU.yaml new file mode 100644 index 000000000000..de9523a7a0d9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.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.da +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/da/150.0.2/Mozilla.Firefox.da.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.locale.ja-JP.yaml new file mode 100644 index 000000000000..0b2c50627637 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.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.da +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/da/150.0.2/Mozilla.Firefox.da.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.locale.nb-NO.yaml new file mode 100644 index 000000000000..8fa55db825bd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.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.da +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/da/150.0.2/Mozilla.Firefox.da.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.locale.ru-RU.yaml new file mode 100644 index 000000000000..1454ca2dfe69 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.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.da +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/da/150.0.2/Mozilla.Firefox.da.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.locale.ta-IN.yaml new file mode 100644 index 000000000000..0c6ba4eca9cd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.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.da +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/da/150.0.2/Mozilla.Firefox.da.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.locale.zh-CN.yaml new file mode 100644 index 000000000000..bd922982433a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.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.da +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/da/150.0.2/Mozilla.Firefox.da.yaml b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.da.yaml new file mode 100644 index 000000000000..3089ed257a17 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/da/150.0.2/Mozilla.Firefox.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.da +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.installer.yaml b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.installer.yaml new file mode 100644 index 000000000000..3d424061d1f2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.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.de +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/de/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 472E20404E6E3D009BB2669389C7142F05138C33176E607625B70B4B672CCDE4 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/de/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 1F27DFFF207DDD46EB053934A56B62B89ECFE60DD9926EC24C5D236E24F28190 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/de/Firefox%20Setup%20150.0.2.exe + InstallerSha256: EB592C5E3B3DFEBD6E28AD5FA897DBB78FE87F117D310280C56C3891D776782D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.locale.cs-CZ.yaml new file mode 100644 index 000000000000..6340d117cba1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.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.de +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/de/150.0.2/Mozilla.Firefox.de.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.locale.da-DK.yaml new file mode 100644 index 000000000000..cc319d6571b6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.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.de +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/de/150.0.2/Mozilla.Firefox.de.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.locale.de-DE.yaml new file mode 100644 index 000000000000..b2c58ba2776f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.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.de +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/de/150.0.2/Mozilla.Firefox.de.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.locale.el-GR.yaml new file mode 100644 index 000000000000..bfaae286fbba --- /dev/null +++ b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.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.de +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/de/150.0.2/Mozilla.Firefox.de.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.locale.en-GB.yaml new file mode 100644 index 000000000000..097e12c48fc7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.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.de +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/de/150.0.2/Mozilla.Firefox.de.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.locale.en-US.yaml new file mode 100644 index 000000000000..4627045ad2d6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.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.de +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 (de) +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/de/150.0.2/Mozilla.Firefox.de.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.locale.es-MX.yaml new file mode 100644 index 000000000000..7be1ec2efb06 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.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.de +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/de/150.0.2/Mozilla.Firefox.de.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.locale.fr-FR.yaml new file mode 100644 index 000000000000..ddbb52591658 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.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.de +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/de/150.0.2/Mozilla.Firefox.de.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.locale.hu-HU.yaml new file mode 100644 index 000000000000..039706b82ae6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.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.de +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/de/150.0.2/Mozilla.Firefox.de.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.locale.ja-JP.yaml new file mode 100644 index 000000000000..fe10efaa2119 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.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.de +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/de/150.0.2/Mozilla.Firefox.de.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.locale.nb-NO.yaml new file mode 100644 index 000000000000..e527dadab9e6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.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.de +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/de/150.0.2/Mozilla.Firefox.de.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.locale.ru-RU.yaml new file mode 100644 index 000000000000..061249541e27 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.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.de +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/de/150.0.2/Mozilla.Firefox.de.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.locale.ta-IN.yaml new file mode 100644 index 000000000000..4d78f201df4c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.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.de +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/de/150.0.2/Mozilla.Firefox.de.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.locale.zh-CN.yaml new file mode 100644 index 000000000000..04e15fc751b9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.de +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/de/150.0.2/Mozilla.Firefox.de.yaml b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.de.yaml new file mode 100644 index 000000000000..aaddcdb4acce --- /dev/null +++ b/manifests/m/Mozilla/Firefox/de/150.0.2/Mozilla.Firefox.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.de +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.installer.yaml b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.installer.yaml new file mode 100644 index 000000000000..133e32c23959 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.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.dsb +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/dsb/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 79DD4CABA246F0BE11BB6D5AEE3E8BCE7492D648C1170E3F3C740862F3A92101 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/dsb/Firefox%20Setup%20150.0.2.exe + InstallerSha256: E6D476A897B05E66A189E503415147AB480A89FCF48F3C31F23B76B45BA5D9EE +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/dsb/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 32427913EAC2B62C07E26FF94E8B55E06A69D2F0F65698A3107BB9BE23A80E91 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.locale.cs-CZ.yaml new file mode 100644 index 000000000000..370f963f5bf4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.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.dsb +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/dsb/150.0.2/Mozilla.Firefox.dsb.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.locale.da-DK.yaml new file mode 100644 index 000000000000..5f7a46437a11 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.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.dsb +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/dsb/150.0.2/Mozilla.Firefox.dsb.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.locale.de-DE.yaml new file mode 100644 index 000000000000..14bf4b65c9f9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.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.dsb +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/dsb/150.0.2/Mozilla.Firefox.dsb.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.locale.el-GR.yaml new file mode 100644 index 000000000000..98333799669b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.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.dsb +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/dsb/150.0.2/Mozilla.Firefox.dsb.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.locale.en-GB.yaml new file mode 100644 index 000000000000..2c4c936f8ee3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.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.dsb +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/dsb/150.0.2/Mozilla.Firefox.dsb.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.locale.en-US.yaml new file mode 100644 index 000000000000..4b832ca6b9aa --- /dev/null +++ b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.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.dsb +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 (dsb) +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/dsb/150.0.2/Mozilla.Firefox.dsb.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.locale.es-MX.yaml new file mode 100644 index 000000000000..1007cb29d340 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.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.dsb +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/dsb/150.0.2/Mozilla.Firefox.dsb.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.locale.fr-FR.yaml new file mode 100644 index 000000000000..d8303917c1c8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.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.dsb +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/dsb/150.0.2/Mozilla.Firefox.dsb.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.locale.hu-HU.yaml new file mode 100644 index 000000000000..fb4f940eb623 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.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.dsb +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/dsb/150.0.2/Mozilla.Firefox.dsb.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.locale.ja-JP.yaml new file mode 100644 index 000000000000..646178577c96 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.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.dsb +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/dsb/150.0.2/Mozilla.Firefox.dsb.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.locale.nb-NO.yaml new file mode 100644 index 000000000000..826411c3273d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.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.dsb +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/dsb/150.0.2/Mozilla.Firefox.dsb.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.locale.ru-RU.yaml new file mode 100644 index 000000000000..620dc81f0521 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.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.dsb +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/dsb/150.0.2/Mozilla.Firefox.dsb.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.locale.ta-IN.yaml new file mode 100644 index 000000000000..a6f3eb8178b3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.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.dsb +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/dsb/150.0.2/Mozilla.Firefox.dsb.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.locale.zh-CN.yaml new file mode 100644 index 000000000000..7c89405cebfc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.dsb +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/dsb/150.0.2/Mozilla.Firefox.dsb.yaml b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.yaml new file mode 100644 index 000000000000..009c0299c4a3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/dsb/150.0.2/Mozilla.Firefox.dsb.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.dsb +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.installer.yaml b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.installer.yaml new file mode 100644 index 000000000000..bb601e624d36 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.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.el +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/el/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 0C8D25ED48706B744C8486A0527C30F527164324620F2FF216F39015778201FB +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/el/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 86829ADFDE1922634BBE83E3E8A0A3D83DA303C87F83F936F6FFDD6247D39AA4 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/el/Firefox%20Setup%20150.0.2.exe + InstallerSha256: A0F5059A1EE0084C0D6E55F8ECE0538389DB1E61B9CCF9B7BD44AED813E9F716 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.locale.cs-CZ.yaml new file mode 100644 index 000000000000..250d1043a52b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.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.el +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/el/150.0.2/Mozilla.Firefox.el.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.locale.da-DK.yaml new file mode 100644 index 000000000000..770be2c0d2c4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.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.el +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/el/150.0.2/Mozilla.Firefox.el.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.locale.de-DE.yaml new file mode 100644 index 000000000000..a93f4d8a559e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.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.el +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/el/150.0.2/Mozilla.Firefox.el.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.locale.el-GR.yaml new file mode 100644 index 000000000000..5bea7c2b056c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.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.el +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/el/150.0.2/Mozilla.Firefox.el.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.locale.en-GB.yaml new file mode 100644 index 000000000000..2f6be26b51cd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.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.el +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/el/150.0.2/Mozilla.Firefox.el.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.locale.en-US.yaml new file mode 100644 index 000000000000..d9590ab05197 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.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.el +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 (el) +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/el/150.0.2/Mozilla.Firefox.el.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.locale.es-MX.yaml new file mode 100644 index 000000000000..4db56995fb98 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.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.el +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/el/150.0.2/Mozilla.Firefox.el.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.locale.fr-FR.yaml new file mode 100644 index 000000000000..45a80d465f7f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.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.el +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/el/150.0.2/Mozilla.Firefox.el.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.locale.hu-HU.yaml new file mode 100644 index 000000000000..0b64714771c6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.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.el +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/el/150.0.2/Mozilla.Firefox.el.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.locale.ja-JP.yaml new file mode 100644 index 000000000000..1d695bdabc43 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.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.el +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/el/150.0.2/Mozilla.Firefox.el.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.locale.nb-NO.yaml new file mode 100644 index 000000000000..6950fdae412f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.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.el +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/el/150.0.2/Mozilla.Firefox.el.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.locale.ru-RU.yaml new file mode 100644 index 000000000000..1404989366b8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.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.el +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/el/150.0.2/Mozilla.Firefox.el.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.locale.ta-IN.yaml new file mode 100644 index 000000000000..7f1de83975ae --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.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.el +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/el/150.0.2/Mozilla.Firefox.el.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.locale.zh-CN.yaml new file mode 100644 index 000000000000..68199c8b3eee --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.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.el +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/el/150.0.2/Mozilla.Firefox.el.yaml b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.yaml new file mode 100644 index 000000000000..f5fa59da636e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/el/150.0.2/Mozilla.Firefox.el.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.el +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.installer.yaml b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.installer.yaml new file mode 100644 index 000000000000..9bda06a1ca7a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.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.en-GB +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/en-GB/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 141B38630A2E31E3A20547140C6FBCA41BB7EC9CCD13D6575BA683E8755CB3C2 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/en-GB/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 650C7311D6594D8A8C6161DEEDA2151415BD0F48B69F088EA636015BF2C79AC4 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/en-GB/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 9672F3001F5EB48C605BFD1AC6CAF5462E84864646216BD6A41028FB66C126B5 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.cs-CZ.yaml new file mode 100644 index 000000000000..bb1d18f94f0a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.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.en-GB +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/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.da-DK.yaml new file mode 100644 index 000000000000..fce1acc8fafd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.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.en-GB +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/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.de-DE.yaml new file mode 100644 index 000000000000..fc99101159fa --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.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.en-GB +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/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.el-GR.yaml new file mode 100644 index 000000000000..18b7ac0575c0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.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.en-GB +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/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.en-GB.yaml new file mode 100644 index 000000000000..98705115c4a8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.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.en-GB +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/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.en-US.yaml new file mode 100644 index 000000000000..e335f725ec5a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.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.en-GB +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 (en-GB) +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/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.es-MX.yaml new file mode 100644 index 000000000000..86e215c300b8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.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.en-GB +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/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.fr-FR.yaml new file mode 100644 index 000000000000..c2284bd7d9a3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.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.en-GB +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/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.hu-HU.yaml new file mode 100644 index 000000000000..b9755e22026b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.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.en-GB +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/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.ja-JP.yaml new file mode 100644 index 000000000000..c39dee7312bb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.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.en-GB +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/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.nb-NO.yaml new file mode 100644 index 000000000000..fcc9049c1174 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.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.en-GB +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/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.ru-RU.yaml new file mode 100644 index 000000000000..043be2f3b58c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.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.en-GB +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/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.ta-IN.yaml new file mode 100644 index 000000000000..afe0a8c0231f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.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.en-GB +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/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.locale.zh-CN.yaml new file mode 100644 index 000000000000..521dbd922078 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.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.en-GB +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/en-GB/150.0.2/Mozilla.Firefox.en-GB.yaml b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.yaml new file mode 100644 index 000000000000..7c8b6de77123 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/en-GB/150.0.2/Mozilla.Firefox.en-GB.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.en-GB +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.installer.yaml b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.installer.yaml new file mode 100644 index 000000000000..f006ca407b4a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.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.es-MX +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/es-MX/Firefox%20Setup%20150.0.2.exe + InstallerSha256: AD6AA91A9EACB25534242C170D00BEEC8DAB84FC405C5B3C5C16F4FF68BFAC61 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/es-MX/Firefox%20Setup%20150.0.2.exe + InstallerSha256: D6C599E4DB5A595DD936EB2CBBAE527A8B284B7C159D8FEF68E391649B97F6AE +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/es-MX/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 9660F4E0EE5E6DD96B3FD05325EB40F7A12E6B128A04A1D65CBCAA7A4FC4987A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.cs-CZ.yaml new file mode 100644 index 000000000000..efd781ce2dc3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.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.es-MX +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/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.da-DK.yaml new file mode 100644 index 000000000000..3d4636f13c22 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.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.es-MX +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/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.de-DE.yaml new file mode 100644 index 000000000000..714698ec57f3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.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.es-MX +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/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.el-GR.yaml new file mode 100644 index 000000000000..f2240874a937 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.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.es-MX +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/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.en-GB.yaml new file mode 100644 index 000000000000..9822e0de69c1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.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.es-MX +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/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.en-US.yaml new file mode 100644 index 000000000000..0ecbc9d40193 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.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.es-MX +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 (es-MX) +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/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.es-MX.yaml new file mode 100644 index 000000000000..1523c3a29cf1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.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.es-MX +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/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.fr-FR.yaml new file mode 100644 index 000000000000..bfc30154749e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.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.es-MX +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/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.hu-HU.yaml new file mode 100644 index 000000000000..5ded6b1a00ea --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.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.es-MX +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/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.ja-JP.yaml new file mode 100644 index 000000000000..8d311b82dfb3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.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.es-MX +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/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.nb-NO.yaml new file mode 100644 index 000000000000..1ce38e227898 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.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.es-MX +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/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.ru-RU.yaml new file mode 100644 index 000000000000..6f89d5e036f1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.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.es-MX +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/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.ta-IN.yaml new file mode 100644 index 000000000000..f0a2ab7e96ad --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.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.es-MX +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/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.zh-CN.yaml new file mode 100644 index 000000000000..f52451c7591b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-MX +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/es-MX/150.0.2/Mozilla.Firefox.es-MX.yaml b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.es-MX.yaml new file mode 100644 index 000000000000..dcfc86923bff --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-MX/150.0.2/Mozilla.Firefox.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.es-MX +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/fur/150.0.2/Mozilla.Firefox.fur.installer.yaml b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.installer.yaml new file mode 100644 index 000000000000..a68b19b34b2e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.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.fur +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/fur/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 88E0382B72BA747AF45EB1AFAE22772DAF698B38AF9BBE4927F88242BB62E1D0 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/fur/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 9593DF7253ACAF2CDC982FDCE8A604A83078F996EBD3E3DFFD1296F2B036CD56 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/fur/Firefox%20Setup%20150.0.2.exe + InstallerSha256: E8242B048E89C782DF3B67CBE4FBCC885CCB6649E283F3669DD9CC21D7C55BED +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.locale.cs-CZ.yaml new file mode 100644 index 000000000000..ca22da16f44c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.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.fur +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/fur/150.0.2/Mozilla.Firefox.fur.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.locale.da-DK.yaml new file mode 100644 index 000000000000..68dc89fb20de --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.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.fur +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/fur/150.0.2/Mozilla.Firefox.fur.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.locale.de-DE.yaml new file mode 100644 index 000000000000..75af6dbb980f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.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.fur +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/fur/150.0.2/Mozilla.Firefox.fur.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.locale.el-GR.yaml new file mode 100644 index 000000000000..285601b56940 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.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.fur +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/fur/150.0.2/Mozilla.Firefox.fur.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.locale.en-GB.yaml new file mode 100644 index 000000000000..3dc69310c7f7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.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.fur +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/fur/150.0.2/Mozilla.Firefox.fur.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.locale.en-US.yaml new file mode 100644 index 000000000000..15ca1c3bbda3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.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.fur +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 (fur) +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/fur/150.0.2/Mozilla.Firefox.fur.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.locale.es-MX.yaml new file mode 100644 index 000000000000..38d5c6eabd40 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.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.fur +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/fur/150.0.2/Mozilla.Firefox.fur.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.locale.fr-FR.yaml new file mode 100644 index 000000000000..76f79c0000af --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.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.fur +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/fur/150.0.2/Mozilla.Firefox.fur.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.locale.hu-HU.yaml new file mode 100644 index 000000000000..6b577ad3dda9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.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.fur +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/fur/150.0.2/Mozilla.Firefox.fur.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.locale.ja-JP.yaml new file mode 100644 index 000000000000..636978edf8d8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.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.fur +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/fur/150.0.2/Mozilla.Firefox.fur.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.locale.nb-NO.yaml new file mode 100644 index 000000000000..e09e0279f011 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.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.fur +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/fur/150.0.2/Mozilla.Firefox.fur.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.locale.ru-RU.yaml new file mode 100644 index 000000000000..4edd6c80371f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.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.fur +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/fur/150.0.2/Mozilla.Firefox.fur.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.locale.ta-IN.yaml new file mode 100644 index 000000000000..6d87361a5d87 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.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.fur +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/fur/150.0.2/Mozilla.Firefox.fur.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.locale.zh-CN.yaml new file mode 100644 index 000000000000..ee17edaa6424 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.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.fur +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/fur/150.0.2/Mozilla.Firefox.fur.yaml b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.yaml new file mode 100644 index 000000000000..6a19c5efc947 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fur/150.0.2/Mozilla.Firefox.fur.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.fur +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/ka/150.0.2/Mozilla.Firefox.ka.installer.yaml b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.installer.yaml new file mode 100644 index 000000000000..b2065f129bd3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.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.ka +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/ka/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 3F13606896F89D706F32B433F44517DD864855464DB60AFF1FC71678F80131F1 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/ka/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 3E9BD52E75C8F62D6A9175E0AC35DA348D4D7A67BF61FD80C5F515457C99974D +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/ka/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 098008339FA9BE295ADECA3F3FB1542D48AC7F736F161967200A2008647F9344 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.locale.cs-CZ.yaml new file mode 100644 index 000000000000..c74aea5d2465 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.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.ka +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/ka/150.0.2/Mozilla.Firefox.ka.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.locale.da-DK.yaml new file mode 100644 index 000000000000..835fe4612711 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.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.ka +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/ka/150.0.2/Mozilla.Firefox.ka.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.locale.de-DE.yaml new file mode 100644 index 000000000000..b7853fcb21f7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.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.ka +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/ka/150.0.2/Mozilla.Firefox.ka.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.locale.el-GR.yaml new file mode 100644 index 000000000000..2599130404d0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.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.ka +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/ka/150.0.2/Mozilla.Firefox.ka.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.locale.en-GB.yaml new file mode 100644 index 000000000000..5bc7cea57093 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.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.ka +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/ka/150.0.2/Mozilla.Firefox.ka.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.locale.en-US.yaml new file mode 100644 index 000000000000..24889a07cae3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.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.ka +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 (ka) +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/ka/150.0.2/Mozilla.Firefox.ka.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.locale.es-MX.yaml new file mode 100644 index 000000000000..2ad247e42897 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.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.ka +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/ka/150.0.2/Mozilla.Firefox.ka.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.locale.fr-FR.yaml new file mode 100644 index 000000000000..6684c7135245 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.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.ka +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/ka/150.0.2/Mozilla.Firefox.ka.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.locale.hu-HU.yaml new file mode 100644 index 000000000000..c9e9a3f17525 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.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.ka +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/ka/150.0.2/Mozilla.Firefox.ka.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.locale.ja-JP.yaml new file mode 100644 index 000000000000..646b4f157891 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.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.ka +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/ka/150.0.2/Mozilla.Firefox.ka.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.locale.nb-NO.yaml new file mode 100644 index 000000000000..e92df259c157 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.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.ka +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/ka/150.0.2/Mozilla.Firefox.ka.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.locale.ru-RU.yaml new file mode 100644 index 000000000000..c756ec982065 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.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.ka +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/ka/150.0.2/Mozilla.Firefox.ka.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.locale.ta-IN.yaml new file mode 100644 index 000000000000..f211eb2d2f8d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.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.ka +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/ka/150.0.2/Mozilla.Firefox.ka.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.locale.zh-CN.yaml new file mode 100644 index 000000000000..bbad0e3f1950 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.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.ka +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/ka/150.0.2/Mozilla.Firefox.ka.yaml b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.yaml new file mode 100644 index 000000000000..15e497da53e8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ka/150.0.2/Mozilla.Firefox.ka.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.ka +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/kn/150.0.2/Mozilla.Firefox.kn.installer.yaml b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.installer.yaml new file mode 100644 index 000000000000..7634da859956 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.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.kn +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/kn/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 46CD06E08AC898C2B06A51B6B1FB79D4C7BD4370D4B3952A181C9A75BBB23A5C +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/kn/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 94B818DFB03594651767A797CE43B731BA91A54E67C63344D0536EFAC0C17836 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/kn/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 5DE16E2B91405FA9B8B76CF00F560275D4AA03BFAC3C376D7393427A1A668AAB +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.locale.cs-CZ.yaml new file mode 100644 index 000000000000..db26efbad061 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.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.kn +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/kn/150.0.2/Mozilla.Firefox.kn.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.locale.da-DK.yaml new file mode 100644 index 000000000000..a01e8be5d1ce --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.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.kn +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/kn/150.0.2/Mozilla.Firefox.kn.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.locale.de-DE.yaml new file mode 100644 index 000000000000..bfe41953fb70 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.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.kn +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/kn/150.0.2/Mozilla.Firefox.kn.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.locale.el-GR.yaml new file mode 100644 index 000000000000..18b856305758 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.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.kn +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/kn/150.0.2/Mozilla.Firefox.kn.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.locale.en-GB.yaml new file mode 100644 index 000000000000..387e0296d634 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.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.kn +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/kn/150.0.2/Mozilla.Firefox.kn.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.locale.en-US.yaml new file mode 100644 index 000000000000..4afa904216e3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.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.kn +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 (kn) +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/kn/150.0.2/Mozilla.Firefox.kn.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.locale.es-MX.yaml new file mode 100644 index 000000000000..bbb4df8f699c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.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.kn +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/kn/150.0.2/Mozilla.Firefox.kn.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.locale.fr-FR.yaml new file mode 100644 index 000000000000..81e83f52ad7c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.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.kn +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/kn/150.0.2/Mozilla.Firefox.kn.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.locale.hu-HU.yaml new file mode 100644 index 000000000000..5c327fcc9f15 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.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.kn +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/kn/150.0.2/Mozilla.Firefox.kn.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.locale.ja-JP.yaml new file mode 100644 index 000000000000..bca002cfbbf0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.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.kn +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/kn/150.0.2/Mozilla.Firefox.kn.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.locale.nb-NO.yaml new file mode 100644 index 000000000000..9d38bc3c5daa --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.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.kn +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/kn/150.0.2/Mozilla.Firefox.kn.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.locale.ru-RU.yaml new file mode 100644 index 000000000000..70618cabd7f1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.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.kn +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/kn/150.0.2/Mozilla.Firefox.kn.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.locale.ta-IN.yaml new file mode 100644 index 000000000000..e82f5b105692 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.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.kn +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/kn/150.0.2/Mozilla.Firefox.kn.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.locale.zh-CN.yaml new file mode 100644 index 000000000000..86635c9c85de --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.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.kn +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/kn/150.0.2/Mozilla.Firefox.kn.yaml b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.yaml new file mode 100644 index 000000000000..9954897f5d1c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/kn/150.0.2/Mozilla.Firefox.kn.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.kn +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.installer.yaml b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.installer.yaml new file mode 100644 index 000000000000..3f126a0b718d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.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.ko +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/ko/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 6BAAA321AFB92F44712F65A1741B1260BE9DD663A4F783F0A518572694752AF5 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/ko/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 0AF214CE679455657503C9F82AC5B99F8F6D138DCA906B04BB6B18901E0C2EC0 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/ko/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 86C214A9730901F34661E39C1B64B5F236ECFF2770A9E09D6CE914922A6CC0CC +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.locale.cs-CZ.yaml new file mode 100644 index 000000000000..dba222d043c2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.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.ko +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/ko/150.0.2/Mozilla.Firefox.ko.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.locale.da-DK.yaml new file mode 100644 index 000000000000..aadf96130293 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.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.ko +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/ko/150.0.2/Mozilla.Firefox.ko.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.locale.de-DE.yaml new file mode 100644 index 000000000000..44a6971c0004 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.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.ko +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/ko/150.0.2/Mozilla.Firefox.ko.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.locale.el-GR.yaml new file mode 100644 index 000000000000..8292ebeb54a7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.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.ko +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/ko/150.0.2/Mozilla.Firefox.ko.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.locale.en-GB.yaml new file mode 100644 index 000000000000..fc60e8186edb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.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.ko +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/ko/150.0.2/Mozilla.Firefox.ko.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.locale.en-US.yaml new file mode 100644 index 000000000000..c4b30ac0a5e8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.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.ko +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 (ko) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: 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/ko/150.0.2/Mozilla.Firefox.ko.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.locale.es-MX.yaml new file mode 100644 index 000000000000..9da662874cc8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.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.ko +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/ko/150.0.2/Mozilla.Firefox.ko.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.locale.fr-FR.yaml new file mode 100644 index 000000000000..3530c4b22ea7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.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.ko +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/ko/150.0.2/Mozilla.Firefox.ko.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.locale.hu-HU.yaml new file mode 100644 index 000000000000..8420efa92a6b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.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.ko +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/ko/150.0.2/Mozilla.Firefox.ko.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.locale.ja-JP.yaml new file mode 100644 index 000000000000..f7fe12c865a2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.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.ko +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/ko/150.0.2/Mozilla.Firefox.ko.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.locale.nb-NO.yaml new file mode 100644 index 000000000000..8ed9ed909485 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.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.ko +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/ko/150.0.2/Mozilla.Firefox.ko.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.locale.ru-RU.yaml new file mode 100644 index 000000000000..8de49212e709 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.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.ko +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/ko/150.0.2/Mozilla.Firefox.ko.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.locale.ta-IN.yaml new file mode 100644 index 000000000000..f6d81c32e527 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.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.ko +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/ko/150.0.2/Mozilla.Firefox.ko.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.locale.zh-CN.yaml new file mode 100644 index 000000000000..228b1fb2cf86 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.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.ko +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/ko/150.0.2/Mozilla.Firefox.ko.yaml b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.yaml new file mode 100644 index 000000000000..a2eb96f16491 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ko/150.0.2/Mozilla.Firefox.ko.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ko +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.installer.yaml b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.installer.yaml new file mode 100644 index 000000000000..8f4202cc48d3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.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.lv +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/lv/Firefox%20Setup%20150.0.2.exe + InstallerSha256: B2FAD5A42B17946AA31ADFBBEFA48393068E8E84A040C8AF64CDEDB8A39C08F3 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/lv/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 800BD41D4EDFB92C25428EDB85D23516F1F6D3F09A65C90EB1B6F7F4DFBC828C +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/lv/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 7B6BB9F641775269611B447710550DFE782117287C43901CAD551BD8C59B9231 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.locale.cs-CZ.yaml new file mode 100644 index 000000000000..c50238753f69 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.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.lv +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/lv/150.0.2/Mozilla.Firefox.lv.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.locale.da-DK.yaml new file mode 100644 index 000000000000..eaa15ab6db08 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.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.lv +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/lv/150.0.2/Mozilla.Firefox.lv.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.locale.de-DE.yaml new file mode 100644 index 000000000000..6ad58f9c3a28 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.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.lv +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/lv/150.0.2/Mozilla.Firefox.lv.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.locale.el-GR.yaml new file mode 100644 index 000000000000..ee30b5822556 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.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.lv +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/lv/150.0.2/Mozilla.Firefox.lv.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.locale.en-GB.yaml new file mode 100644 index 000000000000..d004f23b6706 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.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.lv +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/lv/150.0.2/Mozilla.Firefox.lv.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.locale.en-US.yaml new file mode 100644 index 000000000000..2d1043736611 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.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.lv +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 (lv) +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/lv/150.0.2/Mozilla.Firefox.lv.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.locale.es-MX.yaml new file mode 100644 index 000000000000..443c9c8e7e5e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.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.lv +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/lv/150.0.2/Mozilla.Firefox.lv.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.locale.fr-FR.yaml new file mode 100644 index 000000000000..3c421dc1844e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.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.lv +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/lv/150.0.2/Mozilla.Firefox.lv.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.locale.hu-HU.yaml new file mode 100644 index 000000000000..834f14b872d6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.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.lv +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/lv/150.0.2/Mozilla.Firefox.lv.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.locale.ja-JP.yaml new file mode 100644 index 000000000000..e8f10bda0c6f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.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.lv +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/lv/150.0.2/Mozilla.Firefox.lv.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.locale.nb-NO.yaml new file mode 100644 index 000000000000..2be8ba20b4e6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.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.lv +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/lv/150.0.2/Mozilla.Firefox.lv.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.locale.ru-RU.yaml new file mode 100644 index 000000000000..944a15b38d92 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.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.lv +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/lv/150.0.2/Mozilla.Firefox.lv.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.locale.ta-IN.yaml new file mode 100644 index 000000000000..ae69924caea5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.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.lv +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/lv/150.0.2/Mozilla.Firefox.lv.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.locale.zh-CN.yaml new file mode 100644 index 000000000000..e19298f5b8b8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.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.lv +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/lv/150.0.2/Mozilla.Firefox.lv.yaml b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.yaml new file mode 100644 index 000000000000..2637375f28be --- /dev/null +++ b/manifests/m/Mozilla/Firefox/lv/150.0.2/Mozilla.Firefox.lv.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.lv +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/my/150.0.2/Mozilla.Firefox.my.installer.yaml b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.installer.yaml new file mode 100644 index 000000000000..207022a03d0b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.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.my +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/my/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 4DE44D37F90AD5E9E53C0AABBAFAFC19F5501179864B15EFD3028413BCA86604 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/my/Firefox%20Setup%20150.0.2.exe + InstallerSha256: FA0D9B1EAA91C95C6FCAFBD7027635B1FB241C4321660332014A3E740155217E +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/my/Firefox%20Setup%20150.0.2.exe + InstallerSha256: C509334ADE859F50A002D4A5DF79CB6E2C5424299DFAA388E110CB1502D0B33E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.locale.cs-CZ.yaml new file mode 100644 index 000000000000..42f574d0457b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.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.my +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/my/150.0.2/Mozilla.Firefox.my.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.locale.da-DK.yaml new file mode 100644 index 000000000000..9ded6892666e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.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.my +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/my/150.0.2/Mozilla.Firefox.my.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.locale.de-DE.yaml new file mode 100644 index 000000000000..ef62b17fe5ba --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.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.my +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/my/150.0.2/Mozilla.Firefox.my.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.locale.el-GR.yaml new file mode 100644 index 000000000000..57b1f1eee1b6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.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.my +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/my/150.0.2/Mozilla.Firefox.my.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.locale.en-GB.yaml new file mode 100644 index 000000000000..d1c9158dfbbf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.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.my +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/my/150.0.2/Mozilla.Firefox.my.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.locale.en-US.yaml new file mode 100644 index 000000000000..773168b2bdd9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.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.my +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 (my) +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/my/150.0.2/Mozilla.Firefox.my.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.locale.es-MX.yaml new file mode 100644 index 000000000000..7a4d64827310 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.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.my +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/my/150.0.2/Mozilla.Firefox.my.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.locale.fr-FR.yaml new file mode 100644 index 000000000000..d7ed2ddb31f2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.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.my +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/my/150.0.2/Mozilla.Firefox.my.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.locale.hu-HU.yaml new file mode 100644 index 000000000000..3263bedeab08 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.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.my +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/my/150.0.2/Mozilla.Firefox.my.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.locale.ja-JP.yaml new file mode 100644 index 000000000000..8302bcce65ed --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.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.my +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/my/150.0.2/Mozilla.Firefox.my.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.locale.nb-NO.yaml new file mode 100644 index 000000000000..636ee648629a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.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.my +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/my/150.0.2/Mozilla.Firefox.my.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.locale.ru-RU.yaml new file mode 100644 index 000000000000..de7f6d415c7e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.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.my +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/my/150.0.2/Mozilla.Firefox.my.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.locale.ta-IN.yaml new file mode 100644 index 000000000000..48c3f4e3f430 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.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.my +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/my/150.0.2/Mozilla.Firefox.my.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.locale.zh-CN.yaml new file mode 100644 index 000000000000..7c406310e1ca --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.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.my +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/my/150.0.2/Mozilla.Firefox.my.yaml b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.yaml new file mode 100644 index 000000000000..a6913df5a551 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/my/150.0.2/Mozilla.Firefox.my.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.my +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.installer.yaml b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.installer.yaml new file mode 100644 index 000000000000..7f18d2b0e3c2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-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.nb-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/nb-NO/Firefox%20Setup%20150.0.2.exe + InstallerSha256: A3BEC9D7B7AEF2D3D7ACB909BEFE8739AC83ABE2DEC0C69214D1D50F2FA62BAE +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/nb-NO/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 4E17FFA4932CB605ED175AF0C74D44929C3BBA69AFAE2CFB585D7992A9685EEB +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/nb-NO/Firefox%20Setup%20150.0.2.exe + InstallerSha256: F1203A6F2D221BA2A880A2945A3ADCF20B5666935E396F9EEE7EAE8BE1C06C99 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.cs-CZ.yaml new file mode 100644 index 000000000000..41ef5459a0b2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-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.nb-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/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.da-DK.yaml new file mode 100644 index 000000000000..2dd284afd8b7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-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.nb-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/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.de-DE.yaml new file mode 100644 index 000000000000..6231f9b0bace --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-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.nb-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/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.el-GR.yaml new file mode 100644 index 000000000000..3d8fbc966d5b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-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.nb-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/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.en-GB.yaml new file mode 100644 index 000000000000..ddb5c0a0f521 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-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.nb-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/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.en-US.yaml new file mode 100644 index 000000000000..3d673a67403e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-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.nb-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 (nb-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/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.es-MX.yaml new file mode 100644 index 000000000000..3b14675fce13 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-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.nb-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/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.fr-FR.yaml new file mode 100644 index 000000000000..2a16dd5bfa44 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-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.nb-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/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.hu-HU.yaml new file mode 100644 index 000000000000..688888b5a298 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-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.nb-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/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.ja-JP.yaml new file mode 100644 index 000000000000..e17d5ea432f9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-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.nb-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/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.nb-NO.yaml new file mode 100644 index 000000000000..15e3e2e55501 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-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.nb-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/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.ru-RU.yaml new file mode 100644 index 000000000000..dbf5e984caeb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-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.nb-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/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.ta-IN.yaml new file mode 100644 index 000000000000..20a5de724ff5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-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.nb-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/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.locale.zh-CN.yaml new file mode 100644 index 000000000000..3737b8c6edb0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-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.nb-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/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.yaml b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-NO.yaml new file mode 100644 index 000000000000..efb06f573fdb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nb-NO/150.0.2/Mozilla.Firefox.nb-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.nb-NO +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/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.installer.yaml b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.installer.yaml new file mode 100644 index 000000000000..8cc50abab90c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.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.zh-TW +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/zh-TW/Firefox%20Setup%20150.0.2.exe + InstallerSha256: C3BDF9DA4ADCE551F83C9CFC977F692D694D5C9CE4174AA9170317AD0C241602 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/zh-TW/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 4E7D83C1F66495A8BB8D8E0B402A198779E4E4AB885CEE41053409CB278670C0 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/zh-TW/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 5EAD1AB9B92C63658CF251F5D2B91084B4504B54D04A18ED915F5941DEF685F2 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.cs-CZ.yaml new file mode 100644 index 000000000000..a5713b55588f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.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.zh-TW +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/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.da-DK.yaml new file mode 100644 index 000000000000..61188091c4ae --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.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.zh-TW +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/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.de-DE.yaml new file mode 100644 index 000000000000..ec2c10da4602 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.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.zh-TW +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/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.el-GR.yaml new file mode 100644 index 000000000000..e131948a9ff1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.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.zh-TW +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/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.en-GB.yaml new file mode 100644 index 000000000000..79fa7eb40764 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.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.zh-TW +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/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.en-US.yaml new file mode 100644 index 000000000000..c1e04d73a81d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.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.zh-TW +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 (zh-TW) +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/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.es-MX.yaml new file mode 100644 index 000000000000..1bf0923fc9ea --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.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.zh-TW +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/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.fr-FR.yaml new file mode 100644 index 000000000000..c253a434b2e0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.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.zh-TW +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/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.hu-HU.yaml new file mode 100644 index 000000000000..08ad3dd0acc1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.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.zh-TW +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/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.ja-JP.yaml new file mode 100644 index 000000000000..fbe79e3cf576 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.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.zh-TW +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/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.nb-NO.yaml new file mode 100644 index 000000000000..477cb22e0831 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.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.zh-TW +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/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.ru-RU.yaml new file mode 100644 index 000000000000..0cbaf7bec953 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.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.zh-TW +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/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.ta-IN.yaml new file mode 100644 index 000000000000..930ed382cee4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.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.zh-TW +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/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.locale.zh-CN.yaml new file mode 100644 index 000000000000..17ce28827ced --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.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.zh-TW +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/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.yaml b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.yaml new file mode 100644 index 000000000000..ccd005ae045d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-TW/150.0.2/Mozilla.Firefox.zh-TW.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.zh-TW +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +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/o/ONFStudios/OreNoFusen/3.3.10/ONFStudios.OreNoFusen.installer.yaml b/manifests/o/ONFStudios/OreNoFusen/3.3.10/ONFStudios.OreNoFusen.installer.yaml new file mode 100644 index 000000000000..a2542c48290b --- /dev/null +++ b/manifests/o/ONFStudios/OreNoFusen/3.3.10/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.10 +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.10/ore-no-fusen_3.3.10_x64-setup.exe + InstallerSha256: BB697967656D5853947AB89BA1D80568C49584FE5AD2C0B279F09A4D93EFFC52 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/ONFStudios/OreNoFusen/3.3.10/ONFStudios.OreNoFusen.locale.en-US.yaml b/manifests/o/ONFStudios/OreNoFusen/3.3.10/ONFStudios.OreNoFusen.locale.en-US.yaml new file mode 100644 index 000000000000..c6155eb7dde3 --- /dev/null +++ b/manifests/o/ONFStudios/OreNoFusen/3.3.10/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.10 +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.10 +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.10/ONFStudios.OreNoFusen.yaml b/manifests/o/ONFStudios/OreNoFusen/3.3.10/ONFStudios.OreNoFusen.yaml new file mode 100644 index 000000000000..159340f2d4d5 --- /dev/null +++ b/manifests/o/ONFStudios/OreNoFusen/3.3.10/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.10 +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/Okabe-Rintarou-0/SJTUCanvasHelper/3.0.0/Okabe-Rintarou-0.SJTUCanvasHelper.installer.yaml b/manifests/o/Okabe-Rintarou-0/SJTUCanvasHelper/3.0.0/Okabe-Rintarou-0.SJTUCanvasHelper.installer.yaml index f5bf84efb900..e2aa08d3d34f 100644 --- a/manifests/o/Okabe-Rintarou-0/SJTUCanvasHelper/3.0.0/Okabe-Rintarou-0.SJTUCanvasHelper.installer.yaml +++ b/manifests/o/Okabe-Rintarou-0/SJTUCanvasHelper/3.0.0/Okabe-Rintarou-0.SJTUCanvasHelper.installer.yaml @@ -1,40 +1,40 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Okabe-Rintarou-0.SJTUCanvasHelper -PackageVersion: 3.0.0 -UpgradeBehavior: install -ReleaseDate: 2026-04-02 -Installers: -- Architecture: x86 - InstallerType: nullsoft - Scope: user - InstallerUrl: https://github.com/Okabe-Rintarou-0/SJTU-Canvas-Helper/releases/download/app-v3.0.0/SJTU.Canvas.Helper_3.0.0_x86-setup.exe - InstallerSha256: B3A47B9BC28EB5EB49B5CECF63061806AD7A73C9B4C2899E372AA2CAE5351206 - ProductCode: SJTU Canvas Helper -- Architecture: x64 - InstallerType: nullsoft - Scope: user - InstallerUrl: https://github.com/Okabe-Rintarou-0/SJTU-Canvas-Helper/releases/download/app-v3.0.0/SJTU.Canvas.Helper_3.0.0_x64-setup.exe - InstallerSha256: B5755A7372529ED5775C6BF79E012E25D943E5FADB5E490E56DD152EA798C1F7 - ProductCode: SJTU Canvas Helper -- Architecture: x86 - InstallerType: wix - Scope: machine - InstallerUrl: https://github.com/Okabe-Rintarou-0/SJTU-Canvas-Helper/releases/download/app-v3.0.0/SJTU.Canvas.Helper_3.0.0_x86_en-US.msi - InstallerSha256: B5429FDE939AB69B07EF5B0B9E0D1B1867CF2E37E8544C2A452E843AA189510C - ProductCode: '{6613C7A5-9EEC-449E-BDBE-36A3AE8C8967}' - AppsAndFeaturesEntries: - - ProductCode: '{6613C7A5-9EEC-449E-BDBE-36A3AE8C8967}' - UpgradeCode: '{7D1805A0-A89C-54EF-B4AA-AAE673D794E0}' -- Architecture: x64 - InstallerType: wix - Scope: machine - InstallerUrl: https://github.com/Okabe-Rintarou-0/SJTU-Canvas-Helper/releases/download/app-v3.0.0/SJTU.Canvas.Helper_3.0.0_x64_en-US.msi - InstallerSha256: 2C1D9BB4C53581CA21BCDFD0ED4F1B73A535B37F435ABAB965074ED7A6EEE46D - ProductCode: '{E7AE0F5A-5864-4DBA-83B6-D4DBBDE8CBF0}' - AppsAndFeaturesEntries: - - ProductCode: '{E7AE0F5A-5864-4DBA-83B6-D4DBBDE8CBF0}' - UpgradeCode: '{7D1805A0-A89C-54EF-B4AA-AAE673D794E0}' -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: Okabe-Rintarou-0.SJTUCanvasHelper +PackageVersion: 3.0.0 +UpgradeBehavior: install +ReleaseDate: 2026-04-02 +Installers: +- Architecture: x86 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/Okabe-Rintarou-0/SJTU-Canvas-Helper/releases/download/app-v3.0.0/SJTU.Canvas.Helper_3.0.0_x86-setup.exe + InstallerSha256: 89720B96D912CBBE82AC211EF2375E12ABD8121C819732B65364D85426CAAD7D + ProductCode: SJTU Canvas Helper +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/Okabe-Rintarou-0/SJTU-Canvas-Helper/releases/download/app-v3.0.0/SJTU.Canvas.Helper_3.0.0_x64-setup.exe + InstallerSha256: 4199AC487011927B5632576B2C323E07EFFAC1142F3E502C6821AF4B4FB11D94 + ProductCode: SJTU Canvas Helper +- Architecture: x86 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/Okabe-Rintarou-0/SJTU-Canvas-Helper/releases/download/app-v3.0.0/SJTU.Canvas.Helper_3.0.0_x86_en-US.msi + InstallerSha256: 4E62C6977BB921340256B0C4F35C31328843B28C6E5064866811A65AF628065C + ProductCode: '{2B98AABC-CFB8-468C-B863-E36C38EC142F}' + AppsAndFeaturesEntries: + - ProductCode: '{6613C7A5-9EEC-449E-BDBE-36A3AE8C8967}' + UpgradeCode: '{7D1805A0-A89C-54EF-B4AA-AAE673D794E0}' +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/Okabe-Rintarou-0/SJTU-Canvas-Helper/releases/download/app-v3.0.0/SJTU.Canvas.Helper_3.0.0_x64_en-US.msi + InstallerSha256: 11CC398017B805F869D5C01905933E1F64E1DE9BCEC30015B8820E69993E73B7 + ProductCode: '{1D4191EC-7F11-48A3-8410-06E5B1B07D2E}' + AppsAndFeaturesEntries: + - ProductCode: '{E7AE0F5A-5864-4DBA-83B6-D4DBBDE8CBF0}' + UpgradeCode: '{7D1805A0-A89C-54EF-B4AA-AAE673D794E0}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/Okabe-Rintarou-0/SJTUCanvasHelper/3.0.0/Okabe-Rintarou-0.SJTUCanvasHelper.locale.en-US.yaml b/manifests/o/Okabe-Rintarou-0/SJTUCanvasHelper/3.0.0/Okabe-Rintarou-0.SJTUCanvasHelper.locale.en-US.yaml index 7150cf3647f3..89b7bdc28ef4 100644 --- a/manifests/o/Okabe-Rintarou-0/SJTUCanvasHelper/3.0.0/Okabe-Rintarou-0.SJTUCanvasHelper.locale.en-US.yaml +++ b/manifests/o/Okabe-Rintarou-0/SJTUCanvasHelper/3.0.0/Okabe-Rintarou-0.SJTUCanvasHelper.locale.en-US.yaml @@ -1,18 +1,18 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Okabe-Rintarou-0.SJTUCanvasHelper -PackageVersion: 3.0.0 -PackageLocale: en-US -Publisher: okabe -PublisherUrl: https://github.com/Okabe-Rintarou-0 -PublisherSupportUrl: https://github.com/Okabe-Rintarou-0/SJTU-Canvas-Helper/issues -PackageName: SJTU Canvas Helper -PackageUrl: https://github.com/Okabe-Rintarou-0/SJTU-Canvas-Helper -License: Freeware -ShortDescription: Help you use SJTU Canvas more quickly and easily. -Tags: -- sjtu -ReleaseNotesUrl: https://github.com/Okabe-Rintarou-0/SJTU-Canvas-Helper/releases/tag/app-v3.0.0 -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: Okabe-Rintarou-0.SJTUCanvasHelper +PackageVersion: 3.0.0 +PackageLocale: en-US +Publisher: okabe +PublisherUrl: https://github.com/Okabe-Rintarou-0 +PublisherSupportUrl: https://github.com/Okabe-Rintarou-0/SJTU-Canvas-Helper/issues +PackageName: SJTU Canvas Helper +PackageUrl: https://github.com/Okabe-Rintarou-0/SJTU-Canvas-Helper +License: Freeware +ShortDescription: Help you use SJTU Canvas more quickly and easily. +Tags: +- sjtu +ReleaseNotesUrl: https://github.com/Okabe-Rintarou-0/SJTU-Canvas-Helper/releases/tag/app-v3.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/Okabe-Rintarou-0/SJTUCanvasHelper/3.0.0/Okabe-Rintarou-0.SJTUCanvasHelper.locale.zh-CN.yaml b/manifests/o/Okabe-Rintarou-0/SJTUCanvasHelper/3.0.0/Okabe-Rintarou-0.SJTUCanvasHelper.locale.zh-CN.yaml index c0316a717629..b4f341ffba80 100644 --- a/manifests/o/Okabe-Rintarou-0/SJTUCanvasHelper/3.0.0/Okabe-Rintarou-0.SJTUCanvasHelper.locale.zh-CN.yaml +++ b/manifests/o/Okabe-Rintarou-0/SJTUCanvasHelper/3.0.0/Okabe-Rintarou-0.SJTUCanvasHelper.locale.zh-CN.yaml @@ -1,20 +1,20 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: Okabe-Rintarou-0.SJTUCanvasHelper -PackageVersion: 3.0.0 -PackageLocale: zh-CN -Publisher: okabe -PublisherUrl: https://github.com/Okabe-Rintarou-0 -PublisherSupportUrl: https://github.com/Okabe-Rintarou-0/SJTU-Canvas-Helper/issues -PackageName: SJTU Canvas Helper -PackageUrl: https://github.com/Okabe-Rintarou-0/SJTU-Canvas-Helper -License: 免费软件 -ShortDescription: 帮助您更快速便捷地使用上海交通大学课程平台。 -Tags: -- 上海交大 -- 上海交通大学 -- 交大 -ReleaseNotesUrl: https://github.com/Okabe-Rintarou-0/SJTU-Canvas-Helper/releases/tag/app-v3.0.0 -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: Okabe-Rintarou-0.SJTUCanvasHelper +PackageVersion: 3.0.0 +PackageLocale: zh-CN +Publisher: okabe +PublisherUrl: https://github.com/Okabe-Rintarou-0 +PublisherSupportUrl: https://github.com/Okabe-Rintarou-0/SJTU-Canvas-Helper/issues +PackageName: SJTU Canvas Helper +PackageUrl: https://github.com/Okabe-Rintarou-0/SJTU-Canvas-Helper +License: 免费软件 +ShortDescription: 帮助您更快速便捷地使用上海交通大学课程平台。 +Tags: +- 上海交大 +- 上海交通大学 +- 交大 +ReleaseNotesUrl: https://github.com/Okabe-Rintarou-0/SJTU-Canvas-Helper/releases/tag/app-v3.0.0 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/o/Okabe-Rintarou-0/SJTUCanvasHelper/3.0.0/Okabe-Rintarou-0.SJTUCanvasHelper.yaml b/manifests/o/Okabe-Rintarou-0/SJTUCanvasHelper/3.0.0/Okabe-Rintarou-0.SJTUCanvasHelper.yaml index aed29693418c..314220bff55b 100644 --- a/manifests/o/Okabe-Rintarou-0/SJTUCanvasHelper/3.0.0/Okabe-Rintarou-0.SJTUCanvasHelper.yaml +++ b/manifests/o/Okabe-Rintarou-0/SJTUCanvasHelper/3.0.0/Okabe-Rintarou-0.SJTUCanvasHelper.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: Okabe-Rintarou-0.SJTUCanvasHelper -PackageVersion: 3.0.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: Okabe-Rintarou-0.SJTUCanvasHelper +PackageVersion: 3.0.0 +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/o/openwong2kim/wmux/2.7.4/openwong2kim.wmux.installer.yaml b/manifests/o/openwong2kim/wmux/2.7.4/openwong2kim.wmux.installer.yaml new file mode 100644 index 000000000000..c091f5804222 --- /dev/null +++ b/manifests/o/openwong2kim/wmux/2.7.4/openwong2kim.wmux.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: openwong2kim.wmux +PackageVersion: 2.7.4 +Platform: +- Windows.Desktop +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +ProductCode: wmux +ReleaseDate: 2026-05-06 +AppsAndFeaturesEntries: +- ProductCode: wmux +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\wmux' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/openwong2kim/wmux/releases/download/v2.7.4/wmux-2.7.4.Setup.exe + InstallerSha256: E6491AAB3BD10FE995ADC7F56DD4746C36DD2609A8707E6480457C87154C4C40 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/openwong2kim/wmux/2.7.4/openwong2kim.wmux.locale.en-US.yaml b/manifests/o/openwong2kim/wmux/2.7.4/openwong2kim.wmux.locale.en-US.yaml new file mode 100644 index 000000000000..4ee6cd1b2180 --- /dev/null +++ b/manifests/o/openwong2kim/wmux/2.7.4/openwong2kim.wmux.locale.en-US.yaml @@ -0,0 +1,65 @@ +# 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: openwong2kim.wmux +PackageVersion: 2.7.4 +PackageLocale: en-US +Publisher: openwong2kim +PublisherUrl: https://github.com/openwong2kim +PublisherSupportUrl: https://github.com/openwong2kim/wmux/issues +PackageName: wmux +PackageUrl: https://github.com/openwong2kim/wmux +License: MIT +LicenseUrl: https://github.com/openwong2kim/wmux/blob/HEAD/LICENSE +ShortDescription: Windows terminal multiplexer with MCP server for AI agents +Description: |- + wmux is a Windows terminal multiplexer built for AI coding agents. + Run Claude Code, Codex, and Gemini CLI side by side with split terminals, + browser automation, and MCP integration. Features include session persistence, + dangerous command detection, real-time token cost tracking, and cross-workspace + terminal control via MCP tools. +Moniker: wmux +Tags: +- ai-agent +- developer-tools +- electron +- mcp +- multiplexer +- terminal +- windows +ReleaseNotes: |- + Terminal stability fixes (4-bug roundup) + #1 Hang on large output (CPU/RAM full blast) + - PTYBridge onData hot path: 8ms micro-batch accumulator (was unbatched, 5 sync middlewares per chunk) + - OscParser: char-by-char string concat → slice-based segment extraction (O(n²) → O(n)) + - ActivityMonitor: 100ms timestamp guard on clearTimeout/setTimeout reschedule storms + #2 Ctrl+V paste partial drop + - useTerminal Ctrl+V / Ctrl+Shift+V handlers now use 4096-byte chunking (was a single write that hit the 100KB main-side backstop) + - pty.handler adds console.warn when the 100KB backstop fires (was silent drop) + #3 Copy completely broken + - clipboard.handler silent returns → typed throw (CLIPBOARD_INVALID_TYPE, CLIPBOARD_TOO_LARGE, CLIPBOARD_WRITE_FAILED) — surfaces Win32 clipboard lock contention (KeePass / RDP / browser tabs) + - 4 call sites (useTerminal ×3 + Terminal.tsx) await + try/catch, selection preserved on failure + - New showCopyErrorToast (i18n: en/ko/ja/zh) + #4 Multi-line selection: only last paragraph copied + - hasSelection() guard on ResizeObserver fit() and font/theme effects (xterm 6 SelectionService clears selection unconditionally on any rowsChanged) + - New Terminal option: windowsPty: { backend: 'conpty', buildNumber: 21376 } (xterm 6 ConPTY-aware reflow) + Refactor (DRY helpers) + - src/renderer/utils/clipboardChunk.ts — pastePtyChunked() + - src/renderer/utils/copyWithFeedback.ts — runCopyWithFeedback() + - src/renderer/utils/fitGuard.ts — shouldFitWhilePreservingSelection() + Tests + - 70 files / 776 passed (+49 new tests, 0 regressions) + - tsc + daemon-tsc clean + Full Changelog: v2.7.3...v2.7.4 + What's Changed + - feat(cross-platform): batch 2A — icons, errors, shortcuts, boot-id Unix by @openwong2kim in #12 + - feat(cross-platform): batch 2C — wmux mcp CLI + brew detector + macOS error wire-up + SMAppService research by @openwong2kim in #13 + - Use detected shells for default terminal selection by @cloim in #10 + - Fix PowerShell prompt OSC rendering by @cloim in #11 + - feat(cross-platform): allow Unix shell basenames in PTY allowlist by @openwong2kim in #14 + New Contributors + - @cloim made their first contribution in #10 + Full Changelog: v2.7.3...v2.7.4 +ReleaseNotesUrl: https://github.com/openwong2kim/wmux/releases/tag/v2.7.4 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/openwong2kim/wmux/2.7.4/openwong2kim.wmux.yaml b/manifests/o/openwong2kim/wmux/2.7.4/openwong2kim.wmux.yaml new file mode 100644 index 000000000000..5a146c68007b --- /dev/null +++ b/manifests/o/openwong2kim/wmux/2.7.4/openwong2kim.wmux.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: openwong2kim.wmux +PackageVersion: 2.7.4 +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.0.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.0.0/Google.FirebaseCLI.yaml rename to manifests/p/Pantelis23/KernRift/v2.8.25/Pantelis23.KernRift.yaml index 0c5e33538faa..c4dbfc96af73 100644 --- a/manifests/g/Google/FirebaseCLI/15.0.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.0.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/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/PowerSoftware/AnyBurn/6.8.0.0/PowerSoftware.AnyBurn.installer.yaml b/manifests/p/PowerSoftware/AnyBurn/6.8.0.0/PowerSoftware.AnyBurn.installer.yaml new file mode 100644 index 000000000000..0481e78cf950 --- /dev/null +++ b/manifests/p/PowerSoftware/AnyBurn/6.8.0.0/PowerSoftware.AnyBurn.installer.yaml @@ -0,0 +1,22 @@ +# 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: PowerSoftware.AnyBurn +PackageVersion: "6.8.0.0" +InstallerType: nullsoft +Scope: machine +ProductCode: AnyBurn +ReleaseDate: 2025-07-09 +Installers: +- Architecture: x86 + InstallerUrl: https://anyburn.com/anyburn_setup.exe + InstallerSha256: 4B097FA0BEDE17A916600C17C19DAD92C9D5A38808BB270CB3974803A4A428C1 + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\AnyBurn' +- Architecture: arm64 + InstallerUrl: https://anyburn.com/anyburn_setup_arm64.exe + InstallerSha256: C83C166AC3CE8F4576B0CA8EDCC5CABB3629F0BC3ED9030D7FA6BF3E2BF9EF19 + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\AnyBurn' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/PowerSoftware/AnyBurn/6.8.0.0/PowerSoftware.AnyBurn.locale.en-US.yaml b/manifests/p/PowerSoftware/AnyBurn/6.8.0.0/PowerSoftware.AnyBurn.locale.en-US.yaml new file mode 100644 index 000000000000..d40665ec95f0 --- /dev/null +++ b/manifests/p/PowerSoftware/AnyBurn/6.8.0.0/PowerSoftware.AnyBurn.locale.en-US.yaml @@ -0,0 +1,49 @@ +# 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: PowerSoftware.AnyBurn +PackageVersion: "6.8.0.0" +PackageLocale: en-US +Publisher: Power Software Ltd +PublisherUrl: https://powersoftware.com/ +PublisherSupportUrl: https://anyburn.com/contact.htm +Author: Power Software Ltd. +PackageName: AnyBurn +PackageUrl: https://anyburn.com/ +License: Freeware +Copyright: Copyright 2004-2025 Power Software Ltd. All rights reserved. +ShortDescription: A light weight but professional CD / DVD / Blu-ray burning software +Description: |- + AnyBurn is a light weight but professional CD / DVD / Blu-ray burning software that everyone must have. It provides complete solution for burning and disc imaging. + + Main Features: + - Burn all CD / DVD / Blu-ray disc image files. + - Backup or add files and folders to CD, DVD, or Bluray disc + - Burn Audio CD which can be played in regular CD player from mp3, m4a, ape, flac, wma files... + - Rip Audio CD to MP3, FLAC, APE, WMA, WAV files. + - Copy disc using sector by sector method. + - Create image files from hard disk files or CD / DVD / BD discs. + - Convert disc image files between various formats. + - Create bootable USB drive for Windows 7, 8, 8.1, 10, 11, or Linux. + - Test disc sectors. + - Install Windows to USB drive. + - Convert Audio file formats. + - Support both 32-bit and 64-bit Windows. +Moniker: anyburn +Tags: +- bd +- blu-ray +- burn +- cd +- dvd +ReleaseNotes: |- + +) Supports compressed image files (zst, lz, and br format). + +) Can create image file from USB drive and write image file to USB drive. + +) The UI font can be changed. + *) Some minor bug fixes and enhancements. +ReleaseNotesUrl: https://anyburn.com/tutorials/history.htm +Documentations: +- DocumentLabel: Tutorials + DocumentUrl: https://anyburn.com/tutorials/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PowerSoftware/AnyBurn/6.8.0.0/PowerSoftware.AnyBurn.locale.zh-CN.yaml b/manifests/p/PowerSoftware/AnyBurn/6.8.0.0/PowerSoftware.AnyBurn.locale.zh-CN.yaml new file mode 100644 index 000000000000..df71eaa055e1 --- /dev/null +++ b/manifests/p/PowerSoftware/AnyBurn/6.8.0.0/PowerSoftware.AnyBurn.locale.zh-CN.yaml @@ -0,0 +1,17 @@ +# 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: PowerSoftware.AnyBurn +PackageVersion: "6.8.0.0" +PackageLocale: zh-CN +License: 免费软件 +ShortDescription: 轻量专业的 CD / DVD / Blu-ray 刻录软件 +Tags: +- bd +- blu-ray +- cd +- dvd +- 刻录 +- 烧录 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PowerSoftware/AnyBurn/6.8.0.0/PowerSoftware.AnyBurn.locale.zh-TW.yaml b/manifests/p/PowerSoftware/AnyBurn/6.8.0.0/PowerSoftware.AnyBurn.locale.zh-TW.yaml new file mode 100644 index 000000000000..ccc2a9dfbdb7 --- /dev/null +++ b/manifests/p/PowerSoftware/AnyBurn/6.8.0.0/PowerSoftware.AnyBurn.locale.zh-TW.yaml @@ -0,0 +1,16 @@ +# 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: PowerSoftware.AnyBurn +PackageVersion: "6.8.0.0" +PackageLocale: zh-TW +License: 免費軟體 +ShortDescription: 輕量專業的 CD / DVD / Blu-ray 燒錄軟體 +Tags: +- bd +- blu-ray +- cd +- dvd +- 燒錄 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PowerSoftware/AnyBurn/6.8.0.0/PowerSoftware.AnyBurn.yaml b/manifests/p/PowerSoftware/AnyBurn/6.8.0.0/PowerSoftware.AnyBurn.yaml new file mode 100644 index 000000000000..827e939320a5 --- /dev/null +++ b/manifests/p/PowerSoftware/AnyBurn/6.8.0.0/PowerSoftware.AnyBurn.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: PowerSoftware.AnyBurn +PackageVersion: "6.8.0.0" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/Proton/ProtonMailBridge/3.21.2/Proton.ProtonMailBridge.installer.yaml b/manifests/p/Proton/ProtonMailBridge/3.21.2/Proton.ProtonMailBridge.installer.yaml deleted file mode 100644 index bb5a208cd386..000000000000 --- a/manifests/p/Proton/ProtonMailBridge/3.21.2/Proton.ProtonMailBridge.installer.yaml +++ /dev/null @@ -1,65 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Proton.ProtonMailBridge -PackageVersion: 3.21.2 -InstallerType: exe -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: /exenoui /quiet /norestart - SilentWithProgress: /exenoui /passive /norestart - InstallLocation: APPDIR="" - Log: /log "" -ExpectedReturnCodes: -- InstallerReturnCode: 3010 - ReturnResponse: rebootRequiredToFinish -- InstallerReturnCode: 1654 - ReturnResponse: systemNotSupported -- InstallerReturnCode: 1650 - ReturnResponse: invalidParameter -- InstallerReturnCode: 1649 - ReturnResponse: blockedByPolicy -- InstallerReturnCode: 1644 - ReturnResponse: blockedByPolicy -- InstallerReturnCode: 1643 - ReturnResponse: blockedByPolicy -- InstallerReturnCode: 1640 - ReturnResponse: blockedByPolicy -- InstallerReturnCode: 1641 - ReturnResponse: rebootInitiated -- InstallerReturnCode: 1639 - ReturnResponse: invalidParameter -- InstallerReturnCode: 1638 - ReturnResponse: alreadyInstalled -- InstallerReturnCode: 1633 - ReturnResponse: systemNotSupported -- InstallerReturnCode: 1628 - ReturnResponse: invalidParameter -- InstallerReturnCode: 1625 - ReturnResponse: blockedByPolicy -- InstallerReturnCode: 1623 - ReturnResponse: systemNotSupported -- InstallerReturnCode: 1618 - ReturnResponse: installInProgress -- InstallerReturnCode: 1602 - ReturnResponse: cancelledByUser -- InstallerReturnCode: 1601 - ReturnResponse: contactSupport -- InstallerReturnCode: 87 - ReturnResponse: invalidParameter -- InstallerReturnCode: 1 - ReturnResponse: invalidParameter -- InstallerReturnCode: -1 - ReturnResponse: cancelledByUser -UpgradeBehavior: install -ReleaseDate: 2025-07-10 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ProtonMail/proton-bridge/releases/download/v3.21.2/Bridge-Installer.exe - InstallerSha256: FC9A115648F216BA7D9E86AEED9923FDBB77037D5A24D630532EFB247F485EF2 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/p/Proton/ProtonMailBridge/3.21.2/Proton.ProtonMailBridge.locale.en-US.yaml b/manifests/p/Proton/ProtonMailBridge/3.21.2/Proton.ProtonMailBridge.locale.en-US.yaml deleted file mode 100644 index 5ecdf5b460bc..000000000000 --- a/manifests/p/Proton/ProtonMailBridge/3.21.2/Proton.ProtonMailBridge.locale.en-US.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Proton.ProtonMailBridge -PackageVersion: 3.21.2 -PackageLocale: en-US -Publisher: Proton AG -PublisherUrl: https://proton.me/ -PublisherSupportUrl: https://proton.me/support/mail/ -PrivacyUrl: https://proton.me/legal/privacy -Author: Proton AG -PackageName: Proton Mail Bridge -PackageUrl: https://proton.me/mail/bridge -License: GPL-3.0 -LicenseUrl: https://github.com/ProtonMail/proton-bridge/blob/master/LICENSE -Copyright: Copyright (c) 2024 Proton AG -CopyrightUrl: https://github.com/ProtonMail/proton-bridge/blob/master/COPYING_NOTES.md -ShortDescription: Use Proton Mail with your desktop email client -Description: Proton Mail Bridge adds end-to-end encryption to popular email apps, including Outlook, Thunderbird, and Apple Mail. Secure email made easy. -Moniker: protonmailbridge -Tags: -- email -- mail -- proton-mail -ReleaseNotes: |- - Fixed - - BRIDGE-406: Fixed faulty certificate chain validation logic. Made certificate pin checks exclusive to leaf certificates. -ReleaseNotesUrl: https://github.com/ProtonMail/proton-bridge/releases/tag/v3.21.2 -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/p/Proton/ProtonMailBridge/3.21.2/Proton.ProtonMailBridge.locale.zh-CN.yaml b/manifests/p/Proton/ProtonMailBridge/3.21.2/Proton.ProtonMailBridge.locale.zh-CN.yaml deleted file mode 100644 index 80756907ad23..000000000000 --- a/manifests/p/Proton/ProtonMailBridge/3.21.2/Proton.ProtonMailBridge.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.10.0.schema.json - -PackageIdentifier: Proton.ProtonMailBridge -PackageVersion: 3.21.2 -PackageLocale: zh-CN -Publisher: Proton AG -PublisherUrl: https://proton.me/ -PublisherSupportUrl: https://proton.me/support/mail/ -PrivacyUrl: https://proton.me/legal/privacy -Author: Proton AG -PackageName: Proton Mail Bridge -PackageUrl: https://proton.me/mail/bridge -License: GPL-3.0 -LicenseUrl: https://github.com/ProtonMail/proton-bridge/blob/master/LICENSE -Copyright: Copyright (c) 2024 Proton AG -CopyrightUrl: https://github.com/ProtonMail/proton-bridge/blob/master/COPYING_NOTES.md -ShortDescription: 将 Proton Mail 与您的桌面电子邮件客户端结合使用 -Description: Proton Mail Bridge 为常用的电子邮件应用(包括 Outlook、Thunderbird 和 Apple Mail)添加端到端加密功能,让电子邮件安全变得更容易。 -Tags: -- proton-mail -- 电子邮件 -- 邮件 -ReleaseNotesUrl: https://github.com/ProtonMail/proton-bridge/releases/tag/v3.21.2 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/p/Proton/ProtonMailBridge/3.21.2/Proton.ProtonMailBridge.yaml b/manifests/p/Proton/ProtonMailBridge/3.21.2/Proton.ProtonMailBridge.yaml deleted file mode 100644 index 2905338e3495..000000000000 --- a/manifests/p/Proton/ProtonMailBridge/3.21.2/Proton.ProtonMailBridge.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: Proton.ProtonMailBridge -PackageVersion: 3.21.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/p/Proton/ProtonMailBridge/3.22.0/Proton.ProtonMailBridge.installer.yaml b/manifests/p/Proton/ProtonMailBridge/3.22.0/Proton.ProtonMailBridge.installer.yaml index efa945caa29a..dd1229a5170b 100644 --- a/manifests/p/Proton/ProtonMailBridge/3.22.0/Proton.ProtonMailBridge.installer.yaml +++ b/manifests/p/Proton/ProtonMailBridge/3.22.0/Proton.ProtonMailBridge.installer.yaml @@ -1,65 +1,65 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Proton.ProtonMailBridge -PackageVersion: 3.22.0 -InstallerType: exe -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: /exenoui /quiet /norestart - SilentWithProgress: /exenoui /passive /norestart - InstallLocation: APPDIR="" - Log: /log "" -ExpectedReturnCodes: -- InstallerReturnCode: 3010 - ReturnResponse: rebootRequiredToFinish -- InstallerReturnCode: 1654 - ReturnResponse: systemNotSupported -- InstallerReturnCode: 1650 - ReturnResponse: invalidParameter -- InstallerReturnCode: 1649 - ReturnResponse: blockedByPolicy -- InstallerReturnCode: 1644 - ReturnResponse: blockedByPolicy -- InstallerReturnCode: 1643 - ReturnResponse: blockedByPolicy -- InstallerReturnCode: 1640 - ReturnResponse: blockedByPolicy -- InstallerReturnCode: 1641 - ReturnResponse: rebootInitiated -- InstallerReturnCode: 1639 - ReturnResponse: invalidParameter -- InstallerReturnCode: 1638 - ReturnResponse: alreadyInstalled -- InstallerReturnCode: 1633 - ReturnResponse: systemNotSupported -- InstallerReturnCode: 1628 - ReturnResponse: invalidParameter -- InstallerReturnCode: 1625 - ReturnResponse: blockedByPolicy -- InstallerReturnCode: 1623 - ReturnResponse: systemNotSupported -- InstallerReturnCode: 1618 - ReturnResponse: installInProgress -- InstallerReturnCode: 1602 - ReturnResponse: cancelledByUser -- InstallerReturnCode: 1601 - ReturnResponse: contactSupport -- InstallerReturnCode: 87 - ReturnResponse: invalidParameter -- InstallerReturnCode: 1 - ReturnResponse: invalidParameter -- InstallerReturnCode: -1 - ReturnResponse: cancelledByUser -UpgradeBehavior: install -ReleaseDate: 2026-01-28 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/ProtonMail/proton-bridge/releases/download/v3.22.0/Bridge-Installer.exe - InstallerSha256: DB79F2A33A67157C4F25FA544DEF65BAC5AF0477C5C8BC865F2F3110C3EED596 -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: Proton.ProtonMailBridge +PackageVersion: 3.22.0 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /exenoui /quiet /norestart + SilentWithProgress: /exenoui /passive /norestart + InstallLocation: APPDIR="" + Log: /log "" +ExpectedReturnCodes: +- InstallerReturnCode: 3010 + ReturnResponse: rebootRequiredToFinish +- InstallerReturnCode: 1654 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1650 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1649 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1644 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1643 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1640 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1641 + ReturnResponse: rebootInitiated +- InstallerReturnCode: 1639 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1638 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: 1633 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1628 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1625 + ReturnResponse: blockedByPolicy +- InstallerReturnCode: 1623 + ReturnResponse: systemNotSupported +- InstallerReturnCode: 1618 + ReturnResponse: installInProgress +- InstallerReturnCode: 1602 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 1601 + ReturnResponse: contactSupport +- InstallerReturnCode: 87 + ReturnResponse: invalidParameter +- InstallerReturnCode: 1 + ReturnResponse: invalidParameter +- InstallerReturnCode: -1 + ReturnResponse: cancelledByUser +UpgradeBehavior: install +ReleaseDate: 2026-01-28 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ProtonMail/proton-bridge/releases/download/v3.22.0/Bridge-Installer.exe + InstallerSha256: 512FCAF033D5A253AB5CFA20ADB90AFCF20059366648782983FE911759C71C62 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/Proton/ProtonMailBridge/3.22.0/Proton.ProtonMailBridge.locale.en-US.yaml b/manifests/p/Proton/ProtonMailBridge/3.22.0/Proton.ProtonMailBridge.locale.en-US.yaml index 4381b9328bc8..ab74b3fbaec1 100644 --- a/manifests/p/Proton/ProtonMailBridge/3.22.0/Proton.ProtonMailBridge.locale.en-US.yaml +++ b/manifests/p/Proton/ProtonMailBridge/3.22.0/Proton.ProtonMailBridge.locale.en-US.yaml @@ -1,49 +1,49 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Proton.ProtonMailBridge -PackageVersion: 3.22.0 -PackageLocale: en-US -Publisher: Proton AG -PublisherUrl: https://proton.me/ -PublisherSupportUrl: https://proton.me/support/mail/ -PrivacyUrl: https://proton.me/legal/privacy -Author: Proton AG -PackageName: Proton Mail Bridge -PackageUrl: https://proton.me/mail/bridge -License: GPL-3.0 -LicenseUrl: https://github.com/ProtonMail/proton-bridge/blob/master/LICENSE -Copyright: Copyright (c) 2026 Proton AG -CopyrightUrl: https://github.com/ProtonMail/proton-bridge/blob/master/COPYING_NOTES.md -ShortDescription: Use Proton Mail with your desktop email client -Description: Proton Mail Bridge adds end-to-end encryption to popular email apps, including Outlook, Thunderbird, and Apple Mail. Secure email made easy. -Moniker: protonmailbridge -Tags: -- email -- mail -- proton-mail -ReleaseNotes: |- - Added - - BRIDGE-358: Hover tooltip for IMAP/SMTP settings clipboard UI actions. - - BRIDGE-356: Added support for unavailable keychain retries on Linux, such that we don't wipe the vault. Feature flag support before Bridge initialization. - - BRIDGE-278: Rollout feature flag support. - - BRIDGE-151: Additional sentry reporting related to auto-update failures. - - BRIDGE-361: Debug information on the utilized keychain helper. - - BRIDGE-396: Observability caching and metrics for vault related issues. - - BRIDGE-449: Generic IMAP OK heartbeat for long lasting commands. - Changed - - BRIDGE-374: Modified MBOX header sanitization logic, it now ensures that RFC822 headers are present before stripping content. - - BRIDGE-391: Simplified internal label conflict resolver. - - BRIDGE-409: Increased the import size limit to 55MB. - - BRIDGE-369: Bumped gopenpgp to v2.9.0. - - BRIDGE-455: Bumped Go to 1.24.11. - - BRIDGE-424: FIDO2 support. - Fixed - - BRIDGE-395: Don't store the last utilized keychain as the user preference on Windows & macOS. - - BRIDGE-387: Use the address gluon ID, instead of the address ID to fetch message counts. - - BRIDGE-394: Prevent the RFC822 parser from mutating the message literal. - - BRIDGE-355: Prevent Bridge from crashing when an unknown message charset is detected on Import. - - BRIDGE-447: Adjusted error message for message import size limitation. -ReleaseNotesUrl: https://github.com/ProtonMail/proton-bridge/releases/tag/v3.22.0 -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: Proton.ProtonMailBridge +PackageVersion: 3.22.0 +PackageLocale: en-US +Publisher: Proton AG +PublisherUrl: https://proton.me/ +PublisherSupportUrl: https://proton.me/support/mail/ +PrivacyUrl: https://proton.me/legal/privacy +Author: Proton AG +PackageName: Proton Mail Bridge +PackageUrl: https://proton.me/mail/bridge +License: GPL-3.0 +LicenseUrl: https://github.com/ProtonMail/proton-bridge/blob/master/LICENSE +Copyright: Copyright (c) 2026 Proton AG +CopyrightUrl: https://github.com/ProtonMail/proton-bridge/blob/master/COPYING_NOTES.md +ShortDescription: Use Proton Mail with your desktop email client +Description: Proton Mail Bridge adds end-to-end encryption to popular email apps, including Outlook, Thunderbird, and Apple Mail. Secure email made easy. +Moniker: protonmailbridge +Tags: +- email +- mail +- proton-mail +ReleaseNotes: |- + Added + - BRIDGE-358: Hover tooltip for IMAP/SMTP settings clipboard UI actions. + - BRIDGE-356: Added support for unavailable keychain retries on Linux, such that we don't wipe the vault. Feature flag support before Bridge initialization. + - BRIDGE-278: Rollout feature flag support. + - BRIDGE-151: Additional sentry reporting related to auto-update failures. + - BRIDGE-361: Debug information on the utilized keychain helper. + - BRIDGE-396: Observability caching and metrics for vault related issues. + - BRIDGE-449: Generic IMAP OK heartbeat for long lasting commands. + Changed + - BRIDGE-374: Modified MBOX header sanitization logic, it now ensures that RFC822 headers are present before stripping content. + - BRIDGE-391: Simplified internal label conflict resolver. + - BRIDGE-409: Increased the import size limit to 55MB. + - BRIDGE-369: Bumped gopenpgp to v2.9.0. + - BRIDGE-455: Bumped Go to 1.24.11. + - BRIDGE-424: FIDO2 support. + Fixed + - BRIDGE-395: Don't store the last utilized keychain as the user preference on Windows & macOS. + - BRIDGE-387: Use the address gluon ID, instead of the address ID to fetch message counts. + - BRIDGE-394: Prevent the RFC822 parser from mutating the message literal. + - BRIDGE-355: Prevent Bridge from crashing when an unknown message charset is detected on Import. + - BRIDGE-447: Adjusted error message for message import size limitation. +ReleaseNotesUrl: https://github.com/ProtonMail/proton-bridge/releases/tag/v3.22.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/Proton/ProtonMailBridge/3.22.0/Proton.ProtonMailBridge.locale.zh-CN.yaml b/manifests/p/Proton/ProtonMailBridge/3.22.0/Proton.ProtonMailBridge.locale.zh-CN.yaml index b4b5cb9d32c0..3ba5940f9cad 100644 --- a/manifests/p/Proton/ProtonMailBridge/3.22.0/Proton.ProtonMailBridge.locale.zh-CN.yaml +++ b/manifests/p/Proton/ProtonMailBridge/3.22.0/Proton.ProtonMailBridge.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.12.0.schema.json - -PackageIdentifier: Proton.ProtonMailBridge -PackageVersion: 3.22.0 -PackageLocale: zh-CN -Publisher: Proton AG -PublisherUrl: https://proton.me/ -PublisherSupportUrl: https://proton.me/support/mail/ -PrivacyUrl: https://proton.me/legal/privacy -Author: Proton AG -PackageName: Proton Mail Bridge -PackageUrl: https://proton.me/mail/bridge -License: GPL-3.0 -LicenseUrl: https://github.com/ProtonMail/proton-bridge/blob/master/LICENSE -Copyright: Copyright (c) 2026 Proton AG -CopyrightUrl: https://github.com/ProtonMail/proton-bridge/blob/master/COPYING_NOTES.md -ShortDescription: 将 Proton Mail 与您的桌面电子邮件客户端结合使用 -Description: Proton Mail Bridge 为常用的电子邮件应用(包括 Outlook、Thunderbird 和 Apple Mail)添加端到端加密功能,让电子邮件安全变得更容易。 -Tags: -- proton-mail -- 电子邮件 -- 邮件 -ReleaseNotesUrl: https://github.com/ProtonMail/proton-bridge/releases/tag/v3.22.0 -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: Proton.ProtonMailBridge +PackageVersion: 3.22.0 +PackageLocale: zh-CN +Publisher: Proton AG +PublisherUrl: https://proton.me/ +PublisherSupportUrl: https://proton.me/support/mail/ +PrivacyUrl: https://proton.me/legal/privacy +Author: Proton AG +PackageName: Proton Mail Bridge +PackageUrl: https://proton.me/mail/bridge +License: GPL-3.0 +LicenseUrl: https://github.com/ProtonMail/proton-bridge/blob/master/LICENSE +Copyright: Copyright (c) 2026 Proton AG +CopyrightUrl: https://github.com/ProtonMail/proton-bridge/blob/master/COPYING_NOTES.md +ShortDescription: 将 Proton Mail 与您的桌面电子邮件客户端结合使用 +Description: Proton Mail Bridge 为常用的电子邮件应用(包括 Outlook、Thunderbird 和 Apple Mail)添加端到端加密功能,让电子邮件安全变得更容易。 +Tags: +- proton-mail +- 电子邮件 +- 邮件 +ReleaseNotesUrl: https://github.com/ProtonMail/proton-bridge/releases/tag/v3.22.0 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/p/Proton/ProtonMailBridge/3.22.0/Proton.ProtonMailBridge.yaml b/manifests/p/Proton/ProtonMailBridge/3.22.0/Proton.ProtonMailBridge.yaml index acb1fc21b885..a4c53b4d2f60 100644 --- a/manifests/p/Proton/ProtonMailBridge/3.22.0/Proton.ProtonMailBridge.yaml +++ b/manifests/p/Proton/ProtonMailBridge/3.22.0/Proton.ProtonMailBridge.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: Proton.ProtonMailBridge -PackageVersion: 3.22.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: Proton.ProtonMailBridge +PackageVersion: 3.22.0 +DefaultLocale: en-US +ManifestType: version +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/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/Safing/Portmaster/2.1.18/Safing.Portmaster.installer.yaml b/manifests/s/Safing/Portmaster/2.1.18/Safing.Portmaster.installer.yaml new file mode 100644 index 000000000000..02588fe8b652 --- /dev/null +++ b/manifests/s/Safing/Portmaster/2.1.18/Safing.Portmaster.installer.yaml @@ -0,0 +1,26 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Safing.Portmaster +PackageVersion: 2.1.18 +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: Portmaster +ReleaseDate: 2026-04-27 +AppsAndFeaturesEntries: +- Publisher: safing + ProductCode: Portmaster +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Portmaster' +Installers: +- Architecture: x64 + InstallerUrl: https://updates.safing.io/latest/windows_amd64/packages/Portmaster_2.1.18_x64-setup.exe + InstallerSha256: 5EB191E4F81F419454C263F3E02822E9404D8582E0ABE986969E6353A0D3D1D1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/Safing/Portmaster/2.1.18/Safing.Portmaster.locale.en-US.yaml b/manifests/s/Safing/Portmaster/2.1.18/Safing.Portmaster.locale.en-US.yaml new file mode 100644 index 000000000000..dc13e490f02c --- /dev/null +++ b/manifests/s/Safing/Portmaster/2.1.18/Safing.Portmaster.locale.en-US.yaml @@ -0,0 +1,56 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Safing.Portmaster +PackageVersion: 2.1.18 +PackageLocale: en-US +Publisher: Safing ICS Technologies GmbH +PublisherUrl: https://safing.io/ +PublisherSupportUrl: https://safing.io/support/#portmaster +PrivacyUrl: https://safing.io/privacy/ +Author: Safing ICS Technologies GmbH +PackageName: Portmaster +PackageUrl: https://safing.io/ +License: GPL-3.0 +LicenseUrl: https://github.com/safing/portmaster/blob/HEAD/LICENSE +ShortDescription: Portmaster is a free and open-source application that puts you back in charge over all your computers network connections. +Description: |- + Portmaster is a free and open-source application firewall that does the heavy lifting for you. Restore privacy and take back control over all your computer's network activity. + + Discover everything that is happening on your computer. Expose every connection your applications make and detect evil ones. Finally get the power to act accordingly. + + Protect your whole computer, not just your browser. Block all advertisements and trackers for every application. Easily add your own rules and block individual domains. + + Make your own rules. Completely cut off applications from the Internet. Or block all p2p connections except for certain apps. Or never connect to specific countries. Portmaster has you covered. +Moniker: portmaster +Tags: +- ad-blocker +- administration +- dns +- firewall +- foss +- internet +- network +- network-monitor +- open-source +ReleaseNotes: |- + What’s Changed + + Windows (Kernel Driver) + - Packet injection fixes - by @vlabo in #2122 + - Fixed BSODs and block verdict bypass in WFP callouts - by @stenya in #2136 + - Added owner PID tracking and downstream filter bypass for the Portmaster process - by @stenya in #2137 + + Other Changes + - Added compatibility with the IVPN client v3.15.6 - by @stenya in #2135 + - Added the ability to disable the “Speed Up Website Loading” message - by @stenya in #2061 + - UI process now restarts automatically after updates - by @stenya in #2155 + - Fixed an issue where "Core → Desktop Notifications" were not saved persistently between sessions - by @stenya in #2020 + - Fixed issues in automatic update functionality +ReleaseNotesUrl: https://github.com/safing/portmaster/releases/tag/v2.1.18 +PurchaseUrl: https://safing.io/pricing/ +Documentations: +- DocumentLabel: Wiki & FAQ + DocumentUrl: https://wiki.safing.io/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Safing/Portmaster/2.1.18/Safing.Portmaster.yaml b/manifests/s/Safing/Portmaster/2.1.18/Safing.Portmaster.yaml new file mode 100644 index 000000000000..772cdba8dfda --- /dev/null +++ b/manifests/s/Safing/Portmaster/2.1.18/Safing.Portmaster.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: Safing.Portmaster +PackageVersion: 2.1.18 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 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/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/t/TaxDomeLLC/TaxDome/3.92.0.19117/TaxDomeLLC.TaxDome.installer.yaml b/manifests/t/TaxDomeLLC/TaxDome/3.92.0.19117/TaxDomeLLC.TaxDome.installer.yaml new file mode 100644 index 000000000000..2363cc585ca9 --- /dev/null +++ b/manifests/t/TaxDomeLLC/TaxDome/3.92.0.19117/TaxDomeLLC.TaxDome.installer.yaml @@ -0,0 +1,18 @@ +# 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: TaxDomeLLC.TaxDome +PackageVersion: 3.92.0.19117 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: machine +ProductCode: TaxDome +ReleaseDate: 2025-05-07 +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles(x86)%\TaxDome' +Installers: +- Architecture: x64 + InstallerUrl: https://taxdome-public.s3.amazonaws.com/Windows+App/TaxDome_Setup.exe + InstallerSha256: 07761CF92FD659F86606A6E730E4559F3E4F0DDBF131B99457E0967FCB3C7325 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/TaxDomeLLC/TaxDome/3.92.0.19117/TaxDomeLLC.TaxDome.locale.en-US.yaml b/manifests/t/TaxDomeLLC/TaxDome/3.92.0.19117/TaxDomeLLC.TaxDome.locale.en-US.yaml new file mode 100644 index 000000000000..961d997f6954 --- /dev/null +++ b/manifests/t/TaxDomeLLC/TaxDome/3.92.0.19117/TaxDomeLLC.TaxDome.locale.en-US.yaml @@ -0,0 +1,19 @@ +# 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: TaxDomeLLC.TaxDome +PackageVersion: 3.92.0.19117 +PackageLocale: en-US +Publisher: TaxDome LLC +PublisherUrl: https://taxdome.com/about +PublisherSupportUrl: https://help.taxdome.com/ +PrivacyUrl: https://taxdome.com/policies/privacy +PackageName: TaxDome +PackageUrl: https://taxdome.com/desktop-app +License: Proprietary (Terms of Service) +LicenseUrl: https://taxdome.com/policies/tos +Copyright: © 2025 TaxDome +CopyrightUrl: https://taxdome.com/about +ShortDescription: TaxDome +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/TaxDomeLLC/TaxDome/3.92.0.19117/TaxDomeLLC.TaxDome.yaml b/manifests/t/TaxDomeLLC/TaxDome/3.92.0.19117/TaxDomeLLC.TaxDome.yaml new file mode 100644 index 000000000000..e1f2c6a3ef87 --- /dev/null +++ b/manifests/t/TaxDomeLLC/TaxDome/3.92.0.19117/TaxDomeLLC.TaxDome.yaml @@ -0,0 +1,8 @@ +# 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: TaxDomeLLC.TaxDome +PackageVersion: 3.92.0.19117 +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/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.3.4/VidJuice.UniTube.installer.yaml b/manifests/v/VidJuice/UniTube/7.3.4/VidJuice.UniTube.installer.yaml deleted file mode 100644 index cc4982c4badd..000000000000 --- a/manifests/v/VidJuice/UniTube/7.3.4/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.10.0.schema.json - -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.3.4 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: VidJuice UniTube_is1 -ReleaseDate: 2025-12-29 -Installers: -- Architecture: x64 - InstallerUrl: https://download.vidjuice.com/unitube.exe?v=7.3.4.1 - InstallerSha256: E7FE609B8B470D2AE82314441F704EB8E5473C0037E648A19678D428CDC36F7D -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/v/VidJuice/UniTube/7.3.4/VidJuice.UniTube.locale.en-US.yaml b/manifests/v/VidJuice/UniTube/7.3.4/VidJuice.UniTube.locale.en-US.yaml deleted file mode 100644 index bc41fd7d082a..000000000000 --- a/manifests/v/VidJuice/UniTube/7.3.4/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.10.0.schema.json - -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.3.4 -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 © 2025 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.10.0 diff --git a/manifests/v/VidJuice/UniTube/7.3.4/VidJuice.UniTube.locale.zh-CN.yaml b/manifests/v/VidJuice/UniTube/7.3.4/VidJuice.UniTube.locale.zh-CN.yaml deleted file mode 100644 index 9412449169af..000000000000 --- a/manifests/v/VidJuice/UniTube/7.3.4/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.10.0.schema.json - -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.3.4 -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 © 2025 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.10.0 diff --git a/manifests/v/VidJuice/UniTube/7.3.4/VidJuice.UniTube.yaml b/manifests/v/VidJuice/UniTube/7.3.4/VidJuice.UniTube.yaml deleted file mode 100644 index 23695bbe3268..000000000000 --- a/manifests/v/VidJuice/UniTube/7.3.4/VidJuice.UniTube.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: VidJuice.UniTube -PackageVersion: 7.3.4 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/v/VidJuice/UniTube/7.3.5/VidJuice.UniTube.installer.yaml b/manifests/v/VidJuice/UniTube/7.3.5/VidJuice.UniTube.installer.yaml deleted file mode 100644 index 3b0c9169a84f..000000000000 --- a/manifests/v/VidJuice/UniTube/7.3.5/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.3.5 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: VidJuice UniTube_is1 -ReleaseDate: 2026-01-04 -Installers: -- Architecture: x64 - InstallerUrl: https://download.vidjuice.com/unitube.exe?v=7.3.5.1 - InstallerSha256: A544270B9C75A62888E6E955B3C4EC65F6EECB5CB8644BDC7294E9321A40907B -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.3.5/VidJuice.UniTube.locale.en-US.yaml b/manifests/v/VidJuice/UniTube/7.3.5/VidJuice.UniTube.locale.en-US.yaml deleted file mode 100644 index c2b1b6327227..000000000000 --- a/manifests/v/VidJuice/UniTube/7.3.5/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.3.5 -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.3.5/VidJuice.UniTube.locale.zh-CN.yaml b/manifests/v/VidJuice/UniTube/7.3.5/VidJuice.UniTube.locale.zh-CN.yaml deleted file mode 100644 index 2de80386e05e..000000000000 --- a/manifests/v/VidJuice/UniTube/7.3.5/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.3.5 -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.3.6/VidJuice.UniTube.installer.yaml b/manifests/v/VidJuice/UniTube/7.3.6/VidJuice.UniTube.installer.yaml deleted file mode 100644 index 93babcab621a..000000000000 --- a/manifests/v/VidJuice/UniTube/7.3.6/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.3.6 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: VidJuice UniTube_is1 -ReleaseDate: 2026-01-07 -Installers: -- Architecture: x64 - InstallerUrl: https://download.vidjuice.com/unitube.exe?v=7.3.6.1 - InstallerSha256: 988175CB675C01845F985DE53F6EF805B49BBFE9A25A0050D753D7ABD75291DB -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.3.6/VidJuice.UniTube.locale.en-US.yaml b/manifests/v/VidJuice/UniTube/7.3.6/VidJuice.UniTube.locale.en-US.yaml deleted file mode 100644 index 7af9ca905b37..000000000000 --- a/manifests/v/VidJuice/UniTube/7.3.6/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.3.6 -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.3.6/VidJuice.UniTube.locale.zh-CN.yaml b/manifests/v/VidJuice/UniTube/7.3.6/VidJuice.UniTube.locale.zh-CN.yaml deleted file mode 100644 index 875004ed76bf..000000000000 --- a/manifests/v/VidJuice/UniTube/7.3.6/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.3.6 -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.3.7/VidJuice.UniTube.installer.yaml b/manifests/v/VidJuice/UniTube/7.3.7/VidJuice.UniTube.installer.yaml deleted file mode 100644 index 576d57eb46db..000000000000 --- a/manifests/v/VidJuice/UniTube/7.3.7/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.3.7 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: VidJuice UniTube_is1 -ReleaseDate: 2026-01-08 -Installers: -- Architecture: x64 - InstallerUrl: https://download.vidjuice.com/unitube.exe?v=7.3.7.1 - InstallerSha256: 9E37FB53F2B2529B20B05B4F4D43C56F72704B5098E10E7504630D8D53B02A1B -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.3.7/VidJuice.UniTube.locale.en-US.yaml b/manifests/v/VidJuice/UniTube/7.3.7/VidJuice.UniTube.locale.en-US.yaml deleted file mode 100644 index 17d527643350..000000000000 --- a/manifests/v/VidJuice/UniTube/7.3.7/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.3.7 -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.3.7/VidJuice.UniTube.locale.zh-CN.yaml b/manifests/v/VidJuice/UniTube/7.3.7/VidJuice.UniTube.locale.zh-CN.yaml deleted file mode 100644 index 659a6380c063..000000000000 --- a/manifests/v/VidJuice/UniTube/7.3.7/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.3.7 -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.3.9/VidJuice.UniTube.installer.yaml b/manifests/v/VidJuice/UniTube/7.3.9/VidJuice.UniTube.installer.yaml deleted file mode 100644 index 38e7ce3f7672..000000000000 --- a/manifests/v/VidJuice/UniTube/7.3.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.3.9 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: VidJuice UniTube_is1 -ReleaseDate: 2026-01-19 -Installers: -- Architecture: x64 - InstallerUrl: https://download.vidjuice.com/unitube.exe?v=7.3.9.1 - InstallerSha256: 088239D8B08A1FC00E8422FFF8084732EEED866B46450B62CC922D635DFBAFB6 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.3.9/VidJuice.UniTube.locale.en-US.yaml b/manifests/v/VidJuice/UniTube/7.3.9/VidJuice.UniTube.locale.en-US.yaml deleted file mode 100644 index 3ecc7eaf61ba..000000000000 --- a/manifests/v/VidJuice/UniTube/7.3.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.3.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.3.9/VidJuice.UniTube.locale.zh-CN.yaml b/manifests/v/VidJuice/UniTube/7.3.9/VidJuice.UniTube.locale.zh-CN.yaml deleted file mode 100644 index b4e5c913d6f3..000000000000 --- a/manifests/v/VidJuice/UniTube/7.3.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.3.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.4.0/VidJuice.UniTube.installer.yaml b/manifests/v/VidJuice/UniTube/7.4.0/VidJuice.UniTube.installer.yaml deleted file mode 100644 index 83aaaf13ecde..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.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.4.0 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: VidJuice UniTube_is1 -ReleaseDate: 2026-01-23 -Installers: -- Architecture: x64 - InstallerUrl: https://download.vidjuice.com/unitube.exe?v=7.3.4.1 - InstallerSha256: C39A1B81A882954953FE6248326098A590DD89F3573B9C804F4A572352D59958 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.0/VidJuice.UniTube.locale.en-US.yaml b/manifests/v/VidJuice/UniTube/7.4.0/VidJuice.UniTube.locale.en-US.yaml deleted file mode 100644 index f1011e5a2839..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.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.4.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.4.0/VidJuice.UniTube.locale.zh-CN.yaml b/manifests/v/VidJuice/UniTube/7.4.0/VidJuice.UniTube.locale.zh-CN.yaml deleted file mode 100644 index 75dada9f1a92..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.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.4.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.4.0/VidJuice.UniTube.yaml b/manifests/v/VidJuice/UniTube/7.4.0/VidJuice.UniTube.yaml deleted file mode 100644 index 27bdd9a66fb4..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.0/VidJuice.UniTube.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: VidJuice.UniTube -PackageVersion: 7.4.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.1/VidJuice.UniTube.installer.yaml b/manifests/v/VidJuice/UniTube/7.4.1/VidJuice.UniTube.installer.yaml deleted file mode 100644 index 0dd5b9650a84..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.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.4.1 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: VidJuice UniTube_is1 -ReleaseDate: 2026-01-26 -Installers: -- Architecture: x64 - InstallerUrl: https://download.vidjuice.com/unitube.exe?v=7.4.1 - InstallerSha256: BA4FD856AC75FBAB1CE8317DE54B7EB529BDB26E5A0119B3929D5EC7A3297338 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.1/VidJuice.UniTube.locale.en-US.yaml b/manifests/v/VidJuice/UniTube/7.4.1/VidJuice.UniTube.locale.en-US.yaml deleted file mode 100644 index 7486794aa8b4..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.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.4.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.4.1/VidJuice.UniTube.locale.zh-CN.yaml b/manifests/v/VidJuice/UniTube/7.4.1/VidJuice.UniTube.locale.zh-CN.yaml deleted file mode 100644 index 623489bbc5a1..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.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.4.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/VidJuice/UniTube/7.4.1/VidJuice.UniTube.yaml b/manifests/v/VidJuice/UniTube/7.4.1/VidJuice.UniTube.yaml deleted file mode 100644 index f61a9b93928e..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.1/VidJuice.UniTube.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: VidJuice.UniTube -PackageVersion: 7.4.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.2/VidJuice.UniTube.installer.yaml b/manifests/v/VidJuice/UniTube/7.4.2/VidJuice.UniTube.installer.yaml deleted file mode 100644 index d5ef3b509671..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.2/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.2 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: VidJuice UniTube_is1 -ReleaseDate: 2026-01-29 -Installers: -- Architecture: x64 - InstallerUrl: https://download.vidjuice.com/unitube.exe?v=7.4.2 - InstallerSha256: CAD21E86DE0D3FEACCD5B831EB07D34AA2AEF7521A917B30740F8F16ED37D260 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.2/VidJuice.UniTube.locale.en-US.yaml b/manifests/v/VidJuice/UniTube/7.4.2/VidJuice.UniTube.locale.en-US.yaml deleted file mode 100644 index 2cbb5241a69c..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.2/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.2 -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.2/VidJuice.UniTube.locale.zh-CN.yaml b/manifests/v/VidJuice/UniTube/7.4.2/VidJuice.UniTube.locale.zh-CN.yaml deleted file mode 100644 index 2e7ea4a2dce4..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.2/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.2 -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.4.2/VidJuice.UniTube.yaml b/manifests/v/VidJuice/UniTube/7.4.2/VidJuice.UniTube.yaml deleted file mode 100644 index abccc5e739a1..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.2/VidJuice.UniTube.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: VidJuice.UniTube -PackageVersion: 7.4.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.3/VidJuice.UniTube.installer.yaml b/manifests/v/VidJuice/UniTube/7.4.3/VidJuice.UniTube.installer.yaml deleted file mode 100644 index 3c392aee2fad..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.3/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.3 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: VidJuice UniTube_is1 -ReleaseDate: 2026-02-02 -Installers: -- Architecture: x64 - InstallerUrl: https://download.vidjuice.com/unitube.exe?v=7.4.3 - InstallerSha256: B5050363F975FF3B69E0ED8E6D2BE1AA9DDA415F05E162A301E7C948F99C7EA1 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.3/VidJuice.UniTube.locale.en-US.yaml b/manifests/v/VidJuice/UniTube/7.4.3/VidJuice.UniTube.locale.en-US.yaml deleted file mode 100644 index 136128a62255..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.3/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.3 -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.3/VidJuice.UniTube.locale.zh-CN.yaml b/manifests/v/VidJuice/UniTube/7.4.3/VidJuice.UniTube.locale.zh-CN.yaml deleted file mode 100644 index 6a229b7b380d..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.3/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.3 -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.4.3/VidJuice.UniTube.yaml b/manifests/v/VidJuice/UniTube/7.4.3/VidJuice.UniTube.yaml deleted file mode 100644 index d2570c8aed4d..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.3/VidJuice.UniTube.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: VidJuice.UniTube -PackageVersion: 7.4.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.4/VidJuice.UniTube.installer.yaml b/manifests/v/VidJuice/UniTube/7.4.4/VidJuice.UniTube.installer.yaml deleted file mode 100644 index 6caa409501bc..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.4/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.4 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: VidJuice UniTube_is1 -ReleaseDate: 2026-02-04 -Installers: -- Architecture: x64 - InstallerUrl: https://download.vidjuice.com/unitube.exe?v=7.4.4 - InstallerSha256: 09E415AE46B6B8E5763D9CAEA808CC2263183678B498CB596A9C1E3E3C8590B8 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.4/VidJuice.UniTube.locale.en-US.yaml b/manifests/v/VidJuice/UniTube/7.4.4/VidJuice.UniTube.locale.en-US.yaml deleted file mode 100644 index 034c31ac8002..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.4/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.4 -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.4/VidJuice.UniTube.locale.zh-CN.yaml b/manifests/v/VidJuice/UniTube/7.4.4/VidJuice.UniTube.locale.zh-CN.yaml deleted file mode 100644 index 3a2b01f05755..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.4/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.4 -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.4.4/VidJuice.UniTube.yaml b/manifests/v/VidJuice/UniTube/7.4.4/VidJuice.UniTube.yaml deleted file mode 100644 index 39490fa64444..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.4/VidJuice.UniTube.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: VidJuice.UniTube -PackageVersion: 7.4.4 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.5/VidJuice.UniTube.installer.yaml b/manifests/v/VidJuice/UniTube/7.4.5/VidJuice.UniTube.installer.yaml deleted file mode 100644 index e802ea08275c..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.5/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.5 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: VidJuice UniTube_is1 -ReleaseDate: 2026-02-06 -Installers: -- Architecture: x64 - InstallerUrl: https://download.vidjuice.com/unitube.exe?v=7.4.5 - InstallerSha256: F9868F50BB5D783EA2B8EABB92F124C57BF7BAF61904140D0A0A2EFE3344B835 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.5/VidJuice.UniTube.locale.en-US.yaml b/manifests/v/VidJuice/UniTube/7.4.5/VidJuice.UniTube.locale.en-US.yaml deleted file mode 100644 index 65bb2c4bc833..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.5/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.5 -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.5/VidJuice.UniTube.locale.zh-CN.yaml b/manifests/v/VidJuice/UniTube/7.4.5/VidJuice.UniTube.locale.zh-CN.yaml deleted file mode 100644 index 3f237a1a2130..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.5/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.5 -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.4.5/VidJuice.UniTube.yaml b/manifests/v/VidJuice/UniTube/7.4.5/VidJuice.UniTube.yaml deleted file mode 100644 index 1e195b2a16b5..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.5/VidJuice.UniTube.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: VidJuice.UniTube -PackageVersion: 7.4.5 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.6/VidJuice.UniTube.installer.yaml b/manifests/v/VidJuice/UniTube/7.4.6/VidJuice.UniTube.installer.yaml deleted file mode 100644 index 131848fa8ad2..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.6/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.6 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: VidJuice UniTube_is1 -ReleaseDate: 2026-02-17 -Installers: -- Architecture: x64 - InstallerUrl: https://download.vidjuice.com/unitube.exe?v=7.4.6 - InstallerSha256: 42669C3BDC5D9ED9962D5694E482A70532D33C9157CEF9CDB516C8B228B40EE1 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.6/VidJuice.UniTube.locale.en-US.yaml b/manifests/v/VidJuice/UniTube/7.4.6/VidJuice.UniTube.locale.en-US.yaml deleted file mode 100644 index 8083b41bbb1e..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.6/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.6 -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.6/VidJuice.UniTube.locale.zh-CN.yaml b/manifests/v/VidJuice/UniTube/7.4.6/VidJuice.UniTube.locale.zh-CN.yaml deleted file mode 100644 index a12bf5a1f996..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.6/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.6 -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.4.6/VidJuice.UniTube.yaml b/manifests/v/VidJuice/UniTube/7.4.6/VidJuice.UniTube.yaml deleted file mode 100644 index 1e60448a4c97..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.6/VidJuice.UniTube.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: VidJuice.UniTube -PackageVersion: 7.4.6 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.7/VidJuice.UniTube.installer.yaml b/manifests/v/VidJuice/UniTube/7.4.7/VidJuice.UniTube.installer.yaml deleted file mode 100644 index 65ba1a5e7bd4..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.7/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.7 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: VidJuice UniTube_is1 -ReleaseDate: 2026-02-22 -Installers: -- Architecture: x64 - InstallerUrl: https://download.vidjuice.com/unitube.exe?v=7.4.7 - InstallerSha256: AB0D0B7AD20638A337CD2D97EFE64C6AD987B9600A0C41BFBBE39DBC3A323BDA -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.7/VidJuice.UniTube.locale.en-US.yaml b/manifests/v/VidJuice/UniTube/7.4.7/VidJuice.UniTube.locale.en-US.yaml deleted file mode 100644 index 7bc7aaccddb8..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.7/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.7 -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.7/VidJuice.UniTube.locale.zh-CN.yaml b/manifests/v/VidJuice/UniTube/7.4.7/VidJuice.UniTube.locale.zh-CN.yaml deleted file mode 100644 index 7a87c7c84b50..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.7/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.7 -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.4.7/VidJuice.UniTube.yaml b/manifests/v/VidJuice/UniTube/7.4.7/VidJuice.UniTube.yaml deleted file mode 100644 index dcfe69719a5a..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.7/VidJuice.UniTube.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: VidJuice.UniTube -PackageVersion: 7.4.7 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.8/VidJuice.UniTube.installer.yaml b/manifests/v/VidJuice/UniTube/7.4.8/VidJuice.UniTube.installer.yaml deleted file mode 100644 index 4764bde4b87c..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.8/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.8 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: VidJuice UniTube_is1 -ReleaseDate: 2026-03-04 -Installers: -- Architecture: x64 - InstallerUrl: https://download.vidjuice.com/unitube.exe?v=7.4.8 - InstallerSha256: 6E498184B1BA8561AD7DB045AE747819BF55214E5767562102913DF222BA3840 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.8/VidJuice.UniTube.locale.en-US.yaml b/manifests/v/VidJuice/UniTube/7.4.8/VidJuice.UniTube.locale.en-US.yaml deleted file mode 100644 index beb69df4ebf1..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.8/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.8 -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.8/VidJuice.UniTube.locale.zh-CN.yaml b/manifests/v/VidJuice/UniTube/7.4.8/VidJuice.UniTube.locale.zh-CN.yaml deleted file mode 100644 index 6c92409a68f9..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.8/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.8 -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.4.8/VidJuice.UniTube.yaml b/manifests/v/VidJuice/UniTube/7.4.8/VidJuice.UniTube.yaml deleted file mode 100644 index df238e1802fa..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.8/VidJuice.UniTube.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: VidJuice.UniTube -PackageVersion: 7.4.8 -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.4.9/VidJuice.UniTube.yaml b/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.yaml deleted file mode 100644 index 6f40237ab86c..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.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: VidJuice.UniTube -PackageVersion: 7.4.9 -DefaultLocale: en-US -ManifestType: version -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.0/VidJuice.UniTube.yaml b/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.yaml deleted file mode 100644 index 055db6920658..000000000000 --- a/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.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: VidJuice.UniTube -PackageVersion: 7.5.0 -DefaultLocale: en-US -ManifestType: version -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/VidJuice/UniTube/7.5.1/VidJuice.UniTube.yaml b/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.yaml deleted file mode 100644 index 6aebd0336724..000000000000 --- a/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.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: VidJuice.UniTube -PackageVersion: 7.5.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 diff --git a/manifests/v/VirtualDesktop/Streamer/1.34.14/VirtualDesktop.Streamer.installer.yaml b/manifests/v/VirtualDesktop/Streamer/1.34.14/VirtualDesktop.Streamer.installer.yaml deleted file mode 100644 index 840565a49dcf..000000000000 --- a/manifests/v/VirtualDesktop/Streamer/1.34.14/VirtualDesktop.Streamer.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# Automatically updated by the winget bot at 2025/Dec/06 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: VirtualDesktop.Streamer -PackageVersion: 1.34.14 -Installers: -- Architecture: x64 - InstallerType: exe - InstallerUrl: https://download.vrdesktop.net/files/VirtualDesktop.Streamer.Setup.exe - InstallerSha256: 865E06D78880A224408181D1051586DE687A7920A7A338DC3F8C1A799F93EDB3 - InstallerSwitches: - Silent: /q - Scope: machine -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/v/VirtualDesktop/Streamer/1.34.14/VirtualDesktop.Streamer.yaml b/manifests/v/VirtualDesktop/Streamer/1.34.14/VirtualDesktop.Streamer.yaml deleted file mode 100644 index 1a37a7a3ee4c..000000000000 --- a/manifests/v/VirtualDesktop/Streamer/1.34.14/VirtualDesktop.Streamer.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Dec/06 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: VirtualDesktop.Streamer -PackageVersion: 1.34.14 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.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.14/VirtualDesktop.Streamer.locale.en-US.yaml b/manifests/v/VirtualDesktop/Streamer/1.34.18/VirtualDesktop.Streamer.locale.en-US.yaml similarity index 72% rename from manifests/v/VirtualDesktop/Streamer/1.34.14/VirtualDesktop.Streamer.locale.en-US.yaml rename to manifests/v/VirtualDesktop/Streamer/1.34.18/VirtualDesktop.Streamer.locale.en-US.yaml index 7b821c7ea41a..23d778095746 100644 --- a/manifests/v/VirtualDesktop/Streamer/1.34.14/VirtualDesktop.Streamer.locale.en-US.yaml +++ b/manifests/v/VirtualDesktop/Streamer/1.34.18/VirtualDesktop.Streamer.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2025/Dec/06 -# 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: VirtualDesktop.Streamer -PackageVersion: 1.34.14 +PackageVersion: 1.34.18 PackageLocale: en-US Publisher: Virtual Desktop, Inc. PackageName: Virtual Desktop Streamer @@ -10,4 +10,4 @@ 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.10.0 +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/Wondershare/PDFelement/12/12.1.12.4034/Wondershare.PDFelement.12.installer.yaml b/manifests/w/Wondershare/PDFelement/12/12.1.12.4034/Wondershare.PDFelement.12.installer.yaml new file mode 100644 index 000000000000..70ca59aa7083 --- /dev/null +++ b/manifests/w/Wondershare/PDFelement/12/12.1.12.4034/Wondershare.PDFelement.12.installer.yaml @@ -0,0 +1,23 @@ +# 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: Wondershare.PDFelement.12 +PackageVersion: 12.1.12.4034 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- wspe8 +FileExtensions: +- fdf +- pdf +ProductCode: '{A8FE1843-9E8B-4E01-B5CA-375BA3FB68AF}_is1' +Installers: +- Architecture: x64 + InstallerUrl: https://download.wondershare.com/cbs_down/pdfelement-pro_64bit_12.1.12_full5239.exe + InstallerSha256: AAF0A29B363430115924EBBECC38581768F8F050B0513A7BBC05D6B55895B8C7 +- Architecture: x86 + InstallerUrl: https://download.wondershare.com/cbs_down/pdfelement-pro_12.1.12_full5239.exe + InstallerSha256: AAF0A29B363430115924EBBECC38581768F8F050B0513A7BBC05D6B55895B8C7 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/w/Wondershare/PDFelement/12/12.1.12.4034/Wondershare.PDFelement.12.locale.en-US.yaml b/manifests/w/Wondershare/PDFelement/12/12.1.12.4034/Wondershare.PDFelement.12.locale.en-US.yaml new file mode 100644 index 000000000000..0e529c61704f --- /dev/null +++ b/manifests/w/Wondershare/PDFelement/12/12.1.12.4034/Wondershare.PDFelement.12.locale.en-US.yaml @@ -0,0 +1,43 @@ +# 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: Wondershare.PDFelement.12 +PackageVersion: 12.1.12.4034 +PackageLocale: en-US +Publisher: Wondershare +PublisherUrl: https://www.wondershare.com/ +PublisherSupportUrl: https://support.wondershare.com/how-tos/pdfelement/ +PrivacyUrl: https://www.wondershare.com/privacy.html +Author: Wondershare Technology Group Co., Ltd. +PackageName: Wondershare PDFelement +PackageUrl: https://pdf.wondershare.com/pdfelement.html +License: Proprietary +LicenseUrl: https://www.wondershare.com/company/end-user-license-agreement.html +Copyright: Copyright © 2026 Wondershare. All rights reserved. +CopyrightUrl: https://www.wondershare.com/company/terms_conditions.html +ShortDescription: Take control of your documents with this powerful PDF editor. +Description: Wondershare PDFelement is a powerful PDF tool that helps make working with PDF files easier, allows you to produce great-looking PDF documents and forms quickly, affordably, and securely. +Tags: +- annotate +- annotation +- comment +- conversion +- convert +- ebook +- edit +- editor +- ocr +- pdf +- read +- reader +- viewer +ReleaseNotes: Fixed some known issues to improve overall reliability +ReleaseNotesUrl: https://pdf.wondershare.com/whats-new.html +PurchaseUrl: https://pdf.wondershare.com/store/windows-individuals.html +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://pdf.wondershare.com/guide/pdfelement-windows.html +- DocumentLabel: Tutorials + DocumentUrl: https://pdf.wondershare.com/pdfelement-video-community.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/Wondershare/PDFelement/12/12.1.12.4034/Wondershare.PDFelement.12.locale.zh-CN.yaml b/manifests/w/Wondershare/PDFelement/12/12.1.12.4034/Wondershare.PDFelement.12.locale.zh-CN.yaml new file mode 100644 index 000000000000..167490278f11 --- /dev/null +++ b/manifests/w/Wondershare/PDFelement/12/12.1.12.4034/Wondershare.PDFelement.12.locale.zh-CN.yaml @@ -0,0 +1,31 @@ +# 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: Wondershare.PDFelement.12 +PackageVersion: 12.1.12.4034 +PackageLocale: zh-CN +Author: 万兴科技集团股份有限公司 +License: 专有软件 +Copyright: Copyright © 2026 Wondershare. 保留所有权利 +ShortDescription: 使用这款强大的 PDF 编辑器,掌控您的文档。 +Description: Wondershare PDFelement 是功能十分强大的 PDF 工具,可帮助您在工作中轻松地处理 PDF 文件并能快速制作美观的 PDF 文档和表单,产品非常实惠,安全好用。 +Tags: +- ocr +- pdf +- 批注 +- 查看器 +- 标注 +- 注释 +- 电子书 +- 编辑 +- 编辑器 +- 转换 +- 阅读 +- 阅读器 +Documentations: +- DocumentLabel: 用户指南 + DocumentUrl: https://pdf.wondershare.com/guide/pdfelement-windows.html +- DocumentLabel: 教程 + DocumentUrl: https://pdf.wondershare.com/pdfelement-video-community.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/w/Wondershare/PDFelement/12/12.1.12.4034/Wondershare.PDFelement.12.yaml b/manifests/w/Wondershare/PDFelement/12/12.1.12.4034/Wondershare.PDFelement.12.yaml new file mode 100644 index 000000000000..357771942276 --- /dev/null +++ b/manifests/w/Wondershare/PDFelement/12/12.1.12.4034/Wondershare.PDFelement.12.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: Wondershare.PDFelement.12 +PackageVersion: 12.1.12.4034 +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/x/xdpxi/sponge/1.0.4/xdpxi.sponge.installer.yaml b/manifests/x/xdpxi/sponge/1.0.4/xdpxi.sponge.installer.yaml index 07065880edfe..1190a8d646f7 100644 --- a/manifests/x/xdpxi/sponge/1.0.4/xdpxi.sponge.installer.yaml +++ b/manifests/x/xdpxi/sponge/1.0.4/xdpxi.sponge.installer.yaml @@ -6,7 +6,7 @@ PackageVersion: 1.0.4 InstallerType: inno Installers: - Architecture: x64 - InstallerUrl: http://cdn.xdpxi.net:8716/sponge/1.0.4/sponge-1.0.4-installer.exe + InstallerUrl: http://cdn.xdpxi.net/sponge/1.0.4/sponge-1.0.4-installer.exe InstallerSha256: 70D1AAC01C9DD0A2F84185B314449B449B4069C4E3CFBEF6B9AC8786DE3B2BE3 ManifestType: installer ManifestVersion: 1.10.0