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/AList/AListDesktop/3.60.0/AList.AListDesktop.installer.yaml b/manifests/a/AList/AListDesktop/3.60.0/AList.AListDesktop.installer.yaml index 31a0baf03c7e..195b2cc69371 100644 --- a/manifests/a/AList/AListDesktop/3.60.0/AList.AListDesktop.installer.yaml +++ b/manifests/a/AList/AListDesktop/3.60.0/AList.AListDesktop.installer.yaml @@ -1,36 +1,36 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: AList.AListDesktop -PackageVersion: 3.60.0 -UpgradeBehavior: install -Dependencies: - PackageDependencies: - - PackageIdentifier: Microsoft.EdgeWebView2Runtime -ReleaseDate: 2026-04-20 -Installers: -- Architecture: x64 - InstallerType: nullsoft - Scope: user - InstallerUrl: https://github.com/AlistGo/desktop-release/releases/download/v3.60.0/alist-desktop_3.60.0_x64-setup.exe - InstallerSha256: 988FCD577F22A58B9194396A6BED0DD3B8626CC781C50B040F6EF6EFED9D493B - ProductCode: alist-desktop -- Architecture: arm64 - InstallerType: nullsoft - Scope: user - InstallerUrl: https://github.com/AlistGo/desktop-release/releases/download/v3.60.0/alist-desktop_3.60.0_arm64-setup.exe - InstallerSha256: 9D7B2E213A38C99AF2A5497BA28421CDA3095A1B7922E13AADDFE8422A1161CD - ProductCode: alist-desktop -- Architecture: x64 - InstallerType: wix - Scope: machine - InstallerUrl: https://github.com/AlistGo/desktop-release/releases/download/v3.60.0/alist-desktop_3.60.0_x64_en-US.msi - InstallerSha256: C1819FEA26C0EDB7D8680C078FECD0B163A10D5FEF114588A0CE51114B9486FA - InstallerSwitches: - InstallLocation: INSTALLDIR="" - ProductCode: '{7D1A20E2-8690-4250-A5EC-3887FAFD5887}' - AppsAndFeaturesEntries: - - ProductCode: '{7D1A20E2-8690-4250-A5EC-3887FAFD5887}' - UpgradeCode: '{35D0EA96-CF42-529B-9122-220745E50D7A}' -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: AList.AListDesktop +PackageVersion: 3.60.0 +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.EdgeWebView2Runtime +ReleaseDate: 2026-04-20 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/AlistGo/desktop-release/releases/download/v3.60.0/alist-desktop_3.60.0_x64-setup.exe + InstallerSha256: C0C265D634BE94F7855286EA323F907735C144422CF84F87778E63E5F7D70599 + ProductCode: alist-desktop +- Architecture: arm64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/AlistGo/desktop-release/releases/download/v3.60.0/alist-desktop_3.60.0_arm64-setup.exe + InstallerSha256: F429C5A7744DAEB1BBD5D3B0C99CAA24BCFD3290FFDCB2C3AC9C169A00856AAB + ProductCode: alist-desktop +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/AlistGo/desktop-release/releases/download/v3.60.0/alist-desktop_3.60.0_x64_en-US.msi + InstallerSha256: FFA16422D5F5B20529BC94C1BC93E076C3A4B9648CD3C55065E87472528E72A6 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{74F5A9DF-70C4-498C-A724-1F45DAF97476}' + AppsAndFeaturesEntries: + - ProductCode: '{7D1A20E2-8690-4250-A5EC-3887FAFD5887}' + UpgradeCode: '{35D0EA96-CF42-529B-9122-220745E50D7A}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/AList/AListDesktop/3.60.0/AList.AListDesktop.locale.en-US.yaml b/manifests/a/AList/AListDesktop/3.60.0/AList.AListDesktop.locale.en-US.yaml index c224bed5a755..b15aecb6f248 100644 --- a/manifests/a/AList/AListDesktop/3.60.0/AList.AListDesktop.locale.en-US.yaml +++ b/manifests/a/AList/AListDesktop/3.60.0/AList.AListDesktop.locale.en-US.yaml @@ -1,31 +1,31 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: AList.AListDesktop -PackageVersion: 3.60.0 -PackageLocale: en-US -Publisher: nn -PublisherUrl: https://alist.nn.ci/ -PublisherSupportUrl: https://github.com/alist-org/desktop-release/issues -Author: Andy Hsu -PackageName: alist-desktop -PackageUrl: https://ad.nn.ci/ -License: Proprietary -Copyright: Copyright © 2026-present AList -ShortDescription: Manage AList With Beautiful UI -Description: Use a good-looking UI to manage the AList program instead of the command line, and view logs conveniently -Tags: -- file -- server -- share -- storage -ReleaseNotesUrl: https://github.com/AlistGo/desktop-release/releases/tag/v3.60.0 -Documentations: -- DocumentLabel: Config - DocumentUrl: https://alist.nn.ci/config -- DocumentLabel: FAQ - DocumentUrl: https://alist.nn.ci/faq -- DocumentLabel: Guide - DocumentUrl: https://alist.nn.ci/guide -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: AList.AListDesktop +PackageVersion: 3.60.0 +PackageLocale: en-US +Publisher: nn +PublisherUrl: https://alist.nn.ci/ +PublisherSupportUrl: https://github.com/alist-org/desktop-release/issues +Author: Andy Hsu +PackageName: alist-desktop +PackageUrl: https://ad.nn.ci/ +License: Proprietary +Copyright: Copyright © 2026-present AList +ShortDescription: Manage AList With Beautiful UI +Description: Use a good-looking UI to manage the AList program instead of the command line, and view logs conveniently +Tags: +- file +- server +- share +- storage +ReleaseNotesUrl: https://github.com/AlistGo/desktop-release/releases/tag/v3.60.0 +Documentations: +- DocumentLabel: Config + DocumentUrl: https://alist.nn.ci/config +- DocumentLabel: FAQ + DocumentUrl: https://alist.nn.ci/faq +- DocumentLabel: Guide + DocumentUrl: https://alist.nn.ci/guide +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/AList/AListDesktop/3.60.0/AList.AListDesktop.locale.zh-CN.yaml b/manifests/a/AList/AListDesktop/3.60.0/AList.AListDesktop.locale.zh-CN.yaml index 291075cb7756..1025df16aee7 100644 --- a/manifests/a/AList/AListDesktop/3.60.0/AList.AListDesktop.locale.zh-CN.yaml +++ b/manifests/a/AList/AListDesktop/3.60.0/AList.AListDesktop.locale.zh-CN.yaml @@ -1,32 +1,32 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: AList.AListDesktop -PackageVersion: 3.60.0 -PackageLocale: zh-CN -Publisher: nn -PublisherUrl: https://alist.nn.ci/zh -PublisherSupportUrl: https://github.com/alist-org/desktop-release/issues -Author: Andy Hsu -PackageName: alist-desktop -PackageUrl: https://ad.nn.ci/zh -License: 专有软件 -Copyright: Copyright © 2026-present AList -ShortDescription: 使用漂亮的 UI 管理 AList -Description: 使用好看的 UI 管理 AList 程序而不是命令行,方便的查看日志 -Tags: -- 共享 -- 分享 -- 发送 -- 文件 -- 服务器 -ReleaseNotesUrl: https://github.com/AlistGo/desktop-release/releases/tag/v3.60.0 -Documentations: -- DocumentLabel: 使用指南 - DocumentUrl: https://alist.nn.ci/zh/guide -- DocumentLabel: 常见问题 - DocumentUrl: https://alist.nn.ci/zh/faq -- DocumentLabel: 配置 - DocumentUrl: https://alist.nn.ci/zh/config -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: AList.AListDesktop +PackageVersion: 3.60.0 +PackageLocale: zh-CN +Publisher: nn +PublisherUrl: https://alist.nn.ci/zh +PublisherSupportUrl: https://github.com/alist-org/desktop-release/issues +Author: Andy Hsu +PackageName: alist-desktop +PackageUrl: https://ad.nn.ci/zh +License: 专有软件 +Copyright: Copyright © 2026-present AList +ShortDescription: 使用漂亮的 UI 管理 AList +Description: 使用好看的 UI 管理 AList 程序而不是命令行,方便的查看日志 +Tags: +- 共享 +- 分享 +- 发送 +- 文件 +- 服务器 +ReleaseNotesUrl: https://github.com/AlistGo/desktop-release/releases/tag/v3.60.0 +Documentations: +- DocumentLabel: 使用指南 + DocumentUrl: https://alist.nn.ci/zh/guide +- DocumentLabel: 常见问题 + DocumentUrl: https://alist.nn.ci/zh/faq +- DocumentLabel: 配置 + DocumentUrl: https://alist.nn.ci/zh/config +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/a/AList/AListDesktop/3.60.0/AList.AListDesktop.yaml b/manifests/a/AList/AListDesktop/3.60.0/AList.AListDesktop.yaml index 231fc9c71ed4..280cf8c1cb13 100644 --- a/manifests/a/AList/AListDesktop/3.60.0/AList.AListDesktop.yaml +++ b/manifests/a/AList/AListDesktop/3.60.0/AList.AListDesktop.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: AList.AListDesktop -PackageVersion: 3.60.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: AList.AListDesktop +PackageVersion: 3.60.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/Abnerla/AI_paper/1.4.1/Abnerla.AI_paper.installer.yaml b/manifests/a/Abnerla/AI_paper/1.4.1/Abnerla.AI_paper.installer.yaml new file mode 100644 index 000000000000..3046b550c18c --- /dev/null +++ b/manifests/a/Abnerla/AI_paper/1.4.1/Abnerla.AI_paper.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: Abnerla.AI_paper +PackageVersion: 1.4.1 +InstallerType: inno +Scope: user +UpgradeBehavior: install +ProductCode: '{B8F3C2A1-5E7D-4A9B-8C6F-1D2E3F4A5B6C}_is1' +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/Abnerla/AI_paper/releases/download/v1.4.1/AI_Paper-v1.4.1-windows-setup.exe + InstallerSha256: 8711E2A437DD8D1F57115420C33194EAA1B00941F98FEB1AD24014AB9BF6967E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/Abnerla/AI_paper/1.4.1/Abnerla.AI_paper.locale.en-US.yaml b/manifests/a/Abnerla/AI_paper/1.4.1/Abnerla.AI_paper.locale.en-US.yaml new file mode 100644 index 000000000000..f8fa81a0f8cb --- /dev/null +++ b/manifests/a/Abnerla/AI_paper/1.4.1/Abnerla.AI_paper.locale.en-US.yaml @@ -0,0 +1,49 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Abnerla.AI_paper +PackageVersion: 1.4.1 +PackageLocale: en-US +ShortDescription: One-stop AI academic writing assistant · Supports AIGC reduction, plagiarism checking, polishing, and intelligent error correction, among other features +Description: |- + AI Paper is a desktop application for Windows that integrates five core functions: academic writing, AI detection reduction, plagiarism reduction, academic polishing, and intelligent proofreading. All data is stored locally, API keys are encrypted, and no registration or internet login is required—ready to use out of the box. + + Features + Academic Writing + - AI-assisted outline generation with step-by-step chapter drafting + - Automatic generation of abstracts, keywords, and references + - Paragraph optimization and rewriting + - Support for GB/T 7714, APA, and MLA citation formats + - Built-in rich text editor (bold, italic, underline, color, indentation, etc.) + AI Detection Reduction + - Three rewriting intensities: Light / Deep Rewrite / Academic Style + - Segment-by-segment AI feature scanning and intelligent rewriting + - Support for importing AIGC detection reports (DOCX/PDF) with paragraph-level risk labeling and color-coded display + Plagiarism Reduction + - Three rewriting intensities: Light (20-30%) / Medium (40-50%) / Deep (60-80%) + - Local duplicate fragment detection + AI rewriting + - Support for importing plagiarism reports for precise duplicate content localization + Academic Polishing + - Text-type-based polishing: Abstract / Introduction / Body / Conclusion / Outline + - Four polishing modes: Grammar Correction / Vocabulary Enhancement / Logic Optimization / Comprehensive Polishing + - Four execution methods for flexible adaptation to different needs + Intelligent Proofreading + - 8 proofreading categories: Basic Text, Grammar & Syntax, Academic Formatting, Citation Standards, Data Expression, Logical Rigor, Compliance Risks, AI Writing Traces + - Three severity levels: Notice / Warning / Error + - One-click auto-fix support + Highlights + - History: Up to 200 operation records saved, with filtering, difference comparison, and one-click rollback + - Word Import/Export: Direct .docx file import for editing and export upon completion + - LaTeX Conversion: Bidirectional conversion between text and LaTeX formats + - Auto-Save: Real-time editing state preservation with automatic recovery on next launch + - Usage Statistics: Token consumption and cost tracking by model +Tags: +- agent +- ai +- large-language-model +- llm +- paper +- research +- writing +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Abnerla/AI_paper/1.4.1/Abnerla.AI_paper.locale.zh-CN.yaml b/manifests/a/Abnerla/AI_paper/1.4.1/Abnerla.AI_paper.locale.zh-CN.yaml new file mode 100644 index 000000000000..0c9cf925d2ef --- /dev/null +++ b/manifests/a/Abnerla/AI_paper/1.4.1/Abnerla.AI_paper.locale.zh-CN.yaml @@ -0,0 +1,66 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Abnerla.AI_paper +PackageVersion: 1.4.1 +PackageLocale: zh-CN +Publisher: PaperLab +PublisherUrl: https://github.com/Abnerla +PublisherSupportUrl: https://github.com/Abnerla/AI_paper/issues +PackageName: 纸研社 +PackageUrl: https://github.com/Abnerla/AI_paper +License: Apache-2.0 +LicenseUrl: https://github.com/Abnerla/AI_paper/blob/HEAD/LICENSE +Copyright: © 2026 纸研社 +ShortDescription: 一站式 AI 学术写作辅助工具 · 支持降 AIGC、查重率、润色、智能纠错等功能 +Description: |- + 纸研社是一款运行在 Windows 平台的桌面应用程序,集论文写作、降 AI 检测、降查重、学术润色、智能纠错五大功能于一体。所有数据保存在本地,API 密钥加密存储,无需注册、无需联网登录,开箱即用。 + + 功能特性 + 论文写作 + - AI 辅助生成大纲,按章节逐步撰写正文 + - 自动生成摘要、关键词和参考文献 + - 段落优化与改写 + - 支持 GB/T 7714、APA、MLA 引用格式 + - 内置富文本编辑器(加粗、斜体、下划线、颜色、缩进等) + 降 AI 检测 + - 三种改写力度:微调 / 深度改写 / 学术风格 + - 逐段 AI 特征扫描与智能改写 + - 支持导入 AIGC 检测报告(DOCX / PDF),按段落标注风险等级并着色显示 + 降查重率 + - 三种改写力度:轻度(20-30%)/ 中度(40-50%)/ 深度(60-80%) + - 本地重复片段检测 + AI 改写 + - 支持导入查重报告,精准定位重复内容 + 学术润色 + - 按文本类型润色:摘要 / 引言 / 正文 / 结论 / 大纲 + - 四种润色模式:语法修正 / 词汇提升 / 逻辑优化 / 全面润色 + - 四种执行方式,灵活适配不同需求 + 智能纠错 + - 8 大纠错类别:基础文字、语法句法、学术格式、引用规范、数据表达、逻辑严谨性、合规风险、AI 写作痕迹 + - 三级严重度标注:提示 / 警告 / 错误 + - 支持一键自动修复 + 亮点 + - 历史记录:最多保存 200 条操作记录,支持筛选、对比差异和一键回滚 + - Word 导入/导出:直接导入 .docx 文件编辑,完成后导出 + - LaTeX 转换:文本与 LaTeX 格式互转 + - 自动保存:编辑状态实时保存,下次启动自动恢复 + - 用量统计:按模型追踪 Token 消耗与费用 +Tags: +- 人工智能 +- 写作 +- 大语言模型 +- 学术 +- 智能体 +- 论文 +ReleaseNotes: |- + - 新增 降 AI 率和降查重率右键显示菜单“段落标记 + - 优化 用户报告多次导入的问题 + - 修复 Skill 失效的问题 + - 修复 批量写作进度提示字符串乱码 + - 修复 第三方 skill 多文件导入场景未注册 + - 修复 翻译润色缺少检查 + - 死代码清理 + Full Changelog: https://github.com/Abnerla/AI_paper/compare/v1.4.0...v1.4.1 +ReleaseNotesUrl: https://github.com/Abnerla/AI_paper/releases/tag/v1.4.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.yaml b/manifests/a/Abnerla/AI_paper/1.4.1/Abnerla.AI_paper.yaml similarity index 71% rename from manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.yaml rename to manifests/a/Abnerla/AI_paper/1.4.1/Abnerla.AI_paper.yaml index 1eca614299ce..348aaa68f28f 100644 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.yaml +++ b/manifests/a/Abnerla/AI_paper/1.4.1/Abnerla.AI_paper.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: Abnerla.AI_paper +PackageVersion: 1.4.1 DefaultLocale: zh-CN ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/a/Actifile/ActifileAgent/3.0.2.3/Actifile.ActifileAgent.installer.yaml b/manifests/a/Actifile/ActifileAgent/3.0.2.3/Actifile.ActifileAgent.installer.yaml deleted file mode 100644 index fb7ba308b4ba..000000000000 --- a/manifests/a/Actifile/ActifileAgent/3.0.2.3/Actifile.ActifileAgent.installer.yaml +++ /dev/null @@ -1,14 +0,0 @@ -# Automatically updated by the winget bot at 2025/Sep/07 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Actifile.ActifileAgent -PackageVersion: 3.0.2.3 -Installers: -- Architecture: x86 - InstallerType: msi - InstallerUrl: https://app.actifile.com/Home/DownloadAgentMsi - InstallerSha256: CD976A1D767F862BA6CA46871A5FC4606DAA8EE1352E1589DE06DA6DB8083E92 - ProductCode: "{0D13F554-E542-4590-AACB-AA60CAE75A64}" - Scope: machine -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/a/Actifile/ActifileAgent/3.0.2.3/Actifile.ActifileAgent.locale.en-US.yaml b/manifests/a/Actifile/ActifileAgent/3.0.2.3/Actifile.ActifileAgent.locale.en-US.yaml deleted file mode 100644 index 7095c1d6a0a4..000000000000 --- a/manifests/a/Actifile/ActifileAgent/3.0.2.3/Actifile.ActifileAgent.locale.en-US.yaml +++ /dev/null @@ -1,12 +0,0 @@ -# Automatically updated by the winget bot at 2025/Sep/07 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Actifile.ActifileAgent -PackageVersion: 3.0.2.3 -PackageLocale: en-US -Publisher: Actifile -PackageName: Actifile Agent -License: Copyright (c) Actifile -ShortDescription: Actifile’s SaaS platform automates sensitive data discovery, monitoring and protection for zero-trust endpoints. -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/a/Actifile/ActifileAgent/3.0.2.3/Actifile.ActifileAgent.yaml b/manifests/a/Actifile/ActifileAgent/3.0.2.3/Actifile.ActifileAgent.yaml deleted file mode 100644 index 3e78b264165e..000000000000 --- a/manifests/a/Actifile/ActifileAgent/3.0.2.3/Actifile.ActifileAgent.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Sep/07 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Actifile.ActifileAgent -PackageVersion: 3.0.2.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/a/AmanHarwara/Altus/5.8.0/AmanHarwara.Altus.installer.yaml b/manifests/a/AmanHarwara/Altus/5.8.0/AmanHarwara.Altus.installer.yaml new file mode 100644 index 000000000000..2ce1d6e51557 --- /dev/null +++ b/manifests/a/AmanHarwara/Altus/5.8.0/AmanHarwara.Altus.installer.yaml @@ -0,0 +1,31 @@ +# 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: AmanHarwara.Altus +PackageVersion: 5.8.0 +InstallerLocale: en-US +InstallerType: nullsoft +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: be25d1f4-3999-55bd-a6b3-0abfff8cb898 +ReleaseDate: 2026-05-06 +AppsAndFeaturesEntries: +- DisplayName: Altus 5.8.0 + ProductCode: be25d1f4-3999-55bd-a6b3-0abfff8cb898 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/amanharwara/altus/releases/download/5.8.0/Altus-Setup-5.8.0.exe + InstallerSha256: 57CD7613FB1E8FBFDA4F0EFFDF704DDC60FC8A75CA3C2CACED817D7619C7FF7F + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/amanharwara/altus/releases/download/5.8.0/Altus-Setup-5.8.0.exe + InstallerSha256: 57CD7613FB1E8FBFDA4F0EFFDF704DDC60FC8A75CA3C2CACED817D7619C7FF7F + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/AmanHarwara/Altus/5.8.0/AmanHarwara.Altus.locale.en-US.yaml b/manifests/a/AmanHarwara/Altus/5.8.0/AmanHarwara.Altus.locale.en-US.yaml new file mode 100644 index 000000000000..6f8610a5277c --- /dev/null +++ b/manifests/a/AmanHarwara/Altus/5.8.0/AmanHarwara.Altus.locale.en-US.yaml @@ -0,0 +1,32 @@ +# 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: AmanHarwara.Altus +PackageVersion: 5.8.0 +PackageLocale: en-US +Publisher: Aman Harwara +PublisherUrl: https://github.com/amanharwara/altus +PublisherSupportUrl: https://github.com/amanharwara/altus/issues +Author: Aman Harwara +PackageName: Altus +PackageUrl: https://github.com/amanharwara/altus +License: GPL-3.0 +LicenseUrl: https://github.com/amanharwara/altus/blob/HEAD/LICENSE +CopyrightUrl: https://raw.githubusercontent.com/amanharwara/altus/master/LICENSE +ShortDescription: Desktop client for WhatsApp Web with themes & multiple account support. +Tags: +- dark-theme +- electron +- electron-app +- electronjs +- javascript +- theme-customizer +- theme-support +- whatsapp +- whatsapp-web +ReleaseNotes: |- + Commits + - b219dc4: Add settings toggle for registering as default handler of whatsapp:// links (#388) (@paramsiddharth) +ReleaseNotesUrl: https://github.com/amanharwara/altus/releases/tag/5.8.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/AmanHarwara/Altus/5.8.0/AmanHarwara.Altus.yaml b/manifests/a/AmanHarwara/Altus/5.8.0/AmanHarwara.Altus.yaml new file mode 100644 index 000000000000..d2c5390a2a0d --- /dev/null +++ b/manifests/a/AmanHarwara/Altus/5.8.0/AmanHarwara.Altus.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: AmanHarwara.Altus +PackageVersion: 5.8.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/AmarBego/GitTop/0.2.0/AmarBego.GitTop.installer.yaml b/manifests/a/AmarBego/GitTop/0.2.0/AmarBego.GitTop.installer.yaml index b627065c371a..ab2b3ea4bf0b 100644 --- a/manifests/a/AmarBego/GitTop/0.2.0/AmarBego.GitTop.installer.yaml +++ b/manifests/a/AmarBego/GitTop/0.2.0/AmarBego.GitTop.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/06 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: AmarBego.GitTop PackageVersion: 0.2.0 @@ -10,7 +10,7 @@ Dependencies: Installers: - Architecture: x64 InstallerUrl: https://github.com/AmarBego/GitTop/releases/download/v0.2.0/gittop-0.2.0-setup.exe - InstallerSha256: A1BCD6F506F1A6F28947D3BE5A70984F26CA16DA9FF9175585D0507A7CCAEBE7 + InstallerSha256: 22779A5286F19D75319A323BD4DB10D79662C6B7EC65AAD1F551AC2F3F14580F ManifestType: installer -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 ReleaseDate: 2026-01-02 diff --git a/manifests/a/AmarBego/GitTop/0.2.0/AmarBego.GitTop.locale.en-US.yaml b/manifests/a/AmarBego/GitTop/0.2.0/AmarBego.GitTop.locale.en-US.yaml index 82ed4d919d5d..1d5e34f52678 100644 --- a/manifests/a/AmarBego/GitTop/0.2.0/AmarBego.GitTop.locale.en-US.yaml +++ b/manifests/a/AmarBego/GitTop/0.2.0/AmarBego.GitTop.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/06 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: AmarBego.GitTop PackageVersion: 0.2.0 @@ -29,4 +29,4 @@ Documentations: - DocumentLabel: Wiki DocumentUrl: https://github.com/AmarBego/GitTop/wiki ManifestType: defaultLocale -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/a/AmarBego/GitTop/0.2.0/AmarBego.GitTop.yaml b/manifests/a/AmarBego/GitTop/0.2.0/AmarBego.GitTop.yaml index 233b48041586..f6ff29c1ae23 100644 --- a/manifests/a/AmarBego/GitTop/0.2.0/AmarBego.GitTop.yaml +++ b/manifests/a/AmarBego/GitTop/0.2.0/AmarBego.GitTop.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/06 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: AmarBego.GitTop PackageVersion: 0.2.0 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/a/Amazon/AWSCLI/2.32.31/Amazon.AWSCLI.installer.yaml b/manifests/a/Amazon/AWSCLI/2.32.31/Amazon.AWSCLI.installer.yaml deleted file mode 100644 index 561b11d9f9c1..000000000000 --- a/manifests/a/Amazon/AWSCLI/2.32.31/Amazon.AWSCLI.installer.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# Created with komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Amazon.AWSCLI -PackageVersion: 2.32.31 -InstallerLocale: en-US -Platform: -- Windows.Desktop -InstallerType: wix -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -Commands: -- aws -ProductCode: '{C46065F2-2C36-494D-9C5C-D09C2EF47C9B}' -ReleaseDate: 2026-01-07 -AppsAndFeaturesEntries: -- DisplayName: AWS Command Line Interface v2 - ProductCode: '{C46065F2-2C36-494D-9C5C-D09C2EF47C9B}' - UpgradeCode: '{E1C1971C-384E-4D6D-8D02-F1AC48281CF8}' -InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\Amazon\AWSCLIV2' -Installers: -- Architecture: x64 - InstallerUrl: https://awscli.amazonaws.com/AWSCLIV2.msi - InstallerSha256: 28B617A24437CFDB627B355E0CA57722A3B5B28F56510F36C7352C158B216444 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/a/Amazon/AWSCLI/2.32.31/Amazon.AWSCLI.locale.en-US.yaml b/manifests/a/Amazon/AWSCLI/2.32.31/Amazon.AWSCLI.locale.en-US.yaml deleted file mode 100644 index 01c7bbf0bc35..000000000000 --- a/manifests/a/Amazon/AWSCLI/2.32.31/Amazon.AWSCLI.locale.en-US.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Amazon.AWSCLI -PackageVersion: 2.32.31 -PackageLocale: en-US -Publisher: Amazon Web Services -PublisherUrl: https://github.com/aws/aws-cli -PublisherSupportUrl: https://github.com/aws/aws-cli/issues -Author: Amazon Web Services -PackageName: AWS Command Line Interface -PackageUrl: https://aws.amazon.com/cli -License: Apache 2.0 license -LicenseUrl: https://github.com/aws/aws-cli/blob/develop/LICENSE.txt -Copyright: Copyright 2012-2020 Amazon.com, Inc. -CopyrightUrl: https://github.com/aws/aws-cli/blob/develop/LICENSE.txt -ShortDescription: Universal Command Line Interface for Amazon Web Services -Description: |- - The AWS CLI is an open source tool built on top of the AWS SDK for Python (Boto) that provides commands for interacting with AWS services. - With minimal configuration, you can start using all of the functionality provided by the AWS Management Console from your favorite terminal program. -Tags: -- aws -- awscli -- cli -- cloud -- foss -- open-source -- s3 -- services -- web -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/a/Amazon/Kiro/0.12.155/Amazon.Kiro.installer.yaml b/manifests/a/Amazon/Kiro/0.12.155/Amazon.Kiro.installer.yaml new file mode 100644 index 000000000000..ddc93947c4b4 --- /dev/null +++ b/manifests/a/Amazon/Kiro/0.12.155/Amazon.Kiro.installer.yaml @@ -0,0 +1,163 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Amazon.Kiro +PackageVersion: 0.12.155 +InstallerType: inno +Scope: user +InstallerSwitches: + Custom: /mergetasks=!runcode +UpgradeBehavior: install +Protocols: +- kiro +FileExtensions: +- ascx +- asp +- aspx +- bash +- bash_login +- bash_logout +- bash_profile +- bashrc +- bib +- bowerrc +- c +- c++ +- cc +- cfg +- cjs +- clj +- cljs +- cljx +- clojure +- cls +- cmake +- code-workspace +- coffee +- config +- containerfile +- cpp +- cs +- cshtml +- csproj +- css +- csv +- csx +- ctp +- cxx +- dart +- diff +- dockerfile +- dot +- dtd +- editorconfig +- edn +- erb +- eyaml +- eyml +- fs +- fsi +- fsscript +- fsx +- gemspec +- gitattributes +- gitconfig +- gitignore +- go +- gradle +- groovy +- h +- h++ +- handlebars +- hbs +- hh +- hpp +- hxx +- ini +- ipynb +- jade +- jav +- java +- js +- jscsrc +- jshintrc +- jshtm +- json +- jsp +- jsx +- less +- log +- lua +- m +- makefile +- markdown +- md +- mdoc +- mdown +- mdtext +- mdtxt +- mdwn +- mjs +- mk +- mkd +- mkdn +- ml +- mli +- npmignore +- php +- phtml +- pl +- pl6 +- plist +- pm +- pm6 +- pod +- pp +- profile +- properties +- ps1 +- psd1 +- psgi +- psm1 +- py +- pyi +- r +- rb +- rhistory +- rprofile +- rs +- rst +- rt +- sass +- scss +- sh +- shtml +- sql +- svgz +- t +- tex +- toml +- ts +- tsx +- txt +- vb +- vue +- wxi +- wxl +- wxs +- xaml +- xhtml +- xml +- yaml +- yml +- zsh +ProductCode: '{A2CA08B5-C756-463E-B13D-F051F4F11F0B}_is1' +ReleaseDate: 2026-05-06 +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\Programs\Kiro' +Installers: +- Architecture: x64 + InstallerUrl: https://prod.download.desktop.kiro.dev/releases/stable/win32-x64/signed/0.12.155/kiro-ide-0.12.155-stable-win32-x64.exe + InstallerSha256: 5BBED63379D2CD5DAFDC014814B2FD08A6DE5E73BE6AC3C8EE945D04EEB1BE9E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/Amazon/Kiro/0.12.155/Amazon.Kiro.locale.en-US.yaml b/manifests/a/Amazon/Kiro/0.12.155/Amazon.Kiro.locale.en-US.yaml new file mode 100644 index 000000000000..d418db8073f7 --- /dev/null +++ b/manifests/a/Amazon/Kiro/0.12.155/Amazon.Kiro.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: Amazon.Kiro +PackageVersion: 0.12.155 +PackageLocale: en-US +Publisher: Amazon Web Services +PublisherUrl: https://kiro.dev/ +PublisherSupportUrl: https://github.com/kirodotdev/Kiro/issues +PrivacyUrl: https://aws.amazon.com/privacy/ +Author: Amazon Web Services, Inc +PackageName: Kiro +PackageUrl: https://kiro.dev/downloads/ +License: Proprietary +LicenseUrl: https://kiro.dev/license/ +Copyright: © 2026 Amazon.com, Inc. or its affiliates (collectively, "Amazon"). All Rights Reserved. +CopyrightUrl: https://kiro.dev/license/ +ShortDescription: An agentic IDE that helps you do your best work with features such as specs, steering, and hooks. +Description: Kiro is an agentic IDE that helps you go from prototype to production with spec-driven development. From simple to complex tasks, Kiro works alongside you to turn prompts into detailed specs, then into working code, docs, and tests—so what you build is exactly what you want and ready to share with your team. Kiro's agents help you solve challenging problems and automate tasks like generating documentation and unit tests. With Kiro, you can build beyond prototypes while being in the driver's seat every step of the way. +Tags: +- code +- coding +- develop +- development +- editing +- editor +- programming +ReleaseNotesUrl: https://kiro.dev/changelog/ide/ +PurchaseUrl: https://kiro.dev/pricing/ +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://kiro.dev/docs/index +- DocumentLabel: FAQ + DocumentUrl: https://kiro.dev/faq/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Amazon/Kiro/0.12.155/Amazon.Kiro.locale.zh-CN.yaml b/manifests/a/Amazon/Kiro/0.12.155/Amazon.Kiro.locale.zh-CN.yaml new file mode 100644 index 000000000000..5b623f10f3d1 --- /dev/null +++ b/manifests/a/Amazon/Kiro/0.12.155/Amazon.Kiro.locale.zh-CN.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Amazon.Kiro +PackageVersion: 0.12.155 +PackageLocale: zh-CN +PrivacyUrl: https://aws.amazon.com/cn/privacy/ +License: 专有软件 +ShortDescription: 一款智能代理 IDE,助您高效工作,具备规范制定、方向引导和钩子功能等特性。 +Description: Kiro 是一款智能代理 IDE,通过规范驱动开发帮助您从原型阶段直达生产部署。无论是简单任务还是复杂需求,Kiro 都能将您的指令转化为详细规范,继而生成可运行代码、文档及测试用例——确保最终成果完全符合预期并可直接交付团队使用。其智能代理系统不仅能协助攻克技术难题,还能自动完成文档生成、单元测试等任务。使用 Kiro,您能在全程掌控开发进程的同时,突破原型限制打造真正可落地的产品。 +Tags: +- 代码 +- 开发 +- 编程 +- 编辑 +- 编辑器 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://kiro.dev/faq/ +- DocumentLabel: 文档 + DocumentUrl: https://kiro.dev/docs/index +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.yaml b/manifests/a/Amazon/Kiro/0.12.155/Amazon.Kiro.yaml similarity index 77% rename from manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.yaml rename to manifests/a/Amazon/Kiro/0.12.155/Amazon.Kiro.yaml index 055db6920658..d01c66c188a2 100644 --- a/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.yaml +++ b/manifests/a/Amazon/Kiro/0.12.155/Amazon.Kiro.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.5.0 +PackageIdentifier: Amazon.Kiro +PackageVersion: 0.12.155 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/a/Amazon/Quick/0.556.0/Amazon.Quick.installer.yaml b/manifests/a/Amazon/Quick/0.556.0/Amazon.Quick.installer.yaml new file mode 100644 index 000000000000..c86615b9766b --- /dev/null +++ b/manifests/a/Amazon/Quick/0.556.0/Amazon.Quick.installer.yaml @@ -0,0 +1,20 @@ +# 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: Amazon.Quick +PackageVersion: 0.556.0 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- awsquick +ProductCode: b51862f0-c82b-5555-9b73-180a78b7607f +ReleaseDate: 2026-05-04 +Installers: +- Architecture: x64 + InstallerUrl: https://desktop.downloads.quick.aws.com/windows/x64/Amazon-Quick.exe + InstallerSha256: CA571614437B2EA811306C7EE026B795CD6C2FA9D927136E6E3293E0B4AAB16A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/Amazon/Quick/0.556.0/Amazon.Quick.locale.en-US.yaml b/manifests/a/Amazon/Quick/0.556.0/Amazon.Quick.locale.en-US.yaml new file mode 100644 index 000000000000..6ac195964f1c --- /dev/null +++ b/manifests/a/Amazon/Quick/0.556.0/Amazon.Quick.locale.en-US.yaml @@ -0,0 +1,44 @@ +# 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: Amazon.Quick +PackageVersion: 0.556.0 +PackageLocale: en-US +Publisher: Amazon Web Services +PublisherUrl: https://aws.amazon.com/ +PrivacyUrl: https://aws.amazon.com/privacy/ +Author: Amazon Web Services, Inc +PackageName: Amazon Quick +PackageUrl: https://aws.amazon.com/quick/desktop/ +License: Proprietary +LicenseUrl: https://aws.amazon.com/terms/ +Copyright: © 2026, Amazon Web Services, Inc. or its affiliates. All rights reserved. +ShortDescription: An AI assistant for work that turns questions into answers, answers into actions, and actions into outcomes—for you and your entire team. +Description: |- + Your work lives across dozens of tools—Slack, Microsoft Outlook, Salesforce, spreadsheets on your desktop, and emails in Gmail. Quick is an AI assistant for work that connects to all of them, learns what matters to you, and takes action on your behalf. Set it up in minutes. By the end of the day, you'll wonder how you ever worked without it. + + Turn scattered information into finished deliverables + You've got a spreadsheet on your computer, a Slack thread with the latest numbers, and an email with your manager's feedback. Ask Quick to pull it together into a Microsoft Word doc, Excel model, or presentation. What used to take an afternoon of copy-paste takes a single conversation. + + No more starting from scratch + Quick remembers your projects, your people, and your recent conversations so when you ask for a recap or a follow-up email, it already knows the background. No starting over. No filling in the gaps. Just pick up where you left off. + + One AI Assistant for everything you use + Work with any file, in any app, on any machine + Amazon Quick connects to the files on your computer, your email (Microsoft Outlook or Gmail), your team chat (Slack or Microsoft Teams), your CRM, and your databases all at once. Ask a question and Quick pulls the answer from wherever it lives. No uploading. No switching apps. + Know what matters before your day starts + Amazon Quick runs in the background and watches your calendar, email, and messages across every tool. It surfaces the meeting prep you need, the follow-ups you've missed, and the scheduling conflicts you haven't noticed yet. You don't have to check five different tools. Quick already did. + An understanding of your work that gets smarter every day + Amazon Quick builds a personal knowledge graph of your people, your projects, and how your work connects across every tool, every conversation, every file. It's not limited to one vendor's environment. The more you use it, the less you have to explain. And because it's built on AWS, that understanding is private to you and meets the same enterprise security standards your organization already trusts. +Tags: +- agent +- agentic +- ai +- large-language-model +- llm +PurchaseUrl: https://aws.amazon.com/quick/pricing/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://aws.amazon.com/quick/faqs/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Amazon/Quick/0.556.0/Amazon.Quick.locale.zh-CN.yaml b/manifests/a/Amazon/Quick/0.556.0/Amazon.Quick.locale.zh-CN.yaml new file mode 100644 index 000000000000..e0c55919f698 --- /dev/null +++ b/manifests/a/Amazon/Quick/0.556.0/Amazon.Quick.locale.zh-CN.yaml @@ -0,0 +1,39 @@ +# 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: Amazon.Quick +PackageVersion: 0.556.0 +PackageLocale: zh-CN +PublisherUrl: https://aws.amazon.com/cn/ +PrivacyUrl: https://aws.amazon.com/cn/privacy/ +PackageUrl: https://aws.amazon.com/cn/quick/desktop/ +License: 专有软件 +LicenseUrl: https://aws.amazon.com/cn/terms/ +ShortDescription: 一款专为职场打造的 AI 助手,将问题转化为答案,将答案转化为行动,将行动转化为成果——助力您和您的整个团队。 +Description: |- + 你的工作分散在几十个工具中——Slack、Microsoft Outlook、Salesforce、桌面上的电子表格以及 Gmail 中的邮件。Quick 是一款连接所有这些工具的 AI 办公助手,它能学习对你重要的内容,并代表你采取行动。几分钟即可完成设置。到今天结束时,你会惊讶于以前没有它时是如何工作的。 + + 将碎片化信息转化为完整的交付成果 + 你的电脑里有一份电子表格,Slack 频道里有最新的数据,邮箱里还有经理的反馈。让 Quick 把这些内容整合到 Microsoft Word 文档、Excel 模型或演示文稿中。过去需要一个下午反复复制粘贴的工作,现在只需一次对话即可完成。 + + 告别从零开始 + Quick 记得你的项目、联系人和最近的对话,因此当你要求它进行总结或撰写跟进邮件时,它已经掌握了背景信息。无需重新开始,无需填补信息差。只需从你上次离开的地方继续。 + + 一个 AI 助手,连接你所使用的一切 + 支持任何文件、任何应用、任何设备 + Amazon Quick 同时连接你电脑上的文件、电子邮件(Microsoft Outlook 或 Gmail)、团队聊天工具(Slack 或 Microsoft Teams)、CRM 系统以及数据库。只需提出问题,Quick 就能从任何存放数据的地方提取答案。无需上传,无需切换应用。 + 在一天开始前掌握核心要点 + Amazon Quick 在后台运行,跨工具监控你的日历、电子邮件和消息。它会主动呈现你需要的会议准备资料、你错过的跟进事项以及你尚未察觉的日程冲突。你无需检查五个不同的工具,Quick 已经为你处理好了。 + 对工作的理解日趋深入,越用越聪明 + Amazon Quick 会构建一个涵盖你的联系人、项目以及跨工具、对话和文件的个人知识图谱。它不局限于单一供应商的生态环境。你使用得越多,需要向它解释的就越少。由于它构建于 AWS 之上,这些理解内容对你个人是私密的,并符合你所在组织信任的企业级安全标准。 +Tags: +- 人工智能 +- 大语言模型 +- 智能体 +- 自主智能 +PurchaseUrl: https://aws.amazon.com/cn/quick/pricing/ +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://aws.amazon.com/cn/quick/faqs/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Amazon/Quick/0.556.0/Amazon.Quick.yaml b/manifests/a/Amazon/Quick/0.556.0/Amazon.Quick.yaml new file mode 100644 index 000000000000..c32bad334558 --- /dev/null +++ b/manifests/a/Amazon/Quick/0.556.0/Amazon.Quick.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: Amazon.Quick +PackageVersion: 0.556.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/Amebis/ALicPos/3.3/Amebis.ALicPos.installer.yaml b/manifests/a/Amebis/ALicPos/3.3/Amebis.ALicPos.installer.yaml new file mode 100644 index 000000000000..906438ddbab1 --- /dev/null +++ b/manifests/a/Amebis/ALicPos/3.3/Amebis.ALicPos.installer.yaml @@ -0,0 +1,61 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +ManifestType: installer +ManifestVersion: 1.12.0 +PackageIdentifier: Amebis.ALicPos +PackageVersion: 3.3 +Installers: +- InstallerLocale: en-US + Architecture: x86 + InstallerType: msi + InstallerUrl: https://prenos-amebis.b-cdn.net/ALicPos/3.3/ALicPos.Win32.En.msi + InstallerSha256: 564ff68fd1159ef78de9acea351017738bfc83e7ab227f7bc66aa2e6183783b8 + AppsAndFeaturesEntries: + - ProductCode: '{5B529361-EEE2-4F11-8A33-90FB493F88F3}' + DisplayName: Amebis Licence Proxy 3.3 Win32 + UpgradeCode: '{030C0A5C-315B-4266-9E62-2B2F743F650D}' +- InstallerLocale: sl-SI + Architecture: x86 + InstallerType: msi + InstallerUrl: https://prenos-amebis.b-cdn.net/ALicPos/3.3/ALicPos.Win32.Sl.msi + InstallerSha256: 0eadd1980d78015367c17f22cf8d8bc7cda8070273b3f6b1ce927ac24323c498 + AppsAndFeaturesEntries: + - ProductCode: '{5B529361-EEE2-4F11-8A33-90FB493F88F3}' + DisplayName: Amebisov posrednik licenc 3.3 Win32 + UpgradeCode: '{030C0A5C-315B-4266-9E62-2B2F743F650D}' +- InstallerLocale: en-US + Architecture: x64 + InstallerType: msi + InstallerUrl: https://prenos-amebis.b-cdn.net/ALicPos/3.3/ALicPos.x64.En.msi + InstallerSha256: d9e2f54623a885ccbd89ee53f932f97bd782270ef7a6f0b8a0d5574d00a8a4c1 + AppsAndFeaturesEntries: + - ProductCode: '{5B529361-EEE2-4F11-8A33-90FB493F88F3}' + DisplayName: Amebis Licence Proxy 3.3 x64 + UpgradeCode: '{C9CE5E48-43A1-4308-9BBA-15ECBB58AC1E}' +- InstallerLocale: sl-SI + Architecture: x64 + InstallerType: msi + InstallerUrl: https://prenos-amebis.b-cdn.net/ALicPos/3.3/ALicPos.x64.Sl.msi + InstallerSha256: 602b76fbd74e903a5a8439f7c11ee2a921bcb6a9f95e9e9fa78e74868e16fcde + AppsAndFeaturesEntries: + - ProductCode: '{5B529361-EEE2-4F11-8A33-90FB493F88F3}' + DisplayName: Amebisov posrednik licenc 3.3 x64 + UpgradeCode: '{C9CE5E48-43A1-4308-9BBA-15ECBB58AC1E}' +- InstallerLocale: en-US + Architecture: arm64 + InstallerType: msi + InstallerUrl: https://prenos-amebis.b-cdn.net/ALicPos/3.3/ALicPos.ARM64.En.msi + InstallerSha256: b13499e53fb3513c713d6fdaa0f08d44bb01185a99e4b1f24aa3a09533175e7c + AppsAndFeaturesEntries: + - ProductCode: '{5B529361-EEE2-4F11-8A33-90FB493F88F3}' + DisplayName: Amebis Licence Proxy 3.3 ARM64 + UpgradeCode: '{BDDEC577-180E-4B2D-9AE3-F8E35085870A}' +- InstallerLocale: sl-SI + Architecture: arm64 + InstallerType: msi + InstallerUrl: https://prenos-amebis.b-cdn.net/ALicPos/3.3/ALicPos.ARM64.Sl.msi + InstallerSha256: 43b1bae32d5a5c3a4898f6161ac805c548c948dbd1ed799385d6412487a3254b + AppsAndFeaturesEntries: + - ProductCode: '{5B529361-EEE2-4F11-8A33-90FB493F88F3}' + DisplayName: Amebisov posrednik licenc 3.3 ARM64 + UpgradeCode: '{BDDEC577-180E-4B2D-9AE3-F8E35085870A}' diff --git a/manifests/a/Amebis/ALicPos/3.3/Amebis.ALicPos.locale.en-US.yaml b/manifests/a/Amebis/ALicPos/3.3/Amebis.ALicPos.locale.en-US.yaml new file mode 100644 index 000000000000..0af443b1c076 --- /dev/null +++ b/manifests/a/Amebis/ALicPos/3.3/Amebis.ALicPos.locale.en-US.yaml @@ -0,0 +1,13 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +ManifestType: defaultLocale +ManifestVersion: 1.12.0 +PackageIdentifier: Amebis.ALicPos +PackageVersion: 3.3 +PackageLocale: en-US +Publisher: Amebis +PublisherUrl: https://www.amebis.si/ +PackageName: Amebis Licence Proxy +License: Proprietary +ShortDescription: Amebis server for central licence management +Moniker: ALicPos diff --git a/manifests/a/Amebis/ALicPos/3.3/Amebis.ALicPos.locale.sl-SI.yaml b/manifests/a/Amebis/ALicPos/3.3/Amebis.ALicPos.locale.sl-SI.yaml new file mode 100644 index 000000000000..68bbc8bf51eb --- /dev/null +++ b/manifests/a/Amebis/ALicPos/3.3/Amebis.ALicPos.locale.sl-SI.yaml @@ -0,0 +1,12 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +ManifestType: locale +ManifestVersion: 1.12.0 +PackageIdentifier: Amebis.ALicPos +PackageVersion: 3.3 +PackageLocale: sl-SI +Publisher: Amebis +PublisherUrl: https://www.amebis.si/ +PackageName: Amebisov posrednik licenc +License: Proprietary +ShortDescription: Amebisov strežnik za štetje licenc diff --git a/manifests/a/Amebis/ALicPos/3.3/Amebis.ALicPos.yaml b/manifests/a/Amebis/ALicPos/3.3/Amebis.ALicPos.yaml new file mode 100644 index 000000000000..861ddc346421 --- /dev/null +++ b/manifests/a/Amebis/ALicPos/3.3/Amebis.ALicPos.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +ManifestType: version +ManifestVersion: 1.12.0 +PackageIdentifier: Amebis.ALicPos +PackageVersion: 3.3 +DefaultLocale: en-US diff --git a/manifests/a/AntonioOrionus/Arroxy/0.3.1/AntonioOrionus.Arroxy.installer.yaml b/manifests/a/AntonioOrionus/Arroxy/0.3.1/AntonioOrionus.Arroxy.installer.yaml new file mode 100644 index 000000000000..f0ecbb4e6475 --- /dev/null +++ b/manifests/a/AntonioOrionus/Arroxy/0.3.1/AntonioOrionus.Arroxy.installer.yaml @@ -0,0 +1,23 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: AntonioOrionus.Arroxy +PackageVersion: 0.3.1 +InstallerLocale: en-US +InstallerType: nullsoft +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: 676f1cb1-b4d3-53ac-88ee-2c2f796d54e2 +ReleaseDate: 2026-05-07 +AppsAndFeaturesEntries: +- DisplayName: Arroxy 0.3.1 + ProductCode: 676f1cb1-b4d3-53ac-88ee-2c2f796d54e2 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/antonio-orionus/Arroxy/releases/download/v0.3.1/Arroxy-Setup-0.3.1.exe + InstallerSha256: 3A6B35D1564722D97973F424D24806BF801DC90C3807C37A1D4520844CA06732 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/AntonioOrionus/Arroxy/0.3.1/AntonioOrionus.Arroxy.locale.en-US.yaml b/manifests/a/AntonioOrionus/Arroxy/0.3.1/AntonioOrionus.Arroxy.locale.en-US.yaml new file mode 100644 index 000000000000..8b4a4cd05ad6 --- /dev/null +++ b/manifests/a/AntonioOrionus/Arroxy/0.3.1/AntonioOrionus.Arroxy.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: AntonioOrionus.Arroxy +PackageVersion: 0.3.1 +PackageLocale: en-US +Publisher: Antonio Orionus +PublisherUrl: https://github.com/antonio-orionus +PublisherSupportUrl: https://github.com/antonio-orionus/Arroxy/issues +Author: Antonio Orionus +PackageName: Arroxy +PackageUrl: https://github.com/antonio-orionus/Arroxy +License: MIT +LicenseUrl: https://github.com/antonio-orionus/Arroxy/blob/HEAD/LICENSE +Copyright: Copyright © 2026 Antonio Orionus +ShortDescription: Free open-source YouTube downloader GUI based on yt-dlp for Windows, macOS, and Linux. Download videos, Shorts, 4K, 1080p60, HDR, and subtitles with no ads, tracking, cookies, or login. Supports 9 languages. +Description: Arroxy is a free, open-source desktop app for downloading YouTube videos and Shorts in up to 4K, 1080p60, HDR, and audio-only formats with no ads, tracking, or login required. +Moniker: arroxy +Tags: +- audio-downloader +- cross-platform +- desktop-app +- downloader-for-youtube +- media-downloader +- mp4-downloader +- video-download +- video-download-tool +- video-downloader +- youtube-4k-downloader +- youtube-download +- youtube-downloader +- youtube-shorts-download +- yt-dlp +- yt-dlp-gui +ReleaseNotes: |- + What's Changed + - Release 0.3.1 by @antonio-orionus in #4 + New Contributors + - @antonio-orionus made their first contribution in #4 + Full Changelog: v0.3.0...v0.3.1 +ReleaseNotesUrl: https://github.com/antonio-orionus/Arroxy/releases/tag/v0.3.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/AntonioOrionus/Arroxy/0.3.1/AntonioOrionus.Arroxy.yaml b/manifests/a/AntonioOrionus/Arroxy/0.3.1/AntonioOrionus.Arroxy.yaml new file mode 100644 index 000000000000..9bc8c52d3c2d --- /dev/null +++ b/manifests/a/AntonioOrionus/Arroxy/0.3.1/AntonioOrionus.Arroxy.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: AntonioOrionus.Arroxy +PackageVersion: 0.3.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.installer.yaml b/manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.installer.yaml similarity index 88% rename from manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.installer.yaml rename to manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.installer.yaml index 089fecd50000..67b7edfb87ca 100644 --- a/manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.installer.yaml +++ b/manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: AnyDesk.AnyDesk -PackageVersion: 9.7.1 +PackageVersion: 9.7.3 InstallerType: exe Scope: machine InstallModes: @@ -24,6 +24,6 @@ ElevationRequirement: elevationRequired Installers: - Architecture: x86 InstallerUrl: https://download.anydesk.com/AnyDesk.exe - InstallerSha256: 5BF2945CEAAAC681FAD1B9B999C6620CE8393F919179CE6CA0FEF5B411E984E5 + InstallerSha256: 019D0B167D9052D53BAC2A1C711AF90BBD55D6305F5139A276AEB59522075CF0 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.locale.en-US.yaml b/manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.locale.en-US.yaml similarity index 98% rename from manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.locale.en-US.yaml rename to manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.locale.en-US.yaml index 2d44eeab8807..4621b529e697 100644 --- a/manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.locale.en-US.yaml +++ b/manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: AnyDesk.AnyDesk -PackageVersion: 9.7.1 +PackageVersion: 9.7.3 PackageLocale: en-US Publisher: AnyDesk Software GmbH Author: AnyDesk Software GmbH diff --git a/manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.locale.zh-CN.yaml b/manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.locale.zh-CN.yaml similarity index 97% rename from manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.locale.zh-CN.yaml rename to manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.locale.zh-CN.yaml index fe91403b0597..1617f7559fc5 100644 --- a/manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.locale.zh-CN.yaml +++ b/manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: AnyDesk.AnyDesk -PackageVersion: 9.7.1 +PackageVersion: 9.7.3 PackageLocale: zh-CN License: 专有软件 ShortDescription: 超便捷的远程桌面软件 diff --git a/manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.yaml b/manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.yaml similarity index 91% rename from manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.yaml rename to manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.yaml index 3123155d3919..cfdc8febda69 100644 --- a/manifests/a/AnyDesk/AnyDesk/9.7.1/AnyDesk.AnyDesk.yaml +++ b/manifests/a/AnyDesk/AnyDesk/9.7.3/AnyDesk.AnyDesk.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: AnyDesk.AnyDesk -PackageVersion: 9.7.1 +PackageVersion: 9.7.3 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/a/Anysphere/Cursor/3.3.12/Anysphere.Cursor.installer.yaml b/manifests/a/Anysphere/Cursor/3.3.12/Anysphere.Cursor.installer.yaml index 280aef574ba8..e06dd29ac1a6 100644 --- a/manifests/a/Anysphere/Cursor/3.3.12/Anysphere.Cursor.installer.yaml +++ b/manifests/a/Anysphere/Cursor/3.3.12/Anysphere.Cursor.installer.yaml @@ -150,6 +150,7 @@ FileExtensions: - yaml - yml - zsh +ReleaseDate: 2026-05-06 Installers: - Architecture: x64 Scope: user diff --git a/manifests/a/Anysphere/Cursor/3.3.12/Anysphere.Cursor.locale.en-US.yaml b/manifests/a/Anysphere/Cursor/3.3.12/Anysphere.Cursor.locale.en-US.yaml index 3bd85762d844..6700941209a9 100644 --- a/manifests/a/Anysphere/Cursor/3.3.12/Anysphere.Cursor.locale.en-US.yaml +++ b/manifests/a/Anysphere/Cursor/3.3.12/Anysphere.Cursor.locale.en-US.yaml @@ -22,6 +22,9 @@ Tags: - develop - development - programming +ReleaseNotes: |- + You can now see a breakdown of your agent's context usage. + Use these stats to diagnose context issues and improve your setup across rules, skills, MCPs, and subagents. ReleaseNotesUrl: https://changelog.cursor.com/ PurchaseUrl: https://www.cursor.com/pricing Documentations: diff --git a/manifests/a/AppSolves/TikArcade-Studio/3.0.4/AppSolves.TikArcade-Studio.installer.yaml b/manifests/a/AppSolves/TikArcade-Studio/3.0.4/AppSolves.TikArcade-Studio.installer.yaml deleted file mode 100644 index 40a52724fa7b..000000000000 --- a/manifests/a/AppSolves/TikArcade-Studio/3.0.4/AppSolves.TikArcade-Studio.installer.yaml +++ /dev/null @@ -1,17 +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: AppSolves.TikArcade-Studio -PackageVersion: 3.0.4 -InstallerType: inno -Installers: -- Architecture: x64 - InstallerUrl: https://tikarcade.appsolves.dev/api/v1/releases/download/latest - InstallerSha256: 63B341807B9A7B7F80FE5BAD37D6777F90D4CF011981AADB68A9D07C573B237A - 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.4/AppSolves.TikArcade-Studio.locale.en-US.yaml b/manifests/a/AppSolves/TikArcade-Studio/3.0.4/AppSolves.TikArcade-Studio.locale.en-US.yaml deleted file mode 100644 index 6247bd203811..000000000000 --- a/manifests/a/AppSolves/TikArcade-Studio/3.0.4/AppSolves.TikArcade-Studio.locale.en-US.yaml +++ /dev/null @@ -1,37 +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: AppSolves.TikArcade-Studio -PackageVersion: 3.0.4 -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/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/Apple/BonjourPrintServices/2.0.2.0/Apple.BonjourPrintServices.locale.nb-NO.yaml b/manifests/a/Apple/BonjourPrintServices/2.0.2.0/Apple.BonjourPrintServices.locale.nb-NO.yaml new file mode 100644 index 000000000000..259a2d9a1887 --- /dev/null +++ b/manifests/a/Apple/BonjourPrintServices/2.0.2.0/Apple.BonjourPrintServices.locale.nb-NO.yaml @@ -0,0 +1,24 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Apple.BonjourPrintServices +PackageVersion: 2.0.2.0 +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: Bonjour-utskriftstjenester for Windows +PackageUrl: https://support.apple.com/no-no/106380 +License: Proprietær (Gratis) +LicenseUrl: https://www.apple.com/no/legal/sla/ +Copyright: © 2010 Apple Inc. Alle rettigheter forbeholdt. +CopyrightUrl: https://www.apple.com/no/legal/intellectual-property/ +ShortDescription: Lar deg oppdage og konfigurere Bonjour-aktiverte skrivere fra Windows-maskinen ved bruk av skriverveiviseren for Bonjour. +Tags: +- bonjour +- printing +- utskrift +- bonjourutskriftstjenester +- airprint +- udpport5353 +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/a/Argente/DataShredder/1.0.4.7/Argente.DataShredder.installer.yaml b/manifests/a/Argente/DataShredder/1.0.4.7/Argente.DataShredder.installer.yaml deleted file mode 100644 index d6537a7bd000..000000000000 --- a/manifests/a/Argente/DataShredder/1.0.4.7/Argente.DataShredder.installer.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Created with komac v2.16.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Argente.DataShredder -PackageVersion: 1.0.4.7 -InstallerLocale: en-US -InstallerType: inno -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: /VERYSILENT /NORESTART --hidden - SilentWithProgress: /SILENT /NORESTART --hidden -UpgradeBehavior: install -ProductCode: Argente Installer_is1 -ReleaseDate: 2026-04-24 -AppsAndFeaturesEntries: -- ProductCode: Argente Installer_is1 -ElevationRequirement: elevatesSelf -Installers: -- Architecture: x86 - InstallerUrl: https://argenteutilities.com/en/download/datashredderx86 - InstallerSha256: 5C72B40C479AEDA42FAB5ADCBADFB576D985828555A606D5B4E343C419076A62 -- Architecture: x64 - InstallerUrl: https://argenteutilities.com/en/download/datashredderx64 - InstallerSha256: 0BE2BD2AC2E9CD7D14C771D6A534A214F7E6A0EF60C3F6CD763E615D78CE5BC3 -- Architecture: arm64 - InstallerUrl: https://argenteutilities.com/en/download/datashredderarm64 - InstallerSha256: 6708D9BBDAEC2CA0C5BC243B52E5DED270D6C6C1C22403D21BDCCB0D23DDC159 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/a/Argente/DataShredder/1.0.4.7/Argente.DataShredder.locale.en-US.yaml b/manifests/a/Argente/DataShredder/1.0.4.7/Argente.DataShredder.locale.en-US.yaml deleted file mode 100644 index 05d0dbc54a91..000000000000 --- a/manifests/a/Argente/DataShredder/1.0.4.7/Argente.DataShredder.locale.en-US.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Created with komac v2.16.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Argente.DataShredder -PackageVersion: 1.0.4.7 -PackageLocale: en-US -Publisher: Raúl Argente -PublisherUrl: https://argenteutilities.com/ -PublisherSupportUrl: https://argenteutilities.com/en/support -Author: Raúl Argente -PackageName: Argente Data Shredder -PackageUrl: https://argenteutilities.com/ -License: Proprietary -LicenseUrl: https://argenteutilities.com/modal/modal-body.php?type-modal=legal -Copyright: Copyright © 2008 - 2026 Raúl Argente -CopyrightUrl: https://argenteutilities.com/modal/modal-body.php?type-modal=legal -ShortDescription: Securely delete all types of files and sensitive data, ensuring they can never be recovered. -Moniker: argente -Tags: -- '"Data Shredder"' -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/a/Argente/DriveCleaner/3.0.8.3/Argente.DriveCleaner.installer.yaml b/manifests/a/Argente/DriveCleaner/3.0.8.3/Argente.DriveCleaner.installer.yaml new file mode 100644 index 000000000000..b5b1ec1782f2 --- /dev/null +++ b/manifests/a/Argente/DriveCleaner/3.0.8.3/Argente.DriveCleaner.installer.yaml @@ -0,0 +1,32 @@ +# Automatically updated by the winget bot at 2026/May/06 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Argente.DriveCleaner +PackageVersion: 3.0.8.3 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /VERYSILENT /NORESTART --hidden + SilentWithProgress: /SILENT /NORESTART --hidden +UpgradeBehavior: install +ProductCode: Argente Installer_is1 +AppsAndFeaturesEntries: +- ProductCode: Argente Installer_is1 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + InstallerUrl: https://argenteutilities.com/en/download/drivecleanerx86 + InstallerSha256: 1003529739C12E698A3410AD05DCE0503B92BA45930DA5EB56E0E27CC68F7F97 +- Architecture: x64 + InstallerUrl: https://argenteutilities.com/en/download/drivecleanerx64 + InstallerSha256: 11A00543A1ABB62197A677A394AF63BF28EF07FE1D06F6E712348AFB09267EB4 +- Architecture: arm64 + InstallerUrl: https://argenteutilities.com/en/download/drivecleanerarm64 + InstallerSha256: 9855A3B247FE239572C0367C3213163AC1D586A183ED4D76F1A022E3804F7DA3 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/Argente/SystemManager/1.0.1.7/Argente.SystemManager.locale.en-US.yaml b/manifests/a/Argente/DriveCleaner/3.0.8.3/Argente.DriveCleaner.locale.en-US.yaml similarity index 62% rename from manifests/a/Argente/SystemManager/1.0.1.7/Argente.SystemManager.locale.en-US.yaml rename to manifests/a/Argente/DriveCleaner/3.0.8.3/Argente.DriveCleaner.locale.en-US.yaml index de798dfbc253..d10bf4ebcecd 100644 --- a/manifests/a/Argente/SystemManager/1.0.1.7/Argente.SystemManager.locale.en-US.yaml +++ b/manifests/a/Argente/DriveCleaner/3.0.8.3/Argente.DriveCleaner.locale.en-US.yaml @@ -1,16 +1,16 @@ -# Created with komac v2.16.0 +# Automatically updated by the winget bot at 2026/May/06 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json -PackageIdentifier: Argente.SystemManager -PackageVersion: 1.0.1.7 +PackageIdentifier: Argente.DriveCleaner +PackageVersion: 3.0.8.3 PackageLocale: en-US Publisher: Raúl Argente PublisherUrl: https://argenteutilities.com/ -PackageName: Argente System Manager +PackageName: Argente Drive Cleaner License: Proprietary LicenseUrl: https://argenteutilities.com/modal/modal-body.php?type-modal=legal Copyright: Copyright © 2008 - 2026 Raúl Argente CopyrightUrl: https://argenteutilities.com/modal/modal-body.php?type-modal=legal -ShortDescription: Automate system configuration, install or uninstall applications, and automatically optimize system performance with ease. +ShortDescription: Detect and remove all types of unnecessary files, freeing up space quickly and safely. ManifestType: defaultLocale ManifestVersion: 1.12.0 diff --git a/manifests/a/Argente/DriveCleaner/3.0.8.3/Argente.DriveCleaner.yaml b/manifests/a/Argente/DriveCleaner/3.0.8.3/Argente.DriveCleaner.yaml new file mode 100644 index 000000000000..ce2a02fbf1a2 --- /dev/null +++ b/manifests/a/Argente/DriveCleaner/3.0.8.3/Argente.DriveCleaner.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: Argente.DriveCleaner +PackageVersion: 3.0.8.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/Argente/RegistryCleaner/4.0.7.2/Argente.RegistryCleaner.installer.yaml b/manifests/a/Argente/RegistryCleaner/4.0.7.2/Argente.RegistryCleaner.installer.yaml deleted file mode 100644 index e84748eba4e7..000000000000 --- a/manifests/a/Argente/RegistryCleaner/4.0.7.2/Argente.RegistryCleaner.installer.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with komac v2.16.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Argente.RegistryCleaner -PackageVersion: 4.0.7.2 -InstallerLocale: en-US -InstallerType: inno -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: /VERYSILENT /NORESTART --hidden - SilentWithProgress: /SILENT /NORESTART --hidden -UpgradeBehavior: install -ProductCode: Argente Installer_is1 -AppsAndFeaturesEntries: -- ProductCode: Argente Installer_is1 -ElevationRequirement: elevatesSelf -Installers: -- Architecture: x86 - InstallerUrl: https://argenteutilities.com/en/download/registrycleanerx86 - InstallerSha256: 4FB542EE353380B9C1C7F7AD884D4E0C854328B7FB591AFCCA699C1D4D223613 -- Architecture: x64 - InstallerUrl: https://argenteutilities.com/en/download/registrycleanerx64 - InstallerSha256: 76EBD4A0980B63F166007FFB1EF6A6F9E13B14BECC902AC1DCBBC54ABDFB5B95 -- Architecture: arm64 - InstallerUrl: https://argenteutilities.com/en/download/registrycleanerarm64 - InstallerSha256: D4571A52B67F1AD2E10500ED970751347C1E9B9286228652447A452CE8131104 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/a/Argente/RegistryCleaner/4.0.7.2/Argente.RegistryCleaner.locale.en-US.yaml b/manifests/a/Argente/RegistryCleaner/4.0.7.2/Argente.RegistryCleaner.locale.en-US.yaml deleted file mode 100644 index ad476783f4ad..000000000000 --- a/manifests/a/Argente/RegistryCleaner/4.0.7.2/Argente.RegistryCleaner.locale.en-US.yaml +++ /dev/null @@ -1,13 +0,0 @@ -# Created with komac v2.16.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Argente.RegistryCleaner -PackageVersion: 4.0.7.2 -PackageLocale: en-US -Publisher: Raúl Argente -PackageName: Argente Registry Cleaner -License: Proprietary -Copyright: Copyright © 2008 - 2026 Raúl Argente -ShortDescription: Detect and remove errors in the Windows® registry to improve system performance and stability. -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/a/Argente/StartupManager/4.0.6.1/Argente.StartupManager.installer.yaml b/manifests/a/Argente/StartupManager/4.0.6.1/Argente.StartupManager.installer.yaml deleted file mode 100644 index 94c2d9fd1bd8..000000000000 --- a/manifests/a/Argente/StartupManager/4.0.6.1/Argente.StartupManager.installer.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with komac v2.16.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Argente.StartupManager -PackageVersion: 4.0.6.1 -InstallerLocale: en-US -InstallerType: inno -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: /VERYSILENT /NORESTART --hidden - SilentWithProgress: /SILENT /NORESTART --hidden -UpgradeBehavior: install -ProductCode: Argente Installer_is1 -AppsAndFeaturesEntries: -- ProductCode: Argente Installer_is1 -ElevationRequirement: elevatesSelf -Installers: -- Architecture: x86 - InstallerUrl: https://argenteutilities.com/en/download/startupmanagerx86 - InstallerSha256: 9232A3FCD5B614266054014FBB602A2E9E2E6835189A8F826354D696F6A0243B -- Architecture: x64 - InstallerUrl: https://argenteutilities.com/en/download/startupmanagerx64 - InstallerSha256: F69FD533BE4BC072599A240C137CA328A48C1AA4DCBDE01E3C8CB6F727CB191A -- Architecture: arm64 - InstallerUrl: https://argenteutilities.com/en/download/startupmanagerarm64 - InstallerSha256: F0DE4C67D61BC5A33411C83E44E9898AF9D06ABE79390E088DAC5F2B612F52C6 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/a/Argente/StartupManager/4.0.6.1/Argente.StartupManager.locale.en-US.yaml b/manifests/a/Argente/StartupManager/4.0.6.1/Argente.StartupManager.locale.en-US.yaml deleted file mode 100644 index a8a0f767bace..000000000000 --- a/manifests/a/Argente/StartupManager/4.0.6.1/Argente.StartupManager.locale.en-US.yaml +++ /dev/null @@ -1,13 +0,0 @@ -# Created with komac v2.16.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Argente.StartupManager -PackageVersion: 4.0.6.1 -PackageLocale: en-US -Publisher: Raúl Argente -PackageName: Argente Startup Manager -License: Proprietary -Copyright: Copyright © 2008 - 2026 Raúl Argente -ShortDescription: Manage all applications that start with Windows® when your computer boots. Gain speed and security by disabling or removing startup applications that slow down system startup. -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/a/Argente/SystemManager/1.0.1.7/Argente.SystemManager.installer.yaml b/manifests/a/Argente/SystemManager/1.0.1.7/Argente.SystemManager.installer.yaml deleted file mode 100644 index fa68f1e61aa5..000000000000 --- a/manifests/a/Argente/SystemManager/1.0.1.7/Argente.SystemManager.installer.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with komac v2.16.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Argente.SystemManager -PackageVersion: 1.0.1.7 -InstallerLocale: en-US -InstallerType: inno -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: /VERYSILENT /NORESTART --hidden - SilentWithProgress: /SILENT /NORESTART --hidden -UpgradeBehavior: install -ProductCode: Argente Installer_is1 -AppsAndFeaturesEntries: -- ProductCode: Argente Installer_is1 -ElevationRequirement: elevatesSelf -Installers: -- Architecture: x86 - InstallerUrl: https://argenteutilities.com/en/download/systemmanagerx86 - InstallerSha256: BABDA89761A54A42657104525DA98468711E7ABA33E604BD87F94D6E2ED0E17B -- Architecture: x64 - InstallerUrl: https://argenteutilities.com/en/download/systemmanagerx64 - InstallerSha256: 2E9ECBABCFB58686A3546C9008E98BD89F6FC5C4CD5C54E65E6060E7CDD01203 -- Architecture: arm64 - InstallerUrl: https://argenteutilities.com/en/download/systemmanagerarm64 - InstallerSha256: 6BFDDDF22A135DDADB663731CA5C2E7BE4F578BCEAEB9797130918586E27E67D -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/a/Argente/UninstallManager/4.0.6.6/Argente.UninstallManager.installer.yaml b/manifests/a/Argente/UninstallManager/4.0.6.6/Argente.UninstallManager.installer.yaml deleted file mode 100644 index 410b1ed26427..000000000000 --- a/manifests/a/Argente/UninstallManager/4.0.6.6/Argente.UninstallManager.installer.yaml +++ /dev/null @@ -1,32 +0,0 @@ -# Created with komac v2.16.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Argente.UninstallManager -PackageVersion: 4.0.6.6 -InstallerLocale: en-US -InstallerType: inno -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: /VERYSILENT /NORESTART --hidden - SilentWithProgress: /SILENT /NORESTART --hidden -UpgradeBehavior: install -ProductCode: Argente Installer_is1 -AppsAndFeaturesEntries: -- ProductCode: Argente Installer_is1 -ElevationRequirement: elevatesSelf -Installers: -- Architecture: x86 - InstallerUrl: https://argenteutilities.com/en/download/uninstallmanagerx86 - InstallerSha256: 2FB7DBDA282BA46F936C6A939A7C548A4F7F1C1950EA1165D96118B0ABCC63CE -- Architecture: x64 - InstallerUrl: https://argenteutilities.com/en/download/uninstallmanagerx64 - InstallerSha256: B9F540A03246834F28CCAEFADEA5EDB3728A252939DC59F24567EC67967841B3 -- Architecture: arm64 - InstallerUrl: https://argenteutilities.com/en/download/uninstallmanagerarm64 - InstallerSha256: 3D7A131375011E90861ADD16203544A2FA660FB6350D000929FBE63BC91C8810 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/a/Argente/UninstallManager/4.0.6.6/Argente.UninstallManager.locale.en-US.yaml b/manifests/a/Argente/UninstallManager/4.0.6.6/Argente.UninstallManager.locale.en-US.yaml deleted file mode 100644 index a6e373fb36b3..000000000000 --- a/manifests/a/Argente/UninstallManager/4.0.6.6/Argente.UninstallManager.locale.en-US.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Created with komac v2.16.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Argente.UninstallManager -PackageVersion: 4.0.6.6 -PackageLocale: en-US -Publisher: Raúl Argente -PublisherUrl: https://argenteutilities.com/en -PublisherSupportUrl: https://argenteutilities.com/en/support -Author: Raúl Argente -PackageName: Argente Uninstall Manager -PackageUrl: https://argenteutilities.com/en/functions/uninstall-manager -License: Proprietary -Copyright: Copyright © 2026 Raúl Argente -ShortDescription: Manage all installed applications on your computer. Free up space by uninstalling or removing applications you no longer use. -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/a/Argente/UninstallManager/4.0.6.6/Argente.UninstallManager.yaml b/manifests/a/Argente/UninstallManager/4.0.6.6/Argente.UninstallManager.yaml deleted file mode 100644 index 8a4b2bdbe59e..000000000000 --- a/manifests/a/Argente/UninstallManager/4.0.6.6/Argente.UninstallManager.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with komac v2.16.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: Argente.UninstallManager -PackageVersion: 4.0.6.6 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 diff --git a/manifests/a/Arixcel/ArixcelExplorer/9.0.9623.19616/Arixcel.ArixcelExplorer.installer.yaml b/manifests/a/Arixcel/ArixcelExplorer/9.0.9623.19616/Arixcel.ArixcelExplorer.installer.yaml new file mode 100644 index 000000000000..6c1755894dd3 --- /dev/null +++ b/manifests/a/Arixcel/ArixcelExplorer/9.0.9623.19616/Arixcel.ArixcelExplorer.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: Arixcel.ArixcelExplorer +PackageVersion: 9.0.9623.19616 +InstallerType: wix +InstallerSwitches: + InstallLocation: APPLICATIONFOLDER="" +UpgradeBehavior: install +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VSTOR +ProductCode: '{D49FE9A0-42D1-4AC2-AE8A-7F66CFA9B2C7}' +AppsAndFeaturesEntries: +- UpgradeCode: '{3304A6FB-F29F-41BC-8E78-25DF7EA0B746}' +Installers: +- Architecture: x64 + InstallerUrl: https://www.arixcel.com/download/Arixcel_Explorer_v9.0.9623.msi + InstallerSha256: DDF900FABD9225D375B576A70D10EBC5733AA856ADAD4CB3E8F3EAC46AEF00D1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/Arixcel/ArixcelExplorer/9.0.9623.19616/Arixcel.ArixcelExplorer.locale.en-US.yaml b/manifests/a/Arixcel/ArixcelExplorer/9.0.9623.19616/Arixcel.ArixcelExplorer.locale.en-US.yaml new file mode 100644 index 000000000000..bee2c8276dff --- /dev/null +++ b/manifests/a/Arixcel/ArixcelExplorer/9.0.9623.19616/Arixcel.ArixcelExplorer.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Arixcel.ArixcelExplorer +PackageVersion: 9.0.9623.19616 +PackageLocale: en-US +Publisher: Arixcel Ltd +PublisherUrl: https://www.arixcel.com/ +PublisherSupportUrl: https://www.arixcel.com/explorer/help +PrivacyUrl: https://www.arixcel.com/legal/privacy +Author: Arixcel Ltd +PackageName: Arixcel Explorer +PackageUrl: https://www.arixcel.com/explorer/download +License: Proprietary +LicenseUrl: https://www.arixcel.com/legal/eula +Copyright: © 2026 Arixcel Ltd +CopyrightUrl: https://www.arixcel.com/legal/eula +ShortDescription: Essential Excel add‑in for professional users +Description: |- + Arixcel Explorer is an essential Excel add-in for professional users. + Features: + Explore formula logic: You can view the logical structure of any formula within a pop-up window and navigate easily to precedents and back. + Compare spreadsheets: You can easily compare workbooks, worksheets and blocks of cells. Arixcel Explorer will detect any inserted rows or columns and allow you to align worksheets automatically before proceeding with the comparison. + Map formulas: You can apply a temporary colour scheme to your worksheet to instantly reveal inconsistencies in formulas and identify hardcoded data and external references. + Add utility shortcuts: You can add a range of useful keyboard shortcuts to your Excel working environment, fully customisable to your style. + Trace multi-cell dependents: You can trace direct precedents or dependents of multiple cells all at the same time. + Review calculation flow: You can review how data flows in and out of a specific calculation area, or reveal which cells contain inputs, calculations and outputs. +Tags: +- add-in +- excel +- extension +- plugin +ReleaseNotes: |- + - Enhanced support for array formulas - exploring individual array cells + - Minor fixes +PurchaseUrl: https://www.arixcel.com/explorer/activate +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Arixcel/ArixcelExplorer/9.0.9623.19616/Arixcel.ArixcelExplorer.locale.zh-CN.yaml b/manifests/a/Arixcel/ArixcelExplorer/9.0.9623.19616/Arixcel.ArixcelExplorer.locale.zh-CN.yaml new file mode 100644 index 000000000000..74ac1f411c70 --- /dev/null +++ b/manifests/a/Arixcel/ArixcelExplorer/9.0.9623.19616/Arixcel.ArixcelExplorer.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: Arixcel.ArixcelExplorer +PackageVersion: 9.0.9623.19616 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 专业用户必备的 Excel 加载项 +Description: |- + Arixcel Explorer 是一款专业用户必备的 Excel 加载项。 + 功能亮点: + 公式逻辑探查:通过弹出窗口查看任意公式的逻辑结构,轻松跳转至引用单元格并返回。 + 表格比对:便捷对比工作簿、工作表及单元格区域。自动检测新增行列,支持比对前一键对齐工作表。 + 公式图谱:临时色彩标记功能可即时暴露公式不一致问题,快速定位硬编码数据与外部引用。 + 快捷工具集:为 Excel 工作环境添加可完全自定义的实用快捷键组合。 + 多单元格追踪:同时追踪多个单元格的直接引用或被引用关系。 + 计算流分析:查看数据在特定计算区域的流转路径,直观区分输入值、计算过程与结果输出单元格。 +Tags: +- excel +- 加载项 +- 扩展 +- 插件 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Arixcel/ArixcelExplorer/9.0.9623.19616/Arixcel.ArixcelExplorer.yaml b/manifests/a/Arixcel/ArixcelExplorer/9.0.9623.19616/Arixcel.ArixcelExplorer.yaml new file mode 100644 index 000000000000..0926627243b1 --- /dev/null +++ b/manifests/a/Arixcel/ArixcelExplorer/9.0.9623.19616/Arixcel.ArixcelExplorer.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: Arixcel.ArixcelExplorer +PackageVersion: 9.0.9623.19616 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.installer.yaml b/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.installer.yaml index 7c65a84182f5..b42103f627e8 100644 --- a/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.installer.yaml +++ b/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.installer.yaml @@ -1,4 +1,4 @@ -# Created with Devicie 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: aiclientproxy.ProxyCast @@ -14,7 +14,7 @@ InstallationMetadata: Installers: - Architecture: x64 InstallerUrl: https://github.com/limecloud/lime/releases/download/v0.97.0/Lime_0.97.0_x64-offline-setup.exe - InstallerSha256: 7E068A461265C69642E684B1FEE700DFA3257994068A309244821883BA1A3F57 + InstallerSha256: AC9DF9C253445FB2C7891297F2E5F3F29E9CC89016164BDB70FFB6A225ECC5E5 AppsAndFeaturesEntries: - DisplayName: Lime Publisher: lime diff --git a/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.locale.en-US.yaml b/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.locale.en-US.yaml index a57f7b43b3d2..4868af48003f 100644 --- a/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.locale.en-US.yaml +++ b/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with Devicie using komac v2.15.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: aiclientproxy.ProxyCast diff --git a/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.locale.zh-CN.yaml b/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.locale.zh-CN.yaml index ddcb4f58a76d..c44c3660c48f 100644 --- a/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.locale.zh-CN.yaml +++ b/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.locale.zh-CN.yaml @@ -1,4 +1,4 @@ -# Created with Devicie 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: aiclientproxy.ProxyCast diff --git a/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.yaml b/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.yaml index 88c6209b9b42..956e9322af9a 100644 --- a/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.yaml +++ b/manifests/a/aiclientproxy/ProxyCast/0.97.0/aiclientproxy.ProxyCast.yaml @@ -1,4 +1,4 @@ -# Created with Devicie 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: aiclientproxy.ProxyCast diff --git a/manifests/a/asciinema/agg/1.8.1/asciinema.agg.installer.yaml b/manifests/a/asciinema/agg/1.8.1/asciinema.agg.installer.yaml new file mode 100644 index 000000000000..fa820d61fb4b --- /dev/null +++ b/manifests/a/asciinema/agg/1.8.1/asciinema.agg.installer.yaml @@ -0,0 +1,18 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: asciinema.agg +PackageVersion: 1.8.1 +InstallerType: portable +Commands: +- agg +Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +ReleaseDate: 2026-05-06 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/asciinema/agg/releases/download/v1.8.1/agg-x86_64-pc-windows-msvc.exe + InstallerSha256: 31ACC4629C9FAAB3A2465E5521EF8A2623076E99111F925C005C5673CD46CCC5 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/asciinema/agg/1.8.1/asciinema.agg.locale.en-US.yaml b/manifests/a/asciinema/agg/1.8.1/asciinema.agg.locale.en-US.yaml new file mode 100644 index 000000000000..1ac63be21767 --- /dev/null +++ b/manifests/a/asciinema/agg/1.8.1/asciinema.agg.locale.en-US.yaml @@ -0,0 +1,47 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: asciinema.agg +PackageVersion: 1.8.1 +PackageLocale: en-US +Publisher: asciinema +PublisherUrl: https://asciinema.org/ +PublisherSupportUrl: https://discourse.asciinema.org/ +PrivacyUrl: https://asciinema.org/privacy +PackageName: agg +PackageUrl: https://github.com/asciinema/agg +License: GPL-3.0 +LicenseUrl: https://github.com/asciinema/agg/blob/HEAD/LICENSE +Copyright: Copyright © 2022 Marcin Kulik +CopyrightUrl: https://github.com/asciinema/agg#license +ShortDescription: agg is a command-line tool for generating animated GIF files from asciicast v2 files produced by asciinema terminal recorder. +Tags: +- asciicast +- asciicast2gif +- asciinema +- cli +- gif +- gifski +- powersession +- rust +ReleaseNotes: |- + This is a quick follow up release for today's 1.8.0, which addresses a few rendering regressions: + - improved font fallback in the swash renderer: when configured font families don't contain a glyph, agg now tries other loaded system and --font-dir fonts before giving up + - improved font fallback in the resvg renderer to prefer agg's configured fallback chain before falling back to arbitrary fonts from the font database + - fixed clipping/overpainting of glyphs that extend beyond their own terminal cell in the swash renderer + The highlights from 1.8.0: + - added new swash font/text rendering backend, now the default, replacing fontdue; --renderer fontdue remains accepted as a compatibility alias + - improved font fallback, with built-in Noto Emoji and Nerd Font Symbols fallback fonts + - added --text-font-family and --emoji-font-family options for finer control over font selection; --font-family still works as an all-in-one override + - improved rendering of emoji, Nerd Font icons, CJK characters, bold/italic text, underlines, and block/mosaic drawing characters + - added explicit support for Apple Color Emoji on macOS + - added fallback handling for unsupported COLRv1 color emoji glyphs + - added --bold-is-bright option to render bold text using bright ANSI colors + - fixed faint text attribute and underlined spaces rendering in the resvg renderer + - --line-height values below 1.0 are now rejected with a clear error message + - upgraded avt to latest version to bring recent terminal emulation improvements + - upgraded rendering, CLI, HTTP, logging, and Nix-related dependencies + - updated Nix package/development setup +ReleaseNotesUrl: https://github.com/asciinema/agg/releases/tag/v1.8.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/asciinema/agg/1.8.1/asciinema.agg.yaml b/manifests/a/asciinema/agg/1.8.1/asciinema.agg.yaml new file mode 100644 index 000000000000..0396cc7c0b5d --- /dev/null +++ b/manifests/a/asciinema/agg/1.8.1/asciinema.agg.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: asciinema.agg +PackageVersion: 1.8.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.installer.yaml b/manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.installer.yaml new file mode 100644 index 000000000000..ce2d87c21a26 --- /dev/null +++ b/manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: astral-sh.uv +PackageVersion: 0.11.10 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: uvx.exe + PortableCommandAlias: uvx +- RelativeFilePath: uv.exe + PortableCommandAlias: uv +- RelativeFilePath: uvw.exe + PortableCommandAlias: uvw +Commands: +- uv +- uvw +- uvx +ReleaseDate: 2026-05-05 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.11.10/uv-i686-pc-windows-msvc.zip + InstallerSha256: D56AD43D355D6C40FEE4009D0FB7E6710416CE9B25BEBF12A4127E51B3595B3C + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +- Architecture: x64 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.11.10/uv-x86_64-pc-windows-msvc.zip + InstallerSha256: 7A0C424C7BC55A74751F13592235953EBBE182FA00355F7AE3FB7AB734A51638 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + InstallerUrl: https://github.com/astral-sh/uv/releases/download/0.11.10/uv-aarch64-pc-windows-msvc.zip + InstallerSha256: 3D5878CFC55106083ADA1E41CCCDDE477413701EB9D34767E8AD973BB0863DE6 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.locale.en-US.yaml b/manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.locale.en-US.yaml new file mode 100644 index 000000000000..4cdfa526afcc --- /dev/null +++ b/manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.locale.en-US.yaml @@ -0,0 +1,30 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: astral-sh.uv +PackageVersion: 0.11.10 +PackageLocale: en-US +Publisher: Astral Software Inc. +PublisherUrl: https://astral.sh/ +PublisherSupportUrl: https://github.com/astral-sh/uv/issues +Author: Astral Software Inc. +PackageName: uv +PackageUrl: https://github.com/astral-sh/uv +License: Apache-2.0 or MIT +LicenseUrl: https://github.com/astral-sh/uv/blob/HEAD/README.md#license +Copyright: Copyright (c) 2026 Astral Software Inc. +ShortDescription: An extremely fast Python package and project manager, written in Rust. +Description: An extremely fast Python package and project manager, written in Rust. Designed as a single tool to replace pip, pip-tools, pipx, poetry, pyenv, twine, virtualenv workflows, and more. +Moniker: uv +Tags: +- python +ReleaseNotes: |- + Released on 2026-05-05. + Bug fixes + - Allow pre-release Python requests with non-zero patch versions (#19286) +ReleaseNotesUrl: https://github.com/astral-sh/uv/releases/tag/0.11.10 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://docs.astral.sh/uv/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.locale.zh-CN.yaml b/manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.locale.zh-CN.yaml new file mode 100644 index 000000000000..6143dd035122 --- /dev/null +++ b/manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.locale.zh-CN.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: astral-sh.uv +PackageVersion: 0.11.10 +PackageLocale: zh-CN +License: Apache-2.0 或 MIT +ShortDescription: 用 Rust 编写的极速 Python 软件包和项目管理器 +Description: 用 Rust 编写的极速 Python 软件包和项目管理器。可作为单一工具替代 pip、pip-tools、pipx、poles、pyenv、twine、virtualenv 工作流等。 +ReleaseNotesUrl: https://github.com/astral-sh/uv/releases/tag/0.11.10 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.astral.sh/uv/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.yaml b/manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.yaml similarity index 77% rename from manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.yaml rename to manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.yaml index 6aebd0336724..e151cc0347db 100644 --- a/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.yaml +++ b/manifests/a/astral-sh/uv/0.11.10/astral-sh.uv.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.5.1 +PackageIdentifier: astral-sh.uv +PackageVersion: 0.11.10 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/a/axpnet/AeroFTP/3.3.2/axpnet.AeroFTP.installer.yaml b/manifests/a/axpnet/AeroFTP/3.3.2/axpnet.AeroFTP.installer.yaml index c4695bb79c9f..56e2602926d5 100644 --- a/manifests/a/axpnet/AeroFTP/3.3.2/axpnet.AeroFTP.installer.yaml +++ b/manifests/a/axpnet/AeroFTP/3.3.2/axpnet.AeroFTP.installer.yaml @@ -1,4 +1,4 @@ -# Created with WinGet Releaser using 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: axpnet.AeroFTP @@ -10,7 +10,7 @@ Installers: InstallerType: nullsoft Scope: user InstallerUrl: https://github.com/axpdev-lab/aeroftp/releases/download/v3.3.2/AeroFTP_3.3.2_x64-setup.exe - InstallerSha256: 5F3653D46CE74EEA356A541914C9F59D35AC331A0EB37EB97B8EF81D21584461 + InstallerSha256: 6D39E09EC1A35D46BE44AD461E4590FD1F1F8AFFF4C71CD9D59C07084CD50691 InstallerSwitches: Silent: /S SilentWithProgress: /S @@ -24,8 +24,8 @@ Installers: InstallerType: wix Scope: machine InstallerUrl: https://github.com/axpdev-lab/aeroftp/releases/download/v3.3.2/AeroFTP_3.3.2_x64_en-US.msi - InstallerSha256: 3CB16D8BB58C3315FED5DB9F40C3F9309BE3FDF3D624AF740AC0373A778CA068 - ProductCode: '{466B3CD7-DF9A-40AC-BA50-20D57EC54FCA}' + InstallerSha256: 9790A9F20A1E3C535CDFEAFC2741EB1584EBD795B864C6D2B6A03E187F5E542B + ProductCode: '{7C840B42-19B5-4FA2-9829-D7F40B60E95C}' AppsAndFeaturesEntries: - Publisher: aeroftp ProductCode: '{466B3CD7-DF9A-40AC-BA50-20D57EC54FCA}' diff --git a/manifests/a/axpnet/AeroFTP/3.3.2/axpnet.AeroFTP.locale.en-US.yaml b/manifests/a/axpnet/AeroFTP/3.3.2/axpnet.AeroFTP.locale.en-US.yaml index d494bc0aac95..cb2c9e2e364a 100644 --- a/manifests/a/axpnet/AeroFTP/3.3.2/axpnet.AeroFTP.locale.en-US.yaml +++ b/manifests/a/axpnet/AeroFTP/3.3.2/axpnet.AeroFTP.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with WinGet Releaser using 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: axpnet.AeroFTP diff --git a/manifests/a/axpnet/AeroFTP/3.3.2/axpnet.AeroFTP.yaml b/manifests/a/axpnet/AeroFTP/3.3.2/axpnet.AeroFTP.yaml index 41ea8a9010e6..18568298b61b 100644 --- a/manifests/a/axpnet/AeroFTP/3.3.2/axpnet.AeroFTP.yaml +++ b/manifests/a/axpnet/AeroFTP/3.3.2/axpnet.AeroFTP.yaml @@ -1,4 +1,4 @@ -# Created with WinGet Releaser using 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: axpnet.AeroFTP diff --git a/manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.installer.yaml b/manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.installer.yaml new file mode 100644 index 000000000000..74a7d21bc64b --- /dev/null +++ b/manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.installer.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Balena.Etcher +PackageVersion: 2.1.5 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Protocols: +- etcher +ProductCode: balena_etcher +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/balena-io/etcher/releases/download/v2.1.5/balenaEtcher-2.1.5.Setup.exe + InstallerSha256: 4DC3E898926E52F60D537E02E1306B30B8D6DB92D3719AB29A840DF046C9CAC5 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.locale.en-US.yaml b/manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.locale.en-US.yaml new file mode 100644 index 000000000000..7f484c1665bc --- /dev/null +++ b/manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.locale.en-US.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Balena.Etcher +PackageVersion: 2.1.5 +PackageLocale: en-US +Publisher: Balena Ltd. +PublisherUrl: https://www.balena.io/ +PublisherSupportUrl: https://github.com/balena-io/etcher/blob/HEAD/docs/SUPPORT.md +PrivacyUrl: https://www.balena.io/privacy-policy +Author: Balena Ltd. +PackageName: balenaEtcher +PackageUrl: https://etcher.balena.io/ +License: Apache-2.0 +LicenseUrl: https://github.com/balena-io/etcher/blob/HEAD/LICENSE +Copyright: Copyright 2016-2026 Balena Ltd. +ShortDescription: Flash OS images to SD cards & USB drives, safely and easily. +Description: Etcher is a powerful OS image flasher built with web technologies to ensure flashing an SDCard or USB drive is a pleasant and safe experience. It protects you from accidentally writing to your hard-drives, ensures every byte of data was written correctly, and much more. It can also directly flash Raspberry Pi devices that support USB device boot mode. +Tags: +- boot +- dd +- flash +- format +- image +- img +- iso +- usb +ReleaseNotes: |- + ccf063f9 (Add libgdk-pixbuf dependency alternatives to fix Ubuntu 26.04 installation, 2026-05-07) + 83522252 (Replace the EOL macos-13 test runners with macos-14, 2026-05-07) +ReleaseNotesUrl: https://github.com/balena-io/etcher/releases/tag/v2.1.5 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://etcher-docs.balena.io/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.locale.zh-CN.yaml b/manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.locale.zh-CN.yaml new file mode 100644 index 000000000000..e2f6150715ef --- /dev/null +++ b/manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Balena.Etcher +PackageVersion: 2.1.5 +PackageLocale: zh-CN +Publisher: Balena Ltd. +PublisherUrl: https://www.balena.io/ +PublisherSupportUrl: https://github.com/balena-io/etcher/blob/HEAD/docs/SUPPORT.md +PrivacyUrl: https://www.balena.io/privacy-policy +Author: Balena Ltd. +PackageName: balenaEtcher +PackageUrl: https://etcher.balena.io/ +License: Apache-2.0 +LicenseUrl: https://github.com/balena-io/etcher/blob/HEAD/LICENSE +Copyright: Copyright 2016-2026 Balena Ltd. +ShortDescription: 安全轻松地将操作系统镜像刷入 SD 卡和 USB 驱动器。 +Description: Etcher 是一款功能强大的操作系统镜像刷写工具,采用网页技术,让刷写 SD 卡或 USB 驱动器变得愉快而安全。它能防止意外写入硬盘,确保每个字节的数据都被正确写入,等等,并能直接刷写支持 USB 设备启动模式的 Raspberry Pi 设备。 +Tags: +- dd +- img +- iso +- usb +- 刷入 +- 刷写 +- 启动 +- 引导 +- 格式化 +- 烧录 +- 镜像 +ReleaseNotesUrl: https://github.com/balena-io/etcher/releases/tag/v2.1.5 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://etcher-docs.balena.io/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.yaml b/manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.yaml similarity index 77% rename from manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.yaml rename to manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.yaml index 6f40237ab86c..631a3cba5927 100644 --- a/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.yaml +++ b/manifests/b/Balena/Etcher/2.1.5/Balena.Etcher.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.4.9 +PackageIdentifier: Balena.Etcher +PackageVersion: 2.1.5 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/b/BitSum/ProcessLasso/Beta/18.2.0.5/BitSum.ProcessLasso.Beta.installer.yaml b/manifests/b/BitSum/ProcessLasso/Beta/18.2.0.9/BitSum.ProcessLasso.Beta.installer.yaml similarity index 82% rename from manifests/b/BitSum/ProcessLasso/Beta/18.2.0.5/BitSum.ProcessLasso.Beta.installer.yaml rename to manifests/b/BitSum/ProcessLasso/Beta/18.2.0.9/BitSum.ProcessLasso.Beta.installer.yaml index 9bc19acb8504..0560cf8d98dc 100644 --- a/manifests/b/BitSum/ProcessLasso/Beta/18.2.0.5/BitSum.ProcessLasso.Beta.installer.yaml +++ b/manifests/b/BitSum/ProcessLasso/Beta/18.2.0.9/BitSum.ProcessLasso.Beta.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: BitSum.ProcessLasso.Beta -PackageVersion: 18.2.0.5 +PackageVersion: 18.2.0.9 InstallerType: nullsoft Scope: machine UpgradeBehavior: install @@ -12,6 +12,6 @@ InstallationMetadata: Installers: - Architecture: x64 InstallerUrl: https://dl.bitsum.com/files/beta/processlassosetup64.exe - InstallerSha256: 960C929BE9CE12E85365CAB48BC15F198315090301C0952096BF919D3F7DF881 + InstallerSha256: F44A7DBAC0C0EB4A1149E264375D98A1E163DA05FC522FC04B6544EC355D9CE4 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/b/BitSum/ProcessLasso/Beta/18.2.0.5/BitSum.ProcessLasso.Beta.locale.en-US.yaml b/manifests/b/BitSum/ProcessLasso/Beta/18.2.0.9/BitSum.ProcessLasso.Beta.locale.en-US.yaml similarity index 99% rename from manifests/b/BitSum/ProcessLasso/Beta/18.2.0.5/BitSum.ProcessLasso.Beta.locale.en-US.yaml rename to manifests/b/BitSum/ProcessLasso/Beta/18.2.0.9/BitSum.ProcessLasso.Beta.locale.en-US.yaml index 26ddcac8471b..b10622533f04 100644 --- a/manifests/b/BitSum/ProcessLasso/Beta/18.2.0.5/BitSum.ProcessLasso.Beta.locale.en-US.yaml +++ b/manifests/b/BitSum/ProcessLasso/Beta/18.2.0.9/BitSum.ProcessLasso.Beta.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: BitSum.ProcessLasso.Beta -PackageVersion: 18.2.0.5 +PackageVersion: 18.2.0.9 PackageLocale: en-US Publisher: Bitsum PublisherUrl: https://bitsum.com/ diff --git a/manifests/b/BitSum/ProcessLasso/Beta/18.2.0.5/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml b/manifests/b/BitSum/ProcessLasso/Beta/18.2.0.9/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml similarity index 98% rename from manifests/b/BitSum/ProcessLasso/Beta/18.2.0.5/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml rename to manifests/b/BitSum/ProcessLasso/Beta/18.2.0.9/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml index 7b80985945e4..584c8f45451f 100644 --- a/manifests/b/BitSum/ProcessLasso/Beta/18.2.0.5/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml +++ b/manifests/b/BitSum/ProcessLasso/Beta/18.2.0.9/BitSum.ProcessLasso.Beta.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: BitSum.ProcessLasso.Beta -PackageVersion: 18.2.0.5 +PackageVersion: 18.2.0.9 PackageLocale: zh-CN License: 专有软件 ShortDescription: 实时 CPU 优化和自动化 diff --git a/manifests/b/BitSum/ProcessLasso/Beta/18.2.0.5/BitSum.ProcessLasso.Beta.yaml b/manifests/b/BitSum/ProcessLasso/Beta/18.2.0.9/BitSum.ProcessLasso.Beta.yaml similarity index 90% rename from manifests/b/BitSum/ProcessLasso/Beta/18.2.0.5/BitSum.ProcessLasso.Beta.yaml rename to manifests/b/BitSum/ProcessLasso/Beta/18.2.0.9/BitSum.ProcessLasso.Beta.yaml index 5c9cd5437bc8..29714f258754 100644 --- a/manifests/b/BitSum/ProcessLasso/Beta/18.2.0.5/BitSum.ProcessLasso.Beta.yaml +++ b/manifests/b/BitSum/ProcessLasso/Beta/18.2.0.9/BitSum.ProcessLasso.Beta.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: BitSum.ProcessLasso.Beta -PackageVersion: 18.2.0.5 +PackageVersion: 18.2.0.9 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/LarkCLI/1.0.25/ByteDance.LarkCLI.installer.yaml b/manifests/b/ByteDance/LarkCLI/1.0.25/ByteDance.LarkCLI.installer.yaml new file mode 100644 index 000000000000..105ba3aad711 --- /dev/null +++ b/manifests/b/ByteDance/LarkCLI/1.0.25/ByteDance.LarkCLI.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: ByteDance.LarkCLI +PackageVersion: 1.0.25 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: lark-cli.exe +Commands: +- lark-cli +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/larksuite/cli/releases/download/v1.0.25/lark-cli-1.0.25-windows-amd64.zip + InstallerSha256: 2083D161216FFF5689587E812B64A1FB73D04C267D426E1011C5D1C8BC2EABAA +- Architecture: arm64 + InstallerUrl: https://github.com/larksuite/cli/releases/download/v1.0.25/lark-cli-1.0.25-windows-arm64.zip + InstallerSha256: B7110E1083BE5C20AE0508C0D5817605AAF8077060C08BEFB21D9B1AA641705D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/LarkCLI/1.0.25/ByteDance.LarkCLI.locale.en-US.yaml b/manifests/b/ByteDance/LarkCLI/1.0.25/ByteDance.LarkCLI.locale.en-US.yaml new file mode 100644 index 000000000000..b782f53193b9 --- /dev/null +++ b/manifests/b/ByteDance/LarkCLI/1.0.25/ByteDance.LarkCLI.locale.en-US.yaml @@ -0,0 +1,55 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ByteDance.LarkCLI +PackageVersion: 1.0.25 +PackageLocale: en-US +Publisher: Lark Technologies Pte. Ltd. +PublisherUrl: https://www.larksuite.com/en_us/ +PublisherSupportUrl: https://github.com/larksuite/cli/issues +PrivacyUrl: https://www.larksuite.com/en_us/privacy-policy +Author: Lark Technologies Pte. Ltd. +PackageName: Lark CLI +PackageUrl: https://github.com/larksuite/cli +License: MIT +LicenseUrl: https://github.com/larksuite/cli/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Lark Technologies Pte. Ltd. +CopyrightUrl: https://www.larksuite.com/en_us/user-terms-of-service +ShortDescription: A command-line tool for Lark/Feishu Open Platform — built for humans and AI Agents. Covers core business domains including Messenger, Docs, Base, Sheets, Calendar, Mail, Tasks, Meetings, and more, with 200+ commands and 19 AI Agent Skills. +Description: |- + A command-line tool for Lark/Feishu Open Platform — built for humans and AI Agents. Covers core business domains including Messenger, Docs, Base, Sheets, Calendar, Mail, Tasks, Meetings, and more, with 200+ commands and 19 AI Agent Skills. + Why lark-cli? + - Agent-Native Design — 19 structured Skills out of the box, compatible with popular AI tools — Agents can operate Lark with zero extra setup + - Wide Coverage — 11 business domains, 200+ curated commands, 19 AI Agent Skills + - AI-Friendly & Optimized — Every command is tested with real Agents, featuring concise parameters, smart defaults, and structured output to maximize Agent call success rates + - Open Source, Zero Barriers — MIT license, ready to use, just npm install + - Up and Running in 3 Minutes — One-click app creation, interactive login, from install to first API call in just 3 steps + - Secure & Controllable — Input injection protection, terminal output sanitization, OS-native keychain credential storage + - Three-Layer Architecture — Shortcuts (human & AI friendly) → API Commands (platform-synced) → Raw API (full coverage), choose the right granularity + Features + - 📅 Calendar: View agenda, create events, invite attendees, check free/busy status, time suggestions + - 💬 Messenger: Send/reply messages, create and manage group chats, view chat history & threads, search messages, download media + - 📄 Docs: Create, read, update, and search documents, read/write media & whiteboards + - 📁 Drive: Upload and download files, search docs & wiki, manage comments + - 📊 Base: Create and manage tables, fields, records, views, dashboards, data aggregation & analytics + - 📈 Sheets: Create, read, write, append, find, and export spreadsheet data + - ✅ Tasks: Create, query, update, and complete tasks; manage task lists, subtasks, comments & reminders + - 📚 Wiki: Create and manage knowledge spaces, nodes, and documents + - 👤 Contact: Search users by name/email/phone, get user profiles + - 📧 Mail: Browse, search, read emails, send, reply, forward, manage drafts, watch new mail + - 🎥 Meetings: Search meeting records, query meeting minutes & recordings +Moniker: lark-cli +Tags: +- feishu +- lark +ReleaseNotes: |- + Changelog + - 88d4e3bd908497a93acaf4c32c8f14438f846519 chore(release): v1.0.25 (#774) + - 8f410ab140f2162603794af484a8d9b2fcd14703 feat: add skills version drift notice and unify update flow (#723) + - eed802c8144d3a3d7f7b3f7bfa205d23f874b1a0 fix: handle negative truncate lengths (#744) + - b65147f2080667d3500ecff324688c2a9ca8d2a8 fix: migrate task shortcut errors from bare fmt.Errorf to structured output.Errorf/ErrValidation (#740) + - d9b9f094cf00fcad7f088cdc48338e32ab8dbb49 fix: reject invalid json pointer escapes (#741) + - 7c68639b31fe05f95ddb111125c143795857080a fix: remove misleading default value from --as flag help text (#769) +ReleaseNotesUrl: https://github.com/larksuite/cli/releases/tag/v1.0.25 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/LarkCLI/1.0.25/ByteDance.LarkCLI.locale.zh-Hans-CN.yaml b/manifests/b/ByteDance/LarkCLI/1.0.25/ByteDance.LarkCLI.locale.zh-Hans-CN.yaml new file mode 100644 index 000000000000..9719169a5f8c --- /dev/null +++ b/manifests/b/ByteDance/LarkCLI/1.0.25/ByteDance.LarkCLI.locale.zh-Hans-CN.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: ByteDance.LarkCLI +PackageVersion: 1.0.25 +PackageLocale: zh-Hans-CN +Publisher: 北京飞书科技有限公司 +PublisherUrl: https://www.feishu.cn/ +PrivacyUrl: https://www.feishu.cn/privacy +Author: 北京飞书科技有限公司 +CopyrightUrl: https://www.feishu.cn/terms +ShortDescription: 飞书/Lark 开放平台命令行工具 — 让人类和 AI Agent 都能在终端中操作飞书。覆盖消息、文档、多维表格、电子表格、日历、邮箱、任务、会议等核心业务域,提供 200+ 命令及 19 个 AI Agent Skills。 +Description: |- + 飞书/Lark 开放平台命令行工具 — 让人类和 AI Agent 都能在终端中操作飞书。覆盖消息、文档、多维表格、电子表格、日历、邮箱、任务、会议等核心业务域,提供 200+ 命令及 19 个 AI Agent Skills。 + 为什么选 lark-cli? + - 为 Agent 原生设计 — Skills 开箱即用,适配主流 AI 工具,Agent 无需额外适配即可操作飞书 + - 覆盖面广 — 11 大业务域、200+ 精选命令、 19 个 AI Agent Skills + - AI 友好调优 — 每条命令经过 Agent 实测验证,提供更友好的参数、智能默认值和结构化输出,大幅提升 Agent 调用成功率 + - 开源零门槛 — MIT 协议,开箱即用,npm install 即可使用 + - 三分钟上手 — 一键创建应用、交互式登录授权,从安装到第一次 API 调用只需三步 + - 安全可控 — 输入防注入、终端输出净化、OS 原生密钥链存储凭证 + - 三层调用架构 — 快捷命令(人机友好)→ API 命令(平台同步)→ 通用调用(全 API 覆盖),按需选择粒度 + 功能 + - 📅 日历:查看日程、创建日程、邀请参会人、查询忙闲状态、时间建议 + - 💬 即时通讯:发送/回复消息、创建和管理群聊、查看聊天记录与话题、搜索消息、下载媒体文件 + - 📄 云文档:创建、读取、更新文档、搜索文档、读写素材与画板 + - 📁 云空间:上传和下载文件、搜索文档与知识库、管理评论 + - 📊 多维表格:创建和管理多维表格、字段、记录、视图、仪表盘,数据聚合分析 + - 📈 电子表格:创建、读取、写入、追加、查找和导出表格数据 + - ✅ 任务:创建、查询、更新和完成任务;管理任务清单、子任务、评论与提醒 + - 📚 知识库:创建和管理知识空间、节点和文档 + - 👤 通讯录:按姓名/邮箱/手机号搜索用户、获取用户信息 + - 📧 邮箱:浏览、搜索、阅读邮件,发送、回复、转发邮件,管理草稿,监听新邮件 + - 🎥 视频会议:搜索会议记录、查询会议纪要与录制 +Tags: +- lark +- 飞书 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/b/ByteDance/LarkCLI/1.0.25/ByteDance.LarkCLI.locale.zh-Hans.yaml b/manifests/b/ByteDance/LarkCLI/1.0.25/ByteDance.LarkCLI.locale.zh-Hans.yaml new file mode 100644 index 000000000000..6e2fa3d4c21c --- /dev/null +++ b/manifests/b/ByteDance/LarkCLI/1.0.25/ByteDance.LarkCLI.locale.zh-Hans.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: ByteDance.LarkCLI +PackageVersion: 1.0.25 +PackageLocale: zh-Hans +PublisherUrl: https://www.larksuite.com/zh_cn/ +PrivacyUrl: https://www.larksuite.com/zh_cn/privacy-policy +CopyrightUrl: https://www.larksuite.com/zh_cn/user-terms-of-service +ShortDescription: 飞书/Lark 开放平台命令行工具 — 让人类和 AI Agent 都能在终端中操作飞书。覆盖消息、文档、多维表格、电子表格、日历、邮箱、任务、会议等核心业务域,提供 200+ 命令及 19 个 AI Agent Skills。 +Description: |- + 飞书/Lark 开放平台命令行工具 — 让人类和 AI Agent 都能在终端中操作飞书。覆盖消息、文档、多维表格、电子表格、日历、邮箱、任务、会议等核心业务域,提供 200+ 命令及 19 个 AI Agent Skills。 + 为什么选 lark-cli? + - 为 Agent 原生设计 — Skills 开箱即用,适配主流 AI 工具,Agent 无需额外适配即可操作飞书 + - 覆盖面广 — 11 大业务域、200+ 精选命令、 19 个 AI Agent Skills + - AI 友好调优 — 每条命令经过 Agent 实测验证,提供更友好的参数、智能默认值和结构化输出,大幅提升 Agent 调用成功率 + - 开源零门槛 — MIT 协议,开箱即用,npm install 即可使用 + - 三分钟上手 — 一键创建应用、交互式登录授权,从安装到第一次 API 调用只需三步 + - 安全可控 — 输入防注入、终端输出净化、OS 原生密钥链存储凭证 + - 三层调用架构 — 快捷命令(人机友好)→ API 命令(平台同步)→ 通用调用(全 API 覆盖),按需选择粒度 + 功能 + - 📅 日历:查看日程、创建日程、邀请参会人、查询忙闲状态、时间建议 + - 💬 即时通讯:发送/回复消息、创建和管理群聊、查看聊天记录与话题、搜索消息、下载媒体文件 + - 📄 云文档:创建、读取、更新文档、搜索文档、读写素材与画板 + - 📁 云空间:上传和下载文件、搜索文档与知识库、管理评论 + - 📊 多维表格:创建和管理多维表格、字段、记录、视图、仪表盘,数据聚合分析 + - 📈 电子表格:创建、读取、写入、追加、查找和导出表格数据 + - ✅ 任务:创建、查询、更新和完成任务;管理任务清单、子任务、评论与提醒 + - 📚 知识库:创建和管理知识空间、节点和文档 + - 👤 通讯录:按姓名/邮箱/手机号搜索用户、获取用户信息 + - 📧 邮箱:浏览、搜索、阅读邮件,发送、回复、转发邮件,管理草稿,监听新邮件 + - 🎥 视频会议:搜索会议记录、查询会议纪要与录制 +Tags: +- lark +- 飞书 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.yaml b/manifests/b/ByteDance/LarkCLI/1.0.25/ByteDance.LarkCLI.yaml similarity index 74% rename from manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.yaml rename to manifests/b/ByteDance/LarkCLI/1.0.25/ByteDance.LarkCLI.yaml index e95582bf2bf6..d7e005692e74 100644 --- a/manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.yaml +++ b/manifests/b/ByteDance/LarkCLI/1.0.25/ByteDance.LarkCLI.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: ByteDance.LarkCLI +PackageVersion: 1.0.25 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/b/badlogic/pi/0.73.1/badlogic.pi.installer.yaml b/manifests/b/badlogic/pi/0.73.1/badlogic.pi.installer.yaml new file mode 100644 index 000000000000..ed2de564427e --- /dev/null +++ b/manifests/b/badlogic/pi/0.73.1/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.73.1 +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.73.1/pi-windows-x64.zip + InstallerSha256: 8BDB8E612A4B820F939A524652709B167AC5F1D4D1BBA25988A631BFF0BBE80B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/b/badlogic/pi/0.73.1/badlogic.pi.locale.en-US.yaml b/manifests/b/badlogic/pi/0.73.1/badlogic.pi.locale.en-US.yaml new file mode 100644 index 000000000000..257efb38c800 --- /dev/null +++ b/manifests/b/badlogic/pi/0.73.1/badlogic.pi.locale.en-US.yaml @@ -0,0 +1,57 @@ +# 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.73.1 +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: |- + New Features + - Self-update support for the npm scope migration: pi update --self now supports the upcoming package rename from @mariozechner/pi-coding-agent to @earendil-works/pi-coding-agent. After the new package is published, existing global installs can update through the normal self-update flow; pi will uninstall the old global package and install the package name returned by the version check endpoint. + - Interactive OAuth login selection: OAuth providers can now present multiple login choices in /login, enabling provider-specific interactive authentication flows. See Providers. + - JSONC-style models.json parsing: models.json now allows comments and trailing commas, making custom provider and model configuration easier to maintain. See Providers and Custom Providers. + Added + - Added interactive login selection support so OAuth providers can present multiple login choices (#4190 by @mitsuhiko). + Changed + - Changed pi update --self to honor the active package name returned by the Pi version check endpoint, defaulting to the current package when omitted and uninstalling the old global package before installing a renamed package. + - Changed extension loading to use upstream jiti 2.7 instead of the @mariozechner/jiti fork (#4244 by @pi0). + - Changed models.json parsing to allow comments and trailing commas (#4162 by @julien-c). + Fixed + - Fixed pi -p treating prompts that start with YAML frontmatter as extension flags instead of user messages (#4163). + - Fixed pending tool results not updating in the live TUI after toggling thinking block visibility while the tool is running (#4167). + - Fixed /copy reporting success on Linux without writing the clipboard on Wayland-only compositors (Hyprland, Niri, ...) by skipping the X11-only native addon on Linux and routing through wl-copy/xclip/xsel instead (#4177). + - Fixed HTML session exports to strip skill wrapper XML from rendered user messages (#4234 by @aliou). + - Fixed OpenAI-compatible chat completion streams that interleave content and tool-call deltas in the same choice. + - Fixed OpenAI Codex OAuth refresh failures writing directly to stderr while the TUI is active (#4141). + - Fixed OpenAI Codex Responses requests to send a non-empty system prompt (#4184). + - Fixed Kimi For Coding model resolution for the Kimi K2 P6 alias (#4218). + - Fixed Kitty inline image redraws to stay within TUI-owned terminal regions and avoid writing below the active viewport. + - Fixed Kitty inline image rendering by letting the terminal allocate image ids and bounding parsed image ids to valid values. + - Fixed inline image capability detection to disable inline images in cmux terminals. +ReleaseNotesUrl: https://github.com/earendil-works/pi/releases/tag/v0.73.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/b/badlogic/pi/0.73.1/badlogic.pi.locale.zh-CN.yaml b/manifests/b/badlogic/pi/0.73.1/badlogic.pi.locale.zh-CN.yaml new file mode 100644 index 000000000000..5a28cc6d7042 --- /dev/null +++ b/manifests/b/badlogic/pi/0.73.1/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.73.1 +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/b/badlogic/pi/0.73.1/badlogic.pi.yaml b/manifests/b/badlogic/pi/0.73.1/badlogic.pi.yaml new file mode 100644 index 000000000000..c2ef3613b4fb --- /dev/null +++ b/manifests/b/badlogic/pi/0.73.1/badlogic.pi.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: badlogic.pi +PackageVersion: 0.73.1 +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/b/badlogic/pi/0.74.0/badlogic.pi.yaml b/manifests/b/badlogic/pi/0.74.0/badlogic.pi.yaml new file mode 100644 index 000000000000..66864cc70f22 --- /dev/null +++ b/manifests/b/badlogic/pi/0.74.0/badlogic.pi.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: 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/a/AppSolves/TikArcade-Studio/3.0.4/AppSolves.TikArcade-Studio.yaml b/manifests/b/bitwig/bitwig/6.0.6/bitwig.bitwig.yaml similarity index 72% rename from manifests/a/AppSolves/TikArcade-Studio/3.0.4/AppSolves.TikArcade-Studio.yaml rename to manifests/b/bitwig/bitwig/6.0.6/bitwig.bitwig.yaml index 06bba061318d..3e821418b53b 100644 --- a/manifests/a/AppSolves/TikArcade-Studio/3.0.4/AppSolves.TikArcade-Studio.yaml +++ b/manifests/b/bitwig/bitwig/6.0.6/bitwig.bitwig.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: AppSolves.TikArcade-Studio -PackageVersion: 3.0.4 +PackageIdentifier: bitwig.bitwig +PackageVersion: 6.0.6 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.installer.yaml b/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.installer.yaml new file mode 100644 index 000000000000..c8a9c8689cc8 --- /dev/null +++ b/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.installer.yaml @@ -0,0 +1,15 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: CCPGames.EVEOnline +PackageVersion: 1.14.1 +InstallerType: exe +Scope: user +UpgradeBehavior: install +Installers: +- Architecture: x64 + InstallerUrl: https://launcher.ccpgames.com/eve-online/release/win32/x64/eve-online-latest+Setup.exe + InstallerSha256: FF6836D579250CB41E959DF6A4EEFAA87E75C021935AB54E0FCCAD6EA08A3D64 + ProductCode: "eve-online" +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.locale.en-US.yaml b/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.locale.en-US.yaml new file mode 100644 index 000000000000..1e9d45c599f1 --- /dev/null +++ b/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.locale.en-US.yaml @@ -0,0 +1,13 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: CCPGames.EVEOnline +PackageVersion: "1.14.1" +PackageLocale: en-US +Publisher: "CCP ehf" +PackageName: "eve-online" +License: Proprietary +Copyright: Copyright © 2025 CCP Games +ShortDescription: EVE Online is a free MMORPG sci-fi strategy game where you can embark on your own unique space adventure. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.yaml b/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.yaml new file mode 100644 index 000000000000..ef8f6c6ef35e --- /dev/null +++ b/manifests/c/CCPGames/EVEOnline/1.14.1/CCPGames.EVEOnline.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: CCPGames.EVEOnline +PackageVersion: 1.14.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/Canva/Affinity/3.2.0.4351/Canva.Affinity.installer.yaml b/manifests/c/Canva/Affinity/3.2.0.4351/Canva.Affinity.installer.yaml index 1b12228a9a7a..c6c722d657a4 100644 --- a/manifests/c/Canva/Affinity/3.2.0.4351/Canva.Affinity.installer.yaml +++ b/manifests/c/Canva/Affinity/3.2.0.4351/Canva.Affinity.installer.yaml @@ -1,4 +1,4 @@ -# Created by Anthelion using komac v2.16.0 +# Created with komac v2.16.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Canva.Affinity @@ -108,12 +108,12 @@ Installers: InstallerSha256: FD2BDA64283BA559FFFF1AE274F8F002C32FA6724710115F56D26F0871EF7C3B SignatureSha256: 970D6102508810D070ED687CE588DE6BCE1895F316E76CB9524AA8665EE010E8 InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%/WindowsApps/Canva.Affinity_3.2.0.4351_x64__8a0j1tnjnt4a4' + DefaultInstallLocation: '%ProgramFiles%\WindowsApps\Canva.Affinity_3.2.0.4351_x64__8a0j1tnjnt4a4' - Architecture: arm64 InstallerUrl: https://affinity-update.serif.com/windows/3/studio/retail/Affinity-Affinity-Store-arm64-4351-b1e02078f1c875d7f90cc1421777f0d8d79d432a.msix InstallerSha256: D2300D59B50FA679A239F3AEA4B89A7DF2F2D6A1797D7267D855A38184C21D8A SignatureSha256: 8FCAB105A9E94A035E267AE6BF6C7D7CE4A476CBA3D4D9AB42E08E355C945BE2 InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%/WindowsApps/Canva.Affinity_3.2.0.4351_arm64__8a0j1tnjnt4a4' + DefaultInstallLocation: '%ProgramFiles%\WindowsApps\Canva.Affinity_3.2.0.4351_arm64__8a0j1tnjnt4a4' ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/c/Canva/Affinity/3.2.0.4351/Canva.Affinity.locale.en-US.yaml b/manifests/c/Canva/Affinity/3.2.0.4351/Canva.Affinity.locale.en-US.yaml index ac7bc5b0de29..3e4f5fee2d55 100644 --- a/manifests/c/Canva/Affinity/3.2.0.4351/Canva.Affinity.locale.en-US.yaml +++ b/manifests/c/Canva/Affinity/3.2.0.4351/Canva.Affinity.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created by Anthelion using komac v2.16.0 +# Created with komac v2.16.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Canva.Affinity diff --git a/manifests/c/Canva/Affinity/3.2.0.4351/Canva.Affinity.yaml b/manifests/c/Canva/Affinity/3.2.0.4351/Canva.Affinity.yaml index cbd3eeed0a77..0c322571458a 100644 --- a/manifests/c/Canva/Affinity/3.2.0.4351/Canva.Affinity.yaml +++ b/manifests/c/Canva/Affinity/3.2.0.4351/Canva.Affinity.yaml @@ -1,4 +1,4 @@ -# Created by Anthelion using komac v2.16.0 +# Created with komac v2.16.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Canva.Affinity diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.7.0/CodecGuide.K-LiteCodecPack.Full.installer.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.7.0/CodecGuide.K-LiteCodecPack.Full.installer.yaml new file mode 100644 index 000000000000..eb8b6c8f5862 --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.7.0/CodecGuide.K-LiteCodecPack.Full.installer.yaml @@ -0,0 +1,132 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: CodecGuide.K-LiteCodecPack.Full +PackageVersion: 19.7.0 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- "264" +- 3g2 +- 3ga +- 3gp +- 3gp2 +- 3gpp +- aac +- ac3 +- aif +- aifc +- aiff +- alac +- amr +- amv +- aob +- ape +- asf +- asx +- avi +- avs +- bdmv +- bik +- caf +- cb7 +- cbr +- cbz +- cda +- cue +- dav +- dff +- divx +- dsf +- dts +- dv +- evo +- f4v +- flac +- flv +- h264 +- hdmov +- ifo +- it +- ivf +- k3g +- m1v +- m2p +- m2t +- m2ts +- m2v +- m3u +- m3u8 +- m4a +- m4b +- m4v +- mid +- midi +- mk3d +- mka +- mkv +- mlp +- mo3 +- mod +- mov +- mp2v +- mp3 +- mp4 +- mp4v +- mpc +- mpcpl +- mpe +- mpeg +- mpg +- mpl +- mpls +- mpv2 +- mpv4 +- mqv +- mtm +- mts +- mxf +- ofr +- ofs +- oga +- ogg +- ogm +- ogv +- opus +- pls +- pmp +- ra +- ram +- rec +- rm +- rmvb +- s3m +- smk +- spx +- ssif +- tak +- tp +- tps +- trp +- ts +- tta +- umx +- video +- vob +- wav +- webm +- webp +- wma +- wmv +- wtv +- wv +- xm +ReleaseDate: 2026-05-07 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + InstallerUrl: https://files2.codecguide.com/K-Lite_Codec_Pack_1970_Full.exe + InstallerSha256: BB19006F17D82AF93F2F7C30B8E49BED0FD019085EB85DE96C54236202A90CC1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.7.0/CodecGuide.K-LiteCodecPack.Full.locale.en-US.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.7.0/CodecGuide.K-LiteCodecPack.Full.locale.en-US.yaml new file mode 100644 index 000000000000..323315a8b681 --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.7.0/CodecGuide.K-LiteCodecPack.Full.locale.en-US.yaml @@ -0,0 +1,52 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: CodecGuide.K-LiteCodecPack.Full +PackageVersion: 19.7.0 +PackageLocale: en-US +Publisher: KLCP +PublisherUrl: https://codecguide.com/ +PublisherSupportUrl: https://codecguide.com/forum.htm +PrivacyUrl: https://codecguide.com/privacypolicy.htm +PackageName: K-Lite Codec Pack Full +PackageUrl: https://codecguide.com/download_k-lite_codec_pack_full.htm +License: Freeware +LicenseUrl: https://codecguide.com/license_full.rtf +Copyright: Copyright 2004-2026, Codec Guide. All rights reserved. +CopyrightUrl: https://codecguide.com/termsofuse.htm +ShortDescription: A collection of DirectShow filters, VFW/ACM codecs, and tools. +Description: |- + The K-Lite Codec Pack is a collection of DirectShow filters, VFW/ACM codecs, and tools. Codecs and DirectShow filters are needed for encoding and decoding audio and video formats. The K-Lite Codec Pack is designed as a user-friendly solution for playing all your audio and movie files. With the K-Lite Codec Pack you should be able to play all the popular audio and video formats and even several less common formats. + + There are four variants of the K-Lite Codec Pack: + The basic variant contains everything you need to play all the common video file formats. Such as AVI, MKV, MP4, OGM, and FLV. This pack is for those who like a small no-nonsense pack. It is small, but powerful. + The standard variant contains a few additional features compared to the basic variant. It contains Media Player Classic, which is an excellent player for video files. This pack is recommended for the average user. + The full variant has some extras compared to the standard variant. It additionally contains GraphStudioNext, and a few extra DirectShow filters. + The mega variant is the most complete pack. It additionally contains VFW/ACM codecs for video encoding/editing. + For detailed tables with comparisons of the abilities and contents of the different variants of the codec pack, have a look at the comparison of abilities and comparison of contents pages. +Moniker: k-litecodecpackfull +Tags: +- audio +- codec +- decode +- k-lite +- klite +- klite-full +- madvr +- media +- mkv +- mp4 +- mpc +- mpc-hc +- multimedia +- music +- player +- video +ReleaseNotes: |- + - Updated MPC-HC to version 2.7.1.22 + - Updated MPC Video Renderer to version 0.10.2.2539 +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://codecguide.com/faq.htm +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.7.0/CodecGuide.K-LiteCodecPack.Full.locale.zh-CN.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.7.0/CodecGuide.K-LiteCodecPack.Full.locale.zh-CN.yaml new file mode 100644 index 000000000000..5b217c64bfc2 --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.7.0/CodecGuide.K-LiteCodecPack.Full.locale.zh-CN.yaml @@ -0,0 +1,48 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: CodecGuide.K-LiteCodecPack.Full +PackageVersion: 19.7.0 +PackageLocale: zh-CN +Publisher: KLCP +PublisherUrl: https://codecguide.com/ +PublisherSupportUrl: https://codecguide.com/forum.htm +PrivacyUrl: https://codecguide.com/privacypolicy.htm +PackageName: K-Lite Codec Pack Full +PackageUrl: https://codecguide.com/download_k-lite_codec_pack_full.htm +License: 免费软件 +LicenseUrl: https://codecguide.com/license_full.rtf +Copyright: Copyright 2004-2026, Codec Guide. All rights reserved. +CopyrightUrl: https://codecguide.com/termsofuse.htm +ShortDescription: 一套 DirectShow 滤镜、VFW/ACM 编解码器和工具的集合 +Description: |- + K-Lite 编解码器包是一套 DirectShow 滤镜、VFW/ACM 编解码器和工具的集合。编解码器和 DirectShow 滤镜用于编码和解码音视频格式。K-Lite 编解码器包是为播放所有音频和影片文件而设计的用户友好解决方案。有了 K-Lite Codec Pack,您就能播放所有流行的音视频格式,甚至还能播放一些不常用的格式。 + + K-Lite Codec Pack 有四种版本: + Basic 版包含播放所有常见视频文件格式所需的一切,例如 AVI、MKV、MP4、OGM 和 FLV。这款软件包适合那些喜欢简洁小巧软件包的用户。它体积小,但功能强大。 + Standard 版相比 Basic 版多了一些功能,包含了一款出色的视频文件播放器 Media Player Classic。建议普通用户使用此软件包。 + Full 版相比 Standard 版多了一些额外功能,额外包含了 GraphStudioNext 和一些额外的 DirectShow 滤镜。 + Mega 版是最完整的软件包,额外包含了用于视频编码/编辑的 VFW/ACM 编解码器。 + 请参阅功能比较(Comparison of abilities)和内容比较(Comparison of contents)页面,获取有关不同版本的编解码器包在功能和内容方面的差异的详细表格。 +Tags: +- k-lite +- klite +- madvr +- mkv +- mp4 +- mpc +- mpc-hc +- 多媒体 +- 媒体 +- 影音 +- 播放器 +- 视频 +- 解码 +- 解码器 +- 音乐 +- 音频 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://codecguide.com/faq.htm +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.7.0/CodecGuide.K-LiteCodecPack.Full.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.7.0/CodecGuide.K-LiteCodecPack.Full.yaml new file mode 100644 index 000000000000..25ed9752a743 --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Full/19.7.0/CodecGuide.K-LiteCodecPack.Full.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: CodecGuide.K-LiteCodecPack.Full +PackageVersion: 19.7.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.7.0/CodecGuide.K-LiteCodecPack.Mega.installer.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.7.0/CodecGuide.K-LiteCodecPack.Mega.installer.yaml new file mode 100644 index 000000000000..0c06e0d2e3a2 --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.7.0/CodecGuide.K-LiteCodecPack.Mega.installer.yaml @@ -0,0 +1,134 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: CodecGuide.K-LiteCodecPack.Mega +PackageVersion: 19.7.0 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- "264" +- 3g2 +- 3ga +- 3gp +- 3gp2 +- 3gpp +- aac +- ac3 +- aif +- aifc +- aiff +- alac +- amr +- amv +- aob +- ape +- asf +- asx +- avi +- avs +- bdmv +- bik +- caf +- cb7 +- cbr +- cbz +- cda +- cue +- dav +- dff +- divx +- dsf +- dts +- dv +- evo +- f4v +- flac +- flv +- h264 +- hdmov +- ifo +- it +- ivf +- k3g +- m1v +- m2p +- m2t +- m2ts +- m2v +- m3u +- m3u8 +- m4a +- m4b +- m4v +- mid +- midi +- mk3d +- mka +- mkv +- mlp +- mo3 +- mod +- mov +- mp2v +- mp3 +- mp4 +- mp4v +- mpc +- mpcpl +- mpe +- mpeg +- mpg +- mpl +- mpls +- mpv2 +- mpv4 +- mqv +- mtm +- mts +- mxf +- ofr +- ofs +- oga +- ogg +- ogm +- ogv +- opus +- pls +- pmp +- ra +- ram +- rec +- rm +- rmvb +- s3m +- smk +- spx +- ssif +- tak +- tp +- tps +- trp +- ts +- tta +- umx +- video +- vob +- wav +- webm +- webp +- wma +- wmv +- wtv +- wv +- xm +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://files2.codecguide.com/K-Lite_Codec_Pack_1970_Mega.exe + InstallerSha256: 8D2C8AB8A63E472EEB8E248BB99D1522BF10F50C33A889EEE7023E190EE24D28 +- Architecture: x64 + InstallerUrl: https://files2.codecguide.com/K-Lite_Codec_Pack_1970_Mega.exe + InstallerSha256: 8D2C8AB8A63E472EEB8E248BB99D1522BF10F50C33A889EEE7023E190EE24D28 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.7.0/CodecGuide.K-LiteCodecPack.Mega.locale.en-US.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.7.0/CodecGuide.K-LiteCodecPack.Mega.locale.en-US.yaml new file mode 100644 index 000000000000..f24ac6885134 --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.7.0/CodecGuide.K-LiteCodecPack.Mega.locale.en-US.yaml @@ -0,0 +1,53 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: CodecGuide.K-LiteCodecPack.Mega +PackageVersion: 19.7.0 +PackageLocale: en-US +Publisher: KLCP +PublisherUrl: https://codecguide.com/ +PublisherSupportUrl: https://codecguide.com/forum.htm +PrivacyUrl: https://codecguide.com/privacypolicy.htm +PackageName: K-Lite Mega Codec Pack +PackageUrl: https://codecguide.com/download_k-lite_codec_pack_mega.htm +License: Freeware +LicenseUrl: https://codecguide.com/license_mega.rtf +Copyright: Copyright 2004-2026, Codec Guide. All rights reserved. +CopyrightUrl: https://codecguide.com/termsofuse.htm +ShortDescription: A collection of DirectShow filters, VFW/ACM codecs, and tools. +Description: |- + The K-Lite Codec Pack is a collection of DirectShow filters, VFW/ACM codecs, and tools. Codecs and DirectShow filters are needed for encoding and decoding audio and video formats. The K-Lite Codec Pack is designed as a user-friendly solution for playing all your audio and movie files. With the K-Lite Codec Pack you should be able to play all the popular audio and video formats and even several less common formats. + + There are four variants of the K-Lite Codec Pack: + The basic variant contains everything you need to play all the common video file formats. Such as AVI, MKV, MP4, OGM, and FLV. This pack is for those who like a small no-nonsense pack. It is small, but powerful. + The standard variant contains a few additional features compared to the basic variant. It contains Media Player Classic, which is an excellent player for video files. This pack is recommended for the average user. + The full variant has some extras compared to the standard variant. It additionally contains GraphStudioNext, and a few extra DirectShow filters. + The mega variant is the most complete pack. It additionally contains VFW/ACM codecs for video encoding/editing. + For detailed tables with comparisons of the abilities and contents of the different variants of the codec pack, have a look at the comparison of abilities and comparison of contents pages. +Moniker: k-litecodecpackmega +Tags: +- audio +- codec +- decode +- k-lite +- klite +- klite-mega +- madvr +- media +- mkv +- mp4 +- mpc +- mpc-hc +- multimedia +- music +- player +- video +ReleaseNotes: |- + - Updated MPC-HC to version 2.7.1.22 + - Updated MPC Video Renderer to version 0.10.2.2539 +ReleaseNotesUrl: https://codecguide.com/changelogs_mega.htm +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://codecguide.com/faq.htm +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.7.0/CodecGuide.K-LiteCodecPack.Mega.locale.zh-CN.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.7.0/CodecGuide.K-LiteCodecPack.Mega.locale.zh-CN.yaml new file mode 100644 index 000000000000..000b85d0de85 --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.7.0/CodecGuide.K-LiteCodecPack.Mega.locale.zh-CN.yaml @@ -0,0 +1,39 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: CodecGuide.K-LiteCodecPack.Mega +PackageVersion: 19.7.0 +PackageLocale: zh-CN +License: 免费软件 +ShortDescription: 一套 DirectShow 滤镜、VFW/ACM 编解码器和工具的集合 +Description: |- + K-Lite 编解码器包是一套 DirectShow 滤镜、VFW/ACM 编解码器和工具的集合。编解码器和 DirectShow 滤镜用于编码和解码音视频格式。K-Lite 编解码器包是为播放所有音频和影片文件而设计的用户友好解决方案。有了 K-Lite Codec Pack,您就能播放所有流行的音视频格式,甚至还能播放一些不常用的格式。 + + K-Lite Codec Pack 有四种版本: + Basic 版包含播放所有常见视频文件格式所需的一切,例如 AVI、MKV、MP4、OGM 和 FLV。这款软件包适合那些喜欢简洁小巧软件包的用户。它体积小,但功能强大。 + Standard 版相比 Basic 版多了一些功能,包含了一款出色的视频文件播放器 Media Player Classic。建议普通用户使用此软件包。 + Full 版相比 Standard 版多了一些额外功能,额外包含了 GraphStudioNext 和一些额外的 DirectShow 滤镜。 + Mega 版是最完整的软件包,额外包含了用于视频编码/编辑的 VFW/ACM 编解码器。 + 请参阅功能比较(Comparison of abilities)和内容比较(Comparison of contents)页面,获取有关不同版本的编解码器包在功能和内容方面的差异的详细表格。 +Tags: +- k-lite +- klite +- madvr +- mkv +- mp4 +- mpc +- mpc-hc +- 多媒体 +- 媒体 +- 影音 +- 播放器 +- 视频 +- 解码 +- 解码器 +- 音乐 +- 音频 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://codecguide.com/faq.htm +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.7.0/CodecGuide.K-LiteCodecPack.Mega.yaml b/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.7.0/CodecGuide.K-LiteCodecPack.Mega.yaml new file mode 100644 index 000000000000..4ca59f10c590 --- /dev/null +++ b/manifests/c/CodecGuide/K-LiteCodecPack/Mega/19.7.0/CodecGuide.K-LiteCodecPack.Mega.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: CodecGuide.K-LiteCodecPack.Mega +PackageVersion: 19.7.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/CreativeForce/Kelvin/6.1.1/CreativeForce.Kelvin.installer.yaml b/manifests/c/CreativeForce/Kelvin/6.1.1/CreativeForce.Kelvin.installer.yaml new file mode 100644 index 000000000000..c4613a7173e1 --- /dev/null +++ b/manifests/c/CreativeForce/Kelvin/6.1.1/CreativeForce.Kelvin.installer.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: CreativeForce.Kelvin +PackageVersion: 6.1.1 +UpgradeBehavior: install +ReleaseDate: 2026-05-05 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://download.creativeforce.io/released-files.042024/prod/kelvin/win/Kelvin-6.1.1-win.exe + InstallerSha256: CE35436D9ED59C7B5CE7D1B167F26F2C276F75EC433CE4E176D4EE549365B92B + InstallerSwitches: + Upgrade: --updated + Custom: /currentuser + ProductCode: aae3a3cf-9ee8-53df-bf5e-4c41312da66d +- Architecture: x64 + InstallerType: nullsoft + Scope: machine + InstallerUrl: https://download.creativeforce.io/released-files.042024/prod/kelvin/win/Kelvin-6.1.1-win.exe + InstallerSha256: CE35436D9ED59C7B5CE7D1B167F26F2C276F75EC433CE4E176D4EE549365B92B + InstallerSwitches: + Upgrade: --updated + Custom: /allusers + ProductCode: aae3a3cf-9ee8-53df-bf5e-4c41312da66d +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://download.creativeforce.io/released-files.042024/prod/kelvin/win/Kelvin-6.1.1-win.msi + InstallerSha256: 8D4433E3BBF35CC9A34C71C5B1A092E7808CD601ABB9356A549BB29E3EA10762 + InstallerSwitches: + InstallLocation: APPLICATIONFOLDER="" + ProductCode: '{239F351F-E7C4-4C42-B30E-FAEEE4D34146}' + AppsAndFeaturesEntries: + - UpgradeCode: '{43D5EF01-191A-571C-8483-7EB293F5AA4F}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/CreativeForce/Kelvin/6.1.1/CreativeForce.Kelvin.locale.en-US.yaml b/manifests/c/CreativeForce/Kelvin/6.1.1/CreativeForce.Kelvin.locale.en-US.yaml new file mode 100644 index 000000000000..7fbc6e430447 --- /dev/null +++ b/manifests/c/CreativeForce/Kelvin/6.1.1/CreativeForce.Kelvin.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: CreativeForce.Kelvin +PackageVersion: 6.1.1 +PackageLocale: en-US +Publisher: Creative Force +PublisherUrl: https://www.creativeforce.io/ +PublisherSupportUrl: https://help.creativeforce.io/ +PrivacyUrl: https://www.creativeforce.io/legal/privacy-policy/ +Author: CreativeForce.io, Inc +PackageName: Kelvin +PackageUrl: https://download.creativeforce.io/ +License: Proprietary +LicenseUrl: https://www.creativeforce.io/legal/eula/ +Copyright: Copyright © 2026 Creative Force, Inc. All rights reserved, +CopyrightUrl: https://www.creativeforce.io/legal/eula/ +ShortDescription: Designed for smooth image and video capture and transfer, with optional Capture One integration. Includes tools for cropping, annotation, and style guide alignment. +Tags: +- capture-one +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/CreativeForce/Kelvin/6.1.1/CreativeForce.Kelvin.locale.zh-CN.yaml b/manifests/c/CreativeForce/Kelvin/6.1.1/CreativeForce.Kelvin.locale.zh-CN.yaml new file mode 100644 index 000000000000..4fedf6d67054 --- /dev/null +++ b/manifests/c/CreativeForce/Kelvin/6.1.1/CreativeForce.Kelvin.locale.zh-CN.yaml @@ -0,0 +1,10 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: CreativeForce.Kelvin +PackageVersion: 6.1.1 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 专为流畅捕获与传输图像和视频而设计的可选 Capture One 集成。包括裁剪、注释和样式指南对齐工具。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/c/CreativeForce/Kelvin/6.1.1/CreativeForce.Kelvin.yaml b/manifests/c/CreativeForce/Kelvin/6.1.1/CreativeForce.Kelvin.yaml new file mode 100644 index 000000000000..ff84d5424c3a --- /dev/null +++ b/manifests/c/CreativeForce/Kelvin/6.1.1/CreativeForce.Kelvin.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: CreativeForce.Kelvin +PackageVersion: 6.1.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/chrox/Readest/0.9.101/chrox.Readest.installer.yaml b/manifests/c/chrox/Readest/0.9.101/chrox.Readest.installer.yaml index a0bba707d8e7..a26c6f83ffe0 100644 --- a/manifests/c/chrox/Readest/0.9.101/chrox.Readest.installer.yaml +++ b/manifests/c/chrox/Readest/0.9.101/chrox.Readest.installer.yaml @@ -1,29 +1,29 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: chrox.Readest -PackageVersion: 0.9.101 -InstallerType: nullsoft -Scope: user -UpgradeBehavior: install -Protocols: -- readest -FileExtensions: -- azw -- azw3 -- cbz -- epub -- fb2 -- mobi -- pdf -ProductCode: Readest -ReleaseDate: 2026-02-28 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/readest/readest/releases/download/v0.9.101/Readest_0.9.101_x64-setup.exe - InstallerSha256: E64E98691C1B7D51C944F41C320E46A64CE8AA5561E1C8E7A64641515B3CFB87 -- Architecture: arm64 - InstallerUrl: https://github.com/readest/readest/releases/download/v0.9.101/Readest_0.9.101_arm64-setup.exe - InstallerSha256: A9A15C5873E5EFDE6744E8BF5010E34CDAAFEB3B84080C59A336F00FB8D48CAD -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: chrox.Readest +PackageVersion: 0.9.101 +InstallerType: nullsoft +Scope: user +UpgradeBehavior: install +Protocols: +- readest +FileExtensions: +- azw +- azw3 +- cbz +- epub +- fb2 +- mobi +- pdf +ProductCode: Readest +ReleaseDate: 2026-02-28 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/readest/readest/releases/download/v0.9.101/Readest_0.9.101_x64-setup.exe + InstallerSha256: E08F698AB21D01BAA6F5D92A107B2CEE897F75894589D6E966F56C517ED62442 +- Architecture: arm64 + InstallerUrl: https://github.com/readest/readest/releases/download/v0.9.101/Readest_0.9.101_arm64-setup.exe + InstallerSha256: 90D503FC4597E278CABDB45CA2C0CA4A259E11F0DA571A351C320F4239EF2DE0 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/chrox/Readest/0.9.101/chrox.Readest.locale.en-US.yaml b/manifests/c/chrox/Readest/0.9.101/chrox.Readest.locale.en-US.yaml index 0e6f5862835e..5fd22849bd2d 100644 --- a/manifests/c/chrox/Readest/0.9.101/chrox.Readest.locale.en-US.yaml +++ b/manifests/c/chrox/Readest/0.9.101/chrox.Readest.locale.en-US.yaml @@ -1,98 +1,98 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: chrox.Readest -PackageVersion: 0.9.101 -PackageLocale: en-US -Publisher: bilingify -PublisherUrl: https://readest.com/ -PublisherSupportUrl: https://github.com/readest/readest/issues -PrivacyUrl: https://readest.com/privacy-policy -Author: Huang Xin -PackageName: Readest -PackageUrl: https://readest.com/ -License: AGPL-3.0 -LicenseUrl: https://github.com/readest/readest/blob/HEAD/LICENSE -Copyright: © 2026 Bilingify LLC. All rights reserved. -CopyrightUrl: https://readest.com/terms-of-service -ShortDescription: An open-source ebook reader designed for immersive and deep reading experiences. -Description: Readest is a modern, feature-rich ebook reader designed for avid readers offering seamless cross-platform access, powerful tools, and an intuitive interface to elevate your reading experience. -Tags: -- ebook -- epub -- mobi -- pdf -- reader -- viewer -ReleaseNotes: |- - Release Highlight - - Text-to-Speech: Fixed an issue where TTS could not continue to the next chapter - - Reading: Fixed an issue importing very large TXT files on iOS - - Reading: Fixed the layout of the reading ruler in scrolled mode - - Reading: Smoother page-turn animations for a more fluid experience - - Reading: Added a gallery mode to zoom and browse images within books - - Annotations: Page numbers are now displayed and exported with highlights and notes - - Annotations: Added support for exporting highlights to Readwise - - OPDS: Fixed missing book descriptions in OPDS feeds - - Android: Improved compatibility with older WebView versions on Android - What's Changed - - fix: reader ruler disabled in scroll mode by @WhiteHades in https://github.com/readest/readest/pull/3288 - - fix(annotator): update highlight style, color and range handlers when showing different annotations, closes #3286 by @chrox in https://github.com/readest/readest/pull/3289 - - fix: highlight in dark mode eink by @WhiteHades in https://github.com/readest/readest/pull/3299 - - fix(tts): fixed an issue where starting TTS from the annotation tool did not work, closes #3292 by @chrox in https://github.com/readest/readest/pull/3303 - - feat: remaining time in TTS mode by @WhiteHades in https://github.com/readest/readest/pull/3300 - - fix(layout): container layout for dimmed area of reading ruler, closes #3304 by @chrox in https://github.com/readest/readest/pull/3313 - - fix(reader): clamp reading ruler within viewport by @WhiteHades in https://github.com/readest/readest/pull/3314 - - feat(docker/podman): self-hosting with docker/podman compose by @aniketkotal in https://github.com/readest/readest/pull/3312 - - feat(ui): image viewing mode support by @JustADeer in https://github.com/readest/readest/pull/3328 - - feat: Readwise highlights sync by @8bitgentleman in https://github.com/readest/readest/pull/3311 - - fix: case-insensitive handling in iframeEventHandlers by @JustADeer in https://github.com/readest/readest/pull/3349 - - fix(epub): replace background also for scrolled mode, closes #3344 by @chrox in https://github.com/readest/readest/pull/3350 - - fix: add classes for progress info labels, closes #3343 by @chrox in https://github.com/readest/readest/pull/3353 - - fix(layout): consistent padding and radius for the dialog header, closes #3352 by @chrox in https://github.com/readest/readest/pull/3356 - - compat(layout): fix insane block display for tables, closes #3351 by @chrox in https://github.com/readest/readest/pull/3358 - - fix(layout): also scale table with parent width, closes #3284 by @chrox in https://github.com/readest/readest/pull/3359 - - fix: empty paragraphs not skipped in paragraph mode by @WhiteHades in https://github.com/readest/readest/pull/3361 - - feat: add directional view transitions with scroll preservation in library view, closes #3357 by @chrox in https://github.com/readest/readest/pull/3362 - - compat(css): unset font-family for body when set to serif or sans-serif, closes #3334 by @chrox in https://github.com/readest/readest/pull/3363 - - feat(translator): add Khmer in translator target languages, closes #3323 by @chrox in https://github.com/readest/readest/pull/3364 - - fix(css): override inline image background color only when overriding book color, closes #3316 by @chrox in https://github.com/readest/readest/pull/3365 - - compat(webview): compat with older webview for iterating gamepads by @chrox in https://github.com/readest/readest/pull/3366 - - Allow CSS targeting of the "NUMBER pages left in chapter" label via component by @Blyrium in https://github.com/readest/readest/pull/3368 - - chore: add husky pre-commit and pre-push hooks by @chrox in https://github.com/readest/readest/pull/3372 - - compat(css): unset none user-select in some EPUBs, closes #3370 by @chrox in https://github.com/readest/readest/pull/3374 - - fix: delay context menu to prevent broken input loop on macOS, closes #3324 by @chrox in https://github.com/readest/readest/pull/3378 - - compat(css): only override img background when overriding book color, closes #3377 by @chrox in https://github.com/readest/readest/pull/3379 - - compat: add target class to hide import icon in the bookshelf, closes #3376 by @chrox in https://github.com/readest/readest/pull/3380 - - fix: more sensitive paging without snapping animation, closes #3310 by @chrox in https://github.com/readest/readest/pull/3381 - - fix(notebook): close searchbar when adding or editing an annotation by @AlanSilvaaa in https://github.com/readest/readest/pull/3384 - - perf: use GPU-accelerated scroll for smoother paging animation by @chrox in https://github.com/readest/readest/pull/3385 - - fix(txt): stabilize iOS large TXT import and decode picker paths by @royisme in https://github.com/readest/readest/pull/3320 - - fix(layout): float the annotation navigation bar, closes #3386 by @chrox in https://github.com/readest/readest/pull/3387 - - fix(layout): enlarge hit area for slider input on iOS, closes #3382 by @chrox in https://github.com/readest/readest/pull/3389 - - fix(ui): show progress 100% at the last page, closes #3383 by @chrox in https://github.com/readest/readest/pull/3390 - - fix: fixed all progress at the last page of the book, closes #3383 by @chrox in https://github.com/readest/readest/pull/3391 - - fix(tts): set document lang attribute when missing or invalid for TTS, closes #3291 by @chrox in https://github.com/readest/readest/pull/3393 - - Fix generic font family keywords bypassing user font settings by @Blyrium in https://github.com/readest/readest/pull/3394 - - fix(iOS): correct sidebar insets on iPad and resolve occasional stale safe area inset on iOS by @chrox in https://github.com/readest/readest/pull/3395 - - fix(tts): also show highlight when navigating in paused mode and improve abbreviations processing by @chrox in https://github.com/readest/readest/pull/3396 - - fix(toc): fix phantom subchapter TOC item by @chrox in https://github.com/readest/readest/pull/3397 - - fix: make touchpad scrolling respect the system’s natural scrolling settings, closes #3127 by @chrox in https://github.com/readest/readest/pull/3398 - - feat(annotator): add page number for annotations, closes #3082 by @chrox in https://github.com/readest/readest/pull/3405 - - fix: respect fixed translation quota in UI stats and DeepL provider by @bfcs in https://github.com/readest/readest/pull/3404 - - fix(tts): dispose of the TTS view when shutting down the TTS controller, closes #3400 by @chrox in https://github.com/readest/readest/pull/3406 - - fix(opds): add missing book description in OPDS feed by @chrox in https://github.com/readest/readest/pull/3408 - - fix(annotator): add page number in highlight export to Readwise by @chrox in https://github.com/readest/readest/pull/3409 - - release: version 0.9.101 by @chrox in https://github.com/readest/readest/pull/3410 - New Contributors - - @aniketkotal made their first contribution in https://github.com/readest/readest/pull/3312 - - @JustADeer made their first contribution in https://github.com/readest/readest/pull/3328 - - @8bitgentleman made their first contribution in https://github.com/readest/readest/pull/3311 - - @Blyrium made their first contribution in https://github.com/readest/readest/pull/3368 - - @AlanSilvaaa made their first contribution in https://github.com/readest/readest/pull/3384 - - @royisme made their first contribution in https://github.com/readest/readest/pull/3320 - - @bfcs made their first contribution in https://github.com/readest/readest/pull/3404 - Full Changelog: https://github.com/readest/readest/compare/v0.9.100...v0.9.101 -ReleaseNotesUrl: https://github.com/readest/readest/releases/tag/v0.9.101 -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: chrox.Readest +PackageVersion: 0.9.101 +PackageLocale: en-US +Publisher: bilingify +PublisherUrl: https://readest.com/ +PublisherSupportUrl: https://github.com/readest/readest/issues +PrivacyUrl: https://readest.com/privacy-policy +Author: Huang Xin +PackageName: Readest +PackageUrl: https://readest.com/ +License: AGPL-3.0 +LicenseUrl: https://github.com/readest/readest/blob/HEAD/LICENSE +Copyright: © 2026 Bilingify LLC. All rights reserved. +CopyrightUrl: https://readest.com/terms-of-service +ShortDescription: An open-source ebook reader designed for immersive and deep reading experiences. +Description: Readest is a modern, feature-rich ebook reader designed for avid readers offering seamless cross-platform access, powerful tools, and an intuitive interface to elevate your reading experience. +Tags: +- ebook +- epub +- mobi +- pdf +- reader +- viewer +ReleaseNotes: |- + Release Highlight + - Text-to-Speech: Fixed an issue where TTS could not continue to the next chapter + - Reading: Fixed an issue importing very large TXT files on iOS + - Reading: Fixed the layout of the reading ruler in scrolled mode + - Reading: Smoother page-turn animations for a more fluid experience + - Reading: Added a gallery mode to zoom and browse images within books + - Annotations: Page numbers are now displayed and exported with highlights and notes + - Annotations: Added support for exporting highlights to Readwise + - OPDS: Fixed missing book descriptions in OPDS feeds + - Android: Improved compatibility with older WebView versions on Android + What's Changed + - fix: reader ruler disabled in scroll mode by @WhiteHades in https://github.com/readest/readest/pull/3288 + - fix(annotator): update highlight style, color and range handlers when showing different annotations, closes #3286 by @chrox in https://github.com/readest/readest/pull/3289 + - fix: highlight in dark mode eink by @WhiteHades in https://github.com/readest/readest/pull/3299 + - fix(tts): fixed an issue where starting TTS from the annotation tool did not work, closes #3292 by @chrox in https://github.com/readest/readest/pull/3303 + - feat: remaining time in TTS mode by @WhiteHades in https://github.com/readest/readest/pull/3300 + - fix(layout): container layout for dimmed area of reading ruler, closes #3304 by @chrox in https://github.com/readest/readest/pull/3313 + - fix(reader): clamp reading ruler within viewport by @WhiteHades in https://github.com/readest/readest/pull/3314 + - feat(docker/podman): self-hosting with docker/podman compose by @aniketkotal in https://github.com/readest/readest/pull/3312 + - feat(ui): image viewing mode support by @JustADeer in https://github.com/readest/readest/pull/3328 + - feat: Readwise highlights sync by @8bitgentleman in https://github.com/readest/readest/pull/3311 + - fix: case-insensitive handling in iframeEventHandlers by @JustADeer in https://github.com/readest/readest/pull/3349 + - fix(epub): replace background also for scrolled mode, closes #3344 by @chrox in https://github.com/readest/readest/pull/3350 + - fix: add classes for progress info labels, closes #3343 by @chrox in https://github.com/readest/readest/pull/3353 + - fix(layout): consistent padding and radius for the dialog header, closes #3352 by @chrox in https://github.com/readest/readest/pull/3356 + - compat(layout): fix insane block display for tables, closes #3351 by @chrox in https://github.com/readest/readest/pull/3358 + - fix(layout): also scale table with parent width, closes #3284 by @chrox in https://github.com/readest/readest/pull/3359 + - fix: empty paragraphs not skipped in paragraph mode by @WhiteHades in https://github.com/readest/readest/pull/3361 + - feat: add directional view transitions with scroll preservation in library view, closes #3357 by @chrox in https://github.com/readest/readest/pull/3362 + - compat(css): unset font-family for body when set to serif or sans-serif, closes #3334 by @chrox in https://github.com/readest/readest/pull/3363 + - feat(translator): add Khmer in translator target languages, closes #3323 by @chrox in https://github.com/readest/readest/pull/3364 + - fix(css): override inline image background color only when overriding book color, closes #3316 by @chrox in https://github.com/readest/readest/pull/3365 + - compat(webview): compat with older webview for iterating gamepads by @chrox in https://github.com/readest/readest/pull/3366 + - Allow CSS targeting of the "NUMBER pages left in chapter" label via component by @Blyrium in https://github.com/readest/readest/pull/3368 + - chore: add husky pre-commit and pre-push hooks by @chrox in https://github.com/readest/readest/pull/3372 + - compat(css): unset none user-select in some EPUBs, closes #3370 by @chrox in https://github.com/readest/readest/pull/3374 + - fix: delay context menu to prevent broken input loop on macOS, closes #3324 by @chrox in https://github.com/readest/readest/pull/3378 + - compat(css): only override img background when overriding book color, closes #3377 by @chrox in https://github.com/readest/readest/pull/3379 + - compat: add target class to hide import icon in the bookshelf, closes #3376 by @chrox in https://github.com/readest/readest/pull/3380 + - fix: more sensitive paging without snapping animation, closes #3310 by @chrox in https://github.com/readest/readest/pull/3381 + - fix(notebook): close searchbar when adding or editing an annotation by @AlanSilvaaa in https://github.com/readest/readest/pull/3384 + - perf: use GPU-accelerated scroll for smoother paging animation by @chrox in https://github.com/readest/readest/pull/3385 + - fix(txt): stabilize iOS large TXT import and decode picker paths by @royisme in https://github.com/readest/readest/pull/3320 + - fix(layout): float the annotation navigation bar, closes #3386 by @chrox in https://github.com/readest/readest/pull/3387 + - fix(layout): enlarge hit area for slider input on iOS, closes #3382 by @chrox in https://github.com/readest/readest/pull/3389 + - fix(ui): show progress 100% at the last page, closes #3383 by @chrox in https://github.com/readest/readest/pull/3390 + - fix: fixed all progress at the last page of the book, closes #3383 by @chrox in https://github.com/readest/readest/pull/3391 + - fix(tts): set document lang attribute when missing or invalid for TTS, closes #3291 by @chrox in https://github.com/readest/readest/pull/3393 + - Fix generic font family keywords bypassing user font settings by @Blyrium in https://github.com/readest/readest/pull/3394 + - fix(iOS): correct sidebar insets on iPad and resolve occasional stale safe area inset on iOS by @chrox in https://github.com/readest/readest/pull/3395 + - fix(tts): also show highlight when navigating in paused mode and improve abbreviations processing by @chrox in https://github.com/readest/readest/pull/3396 + - fix(toc): fix phantom subchapter TOC item by @chrox in https://github.com/readest/readest/pull/3397 + - fix: make touchpad scrolling respect the system’s natural scrolling settings, closes #3127 by @chrox in https://github.com/readest/readest/pull/3398 + - feat(annotator): add page number for annotations, closes #3082 by @chrox in https://github.com/readest/readest/pull/3405 + - fix: respect fixed translation quota in UI stats and DeepL provider by @bfcs in https://github.com/readest/readest/pull/3404 + - fix(tts): dispose of the TTS view when shutting down the TTS controller, closes #3400 by @chrox in https://github.com/readest/readest/pull/3406 + - fix(opds): add missing book description in OPDS feed by @chrox in https://github.com/readest/readest/pull/3408 + - fix(annotator): add page number in highlight export to Readwise by @chrox in https://github.com/readest/readest/pull/3409 + - release: version 0.9.101 by @chrox in https://github.com/readest/readest/pull/3410 + New Contributors + - @aniketkotal made their first contribution in https://github.com/readest/readest/pull/3312 + - @JustADeer made their first contribution in https://github.com/readest/readest/pull/3328 + - @8bitgentleman made their first contribution in https://github.com/readest/readest/pull/3311 + - @Blyrium made their first contribution in https://github.com/readest/readest/pull/3368 + - @AlanSilvaaa made their first contribution in https://github.com/readest/readest/pull/3384 + - @royisme made their first contribution in https://github.com/readest/readest/pull/3320 + - @bfcs made their first contribution in https://github.com/readest/readest/pull/3404 + Full Changelog: https://github.com/readest/readest/compare/v0.9.100...v0.9.101 +ReleaseNotesUrl: https://github.com/readest/readest/releases/tag/v0.9.101 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/chrox/Readest/0.9.101/chrox.Readest.locale.zh-CN.yaml b/manifests/c/chrox/Readest/0.9.101/chrox.Readest.locale.zh-CN.yaml index e9a11f670847..ee94ce5133a5 100644 --- a/manifests/c/chrox/Readest/0.9.101/chrox.Readest.locale.zh-CN.yaml +++ b/manifests/c/chrox/Readest/0.9.101/chrox.Readest.locale.zh-CN.yaml @@ -1,17 +1,17 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: chrox.Readest -PackageVersion: 0.9.101 -PackageLocale: zh-CN -ShortDescription: 一款注重沉浸式深度阅读体验的开源电子书阅读器。 -Description: Readest 是一款多功能的现代电子书阅读器,专为书迷设计,提供无缝跨平台访问、强大的工具和直观的界面,提升您的阅读体验。 -Tags: -- epub -- mobi -- pdf -- 电子书 -- 阅读器 -ReleaseNotesUrl: https://github.com/readest/readest/releases/tag/v0.9.101 -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: chrox.Readest +PackageVersion: 0.9.101 +PackageLocale: zh-CN +ShortDescription: 一款注重沉浸式深度阅读体验的开源电子书阅读器。 +Description: Readest 是一款多功能的现代电子书阅读器,专为书迷设计,提供无缝跨平台访问、强大的工具和直观的界面,提升您的阅读体验。 +Tags: +- epub +- mobi +- pdf +- 电子书 +- 阅读器 +ReleaseNotesUrl: https://github.com/readest/readest/releases/tag/v0.9.101 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/c/chrox/Readest/0.9.101/chrox.Readest.yaml b/manifests/c/chrox/Readest/0.9.101/chrox.Readest.yaml index 23de427bbc9b..7c223c7bc107 100644 --- a/manifests/c/chrox/Readest/0.9.101/chrox.Readest.yaml +++ b/manifests/c/chrox/Readest/0.9.101/chrox.Readest.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: chrox.Readest -PackageVersion: 0.9.101 -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: chrox.Readest +PackageVersion: 0.9.101 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/codexu/NoteGen/0.23.4/codexu.NoteGen.installer.yaml b/manifests/c/codexu/NoteGen/0.23.4/codexu.NoteGen.installer.yaml index f5de2136a919..c99d979acdb9 100644 --- a/manifests/c/codexu/NoteGen/0.23.4/codexu.NoteGen.installer.yaml +++ b/manifests/c/codexu/NoteGen/0.23.4/codexu.NoteGen.installer.yaml @@ -1,26 +1,26 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: codexu.NoteGen -PackageVersion: 0.23.4 -UpgradeBehavior: install -ReleaseDate: 2026-01-02 -Installers: -- Architecture: x64 - InstallerType: nullsoft - Scope: user - InstallerUrl: https://github.com/codexu/note-gen/releases/download/note-gen-v0.23.4/NoteGen_0.23.4_x64-setup.exe - InstallerSha256: C96BD2E55CD63496232698034FBB8C646AB968E38E216B0D1446374E22BE9143 - ProductCode: NoteGen -- Architecture: x64 - InstallerType: wix - Scope: machine - InstallerUrl: https://github.com/codexu/note-gen/releases/download/note-gen-v0.23.4/NoteGen_0.23.4_x64_en-US.msi - InstallerSha256: 37A1EBBD6593FF3D5E99152ED8E29791A69600E0961298B287304E6DCDDA81B0 - InstallerSwitches: - InstallLocation: INSTALLDIR="" - ProductCode: '{2095A84A-C4B3-4F2E-BAC0-17F93393FA6F}' - AppsAndFeaturesEntries: - - UpgradeCode: '{E353DB5D-25D7-5FA9-B7DC-C4BC524A075E}' -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: codexu.NoteGen +PackageVersion: 0.23.4 +UpgradeBehavior: install +ReleaseDate: 2026-01-02 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/codexu/note-gen/releases/download/note-gen-v0.23.4/NoteGen_0.23.4_x64-setup.exe + InstallerSha256: 1A1212A4C8916EF62F91FD71E667F5674D1F20F0FF63D4E1B708C5E99E29AC9E + ProductCode: NoteGen +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/codexu/note-gen/releases/download/note-gen-v0.23.4/NoteGen_0.23.4_x64_en-US.msi + InstallerSha256: 48C24445C0153F88C72782570EC503227EABDC976DF32052CB1C79DA2D9A8A40 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{10627AC7-6D85-4133-AF48-574FAC662986}' + AppsAndFeaturesEntries: + - UpgradeCode: '{E353DB5D-25D7-5FA9-B7DC-C4BC524A075E}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/c/codexu/NoteGen/0.23.4/codexu.NoteGen.locale.en-US.yaml b/manifests/c/codexu/NoteGen/0.23.4/codexu.NoteGen.locale.en-US.yaml index e338496d8e22..b6f30501d1d0 100644 --- a/manifests/c/codexu/NoteGen/0.23.4/codexu.NoteGen.locale.en-US.yaml +++ b/manifests/c/codexu/NoteGen/0.23.4/codexu.NoteGen.locale.en-US.yaml @@ -1,59 +1,59 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: codexu.NoteGen -PackageVersion: 0.23.4 -PackageLocale: en-US -Publisher: codexu -PublisherUrl: https://github.com/codexu -PublisherSupportUrl: https://github.com/codexu/note-gen/issues -PackageName: NoteGen -PackageUrl: https://github.com/codexu/note-gen -License: MIT -LicenseUrl: https://github.com/codexu/note-gen/blob/HEAD/LICENSE -Copyright: Copyright (c) 2026 codexu -ShortDescription: A cross-platform AI note-taking application focused on recording and writing. -Description: |- - NoteGen is a cross-platform AI note-taking application focused on recording and writing, developed based on Tauri. - The core philosophy of NoteGen is to combine recording, writing, and AI, with all three complementing each other. The recording function helps users quickly capture and organize fragmented knowledge. The organization function is the bridge connecting recording and writing, which can organize continuously recorded content into a readable note, assisting users in completing the creation process from scratch. If the AI-organized results cannot meet your requirements, you can use the writing function to refine it yourself. - Recording - Recording methods supported: - 1. 🖥️ Screenshot recording, through which users can quickly capture and record fragmented knowledge, especially in situations where text copying is not possible. - 2. 📄 Text recording, which allows copying text or manually inputting brief content as a record. - 3. 🖼️ Illustration recording, which can be automatically inserted into appropriate positions when generating notes. - 4. 📇 File recording, which recognizes content from PDF, md, html, txt, and other files for text recording. - 5. 🔗 Link recording (to be implemented), using web crawlers for page content recognition and recording. - 6. 📷 Photo recording (to be implemented), similar to illustration recording, calling the camera to record, suitable for future mobile use. - Auxiliary recording: - - 🏷️ Custom tags for better categorization and differentiation of different recording scenarios. - - 🤖 AI conversation, by default associated with records under the current tag, and you can also manually associate it with any article in your writing. - - 📋 Clipboard recognition, which automatically recognizes images or text in the clipboard after you copy them. - - 💾 Organization, when you have completed a series of records, you can try to let AI help you organize them into an article. - Writing - - 🗂 File manager, supporting management of files and folders in local and Github repositories, with unlimited directory levels. - - 📝 Support for WYSIWYG, instant rendering, and split-screen preview modes. - - 📅 Version control, if you enable synchronization, you can trace back to historically uploaded records in the history. - - 🤖 AI assistance, supporting Q&A, continuation, optimization, simplification, translation, and other functions, and you can insert records into any position of the article at any time. - - 🏞️ Image hosting, directly copy and paste images into the Markdown editor, which will automatically upload the image to the image hosting service and convert it to a Markdown image link. - - 🛠️ HTML and Markdown conversion, copying content from browsers will automatically convert it to Markdown format. - Auxiliary - - 📦 Large model support, with multiple built-in large model configurations, supporting customization and easy switching. - - 👁️ OCR, which can assist in recognizing text in images. - - 🏗️ Organization templates, which can be customized for AI to organize different types of content. - - 🔎 Global search, for quickly searching and jumping to specified content. - - 🌃 Image hosting management, for convenient management of image hosting repository content. - - 💎 Themes and appearance, supporting dark theme, and appearance settings for Markdown, code, etc. -Tags: -- ai -- bookmark -- clipping -- favorite -- knowledge -- knowledge-base -- large-language-model -- llm -- mark -- notes -ReleaseNotesUrl: https://github.com/codexu/note-gen/releases/tag/note-gen-v0.23.4 -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: codexu.NoteGen +PackageVersion: 0.23.4 +PackageLocale: en-US +Publisher: codexu +PublisherUrl: https://github.com/codexu +PublisherSupportUrl: https://github.com/codexu/note-gen/issues +PackageName: NoteGen +PackageUrl: https://github.com/codexu/note-gen +License: MIT +LicenseUrl: https://github.com/codexu/note-gen/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 codexu +ShortDescription: A cross-platform AI note-taking application focused on recording and writing. +Description: |- + NoteGen is a cross-platform AI note-taking application focused on recording and writing, developed based on Tauri. + The core philosophy of NoteGen is to combine recording, writing, and AI, with all three complementing each other. The recording function helps users quickly capture and organize fragmented knowledge. The organization function is the bridge connecting recording and writing, which can organize continuously recorded content into a readable note, assisting users in completing the creation process from scratch. If the AI-organized results cannot meet your requirements, you can use the writing function to refine it yourself. + Recording + Recording methods supported: + 1. 🖥️ Screenshot recording, through which users can quickly capture and record fragmented knowledge, especially in situations where text copying is not possible. + 2. 📄 Text recording, which allows copying text or manually inputting brief content as a record. + 3. 🖼️ Illustration recording, which can be automatically inserted into appropriate positions when generating notes. + 4. 📇 File recording, which recognizes content from PDF, md, html, txt, and other files for text recording. + 5. 🔗 Link recording (to be implemented), using web crawlers for page content recognition and recording. + 6. 📷 Photo recording (to be implemented), similar to illustration recording, calling the camera to record, suitable for future mobile use. + Auxiliary recording: + - 🏷️ Custom tags for better categorization and differentiation of different recording scenarios. + - 🤖 AI conversation, by default associated with records under the current tag, and you can also manually associate it with any article in your writing. + - 📋 Clipboard recognition, which automatically recognizes images or text in the clipboard after you copy them. + - 💾 Organization, when you have completed a series of records, you can try to let AI help you organize them into an article. + Writing + - 🗂 File manager, supporting management of files and folders in local and Github repositories, with unlimited directory levels. + - 📝 Support for WYSIWYG, instant rendering, and split-screen preview modes. + - 📅 Version control, if you enable synchronization, you can trace back to historically uploaded records in the history. + - 🤖 AI assistance, supporting Q&A, continuation, optimization, simplification, translation, and other functions, and you can insert records into any position of the article at any time. + - 🏞️ Image hosting, directly copy and paste images into the Markdown editor, which will automatically upload the image to the image hosting service and convert it to a Markdown image link. + - 🛠️ HTML and Markdown conversion, copying content from browsers will automatically convert it to Markdown format. + Auxiliary + - 📦 Large model support, with multiple built-in large model configurations, supporting customization and easy switching. + - 👁️ OCR, which can assist in recognizing text in images. + - 🏗️ Organization templates, which can be customized for AI to organize different types of content. + - 🔎 Global search, for quickly searching and jumping to specified content. + - 🌃 Image hosting management, for convenient management of image hosting repository content. + - 💎 Themes and appearance, supporting dark theme, and appearance settings for Markdown, code, etc. +Tags: +- ai +- bookmark +- clipping +- favorite +- knowledge +- knowledge-base +- large-language-model +- llm +- mark +- notes +ReleaseNotesUrl: https://github.com/codexu/note-gen/releases/tag/note-gen-v0.23.4 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/c/codexu/NoteGen/0.23.4/codexu.NoteGen.locale.zh-CN.yaml b/manifests/c/codexu/NoteGen/0.23.4/codexu.NoteGen.locale.zh-CN.yaml index 5aae7ac318c7..6acb63467e7a 100644 --- a/manifests/c/codexu/NoteGen/0.23.4/codexu.NoteGen.locale.zh-CN.yaml +++ b/manifests/c/codexu/NoteGen/0.23.4/codexu.NoteGen.locale.zh-CN.yaml @@ -1,60 +1,60 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: codexu.NoteGen -PackageVersion: 0.23.4 -PackageLocale: zh-CN -Publisher: codexu -PublisherUrl: https://github.com/codexu -PublisherSupportUrl: https://github.com/codexu/note-gen/issues -PackageName: NoteGen -PackageUrl: https://github.com/codexu/note-gen -License: MIT -LicenseUrl: https://github.com/codexu/note-gen/blob/HEAD/LICENSE -Copyright: Copyright (c) 2026 codexu -ShortDescription: 一款专注于记录和写作的跨端 AI 笔记应用。 -Description: |- - NoteGen 是一款专注于记录和写作的跨端 AI 笔记应用,基于 Tauri 开发。 - NoteGen 的核心理念是将记录、写作和 AI 结合使用,三者相辅相成。记录功能可以帮助用户快速捕捉和整理碎片化知识。整理功能是连接记录和写作的桥梁,可将持续记录的内容整理成一篇可读的笔记,辅助用户完成从零到一的创作过程,如果 AI 整理的结果无法满足你的要求,那么你可以使用写作功能自行去完善。 - 记录 - 记录方式支持: - 1. 🖥️ 截图记录,通过截图,用户可以快速捕捉和记录碎片化知识,尤其是在遇到无法进行文本复制的情况下。 - 2. 📄 文本记录,可以复制文本或者手动输入一些简短的内容作为一次记录。 - 3. 🖼️ 插图记录,可以在笔记生成时,自动插入到合适的位置。 - 4. 📇 文件记录,识别 PDF、md、html、txt 等文件内容,进行文字记录。 - 5. 🔗 链接记录(待实现),使用爬虫进行页面内容识别与记录。 - 6. 📷 拍照记录(待实现)功能类似于插图记录,调用相机记录,适合未来移动端。 - 辅助记录: - - 🏷️ 自定义标签,更好地归类和区分不同的记录场景。 - - 🤖 AI 对话,默认关联当前标签下的记录,你也可以手动去关联写作内的任何文章。 - - 📋 剪贴板识别,在你进行图片或文本复制后,会自动识别剪贴板中的图片或文本。 - - 💾 整理,当你已经完成了一系列的记录之后,可以尝试让 AI 帮你整理为一篇文章。 - 写作 - - 🗂 文件管理器,支持本地和 Github 仓库的文件和文件夹的管理,支持无限层级目录。 - - 📝 支持所见即所得、即时渲染、分屏预览三种模式。 - - 📅 版本控制,如果你开启了同步功能,可以在历史记录中回溯历史上传过的记录。 - - 🤖 AI 辅助,支持问答、续写、优化、精简、翻译等功能,且可以随时将记录插入到文章任何位置。 - - 🏞️ 图床,直接复制图片粘贴在 Markdown 编辑器中,将自动将此图片上传至图床,并转换为 Markdown 图片链接。 - - 🛠️ HTML、Markdown 转换,复制浏览器的内容,将自动转换为 Markdown 格式。 - 辅助 - - 📦 大模型支持,内置多种大模型配置,支持自定义,随意切换。 - - 👁️ OCR,可以辅助识别图片内的文字。 - - 🏗️ 整理模板,可自定义模板,方便 AI 对不同类型的内容进行定制化整理。 - - 🔎 全局搜索,可以快速搜索并跳转至指定的内容。 - - 🌃 图床管理,可以方便的管理图床仓库的内容。 - - 💎 主题与外观,支持深色主题,支持 Markdown、代码等外观设置。 -Tags: -- 书摘 -- 书签 -- 人工智能 -- 剪藏 -- 大语言模型 -- 收藏 -- 收藏夹 -- 知识 -- 知识库 -- 笔记 -ReleaseNotes: See the assets to download this version and install. -ReleaseNotesUrl: https://github.com/codexu/note-gen/releases/tag/note-gen-v0.23.4 -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: codexu.NoteGen +PackageVersion: 0.23.4 +PackageLocale: zh-CN +Publisher: codexu +PublisherUrl: https://github.com/codexu +PublisherSupportUrl: https://github.com/codexu/note-gen/issues +PackageName: NoteGen +PackageUrl: https://github.com/codexu/note-gen +License: MIT +LicenseUrl: https://github.com/codexu/note-gen/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 codexu +ShortDescription: 一款专注于记录和写作的跨端 AI 笔记应用。 +Description: |- + NoteGen 是一款专注于记录和写作的跨端 AI 笔记应用,基于 Tauri 开发。 + NoteGen 的核心理念是将记录、写作和 AI 结合使用,三者相辅相成。记录功能可以帮助用户快速捕捉和整理碎片化知识。整理功能是连接记录和写作的桥梁,可将持续记录的内容整理成一篇可读的笔记,辅助用户完成从零到一的创作过程,如果 AI 整理的结果无法满足你的要求,那么你可以使用写作功能自行去完善。 + 记录 + 记录方式支持: + 1. 🖥️ 截图记录,通过截图,用户可以快速捕捉和记录碎片化知识,尤其是在遇到无法进行文本复制的情况下。 + 2. 📄 文本记录,可以复制文本或者手动输入一些简短的内容作为一次记录。 + 3. 🖼️ 插图记录,可以在笔记生成时,自动插入到合适的位置。 + 4. 📇 文件记录,识别 PDF、md、html、txt 等文件内容,进行文字记录。 + 5. 🔗 链接记录(待实现),使用爬虫进行页面内容识别与记录。 + 6. 📷 拍照记录(待实现)功能类似于插图记录,调用相机记录,适合未来移动端。 + 辅助记录: + - 🏷️ 自定义标签,更好地归类和区分不同的记录场景。 + - 🤖 AI 对话,默认关联当前标签下的记录,你也可以手动去关联写作内的任何文章。 + - 📋 剪贴板识别,在你进行图片或文本复制后,会自动识别剪贴板中的图片或文本。 + - 💾 整理,当你已经完成了一系列的记录之后,可以尝试让 AI 帮你整理为一篇文章。 + 写作 + - 🗂 文件管理器,支持本地和 Github 仓库的文件和文件夹的管理,支持无限层级目录。 + - 📝 支持所见即所得、即时渲染、分屏预览三种模式。 + - 📅 版本控制,如果你开启了同步功能,可以在历史记录中回溯历史上传过的记录。 + - 🤖 AI 辅助,支持问答、续写、优化、精简、翻译等功能,且可以随时将记录插入到文章任何位置。 + - 🏞️ 图床,直接复制图片粘贴在 Markdown 编辑器中,将自动将此图片上传至图床,并转换为 Markdown 图片链接。 + - 🛠️ HTML、Markdown 转换,复制浏览器的内容,将自动转换为 Markdown 格式。 + 辅助 + - 📦 大模型支持,内置多种大模型配置,支持自定义,随意切换。 + - 👁️ OCR,可以辅助识别图片内的文字。 + - 🏗️ 整理模板,可自定义模板,方便 AI 对不同类型的内容进行定制化整理。 + - 🔎 全局搜索,可以快速搜索并跳转至指定的内容。 + - 🌃 图床管理,可以方便的管理图床仓库的内容。 + - 💎 主题与外观,支持深色主题,支持 Markdown、代码等外观设置。 +Tags: +- 书摘 +- 书签 +- 人工智能 +- 剪藏 +- 大语言模型 +- 收藏 +- 收藏夹 +- 知识 +- 知识库 +- 笔记 +ReleaseNotes: See the assets to download this version and install. +ReleaseNotesUrl: https://github.com/codexu/note-gen/releases/tag/note-gen-v0.23.4 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/c/codexu/NoteGen/0.23.4/codexu.NoteGen.yaml b/manifests/c/codexu/NoteGen/0.23.4/codexu.NoteGen.yaml index 068ccaa7cd11..db36137dcc99 100644 --- a/manifests/c/codexu/NoteGen/0.23.4/codexu.NoteGen.yaml +++ b/manifests/c/codexu/NoteGen/0.23.4/codexu.NoteGen.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: codexu.NoteGen -PackageVersion: 0.23.4 -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: codexu.NoteGen +PackageVersion: 0.23.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/c/control-theory/gonzo/0.4.1/control-theory.gonzo.installer.yaml b/manifests/c/control-theory/gonzo/0.4.1/control-theory.gonzo.installer.yaml new file mode 100644 index 000000000000..8b2ab34c42dd --- /dev/null +++ b/manifests/c/control-theory/gonzo/0.4.1/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.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: gonzo.exe + PortableCommandAlias: gonzo +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/control-theory/gonzo/releases/download/v0.4.1/gonzo-0.4.1-windows-amd64.zip + InstallerSha256: DE8781C3FED7169FA51B029F0FB6CA0FEC5718E533ECCF83E1CB89109A48D794 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-05-07 diff --git a/manifests/c/control-theory/gonzo/0.4.1/control-theory.gonzo.locale.en-US.yaml b/manifests/c/control-theory/gonzo/0.4.1/control-theory.gonzo.locale.en-US.yaml new file mode 100644 index 000000000000..0e687fbd6fc3 --- /dev/null +++ b/manifests/c/control-theory/gonzo/0.4.1/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.1 +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.1 +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.1/control-theory.gonzo.yaml b/manifests/c/control-theory/gonzo/0.4.1/control-theory.gonzo.yaml new file mode 100644 index 000000000000..8f13555ed75c --- /dev/null +++ b/manifests/c/control-theory/gonzo/0.4.1/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.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.installer.yaml b/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.installer.yaml index 5efde6a98040..03bd45a1f391 100644 --- a/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.installer.yaml +++ b/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.installer.yaml @@ -1,4 +1,4 @@ -# Created with WinGet Releaser using komac v2.15.0 +# Automatically updated by the winget bot at 2026/May/07 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Debba.Tabularis @@ -16,6 +16,6 @@ InstallationMetadata: Installers: - Architecture: x64 InstallerUrl: https://github.com/debba/tabularis/releases/download/v0.9.5/tabularis_0.9.5_x64-setup.exe - InstallerSha256: A456BE8DE6265F1281BA305FF999E8293F5C42E2E7F4E5F34D45DA8967AF800B + InstallerSha256: 99343B8FB489332F8A74D7E3B951F9C25F9EBC5151EFA5E151CA6B903115936B ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.locale.en-US.yaml b/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.locale.en-US.yaml index a9ac8b9343f3..53df8beee495 100644 --- a/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.locale.en-US.yaml +++ b/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with WinGet Releaser using komac v2.15.0 +# Automatically updated by the winget bot at 2026/May/07 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Debba.Tabularis diff --git a/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.yaml b/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.yaml index 5c5342aa5d84..d4921b8e2c67 100644 --- a/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.yaml +++ b/manifests/d/Debba/Tabularis/0.9.5/Debba.Tabularis.yaml @@ -1,4 +1,4 @@ -# Created with WinGet Releaser using komac v2.15.0 +# Automatically updated by the winget bot at 2026/May/07 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Debba.Tabularis diff --git a/manifests/d/Dialpad/Dialpad/2605.0.2/Dialpad.Dialpad.installer.yaml b/manifests/d/Dialpad/Dialpad/2605.0.2/Dialpad.Dialpad.installer.yaml new file mode 100644 index 000000000000..9474adcb3f22 --- /dev/null +++ b/manifests/d/Dialpad/Dialpad/2605.0.2/Dialpad.Dialpad.installer.yaml @@ -0,0 +1,27 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Dialpad.Dialpad +PackageVersion: 2605.0.2 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: --silent + SilentWithProgress: --silent +UpgradeBehavior: install +Protocols: +- dialpad +- tel +ProductCode: dialpad +Installers: +- Architecture: x86 + InstallerUrl: https://storage.googleapis.com/dialpad_native/stable/win32/ia32/DialpadSetup-2605.0.2.exe + InstallerSha256: 144AE462B3708E70F238584D5609C50126CA146FF4C74D9B54E484788BA31440 +- Architecture: x64 + InstallerUrl: https://storage.googleapis.com/dialpad_native/stable/win32/x64/DialpadSetup-2605.0.2_x64.exe + InstallerSha256: 8A10EB481F9DC55D8AEBC0DDD83B878720EB303625BA6CD659F8B830211E030B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/Dialpad/Dialpad/2605.0.2/Dialpad.Dialpad.locale.en-US.yaml b/manifests/d/Dialpad/Dialpad/2605.0.2/Dialpad.Dialpad.locale.en-US.yaml new file mode 100644 index 000000000000..57b8ca2e373d --- /dev/null +++ b/manifests/d/Dialpad/Dialpad/2605.0.2/Dialpad.Dialpad.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Dialpad.Dialpad +PackageVersion: 2605.0.2 +PackageLocale: en-US +Publisher: Dialpad +PublisherUrl: https://www.dialpad.com/ +PublisherSupportUrl: https://help.dialpad.com/ +PrivacyUrl: https://www.dialpad.com/legal/#privacy +Author: Dialpad, Inc. +PackageName: Dialpad +PackageUrl: https://www.dialpad.com/download/ +License: Proprietary +LicenseUrl: https://www.dialpad.com/legal/#terms-of-service +Copyright: © 2026 DIALPAD, INC. +CopyrightUrl: https://www.dialpad.com/legal/#terms-of-service +ShortDescription: All in one AI-powered customer communications platform +Description: With Dialpad, you can connect to customers, coach customer-facing teams, & deliver amazing experiences—all with one AI-powered communications platform. +Moniker: dialpad +Tags: +- bussiness +- communicate +- communication +- crm +- customer +- customer-service +- enterprise +- marketing +- opertion +- service +PurchaseUrl: https://www.dialpad.com/pricing/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Dialpad/Dialpad/2605.0.2/Dialpad.Dialpad.locale.zh-CN.yaml b/manifests/d/Dialpad/Dialpad/2605.0.2/Dialpad.Dialpad.locale.zh-CN.yaml new file mode 100644 index 000000000000..2eab6abdd394 --- /dev/null +++ b/manifests/d/Dialpad/Dialpad/2605.0.2/Dialpad.Dialpad.locale.zh-CN.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Dialpad.Dialpad +PackageVersion: 2605.0.2 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 一体化 AI 驱动的客户通信平台 +Description: 借助 Dialpad,您可以通过一个 AI 驱动的通信平台连接客户、指导面向客户的团队,并提供卓越的体验。 +Tags: +- crm +- 企业 +- 商务 +- 客户 +- 客服 +- 服务 +- 沟通 +- 营销 +- 运营 +- 销售 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Dialpad/Dialpad/2605.0.2/Dialpad.Dialpad.yaml b/manifests/d/Dialpad/Dialpad/2605.0.2/Dialpad.Dialpad.yaml new file mode 100644 index 000000000000..24ec00dd4fd1 --- /dev/null +++ b/manifests/d/Dialpad/Dialpad/2605.0.2/Dialpad.Dialpad.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: Dialpad.Dialpad +PackageVersion: 2605.0.2 +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.2.0/DigiDNA.iMazing.installer.yaml similarity index 74% rename from manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.installer.yaml rename to manifests/d/DigiDNA/iMazing/3.5.2.0/DigiDNA.iMazing.installer.yaml index 543b36f1952a..46ae18364cb8 100644 --- a/manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.installer.yaml +++ b/manifests/d/DigiDNA/iMazing/3.5.2.0/DigiDNA.iMazing.installer.yaml @@ -1,8 +1,8 @@ -# Created with 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: DigiDNA.iMazing -PackageVersion: 3.5.0.0 +PackageVersion: 3.5.2.0 InstallerLocale: en-US InstallerType: inno Scope: machine @@ -15,7 +15,7 @@ FileExtensions: - imazing - imazingapp ProductCode: iMazing_is1 -ReleaseDate: 2026-02-19 +ReleaseDate: 2025-09-18 AppsAndFeaturesEntries: - ProductCode: iMazing_is1 ElevationRequirement: elevatesSelf @@ -24,6 +24,6 @@ InstallationMetadata: Installers: - Architecture: x86 InstallerUrl: https://downloads.imazing.com/windows/iMazing/iMazing3forWindows.exe - InstallerSha256: F82FEAE64F5A9CBDF2F3550BCD3DD49D51E974D61F7E0831C8FC7B9412BCEEF7 + InstallerSha256: 23F038C1B7F04653E55679B856B9F928F1CFDE4DAA29C9737953F50F0EDBDF33 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.2.0/DigiDNA.iMazing.locale.en-US.yaml similarity index 90% rename from manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.locale.en-US.yaml rename to manifests/d/DigiDNA/iMazing/3.5.2.0/DigiDNA.iMazing.locale.en-US.yaml index f026a2ba2ab3..79404e2f617d 100644 --- a/manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.locale.en-US.yaml +++ b/manifests/d/DigiDNA/iMazing/3.5.2.0/DigiDNA.iMazing.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created with 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: DigiDNA.iMazing -PackageVersion: 3.5.0.0 +PackageVersion: 3.5.2.0 PackageLocale: en-US Publisher: DigiDNA PublisherUrl: https://digidna.ch/ diff --git a/manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.locale.zh-CN.yaml b/manifests/d/DigiDNA/iMazing/3.5.2.0/DigiDNA.iMazing.locale.zh-CN.yaml similarity index 90% rename from manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.locale.zh-CN.yaml rename to manifests/d/DigiDNA/iMazing/3.5.2.0/DigiDNA.iMazing.locale.zh-CN.yaml index 967c1ae12f81..6b79048eff44 100644 --- a/manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.locale.zh-CN.yaml +++ b/manifests/d/DigiDNA/iMazing/3.5.2.0/DigiDNA.iMazing.locale.zh-CN.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.15.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: DigiDNA.iMazing -PackageVersion: 3.5.0.0 +PackageVersion: 3.5.2.0 PackageLocale: zh-CN Publisher: DigiDNA PublisherUrl: https://digidna.ch/ diff --git a/manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.yaml b/manifests/d/DigiDNA/iMazing/3.5.2.0/DigiDNA.iMazing.yaml similarity index 68% rename from manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.yaml rename to manifests/d/DigiDNA/iMazing/3.5.2.0/DigiDNA.iMazing.yaml index ca681f1daada..33289667a7ee 100644 --- a/manifests/d/DigiDNA/iMazing/3.5.0.0/DigiDNA.iMazing.yaml +++ b/manifests/d/DigiDNA/iMazing/3.5.2.0/DigiDNA.iMazing.yaml @@ -1,8 +1,8 @@ -# Created with 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: DigiDNA.iMazing -PackageVersion: 3.5.0.0 +PackageVersion: 3.5.2.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/d/DimitarRadenkov/Pointframe/5.7.2/DimitarRadenkov.Pointframe.installer.yaml b/manifests/d/DimitarRadenkov/Pointframe/5.7.2/DimitarRadenkov.Pointframe.installer.yaml new file mode 100644 index 000000000000..2c47f2fc62ec --- /dev/null +++ b/manifests/d/DimitarRadenkov/Pointframe/5.7.2/DimitarRadenkov.Pointframe.installer.yaml @@ -0,0 +1,28 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: DimitarRadenkov.Pointframe +PackageVersion: 5.7.2 +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- + SilentWithProgress: /SILENT /SUPPRESSMSGBOXES /NORESTART /SP- +ProductCode: '{67DE561D-F02A-4E9F-AF4A-44D98A092D54}_is1' +ReleaseDate: 2026-05-07 +AppsAndFeaturesEntries: +- Publisher: Dimitris + ProductCode: '{67DE561D-F02A-4E9F-AF4A-44D98A092D54}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Pointframe' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/dimitar-radenkov/Pointframe/releases/download/v5.7.2/Pointframe-5.7.2-x64-Setup.exe + InstallerSha256: 29314AFB6B096826EACBA54BB4D8A30F3AA3CFB3192A71ACDD189AB1E3E5890D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DimitarRadenkov/Pointframe/5.7.2/DimitarRadenkov.Pointframe.locale.en-US.yaml b/manifests/d/DimitarRadenkov/Pointframe/5.7.2/DimitarRadenkov.Pointframe.locale.en-US.yaml new file mode 100644 index 000000000000..616986d371ac --- /dev/null +++ b/manifests/d/DimitarRadenkov/Pointframe/5.7.2/DimitarRadenkov.Pointframe.locale.en-US.yaml @@ -0,0 +1,37 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: DimitarRadenkov.Pointframe +PackageVersion: 5.7.2 +PackageLocale: en-US +Publisher: Dimitar Radenkov +PublisherUrl: https://github.com/dimitar-radenkov +PublisherSupportUrl: https://github.com/dimitar-radenkov/Pointframe/issues +PackageName: Pointframe +PackageUrl: https://github.com/dimitar-radenkov/Pointframe +License: MIT +LicenseUrl: https://github.com/dimitar-radenkov/Pointframe/blob/HEAD/LICENSE +Copyright: Copyright (c) Dimitar Radenkov +ShortDescription: Open-source Windows screen capture and recording tool with OCR and annotation +Description: |- + Pointframe is a lightweight Windows screen capture and annotation tool. + Press Print Screen to draw a region, annotate with arrows, shapes, text, blur, + and numbered steps, then copy to clipboard, pin as a floating always-on-top window, + or record your screen to MP4 with optional microphone audio. Includes built-in OCR + to extract text from any screenshot. No subscription, no telemetry. +Moniker: pointframe +Tags: +- annotation +- ocr +- screen-capture +- screen-recorder +- screenshot +- windows +- wpf +ReleaseNotes: |- + What's Changed + - No changes + Full Changelog: v5.7.1...$TAG +ReleaseNotesUrl: https://github.com/dimitar-radenkov/Pointframe/releases/tag/v5.7.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DimitarRadenkov/Pointframe/5.7.2/DimitarRadenkov.Pointframe.yaml b/manifests/d/DimitarRadenkov/Pointframe/5.7.2/DimitarRadenkov.Pointframe.yaml new file mode 100644 index 000000000000..098eb148fb3d --- /dev/null +++ b/manifests/d/DimitarRadenkov/Pointframe/5.7.2/DimitarRadenkov.Pointframe.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: DimitarRadenkov.Pointframe +PackageVersion: 5.7.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.942/Discord.Discord.Canary.installer.yaml b/manifests/d/Discord/Discord/Canary/1.0.942/Discord.Discord.Canary.installer.yaml new file mode 100644 index 000000000000..72f5a4cd5fc4 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.942/Discord.Discord.Canary.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.942 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Protocols: +- discord +ProductCode: DiscordCanary +Installers: +- Architecture: x64 + InstallerUrl: https://canary.dl2.discordapp.net/distro/app/canary/win/x64/1.0.942/DiscordCanarySetup.exe + InstallerSha256: 40F6A5D17BDC7D53CE4806FA85CCCD791C27130D53BE982CB8AB86976A765594 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.942/Discord.Discord.Canary.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/1.0.942/Discord.Discord.Canary.locale.en-US.yaml new file mode 100644 index 000000000000..8707767735ca --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.942/Discord.Discord.Canary.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.942 +PackageLocale: en-US +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Canary +PackageUrl: https://discord.com/download +License: Proprietary +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2026 Discord Inc. All rights reserved. +ShortDescription: Your Place to Talk and Hang Out +Description: |- + Discord is the easiest way to talk over voice, video, and text. + Talk, chat, hang out, and stay close with your friends and communities. +Moniker: discord-canary +Tags: +- chat +- community +- gaming +- hang-out +- talk +- video +- voice +- voice-chat +PurchaseUrl: https://discord.com/nitro +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.942/Discord.Discord.Canary.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/1.0.942/Discord.Discord.Canary.locale.zh-CN.yaml new file mode 100644 index 000000000000..62310cb8c1f9 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.942/Discord.Discord.Canary.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.942 +PackageLocale: zh-CN +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Canary +PackageUrl: https://discord.com/download +License: 专有软件 +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2026 Discord Inc. All rights reserved. +ShortDescription: 玩耍聊天的地方 +Description: |- + Discord 是最简单易用的通讯工具,兼具语音、视频以及文字信息功能。 + 您可以聊聊天,拉拉家常,一起玩耍,与好友和社区保持紧密联系。 +Tags: +- 开黑 +- 游戏 +- 聊天 +- 语音 +- 语音聊天 +PurchaseUrl: https://discord.com/nitro +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.942/Discord.Discord.Canary.yaml b/manifests/d/Discord/Discord/Canary/1.0.942/Discord.Discord.Canary.yaml new file mode 100644 index 000000000000..5e39d16fd012 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.942/Discord.Discord.Canary.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.942 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.944/Discord.Discord.Canary.installer.yaml b/manifests/d/Discord/Discord/Canary/1.0.944/Discord.Discord.Canary.installer.yaml new file mode 100644 index 000000000000..579d3c099fa9 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.944/Discord.Discord.Canary.installer.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.944 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silent +UpgradeBehavior: install +Protocols: +- discord +ProductCode: DiscordCanary +Installers: +- Architecture: x64 + InstallerUrl: https://canary.dl2.discordapp.net/distro/app/canary/win/x64/1.0.944/DiscordCanarySetup.exe + InstallerSha256: C15D579743898A958EFCF67C9B2473F63DC86F8F3163CFFF50C8B8D9270B771C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.944/Discord.Discord.Canary.locale.en-US.yaml b/manifests/d/Discord/Discord/Canary/1.0.944/Discord.Discord.Canary.locale.en-US.yaml new file mode 100644 index 000000000000..0f6a051e2f27 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.944/Discord.Discord.Canary.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.944 +PackageLocale: en-US +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Canary +PackageUrl: https://discord.com/download +License: Proprietary +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2026 Discord Inc. All rights reserved. +ShortDescription: Your Place to Talk and Hang Out +Description: |- + Discord is the easiest way to talk over voice, video, and text. + Talk, chat, hang out, and stay close with your friends and communities. +Moniker: discord-canary +Tags: +- chat +- community +- gaming +- hang-out +- talk +- video +- voice +- voice-chat +PurchaseUrl: https://discord.com/nitro +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.944/Discord.Discord.Canary.locale.zh-CN.yaml b/manifests/d/Discord/Discord/Canary/1.0.944/Discord.Discord.Canary.locale.zh-CN.yaml new file mode 100644 index 000000000000..acf33d5d94a9 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.944/Discord.Discord.Canary.locale.zh-CN.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.944 +PackageLocale: zh-CN +Publisher: Discord Inc. +PublisherUrl: https://discord.com/ +PublisherSupportUrl: https://support.discord.com/ +PrivacyUrl: https://discord.com/privacy +Author: Discord Inc. +PackageName: Discord Canary +PackageUrl: https://discord.com/download +License: 专有软件 +LicenseUrl: https://discord.com/terms +Copyright: Copyright (c) 2026 Discord Inc. All rights reserved. +ShortDescription: 玩耍聊天的地方 +Description: |- + Discord 是最简单易用的通讯工具,兼具语音、视频以及文字信息功能。 + 您可以聊聊天,拉拉家常,一起玩耍,与好友和社区保持紧密联系。 +Tags: +- 开黑 +- 游戏 +- 聊天 +- 语音 +- 语音聊天 +PurchaseUrl: https://discord.com/nitro +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Discord/Discord/Canary/1.0.944/Discord.Discord.Canary.yaml b/manifests/d/Discord/Discord/Canary/1.0.944/Discord.Discord.Canary.yaml new file mode 100644 index 000000000000..0cdd8ee0dab1 --- /dev/null +++ b/manifests/d/Discord/Discord/Canary/1.0.944/Discord.Discord.Canary.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Discord.Discord.Canary +PackageVersion: 1.0.944 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/Docker/DockerCLI/29.4.3/Docker.DockerCLI.installer.yaml b/manifests/d/Docker/DockerCLI/29.4.3/Docker.DockerCLI.installer.yaml new file mode 100644 index 000000000000..ba7cf4f82af5 --- /dev/null +++ b/manifests/d/Docker/DockerCLI/29.4.3/Docker.DockerCLI.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Docker.DockerCLI +PackageVersion: 29.4.3 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: docker\docker.exe + PortableCommandAlias: docker +- RelativeFilePath: docker\dockerd.exe + PortableCommandAlias: dockerd +Installers: +- Architecture: x64 + InstallerUrl: https://download.docker.com/win/static/stable/x86_64/docker-29.4.3.zip + InstallerSha256: 993B582D09F511A5A260F69A97163472459ECF8AC11A209E87EF6EA0CDB4203B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/Docker/DockerCLI/29.4.3/Docker.DockerCLI.locale.en-US.yaml b/manifests/d/Docker/DockerCLI/29.4.3/Docker.DockerCLI.locale.en-US.yaml new file mode 100644 index 000000000000..fef693627e07 --- /dev/null +++ b/manifests/d/Docker/DockerCLI/29.4.3/Docker.DockerCLI.locale.en-US.yaml @@ -0,0 +1,12 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Docker.DockerCLI +PackageVersion: 29.4.3 +PackageLocale: en-US +Publisher: Docker Inc. +PackageName: Docker CLI +License: Apache-2.0 +ShortDescription: Docker CLI & Docker Engine for Windows containers. Docker is an open platform for developing, shipping, and running applications. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/Docker/DockerCLI/29.4.3/Docker.DockerCLI.yaml b/manifests/d/Docker/DockerCLI/29.4.3/Docker.DockerCLI.yaml new file mode 100644 index 000000000000..6823845bd5a6 --- /dev/null +++ b/manifests/d/Docker/DockerCLI/29.4.3/Docker.DockerCLI.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: Docker.DockerCLI +PackageVersion: 29.4.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/DoltHub/Dolt/1.88.1/DoltHub.Dolt.installer.yaml b/manifests/d/DoltHub/Dolt/1.88.1/DoltHub.Dolt.installer.yaml new file mode 100644 index 000000000000..96b595355cd4 --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.88.1/DoltHub.Dolt.installer.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: DoltHub.Dolt +PackageVersion: 1.88.1 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +UpgradeBehavior: install +ProductCode: '{ECF22BB5-2704-4A8D-B777-9E5186DB255F}' +AppsAndFeaturesEntries: +- DisplayName: Dolt 1.88.1 + ProductCode: '{ECF22BB5-2704-4A8D-B777-9E5186DB255F}' + UpgradeCode: '{6BC40754-759D-4899-9FD3-E6BE1823CACD}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/Dolt' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/dolthub/dolt/releases/download/v1.88.1/dolt-windows-amd64.msi + InstallerSha256: 87AEFFF17E5A8DA393805982F334EA4CE89DF20D873BE27025AE2105E3CEAC60 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-05-07 diff --git a/manifests/d/DoltHub/Dolt/1.88.1/DoltHub.Dolt.locale.en-US.yaml b/manifests/d/DoltHub/Dolt/1.88.1/DoltHub.Dolt.locale.en-US.yaml new file mode 100644 index 000000000000..1247283971b8 --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.88.1/DoltHub.Dolt.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: DoltHub.Dolt +PackageVersion: 1.88.1 +PackageLocale: en-US +Publisher: DoltHub +PublisherUrl: https://github.com/dolthub/dolt +PublisherSupportUrl: https://github.com/dolthub/dolt/issues +Author: DoltHub +PackageName: Dolt +PackageUrl: https://www.dolthub.com/ +License: Apache-2.0 +LicenseUrl: https://github.com/dolthub/dolt/blob/HEAD/LICENSE +CopyrightUrl: https://raw.githubusercontent.com/dolthub/dolt/master/LICENSE +ShortDescription: Dolt is a SQL database that you can fork, clone, branch, merge, push and pull just like a git repository. +Description: |- + Dolt is a SQL database that you can fork, clone, branch, merge, push and pull just like a git repository. + Connect to Dolt just like any MySQL database to run queries or update the data using SQL commands. + Use the command line interface to import CSV files, commit your changes, push them to a remote, or merge your teammate's changes. +Moniker: dolt +Tags: +- cli +- data +- git-for-data +- versioning +ReleaseNotesUrl: https://github.com/dolthub/dolt/releases/tag/v1.88.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DoltHub/Dolt/1.88.1/DoltHub.Dolt.yaml b/manifests/d/DoltHub/Dolt/1.88.1/DoltHub.Dolt.yaml new file mode 100644 index 000000000000..b2f1a9ac0c19 --- /dev/null +++ b/manifests/d/DoltHub/Dolt/1.88.1/DoltHub.Dolt.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: DoltHub.Dolt +PackageVersion: 1.88.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/DoltHub/Dolt/2.0.0/DoltHub.Dolt.installer.yaml b/manifests/d/DoltHub/Dolt/2.0.0/DoltHub.Dolt.installer.yaml new file mode 100644 index 000000000000..c363e8341e56 --- /dev/null +++ b/manifests/d/DoltHub/Dolt/2.0.0/DoltHub.Dolt.installer.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: DoltHub.Dolt +PackageVersion: 2.0.0 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +UpgradeBehavior: install +ProductCode: '{849D4049-32F5-4A4D-A3C8-F2709D449AC1}' +AppsAndFeaturesEntries: +- DisplayName: Dolt 2.0.0 + ProductCode: '{849D4049-32F5-4A4D-A3C8-F2709D449AC1}' + UpgradeCode: '{6BC40754-759D-4899-9FD3-E6BE1823CACD}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%/Dolt' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/dolthub/dolt/releases/download/v2.0.0/dolt-windows-amd64.msi + InstallerSha256: 6EA5E0BD8B9A50AC9F529E76DC47CD74D32B028CBF5A21E6641EFECDC96EA375 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-05-07 diff --git a/manifests/d/DoltHub/Dolt/2.0.0/DoltHub.Dolt.locale.en-US.yaml b/manifests/d/DoltHub/Dolt/2.0.0/DoltHub.Dolt.locale.en-US.yaml new file mode 100644 index 000000000000..f324a5ff91d9 --- /dev/null +++ b/manifests/d/DoltHub/Dolt/2.0.0/DoltHub.Dolt.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: DoltHub.Dolt +PackageVersion: 2.0.0 +PackageLocale: en-US +Publisher: DoltHub +PublisherUrl: https://github.com/dolthub/dolt +PublisherSupportUrl: https://github.com/dolthub/dolt/issues +Author: DoltHub +PackageName: Dolt +PackageUrl: https://www.dolthub.com/ +License: Apache-2.0 +LicenseUrl: https://github.com/dolthub/dolt/blob/HEAD/LICENSE +CopyrightUrl: https://raw.githubusercontent.com/dolthub/dolt/master/LICENSE +ShortDescription: Dolt is a SQL database that you can fork, clone, branch, merge, push and pull just like a git repository. +Description: |- + Dolt is a SQL database that you can fork, clone, branch, merge, push and pull just like a git repository. + Connect to Dolt just like any MySQL database to run queries or update the data using SQL commands. + Use the command line interface to import CSV files, commit your changes, push them to a remote, or merge your teammate's changes. +Moniker: dolt +Tags: +- cli +- data +- git-for-data +- versioning +ReleaseNotesUrl: https://github.com/dolthub/dolt/releases/tag/v2.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DoltHub/Dolt/2.0.0/DoltHub.Dolt.yaml b/manifests/d/DoltHub/Dolt/2.0.0/DoltHub.Dolt.yaml new file mode 100644 index 000000000000..e00bde4ced82 --- /dev/null +++ b/manifests/d/DoltHub/Dolt/2.0.0/DoltHub.Dolt.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: DoltHub.Dolt +PackageVersion: 2.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.installer.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.installer.yaml new file mode 100644 index 000000000000..dd50100872e1 --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.installer.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: DuckDuckGo.DesktopBrowser.Preview +PackageVersion: 0.157.0.0 +Platform: +- Windows.Desktop +- Windows.Universal +MinimumOSVersion: 10.0.19041.0 +InstallerType: msix +Protocols: +- http +- https +FileExtensions: +- htm +- html +- pdf +PackageFamilyName: DuckDuckGo.DesktopBrowserPreview_ya2fgkz3nks94 +Capabilities: +- internetClient +- runFullTrust +Installers: +- Architecture: x86 + InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/preview/0.157.0.0/DuckDuckGo%20Preview_0.157.0.0.msixbundle + InstallerSha256: B674166FAA861879D3D155EE6FC1544B61401CE4BDB06DE842AC527DDAB417B6 + SignatureSha256: 0D223D15425C8C1AA55500844CA249E0052618F88E952683CE51F10FE9A5E162 +- Architecture: x64 + InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/preview/0.157.0.0/DuckDuckGo%20Preview_0.157.0.0.msixbundle + InstallerSha256: B674166FAA861879D3D155EE6FC1544B61401CE4BDB06DE842AC527DDAB417B6 + SignatureSha256: 0D223D15425C8C1AA55500844CA249E0052618F88E952683CE51F10FE9A5E162 +- Architecture: arm64 + InstallerUrl: https://staticcdn.duckduckgo.com/d5c04536-5379-4709-8d19-d13fdd456ff6/preview/0.157.0.0/DuckDuckGo%20Preview_0.157.0.0.msixbundle + InstallerSha256: B674166FAA861879D3D155EE6FC1544B61401CE4BDB06DE842AC527DDAB417B6 + SignatureSha256: 0D223D15425C8C1AA55500844CA249E0052618F88E952683CE51F10FE9A5E162 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.locale.en-US.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.locale.en-US.yaml new file mode 100644 index 000000000000..acb860030a1d --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: DuckDuckGo.DesktopBrowser.Preview +PackageVersion: 0.157.0.0 +PackageLocale: en-US +Publisher: DuckDuckGo +PublisherUrl: https://duckduckgo.com/ +PrivacyUrl: https://duckduckgo.com/privacy +Author: Duck Duck Go, Inc. +PackageName: DuckDuckGo Preview +PackageUrl: https://duckduckgo.com/windows-preview +License: Freeware +LicenseUrl: https://duckduckgo.com/terms +Copyright: © 2026 DuckDuckGo +CopyrightUrl: https://duckduckgo.com/terms +ShortDescription: Help Test and Improve New Features with DuckDuckGo Preview for Windows +Tags: +- browser +- chromium +- web +- webpage +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.locale.zh-CN.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.locale.zh-CN.yaml new file mode 100644 index 000000000000..09c7caa46c14 --- /dev/null +++ b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.locale.zh-CN.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: DuckDuckGo.DesktopBrowser.Preview +PackageVersion: 0.157.0.0 +PackageLocale: zh-CN +License: 免费软件 +ShortDescription: 帮助测试和改进 DuckDuckGo Preview for Windows 的新功能 +Tags: +- chromium +- 浏览器 +- 网页 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.yaml b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.yaml similarity index 71% rename from manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.yaml rename to manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.yaml index 04f52a2c3f59..6b906c3b3de9 100644 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.yaml +++ b/manifests/d/DuckDuckGo/DesktopBrowser/Preview/0.157.0.0/DuckDuckGo.DesktopBrowser.Preview.yaml @@ -1,8 +1,8 @@ # Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: PerfectWorld.PerfectWorldArena -PackageVersion: 1.0.26020511 +PackageIdentifier: DuckDuckGo.DesktopBrowser.Preview +PackageVersion: 0.157.0.0 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.installer.yaml b/manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1507/EdrawSoft.EdrawMind.CN.installer.yaml similarity index 70% rename from manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.installer.yaml rename to manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1507/EdrawSoft.EdrawMind.CN.installer.yaml index 96e5705725b9..5d1d39ae9f38 100644 --- a/manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.installer.yaml +++ b/manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1507/EdrawSoft.EdrawMind.CN.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: 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 +# 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: EdrawSoft.EdrawMind.CN +PackageVersion: 13.2.1.1507 +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: 33F318FD1A70ECC43183BA50A657CF8C1DAF602DAE50FCA7433DADDC8A2EBD7D +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.1507/EdrawSoft.EdrawMind.CN.locale.en-US.yaml similarity index 93% rename from manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.locale.en-US.yaml rename to manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1507/EdrawSoft.EdrawMind.CN.locale.en-US.yaml index 1170e370d063..1e6b600748c1 100644 --- 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.1507/EdrawSoft.EdrawMind.CN.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: 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 +# 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: EdrawSoft.EdrawMind.CN +PackageVersion: 13.2.1.1507 +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.1507/EdrawSoft.EdrawMind.CN.locale.zh-CN.yaml similarity index 94% rename from manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1497/EdrawSoft.EdrawMind.CN.locale.zh-CN.yaml rename to manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1507/EdrawSoft.EdrawMind.CN.locale.zh-CN.yaml index 2cc4e5e71079..6d2e251a547f 100644 --- 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.1507/EdrawSoft.EdrawMind.CN.locale.zh-CN.yaml @@ -1,40 +1,40 @@ -# 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 +# 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: EdrawSoft.EdrawMind.CN +PackageVersion: 13.2.1.1507 +PackageLocale: zh-CN +Publisher: EdrawSoft Co.,Ltd. +PublisherUrl: https://www.edrawsoft.cn/ +PublisherSupportUrl: https://www.edrawsoft.cn/help-center/ +PrivacyUrl: https://www.edrawsoft.cn/private-policy/ +Author: 深圳市亿图软件有限公司 +PackageName: MindMaster +PackageUrl: https://www.edrawsoft.cn/mindmaster/ +License: 专有软件 +LicenseUrl: https://www.edrawsoft.cn/edrawmax-term-services/ +Copyright: © 2026 深圳市亿图软件有限公司 版权所有 +ShortDescription: 基于云的跨端思维导图软件 +Description: 亿图脑图 MindMaster 是一款跨平台、多功能的思维导图软件。是帮助您快速成为思维导图设计能手的有效解决方案!软件提供了丰富的智能布局、多样性的展示模式、结合精美的设计元素和预置的主题样式,努力帮用户打造一款真正的效率工具。自推出以来深受广大用户的欢迎,被广泛应用于解决问题,时间管理,业务战略和项目管理等领域中。 +Tags: +- 亿图脑图 +- 思维导图 +- 脑图 +ReleaseNotes: |- + 全新脑图 AI 工作台上线 + 输入一句话,自动生成思维导图、完整 PPT 或项目看板。配合首页灵感提示词,零学习成本,开箱即用。 + 支持 AI 一键看板生成 + 一句话描述项目目标,自动识别阶段、任务及优先级,从"手动录入"进化为"一键排期",极大缩短建项时间。 + 多轮对话深度理解意图 + 支持上下文连续对话与联网搜索,在同一对话内完成生成、修改、切换导图/PPT 等全流程操作,告别窗口切换,一条对话搞定所有。 +ReleaseNotesUrl: https://www.edrawsoft.cn/download/mindmaster/versioninfo/ +PurchaseUrl: https://www.edrawsoft.cn/order/mindmaster_buy.html +Documentations: +- DocumentLabel: 用户手册 + DocumentUrl: https://www.edrawsoft.cn/help-center/mindmaster-user-manual-cn.pdf +- DocumentLabel: 教程 + DocumentUrl: https://www.edrawsoft.cn/mindmaster/tutorial/ +- DocumentLabel: 视频教程 + DocumentUrl: https://mp.weixin.qq.com/s/IANQyVNlXWik-Zrckfy4bA +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1507/EdrawSoft.EdrawMind.CN.yaml b/manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1507/EdrawSoft.EdrawMind.CN.yaml new file mode 100644 index 000000000000..9ce1a3e5e4f0 --- /dev/null +++ b/manifests/e/EdrawSoft/EdrawMind/CN/13.2.1.1507/EdrawSoft.EdrawMind.CN.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: EdrawSoft.EdrawMind.CN +PackageVersion: 13.2.1.1507 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/e/enzo1982/freac/1.1.7/enzo1982.freac.installer.yaml b/manifests/e/enzo1982/freac/1.1.7/enzo1982.freac.installer.yaml new file mode 100644 index 000000000000..422a38108a05 --- /dev/null +++ b/manifests/e/enzo1982/freac/1.1.7/enzo1982.freac.installer.yaml @@ -0,0 +1,42 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: enzo1982.freac +PackageVersion: 1.1.7 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: freac-1.1.7-x64\freac.exe + PortableCommandAlias: freac +- RelativeFilePath: freac-1.1.7-x64\freaccmd.exe + PortableCommandAlias: freaccmd +- RelativeFilePath: freac-1.1.7-x64\translator.exe + PortableCommandAlias: translator +- RelativeFilePath: freac-1.1.7-x64\codecs\cmdline\ffmpeg.exe + PortableCommandAlias: ffmpeg +- RelativeFilePath: freac-1.1.7-x64\codecs\cmdline\mpcdec.exe + PortableCommandAlias: mpcdec +- RelativeFilePath: freac-1.1.7-x64\codecs\cmdline\mpcenc.exe + PortableCommandAlias: mpcenc +- RelativeFilePath: freac-1.1.7-x64\codecs\cmdline\ofr.exe + PortableCommandAlias: ofr +- RelativeFilePath: freac-1.1.7-x64\codecs\cmdline\takc.exe + PortableCommandAlias: takc +- RelativeFilePath: freac-1.1.7-x64\codecs\cmdline\wavpack.exe + PortableCommandAlias: wavpack +- RelativeFilePath: freac-1.1.7-x64\codecs\cmdline\wvunpack.exe + PortableCommandAlias: wvunpack +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/enzo1982/freac/releases/download/v1.1.7/freac-1.1.7-windows-x64.zip + InstallerSha256: EF45665AAE6C1C0EB4C0ECD8ECC6BED24F02F3CDDF6CFD72D8E5C9BC858BF110 +- Architecture: arm64 + InstallerUrl: https://github.com/enzo1982/freac/releases/download/v1.1.7/freac-1.1.7-windows-arm64.zip + InstallerSha256: 6676071B504E904D7D86A0A09AED9E2BE79B09E7A6CA8C4C8BBC3CBA3C7E8154 +- Architecture: x86 + InstallerUrl: https://github.com/enzo1982/freac/releases/download/v1.1.7/freac-1.1.7-windows-i686.zip + InstallerSha256: A4AB14999DFFE88B5EC6330F8E6444A3A12EB10EC0373759514BA89AB4BCD3FD +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2023-03-05 diff --git a/manifests/e/enzo1982/freac/1.1.7/enzo1982.freac.locale.en-US.yaml b/manifests/e/enzo1982/freac/1.1.7/enzo1982.freac.locale.en-US.yaml new file mode 100644 index 000000000000..7d85417a1dd7 --- /dev/null +++ b/manifests/e/enzo1982/freac/1.1.7/enzo1982.freac.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: enzo1982.freac +PackageVersion: 1.1.7 +PackageLocale: en-US +Publisher: Robert Kausch / freeac.org +PublisherUrl: https://github.com/enzo1982 +PublisherSupportUrl: https://github.com/enzo1982/freac/issues +PackageName: fre:ac +PackageUrl: https://github.com/enzo1982/freac +License: GPL-2.0 +ShortDescription: fre:ac is a free audio converter and CD ripper with support for various popular formats and encoders. It converts freely between MP3, M4A/AAC, FLAC, WMA, Opus, Ogg Vorbis, Speex, Monkey's Audio (APE), WavPack, WAV and other formats. +Tags: +- aac +- alac +- audio +- cd-ripper +- converter +- flac +- mp3 +- opus +- speex +ReleaseNotesUrl: https://github.com/enzo1982/freac/releases/tag/v1.1.7 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/e/enzo1982/freac/1.1.7/enzo1982.freac.yaml b/manifests/e/enzo1982/freac/1.1.7/enzo1982.freac.yaml new file mode 100644 index 000000000000..1b6b276fad52 --- /dev/null +++ b/manifests/e/enzo1982/freac/1.1.7/enzo1982.freac.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: enzo1982.freac +PackageVersion: 1.1.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/f/Fleet/fleetctl/4.84.3/Fleet.fleetctl.installer.yaml b/manifests/f/Fleet/fleetctl/4.84.3/Fleet.fleetctl.installer.yaml new file mode 100644 index 000000000000..8b2d24e2f9e9 --- /dev/null +++ b/manifests/f/Fleet/fleetctl/4.84.3/Fleet.fleetctl.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Fleet.fleetctl +PackageVersion: 4.84.3 +InstallerType: zip +NestedInstallerType: portable +Commands: +- fleetctl +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: fleetctl_v4.84.3_windows_amd64\fleetctl.exe + PortableCommandAlias: fleetctl + InstallerUrl: https://github.com/fleetdm/fleet/releases/download/fleet-v4.84.3/fleetctl_v4.84.3_windows_amd64.zip + InstallerSha256: 6F3D202F5AC908DD6261EEE70EE39A9CAD91F00687FA93ADF13121F67D96777C +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: fleetctl_v4.84.3_windows_arm64\fleetctl.exe + PortableCommandAlias: fleetctl + InstallerUrl: https://github.com/fleetdm/fleet/releases/download/fleet-v4.84.3/fleetctl_v4.84.3_windows_arm64.zip + InstallerSha256: 6A9E17827F10C99DCDDFE2D61BFF309DAF685159411CB4481483E1A8BE4F5214 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/f/Fleet/fleetctl/4.84.3/Fleet.fleetctl.locale.en-US.yaml b/manifests/f/Fleet/fleetctl/4.84.3/Fleet.fleetctl.locale.en-US.yaml new file mode 100644 index 000000000000..585a39ac3a2d --- /dev/null +++ b/manifests/f/Fleet/fleetctl/4.84.3/Fleet.fleetctl.locale.en-US.yaml @@ -0,0 +1,32 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Fleet.fleetctl +PackageVersion: 4.84.3 +PackageLocale: en-US +Publisher: Fleet Device Management Inc. +PublisherUrl: https://fleetdm.com/ +PublisherSupportUrl: https://github.com/fleetdm/fleet/issues +PrivacyUrl: https://fleetdm.com/legal/privacy +Author: Fleet Device Management Inc. +PackageName: fleetctl +PackageUrl: https://github.com/fleetdm/fleet +License: MIT +LicenseUrl: https://github.com/fleetdm/fleet/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026-present Fleet Device Management Inc +ShortDescription: A command line interface (CLI) tool for managing Fleet from the command line. +Description: |- + fleetctl (pronounced "Fleet control") is a command line interface (CLI) tool for managing Fleet from the command line. fleetctl enables a GitOps workflow with Fleet. + fleetctl also provides a quick way to work with all the data exposed by Fleet without having to use the Fleet UI or work directly with the Fleet API. +Tags: +- fleet +ReleaseNotes: |- + Bug fixes + - Reduced database load from GET /api/latest/fleet/device/{token}/desktop and other Fleet Desktop endpoints when invalid or expired device auth tokens are presented, by resolving the token to a host id with a single-table indexed lookup before running the multi-join host-details query. +ReleaseNotesUrl: https://github.com/fleetdm/fleet/releases/tag/fleet-v4.84.3 +PurchaseUrl: https://fleetdm.com/pricing +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://fleetdm.com/docs +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/Fleet/fleetctl/4.84.3/Fleet.fleetctl.locale.zh-CN.yaml b/manifests/f/Fleet/fleetctl/4.84.3/Fleet.fleetctl.locale.zh-CN.yaml new file mode 100644 index 000000000000..02826e5ca5ea --- /dev/null +++ b/manifests/f/Fleet/fleetctl/4.84.3/Fleet.fleetctl.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: Fleet.fleetctl +PackageVersion: 4.84.3 +PackageLocale: zh-CN +ShortDescription: 从命令行管理 Fleet 的命令行界面(CLI)工具。 +Description: |- + fleetctl(读作“Fleet control”)是一种命令行界面(CLI)工具,用于通过命令行管理 Fleet。 + fleetctl 还提供了一种快速方法来处理 Fleet 公开的所有数据,而无需使用 Fleet UI 或直接使用 Fleet API。 +ReleaseNotesUrl: https://github.com/fleetdm/fleet/releases/tag/fleet-v4.84.3 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://fleetdm.com/docs +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/f/Fleet/fleetctl/4.84.3/Fleet.fleetctl.yaml b/manifests/f/Fleet/fleetctl/4.84.3/Fleet.fleetctl.yaml new file mode 100644 index 000000000000..032910c1115a --- /dev/null +++ b/manifests/f/Fleet/fleetctl/4.84.3/Fleet.fleetctl.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: Fleet.fleetctl +PackageVersion: 4.84.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/f/FlightDeck/FlightDeck/1.3.0/FlightDeck.FlightDeck.locale.en-US.yaml b/manifests/f/FlightDeck/FlightDeck/1.3.0/FlightDeck.FlightDeck.locale.en-US.yaml index 817a13251191..7f3e08041fe6 100644 --- a/manifests/f/FlightDeck/FlightDeck/1.3.0/FlightDeck.FlightDeck.locale.en-US.yaml +++ b/manifests/f/FlightDeck/FlightDeck/1.3.0/FlightDeck.FlightDeck.locale.en-US.yaml @@ -13,10 +13,11 @@ PackageUrl: https://github.com/kpoineal/FlightDeck License: Apache-2.0 LicenseUrl: https://github.com/kpoineal/FlightDeck/blob/main/LICENSE ShortDescription: Flight Deck is a desktop dashboard that pulls together the most important work signals (email, meetings, chats, docs) and shows what actually needs attention. -Description: Flight Deck is a desktop dashboard that pulls together the most important work signals (email, meetings, chats, docs) and shows what actually needs attention. It highlights whats urgent, what to keep an eye on, and nudges you with notificationsno automation, just better awareness and fewer things slipping through the cracks. +Description: Flight Deck is a desktop dashboard that pulls together the most important work signals (email, meetings, chats, docs) and shows what actually needs attention. It highlights what's urgent, what to keep an eye on, and nudges you with notificationsno automation, just better awareness and fewer things slipping through the cracks. Moniker: FlightDeck Tags: -- workiq, copilot +- workiq +- copilot ReleaseNotesUrl: https://github.com/kpoineal/FlightDeck/releases/tag/v1.3.0 ManifestType: defaultLocale ManifestVersion: 1.12.0 diff --git a/manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.installer.yaml b/manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.installer.yaml similarity index 53% rename from manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.installer.yaml rename to manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.installer.yaml index 074e4fd205d4..d4486c81bfd4 100644 --- a/manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.installer.yaml +++ b/manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.installer.yaml @@ -2,19 +2,19 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: FlorianHeidenreich.Mp3tag -PackageVersion: "3.34" +PackageVersion: 3.34.1 InstallerType: nullsoft Scope: machine UpgradeBehavior: install ProductCode: Mp3tag -ReleaseDate: 2026-04-10 +ReleaseDate: 2026-05-07 ElevationRequirement: elevationRequired Installers: - Architecture: x86 - InstallerUrl: https://download.mp3tag.de/mp3tag-v3.34-setup.exe - InstallerSha256: C5BA0ED469B9FC6755F9A49FC0BD62E699F14C6DC76B67094935178C6F23AA05 + InstallerUrl: https://download.mp3tag.de/mp3tag-v3.34.1-setup.exe + InstallerSha256: 0F77D6DDC07207171B0A246A1BD370706BACB33B78EBDD567CE5E0025140924E - Architecture: x64 - InstallerUrl: https://download.mp3tag.de/mp3tag-v3.34-x64-setup.exe - InstallerSha256: BCB898D0A1FD9A87503C8D6D04083DC350D6DE51E472A78E605E0E80BA9189BC + InstallerUrl: https://download.mp3tag.de/mp3tag-v3.34.1-x64-setup.exe + InstallerSha256: 8C01E57DCF5073C22D369EF381473B592BACCA39DB8EE9CEE32CEAA8A134522C ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.locale.en-US.yaml b/manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.locale.en-US.yaml new file mode 100644 index 000000000000..34f59d2c4249 --- /dev/null +++ b/manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.locale.en-US.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: FlorianHeidenreich.Mp3tag +PackageVersion: 3.34.1 +PackageLocale: en-US +Publisher: Florian Heidenreich +PublisherUrl: https://www.mp3tag.de/en +PublisherSupportUrl: https://www.mp3tag.de/en/support.html +PrivacyUrl: https://www.mp3tag.de/en/privacy.html +Author: Florian Heidenreich +PackageName: Mp3tag +PackageUrl: https://www.mp3tag.de/en/ +License: Freeware +Copyright: © 1999—2026 Florian Heidenreich. All rights reserved. +ShortDescription: The universal tag editor and more... +Description: |- + Mp3tag is a powerful and easy-to-use tool to edit metadata of audio files. + It supports batch tag-editing of ID3v1, ID3v2.3, ID3v2.4, iTunes MP4, WMA, Vorbis Comments and APE Tags for multiple files at once covering a variety of audio formats. + Furthermore, it supports online database lookups from, e.g., Discogs, MusicBrainz or freedb, allowing you to automatically gather proper tags and download cover art for your music library. + You can rename files based on the tag information, replace characters or words in tags and filenames, import/export tag information, create playlists and more. +Moniker: mp3tag +Tags: +- audio +- id3 +- mp3 +- music +- tag +ReleaseNotes: |- + FIX: large integer metadata values were truncated to the preferred storage width when writing MP4 atoms like `ITUNESCATALOGID`. (#71185) + FIX: minor performance regression in the action groups dialog that could slow down loading or adding large numbers of action groups. (#71129) + FIX: using 'Convert > Tag - Tag' changed the last used Quick Action to 'Format value'. (#71086) + FIX: configuring or performing an action via a custom toolbar button also changed the last used Quick Action to this action type. + LNG: updated French, Hungarian, and Traditional Chinese translations. +ReleaseNotesUrl: https://www.mp3tag.de/en/changelog.html +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.mp3tag.de/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.locale.zh-CN.yaml b/manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.locale.zh-CN.yaml similarity index 98% rename from manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.locale.zh-CN.yaml rename to manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.locale.zh-CN.yaml index 223d79291683..e0db25c11f87 100644 --- a/manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.locale.zh-CN.yaml +++ b/manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: FlorianHeidenreich.Mp3tag -PackageVersion: "3.34" +PackageVersion: 3.34.1 PackageLocale: zh-CN Publisher: Florian Heidenreich PublisherUrl: https://www.mp3tag.de/en diff --git a/manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.yaml b/manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.yaml similarity index 91% rename from manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.yaml rename to manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.yaml index 744d377df03a..01e897f3d972 100644 --- a/manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.yaml +++ b/manifests/f/FlorianHeidenreich/Mp3tag/3.34.1/FlorianHeidenreich.Mp3tag.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: FlorianHeidenreich.Mp3tag -PackageVersion: "3.34" +PackageVersion: 3.34.1 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.locale.en-US.yaml b/manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.locale.en-US.yaml deleted file mode 100644 index ff7d5de2ab08..000000000000 --- a/manifests/f/FlorianHeidenreich/Mp3tag/3.34/FlorianHeidenreich.Mp3tag.locale.en-US.yaml +++ /dev/null @@ -1,58 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: FlorianHeidenreich.Mp3tag -PackageVersion: "3.34" -PackageLocale: en-US -Publisher: Florian Heidenreich -PublisherUrl: https://www.mp3tag.de/en -PublisherSupportUrl: https://www.mp3tag.de/en/support.html -PrivacyUrl: https://www.mp3tag.de/en/privacy.html -Author: Florian Heidenreich -PackageName: Mp3tag -PackageUrl: https://www.mp3tag.de/en/ -License: Freeware -Copyright: © 1999—2026 Florian Heidenreich. All rights reserved. -ShortDescription: The universal tag editor and more... -Description: |- - Mp3tag is a powerful and easy-to-use tool to edit metadata of audio files. - It supports batch tag-editing of ID3v1, ID3v2.3, ID3v2.4, iTunes MP4, WMA, Vorbis Comments and APE Tags for multiple files at once covering a variety of audio formats. - Furthermore, it supports online database lookups from, e.g., Discogs, MusicBrainz or freedb, allowing you to automatically gather proper tags and download cover art for your music library. - You can rename files based on the tag information, replace characters or words in tags and filenames, import/export tag information, create playlists and more. -Moniker: mp3tag -Tags: -- audio -- id3 -- mp3 -- music -- tag -ReleaseNotes: |- - NEW: added option to write UTF-8 BOM for m3u8 playlists at 'Options > Playlist'. - NEW: added support for a second Custom Toolbar. (#70953) - CHG: moved 'View > Toolbar' and 'View > Customize toolbar...' to a separate 'Toolbars' submenu. - CHG: moved 'View > Customize columns...' to a separate 'Columns' submenu that also allows for direct toggling of configured columns. - CHG: added support for drag and drop and common keyboard shortcuts to toolbar customization. - CHG: prevented options dialog from exceeding work area size when UI scaling is enabled. (#70902) - NEW: added support for horizontal scrolling via Shift + mouse wheel where applicable. (#70731) - NEW: added support for toolbar customization. - NEW: added support for switching toolbar icons between default and original icon sets (see 'Options > Appearance'). - CHG: added higher resolution versions of original icons to allow for crisp quality when toolbar scaling or UI scaling is active. - FIX: regression where unknown MP4 atoms were removed on rewrites if configuration option 'Options > Tags > Advanced > Reuse unmodified MP4 atoms' was not enabled. (#70725, #70928) - NEW: added support for scaling user interface up to 200% (see 'Options > Appearance'). - CHG: modernised toolbar icons, menu icons, and other icons, added dedicated rendering of dark-mode icons, and improved quality of scaled toolbar icons. - FIX: possible underflow at number of selected action groups in action groups dialog (mostly under Wine). - FIX: file icons in first column of File List overlapped on the right column divider in dark mode on some systems. (#70775) - NEW: added support for creating multiple field values using the multiple fields delimiter `\\` at action Guess Values. (#70759) - FIX: regression where MP4 data atoms of type UTF-16 were truncated to first character when read (since v3.34-beta.3). - FIX: regression where validation for MP4 data atoms of type UTF-8 was too strict and did not allow trailing NULLs anymore (since v3.31b). (#70746) - NEW: added support for MP4 H.266 and VP9 video codecs. - CHG: added a possible workaround for the shell extension not opening the main window in the foreground that happens with certain file managers. (#70745) - CHG: added workaround for detection of available free space that failed with an error message for some file servers. - CHG: added a keyboard access key to the preview buttons on various dialogs. (#65355, #70630) - LNG: updated Brazilian Portuguese, Catalan, Corsican, Italian, Japanese, Simplified Chinese, Slovak, and Spanish translations. -ReleaseNotesUrl: https://www.mp3tag.de/en/changelog.html -Documentations: -- DocumentLabel: Documentation - DocumentUrl: https://docs.mp3tag.de/ -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/f/Freelancer/Desktop/2.6.3/Freelancer.Desktop.installer.yaml b/manifests/f/Freelancer/Desktop/2.6.3/Freelancer.Desktop.installer.yaml index 353ae159b320..8b22c588d864 100644 --- a/manifests/f/Freelancer/Desktop/2.6.3/Freelancer.Desktop.installer.yaml +++ b/manifests/f/Freelancer/Desktop/2.6.3/Freelancer.Desktop.installer.yaml @@ -1,5 +1,5 @@ -# Automatically updated by the winget bot at 2023/Nov/10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.2.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: Freelancer.Desktop PackageVersion: 2.6.3 @@ -7,6 +7,6 @@ Installers: - Architecture: x86 InstallerType: inno InstallerUrl: https://s3.amazonaws.com/desktop-production.freelancer.com/latest/installers/freelancer-desktop-app_windows-installer.exe - InstallerSha256: AA8D3244D3C771D2151FAD0BAD7D0BC012D9A65B40C57078BE35CA33EFD4DD71 + InstallerSha256: 52E16B50B49EE701C41D959990DDC5F35ADF89B9227BE0537EF8B51655744253 ManifestType: installer -ManifestVersion: 1.2.0 +ManifestVersion: 1.12.0 diff --git a/manifests/f/Freelancer/Desktop/2.6.3/Freelancer.Desktop.locale.en-US.yaml b/manifests/f/Freelancer/Desktop/2.6.3/Freelancer.Desktop.locale.en-US.yaml index ca124dc0e57b..8839b931da0b 100644 --- a/manifests/f/Freelancer/Desktop/2.6.3/Freelancer.Desktop.locale.en-US.yaml +++ b/manifests/f/Freelancer/Desktop/2.6.3/Freelancer.Desktop.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Automatically updated by the winget bot at 2023/Nov/10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.2.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: Freelancer.Desktop PackageVersion: 2.6.3 @@ -10,4 +10,4 @@ License: Proprietary Copyright: 2017 Freelancer Technology Pty Limited ShortDescription: Track hours worked and get paid seamlessly building trust every minute of your time ManifestType: defaultLocale -ManifestVersion: 1.2.0 +ManifestVersion: 1.12.0 diff --git a/manifests/f/Freelancer/Desktop/2.6.3/Freelancer.Desktop.yaml b/manifests/f/Freelancer/Desktop/2.6.3/Freelancer.Desktop.yaml index 901f231a1868..65dd5f01cf18 100644 --- a/manifests/f/Freelancer/Desktop/2.6.3/Freelancer.Desktop.yaml +++ b/manifests/f/Freelancer/Desktop/2.6.3/Freelancer.Desktop.yaml @@ -1,8 +1,8 @@ -# Automatically updated by the winget bot at 2023/Nov/10 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.2.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: Freelancer.Desktop PackageVersion: 2.6.3 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.2.0 +ManifestVersion: 1.12.0 diff --git a/manifests/f/FunRoutine/WorkFlowy/4.3.2605071037/FunRoutine.WorkFlowy.installer.yaml b/manifests/f/FunRoutine/WorkFlowy/4.3.2605071037/FunRoutine.WorkFlowy.installer.yaml new file mode 100644 index 000000000000..5e23fe44641c --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.3.2605071037/FunRoutine.WorkFlowy.installer.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: FunRoutine.WorkFlowy +PackageVersion: 4.3.2605071037 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- workflowy +ProductCode: 338bed7b-1324-505d-8cb6-5c266cbaa6b3 +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/workflowy/desktop/releases/download/v4.3.2605071037/WorkFlowy-Installer-4.3.2605071037.exe + InstallerSha256: 32B34A125E6B699AD287B94C1E6553F0240C57B99649E1F0A5EBFDFC6DB99F7B +- Architecture: x64 + InstallerUrl: https://github.com/workflowy/desktop/releases/download/v4.3.2605071037/WorkFlowy-Installer-4.3.2605071037.exe + InstallerSha256: 32B34A125E6B699AD287B94C1E6553F0240C57B99649E1F0A5EBFDFC6DB99F7B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/f/FunRoutine/WorkFlowy/4.3.2605071037/FunRoutine.WorkFlowy.locale.en-US.yaml b/manifests/f/FunRoutine/WorkFlowy/4.3.2605071037/FunRoutine.WorkFlowy.locale.en-US.yaml new file mode 100644 index 000000000000..8e16585d8dff --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.3.2605071037/FunRoutine.WorkFlowy.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: FunRoutine.WorkFlowy +PackageVersion: 4.3.2605071037 +PackageLocale: en-US +Publisher: WorkFlowy +PublisherUrl: https://workflowy.com/ +PublisherSupportUrl: https://workflowy.zendesk.com/ +PrivacyUrl: https://workflowy.com/privacy-policy/ +Author: FunRoutine Inc. +PackageName: WorkFlowy +PackageUrl: https://workflowy.com/ +License: Proprietary +Copyright: Copyright © 2026 WorkFlowy +ShortDescription: Collect your ideas, develop them, share them, and turn them into reality. +Tags: +- agenda +- calendar +- checklist +- gtd +- list +- memo +- memorandum +- notes +- schedule +- task +- to-do +- todo +ReleaseNotesUrl: https://github.com/workflowy/desktop/releases/tag/v4.3.2605071037 +PurchaseUrl: https://workflowy.com/pricing/ +Documentations: +- DocumentLabel: Guides + DocumentUrl: https://workflowy.com/guides/ +- DocumentLabel: Knowledge Base + DocumentUrl: https://workflowy.com/learn/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/f/FunRoutine/WorkFlowy/4.3.2605071037/FunRoutine.WorkFlowy.locale.zh-CN.yaml b/manifests/f/FunRoutine/WorkFlowy/4.3.2605071037/FunRoutine.WorkFlowy.locale.zh-CN.yaml new file mode 100644 index 000000000000..3b53cf6ef585 --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.3.2605071037/FunRoutine.WorkFlowy.locale.zh-CN.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: FunRoutine.WorkFlowy +PackageVersion: 4.3.2605071037 +PackageLocale: zh-CN +Publisher: WorkFlowy +PublisherUrl: https://workflowy.com/ +PublisherSupportUrl: https://workflowy.zendesk.com/ +PrivacyUrl: https://workflowy.com/privacy-policy/ +Author: FunRoutine Inc. +PackageName: WorkFlowy +PackageUrl: https://workflowy.com/ +License: 专有软件 +Copyright: Copyright © 2026 WorkFlowy +ShortDescription: 收集你的想法,开发、分享它们,并将其变为现实。 +Tags: +- 任务 +- 列表 +- 备忘 +- 备忘录 +- 待办 +- 待办事项 +- 提醒事项 +- 日历 +- 日程 +- 日程管理 +- 时间管理 +- 清单 +- 笔记 +- 议程 +ReleaseNotesUrl: https://github.com/workflowy/desktop/releases/tag/v4.3.2605071037 +PurchaseUrl: https://workflowy.com/pricing/ +Documentations: +- DocumentLabel: 指南 + DocumentUrl: https://workflowy.com/guides/ +- DocumentLabel: 知识库 + DocumentUrl: https://workflowy.com/learn/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/f/FunRoutine/WorkFlowy/4.3.2605071037/FunRoutine.WorkFlowy.yaml b/manifests/f/FunRoutine/WorkFlowy/4.3.2605071037/FunRoutine.WorkFlowy.yaml new file mode 100644 index 000000000000..31b0bdea8a37 --- /dev/null +++ b/manifests/f/FunRoutine/WorkFlowy/4.3.2605071037/FunRoutine.WorkFlowy.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: FunRoutine.WorkFlowy +PackageVersion: 4.3.2605071037 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/f/fjsoft/MyPhoneExplorer/2.3/fjsoft.MyPhoneExplorer.locale.en-US.yaml b/manifests/f/fjsoft/MyPhoneExplorer/2.3/fjsoft.MyPhoneExplorer.locale.en-US.yaml index a345a81bbc64..4ebce28dffff 100644 --- a/manifests/f/fjsoft/MyPhoneExplorer/2.3/fjsoft.MyPhoneExplorer.locale.en-US.yaml +++ b/manifests/f/fjsoft/MyPhoneExplorer/2.3/fjsoft.MyPhoneExplorer.locale.en-US.yaml @@ -15,7 +15,7 @@ License: Proprietary LicenseUrl: https://www.fjsoft.at/myphoneexplorer/eula_myphoneexplorer.html Copyright: © 2025 by F.J. Wechselberger ShortDescription: Simply explore your Android phone! -Description: Connect your phone via WiFi, cable or bluetooth and you'll be surprised how easy and efficient it will be to manage your phone with our software. Since it's first release MyPhoneExplorer evolved into the most popular freeware tool for smartphones. The software is constantly updated with new features. In contrast to many other solutions MyPhoneExplorer works completely locally without using any third-party server! +Description: Connect your phone via WiFi, cable or bluetooth and you'll be surprised how easy and efficient it will be to manage your phone with our software. Since its first release MyPhoneExplorer evolved into the most popular freeware tool for smartphones. The software is constantly updated with new features. In contrast to many other solutions MyPhoneExplorer works completely locally without using any third-party server! Moniker: myphoneexplorer Tags: - backup @@ -28,13 +28,12 @@ Tags: - restore - sync - transfer +- android ReleaseNotes: |- - Barcode and NFC scanner: use your smartphone as scanner for the PC - remote controlling the phone via WiFi - sync with Microsoft cloud / Outlook (new) - better appointment display in calendar - alot of smaller changes and bugfixes - - Download ManifestType: defaultLocale ManifestVersion: 1.10.0 diff --git a/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.installer.yaml b/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.installer.yaml new file mode 100644 index 000000000000..6da1ba0f67d8 --- /dev/null +++ b/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GDevelop.GDevelop +PackageVersion: 5.6.269 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: c2a9b91e-8206-5b4e-b81d-9aa27463c28e +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/4ian/GDevelop/releases/download/v5.6.269/GDevelop-5-Setup-5.6.269.exe + InstallerSha256: B194CB85B24726BFDB0A1F8CB5050410B69004AEF1D4DE5290679221FB6770DC + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/4ian/GDevelop/releases/download/v5.6.269/GDevelop-5-Setup-5.6.269.exe + InstallerSha256: B194CB85B24726BFDB0A1F8CB5050410B69004AEF1D4DE5290679221FB6770DC + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.locale.en-US.yaml b/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.locale.en-US.yaml new file mode 100644 index 000000000000..4213f5a879f5 --- /dev/null +++ b/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.locale.en-US.yaml @@ -0,0 +1,107 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GDevelop.GDevelop +PackageVersion: 5.6.269 +PackageLocale: en-US +Publisher: GDevelop Team +PublisherUrl: http://www.florianrival.com/ +PublisherSupportUrl: https://github.com/4ian/GDevelop/issues +PrivacyUrl: https://gdevelop.io/page/privacy-policy +Author: Florian Rival +PackageName: GDevelop +PackageUrl: https://gdevelop.io/ +License: MIT +LicenseUrl: https://github.com/4ian/GDevelop/blob/HEAD/LICENSE.md +Copyright: Copyright (c) 2026-present Florian Rival +ShortDescription: The fastest, easiest, most powerful no-code game engine. +Description: "GDevelop is a free, open-source game engine that's 10x easier and faster to use than anything else. Build from anywhere — even on your phone. Publish everywhere: iOS, Android, Steam, web, gaming platforms. Reach millions of players or create the next hit game you've been dreaming of." +Moniker: gdevelop +Tags: +- develop +- development +- game +ReleaseNotes: |- + 💡 New 3D Spot Light and Point Light objects + 3D lights can now be used with the new "3D spot light" and "3D point light" objects! You can find them in the "New Object" dialog. Check out the documentation here. + + Light objects can be demanding on the GPU, especially when they cast shadows. To allow to add many lights to a scene, the engine automatically hides the lights farthest from the camera. By default, the limits are 20 visible light objects and 4 light objects casting shadows (the closest to the camera). Read more in the documentation. + 💝 Improvements + - Reworked events sheet design (thanks @LuniMoon!): + - Colors adjusted to match accessibility standards, + - Refined borders around conditions/actions + - Handles of comments/groups are colored as the event itself, + - Spacing, borders and other tweaks. + - Fix default variable string value being "0" instead of empty: + - Before, variable were set to the string "0" even though displaying as empty in the list of variables. + - Projects created before 5.6.267 will keep the same behavior (0 as default value for string variables) with an option to upgrade to the new behavior in the project properties dialog. This allows previous projects to keep backward compatibility and not break. It's recommended to activate this option and check that your game continues to work as soon as you can (keep a backup in case you want to upgrade later). + - Projects created from 5.6.267 will use the new default behavior (empty as default value). + - Improve 2D lights collision calculation for better performance. + - Add expressions to access the components of forward/up/right vectors of 3D objects + - These are advanced expressions mostly useful for extensions manipulating objects in 3D space. + - Add experimental configuration to allow object resources to be loaded independently from the scene. + - This is an advanced, experimental feature which is subject to changes. It's in most cases not useful, unless you have a large game or low end devices for which controlling memory usage is important. It's mostly useful to delay loading of large custom objects. + - Objects can be configured so that its resources are not loaded when the scene is loaded. Instead, you can use an action to manually load the resources used by it. When the loading is finished (this can be checked using a condition), the object can then be created. Read the documentation to learn more. + - Be careful: if an object assets are not loaded before being created, it will be broken when displayed on screen. + - Improve premium courses structure. + - Add editor lifecycle hooks for auto running npm scripts (rhanks @ViktorVovk!). See documentation here. + - Three hooks are implemented: onEditorReady, onPreviewStart, onPreviewEnd. + - Auto-execution of hooked scripts requires user consent. + - Improve handling of devices with both a mouse and touchscreen so GDevelop can be controlled both ways in one session + - Improve desktop app updater messages and actions + - Regularly check for updates, not only on launch + - When update is downloaded, notification to restart & install + - also display version number in notification + 🐛 Bug fixes + - Fix created child objects instances in custom objects being wrongly picked twice in events + - Fix potential crash in scene editor when reloading resources with custom objects + - Fix GDO import and export never finishing loading + - Fix crashes when using invalid object names in object folders + - iOS export fixes: + - Fix screen orientation not working anymore + - Fix export not working with Admob extension + - Fix file uploads (for extensions for instance) not working on some web browsers like Firefox + - Fix unloading extensions instructions properly when closing project + - This was causing actions/conditions/expressions from extensions of previous projects to be still visible in a new project, even if not available. + - Fix particle emitter gravity length action when it was 0 + - Fix structure children not being shown while searching variables + - Fix tentatively crash in popped-out window when a theme is missing a color + - Multiplayer: fix player ping never updating on non-host clients + - Fix missing error on expressions with unknown objects in the event sheet + - Fix rendering of events true/false or yes/no as text when parameter not filled + - Fix hot reloading for behaviors + - Mobile usage fixes: + - Fix renaming objects on mobile weird behaviors + - starting a rename was showing the image of the element dragged + - could not press on the input to select it + - Fix events locking up when dragging on mobile + - Fix fields in Events sheet prefilling to "=" after opening a relational operator + ⚙️ Extensions + - [Experimental] [Advanced 3D Features] Fixed the "Distance between objects in 3D" expression + - Thanks @PANDAKO-GitHub + - [Experimental] [Scrollbar] Add actions to help moving a layer + - [Reviewed] [Scrollbar] Fix the thumb sometimes overflowing the bar + - [Reviewed] [Fire bullet] Add 2 fire actions for 3D + - [Reviewed] [Continuous bar] Allow to use bitmap texts + - [Review] [Score counter] Allow to use bitmap texts + - Also fix the initial value not being taken into account + - [Reviewed] [3rd person camera] Fix "rotate with object" property for the "all rotation" mode + - [Playgama] Extension update + - [Poki] Add new Poki User Account methods + - [Community] [Advanced 3D Features] Added functionality to obtain angles between 3D objects: + - Added “↗️Check angle to 3D objects” condition + - Added “↗️Angle to 3D objects” expression + - Updated “↔️Check distance between two objects in 3D” + - Updated “↔️Distance between objects in 3D” + - Ask submitters to declare their AI usage when sending an extension for review + 🎨 Assets + - Add various custom object variants for UI. Check them out in the Asset Store! + + 🕹 Examples + - New example "Scrollbar": show how to make a scroll view + 🕹 Premium Game Templates + - Add a new game template: Top Down Infinite Lands by Crowbar Coder +ReleaseNotesUrl: https://github.com/4ian/GDevelop/releases/tag/v5.6.269 +PurchaseUrl: https://gdevelop.io/pricing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.locale.zh-CN.yaml b/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.locale.zh-CN.yaml new file mode 100644 index 000000000000..a24d4194159d --- /dev/null +++ b/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: GDevelop.GDevelop +PackageVersion: 5.6.269 +PackageLocale: zh-CN +Publisher: GDevelop Team +PublisherUrl: http://www.florianrival.com/ +PublisherSupportUrl: https://github.com/4ian/GDevelop/issues +PrivacyUrl: https://gdevelop.io/page/privacy-policy +Author: Florian Rival +PackageName: GDevelop +PackageUrl: https://gdevelop.io/ +License: MIT +LicenseUrl: https://github.com/4ian/GDevelop/blob/HEAD/LICENSE.md +Copyright: Copyright (c) 2026-present Florian Rival +ShortDescription: 最快、最简单、最强大的无代码游戏引擎。 +Description: GDevelop 是一款免费的开源游戏引擎,使用起来比其它任何引擎都要简单和快速 10 倍。在任何地方都能创建,甚至是在手机上。在任何地方都能发布:iOS、Android、Steam、网页和游戏平台。与数百万玩家见面,或制作下一款你梦寐以求的热门游戏。 +Tags: +- 开发 +ReleaseNotesUrl: https://github.com/4ian/GDevelop/releases/tag/v5.6.269 +PurchaseUrl: https://gdevelop.io/pricing +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.yaml b/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.yaml new file mode 100644 index 000000000000..859374ad15bb --- /dev/null +++ b/manifests/g/GDevelop/GDevelop/5.6.269/GDevelop.GDevelop.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: GDevelop.GDevelop +PackageVersion: 5.6.269 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/GPSoftware/DirectoryOpus/13.23/GPSoftware.DirectoryOpus.installer.yaml b/manifests/g/GPSoftware/DirectoryOpus/13.23/GPSoftware.DirectoryOpus.installer.yaml new file mode 100644 index 000000000000..2832907ef4ab --- /dev/null +++ b/manifests/g/GPSoftware/DirectoryOpus/13.23/GPSoftware.DirectoryOpus.installer.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GPSoftware.DirectoryOpus +PackageVersion: "13.23" +InstallerLocale: en-US +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- coll +- ftp +- opusprefs +FileExtensions: +- dcf +- dft +- dlt +- dop +- dps +- flt +- opuscert +- opusscriptinstall +- osp +ProductCode: '{6CFA061F-1A4C-4569-963F-2ACFC60F5CAD}_is1' +ReleaseDate: 2026-05-08 +AppsAndFeaturesEntries: +- ProductCode: '{6CFA061F-1A4C-4569-963F-2ACFC60F5CAD}_is1' +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\GPSoftware\Directory Opus' +Installers: +- Architecture: x64 + InstallerUrl: https://cdn2.gpsoft.com.au/files/Opus13/DOpusInstall-13.23.exe + InstallerSha256: 3DC1D7D3B31420C9812E7E5276DA6C73935345D2575448F7B62EA6BAFA86A89F +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/GPSoftware/DirectoryOpus/13.23/GPSoftware.DirectoryOpus.locale.en-US.yaml b/manifests/g/GPSoftware/DirectoryOpus/13.23/GPSoftware.DirectoryOpus.locale.en-US.yaml new file mode 100644 index 000000000000..46619895bf42 --- /dev/null +++ b/manifests/g/GPSoftware/DirectoryOpus/13.23/GPSoftware.DirectoryOpus.locale.en-US.yaml @@ -0,0 +1,136 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GPSoftware.DirectoryOpus +PackageVersion: "13.23" +PackageLocale: en-US +Publisher: GPSoftware +PublisherUrl: https://www.gpsoft.com.au/ +PublisherSupportUrl: https://support.gpsoft.com.au/ +Author: GP Software (Redbrook Pty Ltd) +PackageName: Directory Opus +PackageUrl: https://www.gpsoft.com.au/ +License: Proprietary +LicenseUrl: https://docs.dopus.com/doku.php?id=licence +Copyright: Copyright © 2026 GP Software. All rights reserved. +CopyrightUrl: https://docs.dopus.com/doku.php?id=copyrights +ShortDescription: A complete replacement for Explorer, with far more power and functionality than any other file manager available today. +Description: |- + Directory Opus is a complete replacement for Explorer, with far more functionality than any other file manager available today. + + With a flexible user interface and unbelievable configurability, you can tailor Opus to streamline your workflow. + - Dual panes, dual trees, multiple tabs. + - Filter, sort, group your folders. Label and rate your files. + - Queued file copies. Powerful batch renaming. Full archive support. + - Find your files. Locate duplicates. Synchronize backups. + - Assign tags and descriptions. Convert images. Edit metadata. + - Fully multi-threaded, native 64 bit high performance code. + + Opus is written in native C++ multi-threaded code; compiled for the latest 64 bit CPUs, with high performance our number one design principle. + Powerful searching, sorting, grouping, labelling and tagging features let you take control of your files like never before. + Work with third-party tools as easily as with the built-in features. A full scripting interface, including scriptable dialogs, means your imagination is really the only limit. + + Try free for 30 days or Register for an extended 60 day trial. +Moniker: dopus +Tags: +- archive +- blake3 +- directory +- duplicate +- explorer +- file +- folder +- ftp +- hash +- management +- manager +- md5 +- rename +- sha1 +- trial +- zip +ReleaseNotes: |- + Image viewer enhancements + The internal viewer is now GPU accelerated, giving much better performance when viewing large images. New options for the standalone viewer and viewer pane let you disable this and drop back to GDI rendering if needed. + Other improvements include: + - When selecting an area in the viewer (e.g. to copy it to the clipboard or crop) a magnifier now appears near the mouse cursor making it easier for you to position the selection. When the magnifier is visible, you can: + - Hold the Ctrl key down to slow the mouse cursor speed + - Nudge the mouse position with the keyboard cursor keys + - Zoom the magnifier with the mouse wheel + - The selection rectangle now has grab handles so you can edit it. + - The standalone viewer now has a zoom slider on its toolbar (factory reset toolbar to get it in existing configurations, or drag it from Customize / Default Toolbars). + - When the viewer is zoomed using the mouse wheel it now tries to keep the same position in the image relative to the mouse position (so e.g. you can zoom in on a specific feature). + - When GPU acceleration is enabled the viewer can now show a checkerboard background instead of a solid color. Enabled via Colours and Fonts / Directory Opus Colours / [Other Colours] Viewer. + - Added command for Checkerboard background to the viewer's Background Colors menu (reset the toolbar in the standalone viewer to get the new command). + - The standalone viewer now allows the viewed image to be saved (rather than save as) if it's been rotated/flipped. Previously "Save" was only available if the image had been cropped. + - The movie player plugin now has a "loop" button. + New Preferences options relating to the viewer: + - Added Viewer / Standalone Viewer / Options / Move toolbar into the window title bar. Lets the viewer be rendered with a custom frame containing the toolbar, like the similar option for Lister toolbars. + - Added Viewer / Viewer Pane / Options / Scroll images with mouse wheel. If turned off, the mouse wheel will zoom the internal image viewer by default (instead of only when Ctrl is pressed). + - Added Viewer / Standalone Viewer / QuickShow / Zoom with mouse wheel. + - Added a new option for the Auto-size setting on Viewer / Standalone Viewer / Size and Position to auto-size for every picture but not on zoom or rotate (previously the "every picture" setting would also resize when zooming etc). + - Added Viewer / Standalone Viewer / Options / Show loading overlay after which lets you disable or change the delay before the loading overlay is shown in the standalone viewer. + - Added additional codes for viewer custom window title: + - %Z - zoom level + - %G - gamma correction + - %A - load time + - %U - selection bounds + Command changes relating to the viewer: + - Added Show VIEWERCMD=backcol,checkerboard and Show VIEWPANECMD=backcol,checkerboard commands. + - The "randomize slideshow" option and slideshow speed can now be modified on the fly in a viewer. + - Show VIEWERCMD=slideshow,randomize,toggle toggles randomize on or off + - Show VIEWERCMD=slideshow,speed:X sets the slideshow speed to X + - The Show VIEWERCMD=selaspect command now accepts fractional aspect ratios (e.g. 1.78) as well as x:y style ratios (e.g. 16:9). + - The Show VIEWPANECMD command now supports "selaspect" like Show VIEWERCMD does, to set a fixed selection aspect ratio in the viewer pane. + + Preferences + - In Colours and Fonts / Fonts there are two new items in the fonts list which let you change all fonts (fixed-width and proportional) at once. + - Added File Operations / Progress Indicators / Remember previous position. + - Added Location Bar / Path Fields / Components / Insert Cloud Storage component before cloud paths. + - Added Folder Tree / Options / Position second tree to the right of vertical dual displays. + - Added File Operations / Copying Files / Confirmation / Make "All" the default action in confirmation dialog. + - Added File Display Modes / Thumbnails / Folders / Archive folder thumbnails option, lets you stop Opus generating thumbnails for archives, and folders within archives. + + Toolbars + - Added an option for toolbars to auto-collapse their labels. This only works on horizontal toolbars (Lister/Viewer). When enabled, if a toolbar isn't wide enough to show all its buttons, button labels will be hidden to try to make room before they spill into the overflow menu. This option is per-toolbar (enabled via Customize/Toolbars). You can also override it for individual buttons. + - When any updated version of Opus 13 is run for the first time the default toolbars and context menus are now updated automatically with any new buttons (as long as they haven't been modified by the user at all). So if you never modify the default toolbars you'll now always have the latest versions. + + Commands + - Favorites command has a new MAXWIDTH argument to limit the size of each button, in characters. + - The Find ARCHIVES argument now works with the regular file finder rather than only with duplicates search. + - You can now use embedded commands with Set GROUPBY=grouplist. + + Scripting + - The Dialog.Request and DOpus.Request script methods now accept an optional fourth (or fifth) argument to display a standard icon. Valid values are "w", "i", "q" or "e" for warning/info/question/error. + - FSUtil.Run() now accepts the "a" flag to launch the program elevated. + - The Dialog.position_fix flag is now respected by the Dialog.LoadPosition function. You can specify "fix" or "nofix" for the type argument to override. + - The HttpRequest object now supports local unix sockets (on Windows 10 and above). Use http+unix:// as the protocol followed by the path to the .sock file. Note that OS limitations mean the socket file path can't use unicode characters (ASCII only) and can't be longer than 107 characters. + - Added Control.hwnd script property. + - Added Control.SetSyntax() script method. Lets you configure syntax highlighting for the edit control in code mode. You can set it to the predefined "jscript", "vbscript" or "eval" types, or specify your own custom syntax details. + - Added DOpus.FromJson() and DOpus.ToJson() methods. Lets you convert an Opus object like a Map or Vector to json and vice versa. + - The Dialog.AddHotkey() script function now takes an optional third argument. If this is set to true the hotkey will be added as a global hotkey, and will work even when the dialog isn't active. + - Added query property to the Item object. Returns a StoredQuery object that lets you read/write properties for stored queries (collections). This object has properties "query", "paths", "autoupdate" and "engine". + - Script dialogs can now make use of the code editor control used in various Opus dialogs (e.g. in the script editor) by selecting "Code" for an edit control's "Edit Type" property. + + Evaluator + - The Swap() function can now exchange two array elements (e.g. Swap(array, idx1, idx2)). + - The evaluator GetInfo() function now works in the viewer. Currently the available information is: + - slideshowspeed: returns the current slideshow speed in seconds. + - selectaspectratio: returns the current selection aspect ratio as a fraction. + - In functions launched by clicking a toolbar button, the position of the button on-screen and the position of the mouse cursor when clicked are now available as evaluator variables button_rect and click_pt. + - button_rect is a map with the following members: left, top, right, bottom, width, height, midx, midy, valid. + - click_pt is a map with the following members: x, y + This would, for example, let you configure buttons to perform different functions depending on which part of the button was clicked. + - Added ConcatPath() function for joining path components (you can also add //path// variables together for the same effect). + - Added FileDate() and FileSize() functions for retrieving information about a file or folder. + - Context for Rename Control Keys now includes a fullpath variable. + - Evaluator functions FileSize() and FileDate() now work when testing evaluator columns and rename control keys in Preferences. +ReleaseNotesUrl: https://resource.dopus.com/t/directory-opus-13-23/59355 +PurchaseUrl: https://www.gpsoft.com.au/#buynow +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://docs.dopus.com/ +- DocumentLabel: Support Forum + DocumentUrl: https://resource.dopus.com/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GPSoftware/DirectoryOpus/13.23/GPSoftware.DirectoryOpus.locale.zh-CN.yaml b/manifests/g/GPSoftware/DirectoryOpus/13.23/GPSoftware.DirectoryOpus.locale.zh-CN.yaml new file mode 100644 index 000000000000..732aa629c836 --- /dev/null +++ b/manifests/g/GPSoftware/DirectoryOpus/13.23/GPSoftware.DirectoryOpus.locale.zh-CN.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: GPSoftware.DirectoryOpus +PackageVersion: "13.23" +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 文件资源管理器的完全替代品,其功能和强大程度远超目前市面上的任何其它文件资源管理器。 +Tags: +- blake3 +- ftp +- md5 +- sha1 +- zip +- 压缩包 +- 去重 +- 哈希 +- 文件 +- 文件夹 +- 文件管理器 +- 文件资源管理器 +- 目录 +- 管理 +- 管理器 +- 重命名 +ReleaseNotesUrl: https://resource.dopus.com/t/directory-opus-13-23/59355 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://docs.dopus.com/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GPSoftware/DirectoryOpus/13.23/GPSoftware.DirectoryOpus.yaml b/manifests/g/GPSoftware/DirectoryOpus/13.23/GPSoftware.DirectoryOpus.yaml new file mode 100644 index 000000000000..c5680a2017cb --- /dev/null +++ b/manifests/g/GPSoftware/DirectoryOpus/13.23/GPSoftware.DirectoryOpus.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: GPSoftware.DirectoryOpus +PackageVersion: "13.23" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/GaoyangZhang/RivonClaw/.validation b/manifests/g/GaoyangZhang/RivonClaw/.validation new file mode 100644 index 000000000000..1b50ae9e2562 --- /dev/null +++ b/manifests/g/GaoyangZhang/RivonClaw/.validation @@ -0,0 +1 @@ +{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"a7f18818-be9e-48be-8e2b-52e699d61d82","TestPlan":"Policy-Test-2.7","PackagePath":"manifests/g/GaoyangZhang/RivonClaw/1.7.9","CommitId":"e5d67fe85bdf7482d24fc40ca5fb2edd2dee876c"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.installer.yaml b/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.installer.yaml index 936ec856a8cc..c07d17d7ece7 100644 --- a/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.installer.yaml +++ b/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.installer.yaml @@ -1,26 +1,26 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: GaoyangZhang.RivonClaw -PackageVersion: 1.7.9 -InstallerType: nullsoft -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ProductCode: 51492edb-6d67-582c-a781-6b48bbf5f3bf -ReleaseDate: 2026-04-08 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/gaoyangz77/rivonclaw/releases/download/v1.7.9/RivonClaw.Setup.1.7.9.exe - InstallerSha256: 7AA4299636ECDB96B6E5091194327D870E501D677F86B819FC1BF94ABDCDCDFD - InstallerSwitches: - Custom: /currentuser -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/gaoyangz77/rivonclaw/releases/download/v1.7.9/RivonClaw.Setup.1.7.9.exe - InstallerSha256: 7AA4299636ECDB96B6E5091194327D870E501D677F86B819FC1BF94ABDCDCDFD - InstallerSwitches: - Custom: /allusers -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: GaoyangZhang.RivonClaw +PackageVersion: 1.7.9 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 51492edb-6d67-582c-a781-6b48bbf5f3bf +ReleaseDate: 2026-04-08 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/gaoyangz77/rivonclaw/releases/download/v1.7.9/RivonClaw.Setup.1.7.9.exe + InstallerSha256: 7C2A6D48273C5C20F03A875BBE4312D591EC2597E20CAE65193B387EF7FF531F + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/gaoyangz77/rivonclaw/releases/download/v1.7.9/RivonClaw.Setup.1.7.9.exe + InstallerSha256: 7C2A6D48273C5C20F03A875BBE4312D591EC2597E20CAE65193B387EF7FF531F + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.locale.en-US.yaml b/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.locale.en-US.yaml index d5fe6b9d118b..6073a81a5a43 100644 --- a/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.locale.en-US.yaml +++ b/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.locale.en-US.yaml @@ -1,54 +1,54 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: GaoyangZhang.RivonClaw -PackageVersion: 1.7.9 -PackageLocale: en-US -Publisher: RivonClaw -PublisherUrl: https://github.com/gaoyangz77 -PublisherSupportUrl: https://github.com/gaoyangz77/rivonclaw/issues -Author: Gaoyang Zhang -PackageName: RivonClaw -PackageUrl: https://github.com/gaoyangz77/rivonclaw -License: MIT -LicenseUrl: https://github.com/gaoyangz77/rivonclaw/blob/HEAD/LICENSE -Copyright: Copyright (c) 2026 Gaoyang Zhang -ShortDescription: An easy-mode runtime and UI layer built on top of OpenClaw, designed to turn long-lived AI agents into personal digital butlers. -Description: |- - OpenClaw is a powerful agent runtime — but it's built for engineers. Setting it up means editing config files, managing processes, and juggling API keys from the terminal. For non-programmers (designers, operators, small business owners), that barrier is too high. - RivonClaw wraps OpenClaw into a desktop app that anyone can use: install, launch from the system tray, and manage everything through a local web panel. Write rules in plain language instead of code, configure LLM providers and messaging channels with a few clicks, and let the agent learn your preferences over time. No terminal required. - In short: OpenClaw is the engine; RivonClaw is the cockpit. - - Features - - Natural Language Rules: Write rules in plain language—they compile to policy, guards, or skills and take effect immediately (no restart) - - Multi-Provider LLM Support: 20+ providers (OpenAI, Anthropic, Google Gemini, DeepSeek, Zhipu/Z.ai, Moonshot/Kimi, Qwen, Groq, Mistral, xAI, OpenRouter, MiniMax, Venice AI, Xiaomi/MiMo, Volcengine/Doubao, Amazon Bedrock, NVIDIA NIM, etc.) plus subscription/coding plans (Claude, Gemini, Zhipu Coding, Qwen Coding, Kimi Code, MiniMax Coding, Volcengine Coding) and Ollama for local models - - OAuth & Subscription Plans: Sign in with Google for free-tier Gemini access or connect Claude/Anthropic subscription—no API key needed. Auto-detects or installs CLI credentials - - Per-Provider Proxy Support: Configure HTTP/SOCKS5 proxies per LLM provider or API key, with automatic routing and hot reload—essential for restricted regions - - Multi-Account Channels: Configure Telegram, WhatsApp, Discord, Slack, Google Chat, Signal, iMessage, Feishu/Lark, LINE, Matrix, Mattermost, Microsoft Teams, and more through UI with secure secret storage (Keychain/DPAPI) - - Token Usage Tracking: Real-time statistics by model and provider, auto-refreshed from OpenClaw session files - - Speech-to-Text: Region-aware STT integration for voice messages (Groq, Volcengine) - - Visual Permissions: Control file read/write access through UI - - Zero-Restart Updates: API key, proxy, and channel changes apply instantly via hot reload—no gateway restart needed - - Local-First & Private: All data stays on your machine; secrets never stored in plaintext - - Chat with Agent: Real-time WebSocket chat with markdown rendering, emoji picker, image attachments, model switching, and persistent conversation history - - Skills Marketplace: Browse, search, and install community skills from a built-in marketplace; manage installed skills with one click - - Auto-Update: Client update checker with static manifest hosting - - Privacy-First Telemetry: Optional anonymous usage analytics—no PII collected - - How File Permissions Work - RivonClaw enforces file access permissions through an OpenClaw plugin that intercepts tool calls before they execute. Here's what's protected: - - File access tools (read, write, edit, image, apply-patch): Fully protected—paths are validated against your configured permissions - - Command execution (exec, process): Working directory is validated, but paths inside command strings (like cat /etc/passwd) cannot be inspected - Coverage: ~85-90% of file access scenarios. For maximum security, consider restricting or disabling exec tools through Rules. - Technical note: The file permissions plugin uses OpenClaw's before_tool_call hook—no vendor source code modifications needed, so RivonClaw can cleanly pull upstream OpenClaw updates. -Tags: -- agent -- agentic -- ai -- chatbot -- claw -- large-language-model -- llm -ReleaseNotesUrl: https://github.com/gaoyangz77/rivonclaw/releases/tag/v1.7.9 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: GaoyangZhang.RivonClaw +PackageVersion: 1.7.9 +PackageLocale: en-US +Publisher: RivonClaw +PublisherUrl: https://github.com/gaoyangz77 +PublisherSupportUrl: https://github.com/gaoyangz77/rivonclaw/issues +Author: Gaoyang Zhang +PackageName: RivonClaw +PackageUrl: https://github.com/gaoyangz77/rivonclaw +License: MIT +LicenseUrl: https://github.com/gaoyangz77/rivonclaw/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 Gaoyang Zhang +ShortDescription: An easy-mode runtime and UI layer built on top of OpenClaw, designed to turn long-lived AI agents into personal digital butlers. +Description: |- + OpenClaw is a powerful agent runtime — but it's built for engineers. Setting it up means editing config files, managing processes, and juggling API keys from the terminal. For non-programmers (designers, operators, small business owners), that barrier is too high. + RivonClaw wraps OpenClaw into a desktop app that anyone can use: install, launch from the system tray, and manage everything through a local web panel. Write rules in plain language instead of code, configure LLM providers and messaging channels with a few clicks, and let the agent learn your preferences over time. No terminal required. + In short: OpenClaw is the engine; RivonClaw is the cockpit. + + Features + - Natural Language Rules: Write rules in plain language—they compile to policy, guards, or skills and take effect immediately (no restart) + - Multi-Provider LLM Support: 20+ providers (OpenAI, Anthropic, Google Gemini, DeepSeek, Zhipu/Z.ai, Moonshot/Kimi, Qwen, Groq, Mistral, xAI, OpenRouter, MiniMax, Venice AI, Xiaomi/MiMo, Volcengine/Doubao, Amazon Bedrock, NVIDIA NIM, etc.) plus subscription/coding plans (Claude, Gemini, Zhipu Coding, Qwen Coding, Kimi Code, MiniMax Coding, Volcengine Coding) and Ollama for local models + - OAuth & Subscription Plans: Sign in with Google for free-tier Gemini access or connect Claude/Anthropic subscription—no API key needed. Auto-detects or installs CLI credentials + - Per-Provider Proxy Support: Configure HTTP/SOCKS5 proxies per LLM provider or API key, with automatic routing and hot reload—essential for restricted regions + - Multi-Account Channels: Configure Telegram, WhatsApp, Discord, Slack, Google Chat, Signal, iMessage, Feishu/Lark, LINE, Matrix, Mattermost, Microsoft Teams, and more through UI with secure secret storage (Keychain/DPAPI) + - Token Usage Tracking: Real-time statistics by model and provider, auto-refreshed from OpenClaw session files + - Speech-to-Text: Region-aware STT integration for voice messages (Groq, Volcengine) + - Visual Permissions: Control file read/write access through UI + - Zero-Restart Updates: API key, proxy, and channel changes apply instantly via hot reload—no gateway restart needed + - Local-First & Private: All data stays on your machine; secrets never stored in plaintext + - Chat with Agent: Real-time WebSocket chat with markdown rendering, emoji picker, image attachments, model switching, and persistent conversation history + - Skills Marketplace: Browse, search, and install community skills from a built-in marketplace; manage installed skills with one click + - Auto-Update: Client update checker with static manifest hosting + - Privacy-First Telemetry: Optional anonymous usage analytics—no PII collected + + How File Permissions Work + RivonClaw enforces file access permissions through an OpenClaw plugin that intercepts tool calls before they execute. Here's what's protected: + - File access tools (read, write, edit, image, apply-patch): Fully protected—paths are validated against your configured permissions + - Command execution (exec, process): Working directory is validated, but paths inside command strings (like cat /etc/passwd) cannot be inspected + Coverage: ~85-90% of file access scenarios. For maximum security, consider restricting or disabling exec tools through Rules. + Technical note: The file permissions plugin uses OpenClaw's before_tool_call hook—no vendor source code modifications needed, so RivonClaw can cleanly pull upstream OpenClaw updates. +Tags: +- agent +- agentic +- ai +- chatbot +- claw +- large-language-model +- llm +ReleaseNotesUrl: https://github.com/gaoyangz77/rivonclaw/releases/tag/v1.7.9 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.locale.zh-CN.yaml b/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.locale.zh-CN.yaml index c5597e4e13e7..0ab443d2f228 100644 --- a/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.locale.zh-CN.yaml +++ b/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.locale.zh-CN.yaml @@ -1,43 +1,43 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: GaoyangZhang.RivonClaw -PackageVersion: 1.7.9 -PackageLocale: zh-CN -ShortDescription: 基于 OpenClaw 构建的简易模式运行时与 UI 层,旨在将长生命周期 AI 智能体转化为个人数字管家。 -Description: |- - OpenClaw 是一款功能强大的智能体运行时,但它专为工程师打造:配置需编辑配置文件、管理进程,并在终端中调度各类 API 密钥。对非程序员(如设计师、运营人员、小企业主)而言,这一门槛过高。 - RivonClaw 将 OpenClaw 封装为桌面应用,人人可用:安装后从系统托盘启动,通过本地 Web 面板管理一切。用自然语言编写规则而非代码,只需几次点击即可配置大语言模型(LLM)提供商与消息渠道,并让智能体随时间学习您的偏好。无需终端。 - 简言之:OpenClaw 是引擎,RivonClaw 是驾驶舱。 - - 功能特性 - - 自然语言规则:用通俗语言编写规则,自动编译为策略、防护器或技能,即时生效(无需重启) - - 多提供商 LLM 支持:支持 20+ 提供商(OpenAI、Anthropic、Google Gemini、DeepSeek、智谱/Z.ai、Moonshot/Kimi、通义千问/Qwen、Groq、Mistral、xAI、OpenRouter、MiniMax、Venice AI、小米/MiMo、火山引擎/豆包、Amazon Bedrock、NVIDIA NIM 等),另含订阅/编码计划(Claude、Gemini、智谱编码、通义编码、Kimi Code、MiniMax 编码、火山引擎编码),并支持 Ollama 本地模型 - - OAuth 与订阅计划:使用 Google 登录即可免费访问 Gemini,或连接 Claude/Anthropic 订阅——无需 API 密钥;自动检测或安装 CLI 凭证 - - 每提供商代理支持:为每个 LLM 提供商或 API 密钥单独配置 HTTP/SOCKS5 代理,支持自动路由与热重载——对受限地区至关重要 - - 多账号消息渠道:通过图形界面配置 Telegram、WhatsApp、Discord、Slack、Google Chat、Signal、iMessage、飞书/Lark、LINE、Matrix、Mattermost、Microsoft Teams 等,并提供安全的密钥存储(Keychain/DPAPI) - - Token 用量追踪:按模型与提供商实时统计用量,基于 OpenClaw 会话文件自动刷新 - - 语音转文字(STT):集成区域感知的 STT 功能,支持语音消息处理(Groq、火山引擎) - - 可视化权限控制:通过图形界面管理文件读写访问权限 - - 零重启更新:API 密钥、代理及渠道变更通过热重载即时生效,无需重启网关 - - 本地优先与隐私保护:所有数据留存于本机,敏感信息绝不以明文存储 - - 与智能体对话:基于 WebSocket 的实时聊天,支持 Markdown 渲染、表情选择器、图片附件、模型切换及持久化对话历史 - - 技能市场:内置市场可浏览、搜索并安装社区技能,一键管理已安装技能 - - 自动更新:客户端更新检查器,支持静态清单托管 - - 隐私优先遥测:可选的匿名使用分析,不收集任何个人身份信息(PII) - - 文件权限工作原理 - RivonClaw 通过一个 OpenClaw 插件强制执行文件访问权限,该插件在工具调用执行前进行拦截。受保护内容包括: - - 文件访问工具(读取、写入、编辑、图像处理、应用补丁):全面保护——路径将对照您配置的权限进行验证 - - 命令执行(exec、process):工作目录会被验证,但命令字符串内部的路径(例如 cat /etc/passwd)无法被检查 - 覆盖范围:约 85–90% 的文件访问场景。为实现最高安全性,建议通过规则限制或禁用 exec 工具。 - 技术说明:文件权限插件利用 OpenClaw 的 before_tool_call 钩子实现,无需修改厂商源代码,因此 RivonClaw 可干净地拉取上游 OpenClaw 更新。 -Tags: -- 人工智能 -- 大语言模型 -- 智能体 -- 聊天机器人 -- 自主智能 -- 龙虾 -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: GaoyangZhang.RivonClaw +PackageVersion: 1.7.9 +PackageLocale: zh-CN +ShortDescription: 基于 OpenClaw 构建的简易模式运行时与 UI 层,旨在将长生命周期 AI 智能体转化为个人数字管家。 +Description: |- + OpenClaw 是一款功能强大的智能体运行时,但它专为工程师打造:配置需编辑配置文件、管理进程,并在终端中调度各类 API 密钥。对非程序员(如设计师、运营人员、小企业主)而言,这一门槛过高。 + RivonClaw 将 OpenClaw 封装为桌面应用,人人可用:安装后从系统托盘启动,通过本地 Web 面板管理一切。用自然语言编写规则而非代码,只需几次点击即可配置大语言模型(LLM)提供商与消息渠道,并让智能体随时间学习您的偏好。无需终端。 + 简言之:OpenClaw 是引擎,RivonClaw 是驾驶舱。 + + 功能特性 + - 自然语言规则:用通俗语言编写规则,自动编译为策略、防护器或技能,即时生效(无需重启) + - 多提供商 LLM 支持:支持 20+ 提供商(OpenAI、Anthropic、Google Gemini、DeepSeek、智谱/Z.ai、Moonshot/Kimi、通义千问/Qwen、Groq、Mistral、xAI、OpenRouter、MiniMax、Venice AI、小米/MiMo、火山引擎/豆包、Amazon Bedrock、NVIDIA NIM 等),另含订阅/编码计划(Claude、Gemini、智谱编码、通义编码、Kimi Code、MiniMax 编码、火山引擎编码),并支持 Ollama 本地模型 + - OAuth 与订阅计划:使用 Google 登录即可免费访问 Gemini,或连接 Claude/Anthropic 订阅——无需 API 密钥;自动检测或安装 CLI 凭证 + - 每提供商代理支持:为每个 LLM 提供商或 API 密钥单独配置 HTTP/SOCKS5 代理,支持自动路由与热重载——对受限地区至关重要 + - 多账号消息渠道:通过图形界面配置 Telegram、WhatsApp、Discord、Slack、Google Chat、Signal、iMessage、飞书/Lark、LINE、Matrix、Mattermost、Microsoft Teams 等,并提供安全的密钥存储(Keychain/DPAPI) + - Token 用量追踪:按模型与提供商实时统计用量,基于 OpenClaw 会话文件自动刷新 + - 语音转文字(STT):集成区域感知的 STT 功能,支持语音消息处理(Groq、火山引擎) + - 可视化权限控制:通过图形界面管理文件读写访问权限 + - 零重启更新:API 密钥、代理及渠道变更通过热重载即时生效,无需重启网关 + - 本地优先与隐私保护:所有数据留存于本机,敏感信息绝不以明文存储 + - 与智能体对话:基于 WebSocket 的实时聊天,支持 Markdown 渲染、表情选择器、图片附件、模型切换及持久化对话历史 + - 技能市场:内置市场可浏览、搜索并安装社区技能,一键管理已安装技能 + - 自动更新:客户端更新检查器,支持静态清单托管 + - 隐私优先遥测:可选的匿名使用分析,不收集任何个人身份信息(PII) + + 文件权限工作原理 + RivonClaw 通过一个 OpenClaw 插件强制执行文件访问权限,该插件在工具调用执行前进行拦截。受保护内容包括: + - 文件访问工具(读取、写入、编辑、图像处理、应用补丁):全面保护——路径将对照您配置的权限进行验证 + - 命令执行(exec、process):工作目录会被验证,但命令字符串内部的路径(例如 cat /etc/passwd)无法被检查 + 覆盖范围:约 85–90% 的文件访问场景。为实现最高安全性,建议通过规则限制或禁用 exec 工具。 + 技术说明:文件权限插件利用 OpenClaw 的 before_tool_call 钩子实现,无需修改厂商源代码,因此 RivonClaw 可干净地拉取上游 OpenClaw 更新。 +Tags: +- 人工智能 +- 大语言模型 +- 智能体 +- 聊天机器人 +- 自主智能 +- 龙虾 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.yaml b/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.yaml index 7a9f93a8b724..e3db1c9ce359 100644 --- a/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.yaml +++ b/manifests/g/GaoyangZhang/RivonClaw/1.7.9/GaoyangZhang.RivonClaw.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: GaoyangZhang.RivonClaw -PackageVersion: 1.7.9 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: GaoyangZhang.RivonClaw +PackageVersion: 1.7.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/GitHub/Copilot/Prerelease/v1.0.44-0/GitHub.Copilot.Prerelease.installer.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.44-0/GitHub.Copilot.Prerelease.installer.yaml new file mode 100644 index 000000000000..3811772790ca --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.44-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.44-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.44-0/copilot-win32-x64.zip + InstallerSha256: CB3E5D499AB1812669FC7DFF3175B09FBE45E7684727036BA6D03D68347B5E9B +- Architecture: arm64 + InstallerUrl: https://github.com/github/copilot-cli/releases/download/v1.0.44-0/copilot-win32-arm64.zip + InstallerSha256: 5164B2B503729A593AE8A26E62761B609178C2FCB2687FBB6781E99A2D31DB3A +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-05-07 diff --git a/manifests/g/GitHub/Copilot/Prerelease/v1.0.44-0/GitHub.Copilot.Prerelease.locale.en-US.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.44-0/GitHub.Copilot.Prerelease.locale.en-US.yaml new file mode 100644 index 000000000000..4f4083491fda --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.44-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.44-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.44-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.44-0/GitHub.Copilot.Prerelease.yaml b/manifests/g/GitHub/Copilot/Prerelease/v1.0.44-0/GitHub.Copilot.Prerelease.yaml new file mode 100644 index 000000000000..4fed3b86034c --- /dev/null +++ b/manifests/g/GitHub/Copilot/Prerelease/v1.0.44-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.44-0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/Gitea/Runner/1.0.0/Gitea.Runner.installer.yaml b/manifests/g/Gitea/Runner/1.0.0/Gitea.Runner.installer.yaml new file mode 100644 index 000000000000..abffc37eae8c --- /dev/null +++ b/manifests/g/Gitea/Runner/1.0.0/Gitea.Runner.installer.yaml @@ -0,0 +1,15 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Gitea.Runner +PackageVersion: 1.0.0 +InstallerType: portable +Commands: +- gitea-runner +ReleaseDate: 2026-05-05 +Installers: +- Architecture: x64 + InstallerUrl: https://gitea.com/gitea/runner/releases/download/v1.0.0/gitea-runner-1.0.0-windows-amd64.exe + InstallerSha256: DC8611F5B7B60A197F277D3DCD353D22F3A1CD30BE9C6B81BC0DFD141556956E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/g/Gitea/Runner/1.0.0/Gitea.Runner.locale.en-US.yaml b/manifests/g/Gitea/Runner/1.0.0/Gitea.Runner.locale.en-US.yaml new file mode 100644 index 000000000000..dd714f69fa29 --- /dev/null +++ b/manifests/g/Gitea/Runner/1.0.0/Gitea.Runner.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Gitea.Runner +PackageVersion: 1.0.0 +PackageLocale: en-US +Publisher: The Gitea Authors +PublisherUrl: https://about.gitea.com/ +PublisherSupportUrl: https://docs.gitea.com/help/support +Author: The Gitea Authors +PackageName: Gitea Runner +PackageUrl: https://about.gitea.com/products/runner/ +License: MIT +LicenseUrl: https://gitea.com/gitea/runner/src/branch/HEAD/LICENSE +Copyright: Copyright (c) 2026 The Gitea Authors +CopyrightUrl: https://gitea.com/gitea/runner/src/branch/HEAD/LICENSE +ShortDescription: Gitea Actions Runner is the agent that powers Gitea Actions, our built-in CI/CD system. It runs your jobs on the infrastructure you choose, with the same workflow syntax as GitHub Actions. +Description: |- + Gitea Actions Runner is the agent that powers Gitea Actions, our built-in CI/CD system. It works alongside Gitea's built-in Git server and auxiliary services to create an isolated environment in which the tasks that make up your CI/CD pipeline run. + + The runner works on a simple yet effective premise: it listens for any job dispatched from a Gitea server and runs those jobs in the environment you configure. Whenever a commit or a pull request is made, the runner kicks into action and provides immediate feedback about the impact of the change. +Moniker: gitea-runner +Tags: +- cd +- ci +- ci-cd +- continuous-delivery +- continuous-integration +- gitea +- gitea-actions +ReleaseNotesUrl: https://gitea.com/gitea/runner/releases/tag/v1.0.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/g/Gitea/Runner/1.0.0/Gitea.Runner.yaml b/manifests/g/Gitea/Runner/1.0.0/Gitea.Runner.yaml new file mode 100644 index 000000000000..110e4bb91717 --- /dev/null +++ b/manifests/g/Gitea/Runner/1.0.0/Gitea.Runner.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: Gitea.Runner +PackageVersion: 1.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/g/GlassWire/GlassWire/3.8.1033/GlassWire.GlassWire.installer.yaml b/manifests/g/GlassWire/GlassWire/3.8.1061/GlassWire.GlassWire.installer.yaml similarity index 75% rename from manifests/g/GlassWire/GlassWire/3.8.1033/GlassWire.GlassWire.installer.yaml rename to manifests/g/GlassWire/GlassWire/3.8.1061/GlassWire.GlassWire.installer.yaml index 8317cbbad76a..0af5190ce00a 100644 --- a/manifests/g/GlassWire/GlassWire/3.8.1033/GlassWire.GlassWire.installer.yaml +++ b/manifests/g/GlassWire/GlassWire/3.8.1061/GlassWire.GlassWire.installer.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.15.0 +# Created using wingetcreate 1.12.8.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: GlassWire.GlassWire -PackageVersion: 3.8.1033 +PackageVersion: 3.8.1061 InstallerLocale: en-US InstallerType: nullsoft Scope: machine @@ -10,12 +10,11 @@ UpgradeBehavior: install Dependencies: PackageDependencies: - PackageIdentifier: Microsoft.VCRedist.2015+.x86 -ReleaseDate: 2026-03-16 InstallationMetadata: DefaultInstallLocation: '%ProgramFiles(x86)%\GlassWire' Installers: - Architecture: x86 InstallerUrl: https://s3.us-east-1.amazonaws.com/s3.glasswire.com/download/GlassWireSetup.exe - InstallerSha256: A1BECAAB08F4EE236E7602A705C4AF1824E73077ED38F85FE6CAED1BC28C1F77 + InstallerSha256: F68B016A9D72AC1D34164FF753803D146EE0A770C94A0E47718A7FB34A4082C2 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/g/GlassWire/GlassWire/3.8.1033/GlassWire.GlassWire.locale.en-US.yaml b/manifests/g/GlassWire/GlassWire/3.8.1061/GlassWire.GlassWire.locale.en-US.yaml similarity index 94% rename from manifests/g/GlassWire/GlassWire/3.8.1033/GlassWire.GlassWire.locale.en-US.yaml rename to manifests/g/GlassWire/GlassWire/3.8.1061/GlassWire.GlassWire.locale.en-US.yaml index ce314ada8a69..089805667030 100644 --- a/manifests/g/GlassWire/GlassWire/3.8.1033/GlassWire.GlassWire.locale.en-US.yaml +++ b/manifests/g/GlassWire/GlassWire/3.8.1061/GlassWire.GlassWire.locale.en-US.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.15.0 +# Created using wingetcreate 1.12.8.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: GlassWire.GlassWire -PackageVersion: 3.8.1033 +PackageVersion: 3.8.1061 PackageLocale: en-US Publisher: GlassWire PublisherUrl: https://www.glasswire.com/ diff --git a/manifests/g/GlassWire/GlassWire/3.8.1033/GlassWire.GlassWire.locale.zh-CN.yaml b/manifests/g/GlassWire/GlassWire/3.8.1061/GlassWire.GlassWire.locale.zh-CN.yaml similarity index 84% rename from manifests/g/GlassWire/GlassWire/3.8.1033/GlassWire.GlassWire.locale.zh-CN.yaml rename to manifests/g/GlassWire/GlassWire/3.8.1061/GlassWire.GlassWire.locale.zh-CN.yaml index 312778233dd1..2b9ac0df5a06 100644 --- a/manifests/g/GlassWire/GlassWire/3.8.1033/GlassWire.GlassWire.locale.zh-CN.yaml +++ b/manifests/g/GlassWire/GlassWire/3.8.1061/GlassWire.GlassWire.locale.zh-CN.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.15.0 +# Created using wingetcreate 1.12.8.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: GlassWire.GlassWire -PackageVersion: 3.8.1033 +PackageVersion: 3.8.1061 PackageLocale: zh-CN License: 专有软件 ShortDescription: 实时查看当前及历史网络活动。检测恶意软件,并拦截行为异常的应用。 diff --git a/manifests/g/GlassWire/GlassWire/3.8.1033/GlassWire.GlassWire.yaml b/manifests/g/GlassWire/GlassWire/3.8.1061/GlassWire.GlassWire.yaml similarity index 73% rename from manifests/g/GlassWire/GlassWire/3.8.1033/GlassWire.GlassWire.yaml rename to manifests/g/GlassWire/GlassWire/3.8.1061/GlassWire.GlassWire.yaml index 44b0280a65ba..6d2029184a18 100644 --- a/manifests/g/GlassWire/GlassWire/3.8.1033/GlassWire.GlassWire.yaml +++ b/manifests/g/GlassWire/GlassWire/3.8.1061/GlassWire.GlassWire.yaml @@ -1,8 +1,8 @@ -# Created with komac v2.15.0 +# Created using wingetcreate 1.12.8.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: GlassWire.GlassWire -PackageVersion: 3.8.1033 +PackageVersion: 3.8.1061 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/a/Argente/DataShredder/1.0.4.7/Argente.DataShredder.yaml b/manifests/g/Gologin/Gologin/4.2.7/Gologin.Gologin.yaml similarity index 72% rename from manifests/a/Argente/DataShredder/1.0.4.7/Argente.DataShredder.yaml rename to manifests/g/Gologin/Gologin/4.2.7/Gologin.Gologin.yaml index 0759f9df1813..8681fc28978c 100644 --- a/manifests/a/Argente/DataShredder/1.0.4.7/Argente.DataShredder.yaml +++ b/manifests/g/Gologin/Gologin/4.2.7/Gologin.Gologin.yaml @@ -1,8 +1,8 @@ # Created with komac v2.16.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: Argente.DataShredder -PackageVersion: 1.0.4.7 +PackageIdentifier: Gologin.Gologin +PackageVersion: 4.2.7 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.installer.yaml b/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.installer.yaml deleted file mode 100644 index c75934e8a073..000000000000 --- a/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.installer.yaml +++ /dev/null @@ -1,74 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Dev.EXE -PackageVersion: 137.0.7141.3 -InstallerType: exe -InstallModes: -- silent -InstallerSwitches: - Log: --verbose-logging --log-file="" -ExpectedReturnCodes: -- InstallerReturnCode: 3 - ReturnResponse: alreadyInstalled -- InstallerReturnCode: 4 - ReturnResponse: downgrade -- InstallerReturnCode: 22 - ReturnResponse: cancelledByUser -- InstallerReturnCode: 60 - ReturnResponse: installInProgress -UpgradeBehavior: install -Protocols: -- http -- https -- mailto -- tel -FileExtensions: -- htm -- html -- pdf -- shtml -- svg -- webp -- xht -- xhtml -ProductCode: Google Chrome Dev -Installers: -- Architecture: x86 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/kn3duz22yp3mvjsjonf4d6lnma_137.0.7141.3/137.0.7141.3_chrome_installer_uncompressed.exe - InstallerSha256: 45BBA507EAD3E358D3B7DF1884E7ACAE23B4DA59358633E93DD07BE918BB66A2 - InstallerSwitches: - Custom: --chrome-dev --do-not-launch-chrome -- Architecture: x86 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/kn3duz22yp3mvjsjonf4d6lnma_137.0.7141.3/137.0.7141.3_chrome_installer_uncompressed.exe - InstallerSha256: 45BBA507EAD3E358D3B7DF1884E7ACAE23B4DA59358633E93DD07BE918BB66A2 - InstallerSwitches: - Custom: --chrome-dev --do-not-launch-chrome --system-level -- Architecture: x64 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/ack4q4hal2fwzghyzvxdqnibf3zq_137.0.7141.3/137.0.7141.3_chrome_installer_uncompressed.exe - InstallerSha256: 2D6EEFCF6CE8280A3039C6FA3EA7D9158A29FF6C0CFC03D7A39A62995D7F4CA3 - InstallerSwitches: - Custom: --chrome-dev --do-not-launch-chrome -- Architecture: x64 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/ack4q4hal2fwzghyzvxdqnibf3zq_137.0.7141.3/137.0.7141.3_chrome_installer_uncompressed.exe - InstallerSha256: 2D6EEFCF6CE8280A3039C6FA3EA7D9158A29FF6C0CFC03D7A39A62995D7F4CA3 - InstallerSwitches: - Custom: --chrome-dev --do-not-launch-chrome --system-level -- Architecture: arm64 - Scope: user - InstallerUrl: https://dl.google.com/release2/chrome/gfc2oju5rgaylf3ypsnzrfbgxa_137.0.7141.3/137.0.7141.3_chrome_installer_uncompressed.exe - InstallerSha256: 1B5C1CCDD72636D2D7202910EC290A4FD178AFB869710FE740D8BBC586577FDE - InstallerSwitches: - Custom: --chrome-dev --do-not-launch-chrome -- Architecture: arm64 - Scope: machine - InstallerUrl: https://dl.google.com/release2/chrome/gfc2oju5rgaylf3ypsnzrfbgxa_137.0.7141.3/137.0.7141.3_chrome_installer_uncompressed.exe - InstallerSha256: 1B5C1CCDD72636D2D7202910EC290A4FD178AFB869710FE740D8BBC586577FDE - InstallerSwitches: - Custom: --chrome-dev --do-not-launch-chrome --system-level -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.locale.en-US.yaml b/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.locale.en-US.yaml deleted file mode 100644 index d37930592ed4..000000000000 --- a/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Dev.EXE -PackageVersion: 137.0.7141.3 -PackageLocale: en-US -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/ -PrivacyUrl: https://policies.google.com/privacy -Author: Google LLC -PackageName: Google Chrome Dev (EXE) -PackageUrl: https://www.google.com/chrome/dev -License: Freeware -LicenseUrl: https://www.google.com/chrome/terms -Copyright: Copyright 2024 Google LLC. All rights reserved. -ShortDescription: Google Chrome for developers -Description: Google Chrome for developers was built for the open web. Test cutting-edge web platform APIs and developer tools that are updated weekly. -Tags: -- browser -- chromium -- internet -- web -- webpage -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.locale.nb-NO.yaml b/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.locale.nb-NO.yaml deleted file mode 100644 index aad053dfbfdf..000000000000 --- a/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.locale.nb-NO.yaml +++ /dev/null @@ -1,23 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Dev.EXE -PackageVersion: 137.0.7141.3 -PackageLocale: nb-NO -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/?hl=no -PrivacyUrl: https://policies.google.com/privacy?hl=no -Author: Google LLC -PackageName: Google Chrome Dev (EXE) -PackageUrl: https://www.google.com/intl/no/chrome/dev -License: Gratis Programvare -LicenseUrl: https://www.google.com/intl/no/chrome/terms -Copyright: Copyright 2024 Google LLC. Med enerett. -ShortDescription: Google Chrome for utviklere -Description: Google Chrome for utviklere er laget for det åpne nettet. Test banebrytende nettplattform-API-er og utviklerverktøy som oppdateres ukentlig. -Tags: -- chromium -- nettleseren -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.locale.zh-CN.yaml b/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.locale.zh-CN.yaml deleted file mode 100644 index ee4b1d7c6e60..000000000000 --- a/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.locale.zh-CN.yaml +++ /dev/null @@ -1,25 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Dev.EXE -PackageVersion: 137.0.7141.3 -PackageLocale: zh-CN -Publisher: Google LLC -PublisherUrl: https://www.google.com/ -PublisherSupportUrl: https://support.google.com/?hl=zh-Hans -PrivacyUrl: https://policies.google.com/privacy?hl=zh-CN -Author: Google LLC -PackageName: Google Chrome 开发者版 (EXE) -PackageUrl: https://www.google.com/intl/zh-CN/chrome/dev -License: 免费软件 -LicenseUrl: https://www.google.com/intl/zh-CN/chrome/terms -Copyright: 版权所有 2024 Google LLC. 保留所有权利。 -ShortDescription: 开发者专用的 Google Chrome -Description: 开发者专用的 Google Chrome 专为开放式网络打造。测试先进的网络平台 API 和每周都会更新的开发者工具。 -Tags: -- chromium -- 互联网 -- 浏览器 -- 网页 -ManifestType: locale -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.yaml b/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.yaml deleted file mode 100644 index 85f0f250fd17..000000000000 --- a/manifests/g/Google/Chrome/Dev/EXE/137.0.7141.3/Google.Chrome.Dev.EXE.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Google.Chrome.Dev.EXE -PackageVersion: 137.0.7141.3 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/FirebaseCLI/15.0.0/Google.FirebaseCLI.installer.yaml b/manifests/g/Google/FirebaseCLI/15.0.0/Google.FirebaseCLI.installer.yaml deleted file mode 100644 index ebb930fc9c3f..000000000000 --- a/manifests/g/Google/FirebaseCLI/15.0.0/Google.FirebaseCLI.installer.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Created with komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Google.FirebaseCLI -PackageVersion: 15.0.0 -InstallerType: portable -InstallModes: -- silent -Commands: -- firebase -ReleaseDate: 2025-12-11 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/firebase/firebase-tools/releases/download/v15.0.0/firebase-tools-win.exe - InstallerSha256: 4953FE8B41C8F438B8A8C7537ABBC3CB2674504D248B7EF01C7D98098BB73AD2 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/FirebaseCLI/15.0.0/Google.FirebaseCLI.locale.en-US.yaml b/manifests/g/Google/FirebaseCLI/15.0.0/Google.FirebaseCLI.locale.en-US.yaml deleted file mode 100644 index 4743ba367fec..000000000000 --- a/manifests/g/Google/FirebaseCLI/15.0.0/Google.FirebaseCLI.locale.en-US.yaml +++ /dev/null @@ -1,43 +0,0 @@ -# Created with komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Google.FirebaseCLI -PackageVersion: 15.0.0 -PackageLocale: en-US -Publisher: Google -PublisherUrl: https://firebase.google.com/ -PublisherSupportUrl: https://firebase.google.com/support -PrivacyUrl: https://policies.google.com/privacy -Author: Firebase contributors -PackageName: Firebase CLI Tools -PackageUrl: https://github.com/firebase/firebase-tools -License: MIT -LicenseUrl: https://github.com/firebase/firebase-tools/blob/HEAD/LICENSE -Copyright: Copyright (c) Firebase -CopyrightUrl: https://github.com/firebase/firebase-tools/blob/master/LICENSE -ShortDescription: The Firebase CLI Tools can be used to test, manage, and deploy your Firebase project from the command line. -Moniker: firebase-cli -Tags: -- firebase -- firebase-cli -- firebase-tools -ReleaseNotes: |- - - [BREAKING] Changed firestore:backups:list --json to return a listBackupsResponse object instead of a raw array of backups. - - [BREAKING] Removed support for '.bolt' rules files. - - [BREAKING] Removed support for running emulators with Java versions prior to 21. - - [BREAKING] Removed deprecated firebase --open-sesame and firebase --close-sesame commands. Use firebase experiments:enable and firebase experiments:disable instead. - - [BREAKING] Enforce strict timeout validation for functions. (#9540) - - [BREAKING] Update dataconnect:\* commands to use flags instead of positional arguments for --service & --location. Changed output type of dataconnect:sql:migrate --json (#9312) - - [BREAKING] When using 'firebase-tools' as a Node module, cli.auth.upload has been renamed to cli.auth.import and cli.appdistribution.testers.delete has been renamed to cli.appdistribution.testers.remove. - - [BREAKING] Updated Firebase Data Connect emulator version to v3.0.0 - - [BREAKING] Fixed generated code character case when letters follow numbers (#9567). - - [BREAKING] Dart codegen: Int64 types are now serialized and deserialized using BigInt. - - [BREAKING] Kotlin codegen: Removed magic "convenience renames" of keys and counts in selection sets (#9571). - - Eagerly load config upon any requests from VS Code Extensions or Firebase CLI. This ensures the emulator always serve the latest local configs. - - Kotlin codegen: Removed vestigial FIREBASE_DATA_CONNECT_GENERATED_FILE section at the bottom of each generated file. - - Updated Firestore Emulator to v1.20.2, which includes minor bug fixes for Datastore Mode. - - Improved command loading performance by implementing lazy loading. - - Add a confirmation in firebase init dataconnect before asking for app idea description. (#9282) -ReleaseNotesUrl: https://github.com/firebase/firebase-tools/releases/tag/v15.0.0 -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/FirebaseCLI/15.0.0/Google.FirebaseCLI.yaml b/manifests/g/Google/FirebaseCLI/15.0.0/Google.FirebaseCLI.yaml deleted file mode 100644 index 0c5e33538faa..000000000000 --- a/manifests/g/Google/FirebaseCLI/15.0.0/Google.FirebaseCLI.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Google.FirebaseCLI -PackageVersion: 15.0.0 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/FirebaseCLI/15.1.0/Google.FirebaseCLI.installer.yaml b/manifests/g/Google/FirebaseCLI/15.1.0/Google.FirebaseCLI.installer.yaml deleted file mode 100644 index 70a709f5afb1..000000000000 --- a/manifests/g/Google/FirebaseCLI/15.1.0/Google.FirebaseCLI.installer.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Created with komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Google.FirebaseCLI -PackageVersion: 15.1.0 -InstallerType: portable -InstallModes: -- silent -Commands: -- firebase -ReleaseDate: 2025-12-18 -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/firebase/firebase-tools/releases/download/v15.1.0/firebase-tools-win.exe - InstallerSha256: D873F3AF378E453404A4D5409E05A9F7ADDAFB0EE1220F0BBCE660C9BDB4240C -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/g/Google/FirebaseCLI/15.1.0/Google.FirebaseCLI.locale.en-US.yaml b/manifests/g/Google/FirebaseCLI/15.1.0/Google.FirebaseCLI.locale.en-US.yaml deleted file mode 100644 index 1b53787d804f..000000000000 --- a/manifests/g/Google/FirebaseCLI/15.1.0/Google.FirebaseCLI.locale.en-US.yaml +++ /dev/null @@ -1,29 +0,0 @@ -# Created with komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Google.FirebaseCLI -PackageVersion: 15.1.0 -PackageLocale: en-US -Publisher: Google -PublisherUrl: https://firebase.google.com/ -PublisherSupportUrl: https://firebase.google.com/support -PrivacyUrl: https://policies.google.com/privacy -Author: Firebase contributors -PackageName: Firebase CLI Tools -PackageUrl: https://github.com/firebase/firebase-tools -License: MIT -LicenseUrl: https://github.com/firebase/firebase-tools/blob/HEAD/LICENSE -Copyright: Copyright (c) Firebase -CopyrightUrl: https://github.com/firebase/firebase-tools/blob/master/LICENSE -ShortDescription: The Firebase CLI Tools can be used to test, manage, and deploy your Firebase project from the command line. -Moniker: firebase-cli -Tags: -- firebase -- firebase-cli -- firebase-tools -ReleaseNotes: |- - - Updated default Postgres version for Data Connect to 17. - - Update Data Connect Emulator to 3.0.1, which addresses some internal errors (#9627) -ReleaseNotesUrl: https://github.com/firebase/firebase-tools/releases/tag/v15.1.0 -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/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/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/Hashicorp/Terraform/1.15.2/Hashicorp.Terraform.installer.yaml b/manifests/h/Hashicorp/Terraform/1.15.2/Hashicorp.Terraform.installer.yaml new file mode 100644 index 000000000000..3fe9a67ab31b --- /dev/null +++ b/manifests/h/Hashicorp/Terraform/1.15.2/Hashicorp.Terraform.installer.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Hashicorp.Terraform +PackageVersion: 1.15.2 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: terraform.exe +Commands: +- terraform +FileExtensions: +- tf +ReleaseDate: 2026-05-06 +Installers: +- Architecture: x86 + InstallerUrl: https://releases.hashicorp.com/terraform/1.15.2/terraform_1.15.2_windows_386.zip + InstallerSha256: 3C09BE66873AF3DED27B5D2CCE19C87CFCD300A1E35236236C66626680F3A00B +- Architecture: x64 + InstallerUrl: https://releases.hashicorp.com/terraform/1.15.2/terraform_1.15.2_windows_amd64.zip + InstallerSha256: A7E25570DD85F363581E96CAC0B468257C45945CA8875D951413B6606C9B86D4 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hashicorp/Terraform/1.15.2/Hashicorp.Terraform.locale.en-US.yaml b/manifests/h/Hashicorp/Terraform/1.15.2/Hashicorp.Terraform.locale.en-US.yaml new file mode 100644 index 000000000000..f5678be7febe --- /dev/null +++ b/manifests/h/Hashicorp/Terraform/1.15.2/Hashicorp.Terraform.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: Hashicorp.Terraform +PackageVersion: 1.15.2 +PackageLocale: en-US +Publisher: HashiCorp +PublisherSupportUrl: https://github.com/hashicorp/terraform/issues +Author: HashiCorp, Inc. +PackageName: HashiCorp Terraform +PackageUrl: https://github.com/hashicorp/terraform +License: BUSL-1.1 +LicenseUrl: https://github.com/hashicorp/terraform/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 HashiCorp, Inc. +ShortDescription: A tool for building, changing, and versioning infrastructure safely and efficiently. +Description: |- + Terraform is a tool for building, changing, and versioning infrastructure safely and efficiently. Terraform can manage existing and popular service providers as well as custom in-house solutions. + The key features of Terraform are: + - Infrastructure as Code: Infrastructure is described using a high-level configuration syntax. This allows a blueprint of your datacenter to be versioned and treated as you would any other code. Additionally, infrastructure can be shared and re-used. + - Execution Plans: Terraform has a "planning" step where it generates an execution plan. The execution plan shows what Terraform will do when you call apply. This lets you avoid any surprises when Terraform manipulates infrastructure. + - Resource Graph: Terraform builds a graph of all your resources, and parallelizes the creation and modification of any non-dependent resources. Because of this, Terraform builds infrastructure as efficiently as possible, and operators get insight into dependencies in their infrastructure. + - Change Automation: Complex changesets can be applied to your infrastructure with minimal human interaction. With the previously mentioned execution plan and resource graph, you know exactly what Terraform will change and in what order, avoiding many possible human errors. +Moniker: terraform +ReleaseNotes: |- + ENHANCEMENTS: + - stacks: add ouput values to plan component instance change description (#38360) + BUG FIXES: + - Avoid printing warnings from 'terraform output -json' (#38530) +ReleaseNotesUrl: https://github.com/hashicorp/terraform/releases/tag/v1.15.2 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hashicorp/Terraform/1.15.2/Hashicorp.Terraform.locale.zh-CN.yaml b/manifests/h/Hashicorp/Terraform/1.15.2/Hashicorp.Terraform.locale.zh-CN.yaml new file mode 100644 index 000000000000..5a92e5067395 --- /dev/null +++ b/manifests/h/Hashicorp/Terraform/1.15.2/Hashicorp.Terraform.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: Hashicorp.Terraform +PackageVersion: 1.15.2 +PackageLocale: zh-CN +ShortDescription: 安全高效构建、变更及版本化基础设施的工具 +Description: |- + Terraform 是一款用于安全高效构建、变更及版本化基础设施的工具。它既能管理现有主流云服务商资源,也能管控定制化内部解决方案。 + Terraform 的核心特性包括: + - 基建即代码:通过高级配置语法描述基础设施,使得数据中心蓝图可像普通代码一样进行版本控制,同时支持基础设施配置的共享与复用。 + - 执行方案:Terraform 设有“规划”阶段生成执行方案,明确展示调用 apply 命令时将执行的操作,避免基础设施变更时的意外情况。 + - 资源拓扑图:自动构建所有资源的关联图谱,并行创建和修改无依赖关系的资源,从而实现最高效的基础设施构建,并为运维人员提供清晰的依赖关系视图。 + - 变更自动化:通过极简的人工干预即可实施复杂变更集。结合前述执行计划与资源图谱,您能精准掌握 Terraform 的变更内容及顺序,有效规避人为失误。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/h/Hashicorp/Terraform/1.15.2/Hashicorp.Terraform.yaml b/manifests/h/Hashicorp/Terraform/1.15.2/Hashicorp.Terraform.yaml new file mode 100644 index 000000000000..ffb0a8b7bd4a --- /dev/null +++ b/manifests/h/Hashicorp/Terraform/1.15.2/Hashicorp.Terraform.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: Hashicorp.Terraform +PackageVersion: 1.15.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/h/HelioFM/HelioSequencer/3.17/HelioFM.HelioSequencer.installer.yaml b/manifests/h/HelioFM/HelioSequencer/3.17/HelioFM.HelioSequencer.installer.yaml new file mode 100644 index 000000000000..47e88bce8131 --- /dev/null +++ b/manifests/h/HelioFM/HelioSequencer/3.17/HelioFM.HelioSequencer.installer.yaml @@ -0,0 +1,41 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: HelioFM.HelioSequencer +PackageVersion: "3.17" +InstallModes: +- interactive +- silent +- silentWithProgress +Installers: +- Architecture: x86 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Helio.exe + InstallerUrl: https://ci.helio.fm/helio-3.17-x32.zip + InstallerSha256: 4FDA266DC0BE22F551AC9075F676F5F017E9A8F12A80E6710D15130EBF54C430 + UpgradeBehavior: uninstallPrevious +- Architecture: x64 + InstallerType: zip + NestedInstallerType: portable + NestedInstallerFiles: + - RelativeFilePath: Helio.exe + InstallerUrl: https://ci.helio.fm/helio-3.17-x64.zip + InstallerSha256: EC947A0138F469031490F49DCF2D96D30364126F40F75503992853C2F68D85F9 + UpgradeBehavior: uninstallPrevious +- InstallerLocale: en-US + Architecture: neutral + InstallerType: inno + Scope: machine + InstallerUrl: https://ci.helio.fm/helio-3.17.exe + InstallerSha256: B570DB3F9B51371260F9D4C1ACAD9C31DC4CCB9ADCA871BC68826D8EB61BA8DC + UpgradeBehavior: install + ProductCode: '{E140D17C-F52A-4B2D-94BA-DA406EA9C4BF}_is1' + AppsAndFeaturesEntries: + - ProductCode: '{E140D17C-F52A-4B2D-94BA-DA406EA9C4BF}_is1' + ElevationRequirement: elevatesSelf + InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Helio' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/HelioFM/HelioSequencer/3.17/HelioFM.HelioSequencer.locale.en-US.yaml b/manifests/h/HelioFM/HelioSequencer/3.17/HelioFM.HelioSequencer.locale.en-US.yaml new file mode 100644 index 000000000000..c321427bd14c --- /dev/null +++ b/manifests/h/HelioFM/HelioSequencer/3.17/HelioFM.HelioSequencer.locale.en-US.yaml @@ -0,0 +1,26 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: HelioFM.HelioSequencer +PackageVersion: "3.17" +PackageLocale: en-US +Publisher: Peter Rudenko +PublisherUrl: https://helio.fm/ +Author: |- + Peter Rudenko + Community contributors + Valery Davletbaev + Ludwig Peter Müller + Steve Folta + Leo Olivers and Cognitone +PackageName: Helio +PackageUrl: https://helio.fm/ +License: |- + - GNU GPL v3 © Peter Rudenko and contributors. + - App icon by Valery Davletbaev, distributed under CC-BY. + - Other icons from various free icon fonts are licensed under SIL Open Font License and CC-BY. + - Built-in metronome sounds are recorded by Ludwig Peter Müller, CC0. +LicenseUrl: https://github.com/helio-fm/helio-sequencer/blob/master/README.md#license-and-credits +ShortDescription: Libre music composition software. +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/HelioFM/HelioSequencer/3.17/HelioFM.HelioSequencer.yaml b/manifests/h/HelioFM/HelioSequencer/3.17/HelioFM.HelioSequencer.yaml new file mode 100644 index 000000000000..262340837847 --- /dev/null +++ b/manifests/h/HelioFM/HelioSequencer/3.17/HelioFM.HelioSequencer.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: HelioFM.HelioSequencer +PackageVersion: "3.17" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/h/HypixelStudios/Hytale/2026.04.28-d3d25ae/HypixelStudios.Hytale.installer.yaml b/manifests/h/HypixelStudios/Hytale/2026.05.07-8c147f8/HypixelStudios.Hytale.installer.yaml similarity index 70% rename from manifests/h/HypixelStudios/Hytale/2026.04.28-d3d25ae/HypixelStudios.Hytale.installer.yaml rename to manifests/h/HypixelStudios/Hytale/2026.05.07-8c147f8/HypixelStudios.Hytale.installer.yaml index 3efbf3d98940..8adeb43bc15a 100644 --- a/manifests/h/HypixelStudios/Hytale/2026.04.28-d3d25ae/HypixelStudios.Hytale.installer.yaml +++ b/manifests/h/HypixelStudios/Hytale/2026.05.07-8c147f8/HypixelStudios.Hytale.installer.yaml @@ -2,17 +2,17 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: HypixelStudios.Hytale -PackageVersion: 2026.04.28-d3d25ae +PackageVersion: 2026.05.07-8c147f8 InstallerType: nullsoft Scope: machine UpgradeBehavior: install ProductCode: Hypixel StudiosHytale Launcher -ReleaseDate: 2026-04-28 +ReleaseDate: 2026-05-07 InstallationMetadata: DefaultInstallLocation: '%ProgramFiles%\Hypixel Studios\Hytale Launcher' Installers: - Architecture: x64 - InstallerUrl: https://launcher.hytale.com/builds/release/windows/amd64/hytale-launcher-installer-2026.04.28-d3d25ae.exe - InstallerSha256: F0FA93E1C7C54B8BB11BED857E665000EB62A700E5D798867342073C066798AE + InstallerUrl: https://launcher.hytale.com/builds/release/windows/amd64/hytale-launcher-installer-2026.05.07-8c147f8.exe + InstallerSha256: 0B1F0232988DDDCB5FBA7D5EDDCEF879865FE1CDA56BCF858D4750DCCD9AE979 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/h/HypixelStudios/Hytale/2026.04.28-d3d25ae/HypixelStudios.Hytale.locale.en-US.yaml b/manifests/h/HypixelStudios/Hytale/2026.05.07-8c147f8/HypixelStudios.Hytale.locale.en-US.yaml similarity index 96% rename from manifests/h/HypixelStudios/Hytale/2026.04.28-d3d25ae/HypixelStudios.Hytale.locale.en-US.yaml rename to manifests/h/HypixelStudios/Hytale/2026.05.07-8c147f8/HypixelStudios.Hytale.locale.en-US.yaml index 5331aa84e1a7..7c219f942d97 100644 --- a/manifests/h/HypixelStudios/Hytale/2026.04.28-d3d25ae/HypixelStudios.Hytale.locale.en-US.yaml +++ b/manifests/h/HypixelStudios/Hytale/2026.05.07-8c147f8/HypixelStudios.Hytale.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: HypixelStudios.Hytale -PackageVersion: 2026.04.28-d3d25ae +PackageVersion: 2026.05.07-8c147f8 PackageLocale: en-US Publisher: Hypixel Studios Canada inc. PublisherUrl: https://hytale.com/ diff --git a/manifests/h/HypixelStudios/Hytale/2026.04.28-d3d25ae/HypixelStudios.Hytale.yaml b/manifests/h/HypixelStudios/Hytale/2026.05.07-8c147f8/HypixelStudios.Hytale.yaml similarity index 84% rename from manifests/h/HypixelStudios/Hytale/2026.04.28-d3d25ae/HypixelStudios.Hytale.yaml rename to manifests/h/HypixelStudios/Hytale/2026.05.07-8c147f8/HypixelStudios.Hytale.yaml index d09f204a5602..49bfaaa3eb1d 100644 --- a/manifests/h/HypixelStudios/Hytale/2026.04.28-d3d25ae/HypixelStudios.Hytale.yaml +++ b/manifests/h/HypixelStudios/Hytale/2026.05.07-8c147f8/HypixelStudios.Hytale.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: HypixelStudios.Hytale -PackageVersion: 2026.04.28-d3d25ae +PackageVersion: 2026.05.07-8c147f8 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.installer.yaml b/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.installer.yaml index 88b71b8a0800..6405d8ffc11a 100644 --- a/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.installer.yaml +++ b/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.installer.yaml @@ -1,26 +1,26 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: hellodigua.ChatLab -PackageVersion: 0.18.2 -InstallerType: nullsoft -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ProductCode: 5c93c6d5-cfd9-53ea-a37a-26c1e3d35c8d -ReleaseDate: 2026-04-26 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/ChatLab/ChatLab/releases/download/v0.18.2/ChatLab-0.18.2-setup.exe - InstallerSha256: 6C50CF2EE1B1E3975C8A3351007E56B13A823A2270DFD72D54AE7BF668F27309 - InstallerSwitches: - Custom: /currentuser -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/ChatLab/ChatLab/releases/download/v0.18.2/ChatLab-0.18.2-setup.exe - InstallerSha256: 6C50CF2EE1B1E3975C8A3351007E56B13A823A2270DFD72D54AE7BF668F27309 - InstallerSwitches: - Custom: /allusers -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: hellodigua.ChatLab +PackageVersion: 0.18.2 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 5c93c6d5-cfd9-53ea-a37a-26c1e3d35c8d +ReleaseDate: 2026-04-26 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/ChatLab/ChatLab/releases/download/v0.18.2/ChatLab-0.18.2-setup.exe + InstallerSha256: B43381F26E22A343377F8913469948D9BE6C19B46C913A508A16D253F9E6A54D + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/ChatLab/ChatLab/releases/download/v0.18.2/ChatLab-0.18.2-setup.exe + InstallerSha256: B43381F26E22A343377F8913469948D9BE6C19B46C913A508A16D253F9E6A54D + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.locale.en-US.yaml b/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.locale.en-US.yaml index 1c00938da42e..660d08a6fc70 100644 --- a/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.locale.en-US.yaml +++ b/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.locale.en-US.yaml @@ -1,35 +1,35 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: hellodigua.ChatLab -PackageVersion: 0.18.2 -PackageLocale: en-US -Publisher: digua -PublisherUrl: https://digua.moe/ -PublisherSupportUrl: https://github.com/hellodigua/ChatLab/issues -PackageName: ChatLab -PackageUrl: https://chatlab.fun/ -License: AGPL-3.0 -LicenseUrl: https://github.com/hellodigua/ChatLab/blob/HEAD/LICENSE -Copyright: Copyright © 2026 ChatLab -ShortDescription: 'A Local-first chat analysis tool: Relive your social memories powered by SQL and AI Agents.' -Description: |- - ChatLab is a free, open-source, and local-first application dedicated to analyzing chat records. Through an AI Agent and a flexible SQL engine, you can freely dissect, query, and even reconstruct your social data. - We refuse to upload your privacy to the cloud; instead, we bring powerful analytics directly to your computer. - Currently supported: Chat record analysis for LINE, WeChat, QQ, WhatsApp, Instagram and Discord. Upcoming support: Messenger, iMessage. - The project is still in early iteration, so there are many bugs and unfinished features. If you encounter any issues, feel free to provide feedback. - Core Features - - 🚀 Ultimate Performance: Utilizing stream computing and multi-threaded parallel architecture, it maintains fluid interaction and response even with millions of chat records. - - 🔒 Privacy Protection: Chat records and configurations are stored in your local database, and all analysis is performed locally (with the exception of AI features). - - 🤖 Intelligent AI Agent: Integrated with 10+ Function Calling tools and supporting dynamic scheduling to deeply excavate interesting insights from chat records. - - 📊 Multi-dimensional Data Visualization: Provides intuitive analysis charts for activity trends, time distribution patterns, member rankings, and more. - - 🧩 Format Standardization: Through a powerful data abstraction layer, it bridges the format differences between various chat applications, allowing any chat records to be analyzed. -Tags: -- chat -- chat-records -ReleaseNotesUrl: https://github.com/ChatLab/ChatLab/releases/tag/v0.18.2 -Documentations: -- DocumentLabel: User Guide - DocumentUrl: https://chatlab.fun/usage/how-to-export.html -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: hellodigua.ChatLab +PackageVersion: 0.18.2 +PackageLocale: en-US +Publisher: digua +PublisherUrl: https://digua.moe/ +PublisherSupportUrl: https://github.com/hellodigua/ChatLab/issues +PackageName: ChatLab +PackageUrl: https://chatlab.fun/ +License: AGPL-3.0 +LicenseUrl: https://github.com/hellodigua/ChatLab/blob/HEAD/LICENSE +Copyright: Copyright © 2026 ChatLab +ShortDescription: 'A Local-first chat analysis tool: Relive your social memories powered by SQL and AI Agents.' +Description: |- + ChatLab is a free, open-source, and local-first application dedicated to analyzing chat records. Through an AI Agent and a flexible SQL engine, you can freely dissect, query, and even reconstruct your social data. + We refuse to upload your privacy to the cloud; instead, we bring powerful analytics directly to your computer. + Currently supported: Chat record analysis for LINE, WeChat, QQ, WhatsApp, Instagram and Discord. Upcoming support: Messenger, iMessage. + The project is still in early iteration, so there are many bugs and unfinished features. If you encounter any issues, feel free to provide feedback. + Core Features + - 🚀 Ultimate Performance: Utilizing stream computing and multi-threaded parallel architecture, it maintains fluid interaction and response even with millions of chat records. + - 🔒 Privacy Protection: Chat records and configurations are stored in your local database, and all analysis is performed locally (with the exception of AI features). + - 🤖 Intelligent AI Agent: Integrated with 10+ Function Calling tools and supporting dynamic scheduling to deeply excavate interesting insights from chat records. + - 📊 Multi-dimensional Data Visualization: Provides intuitive analysis charts for activity trends, time distribution patterns, member rankings, and more. + - 🧩 Format Standardization: Through a powerful data abstraction layer, it bridges the format differences between various chat applications, allowing any chat records to be analyzed. +Tags: +- chat +- chat-records +ReleaseNotesUrl: https://github.com/ChatLab/ChatLab/releases/tag/v0.18.2 +Documentations: +- DocumentLabel: User Guide + DocumentUrl: https://chatlab.fun/usage/how-to-export.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.locale.zh-CN.yaml b/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.locale.zh-CN.yaml index 8bd54639e679..4b9bdd85b91a 100644 --- a/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.locale.zh-CN.yaml +++ b/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.locale.zh-CN.yaml @@ -1,31 +1,31 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: hellodigua.ChatLab -PackageVersion: 0.18.2 -PackageLocale: zh-CN -PackageUrl: https://chatlab.fun/cn/ -ShortDescription: 本地化的聊天记录分析工具,通过 SQL 和 AI Agent 回顾你的社交记忆。 -Description: |- - ChatLab 是一个免费、开源、本地化的,专注于分析聊天记录的应用。通过 AI Agent 和灵活的 SQL 引擎,你可以自由地拆解、查询甚至重构你的社交数据。 - 目前已支持: WhatsApp、LINE、微信、QQ、Discord、Instagram 的聊天记录分析,即将支持: iMessage、Messenger、Kakao Talk。 - 核心特性 - - 🚀 极致性能:使用流式计算与多线程并行架构,就算是百万条级别的聊天记录,依然拥有丝滑交互和响应。 - - 🔒 保护隐私:聊天记录和配置都存在你的本地数据库,所有分析都在本地进行(AI 功能例外)。 - - 🤖 智能 AI Agent:集成 10+ Function Calling 工具,支持动态调度,深度挖掘聊天记录中的更多有趣。 - - 📊 多维数据可视化:提供活跃度趋势、时间规律分布、成员排行等多个维度的直观分析图表。 - - 🧩 格式标准化:通过强大的数据抽象层,抹平不同聊天软件的格式差异,任何聊天记录都能分析。 -Tags: -- 聊天 -- 聊天记录 -ReleaseNotes: |- - What's New - This release adds session type filters for subscriptions, paginated remote session discovery, and configurable per-request message limits. - 更新内容 - 新增订阅类型选择、远程会话分页发现与每次拉取条数配置。 -ReleaseNotesUrl: https://github.com/hellodigua/ChatLab/releases/tag/v0.9.3 -Documentations: -- DocumentLabel: 用户手册 - DocumentUrl: https://chatlab.fun/cn/usage/how-to-export.html -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: hellodigua.ChatLab +PackageVersion: 0.18.2 +PackageLocale: zh-CN +PackageUrl: https://chatlab.fun/cn/ +ShortDescription: 本地化的聊天记录分析工具,通过 SQL 和 AI Agent 回顾你的社交记忆。 +Description: |- + ChatLab 是一个免费、开源、本地化的,专注于分析聊天记录的应用。通过 AI Agent 和灵活的 SQL 引擎,你可以自由地拆解、查询甚至重构你的社交数据。 + 目前已支持: WhatsApp、LINE、微信、QQ、Discord、Instagram 的聊天记录分析,即将支持: iMessage、Messenger、Kakao Talk。 + 核心特性 + - 🚀 极致性能:使用流式计算与多线程并行架构,就算是百万条级别的聊天记录,依然拥有丝滑交互和响应。 + - 🔒 保护隐私:聊天记录和配置都存在你的本地数据库,所有分析都在本地进行(AI 功能例外)。 + - 🤖 智能 AI Agent:集成 10+ Function Calling 工具,支持动态调度,深度挖掘聊天记录中的更多有趣。 + - 📊 多维数据可视化:提供活跃度趋势、时间规律分布、成员排行等多个维度的直观分析图表。 + - 🧩 格式标准化:通过强大的数据抽象层,抹平不同聊天软件的格式差异,任何聊天记录都能分析。 +Tags: +- 聊天 +- 聊天记录 +ReleaseNotes: |- + What's New + This release adds session type filters for subscriptions, paginated remote session discovery, and configurable per-request message limits. + 更新内容 + 新增订阅类型选择、远程会话分页发现与每次拉取条数配置。 +ReleaseNotesUrl: https://github.com/hellodigua/ChatLab/releases/tag/v0.9.3 +Documentations: +- DocumentLabel: 用户手册 + DocumentUrl: https://chatlab.fun/cn/usage/how-to-export.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.yaml b/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.yaml index 6c0dc0b39e19..ce2e96325ec1 100644 --- a/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.yaml +++ b/manifests/h/hellodigua/ChatLab/0.18.2/hellodigua.ChatLab.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: hellodigua.ChatLab -PackageVersion: 0.18.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: hellodigua.ChatLab +PackageVersion: 0.18.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.8/IDMComputerSolutions,Inc.UltraEdit.installer.yaml b/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.8/IDMComputerSolutions,Inc.UltraEdit.installer.yaml deleted file mode 100644 index c5819e5fd1da..000000000000 --- a/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.8/IDMComputerSolutions,Inc.UltraEdit.installer.yaml +++ /dev/null @@ -1,54 +0,0 @@ -# Created with YamlCreate.ps1 v2.7.1 $debug=QUSU.CRLF.7-5-4.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: IDMComputerSolutions,Inc.UltraEdit -PackageVersion: 32.2.0.8 -InstallerType: exe -InstallerSwitches: - Silent: /S /SUPPRESSMSGBOXES - SilentWithProgress: /S /SUPPRESSMSGBOXES -ProductCode: '{AFFE5F64-3248-41E9-96AE-8B475F6EFAB3}' -ReleaseDate: 2026-01-29 -Installers: -- InstallerLocale: zh-TW - Architecture: x64 - InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_chinese_traditional_64.exe - InstallerSha256: BEAB62D08BDFC05A83FA8A4B442D500778E9CE5FFABA6591692EE05E78FCFBF6 -- InstallerLocale: zh-CN - Architecture: x64 - InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_chinese_64.exe - InstallerSha256: A74C928BBF4AF8FAD2D994DED6B0A5946E88A64258C727EB3C5D04A41109C87D -- InstallerLocale: pt-BR - Architecture: x64 - InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_portuguese_64.exe - InstallerSha256: C253DFA4A3AC856DC7AFD82FC6745D23A6353C7FBDA79E29553984A3E46B11F7 -- InstallerLocale: ko-KR - Architecture: x64 - InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_korean_64.exe - InstallerSha256: FFF39A677A0A4C282BCCAE6A008A7C06A3865E6E8FE4E1810DE0EFA9EC3E1202 -- InstallerLocale: ja-JP - Architecture: x64 - InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_japanese_64.exe - InstallerSha256: 4AB170A977A164B0713B95571AE2A44AB5AB7DA8E1BA4BD8E94366725EC1C19E -- InstallerLocale: it-IT - Architecture: x64 - InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_italian_64.exe - InstallerSha256: 523810B388745EA7784BED81F656D19C4C51146EB91DF0E43CB1C2A115A834DC -- InstallerLocale: fr-FR - Architecture: x64 - InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_french_64.exe - InstallerSha256: A11D003CE98EBBB6BBEF515B1348722224EF5E98CC1F9B55150EF868E27BEA7A -- InstallerLocale: es-ES - Architecture: x64 - InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_spanish_64.exe - InstallerSha256: E9FCF47EEC158A3308D5B102FEEFAB32038B045B008769E89F0E59CA80B92EF0 -- InstallerLocale: en-US - Architecture: x64 - InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_allinone.exe - InstallerSha256: A738322123B719614F88DA3FDD3F04859BA5BB1A93DD078AF61341B16D6D6BCB -- InstallerLocale: de-DE - Architecture: x64 - InstallerUrl: https://downloads.ultraedit.com/main/ue/win/ue_german_64.exe - InstallerSha256: BBFD06E9E2E456E8EE646D83E6FE9EBDEF5095B27F0D63A92954E5526C87B31A -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.8/IDMComputerSolutions,Inc.UltraEdit.locale.en-US.yaml b/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.8/IDMComputerSolutions,Inc.UltraEdit.locale.en-US.yaml deleted file mode 100644 index aeb4ff2042f9..000000000000 --- a/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.8/IDMComputerSolutions,Inc.UltraEdit.locale.en-US.yaml +++ /dev/null @@ -1,72 +0,0 @@ -# Created with YamlCreate.ps1 v2.7.1 $debug=QUSU.CRLF.7-5-4.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: IDMComputerSolutions,Inc.UltraEdit -PackageVersion: 32.2.0.8 -PackageLocale: en-US -Publisher: IDM Computer Solutions, Inc. -PublisherUrl: https://www.ultraedit.com/company/about-us/ -PublisherSupportUrl: https://www.ultraedit.com/products/ultraedit/licenses-and-faqs/ -PrivacyUrl: https://www.ideracorp.com/Legal/PrivacyShield -Author: Ian D. Mead -PackageName: UltraEdit -PackageUrl: https://www.ultraedit.com/downloads/ultraedit-download-thank-you/ -License: Proprietary -LicenseUrl: https://www.ideracorp.com/legal/UltraEdit -Copyright: © Copyright 2025, All Rights Reserved -CopyrightUrl: https://www.ultraedit.com/#:~:text=%C2%A9%20Copyright%202025%2C%20All%20Rights%20Reserved -ShortDescription: UltraEdit is the most flexible, powerful, and secure text editor. -Description: > - UltraEdit is the powerful text editor built for developers, data wranglers, and IT pros handling - large files and complex tasks. -Moniker: ultraedit -ReleaseNotes: |- - - Features and enhancements - - Search and regular expression live mode - - Result selection updates as you type - - Find what text control provides regex syntax feedback - - Background color changes to indicate valid/invalid regular expression - - EDI Wrap/Unwrap convenience functions - - New EDI Functions dropdown in the ribbon (Coding->Formatting) - - Unwrap raw EDI data for easier reading, editing, and correction - - Wrap corrected EDI data to conform to transmission standards - - Other notable quality improvements - - Improved: Column mode with proportional and fixed-width fonts - - Tab sizing/handling - - Text selection - - General editing - - Improved: Product stability on startup with certain configurations - - Added: Support for OpenSSH format private key for SFTP - - Updated: Default language template files with minor additions and corrections - - Updated: Default tags list with minor additions and corrections - - Enhanced: Make context menu work in FTP open/save dialogs when clicking below directory listing - - Fixed: Lines at end of file seem to disappear after using ALT+SUBTRACT - - Fixed: File name is replaced by selected folder name when navigating Save to FTP dialog - - Fixed: Unable to connect to legacy mainframe server - - Fixed: Hex Copy Selected View not working - - Fixed: “Invalid data received from remote server” error with FTP - - Fixed: Customer cannot connect via SFTP - - Fixed: Cannot load a macro containing JSONFormatDocument - - Fixed: Hang/crashes when trying to open large file from Z/OS mainframe - - Fixed: Sorting of different columns when TABs exist in document - - Fixed: Cursor is not displayed as expected from active line/column highlighting - - Fixed: Line/column position is indicated incorrectly in status bar in lines with tabs - - Fixed: FTP log window not shown when working with only Cloud Storage accounts - - Fixed: FTP Browser deleting folder from remote folder tree, succeeds, but does not remove it from - the tree control - - Fixed: FTP Browser deleting folder from remote file list does not remove folder from remote - directory tree - - Fixed: “&” is shown as \u0026 in folder name in FTP Open dialog - - Fixed: Output window erroneously shown when connecting using FTP Open - - Fixed: Selection shifts unexpectedly after editing & saving - - Fixed: Column number indicated in ruler does not match line/col position shown in status bar - - Fixed: SSH/telnet console missing tab icons - - Fixed: SSH/Telnet console per account font setting - - Fixed: SSH/Telnet console tab text spacing and alignment -ReleaseNotesUrl: https://www.ultraedit.com/products/ultraedit/latest-changes/#:~:text=UltraEdit%202025.2 -PurchaseUrl: https://www.ultraedit.com/pricing -Documentations: -- DocumentLabel: UltraEdit text editor wiki - DocumentUrl: https://wiki.ultraedit.com/Main_Page -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.8/IDMComputerSolutions,Inc.UltraEdit.yaml b/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.8/IDMComputerSolutions,Inc.UltraEdit.yaml deleted file mode 100644 index 72592b93528e..000000000000 --- a/manifests/i/IDMComputerSolutions,Inc/UltraEdit/32.2.0.8/IDMComputerSolutions,Inc.UltraEdit.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with YamlCreate.ps1 v2.7.1 $debug=QUSU.CRLF.7-5-4.Win32NT -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: IDMComputerSolutions,Inc.UltraEdit -PackageVersion: 32.2.0.8 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 diff --git a/manifests/i/IcecreamApps/PDFCandy/3.15/IcecreamApps.PDFCandy.installer.yaml b/manifests/i/IcecreamApps/PDFCandy/3.15/IcecreamApps.PDFCandy.installer.yaml deleted file mode 100644 index ab76a767b6b4..000000000000 --- a/manifests/i/IcecreamApps/PDFCandy/3.15/IcecreamApps.PDFCandy.installer.yaml +++ /dev/null @@ -1,39 +0,0 @@ -# Automatically updated by the winget bot at 2025/Sep/03 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: IcecreamApps.PDFCandy -PackageVersion: "3.15" -InstallerLocale: en-US -MinimumOSVersion: 10.0.0.0 -InstallerType: inno -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -FileExtensions: -- bmp -- doc -- docx -- epub -- fb2 -- html -- jpg -- mobi -- ods -- odt -- pdf -- png -- ppt -- pptx -- rtf -- tiff -- xls -- xlsx -Installers: -- Architecture: x86 - InstallerUrl: https://downloadc.icecreamapps.com/pdfcandy_setup.exe - InstallerSha256: 7B2F5B8BF24D405BC926EA06AA4864F148D6FADA929401FA8491E774A0E5B9F8 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/i/IcecreamApps/PDFCandy/3.15/IcecreamApps.PDFCandy.locale.en-US.yaml b/manifests/i/IcecreamApps/PDFCandy/3.15/IcecreamApps.PDFCandy.locale.en-US.yaml deleted file mode 100644 index 0df6f7f57c93..000000000000 --- a/manifests/i/IcecreamApps/PDFCandy/3.15/IcecreamApps.PDFCandy.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Automatically updated by the winget bot at 2025/Sep/03 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: IcecreamApps.PDFCandy -PackageVersion: "3.15" -PackageLocale: en-US -Publisher: Icecream Apps -PublisherUrl: https://icecreamapps.com/ -PublisherSupportUrl: https://icecreamapps.com/support.html -PrivacyUrl: https://icecreamapps.com/privacypolicy.html -Author: Icecream Apps, Ltd. -PackageName: PDF Candy Desktop -PackageUrl: https://pdfcandy.com -License: Proprietary -LicenseUrl: https://pdfcandy.com/terms-of-use.html -Copyright: Copyright (c) 2016-2021 PDF Candy. All rights reserved. -ShortDescription: PDF Candy Desktop is a versatile tool that enables you to convert files from PDF to various supported formats. -Description: PDF Candy Desktop is a versatile tool that enables you to convert files from PDF to various supported formats (PDF to DOC, PDF to JPG, etc), convert documents, ebooks and images to PDF, merge PDF, split PDF, extract images and text from PDF, edit PDF metadata, protect PDF and unlock password-protected PDF files. Most modes support processing files in a bulk. All these features are available through modern and user-friendly interface. -Moniker: pdfcandy -Tags: -- converter -- pdf -- pdf-editor -- unlocker -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/i/IcecreamApps/PDFCandy/3.15/IcecreamApps.PDFCandy.yaml b/manifests/i/IcecreamApps/PDFCandy/3.15/IcecreamApps.PDFCandy.yaml deleted file mode 100644 index def26179f496..000000000000 --- a/manifests/i/IcecreamApps/PDFCandy/3.15/IcecreamApps.PDFCandy.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2025/Sep/03 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: IcecreamApps.PDFCandy -PackageVersion: "3.15" -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.installer.yaml b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.installer.yaml new file mode 100644 index 000000000000..1439822f0a4f --- /dev/null +++ b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.installer.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: IkiruPeople.VoyagerInfinitySaaSClient +PackageVersion: 5.36.14.0 +InstallerType: burn +Scope: user +UpgradeBehavior: install +Protocols: +- voyagerinfinitylauncher +Installers: +- Architecture: x86 + InstallerUrl: https://we1infinitylivestorage.blob.core.windows.net/infinityclientdownloads/5.36.14.0/InfinityClientSetupSaaS.exe + InstallerSha256: D872697D0BA7887F21746345F8FCEE64DDD2C6FB79D07AA959D16C6ED0DC3E9E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.locale.en-US.yaml b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.locale.en-US.yaml new file mode 100644 index 000000000000..2bfabb9be5e3 --- /dev/null +++ b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: IkiruPeople.VoyagerInfinitySaaSClient +PackageVersion: 5.36.14.0 +PackageLocale: en-US +Publisher: Voyager Software +PublisherUrl: https://customers.voyagersoftware.com/ +PublisherSupportUrl: https://www.voyagersoftware.com/contact-us/ +PrivacyUrl: https://customers.voyagersoftware.com/privacy-policy.html +Author: Ikiru People Ltd +PackageName: Voyager Software Infinity SaaS Client +PackageUrl: https://customers.voyagersoftware.com/general/download-infinity.html +License: Proprietary +Copyright: Copyright © 2026 Voyager Software Ltd +ShortDescription: The dedicated recruitment software and CRM for staffing agencies of all sizes. +Description: |- + Voyager Infinity is the dedicated recruitment software and CRM for temporary, permanent, and contract staffing agencies of all sizes – including Infinity Copilot, our ever evolving AI tool to help your recruitment efforts! + From education to health and social care recruitment, construction to hospitality recruitment, driver to technical & engineering recruitment, and many other sectors, our recruitment software helps you get your job done more efficiently and grow your revenue faster. +Tags: +- recruitment +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.locale.zh-CN.yaml b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.locale.zh-CN.yaml new file mode 100644 index 000000000000..112795f8dd9c --- /dev/null +++ b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.locale.zh-CN.yaml @@ -0,0 +1,15 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: IkiruPeople.VoyagerInfinitySaaSClient +PackageVersion: 5.36.14.0 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 专为各类规模招聘机构打造的招聘软件与客户关系管理系统。 +Description: |- + Voyager Infinity 是专为各类规模临时工、长期工及合同工招聘机构打造的招聘软件与客户关系管理系统——内含持续进化的 AI 助手 Infinity Copilot,助力您的招聘事业! + 从教育到医疗护理招聘,建筑到酒店业招聘,司机到技术工程招聘乃至更多领域,我们的招聘软件助您高效完成工作,加速营收增长。 +Tags: +- 招聘 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.yaml b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.yaml new file mode 100644 index 000000000000..ba5a6d0f7655 --- /dev/null +++ b/manifests/i/IkiruPeople/VoyagerInfinitySaaSClient/5.36.14.0/IkiruPeople.VoyagerInfinitySaaSClient.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: IkiruPeople.VoyagerInfinitySaaSClient +PackageVersion: 5.36.14.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/IntegrIT/Hackolade/8.11.1/IntegrIT.Hackolade.installer.yaml b/manifests/i/IntegrIT/Hackolade/8.11.1/IntegrIT.Hackolade.installer.yaml new file mode 100644 index 000000000000..dec22e9095a7 --- /dev/null +++ b/manifests/i/IntegrIT/Hackolade/8.11.1/IntegrIT.Hackolade.installer.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: IntegrIT.Hackolade +PackageVersion: 8.11.1 +InstallerType: inno +Scope: machine +Protocols: +- hcks +ProductCode: '{6BD03139-BBF4-44E0-ABA3-6D0461958CEC}_is1' +ReleaseDate: 2026-05-08 +Installers: +- Architecture: x64 + InstallerUrl: https://s3-eu-west-1.amazonaws.com/hackolade/previous/v8.11.1/Hackolade-win64-setup-signed.exe + InstallerSha256: 840C17EC94C44C6F4EAA9922338CF6AC8548576C2BA6743396D38373D2A5BA21 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IntegrIT/Hackolade/8.11.1/IntegrIT.Hackolade.locale.en-US.yaml b/manifests/i/IntegrIT/Hackolade/8.11.1/IntegrIT.Hackolade.locale.en-US.yaml new file mode 100644 index 000000000000..d2320aa80515 --- /dev/null +++ b/manifests/i/IntegrIT/Hackolade/8.11.1/IntegrIT.Hackolade.locale.en-US.yaml @@ -0,0 +1,54 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: IntegrIT.Hackolade +PackageVersion: 8.11.1 +PackageLocale: en-US +Publisher: Hackolade +PublisherUrl: https://hackolade.com/ +PublisherSupportUrl: https://hackolade.com/help/index.html +PrivacyUrl: https://hackolade.com/privacy.html +Author: IntegrIT SA/NV +PackageName: Hackolade +PackageUrl: https://hackolade.com/download.html +License: Proprietary +LicenseUrl: https://hackolade.com/eulas.html +Copyright: Copyright © 2016-2026 Hackolade. All rights reserved. +CopyrightUrl: https://hackolade.com/eulas.html +ShortDescription: Polyglot Data Modeling for SQL and NoSQL databases, APIs, and storage formats +Description: |- + Hackolade Studio is an intuitive yet powerful application to perform the visually data modeling and schema design of many SQL and NoSQL databases, APIS, and storage formats. + Hackolade Studio combines the graphical representation of collections in an Entity Relationship Diagram, with the graphical representation of the JSON Schema definition of each collection in a hierarchical schema view. Together, these graphical representations provide the schema model for data-at-rest and data-in-motion, plus the documentation of that model. The application is specifically designed around the powerful nature of JSON nested sub-objects and denormalization. + The software facilitates the work of, and the dialog between analysts, architects, designers, developers, testers, DBAs, and operators of systems that are based on such technologies. It also can generate schema scripts and documentation in a variety of machine-readable formats (DDLs, JSON Schema, Avro, Parquet, Protobuf, ...) as well as database instances, or human-readable formats such as HTML, Markdown, and PDF reports. + Instead of having to find data structures tacitly described in the application code, the creation of a database model helps to evaluate design options beforehand, think through the implications of different alternatives, and recognize potential hurdles before committing sizable amounts of development effort. A database model helps plan ahead, in order to minimize later rework. In the end, the modeling process accelerates development, increases quality of the application, and reduces execution risks. +Tags: +- database +- db +- modeling +ReleaseNotes: |- + - DBML: added support for reverse-engineering of TablePartial + - dbt: enabled data tests, whether package-based or custom + - dbt: added support for forward-engineering of custom YAML fragments for additional dbt data tests at the column level + - dbt: added support for forward-engineering of 4 built-in data tests at the column level + - dbt: enabled custom header and footer injection in forward-engineering for integration with CI/CD pipelines and support of project-specific configurations + - dbt: added new optional arguments in Command-Line Interface for generating data tests from constraints + - ERD: enhanced resize box behavior to ensure all attribute names are fully visible, including post-reverse-engineering processes + - Excel forward- and reverse-engineering: added support for the pipe "|" character + - Glossaries: ensured transitive inheritance of bound terms for external references and Polyglot derived objects (more than 1 level). + - JSON Schema: enhanced reverse-engineering multi-type fields in the example keyword + - Workgroup Open From: added support for opening larger GitHub files (up to 100 MB) + - Workgroup Open From: improved error handling for files exceeding 25 MB during Save To operations. + - Workgroup: added the required organization in Azure DevOps API URL calls + - Workgroup: enhanced authentication with Bitbucket Server regular API tokens by requiring a username for validation via the REST user endpoint + - CosmosDB-with-Gremlin-API, CosmosDB-with-Mongo-API, CosmosDB-with-SQL-API, Hive: updated axios, basic-ftp, thrift, and uuid libraries + - Oracle: avoided double carriage return (\r\r) in scripts on Windows + - PostgreSQL: added v18.x to list of versions +ReleaseNotesUrl: https://hackolade.com/versionInfo/ReadMe.txt +PurchaseUrl: https://hackolade.com/pricing.html +Documentations: +- DocumentLabel: Videos + DocumentUrl: https://hackolade.com/videos.html +- DocumentLabel: FAQ + DocumentUrl: https://hackolade.com/help/FAQandtroubleshooting.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IntegrIT/Hackolade/8.11.1/IntegrIT.Hackolade.locale.zh-CN.yaml b/manifests/i/IntegrIT/Hackolade/8.11.1/IntegrIT.Hackolade.locale.zh-CN.yaml new file mode 100644 index 000000000000..05ab83023a1d --- /dev/null +++ b/manifests/i/IntegrIT/Hackolade/8.11.1/IntegrIT.Hackolade.locale.zh-CN.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: IntegrIT.Hackolade +PackageVersion: 8.11.1 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 涵盖 SQL 与 NoSQL 数据库、API 及存储格式的多语言数据建模 +Description: |- + Hackolade Studio 是一款直观而强大的应用程序,用于对多种 SQL 和 NoSQL 数据库、API 及存储格式进行可视化数据建模与模式设计。 + Hackolade Studio 将实体关系图中集合的图形化表示,与层次化模式视图中每个集合的 JSON Schema 定义图形化表示相结合。这些图形化表示共同构成了静态数据和动态数据的模式模型,并附带该模型的文档说明。该应用专门围绕 JSON 嵌套子对象和非规范化的强大特性进行设计。 + 该软件促进了基于此类技术的系统分析师、架构师、设计师、开发人员、测试人员、数据库管理员和运维人员之间的工作协作与对话。它还能生成多种机器可读格式(DDL、JSON Schema、Avro、Parquet、Protobuf 等)的模式脚本和文档,以及数据库实例;同时支持 HTML、Markdown 和 PDF 报告等人可读格式的输出。 + 通过创建数据库模型,用户无需从应用程序代码中隐式推导数据结构,即可预先评估设计方案、深入思考不同替代方案的影响,并在投入大量开发工作前识别潜在障碍。数据库模型有助于提前规划,从而最大限度减少后期返工。最终,建模过程能加速开发进度、提升应用质量并降低实施风险。 +Tags: +- 建模 +- 数据库 +Documentations: +- DocumentLabel: 视频 + DocumentUrl: https://hackolade.com/videos.html +- DocumentLabel: 常见问题 + DocumentUrl: https://hackolade.com/help/FAQandtroubleshooting.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IntegrIT/Hackolade/8.11.1/IntegrIT.Hackolade.yaml b/manifests/i/IntegrIT/Hackolade/8.11.1/IntegrIT.Hackolade.yaml new file mode 100644 index 000000000000..583ee6115fda --- /dev/null +++ b/manifests/i/IntegrIT/Hackolade/8.11.1/IntegrIT.Hackolade.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: IntegrIT.Hackolade +PackageVersion: 8.11.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.installer.yaml b/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.installer.yaml index 5601ec57d973..26219c9cd0d5 100644 --- a/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.installer.yaml +++ b/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.installer.yaml @@ -1,4 +1,4 @@ -# Created with komac v2.16.0 +# Automatically updated by the winget bot at 2026/May/07 # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Iterative.DVC @@ -16,6 +16,6 @@ ElevationRequirement: elevatesSelf Installers: - Architecture: x86 InstallerUrl: https://dvc.org/download/win/dvc-3.67.1 - InstallerSha256: 058810E299EACDEA033336EBC3BFFE886262D3C31B4523539122C3AA4C1BB955 + InstallerSha256: 107AE69CB3E9F34A5674FF9F4C5F5F0A5A2EA68E910C70D51A1AB96B0FD705A3 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.locale.en-US.yaml b/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.locale.en-US.yaml index ad71bcb5c618..afc46f5a5941 100644 --- a/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.locale.en-US.yaml +++ b/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with komac v2.16.0 +# Automatically updated by the winget bot at 2026/May/07 # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Iterative.DVC diff --git a/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.yaml b/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.yaml index 0503b956b57d..d4eda6243ee8 100644 --- a/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.yaml +++ b/manifests/i/Iterative/DVC/3.67.1/Iterative.DVC.yaml @@ -1,4 +1,4 @@ -# Created with komac v2.16.0 +# Automatically updated by the winget bot at 2026/May/07 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Iterative.DVC diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.33/IvanCharapanau.Harbor.installer.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.33/IvanCharapanau.Harbor.installer.yaml index 9e19053bf5f6..b43ad38429d3 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.33/IvanCharapanau.Harbor.installer.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.33/IvanCharapanau.Harbor.installer.yaml @@ -1,29 +1,29 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.33 -UpgradeBehavior: install -ReleaseDate: 2026-01-03 -Installers: -- Architecture: x64 - InstallerType: nullsoft - Scope: user - InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.33/Harbor_0.3.33_x64-setup.exe - InstallerSha256: 1D3582F54EB1092E38895B052DB6EF9CF98BD7B0F727B927A5E2C9B286EB3FC4 - Dependencies: - PackageDependencies: - - PackageIdentifier: Microsoft.EdgeWebView2Runtime - ProductCode: Harbor -- Architecture: x64 - InstallerType: wix - Scope: machine - InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.33/Harbor_0.3.33_x64_en-US.msi - InstallerSha256: 150CBA3A336A596481B3AB78369D999D8CB483433AC361E77D771B7FFC1FB068 - InstallerSwitches: - InstallLocation: INSTALLDIR="" - ProductCode: '{8638EB05-A354-4D1D-B35F-5B0D27AAA4BE}' - AppsAndFeaturesEntries: - - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.33 +UpgradeBehavior: install +ReleaseDate: 2026-01-03 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.33/Harbor_0.3.33_x64-setup.exe + InstallerSha256: 454D78FBA648F596CAB0CF17E1C7179D4BD713562E9FC68240C6ED11DBFED131 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.EdgeWebView2Runtime + ProductCode: Harbor +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.33/Harbor_0.3.33_x64_en-US.msi + InstallerSha256: 58F6A8701649F883B024D7379C706D434959ABEDA308645F116DE95489B876A7 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{E9CF8F9D-B021-4AFE-91F0-D909F0BD740D}' + AppsAndFeaturesEntries: + - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.33/IvanCharapanau.Harbor.locale.en-US.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.33/IvanCharapanau.Harbor.locale.en-US.yaml index 25692d6a3e43..89e0e355ce05 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.33/IvanCharapanau.Harbor.locale.en-US.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.33/IvanCharapanau.Harbor.locale.en-US.yaml @@ -1,29 +1,29 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.33 -PackageLocale: en-US -Publisher: harbor -PublisherUrl: https://av.codes/ -PublisherSupportUrl: https://github.com/av/harbor/issues -Author: Ivan Charapanau -PackageName: Harbor -PackageUrl: https://github.com/av/harbor -License: Apache-2.0 -LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE -ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. -Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. -Tags: -- ai -- large-language-model -- llm -- ollama -ReleaseNotes: |- - AstrBot - Probably the easiest way to bring your local LLM into Discord/Slack and other messengers. - harbor up astrbot - Full Changelog: https://github.com/av/harbor/compare/v0.3.32...v0.3.33 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.33 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.33 +PackageLocale: en-US +Publisher: harbor +PublisherUrl: https://av.codes/ +PublisherSupportUrl: https://github.com/av/harbor/issues +Author: Ivan Charapanau +PackageName: Harbor +PackageUrl: https://github.com/av/harbor +License: Apache-2.0 +LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE +ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. +Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. +Tags: +- ai +- large-language-model +- llm +- ollama +ReleaseNotes: |- + AstrBot + Probably the easiest way to bring your local LLM into Discord/Slack and other messengers. + harbor up astrbot + Full Changelog: https://github.com/av/harbor/compare/v0.3.32...v0.3.33 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.33 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.33/IvanCharapanau.Harbor.locale.zh-CN.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.33/IvanCharapanau.Harbor.locale.zh-CN.yaml index 783ed677904e..285f91823ba2 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.33/IvanCharapanau.Harbor.locale.zh-CN.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.33/IvanCharapanau.Harbor.locale.zh-CN.yaml @@ -1,16 +1,16 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.33 -PackageLocale: zh-CN -ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 -Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 -Tags: -- llm -- ollama -- 人工智能 -- 大语言模型 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.33 -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.33 +PackageLocale: zh-CN +ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 +Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 +Tags: +- llm +- ollama +- 人工智能 +- 大语言模型 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.33 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.33/IvanCharapanau.Harbor.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.33/IvanCharapanau.Harbor.yaml index e51e4b2d0a0d..ddb316d62011 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.33/IvanCharapanau.Harbor.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.33/IvanCharapanau.Harbor.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.33 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.33 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.installer.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.installer.yaml index f10215d3f890..6a3146339201 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.installer.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.installer.yaml @@ -1,29 +1,29 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.34 -UpgradeBehavior: install -ReleaseDate: 2026-01-04 -Installers: -- Architecture: x64 - InstallerType: nullsoft - Scope: user - InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.34/Harbor_0.3.34_x64-setup.exe - InstallerSha256: 857FC8FAE3C85D58F1F7012F3DC78083719059F0A562C8B64C7EDC69FEEA3603 - Dependencies: - PackageDependencies: - - PackageIdentifier: Microsoft.EdgeWebView2Runtime - ProductCode: Harbor -- Architecture: x64 - InstallerType: wix - Scope: machine - InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.34/Harbor_0.3.34_x64_en-US.msi - InstallerSha256: 0DE486472B30BAEEE5013DF6047D719E985DB5187654F4A900EC3957CA671C54 - InstallerSwitches: - InstallLocation: INSTALLDIR="" - ProductCode: '{62AA1739-71B4-4FC1-A369-87FA146846AC}' - AppsAndFeaturesEntries: - - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.34 +UpgradeBehavior: install +ReleaseDate: 2026-01-04 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.34/Harbor_0.3.34_x64-setup.exe + InstallerSha256: 6FEDEF752D7B07AC25120292AD5BF0397370B7A89BD3726D24E5A00E9290789A + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.EdgeWebView2Runtime + ProductCode: Harbor +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.34/Harbor_0.3.34_x64_en-US.msi + InstallerSha256: AF2C4AF483E4BB98BC29DF642B7F7068A48B6DB69D0B15CEE16CBA302D01B407 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{0795D353-207A-4AE2-9FB8-9969D8BA4CC3}' + AppsAndFeaturesEntries: + - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.locale.en-US.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.locale.en-US.yaml index 34a6f4fd9c8d..38999891db85 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.locale.en-US.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.locale.en-US.yaml @@ -1,32 +1,32 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.34 -PackageLocale: en-US -Publisher: harbor -PublisherUrl: https://av.codes/ -PublisherSupportUrl: https://github.com/av/harbor/issues -Author: Ivan Charapanau -PackageName: Harbor -PackageUrl: https://github.com/av/harbor -License: Apache-2.0 -LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE -ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. -Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. -Tags: -- ai -- large-language-model -- llm -- ollama -ReleaseNotes: |- - DeerFlow - DeerFlow is a community-driven deep research framework that combines LLMs with web search, web crawling, and multi-agent workflows to generate comprehensive research reports. - harbor up deerflow - ActivePieces - activepieces is an open-source workflow automation tool that allows you to connect apps and automate workflows with AI capabilities. It provides a visual workflow builder similar to Zapier or n8n, with 200+ app connectors and built-in AI features. - harbor up activepieces - Full Changelog: https://github.com/av/harbor/compare/v0.3.33...v0.3.34 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.34 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.34 +PackageLocale: en-US +Publisher: harbor +PublisherUrl: https://av.codes/ +PublisherSupportUrl: https://github.com/av/harbor/issues +Author: Ivan Charapanau +PackageName: Harbor +PackageUrl: https://github.com/av/harbor +License: Apache-2.0 +LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE +ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. +Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. +Tags: +- ai +- large-language-model +- llm +- ollama +ReleaseNotes: |- + DeerFlow + DeerFlow is a community-driven deep research framework that combines LLMs with web search, web crawling, and multi-agent workflows to generate comprehensive research reports. + harbor up deerflow + ActivePieces + activepieces is an open-source workflow automation tool that allows you to connect apps and automate workflows with AI capabilities. It provides a visual workflow builder similar to Zapier or n8n, with 200+ app connectors and built-in AI features. + harbor up activepieces + Full Changelog: https://github.com/av/harbor/compare/v0.3.33...v0.3.34 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.34 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.locale.zh-CN.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.locale.zh-CN.yaml index a5b9241a5c56..54f8b0e46224 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.locale.zh-CN.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.locale.zh-CN.yaml @@ -1,16 +1,16 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.34 -PackageLocale: zh-CN -ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 -Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 -Tags: -- llm -- ollama -- 人工智能 -- 大语言模型 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.34 -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.34 +PackageLocale: zh-CN +ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 +Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 +Tags: +- llm +- ollama +- 人工智能 +- 大语言模型 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.34 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.yaml index 604e00172211..b41021a0c493 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.34/IvanCharapanau.Harbor.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.34 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.34 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.37/IvanCharapanau.Harbor.installer.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.37/IvanCharapanau.Harbor.installer.yaml index 28c87031e509..996d4a7a8d84 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.37/IvanCharapanau.Harbor.installer.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.37/IvanCharapanau.Harbor.installer.yaml @@ -1,26 +1,26 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.37 -UpgradeBehavior: install -ReleaseDate: 2026-01-10 -Installers: -- Architecture: x64 - InstallerType: nullsoft - Scope: user - InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.37/Harbor_0.3.37_x64-setup.exe - InstallerSha256: 06896C364AD1F6B1C9E8B416853247D11ABC1BE1E7833A4CB67DFDA94C128AD4 - ProductCode: Harbor -- Architecture: x64 - InstallerType: wix - Scope: machine - InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.37/Harbor_0.3.37_x64_en-US.msi - InstallerSha256: DFC8C75B2BAA837C1C9941888C58D74230C2D2183BF64105DD7AC5AB0851A987 - InstallerSwitches: - InstallLocation: INSTALLDIR="" - ProductCode: '{75575D19-1765-4882-BB6F-99CFE36959C9}' - AppsAndFeaturesEntries: - - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.37 +UpgradeBehavior: install +ReleaseDate: 2026-01-10 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.37/Harbor_0.3.37_x64-setup.exe + InstallerSha256: 705C086263CF67267F76B19AC06E4A5686D2A5BD99CD1C4B73221598F1E0BEF0 + ProductCode: Harbor +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.37/Harbor_0.3.37_x64_en-US.msi + InstallerSha256: FC4D53290E408A464CA79ACAEF699B015BC7C0B67538EC20AD3C2850069C33FB + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{EE40F8C8-A202-4CB2-8CF9-10C6A2C7E59E}' + AppsAndFeaturesEntries: + - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.37/IvanCharapanau.Harbor.locale.en-US.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.37/IvanCharapanau.Harbor.locale.en-US.yaml index ba3daa222e04..bfc18682d23b 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.37/IvanCharapanau.Harbor.locale.en-US.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.37/IvanCharapanau.Harbor.locale.en-US.yaml @@ -1,31 +1,31 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.37 -PackageLocale: en-US -Publisher: harbor -PublisherUrl: https://av.codes/ -PublisherSupportUrl: https://github.com/av/harbor/issues -Author: Ivan Charapanau -PackageName: Harbor -PackageUrl: https://github.com/av/harbor -License: Apache-2.0 -LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE -ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. -Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. -Tags: -- ai -- large-language-model -- llm -- ollama -ReleaseNotes: |- - Misc - - Added logprobs workflow module for Harbor Boost with interactive HTML visualization. - - Updated CLI Reference documentation to reflect harbor.sh commands. - - Fixed ask harbor link in textclip badges. - - landing service for Harbor's future landing page - Full Changelog: https://github.com/av/harbor/compare/v0.3.35...v0.3.37 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.37 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.37 +PackageLocale: en-US +Publisher: harbor +PublisherUrl: https://av.codes/ +PublisherSupportUrl: https://github.com/av/harbor/issues +Author: Ivan Charapanau +PackageName: Harbor +PackageUrl: https://github.com/av/harbor +License: Apache-2.0 +LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE +ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. +Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. +Tags: +- ai +- large-language-model +- llm +- ollama +ReleaseNotes: |- + Misc + - Added logprobs workflow module for Harbor Boost with interactive HTML visualization. + - Updated CLI Reference documentation to reflect harbor.sh commands. + - Fixed ask harbor link in textclip badges. + - landing service for Harbor's future landing page + Full Changelog: https://github.com/av/harbor/compare/v0.3.35...v0.3.37 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.37 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.37/IvanCharapanau.Harbor.locale.zh-CN.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.37/IvanCharapanau.Harbor.locale.zh-CN.yaml index dc16d7f71f3f..3d392ceafe21 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.37/IvanCharapanau.Harbor.locale.zh-CN.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.37/IvanCharapanau.Harbor.locale.zh-CN.yaml @@ -1,16 +1,16 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.37 -PackageLocale: zh-CN -ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 -Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 -Tags: -- llm -- ollama -- 人工智能 -- 大语言模型 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.37 -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.37 +PackageLocale: zh-CN +ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 +Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 +Tags: +- llm +- ollama +- 人工智能 +- 大语言模型 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.37 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.37/IvanCharapanau.Harbor.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.37/IvanCharapanau.Harbor.yaml index 10e33a2637df..3d18412dc3d3 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.37/IvanCharapanau.Harbor.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.37/IvanCharapanau.Harbor.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.37 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.37 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.38/IvanCharapanau.Harbor.installer.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.38/IvanCharapanau.Harbor.installer.yaml index 5ece91444f1c..921854020161 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.38/IvanCharapanau.Harbor.installer.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.38/IvanCharapanau.Harbor.installer.yaml @@ -1,26 +1,26 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.38 -UpgradeBehavior: install -ReleaseDate: 2026-01-17 -Installers: -- Architecture: x64 - InstallerType: nullsoft - Scope: user - InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.38/Harbor_0.3.38_x64-setup.exe - InstallerSha256: CC81C8703135E407F3CBDC4FD778BEB988C4E4CA3A2E022C02DD2688FDE8FFB0 - ProductCode: Harbor -- Architecture: x64 - InstallerType: wix - Scope: machine - InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.38/Harbor_0.3.38_x64_en-US.msi - InstallerSha256: BDB5B9C2C60D1C55ABBCA5BDA9789B37DD1C30F9AA19F81C6A4D2CBE3D8D6741 - InstallerSwitches: - InstallLocation: INSTALLDIR="" - ProductCode: '{2C7E15F2-1055-4A3F-B752-63767C2724E6}' - AppsAndFeaturesEntries: - - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.38 +UpgradeBehavior: install +ReleaseDate: 2026-01-17 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.38/Harbor_0.3.38_x64-setup.exe + InstallerSha256: 23823269AB03489694BBE9A700AB1D112A03BE029D8A6AFF7891320B121D71D5 + ProductCode: Harbor +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.38/Harbor_0.3.38_x64_en-US.msi + InstallerSha256: C74C7871C098448F5DB2C2BB472B7CFB15D9E2D9CA95B17FCCAF20DE888AB504 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{879594FE-9D2B-4C81-B524-B4123AC8996A}' + AppsAndFeaturesEntries: + - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.38/IvanCharapanau.Harbor.locale.en-US.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.38/IvanCharapanau.Harbor.locale.en-US.yaml index d1a0e506ee08..238b1aa9a112 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.38/IvanCharapanau.Harbor.locale.en-US.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.38/IvanCharapanau.Harbor.locale.en-US.yaml @@ -1,36 +1,36 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.38 -PackageLocale: en-US -Publisher: harbor -PublisherUrl: https://av.codes/ -PublisherSupportUrl: https://github.com/av/harbor/issues -Author: Ivan Charapanau -PackageName: Harbor -PackageUrl: https://github.com/av/harbor -License: Apache-2.0 -LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE -ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. -Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. -Tags: -- ai -- large-language-model -- llm -- ollama -ReleaseNotes: |- - OpenCode - AI-powered coding assistant with server API, terminal UI, and multi-provider LLM support. - harbor up opencode - Misc - - TypeScript-based compose transforms for dynamic configuration - - Update PostgreSQL data volume path in litellm compose file by @genevera in https://github.com/av/harbor/pull/208 - - Service logos added to App sidebar - - LiteLLM PostgreSQL pinned to v18 for stability - - Routines path discovery fixes - - Documentation updates for router mode in llamacpp - Full Changelog: https://github.com/av/harbor/compare/v0.3.37...v0.3.38 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.38 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.38 +PackageLocale: en-US +Publisher: harbor +PublisherUrl: https://av.codes/ +PublisherSupportUrl: https://github.com/av/harbor/issues +Author: Ivan Charapanau +PackageName: Harbor +PackageUrl: https://github.com/av/harbor +License: Apache-2.0 +LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE +ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. +Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. +Tags: +- ai +- large-language-model +- llm +- ollama +ReleaseNotes: |- + OpenCode + AI-powered coding assistant with server API, terminal UI, and multi-provider LLM support. + harbor up opencode + Misc + - TypeScript-based compose transforms for dynamic configuration + - Update PostgreSQL data volume path in litellm compose file by @genevera in https://github.com/av/harbor/pull/208 + - Service logos added to App sidebar + - LiteLLM PostgreSQL pinned to v18 for stability + - Routines path discovery fixes + - Documentation updates for router mode in llamacpp + Full Changelog: https://github.com/av/harbor/compare/v0.3.37...v0.3.38 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.38 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.38/IvanCharapanau.Harbor.locale.zh-CN.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.38/IvanCharapanau.Harbor.locale.zh-CN.yaml index 5f0e367786cb..53254f400ae4 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.38/IvanCharapanau.Harbor.locale.zh-CN.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.38/IvanCharapanau.Harbor.locale.zh-CN.yaml @@ -1,16 +1,16 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.38 -PackageLocale: zh-CN -ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 -Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 -Tags: -- llm -- ollama -- 人工智能 -- 大语言模型 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.38 -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.38 +PackageLocale: zh-CN +ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 +Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 +Tags: +- llm +- ollama +- 人工智能 +- 大语言模型 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.38 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.38/IvanCharapanau.Harbor.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.38/IvanCharapanau.Harbor.yaml index 2e4a4a32b1e1..4ff2866cf1ce 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.38/IvanCharapanau.Harbor.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.38/IvanCharapanau.Harbor.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.38 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.38 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.41/IvanCharapanau.Harbor.installer.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.41/IvanCharapanau.Harbor.installer.yaml index e903968ee747..32e21ea9a024 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.41/IvanCharapanau.Harbor.installer.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.41/IvanCharapanau.Harbor.installer.yaml @@ -1,26 +1,26 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.41 -UpgradeBehavior: install -ReleaseDate: 2026-01-30 -Installers: -- Architecture: x64 - InstallerType: nullsoft - Scope: user - InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.41/Harbor_0.3.41_x64-setup.exe - InstallerSha256: E374A4FE20574039CD0440CFF559681E7EBC7390F7BA8DA3044F41745B0B236C - ProductCode: Harbor -- Architecture: x64 - InstallerType: wix - Scope: machine - InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.41/Harbor_0.3.41_x64_en-US.msi - InstallerSha256: 2D1D45F989B7C3B3A38933F6548C0119F9784FE50774ED68D7F54E3BCB56E3E7 - InstallerSwitches: - InstallLocation: INSTALLDIR="" - ProductCode: '{DCEDB229-C0CB-4592-A210-20ABD8128695}' - AppsAndFeaturesEntries: - - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.41 +UpgradeBehavior: install +ReleaseDate: 2026-01-30 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.41/Harbor_0.3.41_x64-setup.exe + InstallerSha256: DA5045638CB7BA7A917404F8073FBCECCD4250FFE53F49C725F549133F459AA2 + ProductCode: Harbor +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/av/harbor/releases/download/v0.3.41/Harbor_0.3.41_x64_en-US.msi + InstallerSha256: ED511D384F975B4E1C24280CD6881CA91BEE5A1C0874E769A6E9552F006AE186 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{B3D87245-C790-4315-A8B3-D1924349DCAA}' + AppsAndFeaturesEntries: + - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.41/IvanCharapanau.Harbor.locale.en-US.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.41/IvanCharapanau.Harbor.locale.en-US.yaml index f664a021b374..c5850c96898d 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.41/IvanCharapanau.Harbor.locale.en-US.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.41/IvanCharapanau.Harbor.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.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.41 -PackageLocale: en-US -Publisher: harbor -PublisherUrl: https://av.codes/ -PublisherSupportUrl: https://github.com/av/harbor/issues -Author: Ivan Charapanau -PackageName: Harbor -PackageUrl: https://github.com/av/harbor -License: Apache-2.0 -LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE -ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. -Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. -Tags: -- ai -- large-language-model -- llm -- ollama -ReleaseNotes: |- - Misc - - Renamed Moltbot to OpenClaw across compose files, docs, and assets. - Full Changelog: https://github.com/av/harbor/compare/v0.3.40...v0.3.41 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.41 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.41 +PackageLocale: en-US +Publisher: harbor +PublisherUrl: https://av.codes/ +PublisherSupportUrl: https://github.com/av/harbor/issues +Author: Ivan Charapanau +PackageName: Harbor +PackageUrl: https://github.com/av/harbor +License: Apache-2.0 +LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE +ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. +Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. +Tags: +- ai +- large-language-model +- llm +- ollama +ReleaseNotes: |- + Misc + - Renamed Moltbot to OpenClaw across compose files, docs, and assets. + Full Changelog: https://github.com/av/harbor/compare/v0.3.40...v0.3.41 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.41 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.41/IvanCharapanau.Harbor.locale.zh-CN.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.41/IvanCharapanau.Harbor.locale.zh-CN.yaml index 067e6eab3d04..b333bb89bbd0 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.41/IvanCharapanau.Harbor.locale.zh-CN.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.41/IvanCharapanau.Harbor.locale.zh-CN.yaml @@ -1,16 +1,16 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.41 -PackageLocale: zh-CN -ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 -Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 -Tags: -- llm -- ollama -- 人工智能 -- 大语言模型 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.41 -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.41 +PackageLocale: zh-CN +ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 +Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 +Tags: +- llm +- ollama +- 人工智能 +- 大语言模型 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.3.41 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.3.41/IvanCharapanau.Harbor.yaml b/manifests/i/IvanCharapanau/Harbor/0.3.41/IvanCharapanau.Harbor.yaml index f15c8c177888..6ae12eb3c019 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.3.41/IvanCharapanau.Harbor.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.3.41/IvanCharapanau.Harbor.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.3.41 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.3.41 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.1/IvanCharapanau.Harbor.installer.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.1/IvanCharapanau.Harbor.installer.yaml index 0d96834cdbc1..b5f5212abd0f 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.1/IvanCharapanau.Harbor.installer.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.1/IvanCharapanau.Harbor.installer.yaml @@ -1,26 +1,26 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.1 -UpgradeBehavior: install -ReleaseDate: 2026-02-09 -Installers: -- Architecture: x64 - InstallerType: nullsoft - Scope: user - InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.1/Harbor_0.4.1_x64-setup.exe - InstallerSha256: 5623125AA965CE88FE0F379076FEF73049BBD5440DB67A72B5E7813300829FD3 - ProductCode: Harbor -- Architecture: x64 - InstallerType: wix - Scope: machine - InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.1/Harbor_0.4.1_x64_en-US.msi - InstallerSha256: BD2DC0C525B0A70C66B10B9DBE8E5C684613950237264459BCDC146BA29FB3F3 - InstallerSwitches: - InstallLocation: INSTALLDIR="" - ProductCode: '{E98B2904-F800-468D-AD96-E6843295033B}' - AppsAndFeaturesEntries: - - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.1 +UpgradeBehavior: install +ReleaseDate: 2026-02-09 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.1/Harbor_0.4.1_x64-setup.exe + InstallerSha256: 4FE9B87FBBE4CBE632169A8AB8B353894D4DF4DDA216D6603B0DBE3DF4505566 + ProductCode: Harbor +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.1/Harbor_0.4.1_x64_en-US.msi + InstallerSha256: AFF9DF325A91ABE619E0CD2CB446C7CDE1EC18EBB16C98097C698AD43251BA65 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{5633C6F6-8741-453C-88B0-349D78CB5219}' + AppsAndFeaturesEntries: + - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.1/IvanCharapanau.Harbor.locale.en-US.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.1/IvanCharapanau.Harbor.locale.en-US.yaml index dda516e18120..dba14606d7bb 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.1/IvanCharapanau.Harbor.locale.en-US.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.1/IvanCharapanau.Harbor.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.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.1 -PackageLocale: en-US -Publisher: harbor -PublisherUrl: https://av.codes/ -PublisherSupportUrl: https://github.com/av/harbor/issues -Author: Ivan Charapanau -PackageName: Harbor -PackageUrl: https://github.com/av/harbor -License: Apache-2.0 -LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE -ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. -Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. -Tags: -- ai -- large-language-model -- llm -- ollama -ReleaseNotes: |- - Misc - - Fixing incorrect CLI versioning - Full Changelog: https://github.com/av/harbor/compare/v0.4.0...v0.4.1 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.1 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.1 +PackageLocale: en-US +Publisher: harbor +PublisherUrl: https://av.codes/ +PublisherSupportUrl: https://github.com/av/harbor/issues +Author: Ivan Charapanau +PackageName: Harbor +PackageUrl: https://github.com/av/harbor +License: Apache-2.0 +LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE +ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. +Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. +Tags: +- ai +- large-language-model +- llm +- ollama +ReleaseNotes: |- + Misc + - Fixing incorrect CLI versioning + Full Changelog: https://github.com/av/harbor/compare/v0.4.0...v0.4.1 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.1/IvanCharapanau.Harbor.locale.zh-CN.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.1/IvanCharapanau.Harbor.locale.zh-CN.yaml index 493fa5ed07bb..2c9259f99811 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.1/IvanCharapanau.Harbor.locale.zh-CN.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.1/IvanCharapanau.Harbor.locale.zh-CN.yaml @@ -1,16 +1,16 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.1 -PackageLocale: zh-CN -ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 -Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 -Tags: -- llm -- ollama -- 人工智能 -- 大语言模型 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.1 -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.1 +PackageLocale: zh-CN +ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 +Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 +Tags: +- llm +- ollama +- 人工智能 +- 大语言模型 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.1 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.1/IvanCharapanau.Harbor.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.1/IvanCharapanau.Harbor.yaml index a692398c1b86..f2e05e836f3c 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.1/IvanCharapanau.Harbor.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.1/IvanCharapanau.Harbor.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.12/IvanCharapanau.Harbor.installer.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.12/IvanCharapanau.Harbor.installer.yaml index 76e997bd6637..be8f1e798ff8 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.12/IvanCharapanau.Harbor.installer.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.12/IvanCharapanau.Harbor.installer.yaml @@ -1,26 +1,26 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.12 -UpgradeBehavior: install -ReleaseDate: 2026-04-25 -Installers: -- Architecture: x64 - InstallerType: nullsoft - Scope: user - InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.12/Harbor_0.4.12_x64-setup.exe - InstallerSha256: 842FDE664F3F355A0304036CCBD574FAF68C5ED9BD712450E1F8B2FD0A94B19F - ProductCode: Harbor -- Architecture: x64 - InstallerType: wix - Scope: machine - InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.12/Harbor_0.4.12_x64_en-US.msi - InstallerSha256: 3E7EE29B323FB39A555350D6C43F29EF817F0EFAD83214BA33E1BCE637B03C71 - InstallerSwitches: - InstallLocation: INSTALLDIR="" - ProductCode: '{9AE2CBBA-9D38-4487-B2BD-4BD0D31F9FA1}' - AppsAndFeaturesEntries: - - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.12 +UpgradeBehavior: install +ReleaseDate: 2026-04-25 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.12/Harbor_0.4.12_x64-setup.exe + InstallerSha256: 7FBB083D65FA3FA92CC905FAF5D99DF38EA3D02BCC572C50618110BC8ECFD6E1 + ProductCode: Harbor +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.12/Harbor_0.4.12_x64_en-US.msi + InstallerSha256: 58547822C5A95E76ACF68D9D96BFEA05BCA094F1B51AD0B80B708FAD6A380AC5 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{ECE93308-3920-442E-B049-F6C12DEBD2EE}' + AppsAndFeaturesEntries: + - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.12/IvanCharapanau.Harbor.locale.en-US.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.12/IvanCharapanau.Harbor.locale.en-US.yaml index 36a64514d53f..da87bebaa28a 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.12/IvanCharapanau.Harbor.locale.en-US.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.12/IvanCharapanau.Harbor.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: IvanCharapanau.Harbor -PackageVersion: 0.4.12 -PackageLocale: en-US -Publisher: harbor -PublisherUrl: https://av.codes/ -PublisherSupportUrl: https://github.com/av/harbor/issues -Author: Ivan Charapanau -PackageName: Harbor -PackageUrl: https://github.com/av/harbor -License: Apache-2.0 -LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE -ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. -Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. -Tags: -- ai -- large-language-model -- llm -- ollama -ReleaseNotes: |- - Beszel - Lightweight server monitoring with Docker stats, pre-provisioned to track the Harbor host on first run. - harbor up beszel - DBHub - Universal database gateway exposed as MCP, pre-connected to Open WebUI via native MCP for zero-click chat-with-your-database. - harbor up dbhub - Misc - - Container-based test matrix runner with per-row HARBOR_HOME isolation, env-file robustness, and a git-reset hook (harbor dev test). - - New 3-pass source linter combining shellcheck, custom HARBORxxx rules, and compose validation (harbor dev lint). - - Manual integration test rewrite focused on end-user outcomes for Beszel and DBHub. - - Hardening fixes: host-user permissions, key validation, and sibling teardown across services. - - Cleared shellcheck warnings flagged by the new lint workflow. - Full Changelog: https://github.com/av/harbor/compare/v0.4.10...v0.4.12 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.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: IvanCharapanau.Harbor +PackageVersion: 0.4.12 +PackageLocale: en-US +Publisher: harbor +PublisherUrl: https://av.codes/ +PublisherSupportUrl: https://github.com/av/harbor/issues +Author: Ivan Charapanau +PackageName: Harbor +PackageUrl: https://github.com/av/harbor +License: Apache-2.0 +LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE +ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. +Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. +Tags: +- ai +- large-language-model +- llm +- ollama +ReleaseNotes: |- + Beszel + Lightweight server monitoring with Docker stats, pre-provisioned to track the Harbor host on first run. + harbor up beszel + DBHub + Universal database gateway exposed as MCP, pre-connected to Open WebUI via native MCP for zero-click chat-with-your-database. + harbor up dbhub + Misc + - Container-based test matrix runner with per-row HARBOR_HOME isolation, env-file robustness, and a git-reset hook (harbor dev test). + - New 3-pass source linter combining shellcheck, custom HARBORxxx rules, and compose validation (harbor dev lint). + - Manual integration test rewrite focused on end-user outcomes for Beszel and DBHub. + - Hardening fixes: host-user permissions, key validation, and sibling teardown across services. + - Cleared shellcheck warnings flagged by the new lint workflow. + Full Changelog: https://github.com/av/harbor/compare/v0.4.10...v0.4.12 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.12 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.12/IvanCharapanau.Harbor.locale.zh-CN.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.12/IvanCharapanau.Harbor.locale.zh-CN.yaml index ff0041fb2af4..0ada2fa936ac 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.12/IvanCharapanau.Harbor.locale.zh-CN.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.12/IvanCharapanau.Harbor.locale.zh-CN.yaml @@ -1,16 +1,16 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.12 -PackageLocale: zh-CN -ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 -Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 -Tags: -- llm -- ollama -- 人工智能 -- 大语言模型 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.12 -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.12 +PackageLocale: zh-CN +ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 +Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 +Tags: +- llm +- ollama +- 人工智能 +- 大语言模型 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.12 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.12/IvanCharapanau.Harbor.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.12/IvanCharapanau.Harbor.yaml index 1820ac650d90..052c24902868 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.12/IvanCharapanau.Harbor.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.12/IvanCharapanau.Harbor.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.12 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.12 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.13/IvanCharapanau.Harbor.installer.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.13/IvanCharapanau.Harbor.installer.yaml index f2cab2bd4e87..2e97089524c1 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.13/IvanCharapanau.Harbor.installer.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.13/IvanCharapanau.Harbor.installer.yaml @@ -1,26 +1,26 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.13 -UpgradeBehavior: install -ReleaseDate: 2026-04-26 -Installers: -- Architecture: x64 - InstallerType: nullsoft - Scope: user - InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.13/Harbor_0.4.13_x64-setup.exe - InstallerSha256: 0E3E2178B94B928579331BCF6CBEA17992290B76C9C32BC1077CA530EC1191C2 - ProductCode: Harbor -- Architecture: x64 - InstallerType: wix - Scope: machine - InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.13/Harbor_0.4.13_x64_en-US.msi - InstallerSha256: 8F17A5512ACC20954D38A3FB6BB5A0E289AC3FA8C6DAAB918B284F6B6882F1EE - InstallerSwitches: - InstallLocation: INSTALLDIR="" - ProductCode: '{F0CB8144-0A58-42FF-A436-16F4017A3344}' - AppsAndFeaturesEntries: - - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.13 +UpgradeBehavior: install +ReleaseDate: 2026-04-26 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.13/Harbor_0.4.13_x64-setup.exe + InstallerSha256: 9BC35558AD146DDCEDFBF0953352A93B00519B54E1B8FEAFA3DEE9B3CBB5236E + ProductCode: Harbor +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.13/Harbor_0.4.13_x64_en-US.msi + InstallerSha256: 232A4A9E4835C0904393EEEA3FBBDB07A44CB3DDC08F7F6B32B4C546F1EE07BA + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{E57E0CBF-AB92-4EFD-B058-11E168D46F44}' + AppsAndFeaturesEntries: + - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.13/IvanCharapanau.Harbor.locale.en-US.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.13/IvanCharapanau.Harbor.locale.en-US.yaml index 21710a4622e3..5cfbafe17d50 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.13/IvanCharapanau.Harbor.locale.en-US.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.13/IvanCharapanau.Harbor.locale.en-US.yaml @@ -1,36 +1,36 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.13 -PackageLocale: en-US -Publisher: harbor -PublisherUrl: https://av.codes/ -PublisherSupportUrl: https://github.com/av/harbor/issues -Author: Ivan Charapanau -PackageName: Harbor -PackageUrl: https://github.com/av/harbor -License: Apache-2.0 -LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE -ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. -Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. -Tags: -- ai -- large-language-model -- llm -- ollama -ReleaseNotes: |- - Unsloth Studio - No-code fine-tuning UI for the Unsloth library, with a zero-click API key bootstrap that registers Studio as an OpenAI-compatible backend across other Harbor services. - harbor up unsloth-studio - Cross-integrations ready out of the box: Open WebUI, Boost, Aider, OpenCode, Hermes, OpenClaw. - Misc - - Workspace bind mounts on 17 services now stay owned by your host user — recoverable without sudo. - - harbor up no longer errors with invalid spec when HARBOR_HF_CACHE is empty. - - unsloth notebooks now see models pulled by other Harbor services through the shared HF cache. - - langfuse analytics and queue state persist across harbor down/up. - - Aider connects to several cross-integration backends that were previously broken by a bad config mount path. - Full Changelog: https://github.com/av/harbor/compare/v0.4.12...v0.4.13 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.13 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.13 +PackageLocale: en-US +Publisher: harbor +PublisherUrl: https://av.codes/ +PublisherSupportUrl: https://github.com/av/harbor/issues +Author: Ivan Charapanau +PackageName: Harbor +PackageUrl: https://github.com/av/harbor +License: Apache-2.0 +LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE +ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. +Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. +Tags: +- ai +- large-language-model +- llm +- ollama +ReleaseNotes: |- + Unsloth Studio + No-code fine-tuning UI for the Unsloth library, with a zero-click API key bootstrap that registers Studio as an OpenAI-compatible backend across other Harbor services. + harbor up unsloth-studio + Cross-integrations ready out of the box: Open WebUI, Boost, Aider, OpenCode, Hermes, OpenClaw. + Misc + - Workspace bind mounts on 17 services now stay owned by your host user — recoverable without sudo. + - harbor up no longer errors with invalid spec when HARBOR_HF_CACHE is empty. + - unsloth notebooks now see models pulled by other Harbor services through the shared HF cache. + - langfuse analytics and queue state persist across harbor down/up. + - Aider connects to several cross-integration backends that were previously broken by a bad config mount path. + Full Changelog: https://github.com/av/harbor/compare/v0.4.12...v0.4.13 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.13 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.13/IvanCharapanau.Harbor.locale.zh-CN.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.13/IvanCharapanau.Harbor.locale.zh-CN.yaml index 30821c05c0b9..f8477b90cc05 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.13/IvanCharapanau.Harbor.locale.zh-CN.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.13/IvanCharapanau.Harbor.locale.zh-CN.yaml @@ -1,16 +1,16 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.13 -PackageLocale: zh-CN -ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 -Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 -Tags: -- llm -- ollama -- 人工智能 -- 大语言模型 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.13 -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.13 +PackageLocale: zh-CN +ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 +Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 +Tags: +- llm +- ollama +- 人工智能 +- 大语言模型 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.13 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.13/IvanCharapanau.Harbor.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.13/IvanCharapanau.Harbor.yaml index b5eb595b3574..cac082d4f0d1 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.13/IvanCharapanau.Harbor.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.13/IvanCharapanau.Harbor.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.13 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.13 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.4/IvanCharapanau.Harbor.installer.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.4/IvanCharapanau.Harbor.installer.yaml index f66971f2e5c7..c1eb1da91a59 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.4/IvanCharapanau.Harbor.installer.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.4/IvanCharapanau.Harbor.installer.yaml @@ -1,26 +1,26 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.4 -UpgradeBehavior: install -ReleaseDate: 2026-03-13 -Installers: -- Architecture: x64 - InstallerType: nullsoft - Scope: user - InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.4/Harbor_0.4.4_x64-setup.exe - InstallerSha256: 32C62B803EAA8CFEBF8E5F8384752B79BD71A687F6A835E9E9F5E7B71CE96FF2 - ProductCode: Harbor -- Architecture: x64 - InstallerType: wix - Scope: machine - InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.4/Harbor_0.4.4_x64_en-US.msi - InstallerSha256: D6ABEB51B03C4DD613574B8602314D882343AC049E95A2606A649E1A8F166316 - InstallerSwitches: - InstallLocation: INSTALLDIR="" - ProductCode: '{BDE66BC8-EF45-489B-90D0-72CEB35F8F2D}' - AppsAndFeaturesEntries: - - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.4 +UpgradeBehavior: install +ReleaseDate: 2026-03-13 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.4/Harbor_0.4.4_x64-setup.exe + InstallerSha256: 774754CC827E3C8F910A02CA3C5141629AE35F040E256700564F030E6F455856 + ProductCode: Harbor +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.4/Harbor_0.4.4_x64_en-US.msi + InstallerSha256: A44790553160914DB0C7D1023E0D6F5C4670F0795C96DA56BE10169B10332E69 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{82208071-CD88-4DC9-9B9E-14D2203856C4}' + AppsAndFeaturesEntries: + - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.4/IvanCharapanau.Harbor.locale.en-US.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.4/IvanCharapanau.Harbor.locale.en-US.yaml index 4dc0b3e683d4..f0b578679b71 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.4/IvanCharapanau.Harbor.locale.en-US.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.4/IvanCharapanau.Harbor.locale.en-US.yaml @@ -1,52 +1,52 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.4 -PackageLocale: en-US -Publisher: harbor -PublisherUrl: https://av.codes/ -PublisherSupportUrl: https://github.com/av/harbor/issues -Author: Ivan Charapanau -PackageName: Harbor -PackageUrl: https://github.com/av/harbor -License: Apache-2.0 -LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE -ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. -Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. -Tags: -- ai -- large-language-model -- llm -- ollama -ReleaseNotes: |- - Open Terminal - Lightweight remote shell and file-management API for AI agents — works with Open WebUI out of the box. - harbor up openterminal - harbor models - You can now manage your llama.cpp, HuggingFace and Ollama models in a single concise CLI. - $ ▼ harbor models ls - SOURCE MODEL SIZE DETAILS - ollama qwen3.5:35b 23.9 GB qwen35moe 36.0B Q4_K_M - hf hexgrad/Kokoro-82M 358 MB - hf Systran/faster-distil-whisper-large-v3 1.5 GB - llamacpp unsloth/Qwen3-Next-80B-A3B-Instruct-GGUF:Q4_0 45.3 GB Q4_0 - - # Use programmatically with jq and other tools - harbor models ls --json - - # Pull Ollama models or HF repos - harbor models pull qwen3:8b - harbor models pull bartowski/Llama-3.2-1B-Instruct-GGUF - - # Use same ID you can see in `ls` for removing the models - harbor models rm qwen3:8b - Misc - - Add integration tests and mock OpenAI service for CI. - - Fix workspace paths in default.env to point to services directory. - - Fix JSON merger output path in Open WebUI start script. - - Fabric docs updates and CLI fixes. - Full Changelog: https://github.com/av/harbor/compare/v0.4.3...v0.4.4 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.4 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.4 +PackageLocale: en-US +Publisher: harbor +PublisherUrl: https://av.codes/ +PublisherSupportUrl: https://github.com/av/harbor/issues +Author: Ivan Charapanau +PackageName: Harbor +PackageUrl: https://github.com/av/harbor +License: Apache-2.0 +LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE +ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. +Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. +Tags: +- ai +- large-language-model +- llm +- ollama +ReleaseNotes: |- + Open Terminal + Lightweight remote shell and file-management API for AI agents — works with Open WebUI out of the box. + harbor up openterminal + harbor models + You can now manage your llama.cpp, HuggingFace and Ollama models in a single concise CLI. + $ ▼ harbor models ls + SOURCE MODEL SIZE DETAILS + ollama qwen3.5:35b 23.9 GB qwen35moe 36.0B Q4_K_M + hf hexgrad/Kokoro-82M 358 MB + hf Systran/faster-distil-whisper-large-v3 1.5 GB + llamacpp unsloth/Qwen3-Next-80B-A3B-Instruct-GGUF:Q4_0 45.3 GB Q4_0 + + # Use programmatically with jq and other tools + harbor models ls --json + + # Pull Ollama models or HF repos + harbor models pull qwen3:8b + harbor models pull bartowski/Llama-3.2-1B-Instruct-GGUF + + # Use same ID you can see in `ls` for removing the models + harbor models rm qwen3:8b + Misc + - Add integration tests and mock OpenAI service for CI. + - Fix workspace paths in default.env to point to services directory. + - Fix JSON merger output path in Open WebUI start script. + - Fabric docs updates and CLI fixes. + Full Changelog: https://github.com/av/harbor/compare/v0.4.3...v0.4.4 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.4 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.4/IvanCharapanau.Harbor.locale.zh-CN.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.4/IvanCharapanau.Harbor.locale.zh-CN.yaml index 6298f6179b57..8f654c933a2d 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.4/IvanCharapanau.Harbor.locale.zh-CN.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.4/IvanCharapanau.Harbor.locale.zh-CN.yaml @@ -1,16 +1,16 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.4 -PackageLocale: zh-CN -ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 -Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 -Tags: -- llm -- ollama -- 人工智能 -- 大语言模型 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.4 -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.4 +PackageLocale: zh-CN +ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 +Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 +Tags: +- llm +- ollama +- 人工智能 +- 大语言模型 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.4 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.4/IvanCharapanau.Harbor.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.4/IvanCharapanau.Harbor.yaml index 3b38aaa911f9..3fa8cc65f47f 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.4/IvanCharapanau.Harbor.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.4/IvanCharapanau.Harbor.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.4 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.installer.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.installer.yaml index 8211814b0ba6..33a835c9a0ec 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.installer.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.installer.yaml @@ -1,26 +1,26 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.5 -UpgradeBehavior: install -ReleaseDate: 2026-03-16 -Installers: -- Architecture: x64 - InstallerType: nullsoft - Scope: user - InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.5/Harbor_0.4.5_x64-setup.exe - InstallerSha256: 92D67601D01839EE240D7A80A4D2160BA932D5F3BB034FD2B572BAA3877749F9 - ProductCode: Harbor -- Architecture: x64 - InstallerType: wix - Scope: machine - InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.5/Harbor_0.4.5_x64_en-US.msi - InstallerSha256: 8966DDBC43BB86E4FC2C10DA874C38631640745F6A81A016BD3F8A1DFFCE2C0A - InstallerSwitches: - InstallLocation: INSTALLDIR="" - ProductCode: '{6CAFBF8F-B4A4-483A-BE11-D50535ECB80D}' - AppsAndFeaturesEntries: - - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.5 +UpgradeBehavior: install +ReleaseDate: 2026-03-16 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.5/Harbor_0.4.5_x64-setup.exe + InstallerSha256: 415F65C107C590452DC32426435268B7851ACF221FC2279BC9C569D8EB24447B + ProductCode: Harbor +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.5/Harbor_0.4.5_x64_en-US.msi + InstallerSha256: D3E36695CF7F47207645B21F33FCBA43FF3E3625D4E312EF335A4C2EA9584D48 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{385D25EC-E370-49BE-B2F7-DED4152660E6}' + AppsAndFeaturesEntries: + - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.locale.en-US.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.locale.en-US.yaml index 5cf90c321cf8..73d0bee6516c 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.locale.en-US.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.locale.en-US.yaml @@ -1,36 +1,36 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.5 -PackageLocale: en-US -Publisher: harbor -PublisherUrl: https://av.codes/ -PublisherSupportUrl: https://github.com/av/harbor/issues -Author: Ivan Charapanau -PackageName: Harbor -PackageUrl: https://github.com/av/harbor -License: Apache-2.0 -LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE -ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. -Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. -Tags: -- ai -- large-language-model -- llm -- ollama -ReleaseNotes: |- - Harbor App Updates - This release introduces multiple QoL improvements in the Harbor desktop app. - - You can pin favorite services, service cards are cleaner - - UI for harbor models - download llama.cpp, HuggingFace and Ollama models through the app - - Globally available terminal pane with a global (Ctrl + `) shortcut - - Service details page allows to open and tail service logs - - Application sidebar shows shortcuts to currently running active services - - new harbor log aliaas for harbor logs or harbor l - - Fix: concurrent harbor ls during harbor down causing overly high CPU usage - - Fix: model pulling logic for llama.cpp now uses run_llamacpp_pull. - Full Changelog: https://github.com/av/harbor/compare/v0.4.4...v0.4.5 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.5 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.5 +PackageLocale: en-US +Publisher: harbor +PublisherUrl: https://av.codes/ +PublisherSupportUrl: https://github.com/av/harbor/issues +Author: Ivan Charapanau +PackageName: Harbor +PackageUrl: https://github.com/av/harbor +License: Apache-2.0 +LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE +ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. +Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. +Tags: +- ai +- large-language-model +- llm +- ollama +ReleaseNotes: |- + Harbor App Updates + This release introduces multiple QoL improvements in the Harbor desktop app. + - You can pin favorite services, service cards are cleaner + - UI for harbor models - download llama.cpp, HuggingFace and Ollama models through the app + - Globally available terminal pane with a global (Ctrl + `) shortcut + - Service details page allows to open and tail service logs + - Application sidebar shows shortcuts to currently running active services + - new harbor log aliaas for harbor logs or harbor l + - Fix: concurrent harbor ls during harbor down causing overly high CPU usage + - Fix: model pulling logic for llama.cpp now uses run_llamacpp_pull. + Full Changelog: https://github.com/av/harbor/compare/v0.4.4...v0.4.5 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.5 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.locale.zh-CN.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.locale.zh-CN.yaml index 651cee9a8404..1e0d715c3f53 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.locale.zh-CN.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.locale.zh-CN.yaml @@ -1,16 +1,16 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.5 -PackageLocale: zh-CN -ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 -Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 -Tags: -- llm -- ollama -- 人工智能 -- 大语言模型 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.5 -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.5 +PackageLocale: zh-CN +ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 +Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 +Tags: +- llm +- ollama +- 人工智能 +- 大语言模型 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.5 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.yaml index 1e141f00b360..ee38378ce4a8 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.5/IvanCharapanau.Harbor.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.5 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.installer.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.installer.yaml index c700d25467e7..50e98672faea 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.installer.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.installer.yaml @@ -1,26 +1,26 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.7 -UpgradeBehavior: install -ReleaseDate: 2026-04-03 -Installers: -- Architecture: x64 - InstallerType: nullsoft - Scope: user - InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.7/Harbor_0.4.7_x64-setup.exe - InstallerSha256: 189E12B9E31230288BF40C3B354867B4F3AA8FF9945AFE1051174FBF16E7F171 - ProductCode: Harbor -- Architecture: x64 - InstallerType: wix - Scope: machine - InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.7/Harbor_0.4.7_x64_en-US.msi - InstallerSha256: D281A7209ECE4F00EF1D7293A6BF611A1869A04038BC1390B596EC1B067DF07B - InstallerSwitches: - InstallLocation: INSTALLDIR="" - ProductCode: '{B4483CF6-BCC2-4A32-B5CC-B869F872E806}' - AppsAndFeaturesEntries: - - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.7 +UpgradeBehavior: install +ReleaseDate: 2026-04-03 +Installers: +- Architecture: x64 + InstallerType: nullsoft + Scope: user + InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.7/Harbor_0.4.7_x64-setup.exe + InstallerSha256: F7B1EC1DB6FD03060B9B8C66B241D8F0E6883F5F6DE21DBF6EF0B8A8B082DD6C + ProductCode: Harbor +- Architecture: x64 + InstallerType: wix + Scope: machine + InstallerUrl: https://github.com/av/harbor/releases/download/v0.4.7/Harbor_0.4.7_x64_en-US.msi + InstallerSha256: 6ABDD97B15CD4017D435A8DE9BAC3F444A49E5F3831AA298654EB4A9A2EBC136 + InstallerSwitches: + InstallLocation: INSTALLDIR="" + ProductCode: '{0649BE45-0AEF-4CF1-BEEA-A47C6C31C135}' + AppsAndFeaturesEntries: + - UpgradeCode: '{8389C8AD-7952-5AB4-B907-63255087F027}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.locale.en-US.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.locale.en-US.yaml index 58a0881bbc2b..abfed10aeeaf 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.locale.en-US.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.locale.en-US.yaml @@ -1,33 +1,33 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.7 -PackageLocale: en-US -Publisher: harbor -PublisherUrl: https://av.codes/ -PublisherSupportUrl: https://github.com/av/harbor/issues -Author: Ivan Charapanau -PackageName: Harbor -PackageUrl: https://github.com/av/harbor -License: Apache-2.0 -LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE -ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. -Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. -Tags: -- ai -- large-language-model -- llm -- ollama -ReleaseNotes: |- - Hermes Agent - Autonomous AI agent by Nous Research with persistent memory, extensible skills, multi-platform gateway, and OpenAI-compatible API. - harbor up hermes - Misc - - llamacpp can now be built from source with harbor llamacpp build on (CUDA and ROCm supported). - - Rewrote llamacpp documentation with updated model management workflow. - - Added rocm and build as recognized service capabilities. - Full Changelog: https://github.com/av/harbor/compare/v0.4.6...v0.4.7 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.7 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.7 +PackageLocale: en-US +Publisher: harbor +PublisherUrl: https://av.codes/ +PublisherSupportUrl: https://github.com/av/harbor/issues +Author: Ivan Charapanau +PackageName: Harbor +PackageUrl: https://github.com/av/harbor +License: Apache-2.0 +LicenseUrl: https://github.com/av/harbor/blob/HEAD/LICENSE +ShortDescription: Effortlessly run LLM backends, APIs, frontends, and services with one command. +Description: Harbor is a containerized LLM toolkit that allows you to run LLMs and additional services. It consists of a CLI and a companion App that allows you to manage and run AI services with ease. +Tags: +- ai +- large-language-model +- llm +- ollama +ReleaseNotes: |- + Hermes Agent + Autonomous AI agent by Nous Research with persistent memory, extensible skills, multi-platform gateway, and OpenAI-compatible API. + harbor up hermes + Misc + - llamacpp can now be built from source with harbor llamacpp build on (CUDA and ROCm supported). + - Rewrote llamacpp documentation with updated model management workflow. + - Added rocm and build as recognized service capabilities. + Full Changelog: https://github.com/av/harbor/compare/v0.4.6...v0.4.7 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.7 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.locale.zh-CN.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.locale.zh-CN.yaml index 18b758ca744f..62244162d507 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.locale.zh-CN.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.locale.zh-CN.yaml @@ -1,16 +1,16 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.7 -PackageLocale: zh-CN -ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 -Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 -Tags: -- llm -- ollama -- 人工智能 -- 大语言模型 -ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.7 -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.7 +PackageLocale: zh-CN +ShortDescription: 只需一个命令,即可轻松运行 LLM 后端、API、前端和服务。 +Description: Harbor 是一个容器化 LLM 工具包,帮助您运行 LLM 和附加服务。它由 CLI 和配套应用程序组成,帮助您轻松管理和运行人工智能服务。 +Tags: +- llm +- ollama +- 人工智能 +- 大语言模型 +ReleaseNotesUrl: https://github.com/av/harbor/releases/tag/v0.4.7 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.yaml b/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.yaml index 3f2f3afc0070..cbe1cbd6cbbc 100644 --- a/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.yaml +++ b/manifests/i/IvanCharapanau/Harbor/0.4.7/IvanCharapanau.Harbor.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: IvanCharapanau.Harbor -PackageVersion: 0.4.7 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: IvanCharapanau.Harbor +PackageVersion: 0.4.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.installer.yaml b/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.installer.yaml new file mode 100644 index 000000000000..58bc41d11d54 --- /dev/null +++ b/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.installer.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: iFileSpace.iFile +PackageVersion: 2.6.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ifile.exe + PortableCommandAlias: ifile +Commands: +- ifile +ReleaseDate: 2026-05-06 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.ifile.space/apps/ifile_windows_amd64_2.6.0.zip + InstallerSha256: 5F0C8BCEA6ACFCBC98078D0CA521756479A7D520D1E26509561525D1ED038C40 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.locale.en-US.yaml b/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.locale.en-US.yaml new file mode 100644 index 000000000000..ef38ad570037 --- /dev/null +++ b/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.locale.en-US.yaml @@ -0,0 +1,28 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: iFileSpace.iFile +PackageVersion: 2.6.0 +PackageLocale: en-US +Publisher: Zhengzhou Huake Import & Export Trade Co., Ltd. +PublisherUrl: https://ifile.space/ +PublisherSupportUrl: https://ifile.space/forum +Author: Zhengzhou Huake Import & Export Trade Co., Ltd. +PackageName: iFile +PackageUrl: https://ifile.space/download +License: Proprietary +Copyright: Copyright ©️ iFileSpace +ShortDescription: Simple file management tool. Build your own private cloud drive system in seconds. +Description: iFileSpace is an online personal file management tool and online cloud drive program that allows you to build a private cloud drive quickly with one click. It supports local storage and object storage (Alibaba Cloud OSS, Tencent Cloud COS, Huawei Cloud OBS, UPYUN, Qiniu, OneDrive and other S3-compatible object storage). It could be an alternative to cloud drives like Baidu Netdisk when deployed on public servers, where you have full control over the data! It can also be deployed as an intranet file management tool on home soft routers, NASs, and other personal storage devices. It supports multi-user, multi-storage, library, WebDAV, background download and fine-grained background access management. +Tags: +- file +- server +- share +- storage +ReleaseNotesUrl: https://ifile.space/update?action=serve +PurchaseUrl: https://ifile.space/pro +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://ifile.space/docs/home +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.locale.zh-CN.yaml b/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.locale.zh-CN.yaml new file mode 100644 index 000000000000..2e4abd0f04a7 --- /dev/null +++ b/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.locale.zh-CN.yaml @@ -0,0 +1,35 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: iFileSpace.iFile +PackageVersion: 2.6.0 +PackageLocale: zh-CN +Publisher: 郑州华科进出口贸易有限公司 +PublisherUrl: https://ifile.space/ +PublisherSupportUrl: https://ifile.space/forum +Author: 郑州华科进出口贸易有限公司 +PackageName: iFile +PackageUrl: https://ifile.space/download +License: 专有软件 +Copyright: Copyright ©️ iFileSpace +ShortDescription: 简洁的文件管理工具,快速搭建专属的私人网盘系统 +Description: iFileSpace 是一个在线个人文件管理工具,在线网盘程序,可快速一键搭建私人云盘,支持本地存储和对象存储(阿里云 OSS、腾讯云 COS、华为云 OBS、又拍云、七牛云、OneDrive 及其他支持 S3 协议对象存储)如部署在公网服务器,可替代百度网盘等在线网盘,自主搭建,数据完全自主管理!也可部署在家庭软路由、NAS 等个人存储设备中,作为局域网文件管理工具使用。支持多用户、多存储空间、资料库、WebDAV、离线下载及精细的后台权限管理。 +Tags: +- 共享 +- 分享 +- 发送 +- 文件 +- 服务器 +ReleaseNotes: |- + 【新增】文件页面显示目录 + 【新增】相册及图床支持分组 + 【优化】助手更新(更新将重置助手数据,如需保留请先备份) + 【修复】部分 bug 修复 + 【新增】如需客户端,请配合桌面端 2.1.0 使用 +ReleaseNotesUrl: https://ifile.space/update?action=serve +PurchaseUrl: https://ifile.space/pro +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://ifile.space/docs/home +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.yaml b/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.yaml new file mode 100644 index 000000000000..f9988013becb --- /dev/null +++ b/manifests/i/iFileSpace/iFile/2.6.0/iFileSpace.iFile.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: iFileSpace.iFile +PackageVersion: 2.6.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.installer.yaml b/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.installer.yaml new file mode 100644 index 000000000000..cffe1de6af39 --- /dev/null +++ b/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: iFileSpace.iFileSpace +PackageVersion: 2.1.0 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 18a3c3db-569a-5885-acbe-fa7a8d8b32f3 +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.ifile.space/update/iFileSpace-2.1.0-win-x64.exe + InstallerSha256: 5E18CEECC704F3A5BAF6436604F2BF93CA4DDCCEB04BE14090EC6867167C4731 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.locale.en-US.yaml b/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.locale.en-US.yaml new file mode 100644 index 000000000000..7368bbf97b07 --- /dev/null +++ b/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: iFileSpace.iFileSpace +PackageVersion: 2.1.0 +PackageLocale: en-US +Publisher: https://ifile.space +PublisherUrl: https://ifile.space/ +PublisherSupportUrl: https://ifile.space/forum +Author: Zhengzhou Huake Import & Export Trade Co., Ltd. +PackageName: iFileSpace +PackageUrl: https://ifile.space/download +License: Proprietary +Copyright: Copyright ©️ iFileSpace +ShortDescription: Simple file management tool. Build your own private cloud drive system in seconds. +Description: iFileSpace is an online personal file management tool and online cloud drive program that allows you to build a private cloud drive quickly with one click. It supports local storage and object storage (Alibaba Cloud OSS, Tencent Cloud COS, Huawei Cloud OBS, UPYUN, Qiniu, OneDrive and other S3-compatible object storage). It could be an alternative to cloud drives like Baidu Netdisk when deployed on public servers, where you have full control over the data! It can also be deployed as an intranet file management tool on home soft routers, NASs, and other personal storage devices. It supports multi-user, multi-storage, library, WebDAV, background download and fine-grained background access management. +Tags: +- file +- ifile +- server +- share +- storage +ReleaseNotesUrl: https://ifile.space/update?action=desktop +PurchaseUrl: https://ifile.space/pro +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://ifile.space/docs/home +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.locale.zh-CN.yaml b/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.locale.zh-CN.yaml new file mode 100644 index 000000000000..c9026deb447c --- /dev/null +++ b/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.locale.zh-CN.yaml @@ -0,0 +1,36 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: iFileSpace.iFileSpace +PackageVersion: 2.1.0 +PackageLocale: zh-CN +Publisher: https://ifile.space +PublisherUrl: https://ifile.space/ +PublisherSupportUrl: https://ifile.space/forum +Author: 郑州华科进出口贸易有限公司 +PackageName: iFileSpace +PackageUrl: https://ifile.space/download +License: 专有软件 +Copyright: Copyright ©️ iFileSpace +ShortDescription: 简洁的文件管理工具,快速搭建专属的私人网盘系统 +Description: iFileSpace 是一个在线个人文件管理工具,在线网盘程序,可快速一键搭建私人云盘,支持本地存储和对象存储(阿里云 OSS、腾讯云 COS、华为云 OBS、又拍云、七牛云、OneDrive 及其他支持 S3 协议对象存储)如部署在公网服务器,可替代百度网盘等在线网盘,自主搭建,数据完全自主管理!也可部署在家庭软路由、NAS 等个人存储设备中,作为局域网文件管理工具使用。支持多用户、多存储空间、资料库、WebDAV、离线下载及精细的后台权限管理。 +Tags: +- 共享 +- 分享 +- 发送 +- 文件 +- 服务器 +ReleaseNotes: |- + 【新增】文件页面显示目录 + 【新增】相册及图床支持分组 + 【优化】助手更新(更新将重置助手数据,如需保留请先备份) + 【修复】部分 bug 修复 + 【新增】需配合服务端 2.6.0 使用 + 【新增】新增 linux 桌面端 +ReleaseNotesUrl: https://ifile.space/update?action=desktop +PurchaseUrl: https://ifile.space/pro +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://ifile.space/docs/home +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.yaml b/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.yaml new file mode 100644 index 000000000000..85cad538678e --- /dev/null +++ b/manifests/i/iFileSpace/iFileSpace/2.1.0/iFileSpace.iFileSpace.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: iFileSpace.iFileSpace +PackageVersion: 2.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/itsnateai/SyncthingTray/2.2.41/itsnateai.SyncthingTray.installer.yaml b/manifests/i/itsnateai/SyncthingTray/2.2.41/itsnateai.SyncthingTray.installer.yaml new file mode 100644 index 000000000000..7bf12c64f6f8 --- /dev/null +++ b/manifests/i/itsnateai/SyncthingTray/2.2.41/itsnateai.SyncthingTray.installer.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: itsnateai.SyncthingTray +PackageVersion: 2.2.41 +InstallerType: portable +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/itsnateai/synctray/releases/download/v2.2.41/SyncthingTray.exe + InstallerSha256: 707DB6380A2580AF1043BBD4E31FD29DB16B7EE2294A98BE16A6FB782FF2CBE9 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-05-07 diff --git a/manifests/i/itsnateai/SyncthingTray/2.2.41/itsnateai.SyncthingTray.locale.en-US.yaml b/manifests/i/itsnateai/SyncthingTray/2.2.41/itsnateai.SyncthingTray.locale.en-US.yaml new file mode 100644 index 000000000000..081f310f86f2 --- /dev/null +++ b/manifests/i/itsnateai/SyncthingTray/2.2.41/itsnateai.SyncthingTray.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: itsnateai.SyncthingTray +PackageVersion: 2.2.41 +PackageLocale: en-US +Publisher: itsnateai +PublisherUrl: https://github.com/itsnateai +PublisherSupportUrl: https://github.com/itsnateai/synctray/issues +PackageName: SyncthingTray +PackageUrl: https://github.com/itsnateai/synctray +License: MIT +LicenseUrl: https://github.com/itsnateai/synctray/blob/main/LICENSE +ShortDescription: Lightweight system tray manager for Syncthing on Windows +Description: System tray utility for monitoring and controlling Syncthing. Quick-access rescan, configurable click actions, sound notifications. +Tags: +- syncthing +- file-sync +- system-tray +- backup +ReleaseNotesUrl: https://github.com/itsnateai/synctray/releases/tag/v2.2.41 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/itsnateai/SyncthingTray/2.2.41/itsnateai.SyncthingTray.yaml b/manifests/i/itsnateai/SyncthingTray/2.2.41/itsnateai.SyncthingTray.yaml new file mode 100644 index 000000000000..38f66c4c8d9b --- /dev/null +++ b/manifests/i/itsnateai/SyncthingTray/2.2.41/itsnateai.SyncthingTray.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: itsnateai.SyncthingTray +PackageVersion: 2.2.41 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/itsnateai/SyncthingTray/2.3.3/itsnateai.SyncthingTray.installer.yaml b/manifests/i/itsnateai/SyncthingTray/2.3.3/itsnateai.SyncthingTray.installer.yaml new file mode 100644 index 000000000000..3cbe1ac0cf5c --- /dev/null +++ b/manifests/i/itsnateai/SyncthingTray/2.3.3/itsnateai.SyncthingTray.installer.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: itsnateai.SyncthingTray +PackageVersion: 2.3.3 +InstallerType: portable +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/itsnateai/synctray/releases/download/v2.3.3/SyncthingTray.exe + InstallerSha256: 1AC08359A06E3AF5C0C7E3E55ED51AEF2D801A2BFEFC470CE7525530E41DDB0C +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-05-07 diff --git a/manifests/i/itsnateai/SyncthingTray/2.3.3/itsnateai.SyncthingTray.locale.en-US.yaml b/manifests/i/itsnateai/SyncthingTray/2.3.3/itsnateai.SyncthingTray.locale.en-US.yaml new file mode 100644 index 000000000000..b5b00603d810 --- /dev/null +++ b/manifests/i/itsnateai/SyncthingTray/2.3.3/itsnateai.SyncthingTray.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: itsnateai.SyncthingTray +PackageVersion: 2.3.3 +PackageLocale: en-US +Publisher: itsnateai +PublisherUrl: https://github.com/itsnateai +PublisherSupportUrl: https://github.com/itsnateai/synctray/issues +PackageName: SyncthingTray +PackageUrl: https://github.com/itsnateai/synctray +License: MIT +LicenseUrl: https://github.com/itsnateai/synctray/blob/main/LICENSE +ShortDescription: Lightweight system tray manager for Syncthing on Windows +Description: System tray utility for monitoring and controlling Syncthing. Quick-access rescan, configurable click actions, sound notifications. +Tags: +- syncthing +- file-sync +- system-tray +- backup +ReleaseNotesUrl: https://github.com/itsnateai/synctray/releases/tag/v2.3.3 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/itsnateai/SyncthingTray/2.3.3/itsnateai.SyncthingTray.yaml b/manifests/i/itsnateai/SyncthingTray/2.3.3/itsnateai.SyncthingTray.yaml new file mode 100644 index 000000000000..06719d08d6b5 --- /dev/null +++ b/manifests/i/itsnateai/SyncthingTray/2.3.3/itsnateai.SyncthingTray.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: itsnateai.SyncthingTray +PackageVersion: 2.3.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/itsnateai/SyncthingTray/2.3.4/itsnateai.SyncthingTray.installer.yaml b/manifests/i/itsnateai/SyncthingTray/2.3.4/itsnateai.SyncthingTray.installer.yaml new file mode 100644 index 000000000000..7ac3e6db553f --- /dev/null +++ b/manifests/i/itsnateai/SyncthingTray/2.3.4/itsnateai.SyncthingTray.installer.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: itsnateai.SyncthingTray +PackageVersion: 2.3.4 +InstallerType: portable +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/itsnateai/synctray/releases/download/v2.3.4/SyncthingTray.exe + InstallerSha256: 11EFBF14C3DE5929C9ACBC64B4148311C3F79725479EBBD6547AA979B3EB3096 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-05-07 diff --git a/manifests/i/itsnateai/SyncthingTray/2.3.4/itsnateai.SyncthingTray.locale.en-US.yaml b/manifests/i/itsnateai/SyncthingTray/2.3.4/itsnateai.SyncthingTray.locale.en-US.yaml new file mode 100644 index 000000000000..3a8790eb92cd --- /dev/null +++ b/manifests/i/itsnateai/SyncthingTray/2.3.4/itsnateai.SyncthingTray.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: itsnateai.SyncthingTray +PackageVersion: 2.3.4 +PackageLocale: en-US +Publisher: itsnateai +PublisherUrl: https://github.com/itsnateai +PublisherSupportUrl: https://github.com/itsnateai/synctray/issues +PackageName: SyncthingTray +PackageUrl: https://github.com/itsnateai/synctray +License: MIT +LicenseUrl: https://github.com/itsnateai/synctray/blob/main/LICENSE +ShortDescription: Lightweight system tray manager for Syncthing on Windows +Description: System tray utility for monitoring and controlling Syncthing. Quick-access rescan, configurable click actions, sound notifications. +Tags: +- syncthing +- file-sync +- system-tray +- backup +ReleaseNotesUrl: https://github.com/itsnateai/synctray/releases/tag/v2.3.4 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/i/itsnateai/SyncthingTray/2.3.4/itsnateai.SyncthingTray.yaml b/manifests/i/itsnateai/SyncthingTray/2.3.4/itsnateai.SyncthingTray.yaml new file mode 100644 index 000000000000..48c59e7f69e7 --- /dev/null +++ b/manifests/i/itsnateai/SyncthingTray/2.3.4/itsnateai.SyncthingTray.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: itsnateai.SyncthingTray +PackageVersion: 2.3.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/i/itsnateai/SyncthingTray/2.3.5/itsnateai.SyncthingTray.installer.yaml b/manifests/i/itsnateai/SyncthingTray/2.3.5/itsnateai.SyncthingTray.installer.yaml new file mode 100644 index 000000000000..2f3a3543ee85 --- /dev/null +++ b/manifests/i/itsnateai/SyncthingTray/2.3.5/itsnateai.SyncthingTray.installer.yaml @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: itsnateai.SyncthingTray +PackageVersion: 2.3.5 +InstallerType: portable +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/itsnateai/synctray/releases/download/v2.3.5/SyncthingTray.exe + InstallerSha256: 2A7C670ABBA849D695565E02EDF2E40A650FD97345CA6A920413659D2D004DF5 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-05-07 diff --git a/manifests/i/itsnateai/SyncthingTray/2.3.5/itsnateai.SyncthingTray.locale.en-US.yaml b/manifests/i/itsnateai/SyncthingTray/2.3.5/itsnateai.SyncthingTray.locale.en-US.yaml new file mode 100644 index 000000000000..d5efc3d8df4b --- /dev/null +++ b/manifests/i/itsnateai/SyncthingTray/2.3.5/itsnateai.SyncthingTray.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: itsnateai.SyncthingTray +PackageVersion: 2.3.5 +PackageLocale: en-US +Publisher: itsnateai +PublisherUrl: https://github.com/itsnateai +PublisherSupportUrl: https://github.com/itsnateai/synctray/issues +PackageName: SyncthingTray +PackageUrl: https://github.com/itsnateai/synctray +License: MIT +LicenseUrl: https://github.com/itsnateai/synctray/blob/main/LICENSE +ShortDescription: Lightweight system tray manager for Syncthing on Windows +Description: System tray utility for monitoring and controlling Syncthing. Quick-access rescan, configurable click actions, sound notifications. +Tags: +- syncthing +- file-sync +- system-tray +- backup +ReleaseNotesUrl: https://github.com/itsnateai/synctray/releases/tag/v2.3.5 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/Nanoleaf/NanoleafDesktop/2.3.5/Nanoleaf.NanoleafDesktop.yaml b/manifests/i/itsnateai/SyncthingTray/2.3.5/itsnateai.SyncthingTray.yaml similarity index 62% rename from manifests/n/Nanoleaf/NanoleafDesktop/2.3.5/Nanoleaf.NanoleafDesktop.yaml rename to manifests/i/itsnateai/SyncthingTray/2.3.5/itsnateai.SyncthingTray.yaml index 1e5cc8c24731..64e895ef904e 100644 --- a/manifests/n/Nanoleaf/NanoleafDesktop/2.3.5/Nanoleaf.NanoleafDesktop.yaml +++ b/manifests/i/itsnateai/SyncthingTray/2.3.5/itsnateai.SyncthingTray.yaml @@ -1,7 +1,7 @@ -# Automatically updated by the winget bot at 2025/Dec/13 +# Created using wingetcreate 1.12.8.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: Nanoleaf.NanoleafDesktop +PackageIdentifier: itsnateai.SyncthingTray PackageVersion: 2.3.5 DefaultLocale: en-US ManifestType: version diff --git a/manifests/j/Jianjing/XLJSCI/2.5.3.0/Jianjing.XLJSCI.installer.yaml b/manifests/j/Jianjing/XLJSCI/2.5.3.0/Jianjing.XLJSCI.installer.yaml index a41fedeaf693..40b62331973a 100644 --- a/manifests/j/Jianjing/XLJSCI/2.5.3.0/Jianjing.XLJSCI.installer.yaml +++ b/manifests/j/Jianjing/XLJSCI/2.5.3.0/Jianjing.XLJSCI.installer.yaml @@ -1,25 +1,25 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Jianjing.XLJSCI -PackageVersion: 2.5.3.0 -InstallerType: nullsoft -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: /S -AutoOpen=0 - SilentWithProgress: -AutoInstall=1 -AutoOpen=0 -UpgradeBehavior: install -FileExtensions: -- pdf -ProductCode: xljsci -ReleaseDate: 2025-11-10 -Installers: -- Architecture: x86 - InstallerUrl: https://cdn.xljsci.com/download/xiaolvjing_downloader_setup_2.5.3.exe - InstallerSha256: 5D971399A56AF2E36F034FAE785347D89C19BA21640D803DF9EC4F61788D612F -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: Jianjing.XLJSCI +PackageVersion: 2.5.3.0 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /S -AutoOpen=0 + SilentWithProgress: -AutoInstall=1 -AutoOpen=0 +UpgradeBehavior: install +FileExtensions: +- pdf +ProductCode: xljsci +ReleaseDate: 2025-11-10 +Installers: +- Architecture: x86 + InstallerUrl: https://cdn.xljsci.com/download/xiaolvjing_downloader_setup_2.5.3.exe + InstallerSha256: 85024CD1EE796C7FEB64A48FAAFAF6A4E7A7884B143CF70EA7A6F58E8360A646 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/Jianjing/XLJSCI/2.5.3.0/Jianjing.XLJSCI.locale.en-US.yaml b/manifests/j/Jianjing/XLJSCI/2.5.3.0/Jianjing.XLJSCI.locale.en-US.yaml index 383ff0499901..c3c6da2f12cb 100644 --- a/manifests/j/Jianjing/XLJSCI/2.5.3.0/Jianjing.XLJSCI.locale.en-US.yaml +++ b/manifests/j/Jianjing/XLJSCI/2.5.3.0/Jianjing.XLJSCI.locale.en-US.yaml @@ -1,34 +1,34 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Jianjing.XLJSCI -PackageVersion: 2.5.3.0 -PackageLocale: en-US -Publisher: 上海云又信息科技有限公司 -PublisherUrl: https://www.xljsci.com/ -PublisherSupportUrl: https://www.xljsci.com/course.html -PackageName: 小绿鲸英文文献阅读器 -PackageUrl: https://www.xljsci.com/download.html -License: Proprietary -Copyright: © Jianjing Technology (Nanjing) Co., Ltd. All rights reserved. -ShortDescription: A cloud English literature reader with translation, notes, literature management and writing functions -Tags: -- academics -- article -- english -- journal -- literature -- paper -- pdf -- reader -- reading -- research -- thesis -- translate -- translation -- translator -- viewer -ReleaseNotesUrl: https://www.xljsci.com/version.html -PurchaseUrl: https://www.xljsci.com/member.html -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: Jianjing.XLJSCI +PackageVersion: 2.5.3.0 +PackageLocale: en-US +Publisher: 上海云又信息科技有限公司 +PublisherUrl: https://www.xljsci.com/ +PublisherSupportUrl: https://www.xljsci.com/course.html +PackageName: 小绿鲸英文文献阅读器 +PackageUrl: https://www.xljsci.com/download.html +License: Proprietary +Copyright: © Jianjing Technology (Nanjing) Co., Ltd. All rights reserved. +ShortDescription: A cloud English literature reader with translation, notes, literature management and writing functions +Tags: +- academics +- article +- english +- journal +- literature +- paper +- pdf +- reader +- reading +- research +- thesis +- translate +- translation +- translator +- viewer +ReleaseNotesUrl: https://www.xljsci.com/version.html +PurchaseUrl: https://www.xljsci.com/member.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/Jianjing/XLJSCI/2.5.3.0/Jianjing.XLJSCI.locale.zh-CN.yaml b/manifests/j/Jianjing/XLJSCI/2.5.3.0/Jianjing.XLJSCI.locale.zh-CN.yaml index 8f75a3f9fa12..107854d77d69 100644 --- a/manifests/j/Jianjing/XLJSCI/2.5.3.0/Jianjing.XLJSCI.locale.zh-CN.yaml +++ b/manifests/j/Jianjing/XLJSCI/2.5.3.0/Jianjing.XLJSCI.locale.zh-CN.yaml @@ -1,32 +1,32 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: Jianjing.XLJSCI -PackageVersion: 2.5.3.0 -PackageLocale: zh-CN -Publisher: 上海云又信息科技有限公司 -PublisherUrl: https://www.xljsci.com/ -PublisherSupportUrl: https://www.xljsci.com/course.html -Author: 见鲸科技(南京)有限公司 -PackageName: 小绿鲸英文文献阅读器 -PackageUrl: https://www.xljsci.com/download.html -License: 专有软件 -Copyright: © 见鲸科技(南京)有限公司版权所有 -ShortDescription: 集翻译、笔记、文献管理、写作功能于一体的云端英文文献阅读器 -Tags: -- pdf -- 学术 -- 文献 -- 期刊 -- 查看器 -- 研究 -- 翻译 -- 英文 -- 英语 -- 论文 -- 阅读 -- 阅读器 -ReleaseNotesUrl: https://www.xljsci.com/version.html -PurchaseUrl: https://www.xljsci.com/member.html -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: Jianjing.XLJSCI +PackageVersion: 2.5.3.0 +PackageLocale: zh-CN +Publisher: 上海云又信息科技有限公司 +PublisherUrl: https://www.xljsci.com/ +PublisherSupportUrl: https://www.xljsci.com/course.html +Author: 见鲸科技(南京)有限公司 +PackageName: 小绿鲸英文文献阅读器 +PackageUrl: https://www.xljsci.com/download.html +License: 专有软件 +Copyright: © 见鲸科技(南京)有限公司版权所有 +ShortDescription: 集翻译、笔记、文献管理、写作功能于一体的云端英文文献阅读器 +Tags: +- pdf +- 学术 +- 文献 +- 期刊 +- 查看器 +- 研究 +- 翻译 +- 英文 +- 英语 +- 论文 +- 阅读 +- 阅读器 +ReleaseNotesUrl: https://www.xljsci.com/version.html +PurchaseUrl: https://www.xljsci.com/member.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/j/Jianjing/XLJSCI/2.5.3.0/Jianjing.XLJSCI.yaml b/manifests/j/Jianjing/XLJSCI/2.5.3.0/Jianjing.XLJSCI.yaml index d98f31cebaf7..8bb6b2a4a1e4 100644 --- a/manifests/j/Jianjing/XLJSCI/2.5.3.0/Jianjing.XLJSCI.yaml +++ b/manifests/j/Jianjing/XLJSCI/2.5.3.0/Jianjing.XLJSCI.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: Jianjing.XLJSCI -PackageVersion: 2.5.3.0 -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: Jianjing.XLJSCI +PackageVersion: 2.5.3.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/j/Jianjing/XLJSCI/2.5.4.0/Jianjing.XLJSCI.installer.yaml b/manifests/j/Jianjing/XLJSCI/2.5.4.0/Jianjing.XLJSCI.installer.yaml index dac5aadfdd0a..050f26d34fd2 100644 --- a/manifests/j/Jianjing/XLJSCI/2.5.4.0/Jianjing.XLJSCI.installer.yaml +++ b/manifests/j/Jianjing/XLJSCI/2.5.4.0/Jianjing.XLJSCI.installer.yaml @@ -1,25 +1,25 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Jianjing.XLJSCI -PackageVersion: 2.5.4.0 -InstallerType: nullsoft -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -InstallerSwitches: - Silent: /S -AutoOpen=0 - SilentWithProgress: -AutoInstall=1 -AutoOpen=0 -UpgradeBehavior: install -FileExtensions: -- pdf -ProductCode: xljsci -ReleaseDate: 2026-01-07 -Installers: -- Architecture: x86 - InstallerUrl: https://cdn.xljsci.com/download/xiaolvjing_downloader_setup_2.5.4.exe - InstallerSha256: B652FEF14503E32B24D9599940F6AF5B6EEF8529B8E36DCFB1DA8C73157C2576 -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: Jianjing.XLJSCI +PackageVersion: 2.5.4.0 +InstallerType: nullsoft +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /S -AutoOpen=0 + SilentWithProgress: -AutoInstall=1 -AutoOpen=0 +UpgradeBehavior: install +FileExtensions: +- pdf +ProductCode: xljsci +ReleaseDate: 2026-01-07 +Installers: +- Architecture: x86 + InstallerUrl: https://cdn.xljsci.com/download/xiaolvjing_downloader_setup_2.5.4.exe + InstallerSha256: 9C264010615A1789BDBF60555C28F0E6BF4B1598B1A80E0D01B5202F2150FA11 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/j/Jianjing/XLJSCI/2.5.4.0/Jianjing.XLJSCI.locale.en-US.yaml b/manifests/j/Jianjing/XLJSCI/2.5.4.0/Jianjing.XLJSCI.locale.en-US.yaml index e913d82d0cd7..71e879051827 100644 --- a/manifests/j/Jianjing/XLJSCI/2.5.4.0/Jianjing.XLJSCI.locale.en-US.yaml +++ b/manifests/j/Jianjing/XLJSCI/2.5.4.0/Jianjing.XLJSCI.locale.en-US.yaml @@ -1,34 +1,34 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Jianjing.XLJSCI -PackageVersion: 2.5.4.0 -PackageLocale: en-US -Publisher: 上海云又信息科技有限公司 -PublisherUrl: https://www.xljsci.com/ -PublisherSupportUrl: https://www.xljsci.com/course.html -PackageName: 小绿鲸英文文献阅读器 -PackageUrl: https://www.xljsci.com/download.html -License: Proprietary -Copyright: © Jianjing Technology (Nanjing) Co., Ltd. All rights reserved. -ShortDescription: A cloud English literature reader with translation, notes, literature management and writing functions -Tags: -- academics -- article -- english -- journal -- literature -- paper -- pdf -- reader -- reading -- research -- thesis -- translate -- translation -- translator -- viewer -ReleaseNotesUrl: https://www.xljsci.com/version.html -PurchaseUrl: https://www.xljsci.com/member.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: Jianjing.XLJSCI +PackageVersion: 2.5.4.0 +PackageLocale: en-US +Publisher: 上海云又信息科技有限公司 +PublisherUrl: https://www.xljsci.com/ +PublisherSupportUrl: https://www.xljsci.com/course.html +PackageName: 小绿鲸英文文献阅读器 +PackageUrl: https://www.xljsci.com/download.html +License: Proprietary +Copyright: © Jianjing Technology (Nanjing) Co., Ltd. All rights reserved. +ShortDescription: A cloud English literature reader with translation, notes, literature management and writing functions +Tags: +- academics +- article +- english +- journal +- literature +- paper +- pdf +- reader +- reading +- research +- thesis +- translate +- translation +- translator +- viewer +ReleaseNotesUrl: https://www.xljsci.com/version.html +PurchaseUrl: https://www.xljsci.com/member.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/j/Jianjing/XLJSCI/2.5.4.0/Jianjing.XLJSCI.locale.zh-CN.yaml b/manifests/j/Jianjing/XLJSCI/2.5.4.0/Jianjing.XLJSCI.locale.zh-CN.yaml index d3626ebfcff5..5721d5814096 100644 --- a/manifests/j/Jianjing/XLJSCI/2.5.4.0/Jianjing.XLJSCI.locale.zh-CN.yaml +++ b/manifests/j/Jianjing/XLJSCI/2.5.4.0/Jianjing.XLJSCI.locale.zh-CN.yaml @@ -1,33 +1,33 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: Jianjing.XLJSCI -PackageVersion: 2.5.4.0 -PackageLocale: zh-CN -Publisher: 上海云又信息科技有限公司 -PublisherUrl: https://www.xljsci.com/ -PublisherSupportUrl: https://www.xljsci.com/course.html -Author: 见鲸科技(南京)有限公司 -PackageName: 小绿鲸英文文献阅读器 -PackageUrl: https://www.xljsci.com/download.html -License: 专有软件 -Copyright: © 见鲸科技(南京)有限公司版权所有 -ShortDescription: 集翻译、笔记、文献管理、写作功能于一体的云端英文文献阅读器 -Tags: -- pdf -- 学术 -- 文献 -- 期刊 -- 查看器 -- 研究 -- 翻译 -- 英文 -- 英语 -- 论文 -- 阅读 -- 阅读器 -ReleaseNotes: 【优化】连续翻译体验优化,操作更清晰,轻松满足跨段落翻译需求 【优化】图表解读支持放大查看关键指标,可自由调整弹窗大小与位置,边对照文献边理解图片更高效 【优化】文献概要导图模式支持自定义分支颜色与全屏展示,结构更清晰 【修复】其他一些已知问题 -ReleaseNotesUrl: https://www.xljsci.com/version.html -PurchaseUrl: https://www.xljsci.com/member.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: Jianjing.XLJSCI +PackageVersion: 2.5.4.0 +PackageLocale: zh-CN +Publisher: 上海云又信息科技有限公司 +PublisherUrl: https://www.xljsci.com/ +PublisherSupportUrl: https://www.xljsci.com/course.html +Author: 见鲸科技(南京)有限公司 +PackageName: 小绿鲸英文文献阅读器 +PackageUrl: https://www.xljsci.com/download.html +License: 专有软件 +Copyright: © 见鲸科技(南京)有限公司版权所有 +ShortDescription: 集翻译、笔记、文献管理、写作功能于一体的云端英文文献阅读器 +Tags: +- pdf +- 学术 +- 文献 +- 期刊 +- 查看器 +- 研究 +- 翻译 +- 英文 +- 英语 +- 论文 +- 阅读 +- 阅读器 +ReleaseNotes: 【优化】连续翻译体验优化,操作更清晰,轻松满足跨段落翻译需求 【优化】图表解读支持放大查看关键指标,可自由调整弹窗大小与位置,边对照文献边理解图片更高效 【优化】文献概要导图模式支持自定义分支颜色与全屏展示,结构更清晰 【修复】其他一些已知问题 +ReleaseNotesUrl: https://www.xljsci.com/version.html +PurchaseUrl: https://www.xljsci.com/member.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/j/Jianjing/XLJSCI/2.5.4.0/Jianjing.XLJSCI.yaml b/manifests/j/Jianjing/XLJSCI/2.5.4.0/Jianjing.XLJSCI.yaml index 994ad7b0e87a..85c44e886be6 100644 --- a/manifests/j/Jianjing/XLJSCI/2.5.4.0/Jianjing.XLJSCI.yaml +++ b/manifests/j/Jianjing/XLJSCI/2.5.4.0/Jianjing.XLJSCI.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: Jianjing.XLJSCI -PackageVersion: 2.5.4.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: Jianjing.XLJSCI +PackageVersion: 2.5.4.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/k/KDE/Dolphin/26.04.1/KDE.Dolphin.installer.yaml b/manifests/k/KDE/Dolphin/26.04.1/KDE.Dolphin.installer.yaml index 86d15f26f483..39febe927f7e 100644 --- a/manifests/k/KDE/Dolphin/26.04.1/KDE.Dolphin.installer.yaml +++ b/manifests/k/KDE/Dolphin/26.04.1/KDE.Dolphin.installer.yaml @@ -8,14 +8,14 @@ UpgradeBehavior: install Installers: - Architecture: x64 Scope: user - InstallerUrl: https://cdn.kde.org/ci-builds/system/dolphin/release-26.04/windows/dolphin-release_26.04-7624-windows-cl-msvc2022-x86_64.exe - InstallerSha256: CA51052F8065DA7D20CD6E82F7096F2098044CFDAB758E042E9437CDED120630 + InstallerUrl: https://cdn.kde.org/ci-builds/system/dolphin/release-26.04/windows/dolphin-release_26.04-7637-windows-cl-msvc2022-x86_64.exe + InstallerSha256: B061639E03A6BB3B740E8BF26DF2D3CE466915A04E353E7DD4B32BE83DBEBD15 InstallerSwitches: Custom: /CurrentUser - Architecture: x64 Scope: machine - InstallerUrl: https://cdn.kde.org/ci-builds/system/dolphin/release-26.04/windows/dolphin-release_26.04-7624-windows-cl-msvc2022-x86_64.exe - InstallerSha256: CA51052F8065DA7D20CD6E82F7096F2098044CFDAB758E042E9437CDED120630 + InstallerUrl: https://cdn.kde.org/ci-builds/system/dolphin/release-26.04/windows/dolphin-release_26.04-7637-windows-cl-msvc2022-x86_64.exe + InstallerSha256: B061639E03A6BB3B740E8BF26DF2D3CE466915A04E353E7DD4B32BE83DBEBD15 InstallerSwitches: Custom: /AllUsers ManifestType: installer diff --git a/manifests/k/KDE/NeoChat/26.04.1/KDE.NeoChat.installer.yaml b/manifests/k/KDE/NeoChat/26.04.1/KDE.NeoChat.installer.yaml index dfe4a8c31ef1..b9bf83fea1c5 100644 --- a/manifests/k/KDE/NeoChat/26.04.1/KDE.NeoChat.installer.yaml +++ b/manifests/k/KDE/NeoChat/26.04.1/KDE.NeoChat.installer.yaml @@ -9,14 +9,14 @@ ProductCode: NeoChat Installers: - Architecture: x64 Scope: user - InstallerUrl: https://cdn.kde.org/ci-builds/network/neochat/release-26.04/windows/neochat-release_26.04-15651-windows-cl-msvc2022-x86_64.exe - InstallerSha256: FBA2F85547CCA9F323A694357C6C27BBE210EBDB1684D81C09C2F03B09FFF144 + InstallerUrl: https://cdn.kde.org/ci-builds/network/neochat/release-26.04/windows/neochat-release_26.04-15714-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 9565DBD2041FAC4265DC070867E9676027D6E3F2C5247B3195EEC88F47DC6B12 InstallerSwitches: Custom: /CurrentUser - Architecture: x64 Scope: machine - InstallerUrl: https://cdn.kde.org/ci-builds/network/neochat/release-26.04/windows/neochat-release_26.04-15651-windows-cl-msvc2022-x86_64.exe - InstallerSha256: FBA2F85547CCA9F323A694357C6C27BBE210EBDB1684D81C09C2F03B09FFF144 + InstallerUrl: https://cdn.kde.org/ci-builds/network/neochat/release-26.04/windows/neochat-release_26.04-15714-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 9565DBD2041FAC4265DC070867E9676027D6E3F2C5247B3195EEC88F47DC6B12 InstallerSwitches: Custom: /AllUsers ManifestType: installer diff --git a/manifests/k/KDE/Ruqola/2.7.1/KDE.Ruqola.installer.yaml b/manifests/k/KDE/Ruqola/2.7.1/KDE.Ruqola.installer.yaml index f9a0a22cb807..c2f6530267a4 100644 --- a/manifests/k/KDE/Ruqola/2.7.1/KDE.Ruqola.installer.yaml +++ b/manifests/k/KDE/Ruqola/2.7.1/KDE.Ruqola.installer.yaml @@ -9,14 +9,14 @@ ProductCode: Ruqola Installers: - Architecture: x64 Scope: user - InstallerUrl: https://cdn.kde.org/ci-builds/network/ruqola/2.7/windows/ruqola-2.7-12485-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 143075406CD1C917A93FAAD755D01BF7CADAB04311B6DE0BFE42C92E82C5B0E6 + InstallerUrl: https://cdn.kde.org/ci-builds/network/ruqola/2.7/windows/ruqola-2.7-12500-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 5753D5B719D8875B9E37463480FD87890532BEBC674A8C10AAC6C7A072CDD559 InstallerSwitches: Custom: /CurrentUser - Architecture: x64 Scope: machine - InstallerUrl: https://cdn.kde.org/ci-builds/network/ruqola/2.7/windows/ruqola-2.7-12485-windows-cl-msvc2022-x86_64.exe - InstallerSha256: 143075406CD1C917A93FAAD755D01BF7CADAB04311B6DE0BFE42C92E82C5B0E6 + InstallerUrl: https://cdn.kde.org/ci-builds/network/ruqola/2.7/windows/ruqola-2.7-12500-windows-cl-msvc2022-x86_64.exe + InstallerSha256: 5753D5B719D8875B9E37463480FD87890532BEBC674A8C10AAC6C7A072CDD559 InstallerSwitches: Custom: /AllUsers ManifestType: installer diff --git a/manifests/k/KatKoyn/KatKoynCore/2.4/KatKoyn.KatKoynCore.locale.en-US.yaml b/manifests/k/KatKoyn/KatKoynCore/2.4/KatKoyn.KatKoynCore.locale.en-US.yaml index 8d7d761f5f89..2c95907fc0f9 100644 --- a/manifests/k/KatKoyn/KatKoynCore/2.4/KatKoyn.KatKoynCore.locale.en-US.yaml +++ b/manifests/k/KatKoyn/KatKoynCore/2.4/KatKoyn.KatKoynCore.locale.en-US.yaml @@ -13,12 +13,13 @@ PackageName: KatKoyn Core PackageUrl: https://github.com/KatKoyn/katkoyn-client License: MIT Licence LicenseUrl: https://github.com/KatKoyn/katkoyn-client/blob/master/COPYING -Copyright: Copyright (c) 2009-2017 The Bitcoin Core developers +Copyright: © 2009-2017 The Bitcoin Core developers CopyrightUrl: https://github.com/KatKoyn/katkoyn-client/blob/master/COPYING ShortDescription: KatKoyn core software Description: KatKoyn is a cryptocurrency like Bitcoin and uses Scrypt instead of SHA-256 for the mining algorithm, much like Litecoin. Moniker: KAT -# Tags: +Tags: +- cryptocurrency ReleaseNotes: | This is the first release with new KatKoyn branding. All functionality is identical to the previous Nyancoin release. All previous Nyancoin keys, wallets, blockchain data and everything else is the same. @@ -45,7 +46,7 @@ ReleaseNotes: | New installations - Download the new version, or compile from source if required. - For GUI desktop versions, copy the executable to a suitable location. - - For katkoynd command line versions, it is recommended to run the executable under it's own user, with the files in a directory for that user. + - For katkoynd command line versions, it is recommended to run the executable under its own user, with the files in a directory for that user. - Start the executable, the default data location will be used. - Alternatively a custom location can be set using command line options. - Wait while the blockchain is downloaded - this will take several hours or more depending on system capabilities. diff --git a/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.installer.yaml b/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.installer.yaml index d201cf9fdbf8..d15728e63975 100644 --- a/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.installer.yaml +++ b/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.installer.yaml @@ -1,136 +1,136 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Kingsoft.WPSOffice.CN -PackageVersion: 12.1.0.25865 -InstallerType: nullsoft -InstallerSwitches: - Custom: -agreelicense -InstallerSuccessCodes: -- 1223 -UpgradeBehavior: install -Protocols: -- ksoapp -- ksocustomprotocol -- ksoet -- ksolink -- ksopdf -- ksoqing -- ksowebstartupet -- ksowebstartupwpp -- ksowebstartupwps -- ksowpp -- ksowps -- ksowpscloudsvr -FileExtensions: -- arw -- bmp -- cr2 -- cr3 -- crw -- csv -- dif -- dng -- doc -- docm -- docx -- dot -- dotm -- dotx -- dps -- dpso -- dpss -- dpsx -- dpt -- dptx -- dwg -- dxf -- emf -- epub -- et -- eto -- ets -- ett -- ettx -- etx -- gif -- heic -- ico -- iqy -- jfif -- jpe -- jpeg -- jpg -- mobi -- mrw -- nef -- ofd -- opg -- orf -- pbm -- pcx -- pdf -- pdfwpsshellnew -- pef -- pgm -- png -- pot -- potm -- potx -- ppa -- ppam -- ppm -- pps -- ppsm -- ppsx -- ppt -- pptm -- pptx -- raf -- ras -- rtf -- rw2 -- sldm -- sldx -- slk -- tbi -- tga -- tif -- tiff -- tppdf -- wap -- wbm -- wbmp -- wdp -- webp -- wmf -- wps -- wpso -- wpss -- wpsx -- wpt -- wptx -- x3f -- xbm -- xla -- xlam -- xlk -- xls -- xlsb -- xlsm -- xlsx -- xlt -- xltm -- xltx -- xpm -ProductCode: Kingsoft Office -ReleaseDate: 2026-04-14 -AppsAndFeaturesEntries: -- Publisher: Kingsoft Corp. - ProductCode: Kingsoft Office -Installers: -- Architecture: x86 - InstallerUrl: https://official-package.wpscdn.cn/wps/download/WPS_Setup_25865.exe - InstallerSha256: F9B54067077A7D143C06AEAE1DEBCE7C4CAE772F301851134003D7793AD9D804 -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Kingsoft.WPSOffice.CN +PackageVersion: 12.1.0.25865 +InstallerType: nullsoft +InstallerSwitches: + Custom: -agreelicense +InstallerSuccessCodes: +- 1223 +UpgradeBehavior: install +Protocols: +- ksoapp +- ksocustomprotocol +- ksoet +- ksolink +- ksopdf +- ksoqing +- ksowebstartupet +- ksowebstartupwpp +- ksowebstartupwps +- ksowpp +- ksowps +- ksowpscloudsvr +FileExtensions: +- arw +- bmp +- cr2 +- cr3 +- crw +- csv +- dif +- dng +- doc +- docm +- docx +- dot +- dotm +- dotx +- dps +- dpso +- dpss +- dpsx +- dpt +- dptx +- dwg +- dxf +- emf +- epub +- et +- eto +- ets +- ett +- ettx +- etx +- gif +- heic +- ico +- iqy +- jfif +- jpe +- jpeg +- jpg +- mobi +- mrw +- nef +- ofd +- opg +- orf +- pbm +- pcx +- pdf +- pdfwpsshellnew +- pef +- pgm +- png +- pot +- potm +- potx +- ppa +- ppam +- ppm +- pps +- ppsm +- ppsx +- ppt +- pptm +- pptx +- raf +- ras +- rtf +- rw2 +- sldm +- sldx +- slk +- tbi +- tga +- tif +- tiff +- tppdf +- wap +- wbm +- wbmp +- wdp +- webp +- wmf +- wps +- wpso +- wpss +- wpsx +- wpt +- wptx +- x3f +- xbm +- xla +- xlam +- xlk +- xls +- xlsb +- xlsm +- xlsx +- xlt +- xltm +- xltx +- xpm +ProductCode: Kingsoft Office +ReleaseDate: 2026-04-14 +AppsAndFeaturesEntries: +- Publisher: Kingsoft Corp. + ProductCode: Kingsoft Office +Installers: +- Architecture: x86 + InstallerUrl: https://official-package.wpscdn.cn/wps/download/WPS_Setup_25865.exe + InstallerSha256: 94BA7E304BB2B95B77023C7DC73808287B3771C83BA63C083F3E8A303A4D6CC5 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.locale.en-US.yaml b/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.locale.en-US.yaml index 51573693d6d3..412594360375 100644 --- a/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.locale.en-US.yaml +++ b/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.locale.en-US.yaml @@ -1,41 +1,41 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Kingsoft.WPSOffice.CN -PackageVersion: 12.1.0.25865 -PackageLocale: en-US -Publisher: Kingsoft Corp. -PublisherUrl: https://www.wps.cn/ -PublisherSupportUrl: https://helpdesk.wps.cn/ -PrivacyUrl: https://privacy.wps.cn/policies/privacy/wps-office -Author: Zhuhai Kingsoft Office Software Co., Ltd. -PackageName: WPS Office -PackageUrl: https://platform.wps.cn/ -License: Proprietary -LicenseUrl: https://privacy.wps.cn/policies/eula/personal-wps-office/ -Copyright: Copyright © 2026 Zhuhai Kingsoft Office Software Co., Ltd., Wuhan Kingsoft Office Software Co., Ltd., Beijing Kingsoft Office Software, Inc., Anhui Kingsoft Office Software Co., Ltd., Guangzhou Kingsoft Mobile Technology Co., Ltd. All rights reserved. -ShortDescription: Complete office suite with PDF editor -Description: WPS Office is a one-stop office service platform compatible with Word, Excel and PowerPoint. It supports PDF document editing and format conversion, and integrates features such as mind map, flowchart and form. -Tags: -- collaboration -- docs -- document -- editor -- excel -- office -- pdf -- powerpoint -- presentation -- sheet -- slide -- spreadsheet -- template -- word -- work -- writer -Agreements: -- AgreementLabel: End User License Agreement (EULA) - AgreementUrl: https://privacy.wps.cn/policies/eula/personal-wps-office/ -PurchaseUrl: https://vip.wps.cn/spa/2021/vip-service-web/index.html -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Kingsoft.WPSOffice.CN +PackageVersion: 12.1.0.25865 +PackageLocale: en-US +Publisher: Kingsoft Corp. +PublisherUrl: https://www.wps.cn/ +PublisherSupportUrl: https://helpdesk.wps.cn/ +PrivacyUrl: https://privacy.wps.cn/policies/privacy/wps-office +Author: Zhuhai Kingsoft Office Software Co., Ltd. +PackageName: WPS Office +PackageUrl: https://platform.wps.cn/ +License: Proprietary +LicenseUrl: https://privacy.wps.cn/policies/eula/personal-wps-office/ +Copyright: Copyright © 2026 Zhuhai Kingsoft Office Software Co., Ltd., Wuhan Kingsoft Office Software Co., Ltd., Beijing Kingsoft Office Software, Inc., Anhui Kingsoft Office Software Co., Ltd., Guangzhou Kingsoft Mobile Technology Co., Ltd. All rights reserved. +ShortDescription: Complete office suite with PDF editor +Description: WPS Office is a one-stop office service platform compatible with Word, Excel and PowerPoint. It supports PDF document editing and format conversion, and integrates features such as mind map, flowchart and form. +Tags: +- collaboration +- docs +- document +- editor +- excel +- office +- pdf +- powerpoint +- presentation +- sheet +- slide +- spreadsheet +- template +- word +- work +- writer +Agreements: +- AgreementLabel: End User License Agreement (EULA) + AgreementUrl: https://privacy.wps.cn/policies/eula/personal-wps-office/ +PurchaseUrl: https://vip.wps.cn/spa/2021/vip-service-web/index.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.locale.zh-CN.yaml b/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.locale.zh-CN.yaml index 5c3d7dfea40f..c0afcb31844d 100644 --- a/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.locale.zh-CN.yaml +++ b/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.locale.zh-CN.yaml @@ -1,41 +1,41 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: Kingsoft.WPSOffice.CN -PackageVersion: 12.1.0.25865 -PackageLocale: zh-CN -Publisher: Kingsoft Corp. -PublisherUrl: https://www.wps.cn/ -PublisherSupportUrl: https://helpdesk.wps.cn/ -PrivacyUrl: https://privacy.wps.cn/policies/privacy/wps-office -Author: 珠海金山办公软件有限公司 -PackageName: WPS Office -PackageUrl: https://platform.wps.cn/ -License: 专有软件 -LicenseUrl: https://privacy.wps.cn/policies/eula/personal-wps-office/ -Copyright: 版权所有© 2026 珠海金山办公软件有限公司、武汉金山办公软件有限公司、北京金山办公软件股份有限公司、安徽金山办公软件有限公司、广州金山移动科技有限公司。保留所有权利。 -ShortDescription: 一站式办公服务平台 -Description: WPS Office 一站式办公服务平台,具有可兼容 Word、Excel、PPT 三大办公套组的不同格式,支持 PDF 文档的编辑与格式转换,集成思维导图、流程图、表单等功能。 -Tags: -- excel -- office -- pdf -- powerpoint -- ppt -- word -- 办公 -- 协作 -- 协同 -- 幻灯片 -- 文字 -- 文档 -- 模板 -- 演示 -- 编辑器 -- 表格 -Agreements: -- AgreementLabel: 最终用户许可协议 (EULA) - AgreementUrl: https://privacy.wps.cn/policies/eula/personal-wps-office/ -PurchaseUrl: https://vip.wps.cn/spa/2021/vip-service-web/index.html -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Kingsoft.WPSOffice.CN +PackageVersion: 12.1.0.25865 +PackageLocale: zh-CN +Publisher: Kingsoft Corp. +PublisherUrl: https://www.wps.cn/ +PublisherSupportUrl: https://helpdesk.wps.cn/ +PrivacyUrl: https://privacy.wps.cn/policies/privacy/wps-office +Author: 珠海金山办公软件有限公司 +PackageName: WPS Office +PackageUrl: https://platform.wps.cn/ +License: 专有软件 +LicenseUrl: https://privacy.wps.cn/policies/eula/personal-wps-office/ +Copyright: 版权所有© 2026 珠海金山办公软件有限公司、武汉金山办公软件有限公司、北京金山办公软件股份有限公司、安徽金山办公软件有限公司、广州金山移动科技有限公司。保留所有权利。 +ShortDescription: 一站式办公服务平台 +Description: WPS Office 一站式办公服务平台,具有可兼容 Word、Excel、PPT 三大办公套组的不同格式,支持 PDF 文档的编辑与格式转换,集成思维导图、流程图、表单等功能。 +Tags: +- excel +- office +- pdf +- powerpoint +- ppt +- word +- 办公 +- 协作 +- 协同 +- 幻灯片 +- 文字 +- 文档 +- 模板 +- 演示 +- 编辑器 +- 表格 +Agreements: +- AgreementLabel: 最终用户许可协议 (EULA) + AgreementUrl: https://privacy.wps.cn/policies/eula/personal-wps-office/ +PurchaseUrl: https://vip.wps.cn/spa/2021/vip-service-web/index.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.yaml b/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.yaml index cc4ec7141acb..4c612c9ede10 100644 --- a/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.yaml +++ b/manifests/k/Kingsoft/WPSOffice/CN/12.1.0.25865/Kingsoft.WPSOffice.CN.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: Kingsoft.WPSOffice.CN -PackageVersion: 12.1.0.25865 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Kingsoft.WPSOffice.CN +PackageVersion: 12.1.0.25865 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/k/KraXen72/crankshaft/1.12.0/KraXen72.crankshaft.installer.yaml b/manifests/k/KraXen72/crankshaft/1.12.0/KraXen72.crankshaft.installer.yaml new file mode 100644 index 000000000000..5f37884ae3ac --- /dev/null +++ b/manifests/k/KraXen72/crankshaft/1.12.0/KraXen72.crankshaft.installer.yaml @@ -0,0 +1,17 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: KraXen72.crankshaft +PackageVersion: 1.12.0 +InstallerLocale: en-US +InstallerType: nullsoft +ProductCode: d5389f1f-98c4-5624-b2f4-2fd96405c258 +AppsAndFeaturesEntries: +- DisplayName: crankshaft 1.11.1 + ProductCode: d5389f1f-98c4-5624-b2f4-2fd96405c258 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/KraXen72/crankshaft/releases/download/1.12.0/crankshaft-setup-win-x64.exe + InstallerSha256: 633A587E9E67D1EA118B3AFC2EE3CDE37399C6FEB43993BA1F66CBD732705030 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/k/KraXen72/crankshaft/1.12.0/KraXen72.crankshaft.locale.en-US.yaml b/manifests/k/KraXen72/crankshaft/1.12.0/KraXen72.crankshaft.locale.en-US.yaml new file mode 100644 index 000000000000..570e099563af --- /dev/null +++ b/manifests/k/KraXen72/crankshaft/1.12.0/KraXen72.crankshaft.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: KraXen72.crankshaft +PackageVersion: 1.12.0 +PackageLocale: en-US +Publisher: KraXen72 +PublisherUrl: https://github.com/KraXen72 +PublisherSupportUrl: https://github.com/KraXen72/crankshaft/issues +Author: KraXen72 +PackageName: crankshaft +PackageUrl: https://github.com/KraXen72/crankshaft +License: GPL-3.0 +LicenseUrl: https://github.com/KraXen72/crankshaft/blob/HEAD/LICENSE +Copyright: Copyright © 2022 KraXen72 +ShortDescription: Crankshaft Krunker Client by KraXen72 +Tags: +- electron +- gatoclient +- krunker +- krunkerio +- lightweight +- typescript +- userscripts +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/KraXen72/crankshaft/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/k/KraXen72/crankshaft/1.12.0/KraXen72.crankshaft.yaml b/manifests/k/KraXen72/crankshaft/1.12.0/KraXen72.crankshaft.yaml new file mode 100644 index 000000000000..a6b1bba46bc8 --- /dev/null +++ b/manifests/k/KraXen72/crankshaft/1.12.0/KraXen72.crankshaft.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: KraXen72.crankshaft +PackageVersion: 1.12.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/k/Kraken/KrakenDesktop/1.11.2/Kraken.KrakenDesktop.installer.yaml b/manifests/k/Kraken/KrakenDesktop/1.11.2/Kraken.KrakenDesktop.installer.yaml deleted file mode 100644 index 463d5784e98c..000000000000 --- a/manifests/k/Kraken/KrakenDesktop/1.11.2/Kraken.KrakenDesktop.installer.yaml +++ /dev/null @@ -1,19 +0,0 @@ -# Automatically updated by the winget bot at 2026/Jan/05 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Kraken.KrakenDesktop -PackageVersion: 1.11.2 -InstallerType: wix -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2025-03-13 -AppsAndFeaturesEntries: -- UpgradeCode: "{239520EB-CBE7-4EF6-BC20-ABE5F0FE7F76}" - ProductCode: "{C75B6728-642A-4571-ADCC-EE6FCE0D87E3}" -Installers: -- Architecture: x64 - InstallerUrl: https://desktop-downloads.kraken.com/latest/KrakenDesktopInstaller.msi - InstallerSha256: D71F6008EB4475E8978571AEDEE1EDBB9F8CE9767382B8132BAF74930380FD1A - ProductCode: "{00C988E6-4864-4E00-B24B-E4FABF428E74}" -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/k/Kraken/KrakenDesktop/1.11.2/Kraken.KrakenDesktop.locale.en-US.yaml b/manifests/k/Kraken/KrakenDesktop/1.11.2/Kraken.KrakenDesktop.locale.en-US.yaml deleted file mode 100644 index 61bd7feae393..000000000000 --- a/manifests/k/Kraken/KrakenDesktop/1.11.2/Kraken.KrakenDesktop.locale.en-US.yaml +++ /dev/null @@ -1,17 +0,0 @@ -# Automatically updated by the winget bot at 2026/Jan/05 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Kraken.KrakenDesktop -PackageVersion: 1.11.2 -PackageLocale: en-US -Publisher: Payward Inc. -PackageName: Kraken Desktop -License: Proprietary -ShortDescription: Profesional desktop trading terminal for the Kraken cryptocurency exchange. -Tags: -- chart -- crypto -- finance -- trading -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/k/Kraken/KrakenDesktop/1.11.2/Kraken.KrakenDesktop.yaml b/manifests/k/Kraken/KrakenDesktop/1.11.2/Kraken.KrakenDesktop.yaml deleted file mode 100644 index 0bbd5d6501a3..000000000000 --- a/manifests/k/Kraken/KrakenDesktop/1.11.2/Kraken.KrakenDesktop.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2026/Jan/05 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: Kraken.KrakenDesktop -PackageVersion: 1.11.2 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 diff --git a/manifests/k/kangyu-california/PersistentWindows/.validation b/manifests/k/kangyu-california/PersistentWindows/.validation new file mode 100644 index 000000000000..7cace450f241 --- /dev/null +++ b/manifests/k/kangyu-california/PersistentWindows/.validation @@ -0,0 +1 @@ +{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"9671fd62-6a81-4e93-9604-c36df82513cc","TestPlan":"Policy-Test-2.5","PackagePath":"manifests/k/kangyu-california/PersistentWindows/5.76","CommitId":"22861596e064f817acc4c6974ac2150db5635c0e"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/k/kangyu-california/PersistentWindows/5.76/kangyu-california.PersistentWindows.installer.yaml b/manifests/k/kangyu-california/PersistentWindows/5.76/kangyu-california.PersistentWindows.installer.yaml new file mode 100644 index 000000000000..0d023476ab85 --- /dev/null +++ b/manifests/k/kangyu-california/PersistentWindows/5.76/kangyu-california.PersistentWindows.installer.yaml @@ -0,0 +1,17 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: kangyu-california.PersistentWindows +PackageVersion: '5.76' +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: PersistentWindows.exe +UpgradeBehavior: install +ReleaseDate: 2026-04-29 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/kangyu-california/PersistentWindows/releases/download/5.76/PersistentWindows5.76.zip + InstallerSha256: BBF8ED2EB3E662D6F9DC35B85047AD52BD4C793AFCF1951AFD0C9599C7403C79 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/k/kangyu-california/PersistentWindows/5.76/kangyu-california.PersistentWindows.locale.en-US.yaml b/manifests/k/kangyu-california/PersistentWindows/5.76/kangyu-california.PersistentWindows.locale.en-US.yaml new file mode 100644 index 000000000000..778e1551a0d8 --- /dev/null +++ b/manifests/k/kangyu-california/PersistentWindows/5.76/kangyu-california.PersistentWindows.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: kangyu-california.PersistentWindows +PackageVersion: '5.76' +PackageLocale: en-US +Publisher: kangyu-california +PublisherUrl: https://github.com/kangyu-california +PublisherSupportUrl: https://github.com/kangyu-california/PersistentWindows/issues +Author: kangyu-california +PackageName: PersistentWindows +PackageUrl: https://github.com/kangyu-california/PersistentWindows +License: GPL-3.0 +LicenseUrl: https://github.com/kangyu-california/PersistentWindows/blob/HEAD/LICENSE +ShortDescription: | + This project addresses a long-standing issue in Windows 7, 10, and 11, where windows get repositioned after events such as the system waking up, external monitor connections or disconnections, changes in monitor resolution, or during RDP reconnections. +Description: | + This project addresses a long-standing issue in Windows 7, 10, and 11, where windows get repositioned after events such as the system waking up, external monitor connections or disconnections, changes in monitor resolution (e.g., exiting full-screen gaming), or during RDP reconnections. The code was forked from ninjacrab.com/persistent-windows. +ReleaseNotes: |- + 1. Merge pull requests (#449, #453) from @mann1x (coauthored by Claude Opus AI) to fix a dozen of bugs, ranging from resource leaks to program slowness/stall/exception. + 2. Add new menu "Restore all minimized windows" to recover windows incorrectly hided by PW, by @mann1x and @claude +ReleaseNotesUrl: https://github.com/kangyu-california/PersistentWindows/releases/tag/5.76 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/k/kangyu-california/PersistentWindows/5.76/kangyu-california.PersistentWindows.yaml b/manifests/k/kangyu-california/PersistentWindows/5.76/kangyu-california.PersistentWindows.yaml new file mode 100644 index 000000000000..914e7250e4e5 --- /dev/null +++ b/manifests/k/kangyu-california/PersistentWindows/5.76/kangyu-california.PersistentWindows.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: kangyu-california.PersistentWindows +PackageVersion: '5.76' +DefaultLocale: en-US +ManifestType: version +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/LukiLabs/Craft/3.5.3/LukiLabs.Craft.installer.yaml b/manifests/l/LukiLabs/Craft/3.5.3/LukiLabs.Craft.installer.yaml index 207440fba506..4c616a87a83e 100644 --- a/manifests/l/LukiLabs/Craft/3.5.3/LukiLabs.Craft.installer.yaml +++ b/manifests/l/LukiLabs/Craft/3.5.3/LukiLabs.Craft.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: LukiLabs.Craft -PackageVersion: 3.5.3 -InstallerType: nullsoft -Scope: user -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -Protocols: -- craftdocs -ProductCode: e640d26b-c20e-51a9-b51a-c0dc9aeac168 -ReleaseDate: 2026-04-23 -Installers: -- Architecture: x64 - InstallerUrl: https://res.craft.do/windows-app/Craft%20Installer%203.5.3.exe - InstallerSha256: 8F260EB16355318971B30ED273B638007434588A4275662A76C76C70A207C024 -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: LukiLabs.Craft +PackageVersion: 3.5.3 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- craftdocs +ProductCode: e640d26b-c20e-51a9-b51a-c0dc9aeac168 +ReleaseDate: 2026-04-23 +Installers: +- Architecture: x64 + InstallerUrl: https://res.craft.do/windows-app/Craft%20Installer%203.5.3.exe + InstallerSha256: 1DC7DA7DB7C7CCFA75EB63F25CB94AD0808DABF27C2F1ACB6434940C2EA34F56 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/LukiLabs/Craft/3.5.3/LukiLabs.Craft.locale.en-US.yaml b/manifests/l/LukiLabs/Craft/3.5.3/LukiLabs.Craft.locale.en-US.yaml index 48363cba41b4..4a6b67cdae98 100644 --- a/manifests/l/LukiLabs/Craft/3.5.3/LukiLabs.Craft.locale.en-US.yaml +++ b/manifests/l/LukiLabs/Craft/3.5.3/LukiLabs.Craft.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: LukiLabs.Craft -PackageVersion: 3.5.3 -PackageLocale: en-US -Publisher: Luki Labs Ltd. -PublisherUrl: https://www.craft.do/ -PublisherSupportUrl: https://support.craft.do/ -PrivacyUrl: https://www.craft.do/privacy -Author: Luki Labs Limited -PackageName: Craft -PackageUrl: https://www.craft.do/ -License: Proprietary -LicenseUrl: https://www.craft.do/terms -Copyright: Copyright © 2026 Luki Labs Ltd. -ShortDescription: Create documents, which will make an impact. -Tags: -- backlink -- bi-directional-link -- block -- collaborate -- collaboration -- docs -- document -- editor -- markdown -- notes -- reference -- share -- team -ReleaseNotesUrl: https://www.craft.do/whats-new -PurchaseUrl: https://www.craft.do/pricing -Documentations: -- DocumentLabel: Getting Started Guide - DocumentUrl: https://www.craft.do/s/gy4OMeABSTIlUw -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: LukiLabs.Craft +PackageVersion: 3.5.3 +PackageLocale: en-US +Publisher: Luki Labs Ltd. +PublisherUrl: https://www.craft.do/ +PublisherSupportUrl: https://support.craft.do/ +PrivacyUrl: https://www.craft.do/privacy +Author: Luki Labs Limited +PackageName: Craft +PackageUrl: https://www.craft.do/ +License: Proprietary +LicenseUrl: https://www.craft.do/terms +Copyright: Copyright © 2026 Luki Labs Ltd. +ShortDescription: Create documents, which will make an impact. +Tags: +- backlink +- bi-directional-link +- block +- collaborate +- collaboration +- docs +- document +- editor +- markdown +- notes +- reference +- share +- team +ReleaseNotesUrl: https://www.craft.do/whats-new +PurchaseUrl: https://www.craft.do/pricing +Documentations: +- DocumentLabel: Getting Started Guide + DocumentUrl: https://www.craft.do/s/gy4OMeABSTIlUw +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LukiLabs/Craft/3.5.3/LukiLabs.Craft.locale.zh-CN.yaml b/manifests/l/LukiLabs/Craft/3.5.3/LukiLabs.Craft.locale.zh-CN.yaml index 602c07c688fd..307532dacb54 100644 --- a/manifests/l/LukiLabs/Craft/3.5.3/LukiLabs.Craft.locale.zh-CN.yaml +++ b/manifests/l/LukiLabs/Craft/3.5.3/LukiLabs.Craft.locale.zh-CN.yaml @@ -1,37 +1,37 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: LukiLabs.Craft -PackageVersion: 3.5.3 -PackageLocale: zh-CN -Publisher: Luki Labs Ltd. -PublisherUrl: https://www.craft.do/ -PublisherSupportUrl: https://support.craft.do/ -PrivacyUrl: https://www.craft.do/privacy -Author: Luki Labs Limited -PackageName: Craft -PackageUrl: https://www.craft.do/ -License: 专有软件 -LicenseUrl: https://www.craft.do/terms -Copyright: Copyright © 2026 Luki Labs Ltd. -ShortDescription: 创造有影响力的文档 -Tags: -- markdown -- 共享 -- 内容块 -- 协作 -- 协同 -- 双向链接 -- 反向链接 -- 团队 -- 引用 -- 文档 -- 笔记 -- 编辑器 -ReleaseNotesUrl: https://www.craft.do/whats-new -PurchaseUrl: https://www.craft.do/pricing -Documentations: -- DocumentLabel: 新手教程 - DocumentUrl: https://www.craft.do/s/gy4OMeABSTIlUw -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: LukiLabs.Craft +PackageVersion: 3.5.3 +PackageLocale: zh-CN +Publisher: Luki Labs Ltd. +PublisherUrl: https://www.craft.do/ +PublisherSupportUrl: https://support.craft.do/ +PrivacyUrl: https://www.craft.do/privacy +Author: Luki Labs Limited +PackageName: Craft +PackageUrl: https://www.craft.do/ +License: 专有软件 +LicenseUrl: https://www.craft.do/terms +Copyright: Copyright © 2026 Luki Labs Ltd. +ShortDescription: 创造有影响力的文档 +Tags: +- markdown +- 共享 +- 内容块 +- 协作 +- 协同 +- 双向链接 +- 反向链接 +- 团队 +- 引用 +- 文档 +- 笔记 +- 编辑器 +ReleaseNotesUrl: https://www.craft.do/whats-new +PurchaseUrl: https://www.craft.do/pricing +Documentations: +- DocumentLabel: 新手教程 + DocumentUrl: https://www.craft.do/s/gy4OMeABSTIlUw +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/LukiLabs/Craft/3.5.3/LukiLabs.Craft.yaml b/manifests/l/LukiLabs/Craft/3.5.3/LukiLabs.Craft.yaml index c3bc160235a5..239f4a430de8 100644 --- a/manifests/l/LukiLabs/Craft/3.5.3/LukiLabs.Craft.yaml +++ b/manifests/l/LukiLabs/Craft/3.5.3/LukiLabs.Craft.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: LukiLabs.Craft -PackageVersion: 3.5.3 -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: LukiLabs.Craft +PackageVersion: 3.5.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.installer.yaml b/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.installer.yaml index 4a9301197f69..a473a4b6a75f 100644 --- a/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.installer.yaml +++ b/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.installer.yaml @@ -1,19 +1,19 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: leezer3.OpenBVE -PackageVersion: 1.11.3.4 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: '{D617A45D-C2F6-44D1-A85C-CA7FFA91F7FC}_is1' -ReleaseDate: 2025-12-29 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/leezer3/OpenBVE/releases/download/1.11.3.4/openBVE-1.11.3.4-setup.exe - InstallerSha256: 9619CBE05868436EF88EE7CF19F903A6A0A1C576295340F54BA978D3A136AC76 -- Architecture: x64 - InstallerUrl: https://github.com/leezer3/OpenBVE/releases/download/1.11.3.4/openBVE-1.11.3.4-setup.exe - InstallerSha256: 9619CBE05868436EF88EE7CF19F903A6A0A1C576295340F54BA978D3A136AC76 -ManifestType: installer -ManifestVersion: 1.10.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: leezer3.OpenBVE +PackageVersion: 1.11.3.4 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +ProductCode: '{D617A45D-C2F6-44D1-A85C-CA7FFA91F7FC}_is1' +ReleaseDate: 2025-12-29 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/leezer3/OpenBVE/releases/download/1.11.3.4/openBVE-1.11.3.4-setup.exe + InstallerSha256: D2A46B8F18CD2A0E45B968C48396DB1A9D08D159EDA6866FB597A6ED3536C30F +- Architecture: x64 + InstallerUrl: https://github.com/leezer3/OpenBVE/releases/download/1.11.3.4/openBVE-1.11.3.4-setup.exe + InstallerSha256: D2A46B8F18CD2A0E45B968C48396DB1A9D08D159EDA6866FB597A6ED3536C30F +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.locale.en-US.yaml b/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.locale.en-US.yaml index 7bb4fcbd4788..1f7c9b91d44b 100644 --- a/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.locale.en-US.yaml +++ b/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.locale.en-US.yaml @@ -1,48 +1,48 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: leezer3.OpenBVE -PackageVersion: 1.11.3.4 -PackageLocale: en-US -Publisher: The OpenBVE Project -PublisherUrl: https://openbve-project.net/ -PublisherSupportUrl: https://github.com/leezer3/OpenBVE/issues -Author: Christopher Lees -PackageName: openBVE -PackageUrl: https://openbve-project.net/ -License: BSD-2-Clause -LicenseUrl: https://openbve-project.net/copyright/ -Copyright: © 2007 - 2025 The OpenBVE Project, and released into the Public Domain. -ShortDescription: A license-free, open source, free of charge train driving simulator. -Description: |- - OpenBVE is a license-free, open source, free of charge train driving simulator. - This program includes detailed per-car simulation of the brake systems, friction, air resistance, toppling and more. In 3D cabs, the driving experience is augmented with forces that shake your simulated body upon acceleration and braking, as well as in curves. Besides that, OpenBVE features a 3D positional sound system best enjoyed with surround speakers, train exteriors and timetables for the current run. Finally, via the main menu, routes and trains be easily selected to start a new session, the controls can be configured to keyboard or joystick devices, and a variety of options can be selected. - Compared to other simulators of the genre, especially compared to commercial games, OpenBVE has its main focus on realism, not necessarily on user-friendliness. You should be willing to study operational manuals for the routes and trains you want to drive, and will in many cases not get along by just memorizing a few keystrokes. If you can identify with this focus, OpenBVE might be the right simulator for you. -Tags: -- game -- gaming -- metro -- railway -- simulate -- simulation -- simulator -- subway -- train -- underground -ReleaseNotes: |- - The last release of 2025.... - Significant Changes: - - New: Introduce IRawRuntime2 interface. - - Change: Improve the display of the JumpToPosition value in Route Viewer. - - Fix: GL Menu not working in 1.11.3.2 - - Fix: Old renderer not working correctly in 1.11.3.2 - - Fix: Issue when uncoupling some trains. - - Fix: Particle sources were updating whilst in a menu. - - Fix: Incorrect particle flow direction when reversing. - - Fix: Constant speed device not working after a backwards jump. -ReleaseNotesUrl: https://github.com/leezer3/OpenBVE/releases/tag/1.11.3.4 -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://github.com/leezer3/OpenBVE/wiki -ManifestType: defaultLocale -ManifestVersion: 1.10.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: leezer3.OpenBVE +PackageVersion: 1.11.3.4 +PackageLocale: en-US +Publisher: The OpenBVE Project +PublisherUrl: https://openbve-project.net/ +PublisherSupportUrl: https://github.com/leezer3/OpenBVE/issues +Author: Christopher Lees +PackageName: openBVE +PackageUrl: https://openbve-project.net/ +License: BSD-2-Clause +LicenseUrl: https://openbve-project.net/copyright/ +Copyright: © 2007 - 2025 The OpenBVE Project, and released into the Public Domain. +ShortDescription: A license-free, open source, free of charge train driving simulator. +Description: |- + OpenBVE is a license-free, open source, free of charge train driving simulator. + This program includes detailed per-car simulation of the brake systems, friction, air resistance, toppling and more. In 3D cabs, the driving experience is augmented with forces that shake your simulated body upon acceleration and braking, as well as in curves. Besides that, OpenBVE features a 3D positional sound system best enjoyed with surround speakers, train exteriors and timetables for the current run. Finally, via the main menu, routes and trains be easily selected to start a new session, the controls can be configured to keyboard or joystick devices, and a variety of options can be selected. + Compared to other simulators of the genre, especially compared to commercial games, OpenBVE has its main focus on realism, not necessarily on user-friendliness. You should be willing to study operational manuals for the routes and trains you want to drive, and will in many cases not get along by just memorizing a few keystrokes. If you can identify with this focus, OpenBVE might be the right simulator for you. +Tags: +- game +- gaming +- metro +- railway +- simulate +- simulation +- simulator +- subway +- train +- underground +ReleaseNotes: |- + The last release of 2025.... + Significant Changes: + - New: Introduce IRawRuntime2 interface. + - Change: Improve the display of the JumpToPosition value in Route Viewer. + - Fix: GL Menu not working in 1.11.3.2 + - Fix: Old renderer not working correctly in 1.11.3.2 + - Fix: Issue when uncoupling some trains. + - Fix: Particle sources were updating whilst in a menu. + - Fix: Incorrect particle flow direction when reversing. + - Fix: Constant speed device not working after a backwards jump. +ReleaseNotesUrl: https://github.com/leezer3/OpenBVE/releases/tag/1.11.3.4 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/leezer3/OpenBVE/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.locale.zh-CN.yaml b/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.locale.zh-CN.yaml index f3e8067a51d5..a9fd38975a23 100644 --- a/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.locale.zh-CN.yaml +++ b/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.locale.zh-CN.yaml @@ -1,26 +1,26 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json - -PackageIdentifier: leezer3.OpenBVE -PackageVersion: 1.11.3.4 -PackageLocale: zh-CN -ShortDescription: 免许可证、开源、免费的火车驾驶模拟器。 -Description: |- - OpenBVE 是一款免许可证、开源、免费的火车驾驶模拟器。 - 该程序包括制动系统、摩擦、空气阻力、倾覆等每辆车的详细模拟。在三维驾驶室中,加速、制动和转弯时模拟车身的晃动会增强驾驶体验。除此以外,OpenBVE 还配备了 3D 定位声音系统,可通过搭配环绕扬声器、列车外部和当前运行时刻表以体验最佳效果。最后,可以在主菜单轻松选择路线和列车以开始新的会话,可以将键盘或操纵杆设备配置为控制器,同时还有各种选项可选。 - 与其它同类模拟器,尤其是与商业游戏相比,OpenBVE 的重点在于逼真性而不一定是用户友好性。你可能需要研究你所驾驶的路线和列车的操作手册,并且在大多数情况下仅靠记住几个按键是无法完成任务的。如果你能认同这一重点,OpenBVE 可能就是适合你的模拟器。 -Tags: -- 列车 -- 地铁 -- 模拟 -- 模拟器 -- 游戏 -- 火车 -- 轨道交通 -- 铁路 -ReleaseNotesUrl: https://github.com/leezer3/OpenBVE/releases/tag/1.11.3.4 -Documentations: -- DocumentLabel: 维基 - DocumentUrl: https://github.com/leezer3/OpenBVE/wiki -ManifestType: locale -ManifestVersion: 1.10.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: leezer3.OpenBVE +PackageVersion: 1.11.3.4 +PackageLocale: zh-CN +ShortDescription: 免许可证、开源、免费的火车驾驶模拟器。 +Description: |- + OpenBVE 是一款免许可证、开源、免费的火车驾驶模拟器。 + 该程序包括制动系统、摩擦、空气阻力、倾覆等每辆车的详细模拟。在三维驾驶室中,加速、制动和转弯时模拟车身的晃动会增强驾驶体验。除此以外,OpenBVE 还配备了 3D 定位声音系统,可通过搭配环绕扬声器、列车外部和当前运行时刻表以体验最佳效果。最后,可以在主菜单轻松选择路线和列车以开始新的会话,可以将键盘或操纵杆设备配置为控制器,同时还有各种选项可选。 + 与其它同类模拟器,尤其是与商业游戏相比,OpenBVE 的重点在于逼真性而不一定是用户友好性。你可能需要研究你所驾驶的路线和列车的操作手册,并且在大多数情况下仅靠记住几个按键是无法完成任务的。如果你能认同这一重点,OpenBVE 可能就是适合你的模拟器。 +Tags: +- 列车 +- 地铁 +- 模拟 +- 模拟器 +- 游戏 +- 火车 +- 轨道交通 +- 铁路 +ReleaseNotesUrl: https://github.com/leezer3/OpenBVE/releases/tag/1.11.3.4 +Documentations: +- DocumentLabel: 维基 + DocumentUrl: https://github.com/leezer3/OpenBVE/wiki +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.yaml b/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.yaml index 5ee470eafcf2..de617fcc0169 100644 --- a/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.yaml +++ b/manifests/l/leezer3/OpenBVE/1.11.3.4/leezer3.OpenBVE.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: leezer3.OpenBVE -PackageVersion: 1.11.3.4 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: leezer3.OpenBVE +PackageVersion: 1.11.3.4 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.3.6/legeling.PromptHub.installer.yaml b/manifests/l/legeling/PromptHub/0.3.6/legeling.PromptHub.installer.yaml index 39b80e6d7529..9d2c290adfd8 100644 --- a/manifests/l/legeling/PromptHub/0.3.6/legeling.PromptHub.installer.yaml +++ b/manifests/l/legeling/PromptHub/0.3.6/legeling.PromptHub.installer.yaml @@ -1,32 +1,32 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: legeling.PromptHub -PackageVersion: 0.3.6 -InstallerType: nullsoft -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ProductCode: 16181c11-b075-53d6-87cb-f192f9b74217 -ReleaseDate: 2026-01-07 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.3.6/PromptHub-Setup-0.3.6-x64.exe - InstallerSha256: CC425A46E9964352DD5AECBA5148C5AD030B22B7C964C36D4929243915C01313 - InstallerSwitches: - Custom: /currentuser -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.3.6/PromptHub-Setup-0.3.6-x64.exe - InstallerSha256: CC425A46E9964352DD5AECBA5148C5AD030B22B7C964C36D4929243915C01313 - InstallerSwitches: - Custom: /allusers -- Architecture: arm64 - Scope: machine - InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.3.6/PromptHub-Setup-0.3.6-arm64.exe - InstallerSha256: B151C1E7B6C725C4B182CD020D87D6E1C34C0395F22DA8C2F67104F24C7D45F9 - InstallerSwitches: - Custom: /allusers -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: legeling.PromptHub +PackageVersion: 0.3.6 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 16181c11-b075-53d6-87cb-f192f9b74217 +ReleaseDate: 2026-01-07 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.3.6/PromptHub-Setup-0.3.6-x64.exe + InstallerSha256: 6A5327D92143370C70B1B81A7BCEB962B74AB95FCD06E3EBDB537A8AE313A52D + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.3.6/PromptHub-Setup-0.3.6-x64.exe + InstallerSha256: 6A5327D92143370C70B1B81A7BCEB962B74AB95FCD06E3EBDB537A8AE313A52D + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.3.6/PromptHub-Setup-0.3.6-arm64.exe + InstallerSha256: FF6BDBCAD4BB8637443C485342D46A44121B74A050F7FE893B56E6EAD8EFEF74 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.3.6/legeling.PromptHub.locale.en-US.yaml b/manifests/l/legeling/PromptHub/0.3.6/legeling.PromptHub.locale.en-US.yaml index 5b0b0928c945..ffea740c00be 100644 --- a/manifests/l/legeling/PromptHub/0.3.6/legeling.PromptHub.locale.en-US.yaml +++ b/manifests/l/legeling/PromptHub/0.3.6/legeling.PromptHub.locale.en-US.yaml @@ -1,31 +1,31 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: legeling.PromptHub -PackageVersion: 0.3.6 -PackageLocale: en-US -ShortDescription: An open-source, local-first AI prompt management tool that helps you efficiently manage, version-control, and reuse your prompts -Description: |- - Tired of searching for prompts in notebooks, documents, and chat histories? PromptHub lets you manage prompts like code — version control, variable templates, multi-model testing, all local and privacy-first. - ✨ Features - - 📝 Prompt Management - Create, edit, delete with folder and tag organization - - ⭐ Favorites - Quick access to frequently used prompts - - 🔄 Version Control - Auto-save history with view and rollback support - - 🔧 Variable System - Template variables {{variable}} with dynamic replacement - - 📋 One-Click Copy - Quickly copy prompts to clipboard - - 🔍 Full-Text Search - Fast search across titles, descriptions, and content - - 📤 Data Export - JSON format backup and restore - - 🎨 Theme Customization - Dark/Light/System modes with multiple accent colors - - 🌐 Multi-Language - Chinese and English interface support - - 💾 Local Storage - All data stored locally for privacy - - 🖥️ Cross-Platform - Support for macOS, Windows, Linux - - 📊 List View - Table-style display with sorting and batch operations - - 🤖 AI Testing - Built-in multi-model testing with 18+ providers -Tags: -- ai -- chatbot -- large-language-model -- llm -- prompt -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: legeling.PromptHub +PackageVersion: 0.3.6 +PackageLocale: en-US +ShortDescription: An open-source, local-first AI prompt management tool that helps you efficiently manage, version-control, and reuse your prompts +Description: |- + Tired of searching for prompts in notebooks, documents, and chat histories? PromptHub lets you manage prompts like code — version control, variable templates, multi-model testing, all local and privacy-first. + ✨ Features + - 📝 Prompt Management - Create, edit, delete with folder and tag organization + - ⭐ Favorites - Quick access to frequently used prompts + - 🔄 Version Control - Auto-save history with view and rollback support + - 🔧 Variable System - Template variables {{variable}} with dynamic replacement + - 📋 One-Click Copy - Quickly copy prompts to clipboard + - 🔍 Full-Text Search - Fast search across titles, descriptions, and content + - 📤 Data Export - JSON format backup and restore + - 🎨 Theme Customization - Dark/Light/System modes with multiple accent colors + - 🌐 Multi-Language - Chinese and English interface support + - 💾 Local Storage - All data stored locally for privacy + - 🖥️ Cross-Platform - Support for macOS, Windows, Linux + - 📊 List View - Table-style display with sorting and batch operations + - 🤖 AI Testing - Built-in multi-model testing with 18+ providers +Tags: +- ai +- chatbot +- large-language-model +- llm +- prompt +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.3.6/legeling.PromptHub.locale.zh-CN.yaml b/manifests/l/legeling/PromptHub/0.3.6/legeling.PromptHub.locale.zh-CN.yaml index 40fc18db7eeb..69219d625713 100644 --- a/manifests/l/legeling/PromptHub/0.3.6/legeling.PromptHub.locale.zh-CN.yaml +++ b/manifests/l/legeling/PromptHub/0.3.6/legeling.PromptHub.locale.zh-CN.yaml @@ -1,64 +1,64 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: legeling.PromptHub -PackageVersion: 0.3.6 -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 - - 🎥 Prompt 视频预览:支持为 Prompt 添加视频预览,适用于视频生成类 Prompt,支持 MP4/WebM/MOV 格式 - - Prompt Video Preview: Support generating video previews for prompts, suitable for video generation prompts (MP4/WebM/MOV) - - 📤 视频文件支持:支持上传、播放本地视频文件,均由本地加密存储 - - Video File Support: Support upload and playback of local video files, securely stored locally - - ☁️ 视频同步:WebDAV 同步现已包含视频文件 - - Video Sync: WebDAV sync now includes video files - 优化 / Improvements - - ⚡️ Modal 动画加速:大幅提升所有弹窗的打开/关闭速度,优化过渡体验 - - Faster Modals: Significantly improved modal animation speed for snappier interactions - - 🎨 UI 一致性:统一创建与编辑界面的按钮样式,添加保存图标 - - UI Consistency: Standardized button styles and icons across create/edit modals - - 🌍 国际化完善:补全法语、德语、西班牙语、日语、繁体中文的缺失翻译 - - i18n Complete: Added missing translations for FR, DE, ES, JA, and ZH-TW - - 🔄 过渡动画优化:优化从详情页到编辑页的切换动画,消除视觉跳动 - - Transition Polish: Smoother transition between detail and edit modals - 修复 / Fixed - - 🎨 下拉菜单 UI 优化:修复新建下拉菜单的选中样式问题,采用悬浮圆角设计 - - Dropdown UI Polish: Fixed selection style in create dropdown with floating rounded design - - 🐛 WebDAV 解析修复:修复 manifest.json 解析错误问题,增强跨平台兼容性 - - WebDAV Parse Fix: Fixed manifest.json parsing error for better cross-platform compatibility - - 🐛 更新检测修复:修复 macOS 和 Windows ARM64 平台的更新检测逻辑 - - Updater Fix: Fixed update detection logic for macOS and Windows ARM64 -ReleaseNotesUrl: https://github.com/legeling/PromptHub/blob/HEAD/CHANGELOG.md#036---2026-01-07 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: legeling.PromptHub +PackageVersion: 0.3.6 +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 + - 🎥 Prompt 视频预览:支持为 Prompt 添加视频预览,适用于视频生成类 Prompt,支持 MP4/WebM/MOV 格式 + - Prompt Video Preview: Support generating video previews for prompts, suitable for video generation prompts (MP4/WebM/MOV) + - 📤 视频文件支持:支持上传、播放本地视频文件,均由本地加密存储 + - Video File Support: Support upload and playback of local video files, securely stored locally + - ☁️ 视频同步:WebDAV 同步现已包含视频文件 + - Video Sync: WebDAV sync now includes video files + 优化 / Improvements + - ⚡️ Modal 动画加速:大幅提升所有弹窗的打开/关闭速度,优化过渡体验 + - Faster Modals: Significantly improved modal animation speed for snappier interactions + - 🎨 UI 一致性:统一创建与编辑界面的按钮样式,添加保存图标 + - UI Consistency: Standardized button styles and icons across create/edit modals + - 🌍 国际化完善:补全法语、德语、西班牙语、日语、繁体中文的缺失翻译 + - i18n Complete: Added missing translations for FR, DE, ES, JA, and ZH-TW + - 🔄 过渡动画优化:优化从详情页到编辑页的切换动画,消除视觉跳动 + - Transition Polish: Smoother transition between detail and edit modals + 修复 / Fixed + - 🎨 下拉菜单 UI 优化:修复新建下拉菜单的选中样式问题,采用悬浮圆角设计 + - Dropdown UI Polish: Fixed selection style in create dropdown with floating rounded design + - 🐛 WebDAV 解析修复:修复 manifest.json 解析错误问题,增强跨平台兼容性 + - WebDAV Parse Fix: Fixed manifest.json parsing error for better cross-platform compatibility + - 🐛 更新检测修复:修复 macOS 和 Windows ARM64 平台的更新检测逻辑 + - Updater Fix: Fixed update detection logic for macOS and Windows ARM64 +ReleaseNotesUrl: https://github.com/legeling/PromptHub/blob/HEAD/CHANGELOG.md#036---2026-01-07 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.3.6/legeling.PromptHub.yaml b/manifests/l/legeling/PromptHub/0.3.6/legeling.PromptHub.yaml index a89ae0129c24..760ff715c3b0 100644 --- a/manifests/l/legeling/PromptHub/0.3.6/legeling.PromptHub.yaml +++ b/manifests/l/legeling/PromptHub/0.3.6/legeling.PromptHub.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: legeling.PromptHub -PackageVersion: 0.3.6 -DefaultLocale: zh-CN -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: legeling.PromptHub +PackageVersion: 0.3.6 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.installer.yaml b/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.installer.yaml index 2a2a8776d05a..f8af3c96f474 100644 --- a/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.installer.yaml +++ b/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.installer.yaml @@ -1,32 +1,32 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: legeling.PromptHub -PackageVersion: 0.3.9 -InstallerType: nullsoft -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ProductCode: 16181c11-b075-53d6-87cb-f192f9b74217 -ReleaseDate: 2026-01-24 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.3.9/PromptHub-Setup-0.3.9-x64.exe - InstallerSha256: F404E0732762B2E047FD6F088000E735F969E5736D3853DD8EA7F1EC6A8B8DF5 - InstallerSwitches: - Custom: /currentuser -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.3.9/PromptHub-Setup-0.3.9-x64.exe - InstallerSha256: F404E0732762B2E047FD6F088000E735F969E5736D3853DD8EA7F1EC6A8B8DF5 - InstallerSwitches: - Custom: /allusers -- Architecture: arm64 - Scope: machine - InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.3.9/PromptHub-Setup-0.3.9-arm64.exe - InstallerSha256: BB14F4ED6EDFAA7889B87717FFC1FC8CFC7E4C720346704A7291ED54C37FA875 - InstallerSwitches: - Custom: /allusers -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: legeling.PromptHub +PackageVersion: 0.3.9 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 16181c11-b075-53d6-87cb-f192f9b74217 +ReleaseDate: 2026-01-24 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.3.9/PromptHub-Setup-0.3.9-x64.exe + InstallerSha256: B021D734EA4E1CF93990C55140CC087D139DAB181F66080F75FDF9607568F688 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.3.9/PromptHub-Setup-0.3.9-x64.exe + InstallerSha256: B021D734EA4E1CF93990C55140CC087D139DAB181F66080F75FDF9607568F688 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.3.9/PromptHub-Setup-0.3.9-arm64.exe + InstallerSha256: 6A861BC4A28C5EC0D195541AC547DE5580B38EA64D723E2CDF6CF49E1D79EA3B + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.locale.en-US.yaml b/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.locale.en-US.yaml index dfcc0754f23d..519af82cc760 100644 --- a/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.locale.en-US.yaml +++ b/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.locale.en-US.yaml @@ -1,31 +1,31 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: legeling.PromptHub -PackageVersion: 0.3.9 -PackageLocale: en-US -ShortDescription: An open-source, local-first AI prompt management tool that helps you efficiently manage, version-control, and reuse your prompts -Description: |- - Tired of searching for prompts in notebooks, documents, and chat histories? PromptHub lets you manage prompts like code — version control, variable templates, multi-model testing, all local and privacy-first. - ✨ Features - - 📝 Prompt Management - Create, edit, delete with folder and tag organization - - ⭐ Favorites - Quick access to frequently used prompts - - 🔄 Version Control - Auto-save history with view and rollback support - - 🔧 Variable System - Template variables {{variable}} with dynamic replacement - - 📋 One-Click Copy - Quickly copy prompts to clipboard - - 🔍 Full-Text Search - Fast search across titles, descriptions, and content - - 📤 Data Export - JSON format backup and restore - - 🎨 Theme Customization - Dark/Light/System modes with multiple accent colors - - 🌐 Multi-Language - Chinese and English interface support - - 💾 Local Storage - All data stored locally for privacy - - 🖥️ Cross-Platform - Support for macOS, Windows, Linux - - 📊 List View - Table-style display with sorting and batch operations - - 🤖 AI Testing - Built-in multi-model testing with 18+ providers -Tags: -- ai -- chatbot -- large-language-model -- llm -- prompt -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: legeling.PromptHub +PackageVersion: 0.3.9 +PackageLocale: en-US +ShortDescription: An open-source, local-first AI prompt management tool that helps you efficiently manage, version-control, and reuse your prompts +Description: |- + Tired of searching for prompts in notebooks, documents, and chat histories? PromptHub lets you manage prompts like code — version control, variable templates, multi-model testing, all local and privacy-first. + ✨ Features + - 📝 Prompt Management - Create, edit, delete with folder and tag organization + - ⭐ Favorites - Quick access to frequently used prompts + - 🔄 Version Control - Auto-save history with view and rollback support + - 🔧 Variable System - Template variables {{variable}} with dynamic replacement + - 📋 One-Click Copy - Quickly copy prompts to clipboard + - 🔍 Full-Text Search - Fast search across titles, descriptions, and content + - 📤 Data Export - JSON format backup and restore + - 🎨 Theme Customization - Dark/Light/System modes with multiple accent colors + - 🌐 Multi-Language - Chinese and English interface support + - 💾 Local Storage - All data stored locally for privacy + - 🖥️ Cross-Platform - Support for macOS, Windows, Linux + - 📊 List View - Table-style display with sorting and batch operations + - 🤖 AI Testing - Built-in multi-model testing with 18+ providers +Tags: +- ai +- chatbot +- large-language-model +- llm +- prompt +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.locale.zh-CN.yaml b/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.locale.zh-CN.yaml index 17ff0a4b7479..1de6d6f70885 100644 --- a/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.locale.zh-CN.yaml +++ b/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.locale.zh-CN.yaml @@ -1,55 +1,55 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: legeling.PromptHub -PackageVersion: 0.3.9 -PackageLocale: zh-CN -Publisher: legeling -PublisherUrl: https://github.com/legeling -PublisherSupportUrl: https://github.com/legeling/PromptHub/issues -Author: 凌小添 -PackageName: PromptHub -PackageUrl: https://github.com/legeling/PromptHub -License: AGPL-3.0 -LicenseUrl: https://github.com/legeling/PromptHub/blob/HEAD/LICENSE -Copyright: © 2026 PromptHub -ShortDescription: 一款开源、纯本地 AI Prompt 管理工具,帮助你高效管理、版本控制和复用 Prompt -Description: |- - 还在笔记本、文档和聊天记录里到处翻找 Prompt?PromptHub 让你像管理代码一样管理 Prompt — 支持版本控制、变量模板、多模型测试,所有数据都存在本地,隐私安全有保障。 - ✨ 功能特性 - - 📝 Prompt 管理 - 创建、编辑、删除,支持文件夹和标签分类 - - ⭐ 收藏系统 - 快速收藏常用 Prompt,一键访问 - - 🔄 版本控制 - 自动保存历史版本,支持查看和回滚 - - 🔧 变量系统 - 模板变量 {{variable}},动态替换 - - 📋 一键复制 - 快速复制 Prompt 到剪贴板 - - 🔍 全文搜索 - 快速搜索标题、描述和内容 - - 📤 数据导出 - JSON 格式备份和恢复 - - 🎨 主题定制 - 深色/浅色/跟随系统,多种主题色可选 - - 🌐 多语言 - 支持中文和英文界面 - - 💾 本地存储 - 所有数据存储在本地,隐私安全有保障 - - 🖥️ 跨平台 - 支持 macOS、Windows、Linux - - 📊 列表视图 - 表格式展示 Prompt,支持排序和批量操作 - - 🤖 AI 测试 - 内置多模型测试,支持 18+ 服务商 -Tags: -- 人工智能 -- 大语言模型 -- 提示词 -- 聊天机器人 -ReleaseNotes: |- - 新功能 / Added - - ⌨️ 局部快捷键模式:新增局部快捷键支持,可在设置中为每个快捷键独立选择"全局"或"局部"模式,局部模式仅在应用窗口激活时生效,避免与其他应用冲突 - - Local Shortcut Mode: Added per-shortcut mode selection (Global/Local) in settings. Local shortcuts only work when the app window is focused, avoiding conflicts with other applications - - 📤 分享为 JSON:新增"分享为 JSON"功能,支持将 Prompt 序列化为 JSON 并复制到剪贴板,方便分享和迁移 - - Share as JSON: Added "Share as JSON" feature to serialize prompts for easy sharing and migration - - 📥 剪贴板智能导入增强:剪贴板导入现在打开完整的编辑窗口而非简单预览,支持导入前修改所有字段 - - Enhanced Clipboard Import: Clipboard import now opens the full editor instead of a preview modal, allowing field modifications before saving - 优化 / Improvements - - 🎨 右键菜单增强:在列表、表格、看板视图的右键菜单中新增"分享为 JSON"选项 - - Context Menu Enhancement: Added "Share as JSON" option to context menus across all view modes - - ✨ 详情页分享按钮:在 Prompt 详情页头部新增分享按钮,点击即可快速分享 - - Detail View Share Button: Added a share button in the prompt detail header for quick access - - 🔄 防重复导入:分享后会设置标记,防止立即将自己分享的内容再次导入 - - Prevent Self-Import: Shared content is marked to prevent immediate re-import of your own prompts -ReleaseNotesUrl: https://github.com/legeling/PromptHub/blob/HEAD/CHANGELOG.md#039---2026-01-24 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: legeling.PromptHub +PackageVersion: 0.3.9 +PackageLocale: zh-CN +Publisher: legeling +PublisherUrl: https://github.com/legeling +PublisherSupportUrl: https://github.com/legeling/PromptHub/issues +Author: 凌小添 +PackageName: PromptHub +PackageUrl: https://github.com/legeling/PromptHub +License: AGPL-3.0 +LicenseUrl: https://github.com/legeling/PromptHub/blob/HEAD/LICENSE +Copyright: © 2026 PromptHub +ShortDescription: 一款开源、纯本地 AI Prompt 管理工具,帮助你高效管理、版本控制和复用 Prompt +Description: |- + 还在笔记本、文档和聊天记录里到处翻找 Prompt?PromptHub 让你像管理代码一样管理 Prompt — 支持版本控制、变量模板、多模型测试,所有数据都存在本地,隐私安全有保障。 + ✨ 功能特性 + - 📝 Prompt 管理 - 创建、编辑、删除,支持文件夹和标签分类 + - ⭐ 收藏系统 - 快速收藏常用 Prompt,一键访问 + - 🔄 版本控制 - 自动保存历史版本,支持查看和回滚 + - 🔧 变量系统 - 模板变量 {{variable}},动态替换 + - 📋 一键复制 - 快速复制 Prompt 到剪贴板 + - 🔍 全文搜索 - 快速搜索标题、描述和内容 + - 📤 数据导出 - JSON 格式备份和恢复 + - 🎨 主题定制 - 深色/浅色/跟随系统,多种主题色可选 + - 🌐 多语言 - 支持中文和英文界面 + - 💾 本地存储 - 所有数据存储在本地,隐私安全有保障 + - 🖥️ 跨平台 - 支持 macOS、Windows、Linux + - 📊 列表视图 - 表格式展示 Prompt,支持排序和批量操作 + - 🤖 AI 测试 - 内置多模型测试,支持 18+ 服务商 +Tags: +- 人工智能 +- 大语言模型 +- 提示词 +- 聊天机器人 +ReleaseNotes: |- + 新功能 / Added + - ⌨️ 局部快捷键模式:新增局部快捷键支持,可在设置中为每个快捷键独立选择"全局"或"局部"模式,局部模式仅在应用窗口激活时生效,避免与其他应用冲突 + - Local Shortcut Mode: Added per-shortcut mode selection (Global/Local) in settings. Local shortcuts only work when the app window is focused, avoiding conflicts with other applications + - 📤 分享为 JSON:新增"分享为 JSON"功能,支持将 Prompt 序列化为 JSON 并复制到剪贴板,方便分享和迁移 + - Share as JSON: Added "Share as JSON" feature to serialize prompts for easy sharing and migration + - 📥 剪贴板智能导入增强:剪贴板导入现在打开完整的编辑窗口而非简单预览,支持导入前修改所有字段 + - Enhanced Clipboard Import: Clipboard import now opens the full editor instead of a preview modal, allowing field modifications before saving + 优化 / Improvements + - 🎨 右键菜单增强:在列表、表格、看板视图的右键菜单中新增"分享为 JSON"选项 + - Context Menu Enhancement: Added "Share as JSON" option to context menus across all view modes + - ✨ 详情页分享按钮:在 Prompt 详情页头部新增分享按钮,点击即可快速分享 + - Detail View Share Button: Added a share button in the prompt detail header for quick access + - 🔄 防重复导入:分享后会设置标记,防止立即将自己分享的内容再次导入 + - Prevent Self-Import: Shared content is marked to prevent immediate re-import of your own prompts +ReleaseNotesUrl: https://github.com/legeling/PromptHub/blob/HEAD/CHANGELOG.md#039---2026-01-24 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.yaml b/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.yaml index 4bb17591fd63..31b63dec6eba 100644 --- a/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.yaml +++ b/manifests/l/legeling/PromptHub/0.3.9/legeling.PromptHub.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: legeling.PromptHub -PackageVersion: 0.3.9 -DefaultLocale: zh-CN -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: legeling.PromptHub +PackageVersion: 0.3.9 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.installer.yaml b/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.installer.yaml index 3558bc15452f..1712f492e763 100644 --- a/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.installer.yaml +++ b/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.installer.yaml @@ -1,32 +1,32 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: legeling.PromptHub -PackageVersion: 0.4.0 -InstallerType: nullsoft -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ProductCode: 16181c11-b075-53d6-87cb-f192f9b74217 -ReleaseDate: 2026-02-13 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.4.0/PromptHub-Setup-0.4.0-x64.exe - InstallerSha256: B4ED666734A2184EBF955B9FDD708AB92D8AE98AE28FD6A42E9A298C4051E365 - InstallerSwitches: - Custom: /currentuser -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.4.0/PromptHub-Setup-0.4.0-x64.exe - InstallerSha256: B4ED666734A2184EBF955B9FDD708AB92D8AE98AE28FD6A42E9A298C4051E365 - InstallerSwitches: - Custom: /allusers -- Architecture: arm64 - Scope: machine - InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.4.0/PromptHub-Setup-0.4.0-arm64.exe - InstallerSha256: B3AD374AD9081C50A3AD14C4B190EC7EF5E31342D06258B3D8A945167970C3A7 - InstallerSwitches: - Custom: /allusers -ManifestType: installer -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: legeling.PromptHub +PackageVersion: 0.4.0 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 16181c11-b075-53d6-87cb-f192f9b74217 +ReleaseDate: 2026-02-13 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.4.0/PromptHub-Setup-0.4.0-x64.exe + InstallerSha256: F2B79D86F68D00DC6F547848CF7E6225BC43E78F69A79165CE5C5F5D22BB011B + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.4.0/PromptHub-Setup-0.4.0-x64.exe + InstallerSha256: F2B79D86F68D00DC6F547848CF7E6225BC43E78F69A79165CE5C5F5D22BB011B + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.4.0/PromptHub-Setup-0.4.0-arm64.exe + InstallerSha256: 47F9649585A7E323F8EA403CD5EA0C94AD775885F32881BFA5660DA179C7964A + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.locale.en-US.yaml b/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.locale.en-US.yaml index cf4c5e170770..2319553db3e3 100644 --- a/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.locale.en-US.yaml +++ b/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.locale.en-US.yaml @@ -1,31 +1,31 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: legeling.PromptHub -PackageVersion: 0.4.0 -PackageLocale: en-US -ShortDescription: An open-source, local-first AI prompt management tool that helps you efficiently manage, version-control, and reuse your prompts -Description: |- - Tired of searching for prompts in notebooks, documents, and chat histories? PromptHub lets you manage prompts like code — version control, variable templates, multi-model testing, all local and privacy-first. - ✨ Features - - 📝 Prompt Management - Create, edit, delete with folder and tag organization - - ⭐ Favorites - Quick access to frequently used prompts - - 🔄 Version Control - Auto-save history with view and rollback support - - 🔧 Variable System - Template variables {{variable}} with dynamic replacement - - 📋 One-Click Copy - Quickly copy prompts to clipboard - - 🔍 Full-Text Search - Fast search across titles, descriptions, and content - - 📤 Data Export - JSON format backup and restore - - 🎨 Theme Customization - Dark/Light/System modes with multiple accent colors - - 🌐 Multi-Language - Chinese and English interface support - - 💾 Local Storage - All data stored locally for privacy - - 🖥️ Cross-Platform - Support for macOS, Windows, Linux - - 📊 List View - Table-style display with sorting and batch operations - - 🤖 AI Testing - Built-in multi-model testing with 18+ providers -Tags: -- ai -- chatbot -- large-language-model -- llm -- prompt -ManifestType: locale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: legeling.PromptHub +PackageVersion: 0.4.0 +PackageLocale: en-US +ShortDescription: An open-source, local-first AI prompt management tool that helps you efficiently manage, version-control, and reuse your prompts +Description: |- + Tired of searching for prompts in notebooks, documents, and chat histories? PromptHub lets you manage prompts like code — version control, variable templates, multi-model testing, all local and privacy-first. + ✨ Features + - 📝 Prompt Management - Create, edit, delete with folder and tag organization + - ⭐ Favorites - Quick access to frequently used prompts + - 🔄 Version Control - Auto-save history with view and rollback support + - 🔧 Variable System - Template variables {{variable}} with dynamic replacement + - 📋 One-Click Copy - Quickly copy prompts to clipboard + - 🔍 Full-Text Search - Fast search across titles, descriptions, and content + - 📤 Data Export - JSON format backup and restore + - 🎨 Theme Customization - Dark/Light/System modes with multiple accent colors + - 🌐 Multi-Language - Chinese and English interface support + - 💾 Local Storage - All data stored locally for privacy + - 🖥️ Cross-Platform - Support for macOS, Windows, Linux + - 📊 List View - Table-style display with sorting and batch operations + - 🤖 AI Testing - Built-in multi-model testing with 18+ providers +Tags: +- ai +- chatbot +- large-language-model +- llm +- prompt +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.locale.zh-CN.yaml b/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.locale.zh-CN.yaml index 877ecd494a88..97057e40505f 100644 --- a/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.locale.zh-CN.yaml +++ b/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.locale.zh-CN.yaml @@ -1,61 +1,61 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: legeling.PromptHub -PackageVersion: 0.4.0 -PackageLocale: zh-CN -Publisher: legeling -PublisherUrl: https://github.com/legeling -PublisherSupportUrl: https://github.com/legeling/PromptHub/issues -Author: 凌小添 -PackageName: PromptHub -PackageUrl: https://github.com/legeling/PromptHub -License: AGPL-3.0 -LicenseUrl: https://github.com/legeling/PromptHub/blob/HEAD/LICENSE -Copyright: © 2026 PromptHub -ShortDescription: 一款开源、纯本地 AI Prompt 管理工具,帮助你高效管理、版本控制和复用 Prompt -Description: |- - 还在笔记本、文档和聊天记录里到处翻找 Prompt?PromptHub 让你像管理代码一样管理 Prompt — 支持版本控制、变量模板、多模型测试,所有数据都存在本地,隐私安全有保障。 - ✨ 功能特性 - - 📝 Prompt 管理 - 创建、编辑、删除,支持文件夹和标签分类 - - ⭐ 收藏系统 - 快速收藏常用 Prompt,一键访问 - - 🔄 版本控制 - 自动保存历史版本,支持查看和回滚 - - 🔧 变量系统 - 模板变量 {{variable}},动态替换 - - 📋 一键复制 - 快速复制 Prompt 到剪贴板 - - 🔍 全文搜索 - 快速搜索标题、描述和内容 - - 📤 数据导出 - JSON 格式备份和恢复 - - 🎨 主题定制 - 深色/浅色/跟随系统,多种主题色可选 - - 🌐 多语言 - 支持中文和英文界面 - - 💾 本地存储 - 所有数据存储在本地,隐私安全有保障 - - 🖥️ 跨平台 - 支持 macOS、Windows、Linux - - 📊 列表视图 - 表格式展示 Prompt,支持排序和批量操作 - - 🤖 AI 测试 - 内置多模型测试,支持 18+ 服务商 -Tags: -- 人工智能 -- 大语言模型 -- 提示词 -- 聊天机器人 -ReleaseNotes: |- - 新功能 / Added - - 🧩 Skill 技能商店:内建 20+ 精选 AI 代理技能,来自 Anthropic、OpenAI 等官方源 - - Skill Store: Built-in store with 20+ curated AI agent skills from Anthropic, OpenAI and more - - 🚀 多平台一键安装:支持将 SKILL.md 安装到 Claude Code、Cursor、Windsurf、Codex、Kiro、Gemini CLI 等 12+ 平台 - - Multi-Platform Install: One-click install SKILL.md to Claude Code, Cursor, Windsurf, Codex, Kiro, Gemini CLI and 12+ platforms - - 🔍 本地扫描预览:自动发现本地已有 SKILL.md,支持预览选擇后批量导入 - - Local Scan Preview: Auto-discover local SKILL.md files, preview and batch import - - 🔗 Symlink/复制模式:支持软链接同步编辑或独立复制到各平台 - - Symlink/Copy Mode: Symbolic link for synced editing or independent copy to each platform - - 🌐 AI 技能翻译:支持沉浸式翻译和全文翻译技能内容 - - AI Skill Translation: Immersive and full-text translation modes for skill content - - 🏷️ 技能标签筛选:侧边栏标签快速过滤技能 - - Skill Tag Filtering: Sidebar tags for quick skill filtering - - 📦 清晰的工作流:「添加到库」→ 自动弹出「安装到平台」选择弹窗 - - Clear Workflow: "Add to Library" → auto-popup "Install to Platform" dialog - 优化 / Improvements - - 🎨 术语统一:平台操作统一使用「安装」术语,更直观 - - Terminology: Unified platform operations to use "Install" terminology - - 🧩 标签过滤优化:自动过滤系统生成的无意义标签(local、discovered、平台 ID 等) - - Tag Filter Polish: Auto-filter system-generated tags (local, discovered, platform IDs) -ReleaseNotesUrl: https://github.com/legeling/PromptHub/blob/HEAD/CHANGELOG.md#040---2026-02-12 -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: legeling.PromptHub +PackageVersion: 0.4.0 +PackageLocale: zh-CN +Publisher: legeling +PublisherUrl: https://github.com/legeling +PublisherSupportUrl: https://github.com/legeling/PromptHub/issues +Author: 凌小添 +PackageName: PromptHub +PackageUrl: https://github.com/legeling/PromptHub +License: AGPL-3.0 +LicenseUrl: https://github.com/legeling/PromptHub/blob/HEAD/LICENSE +Copyright: © 2026 PromptHub +ShortDescription: 一款开源、纯本地 AI Prompt 管理工具,帮助你高效管理、版本控制和复用 Prompt +Description: |- + 还在笔记本、文档和聊天记录里到处翻找 Prompt?PromptHub 让你像管理代码一样管理 Prompt — 支持版本控制、变量模板、多模型测试,所有数据都存在本地,隐私安全有保障。 + ✨ 功能特性 + - 📝 Prompt 管理 - 创建、编辑、删除,支持文件夹和标签分类 + - ⭐ 收藏系统 - 快速收藏常用 Prompt,一键访问 + - 🔄 版本控制 - 自动保存历史版本,支持查看和回滚 + - 🔧 变量系统 - 模板变量 {{variable}},动态替换 + - 📋 一键复制 - 快速复制 Prompt 到剪贴板 + - 🔍 全文搜索 - 快速搜索标题、描述和内容 + - 📤 数据导出 - JSON 格式备份和恢复 + - 🎨 主题定制 - 深色/浅色/跟随系统,多种主题色可选 + - 🌐 多语言 - 支持中文和英文界面 + - 💾 本地存储 - 所有数据存储在本地,隐私安全有保障 + - 🖥️ 跨平台 - 支持 macOS、Windows、Linux + - 📊 列表视图 - 表格式展示 Prompt,支持排序和批量操作 + - 🤖 AI 测试 - 内置多模型测试,支持 18+ 服务商 +Tags: +- 人工智能 +- 大语言模型 +- 提示词 +- 聊天机器人 +ReleaseNotes: |- + 新功能 / Added + - 🧩 Skill 技能商店:内建 20+ 精选 AI 代理技能,来自 Anthropic、OpenAI 等官方源 + - Skill Store: Built-in store with 20+ curated AI agent skills from Anthropic, OpenAI and more + - 🚀 多平台一键安装:支持将 SKILL.md 安装到 Claude Code、Cursor、Windsurf、Codex、Kiro、Gemini CLI 等 12+ 平台 + - Multi-Platform Install: One-click install SKILL.md to Claude Code, Cursor, Windsurf, Codex, Kiro, Gemini CLI and 12+ platforms + - 🔍 本地扫描预览:自动发现本地已有 SKILL.md,支持预览选擇后批量导入 + - Local Scan Preview: Auto-discover local SKILL.md files, preview and batch import + - 🔗 Symlink/复制模式:支持软链接同步编辑或独立复制到各平台 + - Symlink/Copy Mode: Symbolic link for synced editing or independent copy to each platform + - 🌐 AI 技能翻译:支持沉浸式翻译和全文翻译技能内容 + - AI Skill Translation: Immersive and full-text translation modes for skill content + - 🏷️ 技能标签筛选:侧边栏标签快速过滤技能 + - Skill Tag Filtering: Sidebar tags for quick skill filtering + - 📦 清晰的工作流:「添加到库」→ 自动弹出「安装到平台」选择弹窗 + - Clear Workflow: "Add to Library" → auto-popup "Install to Platform" dialog + 优化 / Improvements + - 🎨 术语统一:平台操作统一使用「安装」术语,更直观 + - Terminology: Unified platform operations to use "Install" terminology + - 🧩 标签过滤优化:自动过滤系统生成的无意义标签(local、discovered、平台 ID 等) + - Tag Filter Polish: Auto-filter system-generated tags (local, discovered, platform IDs) +ReleaseNotesUrl: https://github.com/legeling/PromptHub/blob/HEAD/CHANGELOG.md#040---2026-02-12 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.yaml b/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.yaml index deeaa0b3a066..4a7548876616 100644 --- a/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.yaml +++ b/manifests/l/legeling/PromptHub/0.4.0/legeling.PromptHub.yaml @@ -1,8 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json - -PackageIdentifier: legeling.PromptHub -PackageVersion: 0.4.0 -DefaultLocale: zh-CN -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: legeling.PromptHub +PackageVersion: 0.4.0 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.4.5/legeling.PromptHub.installer.yaml b/manifests/l/legeling/PromptHub/0.4.5/legeling.PromptHub.installer.yaml index d939a4c4db93..806d6e82e959 100644 --- a/manifests/l/legeling/PromptHub/0.4.5/legeling.PromptHub.installer.yaml +++ b/manifests/l/legeling/PromptHub/0.4.5/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.5 -InstallerType: nullsoft -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ProductCode: 16181c11-b075-53d6-87cb-f192f9b74217 -ReleaseDate: 2026-03-14 -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.4.5/PromptHub-Setup-0.4.5-x64.exe - InstallerSha256: 4DDF78FE9E03FFD3F38F99258EBE7CF30F828B5CB7702398D1190FBC07753205 - InstallerSwitches: - Custom: /currentuser -- Architecture: x64 - Scope: machine - InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.4.5/PromptHub-Setup-0.4.5-x64.exe - InstallerSha256: 4DDF78FE9E03FFD3F38F99258EBE7CF30F828B5CB7702398D1190FBC07753205 - InstallerSwitches: - Custom: /allusers -- Architecture: arm64 - Scope: machine - InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.4.5/PromptHub-Setup-0.4.5-arm64.exe - InstallerSha256: 9C9652C730D89873B6EE84F901CC3669BA9CD89EA8BDE4E01251E245FED3BC66 - 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.5 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 16181c11-b075-53d6-87cb-f192f9b74217 +ReleaseDate: 2026-03-14 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.4.5/PromptHub-Setup-0.4.5-x64.exe + InstallerSha256: 216202A81D0C3F9CDEF6BAD825FCD229113820F8633781CFC67E1492F1864F10 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.4.5/PromptHub-Setup-0.4.5-x64.exe + InstallerSha256: 216202A81D0C3F9CDEF6BAD825FCD229113820F8633781CFC67E1492F1864F10 + InstallerSwitches: + Custom: /allusers +- Architecture: arm64 + Scope: machine + InstallerUrl: https://github.com/legeling/PromptHub/releases/download/v0.4.5/PromptHub-Setup-0.4.5-arm64.exe + InstallerSha256: AF48A0CA261B7A6F692DB3A77E3EEC435D35F9566E0B5BADE47F307034860516 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.4.5/legeling.PromptHub.locale.en-US.yaml b/manifests/l/legeling/PromptHub/0.4.5/legeling.PromptHub.locale.en-US.yaml index 496521ec3749..8362a6e04906 100644 --- a/manifests/l/legeling/PromptHub/0.4.5/legeling.PromptHub.locale.en-US.yaml +++ b/manifests/l/legeling/PromptHub/0.4.5/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.5 -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.5 +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.5/legeling.PromptHub.locale.zh-CN.yaml b/manifests/l/legeling/PromptHub/0.4.5/legeling.PromptHub.locale.zh-CN.yaml index 34b8993b0175..ebc379a40e8e 100644 --- a/manifests/l/legeling/PromptHub/0.4.5/legeling.PromptHub.locale.zh-CN.yaml +++ b/manifests/l/legeling/PromptHub/0.4.5/legeling.PromptHub.locale.zh-CN.yaml @@ -1,59 +1,59 @@ -# 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.5 -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: |- - 修复 / Fixed - - 🌐 提示词复制语言修复 (closes #67):修复图片/画廊视图在英文模式下复制内容仍落回中文的问题;复制弹窗与直接复制现在都会跟随当前显示语言 - - Prompt Copy Language Fix (closes #67): Fixed image/gallery copy using the Chinese prompt while the UI was showing English; both direct copy and variable modal now follow the visible language - - 🧩 Skill 白屏修复 (closes #66):修复部分旧 Skill 因标签/兼容性等元数据格式异常,点击后详情页直接白屏的问题;新增旧数据规范化与详情渲染容错 - - Skill White Screen Fix (closes #66): Fixed blank detail pages for legacy skills with malformed metadata such as tags/compatibility fields; added normalization for legacy data and safer detail rendering - - 🔄 分发状态刷新修复:修复 Skill 分发或卸载后,左侧菜单和过滤状态未及时同步,仍显示“未分发”的问题 - - Deployment Status Refresh Fix: Fixed sidebar/filter deployment state staying stale after install or uninstall operations and still showing skills as pending - - 📁 本地托管目录扫描修复:默认本地扫描现在会包含 PromptHub 自己托管的 userData/skills 目录,手动放入的 Skill 可被识别 - - Managed Skill Folder Scan Fix: Default local scan now includes PromptHub's managed userData/skills directory so manually added skills can be discovered - - 📸 版本快照交互修复:修复创建快照按钮依赖原生 window.prompt() 导致 Electron 环境下“点击没反应”的问题,改为应用内弹窗 - - Snapshot Interaction Fix: Replaced unstable native window.prompt() snapshot creation with an in-app modal after the button appeared unresponsive in Electron - 优化 / Improvements - - 🚀 Skill 批量工作流增强:补齐批量分发与批量标签操作,选择态工具栏与分发弹窗交互更清晰 - - Bulk Skill Workflow Improvements: Expanded bulk distribution and bulk tagging flows with clearer selection toolbar and deploy dialog interactions - - 🔍 导入体验优化:本地导入预览支持搜索,标签改为可选操作,减少导入阻力 - - Import UX Improvements: Added search to local import preview and made tagging optional to reduce friction during import - - 🕓 Skill 版本管理补齐:支持版本历史预览、Diff 对比和恢复,文件编辑与 SKILL.md 变更会自动留快照 - - Skill Versioning Enhancements: Added version history preview, diff comparison, and restore flow; file edits and SKILL.md updates now create snapshots automatically -ReleaseNotesUrl: https://github.com/legeling/PromptHub/blob/HEAD/CHANGELOG.md#045---2026-03-14 -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.5 +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: |- + 修复 / Fixed + - 🌐 提示词复制语言修复 (closes #67):修复图片/画廊视图在英文模式下复制内容仍落回中文的问题;复制弹窗与直接复制现在都会跟随当前显示语言 + - Prompt Copy Language Fix (closes #67): Fixed image/gallery copy using the Chinese prompt while the UI was showing English; both direct copy and variable modal now follow the visible language + - 🧩 Skill 白屏修复 (closes #66):修复部分旧 Skill 因标签/兼容性等元数据格式异常,点击后详情页直接白屏的问题;新增旧数据规范化与详情渲染容错 + - Skill White Screen Fix (closes #66): Fixed blank detail pages for legacy skills with malformed metadata such as tags/compatibility fields; added normalization for legacy data and safer detail rendering + - 🔄 分发状态刷新修复:修复 Skill 分发或卸载后,左侧菜单和过滤状态未及时同步,仍显示“未分发”的问题 + - Deployment Status Refresh Fix: Fixed sidebar/filter deployment state staying stale after install or uninstall operations and still showing skills as pending + - 📁 本地托管目录扫描修复:默认本地扫描现在会包含 PromptHub 自己托管的 userData/skills 目录,手动放入的 Skill 可被识别 + - Managed Skill Folder Scan Fix: Default local scan now includes PromptHub's managed userData/skills directory so manually added skills can be discovered + - 📸 版本快照交互修复:修复创建快照按钮依赖原生 window.prompt() 导致 Electron 环境下“点击没反应”的问题,改为应用内弹窗 + - Snapshot Interaction Fix: Replaced unstable native window.prompt() snapshot creation with an in-app modal after the button appeared unresponsive in Electron + 优化 / Improvements + - 🚀 Skill 批量工作流增强:补齐批量分发与批量标签操作,选择态工具栏与分发弹窗交互更清晰 + - Bulk Skill Workflow Improvements: Expanded bulk distribution and bulk tagging flows with clearer selection toolbar and deploy dialog interactions + - 🔍 导入体验优化:本地导入预览支持搜索,标签改为可选操作,减少导入阻力 + - Import UX Improvements: Added search to local import preview and made tagging optional to reduce friction during import + - 🕓 Skill 版本管理补齐:支持版本历史预览、Diff 对比和恢复,文件编辑与 SKILL.md 变更会自动留快照 + - Skill Versioning Enhancements: Added version history preview, diff comparison, and restore flow; file edits and SKILL.md updates now create snapshots automatically +ReleaseNotesUrl: https://github.com/legeling/PromptHub/blob/HEAD/CHANGELOG.md#045---2026-03-14 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/l/legeling/PromptHub/0.4.5/legeling.PromptHub.yaml b/manifests/l/legeling/PromptHub/0.4.5/legeling.PromptHub.yaml index 2b1db3208bc3..2d6d6ea53913 100644 --- a/manifests/l/legeling/PromptHub/0.4.5/legeling.PromptHub.yaml +++ b/manifests/l/legeling/PromptHub/0.4.5/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.5 -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.5 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/l/lucasdeeiroz/RobotRunner/2.1.15/lucasdeeiroz.RobotRunner.installer.yaml b/manifests/l/lucasdeeiroz/RobotRunner/2.1.15/lucasdeeiroz.RobotRunner.installer.yaml index 08d51d21cc4f..ebc0cbcd0edb 100644 --- a/manifests/l/lucasdeeiroz/RobotRunner/2.1.15/lucasdeeiroz.RobotRunner.installer.yaml +++ b/manifests/l/lucasdeeiroz/RobotRunner/2.1.15/lucasdeeiroz.RobotRunner.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: lucasdeeiroz.RobotRunner PackageVersion: 2.1.15 @@ -11,6 +11,6 @@ InstallerSwitches: Installers: - Architecture: x64 InstallerUrl: https://github.com/lucasdeeiroz/robot_runner/releases/download/v2.1.15/Robot.Runner_2.1.15_windows_x64-setup.exe - InstallerSha256: ACD0A42F6CB952181DAF64A025067A55CB84F59ECB487D0E3970E7F254A88098 + InstallerSha256: A4A2467454E07A2A897592A225F859243EA291A943F1B2284619B9F5215D3D76 ManifestType: installer -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/l/lucasdeeiroz/RobotRunner/2.1.15/lucasdeeiroz.RobotRunner.locale.en-US.yaml b/manifests/l/lucasdeeiroz/RobotRunner/2.1.15/lucasdeeiroz.RobotRunner.locale.en-US.yaml index 275a79a30a38..bb10fe53a6d2 100644 --- a/manifests/l/lucasdeeiroz/RobotRunner/2.1.15/lucasdeeiroz.RobotRunner.locale.en-US.yaml +++ b/manifests/l/lucasdeeiroz/RobotRunner/2.1.15/lucasdeeiroz.RobotRunner.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: lucasdeeiroz.RobotRunner PackageVersion: 2.1.15 @@ -17,5 +17,4 @@ Documentations: - DocumentLabel: Wiki DocumentUrl: https://github.com/lucasdeeiroz/robot_runner/wiki ManifestType: defaultLocale -ManifestVersion: 1.10.0 - +ManifestVersion: 1.12.0 diff --git a/manifests/l/lucasdeeiroz/RobotRunner/2.1.15/lucasdeeiroz.RobotRunner.yaml b/manifests/l/lucasdeeiroz/RobotRunner/2.1.15/lucasdeeiroz.RobotRunner.yaml index 76f72aa57068..630e51c77b74 100644 --- a/manifests/l/lucasdeeiroz/RobotRunner/2.1.15/lucasdeeiroz.RobotRunner.yaml +++ b/manifests/l/lucasdeeiroz/RobotRunner/2.1.15/lucasdeeiroz.RobotRunner.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: lucasdeeiroz.RobotRunner PackageVersion: 2.1.15 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mango3D/LycheeSlicer/7.6.1/Mango3D.LycheeSlicer.installer.yaml b/manifests/m/Mango3D/LycheeSlicer/7.6.1/Mango3D.LycheeSlicer.installer.yaml index d82c671b144e..bd17a0869382 100644 --- a/manifests/m/Mango3D/LycheeSlicer/7.6.1/Mango3D.LycheeSlicer.installer.yaml +++ b/manifests/m/Mango3D/LycheeSlicer/7.6.1/Mango3D.LycheeSlicer.installer.yaml @@ -1,28 +1,28 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Mango3D.LycheeSlicer -PackageVersion: 7.6.1 -InstallerType: nullsoft -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -Protocols: -- lycheeslicer -FileExtensions: -- 3mf -- cws -- lstl -- lys -- lyt -- obj -- stl -ProductCode: 8a7f68fc-0ecf-58b3-94e0-fb6e1ea8d905 -ReleaseDate: 2026-02-04 -Installers: -- Architecture: x64 - InstallerUrl: https://mango-lychee.nyc3.digitaloceanspaces.com/LycheeSlicer-7.6.1.exe - InstallerSha256: 595F86ACB56899062E7A57E713D8F7CCC102BD1F0EA61E55EE84A940F826BD24 -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: Mango3D.LycheeSlicer +PackageVersion: 7.6.1 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +Protocols: +- lycheeslicer +FileExtensions: +- 3mf +- cws +- lstl +- lys +- lyt +- obj +- stl +ProductCode: 8a7f68fc-0ecf-58b3-94e0-fb6e1ea8d905 +ReleaseDate: 2026-02-04 +Installers: +- Architecture: x64 + InstallerUrl: https://mango-lychee.nyc3.digitaloceanspaces.com/LycheeSlicer-7.6.1.exe + InstallerSha256: D0122BE2405B2F3C1C6A9947570C97BA737D8B1E128EBCDBC46473AA1106DEE3 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mango3D/LycheeSlicer/7.6.1/Mango3D.LycheeSlicer.locale.en-US.yaml b/manifests/m/Mango3D/LycheeSlicer/7.6.1/Mango3D.LycheeSlicer.locale.en-US.yaml index fe4fdf9b94c4..351f7f58a302 100644 --- a/manifests/m/Mango3D/LycheeSlicer/7.6.1/Mango3D.LycheeSlicer.locale.en-US.yaml +++ b/manifests/m/Mango3D/LycheeSlicer/7.6.1/Mango3D.LycheeSlicer.locale.en-US.yaml @@ -1,34 +1,34 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Mango3D.LycheeSlicer -PackageVersion: 7.6.1 -PackageLocale: en-US -Publisher: Mango3D -PublisherUrl: https://mango3d.io/ -PublisherSupportUrl: https://mango3d.io/contact-us/ -PrivacyUrl: https://mango3d.io/privacy-policy/ -Author: Mango 3D SAS -PackageName: LycheeSlicer -PackageUrl: https://mango3d.io/downloads/ -License: Proprietary -Copyright: Copyright 2026 © Mango3D. All rights reserved. -ShortDescription: A powerful and versatile Slicer for Resin and Filament 3D Printers -Description: With Lychee Slicer, you get the best companion to prepare 3D models for your Resin and Filament 3D Printers. Get access to many features to create a tailored and smooth workflow that fits your needs! Lychee Slicer is easy to use and provides powerful tools in an elegant and intuitive interface. Always be at the edge of 3D Printing with Lychee Slicer! -Tags: -- 3d -- 3d-printer -- 3d-printing -- filament -- model -- resin -- slicer -ReleaseNotesUrl: https://mango3d.io/changelogs -PurchaseUrl: https://account.mango3d.io/lychee/purchase -Documentations: -- DocumentLabel: Documentation - DocumentUrl: https://doc.mango3d.io/ -- DocumentLabel: Technical documentation - DocumentUrl: https://doc.mango3d.io/doc/technical-documentation/ -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: Mango3D.LycheeSlicer +PackageVersion: 7.6.1 +PackageLocale: en-US +Publisher: Mango3D +PublisherUrl: https://mango3d.io/ +PublisherSupportUrl: https://mango3d.io/contact-us/ +PrivacyUrl: https://mango3d.io/privacy-policy/ +Author: Mango 3D SAS +PackageName: LycheeSlicer +PackageUrl: https://mango3d.io/downloads/ +License: Proprietary +Copyright: Copyright 2026 © Mango3D. All rights reserved. +ShortDescription: A powerful and versatile Slicer for Resin and Filament 3D Printers +Description: With Lychee Slicer, you get the best companion to prepare 3D models for your Resin and Filament 3D Printers. Get access to many features to create a tailored and smooth workflow that fits your needs! Lychee Slicer is easy to use and provides powerful tools in an elegant and intuitive interface. Always be at the edge of 3D Printing with Lychee Slicer! +Tags: +- 3d +- 3d-printer +- 3d-printing +- filament +- model +- resin +- slicer +ReleaseNotesUrl: https://mango3d.io/changelogs +PurchaseUrl: https://account.mango3d.io/lychee/purchase +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://doc.mango3d.io/ +- DocumentLabel: Technical documentation + DocumentUrl: https://doc.mango3d.io/doc/technical-documentation/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mango3D/LycheeSlicer/7.6.1/Mango3D.LycheeSlicer.locale.zh-CN.yaml b/manifests/m/Mango3D/LycheeSlicer/7.6.1/Mango3D.LycheeSlicer.locale.zh-CN.yaml index 3741de3b4428..a75e73045264 100644 --- a/manifests/m/Mango3D/LycheeSlicer/7.6.1/Mango3D.LycheeSlicer.locale.zh-CN.yaml +++ b/manifests/m/Mango3D/LycheeSlicer/7.6.1/Mango3D.LycheeSlicer.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: Mango3D.LycheeSlicer -PackageVersion: 7.6.1 -PackageLocale: zh-CN -Publisher: Mango3D -PublisherUrl: https://mango3d.io/ -PublisherSupportUrl: https://mango3d.io/contact-us/ -PrivacyUrl: https://mango3d.io/privacy-policy/ -Author: Mango 3D SAS -PackageName: LycheeSlicer -PackageUrl: https://mango3d.io/downloads/ -License: 专有软件 -Copyright: Copyright 2026 © Mango3D. All rights reserved. -ShortDescription: 适用于树脂和丝材 3D 打印机的功能强大的多功能切片机 -Description: Lychee Slicer 是帮助您为树脂和丝材 3D 打印机准备 3D 模型的最佳伴侣。您可以通过多种功能创建符合您需求的定制、流畅的工作流程!Lychee Slicer 易于使用,在优雅直观的界面中提供强大的工具。有了 Lychee Slicer,您将始终站在 3D 打印的最前沿! -Tags: -- 3d -- 3d打印 -- 3d打印机 -- 丝材 -- 切片 -- 树脂 -- 模型 -ReleaseNotesUrl: https://mango3d.io/changelogs -PurchaseUrl: https://account.mango3d.io/lychee/purchase -Documentations: -- DocumentLabel: 文档 - DocumentUrl: https://doc.mango3d.io/ -- DocumentLabel: 技术文档 - DocumentUrl: https://doc.mango3d.io/doc/technical-documentation/ -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: Mango3D.LycheeSlicer +PackageVersion: 7.6.1 +PackageLocale: zh-CN +Publisher: Mango3D +PublisherUrl: https://mango3d.io/ +PublisherSupportUrl: https://mango3d.io/contact-us/ +PrivacyUrl: https://mango3d.io/privacy-policy/ +Author: Mango 3D SAS +PackageName: LycheeSlicer +PackageUrl: https://mango3d.io/downloads/ +License: 专有软件 +Copyright: Copyright 2026 © Mango3D. All rights reserved. +ShortDescription: 适用于树脂和丝材 3D 打印机的功能强大的多功能切片机 +Description: Lychee Slicer 是帮助您为树脂和丝材 3D 打印机准备 3D 模型的最佳伴侣。您可以通过多种功能创建符合您需求的定制、流畅的工作流程!Lychee Slicer 易于使用,在优雅直观的界面中提供强大的工具。有了 Lychee Slicer,您将始终站在 3D 打印的最前沿! +Tags: +- 3d +- 3d打印 +- 3d打印机 +- 丝材 +- 切片 +- 树脂 +- 模型 +ReleaseNotesUrl: https://mango3d.io/changelogs +PurchaseUrl: https://account.mango3d.io/lychee/purchase +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://doc.mango3d.io/ +- DocumentLabel: 技术文档 + DocumentUrl: https://doc.mango3d.io/doc/technical-documentation/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mango3D/LycheeSlicer/7.6.1/Mango3D.LycheeSlicer.yaml b/manifests/m/Mango3D/LycheeSlicer/7.6.1/Mango3D.LycheeSlicer.yaml index c46a0797b0ae..c8d55d657248 100644 --- a/manifests/m/Mango3D/LycheeSlicer/7.6.1/Mango3D.LycheeSlicer.yaml +++ b/manifests/m/Mango3D/LycheeSlicer/7.6.1/Mango3D.LycheeSlicer.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: Mango3D.LycheeSlicer -PackageVersion: 7.6.1 -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: Mango3D.LycheeSlicer +PackageVersion: 7.6.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/VisualStudio/SlnGen/12.0.32/Microsoft.VisualStudio.SlnGen.installer.yaml b/manifests/m/Microsoft/VisualStudio/SlnGen/12.0.32/Microsoft.VisualStudio.SlnGen.installer.yaml new file mode 100644 index 000000000000..a038fedc1ceb --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/SlnGen/12.0.32/Microsoft.VisualStudio.SlnGen.installer.yaml @@ -0,0 +1,25 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.SlnGen +PackageVersion: 12.0.32 +ReleaseDate: 2025-12-05 +InstallerType: zip # .nupkg with .exe-s inside. +NestedInstallerType: portable +ArchiveBinariesDependOnPath: true +Installers: +- Architecture: x64 + InstallerUrl: https://globalcdn.nuget.org/packages/microsoft.visualstudio.slngen.tool.12.0.32.nupkg + InstallerSha256: 191bf489da5821dbd19d7f43ed0f84bcc2a70be91be24321899894b236e0871e + NestedInstallerFiles: + - RelativeFilePath: tools\slngen\net10.0\slngen.exe + - RelativeFilePath: tools\slngen\net472\slngen.exe + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.DotNet.SDK.10 +- Architecture: x86 + InstallerUrl: https://globalcdn.nuget.org/packages/microsoft.visualstudio.slngen.tool.12.0.32.nupkg + InstallerSha256: 191bf489da5821dbd19d7f43ed0f84bcc2a70be91be24321899894b236e0871e + NestedInstallerFiles: + - RelativeFilePath: tools\slngen\net472\slngen.exe +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Microsoft/VisualStudio/SlnGen/12.0.32/Microsoft.VisualStudio.SlnGen.locale.en-US.yaml b/manifests/m/Microsoft/VisualStudio/SlnGen/12.0.32/Microsoft.VisualStudio.SlnGen.locale.en-US.yaml new file mode 100644 index 000000000000..81575afadd11 --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/SlnGen/12.0.32/Microsoft.VisualStudio.SlnGen.locale.en-US.yaml @@ -0,0 +1,24 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.SlnGen +PackageVersion: 12.0.32 +PackageLocale: en-US +Publisher: Microsft Corporation +PackageName: SlnGen +PackageUrl: https://microsoft.github.io/slngen/ +License: MIT +ShortDescription: A Visual Studio solution file generator. +Description: |- + A Visual Studio solution file generator. + + In this Winget package, the x64 installer mode is designed with .NET 10.0 and .NET Framework in mind, while the x86 installer mode is designed with only .NET Framework in mind. The executables for .NET 8.0 and 9.0 are also in the package, but they and their dependencies would need to be handled client-side. +Tags: +- Microsoft.VisualStudio.SlnGen.Tool +- visual-studio-solution-file-generator +- visualstudiosolutionfilegenerator +- singen +- sln-generator +- slngenerator +- requirescmd +ManifestType: defaultLocale +ManifestVersion: 1.12.0 \ No newline at end of file diff --git a/manifests/m/Microsoft/VisualStudio/SlnGen/12.0.32/Microsoft.VisualStudio.SlnGen.yaml b/manifests/m/Microsoft/VisualStudio/SlnGen/12.0.32/Microsoft.VisualStudio.SlnGen.yaml new file mode 100644 index 000000000000..ea348a22df6d --- /dev/null +++ b/manifests/m/Microsoft/VisualStudio/SlnGen/12.0.32/Microsoft.VisualStudio.SlnGen.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Microsoft.VisualStudio.SlnGen +PackageVersion: 12.0.32 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 \ No newline at end of file diff --git a/manifests/m/Microsoft/WindowsADK/10.1.28000.1/Microsoft.WindowsADK.locale.en-GB.yaml b/manifests/m/Microsoft/WindowsADK/10.1.28000.1/Microsoft.WindowsADK.locale.en-GB.yaml new file mode 100644 index 000000000000..67f9fd91ca1e --- /dev/null +++ b/manifests/m/Microsoft/WindowsADK/10.1.28000.1/Microsoft.WindowsADK.locale.en-GB.yaml @@ -0,0 +1,21 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Microsoft.WindowsADK +PackageVersion: 10.1.28000.1 +PackageLocale: en-GB +PublisherUrl: https://www.microsoft.com/en-gb +PublisherSupportUrl: https://support.microsoft.com/en-gb +PrivacyUrl: https://www.microsoft.com/en-gb/privacy/privacystatement +PackageName: Windows Assessment and Deployment Kit +License: Proprietary +LicenseUrl: https://www.microsoft.com/en-gb/legal/terms-of-use +Copyright: © Microsoft Corporation. All rights reserved. +CopyrightUrl: https://www.microsoft.com/en-gb/legal/intellectualproperty/trademarks +ShortDescription: The Windows Assessment and Deployment Kit (Windows ADK) has the tools you need to customise Windows images for large-scale deployment, and to test the quality and performance of your system, its added components, and the applications running on it. +Tags: +- adk +- mdt +- sccm +- windows +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Microsoft/WindowsADK/10.1.28000.1/Microsoft.WindowsADK.locale.nb-NO.yaml b/manifests/m/Microsoft/WindowsADK/10.1.28000.1/Microsoft.WindowsADK.locale.nb-NO.yaml new file mode 100644 index 000000000000..f8ede713c286 --- /dev/null +++ b/manifests/m/Microsoft/WindowsADK/10.1.28000.1/Microsoft.WindowsADK.locale.nb-NO.yaml @@ -0,0 +1,23 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.10.0.schema.json + +PackageIdentifier: Microsoft.WindowsADK +PackageVersion: 10.1.28000.1 +PackageLocale: nb-NO +PublisherUrl: https://www.microsoft.com/nb-no +PublisherSupportUrl: https://support.microsoft.com/nb-no +PrivacyUrl: https://www.microsoft.com/nb-no/privacy/privacystatement +PackageName: Windows sitt vurderings- og distribusjonssett +PackageUrl: https://learn.microsoft.com/nb-no/windows-hardware/get-started/adk-install +License: Proprietær +LicenseUrl: https://www.microsoft.com/nb-no/legal/terms-of-use +Copyright: © Microsoft Corporation. Alle rettigheter forbeholdt. +CopyrightUrl: https://www.microsoft.com/nb-no/legal/intellectualproperty/trademarks +ShortDescription: Windows sitt vurderings- og distribusjonssett (Windows ADK) har verktøyene for å tilpasse Windows-avbildninger for utstasjonering i stor skala, og for å teste kvaliteten og ytelsen til systemet ditt, dens tilføyde komponenter, og programmene den kjører. +Tags: +- vurderings-og-distribusjonssett +- vurderingsogdistribusjonssett +- adk +- mdt +- sccm +ManifestType: locale +ManifestVersion: 1.10.0 diff --git a/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.installer.yaml b/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.installer.yaml index 72b4b4de487d..2914718eb049 100644 --- a/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.installer.yaml +++ b/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.installer.yaml @@ -1,5 +1,5 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Mihomo-Party.Mihomo-Party PackageVersion: 1.9.0 @@ -14,12 +14,12 @@ AppsAndFeaturesEntries: Installers: - Architecture: x86 InstallerUrl: https://github.com/mihomo-party-org/clash-party/releases/download/v1.9.0/clash-party-windows-1.9.0-ia32-setup.exe - InstallerSha256: 60F2461A647AB965816B1CCD5C58A2B6E089E45A27B6985650E2384DD3E1EAB0 + InstallerSha256: 7381AE8A6C22B8B1926C19FECF9CCCAE80F0C7F491C0B6A04A78922E3D882728 - Architecture: x64 InstallerUrl: https://github.com/mihomo-party-org/clash-party/releases/download/v1.9.0/clash-party-windows-1.9.0-x64-setup.exe - InstallerSha256: D139E1FCDFDE8A09B8D41A00C9FA0358331D92241A1D0AAB6702B0BCC6B7EB72 + InstallerSha256: 35295D79CC6FE95ED8260CEBCF626F263A27327A2237D528A7220A83E1C74691 - Architecture: arm64 InstallerUrl: https://github.com/mihomo-party-org/clash-party/releases/download/v1.9.0/clash-party-windows-1.9.0-arm64-setup.exe - InstallerSha256: 2AE9879A7A406C6ADED68FFB74C73E11B4BEE08513415E4A67C3A6B9BC5C8160 + InstallerSha256: 3D4438816FAABA5A7573A4A31369756C86853115FE210E9EF4427261C2C76DA2 ManifestType: installer -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.locale.en-US.yaml b/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.locale.en-US.yaml index fe7fcd7273af..defd597cfcaa 100644 --- a/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.locale.en-US.yaml +++ b/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.locale.en-US.yaml @@ -1,5 +1,5 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Mihomo-Party.Mihomo-Party PackageVersion: 1.9.0 @@ -21,4 +21,4 @@ Tags: - mihomo - mihomo-party ManifestType: defaultLocale -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.yaml b/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.yaml index 8ce5fc7ae4f8..8c1ad94897e5 100644 --- a/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.yaml +++ b/manifests/m/Mihomo-Party/Mihomo-Party/1.9.0/Mihomo-Party.Mihomo-Party.yaml @@ -1,8 +1,8 @@ -# Created with WinGet Releaser using komac v2.14.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Mihomo-Party.Mihomo-Party PackageVersion: 1.9.0 DefaultLocale: en-US ManifestType: version -ManifestVersion: 1.10.0 +ManifestVersion: 1.12.0 diff --git a/manifests/m/MistralAI/MistralVibe/ACP/2.9.5/MistralAI.MistralVibe.ACP.installer.yaml b/manifests/m/MistralAI/MistralVibe/ACP/2.9.5/MistralAI.MistralVibe.ACP.installer.yaml new file mode 100644 index 000000000000..5802c162e012 --- /dev/null +++ b/manifests/m/MistralAI/MistralVibe/ACP/2.9.5/MistralAI.MistralVibe.ACP.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: MistralAI.MistralVibe.ACP +PackageVersion: 2.9.5 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: vibe-acp.exe +Commands: +- vibe-acp +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/mistralai/mistral-vibe/releases/download/v2.9.5/vibe-acp-windows-x86_64-2.9.5.zip + InstallerSha256: 70D9EE5745B753D4254C45E1F57E06DA744F1E4F3FB229DFCA830B0274F276B0 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/MistralAI/MistralVibe/ACP/2.9.5/MistralAI.MistralVibe.ACP.locale.en-US.yaml b/manifests/m/MistralAI/MistralVibe/ACP/2.9.5/MistralAI.MistralVibe.ACP.locale.en-US.yaml new file mode 100644 index 000000000000..636bd61fed14 --- /dev/null +++ b/manifests/m/MistralAI/MistralVibe/ACP/2.9.5/MistralAI.MistralVibe.ACP.locale.en-US.yaml @@ -0,0 +1,50 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: MistralAI.MistralVibe.ACP +PackageVersion: 2.9.5 +PackageLocale: en-US +Publisher: Mistral AI +PublisherUrl: https://mistral.ai/ +PublisherSupportUrl: https://github.com/mistralai/mistral-vibe/issues +PrivacyUrl: https://legal.mistral.ai/terms/privacy-policy +Author: Mistral AI +PackageName: Mistral Vibe (ACP mode) +PackageUrl: https://github.com/mistralai/mistral-vibe +License: Apache-2.0 +LicenseUrl: https://github.com/mistralai/mistral-vibe/blob/HEAD/LICENSE +Copyright: Copyright 2026 Mistral AI +CopyrightUrl: https://legal.mistral.ai/terms +ShortDescription: Minimal CLI coding agent by Mistral +Description: |- + Mistral's open-source CLI coding assistant. + Mistral Vibe is a command-line coding assistant powered by Mistral's models. It provides a conversational interface to your codebase, allowing you to use natural language to explore, modify, and interact with your projects through a powerful set of tools. +Tags: +- agent +- agentic +- ai +- code +- coding +- develop +- development +- programming +ReleaseNotes: |- + Added + - /loop command to run a prompt or slash command on a recurring interval + - default_agent config setting + - Telemetry instrumentation for the teleport command + - Logging environment variables documented in --help + Changed + - enable_telemetry now takes precedence over enable_otel + Fixed + - Non-retryable errors raised by sub-activities now correctly stop the retry when the agent loop runs inside a Temporal activity (deepens the 2.9.4 fix to walk the exception cause chain) + - Compacted session IDs displayed correctly + - Reload the history file before writing so parallel instances don't clobber each other + - read_file flagged as truncated when the limit is reached + - CLI loader left-alignment + - Default scroll sensitivity in the TUI restored + - Loosened the "no git commit" constraint + - Ensure enable_telemetry takes precedence over enable_otel +ReleaseNotesUrl: https://github.com/mistralai/mistral-vibe/blob/HEAD/CHANGELOG.md#295---2026-05-06 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MistralAI/MistralVibe/ACP/2.9.5/MistralAI.MistralVibe.ACP.locale.zh-CN.yaml b/manifests/m/MistralAI/MistralVibe/ACP/2.9.5/MistralAI.MistralVibe.ACP.locale.zh-CN.yaml new file mode 100644 index 000000000000..7be9e412d3ba --- /dev/null +++ b/manifests/m/MistralAI/MistralVibe/ACP/2.9.5/MistralAI.MistralVibe.ACP.locale.zh-CN.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: MistralAI.MistralVibe.ACP +PackageVersion: 2.9.5 +PackageLocale: zh-CN +ShortDescription: Mistral 推出的极简 CLI 代码智能体 +Description: |- + Mistral 的开源 CLI 编程助手。 + Mistral Vibe 是由 Mistral 模型驱动的命令行编程助手。它为您的代码库提供了一个对话式界面,让您可以通过自然语言,利用一系列强大的工具来浏览、修改和与项目进行交互。 +Tags: +- ai +- 代码 +- 开发 +- 智能体 +- 编程 +- 自主智能 +ReleaseNotesUrl: https://github.com/mistralai/mistral-vibe/blob/HEAD/CHANGELOG.md +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/MistralAI/MistralVibe/ACP/2.9.5/MistralAI.MistralVibe.ACP.yaml b/manifests/m/MistralAI/MistralVibe/ACP/2.9.5/MistralAI.MistralVibe.ACP.yaml new file mode 100644 index 000000000000..ea898f723760 --- /dev/null +++ b/manifests/m/MistralAI/MistralVibe/ACP/2.9.5/MistralAI.MistralVibe.ACP.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: MistralAI.MistralVibe.ACP +PackageVersion: 2.9.5 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/MongoDB/Server/8.3.1/MongoDB.Server.installer.yaml b/manifests/m/MongoDB/Server/8.3.1/MongoDB.Server.installer.yaml new file mode 100644 index 000000000000..90c307400c21 --- /dev/null +++ b/manifests/m/MongoDB/Server/8.3.1/MongoDB.Server.installer.yaml @@ -0,0 +1,31 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: MongoDB.Server +PackageVersion: 8.3.1 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: wix +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Custom: ADDLOCAL=ServerService REBOOT=ReallySuppress +UpgradeBehavior: uninstallPrevious +ProductCode: '{7F1D9107-3F22-4982-B94B-EC1E395C7F84}' +ReleaseDate: 2026-04-24 +AppsAndFeaturesEntries: +- DisplayName: MongoDB 8.3.1 2008R2Plus SSL (64 bit) + ProductCode: '{7F1D9107-3F22-4982-B94B-EC1E395C7F84}' + UpgradeCode: '{3C86A183-0383-6D80-CB3D-B10F78BC3742}' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\MongoDB\Server\8.3' +Installers: +- Architecture: x64 + InstallerUrl: https://fastdl.mongodb.org/windows/mongodb-windows-x86_64-8.3.1-signed.msi + InstallerSha256: F888ACA86BCDCC15952F0651ADFD711C4E29986D2ED3C9B1B304DDD270FD1574 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/MongoDB/Server/8.3.1/MongoDB.Server.locale.en-US.yaml b/manifests/m/MongoDB/Server/8.3.1/MongoDB.Server.locale.en-US.yaml new file mode 100644 index 000000000000..255f711d809b --- /dev/null +++ b/manifests/m/MongoDB/Server/8.3.1/MongoDB.Server.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: MongoDB.Server +PackageVersion: 8.3.1 +PackageLocale: en-US +Publisher: MongoDB Inc. +PublisherUrl: https://www.mongodb.com/ +PublisherSupportUrl: https://support.mongodb.com/welcome +PrivacyUrl: https://www.mongodb.com/legal/privacy-policy +Author: MongoDB Inc. +PackageName: MongoDB +PackageUrl: https://www.mongodb.com/try/download/community +License: Server Side Public License (SSPL) +LicenseUrl: https://www.mongodb.com/licensing/server-side-public-license +Copyright: © 2023 MongoDB, Inc. +CopyrightUrl: https://www.mongodb.com/licensing/server-side-public-license +ShortDescription: MongoDB is a general purpose, document-based, distributed database built for modern application developers and for the cloud era. +Moniker: mongodb-server +Tags: +- database +- mongo +- server +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Argente/SystemManager/1.0.1.7/Argente.SystemManager.yaml b/manifests/m/MongoDB/Server/8.3.1/MongoDB.Server.yaml similarity index 71% rename from manifests/a/Argente/SystemManager/1.0.1.7/Argente.SystemManager.yaml rename to manifests/m/MongoDB/Server/8.3.1/MongoDB.Server.yaml index 944c0680d007..cd24d8e746e5 100644 --- a/manifests/a/Argente/SystemManager/1.0.1.7/Argente.SystemManager.yaml +++ b/manifests/m/MongoDB/Server/8.3.1/MongoDB.Server.yaml @@ -1,8 +1,8 @@ # Created with komac v2.16.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: Argente.SystemManager -PackageVersion: 1.0.1.7 +PackageIdentifier: MongoDB.Server +PackageVersion: 8.3.1 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/DeveloperEdition/ms/151.0/Mozilla.Firefox.DeveloperEdition.ms.installer.yaml b/manifests/m/Mozilla/Firefox/DeveloperEdition/ms/151.0/Mozilla.Firefox.DeveloperEdition.ms.installer.yaml index 7c589ae61f28..da05fca0dc56 100644 --- a/manifests/m/Mozilla/Firefox/DeveloperEdition/ms/151.0/Mozilla.Firefox.DeveloperEdition.ms.installer.yaml +++ b/manifests/m/Mozilla/Firefox/DeveloperEdition/ms/151.0/Mozilla.Firefox.DeveloperEdition.ms.installer.yaml @@ -25,16 +25,16 @@ FileExtensions: - xht - xhtml ProductCode: Firefox Developer Edition -ReleaseDate: 2026-05-04 +ReleaseDate: 2026-05-06 Installers: - Architecture: x86 - InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b6/win32/ms/Firefox%20Setup%20151.0b6.exe - InstallerSha256: 0D02B991D31F888FC77B56BCFF8D62ED566DD2EEC9B939FF9A80BDDC76A0A5F0 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b7/win32/ms/Firefox%20Setup%20151.0b7.exe + InstallerSha256: C6A20E954AB3B87795B9FF5CAEB4271CBFF5B9A1D956463B9C7502A88AF144FA - Architecture: x64 - InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b6/win64/ms/Firefox%20Setup%20151.0b6.exe - InstallerSha256: 40067B1B28F560901B0E548D1D1CDF1FB1DDDD604E63C5CBDD450C6660E1EFF6 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b7/win64/ms/Firefox%20Setup%20151.0b7.exe + InstallerSha256: 0B548437BD243C8AFA4C4F5DC1A73A8ED2568F727B485416E0E620586500A0E1 - Architecture: arm64 - InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b6/win64-aarch64/ms/Firefox%20Setup%20151.0b6.exe - InstallerSha256: 3871820ED50B59A687202F3A65E6D9D1C91D4C12831099BD95C447D82FECAEBD + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/devedition/releases/151.0b7/win64-aarch64/ms/Firefox%20Setup%20151.0b7.exe + InstallerSha256: C44785BEDBD73C77DE591CC086AAC4239421129FBBF10AE82AFDC0FE09E9AC65 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/DeveloperEdition/ms/151.0/Mozilla.Firefox.DeveloperEdition.ms.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/DeveloperEdition/ms/151.0/Mozilla.Firefox.DeveloperEdition.ms.locale.en-US.yaml index 7cf4bcbee1ca..712e47dc8d50 100644 --- a/manifests/m/Mozilla/Firefox/DeveloperEdition/ms/151.0/Mozilla.Firefox.DeveloperEdition.ms.locale.en-US.yaml +++ b/manifests/m/Mozilla/Firefox/DeveloperEdition/ms/151.0/Mozilla.Firefox.DeveloperEdition.ms.locale.en-US.yaml @@ -41,6 +41,9 @@ ReleaseNotes: |- - Private Browsing Mode now has a new privacy feature that allows users to instantly clear all data from their current private session without closing the entire browser. - Standard Enhanced Tracking Protection mode is getting increased protections against fingerprinting that limit the amount of information revealed about your computer and frustrating attempts to track you across websites. - Local profile backups are now available on macOS and Linux, with support for restoring them across platforms. + - Local network access restrictions are now rolling out to all users. Firefox requires websites to request permission before connecting to devices on your local network or to apps and services on your device. Previously, this protection was limited to users with Enhanced Tracking Protection set to Strict. + - You can now merge multiple PDFs directly in the Firefox PDF viewer. + - Added an AI Controls section to the Firefox for Android Settings for managing AI-enhanced features. Fixed - Correct screen resolution reporting via JS APIs in multiple monitor setups. diff --git a/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.installer.yaml new file mode 100644 index 000000000000..71440e2ec894 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.af +PackageVersion: 140.10.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/af/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 0D3842603EF0219FE69B337A04F5C847F2D7FFDF7DA62DE40CF7EC5E2E63FAF0 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 af) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/af/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 453105A8E7155F9CE3A3098643B498B1EB7CFDD4EFBF7BD39E4B57F7B1F3791E + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 af) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/af/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 8F757DF0F4591EE39D553C569D6287E2418C6CB7C39FCA22468EE7B6C339270C + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 af) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.locale.de-DE.yaml new file mode 100644 index 000000000000..31192fce1ded --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.af +PackageVersion: 140.10.2 +PackageLocale: de-DE +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/websites +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (af) +PackageUrl: https://www.mozilla.org/de/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Holen Sie sich den Firefox Extended Support Release oder Rapid Release für umfassende Datensicherheit und Datenschutz. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.locale.en-US.yaml new file mode 100644 index 000000000000..dd82054ba5f2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.af +PackageVersion: 140.10.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (af) +PackageUrl: https://www.mozilla.org/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Get the Firefox Extended Support Release or Rapid Release browser for comprehensive data security and data protection. +Moniker: firefox-esr +Tags: +- browser +- cross-platform +- foss +- gecko +- quantum +- spidermonkey +- web +- web-browser +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.locale.zh-CN.yaml new file mode 100644 index 000000000000..502bb428b05a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.af +PackageVersion: 140.10.2 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageName: Mozilla Firefox ESR (af) +PackageUrl: https://www.mozilla.org/zh-CN/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: 下载部署 Firefox 延长支持版或快速发行版,获得全面的信息安全和数据保护。 +Tags: +- mozilla +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.yaml b/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.yaml new file mode 100644 index 000000000000..230e5ab0d997 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/af/140.10.2/Mozilla.Firefox.ESR.af.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.af +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.installer.yaml new file mode 100644 index 000000000000..cd8c7d70e0d0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.an +PackageVersion: 140.10.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/an/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 74EA44B06A80C0E4F27C192F99D3F544D37ACF7B4854E96CF8B4589D78AB7B92 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 an) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/an/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 87CCD666E0CEE8275917C3D476E6AFADC48153CD2CF6182B61FF8DDC851EBE38 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 an) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/an/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 7E4EF021EA3A90A19E3E80AE1D6C39A7145B3F762E783682FB44DE0A8E44BE57 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 an) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.locale.de-DE.yaml new file mode 100644 index 000000000000..6ef673dc1de3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.an +PackageVersion: 140.10.2 +PackageLocale: de-DE +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/websites +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (an) +PackageUrl: https://www.mozilla.org/de/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Holen Sie sich den Firefox Extended Support Release oder Rapid Release für umfassende Datensicherheit und Datenschutz. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.locale.en-US.yaml new file mode 100644 index 000000000000..64a647b1186d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.an +PackageVersion: 140.10.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (an) +PackageUrl: https://www.mozilla.org/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Get the Firefox Extended Support Release or Rapid Release browser for comprehensive data security and data protection. +Moniker: firefox-esr +Tags: +- browser +- cross-platform +- foss +- gecko +- quantum +- spidermonkey +- web +- web-browser +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.locale.zh-CN.yaml new file mode 100644 index 000000000000..f22f0e3a4bf1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.an +PackageVersion: 140.10.2 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageName: Mozilla Firefox ESR (an) +PackageUrl: https://www.mozilla.org/zh-CN/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: 下载部署 Firefox 延长支持版或快速发行版,获得全面的信息安全和数据保护。 +Tags: +- mozilla +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.yaml b/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.yaml new file mode 100644 index 000000000000..be3b8ef2f2bf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/an/140.10.2/Mozilla.Firefox.ESR.an.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.an +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.installer.yaml new file mode 100644 index 000000000000..63aba4e0748b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.ar +PackageVersion: 140.10.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/ar/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 1728D1B8D15953E480E912E8460658D53D6D98202AF5CC7AA955AD9CF270A8B2 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 ar) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/ar/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: A239769DFEE21A582B0DB114B0C2DFD0DDF4412CE12F3C1BAC498DBCDC49F639 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 ar) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/ar/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 98C4F283AFA5128AE55F95E6A32A0743396EFBA76C80EE893AF6165A1E14A431 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 ar) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.locale.de-DE.yaml new file mode 100644 index 000000000000..3d4b7b7778d9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.ar +PackageVersion: 140.10.2 +PackageLocale: de-DE +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/websites +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (ar) +PackageUrl: https://www.mozilla.org/de/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Holen Sie sich den Firefox Extended Support Release oder Rapid Release für umfassende Datensicherheit und Datenschutz. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.locale.en-US.yaml new file mode 100644 index 000000000000..fb42e61a390b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.ar +PackageVersion: 140.10.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (ar) +PackageUrl: https://www.mozilla.org/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Get the Firefox Extended Support Release or Rapid Release browser for comprehensive data security and data protection. +Moniker: firefox-esr +Tags: +- browser +- cross-platform +- foss +- gecko +- quantum +- spidermonkey +- web +- web-browser +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.locale.zh-CN.yaml new file mode 100644 index 000000000000..e5f01111e777 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.ar +PackageVersion: 140.10.2 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageName: Mozilla Firefox ESR (ar) +PackageUrl: https://www.mozilla.org/zh-CN/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: 下载部署 Firefox 延长支持版或快速发行版,获得全面的信息安全和数据保护。 +Tags: +- mozilla +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.yaml b/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.yaml new file mode 100644 index 000000000000..7a6e53290af5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ar/140.10.2/Mozilla.Firefox.ESR.ar.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.ar +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/az/140.10.2/Mozilla.Firefox.ESR.az.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/az/140.10.2/Mozilla.Firefox.ESR.az.installer.yaml new file mode 100644 index 000000000000..5623eaad2d4c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/az/140.10.2/Mozilla.Firefox.ESR.az.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.az +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/az/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: D15D4BF31D8185FD91F16FF074A944B1F25BBD8A50BA654D2F96BB14E1D75095 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 az) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/az/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: CBBC623F7B185CCD289195D26717C6D8900F892729566ECEF126B4A55069DEEE + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 az) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/az/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: BEE521F027EC147D612AACDC0409B31A34118FA574BFD21DE883D7EDA1DF5CB5 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 az) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/az/140.10.2/Mozilla.Firefox.ESR.az.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/az/140.10.2/Mozilla.Firefox.ESR.az.locale.de-DE.yaml new file mode 100644 index 000000000000..388962f3518a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/az/140.10.2/Mozilla.Firefox.ESR.az.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.az +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 (az) +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/az/140.10.2/Mozilla.Firefox.ESR.az.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/az/140.10.2/Mozilla.Firefox.ESR.az.locale.en-US.yaml new file mode 100644 index 000000000000..a61fb99243fb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/az/140.10.2/Mozilla.Firefox.ESR.az.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.az +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 (az) +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/az/140.10.2/Mozilla.Firefox.ESR.az.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/az/140.10.2/Mozilla.Firefox.ESR.az.locale.zh-CN.yaml new file mode 100644 index 000000000000..ddb9f2ac0e84 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/az/140.10.2/Mozilla.Firefox.ESR.az.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.az +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 (az) +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/az/140.10.2/Mozilla.Firefox.ESR.az.yaml b/manifests/m/Mozilla/Firefox/ESR/az/140.10.2/Mozilla.Firefox.ESR.az.yaml new file mode 100644 index 000000000000..5046ddc89aeb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/az/140.10.2/Mozilla.Firefox.ESR.az.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.az +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/br/140.10.2/Mozilla.Firefox.ESR.br.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/br/140.10.2/Mozilla.Firefox.ESR.br.installer.yaml new file mode 100644 index 000000000000..10908f2023f8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/br/140.10.2/Mozilla.Firefox.ESR.br.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.br +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/br/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: E9ED4CF16060B5A193C6760F7B67BFDA51B104B5E4A38C3FC96801818056044B + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 br) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/br/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: EAB0F5C1ACC2F7D05029242696F679861E8AD1A1315BEBEB208F9F0FAADBA3C9 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 br) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/br/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 89F840E8938C14C0E18C18F7B6C0DE54E73C2E8A4515C97605F23AF9A26F4E86 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 br) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/br/140.10.2/Mozilla.Firefox.ESR.br.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/br/140.10.2/Mozilla.Firefox.ESR.br.locale.de-DE.yaml new file mode 100644 index 000000000000..2480209c0e47 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/br/140.10.2/Mozilla.Firefox.ESR.br.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.br +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 (br) +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/br/140.10.2/Mozilla.Firefox.ESR.br.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/br/140.10.2/Mozilla.Firefox.ESR.br.locale.en-US.yaml new file mode 100644 index 000000000000..50e2294b4724 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/br/140.10.2/Mozilla.Firefox.ESR.br.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.br +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 (br) +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/br/140.10.2/Mozilla.Firefox.ESR.br.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/br/140.10.2/Mozilla.Firefox.ESR.br.locale.zh-CN.yaml new file mode 100644 index 000000000000..33a7135caecd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/br/140.10.2/Mozilla.Firefox.ESR.br.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.br +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 (br) +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/br/140.10.2/Mozilla.Firefox.ESR.br.yaml b/manifests/m/Mozilla/Firefox/ESR/br/140.10.2/Mozilla.Firefox.ESR.br.yaml new file mode 100644 index 000000000000..4318ffcf75c5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/br/140.10.2/Mozilla.Firefox.ESR.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.ESR.br +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.installer.yaml new file mode 100644 index 000000000000..f299d8cef1fa --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.bs +PackageVersion: 140.10.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/bs/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 3E051895D7178365BE9E6D6F11E0043B54077A73666135C0C4E070D9FE9D244D + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 bs) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/bs/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: EDB1C485047C0263E9D3D3C1610E1039411D490CC4F46AB215FA665683139213 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 bs) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/bs/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 7A4EA875F0946AB1225D54A97AB49148A4EBA8A9AAA0BF210633429181716FB6 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 bs) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.locale.de-DE.yaml new file mode 100644 index 000000000000..40bd505e6117 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.bs +PackageVersion: 140.10.2 +PackageLocale: de-DE +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/websites +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (bs) +PackageUrl: https://www.mozilla.org/de/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Holen Sie sich den Firefox Extended Support Release oder Rapid Release für umfassende Datensicherheit und Datenschutz. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.locale.en-US.yaml new file mode 100644 index 000000000000..e257f5a36897 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.bs +PackageVersion: 140.10.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (bs) +PackageUrl: https://www.mozilla.org/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Get the Firefox Extended Support Release or Rapid Release browser for comprehensive data security and data protection. +Moniker: firefox-esr +Tags: +- browser +- cross-platform +- foss +- gecko +- quantum +- spidermonkey +- web +- web-browser +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.locale.zh-CN.yaml new file mode 100644 index 000000000000..430625a70afc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.bs +PackageVersion: 140.10.2 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageName: Mozilla Firefox ESR (bs) +PackageUrl: https://www.mozilla.org/zh-CN/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: 下载部署 Firefox 延长支持版或快速发行版,获得全面的信息安全和数据保护。 +Tags: +- mozilla +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.yaml b/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.yaml new file mode 100644 index 000000000000..e272ff6b5f30 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/bs/140.10.2/Mozilla.Firefox.ESR.bs.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.bs +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.installer.yaml new file mode 100644 index 000000000000..be3e00470539 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.cak +PackageVersion: 140.10.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/cak/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: CAC1DB57D1344DF68F2848EE9B0D134F0938AF4D1E91DAABE1C6140CBD7DF0A0 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 cak) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/cak/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: FF7C5C0752C89F31E06E9D4E3C5C80BA41C4FE7DA68915A445D2379721364C32 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 cak) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/cak/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: DABD117013E521EA5B2351245BF2A56DEE1626CFAD7A1E652D818BF5179C530C + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 cak) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.locale.de-DE.yaml new file mode 100644 index 000000000000..45b5752f2bf0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.cak +PackageVersion: 140.10.2 +PackageLocale: de-DE +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/websites +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (cak) +PackageUrl: https://www.mozilla.org/de/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Holen Sie sich den Firefox Extended Support Release oder Rapid Release für umfassende Datensicherheit und Datenschutz. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.locale.en-US.yaml new file mode 100644 index 000000000000..1023f6681832 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.cak +PackageVersion: 140.10.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (cak) +PackageUrl: https://www.mozilla.org/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Get the Firefox Extended Support Release or Rapid Release browser for comprehensive data security and data protection. +Moniker: firefox-esr +Tags: +- browser +- cross-platform +- foss +- gecko +- quantum +- spidermonkey +- web +- web-browser +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.locale.zh-CN.yaml new file mode 100644 index 000000000000..4a3c8f50a5e5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.cak +PackageVersion: 140.10.2 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageName: Mozilla Firefox ESR (cak) +PackageUrl: https://www.mozilla.org/zh-CN/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: 下载部署 Firefox 延长支持版或快速发行版,获得全面的信息安全和数据保护。 +Tags: +- mozilla +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.yaml b/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.yaml new file mode 100644 index 000000000000..968fd002592e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cak/140.10.2/Mozilla.Firefox.ESR.cak.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.cak +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/cs/140.10.2/Mozilla.Firefox.ESR.cs.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/cs/140.10.2/Mozilla.Firefox.ESR.cs.installer.yaml new file mode 100644 index 000000000000..e0680a4513bd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cs/140.10.2/Mozilla.Firefox.ESR.cs.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.cs +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/cs/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: D4D3ED02E009F2F426BD6DBAE0019F8704D6605985AD59AA5770A0AC3F5E8171 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 cs) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/cs/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: AF37836031973F3DD3C242D07A2B3C5AB1259CA748161BDE59D55F6567B38233 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 cs) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/cs/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: F6219C0A98842F314196EA1F212B767DFF03F329B0E7EACEC6460C43E32E77BA + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 cs) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/cs/140.10.2/Mozilla.Firefox.ESR.cs.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/cs/140.10.2/Mozilla.Firefox.ESR.cs.locale.de-DE.yaml new file mode 100644 index 000000000000..93ee505b377d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cs/140.10.2/Mozilla.Firefox.ESR.cs.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.cs +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 (cs) +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/cs/140.10.2/Mozilla.Firefox.ESR.cs.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/cs/140.10.2/Mozilla.Firefox.ESR.cs.locale.en-US.yaml new file mode 100644 index 000000000000..c56c4ff6da7f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cs/140.10.2/Mozilla.Firefox.ESR.cs.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.cs +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 (cs) +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/cs/140.10.2/Mozilla.Firefox.ESR.cs.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/cs/140.10.2/Mozilla.Firefox.ESR.cs.locale.zh-CN.yaml new file mode 100644 index 000000000000..30338d7e0f47 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cs/140.10.2/Mozilla.Firefox.ESR.cs.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.cs +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 (cs) +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/cs/140.10.2/Mozilla.Firefox.ESR.cs.yaml b/manifests/m/Mozilla/Firefox/ESR/cs/140.10.2/Mozilla.Firefox.ESR.cs.yaml new file mode 100644 index 000000000000..b8a49e95f42f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cs/140.10.2/Mozilla.Firefox.ESR.cs.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.cs +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.installer.yaml new file mode 100644 index 000000000000..79e8ef8389ad --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.cy +PackageVersion: 140.10.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/cy/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: FC79246AF3DAA565B6FBAD8C5BF721EF04AA730D85CFD6996BF7FB921F41AB72 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 cy) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/cy/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: FE8610E85D1CA277C715C2A172B69D7954E152B0D69A3D70A3A11409FC301688 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 cy) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/cy/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 3D5D9304BB3562C1091013029CC39A5717747E05C5D9DD4D626F24894748D28F + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 cy) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.locale.de-DE.yaml new file mode 100644 index 000000000000..b08ea40fa3ff --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.cy +PackageVersion: 140.10.2 +PackageLocale: de-DE +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/websites +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (cy) +PackageUrl: https://www.mozilla.org/de/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Holen Sie sich den Firefox Extended Support Release oder Rapid Release für umfassende Datensicherheit und Datenschutz. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.locale.en-US.yaml new file mode 100644 index 000000000000..3972ae1411cd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.cy +PackageVersion: 140.10.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (cy) +PackageUrl: https://www.mozilla.org/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Get the Firefox Extended Support Release or Rapid Release browser for comprehensive data security and data protection. +Moniker: firefox-esr +Tags: +- browser +- cross-platform +- foss +- gecko +- quantum +- spidermonkey +- web +- web-browser +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.locale.zh-CN.yaml new file mode 100644 index 000000000000..6a8f5d2d28db --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.cy +PackageVersion: 140.10.2 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageName: Mozilla Firefox ESR (cy) +PackageUrl: https://www.mozilla.org/zh-CN/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: 下载部署 Firefox 延长支持版或快速发行版,获得全面的信息安全和数据保护。 +Tags: +- mozilla +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.yaml b/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.yaml new file mode 100644 index 000000000000..74aa8075d1cf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/cy/140.10.2/Mozilla.Firefox.ESR.cy.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.cy +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.installer.yaml new file mode 100644 index 000000000000..41fee1b373b9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.da +PackageVersion: 140.10.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/da/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 6C14E409100383446A345A5AB9B6E832A9154CCF245A93CC55CBD2AC82181C43 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 da) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/da/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: BEEFFB8203ACE8E1E4E63FA65AAB5BEBF97CBD2ED33CB636A4D6902AEC926417 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 da) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/da/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 2B96C47D927EF54135B729243E27C6E0904149474A9376C36541EBBA9EED6FF4 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 da) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.locale.de-DE.yaml new file mode 100644 index 000000000000..4d121d7f774b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.da +PackageVersion: 140.10.2 +PackageLocale: de-DE +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/websites +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (da) +PackageUrl: https://www.mozilla.org/de/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Holen Sie sich den Firefox Extended Support Release oder Rapid Release für umfassende Datensicherheit und Datenschutz. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.locale.en-US.yaml new file mode 100644 index 000000000000..fce30a6a61ba --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.da +PackageVersion: 140.10.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (da) +PackageUrl: https://www.mozilla.org/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Get the Firefox Extended Support Release or Rapid Release browser for comprehensive data security and data protection. +Moniker: firefox-esr +Tags: +- browser +- cross-platform +- foss +- gecko +- quantum +- spidermonkey +- web +- web-browser +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.locale.zh-CN.yaml new file mode 100644 index 000000000000..e7607aa42a30 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.da +PackageVersion: 140.10.2 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageName: Mozilla Firefox ESR (da) +PackageUrl: https://www.mozilla.org/zh-CN/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: 下载部署 Firefox 延长支持版或快速发行版,获得全面的信息安全和数据保护。 +Tags: +- mozilla +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.yaml b/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.yaml new file mode 100644 index 000000000000..19229fad466b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/da/140.10.2/Mozilla.Firefox.ESR.da.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.da +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.installer.yaml new file mode 100644 index 000000000000..e195003ebd30 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.de +PackageVersion: 140.10.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/de/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 0B61D70694C87E2F4DADA9474FB3D61312B11330BC47AC727E52F948783EEC7E + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 de) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/de/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 6E49958CC711857A520FCE5B681FB8A74903E043183D34F5D9F0D70AB9CE59D6 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 de) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/de/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 8B192461AE788B2C102C340128C66055DE64BBFFB0940398AA6942F124B34AC4 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 de) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.locale.de-DE.yaml new file mode 100644 index 000000000000..a65c322a22d9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.de +PackageVersion: 140.10.2 +PackageLocale: de-DE +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/websites +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (de) +PackageUrl: https://www.mozilla.org/de/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Holen Sie sich den Firefox Extended Support Release oder Rapid Release für umfassende Datensicherheit und Datenschutz. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.locale.en-US.yaml new file mode 100644 index 000000000000..d75e20343a7b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.de +PackageVersion: 140.10.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (de) +PackageUrl: https://www.mozilla.org/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Get the Firefox Extended Support Release or Rapid Release browser for comprehensive data security and data protection. +Moniker: firefox-esr +Tags: +- browser +- cross-platform +- foss +- gecko +- quantum +- spidermonkey +- web +- web-browser +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.locale.zh-CN.yaml new file mode 100644 index 000000000000..c0e29bb1760b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.de +PackageVersion: 140.10.2 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageName: Mozilla Firefox ESR (de) +PackageUrl: https://www.mozilla.org/zh-CN/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: 下载部署 Firefox 延长支持版或快速发行版,获得全面的信息安全和数据保护。 +Tags: +- mozilla +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.yaml b/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.yaml new file mode 100644 index 000000000000..777b5551eb2f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/de/140.10.2/Mozilla.Firefox.ESR.de.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.de +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/el/140.10.2/Mozilla.Firefox.ESR.el.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/el/140.10.2/Mozilla.Firefox.ESR.el.installer.yaml new file mode 100644 index 000000000000..40942c64b0d8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/el/140.10.2/Mozilla.Firefox.ESR.el.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.el +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/el/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: FE3A5D62FA4307B5AB725FA7B0E8F133ADD067A3E016B122FBB738278E948182 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 el) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/el/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 25D3B957F0A5573AD8D439309377EF737285A44DC8BDD4030BF67055D4E8DAC1 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 el) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/el/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 8FBB1C7B91A668129F2AF4F574E226D96632DD0213856573F788C373FB140C2E + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 el) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/el/140.10.2/Mozilla.Firefox.ESR.el.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/el/140.10.2/Mozilla.Firefox.ESR.el.locale.de-DE.yaml new file mode 100644 index 000000000000..7caac1f02fa6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/el/140.10.2/Mozilla.Firefox.ESR.el.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.el +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 (el) +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/el/140.10.2/Mozilla.Firefox.ESR.el.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/el/140.10.2/Mozilla.Firefox.ESR.el.locale.en-US.yaml new file mode 100644 index 000000000000..bedb0f0e911e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/el/140.10.2/Mozilla.Firefox.ESR.el.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.el +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 (el) +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/el/140.10.2/Mozilla.Firefox.ESR.el.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/el/140.10.2/Mozilla.Firefox.ESR.el.locale.zh-CN.yaml new file mode 100644 index 000000000000..13e2eceee080 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/el/140.10.2/Mozilla.Firefox.ESR.el.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.el +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 (el) +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/el/140.10.2/Mozilla.Firefox.ESR.el.yaml b/manifests/m/Mozilla/Firefox/ESR/el/140.10.2/Mozilla.Firefox.ESR.el.yaml new file mode 100644 index 000000000000..1cd2a61d8b1b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/el/140.10.2/Mozilla.Firefox.ESR.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.ESR.el +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/en-CA/140.10.2/Mozilla.Firefox.ESR.en-CA.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/en-CA/140.10.2/Mozilla.Firefox.ESR.en-CA.installer.yaml new file mode 100644 index 000000000000..79444cff2273 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/en-CA/140.10.2/Mozilla.Firefox.ESR.en-CA.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.en-CA +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/en-CA/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: E35680FAC589686F1D370449F94A413972F24094E18C07A5CCD879240905BA93 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 en-CA) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/en-CA/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 74E7A0908E75C0222893656F2993A851DA7372A7F516E4FDD6BC96A0A2C3F817 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 en-CA) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/en-CA/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: F06EAC17BE92B5E286E91E535883EEC9D6D89AD3766CDA1DB3D12B14961C2F9D + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 en-CA) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/en-CA/140.10.2/Mozilla.Firefox.ESR.en-CA.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/en-CA/140.10.2/Mozilla.Firefox.ESR.en-CA.locale.de-DE.yaml new file mode 100644 index 000000000000..db24d8d73752 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/en-CA/140.10.2/Mozilla.Firefox.ESR.en-CA.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.en-CA +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 (en-CA) +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/en-CA/140.10.2/Mozilla.Firefox.ESR.en-CA.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/en-CA/140.10.2/Mozilla.Firefox.ESR.en-CA.locale.en-US.yaml new file mode 100644 index 000000000000..116cace624ec --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/en-CA/140.10.2/Mozilla.Firefox.ESR.en-CA.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.en-CA +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 (en-CA) +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/en-CA/140.10.2/Mozilla.Firefox.ESR.en-CA.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/en-CA/140.10.2/Mozilla.Firefox.ESR.en-CA.locale.zh-CN.yaml new file mode 100644 index 000000000000..e3ac7342d1e1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/en-CA/140.10.2/Mozilla.Firefox.ESR.en-CA.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.en-CA +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 (en-CA) +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/en-CA/140.10.2/Mozilla.Firefox.ESR.en-CA.yaml b/manifests/m/Mozilla/Firefox/ESR/en-CA/140.10.2/Mozilla.Firefox.ESR.en-CA.yaml new file mode 100644 index 000000000000..dee0f2e546c4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/en-CA/140.10.2/Mozilla.Firefox.ESR.en-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.ESR.en-CA +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/en-GB/140.10.2/Mozilla.Firefox.ESR.en-GB.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/en-GB/140.10.2/Mozilla.Firefox.ESR.en-GB.installer.yaml new file mode 100644 index 000000000000..b5a7499c725a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/en-GB/140.10.2/Mozilla.Firefox.ESR.en-GB.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.en-GB +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/en-GB/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: EF4869D0DB9DC3936BF57E36A947E1338651C66335A984CE0906BE5AF4435D9A + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 en-GB) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/en-GB/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 05CA281263EACA3DA219C8C895FD3C3609FF11E260394238D4DF71E9DD15941F + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 en-GB) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/en-GB/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 45A7C1008295B69F3696D103D4C9D4CC0224C439408F9B1BFC960CA3B5C08C61 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 en-GB) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/en-GB/140.10.2/Mozilla.Firefox.ESR.en-GB.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/en-GB/140.10.2/Mozilla.Firefox.ESR.en-GB.locale.de-DE.yaml new file mode 100644 index 000000000000..0be4ba214199 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/en-GB/140.10.2/Mozilla.Firefox.ESR.en-GB.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.en-GB +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 (en-GB) +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/en-GB/140.10.2/Mozilla.Firefox.ESR.en-GB.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/en-GB/140.10.2/Mozilla.Firefox.ESR.en-GB.locale.en-US.yaml new file mode 100644 index 000000000000..acd872f548dd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/en-GB/140.10.2/Mozilla.Firefox.ESR.en-GB.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.en-GB +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 (en-GB) +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/en-GB/140.10.2/Mozilla.Firefox.ESR.en-GB.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/en-GB/140.10.2/Mozilla.Firefox.ESR.en-GB.locale.zh-CN.yaml new file mode 100644 index 000000000000..1bc9917dcbe0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/en-GB/140.10.2/Mozilla.Firefox.ESR.en-GB.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.en-GB +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 (en-GB) +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/en-GB/140.10.2/Mozilla.Firefox.ESR.en-GB.yaml b/manifests/m/Mozilla/Firefox/ESR/en-GB/140.10.2/Mozilla.Firefox.ESR.en-GB.yaml new file mode 100644 index 000000000000..2c7480c5ab26 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/en-GB/140.10.2/Mozilla.Firefox.ESR.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.ESR.en-GB +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/eo/140.10.2/Mozilla.Firefox.ESR.eo.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/eo/140.10.2/Mozilla.Firefox.ESR.eo.installer.yaml new file mode 100644 index 000000000000..15303cf5a454 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/eo/140.10.2/Mozilla.Firefox.ESR.eo.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.eo +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/eo/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 3984DC5CA621B5D6D8DF6779E38AE5A2C9B00808C1C73AB138D01BDBDA449B43 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 eo) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/eo/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: BDD844303A4418C40CE0D00536AB553ACDF937884D609420717D3E5D05F56D34 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 eo) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/eo/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 8F92521BD696ED0939B1D24069ADBB412096CDF0EA81CE971ADF29A9B625FCFA + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 eo) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/eo/140.10.2/Mozilla.Firefox.ESR.eo.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/eo/140.10.2/Mozilla.Firefox.ESR.eo.locale.de-DE.yaml new file mode 100644 index 000000000000..489e82c388d5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/eo/140.10.2/Mozilla.Firefox.ESR.eo.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.eo +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 (eo) +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/eo/140.10.2/Mozilla.Firefox.ESR.eo.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/eo/140.10.2/Mozilla.Firefox.ESR.eo.locale.en-US.yaml new file mode 100644 index 000000000000..3643f55ee93d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/eo/140.10.2/Mozilla.Firefox.ESR.eo.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.eo +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 (eo) +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/eo/140.10.2/Mozilla.Firefox.ESR.eo.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/eo/140.10.2/Mozilla.Firefox.ESR.eo.locale.zh-CN.yaml new file mode 100644 index 000000000000..b8df01e07b7f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/eo/140.10.2/Mozilla.Firefox.ESR.eo.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.eo +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 (eo) +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/eo/140.10.2/Mozilla.Firefox.ESR.eo.yaml b/manifests/m/Mozilla/Firefox/ESR/eo/140.10.2/Mozilla.Firefox.ESR.eo.yaml new file mode 100644 index 000000000000..c12cde1e8828 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/eo/140.10.2/Mozilla.Firefox.ESR.eo.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.eo +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.installer.yaml new file mode 100644 index 000000000000..d74a0b0b4450 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.es-AR +PackageVersion: 140.10.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/es-AR/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 6F58728AAAF429BC714FD822993B71591EDB59E9B0C9C14A98B3E24F2AB6FEC9 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 es-AR) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/es-AR/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: E6F123B22FA7FC549CF6509D39283055C11C3BBAC9CED203788FD9178A90A3A2 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 es-AR) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/es-AR/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: FA700CB351B0FC25658A0197411156E34A9BA4FBB2B6462D8C98FB43B366852C + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 es-AR) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.locale.de-DE.yaml new file mode 100644 index 000000000000..a32fc815f33e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.es-AR +PackageVersion: 140.10.2 +PackageLocale: de-DE +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/websites +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (es-AR) +PackageUrl: https://www.mozilla.org/de/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Holen Sie sich den Firefox Extended Support Release oder Rapid Release für umfassende Datensicherheit und Datenschutz. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.locale.en-US.yaml new file mode 100644 index 000000000000..079844354983 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.es-AR +PackageVersion: 140.10.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (es-AR) +PackageUrl: https://www.mozilla.org/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Get the Firefox Extended Support Release or Rapid Release browser for comprehensive data security and data protection. +Moniker: firefox-esr +Tags: +- browser +- cross-platform +- foss +- gecko +- quantum +- spidermonkey +- web +- web-browser +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.locale.zh-CN.yaml new file mode 100644 index 000000000000..6a6b4a305b66 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.es-AR +PackageVersion: 140.10.2 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageName: Mozilla Firefox ESR (es-AR) +PackageUrl: https://www.mozilla.org/zh-CN/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: 下载部署 Firefox 延长支持版或快速发行版,获得全面的信息安全和数据保护。 +Tags: +- mozilla +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.yaml b/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.yaml new file mode 100644 index 000000000000..9c825a53964f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-AR/140.10.2/Mozilla.Firefox.ESR.es-AR.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.es-AR +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/es-CL/140.10.2/Mozilla.Firefox.ESR.es-CL.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/es-CL/140.10.2/Mozilla.Firefox.ESR.es-CL.installer.yaml new file mode 100644 index 000000000000..01931ee9f53a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-CL/140.10.2/Mozilla.Firefox.ESR.es-CL.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-CL +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-CL/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: ABC52A606A935C6C033D9F76E4769D2DE0183C246E451BAD0B031C79E1265F91 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 es-CL) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/es-CL/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 45FFFCA83D79484360B5D5B033993F4456B63C4EBA2B90F31F743147F668C524 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 es-CL) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/es-CL/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: A5D07E6D90E003A0D5BF23F064D5BFF363FBBC618863AB8BF458A0F85581D4CE + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 es-CL) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/es-CL/140.10.2/Mozilla.Firefox.ESR.es-CL.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/es-CL/140.10.2/Mozilla.Firefox.ESR.es-CL.locale.de-DE.yaml new file mode 100644 index 000000000000..d239922d7f1d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-CL/140.10.2/Mozilla.Firefox.ESR.es-CL.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-CL +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-CL) +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-CL/140.10.2/Mozilla.Firefox.ESR.es-CL.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/es-CL/140.10.2/Mozilla.Firefox.ESR.es-CL.locale.en-US.yaml new file mode 100644 index 000000000000..c86620d12f6e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-CL/140.10.2/Mozilla.Firefox.ESR.es-CL.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-CL +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-CL) +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-CL/140.10.2/Mozilla.Firefox.ESR.es-CL.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/es-CL/140.10.2/Mozilla.Firefox.ESR.es-CL.locale.zh-CN.yaml new file mode 100644 index 000000000000..50f11da28627 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-CL/140.10.2/Mozilla.Firefox.ESR.es-CL.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-CL +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-CL) +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-CL/140.10.2/Mozilla.Firefox.ESR.es-CL.yaml b/manifests/m/Mozilla/Firefox/ESR/es-CL/140.10.2/Mozilla.Firefox.ESR.es-CL.yaml new file mode 100644 index 000000000000..19c6aee801e8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-CL/140.10.2/Mozilla.Firefox.ESR.es-CL.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-CL +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/es-ES/140.10.2/Mozilla.Firefox.ESR.es-ES.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/es-ES/140.10.2/Mozilla.Firefox.ESR.es-ES.installer.yaml new file mode 100644 index 000000000000..ab069ebc6e70 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-ES/140.10.2/Mozilla.Firefox.ESR.es-ES.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-ES +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-ES/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: D1B22D29ADD43560FA4B73FF44E3E3EFB39B8494D4CB721F8C15540538E4EF42 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 es-ES) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/es-ES/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: E465BE9D3F2265AF3D9992675D43C0F6097949850D2837008F5743F49ECC6335 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 es-ES) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/es-ES/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: C9FFFF7BC6D06001F5A4F424E1C0E379034E58D9AB16A784B4240E043DF5C306 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 es-ES) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/es-ES/140.10.2/Mozilla.Firefox.ESR.es-ES.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/es-ES/140.10.2/Mozilla.Firefox.ESR.es-ES.locale.de-DE.yaml new file mode 100644 index 000000000000..9b5642da48f8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-ES/140.10.2/Mozilla.Firefox.ESR.es-ES.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-ES +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-ES) +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-ES/140.10.2/Mozilla.Firefox.ESR.es-ES.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/es-ES/140.10.2/Mozilla.Firefox.ESR.es-ES.locale.en-US.yaml new file mode 100644 index 000000000000..92b99fa10a10 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-ES/140.10.2/Mozilla.Firefox.ESR.es-ES.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-ES +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-ES) +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-ES/140.10.2/Mozilla.Firefox.ESR.es-ES.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/es-ES/140.10.2/Mozilla.Firefox.ESR.es-ES.locale.zh-CN.yaml new file mode 100644 index 000000000000..eb6de9afcd93 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-ES/140.10.2/Mozilla.Firefox.ESR.es-ES.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-ES +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-ES) +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-ES/140.10.2/Mozilla.Firefox.ESR.es-ES.yaml b/manifests/m/Mozilla/Firefox/ESR/es-ES/140.10.2/Mozilla.Firefox.ESR.es-ES.yaml new file mode 100644 index 000000000000..461bd35030fc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/es-ES/140.10.2/Mozilla.Firefox.ESR.es-ES.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-ES +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/et/140.10.2/Mozilla.Firefox.ESR.et.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/et/140.10.2/Mozilla.Firefox.ESR.et.installer.yaml new file mode 100644 index 000000000000..40283ee01c33 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/et/140.10.2/Mozilla.Firefox.ESR.et.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.et +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/et/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 328A6B3840A3AE2A2A2AD2E732DADA6FA411C14E4AF0C78A8C8A625DF60CDBEB + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 et) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/et/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: FAABA0A138F05F8748684913D5384C5659BA4F256E2C9A6993729A1233FFEECF + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 et) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/et/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 56E8B4C90C449267C894D0FA5DD3DF771AA15CBBA7FFDE6CCDE859B31EA6C498 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 et) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/et/140.10.2/Mozilla.Firefox.ESR.et.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/et/140.10.2/Mozilla.Firefox.ESR.et.locale.de-DE.yaml new file mode 100644 index 000000000000..d6b2338d3845 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/et/140.10.2/Mozilla.Firefox.ESR.et.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.et +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 (et) +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/et/140.10.2/Mozilla.Firefox.ESR.et.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/et/140.10.2/Mozilla.Firefox.ESR.et.locale.en-US.yaml new file mode 100644 index 000000000000..6c09e7d6a4ba --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/et/140.10.2/Mozilla.Firefox.ESR.et.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.et +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 (et) +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/et/140.10.2/Mozilla.Firefox.ESR.et.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/et/140.10.2/Mozilla.Firefox.ESR.et.locale.zh-CN.yaml new file mode 100644 index 000000000000..8ce44daa3099 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/et/140.10.2/Mozilla.Firefox.ESR.et.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.et +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 (et) +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/et/140.10.2/Mozilla.Firefox.ESR.et.yaml b/manifests/m/Mozilla/Firefox/ESR/et/140.10.2/Mozilla.Firefox.ESR.et.yaml new file mode 100644 index 000000000000..dad3a0ad2160 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/et/140.10.2/Mozilla.Firefox.ESR.et.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.et +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.installer.yaml new file mode 100644 index 000000000000..be564e654123 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.installer.yaml @@ -0,0 +1,42 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.fr +PackageVersion: 140.10.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win32/fr/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 762D8259B823A498CAD5DE0CCBE92BF98897F4C6D7B85233EEE45D4E4DC32350 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 fr) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/fr/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: E08A2A6BADCEDC044DA5BF2557CBD4A9EA6EF7ADA8F7E7A2C3D4FA2C1065C0F0 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 fr) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/fr/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: B61C572A4778674D22AC46EB21795FBFE30ABA769D74E02631D6C65137D9458D + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 fr) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.locale.de-DE.yaml new file mode 100644 index 000000000000..2c9a13440fe5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.locale.de-DE.yaml @@ -0,0 +1,21 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.fr +PackageVersion: 140.10.2 +PackageLocale: de-DE +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/websites +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (fr) +PackageUrl: https://www.mozilla.org/de/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Holen Sie sich den Firefox Extended Support Release oder Rapid Release für umfassende Datensicherheit und Datenschutz. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.locale.en-US.yaml new file mode 100644 index 000000000000..278e1915acb8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.locale.en-US.yaml @@ -0,0 +1,31 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.fr +PackageVersion: 140.10.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox ESR (fr) +PackageUrl: https://www.mozilla.org/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Get the Firefox Extended Support Release or Rapid Release browser for comprehensive data security and data protection. +Moniker: firefox-esr +Tags: +- browser +- cross-platform +- foss +- gecko +- quantum +- spidermonkey +- web +- web-browser +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/140.10.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.locale.zh-CN.yaml new file mode 100644 index 000000000000..69eb30941f4c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.fr +PackageVersion: 140.10.2 +PackageLocale: zh-CN +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageName: Mozilla Firefox ESR (fr) +PackageUrl: https://www.mozilla.org/zh-CN/firefox/enterprise/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: 下载部署 Firefox 延长支持版或快速发行版,获得全面的信息安全和数据保护。 +Tags: +- mozilla +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.yaml b/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.yaml new file mode 100644 index 000000000000..b4a63550a4d5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/fr/140.10.2/Mozilla.Firefox.ESR.fr.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.fr +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/fy-NL/140.10.2/Mozilla.Firefox.ESR.fy-NL.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/fy-NL/140.10.2/Mozilla.Firefox.ESR.fy-NL.installer.yaml new file mode 100644 index 000000000000..2b9522d9f1a3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/fy-NL/140.10.2/Mozilla.Firefox.ESR.fy-NL.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.fy-NL +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/fy-NL/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: CD0B813A8B805DCE79479EDFE31124C9D213F20902EAA7F53E575E1599C55695 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 fy-NL) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/fy-NL/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 7D803923F51361BCC63AD39BA84666F71057986B8050A076FAD15C66ED3AEA1A + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 fy-NL) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/fy-NL/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 76AFCF4FAA8648C44C93ECC853F7ADCBEDA2BECC406D3DF2FCA61B0AD081941E + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 fy-NL) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/fy-NL/140.10.2/Mozilla.Firefox.ESR.fy-NL.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/fy-NL/140.10.2/Mozilla.Firefox.ESR.fy-NL.locale.de-DE.yaml new file mode 100644 index 000000000000..11cb5d6b96b7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/fy-NL/140.10.2/Mozilla.Firefox.ESR.fy-NL.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.fy-NL +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 (fy-NL) +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/fy-NL/140.10.2/Mozilla.Firefox.ESR.fy-NL.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/fy-NL/140.10.2/Mozilla.Firefox.ESR.fy-NL.locale.en-US.yaml new file mode 100644 index 000000000000..2b83914733ee --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/fy-NL/140.10.2/Mozilla.Firefox.ESR.fy-NL.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.fy-NL +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 (fy-NL) +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/fy-NL/140.10.2/Mozilla.Firefox.ESR.fy-NL.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/fy-NL/140.10.2/Mozilla.Firefox.ESR.fy-NL.locale.zh-CN.yaml new file mode 100644 index 000000000000..bf4a8a3e08ba --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/fy-NL/140.10.2/Mozilla.Firefox.ESR.fy-NL.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.fy-NL +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 (fy-NL) +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/fy-NL/140.10.2/Mozilla.Firefox.ESR.fy-NL.yaml b/manifests/m/Mozilla/Firefox/ESR/fy-NL/140.10.2/Mozilla.Firefox.ESR.fy-NL.yaml new file mode 100644 index 000000000000..3f631bf1e838 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/fy-NL/140.10.2/Mozilla.Firefox.ESR.fy-NL.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.fy-NL +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/gd/140.10.2/Mozilla.Firefox.ESR.gd.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/gd/140.10.2/Mozilla.Firefox.ESR.gd.installer.yaml new file mode 100644 index 000000000000..bb00d39817b9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/gd/140.10.2/Mozilla.Firefox.ESR.gd.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.gd +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/gd/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 952355259BC54A776F741A970EC9575ACF36F2563875DB5A3CD06EF91EA209C1 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 gd) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/gd/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 33AB181D2720266BEFC9EF38842238E519003FDD042F8E50AE22B3B40C728419 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 gd) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/gd/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: F9074DA3316A4B01EE601D5CD4352F2283795BCCA112CDE2BD78A3CD28A72248 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 gd) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/gd/140.10.2/Mozilla.Firefox.ESR.gd.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/gd/140.10.2/Mozilla.Firefox.ESR.gd.locale.de-DE.yaml new file mode 100644 index 000000000000..0a89a92cbe85 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/gd/140.10.2/Mozilla.Firefox.ESR.gd.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.gd +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 (gd) +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/gd/140.10.2/Mozilla.Firefox.ESR.gd.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/gd/140.10.2/Mozilla.Firefox.ESR.gd.locale.en-US.yaml new file mode 100644 index 000000000000..6098f4235c5f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/gd/140.10.2/Mozilla.Firefox.ESR.gd.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.gd +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 (gd) +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/gd/140.10.2/Mozilla.Firefox.ESR.gd.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/gd/140.10.2/Mozilla.Firefox.ESR.gd.locale.zh-CN.yaml new file mode 100644 index 000000000000..ab3fae086f11 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/gd/140.10.2/Mozilla.Firefox.ESR.gd.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.gd +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 (gd) +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/gd/140.10.2/Mozilla.Firefox.ESR.gd.yaml b/manifests/m/Mozilla/Firefox/ESR/gd/140.10.2/Mozilla.Firefox.ESR.gd.yaml new file mode 100644 index 000000000000..7f46dc7ca2af --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/gd/140.10.2/Mozilla.Firefox.ESR.gd.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ESR.gd +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/gu-IN/140.10.2/Mozilla.Firefox.ESR.gu-IN.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/gu-IN/140.10.2/Mozilla.Firefox.ESR.gu-IN.installer.yaml new file mode 100644 index 000000000000..b22dd606e634 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/gu-IN/140.10.2/Mozilla.Firefox.ESR.gu-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.gu-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/gu-IN/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 292BA6B9B3C53FAEFE05AB8307C508821553536DE7F5FD00858BA2B5A365CC07 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 gu-IN) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/gu-IN/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 122CC5A0CA8320FAB17A5A82F5A74F5E1B1027FA430A52616E70265915CF0AD8 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 gu-IN) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/gu-IN/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: E477CE0AC2C1B970DA0865A475BE2C3DED5C9F79AE205509147286709F63E206 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 gu-IN) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/gu-IN/140.10.2/Mozilla.Firefox.ESR.gu-IN.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/gu-IN/140.10.2/Mozilla.Firefox.ESR.gu-IN.locale.de-DE.yaml new file mode 100644 index 000000000000..dbd2bc8a0e01 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/gu-IN/140.10.2/Mozilla.Firefox.ESR.gu-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.gu-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 (gu-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/gu-IN/140.10.2/Mozilla.Firefox.ESR.gu-IN.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/gu-IN/140.10.2/Mozilla.Firefox.ESR.gu-IN.locale.en-US.yaml new file mode 100644 index 000000000000..347051de0c26 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/gu-IN/140.10.2/Mozilla.Firefox.ESR.gu-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.gu-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 (gu-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/gu-IN/140.10.2/Mozilla.Firefox.ESR.gu-IN.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/gu-IN/140.10.2/Mozilla.Firefox.ESR.gu-IN.locale.zh-CN.yaml new file mode 100644 index 000000000000..d928b00399c6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/gu-IN/140.10.2/Mozilla.Firefox.ESR.gu-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.gu-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 (gu-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/gu-IN/140.10.2/Mozilla.Firefox.ESR.gu-IN.yaml b/manifests/m/Mozilla/Firefox/ESR/gu-IN/140.10.2/Mozilla.Firefox.ESR.gu-IN.yaml new file mode 100644 index 000000000000..e6b63fd3a9af --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/gu-IN/140.10.2/Mozilla.Firefox.ESR.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.ESR.gu-IN +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/hsb/140.10.2/Mozilla.Firefox.ESR.hsb.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/hsb/140.10.2/Mozilla.Firefox.ESR.hsb.installer.yaml new file mode 100644 index 000000000000..50cad3fc9c9d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/hsb/140.10.2/Mozilla.Firefox.ESR.hsb.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.hsb +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/hsb/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: DB4DE167295BA53DF2DE3EAFADBB682C9115F20811527EDE9BA068C9664A47B0 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 hsb) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/hsb/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: E40FE53F2B7F138F51042948EF1C6711E2EDA60132CD5DC7C8A00E77C58A24FA + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 hsb) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/hsb/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 1BA4B351AF3440DE271FFF97267CBC7EF47BD654DF18F3DB7B27CFC15FE04D41 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 hsb) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/hsb/140.10.2/Mozilla.Firefox.ESR.hsb.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/hsb/140.10.2/Mozilla.Firefox.ESR.hsb.locale.de-DE.yaml new file mode 100644 index 000000000000..16eea23fd657 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/hsb/140.10.2/Mozilla.Firefox.ESR.hsb.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.hsb +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 (hsb) +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/hsb/140.10.2/Mozilla.Firefox.ESR.hsb.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/hsb/140.10.2/Mozilla.Firefox.ESR.hsb.locale.en-US.yaml new file mode 100644 index 000000000000..5c022b0f27a1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/hsb/140.10.2/Mozilla.Firefox.ESR.hsb.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.hsb +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 (hsb) +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/hsb/140.10.2/Mozilla.Firefox.ESR.hsb.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/hsb/140.10.2/Mozilla.Firefox.ESR.hsb.locale.zh-CN.yaml new file mode 100644 index 000000000000..2fa220cd26b2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/hsb/140.10.2/Mozilla.Firefox.ESR.hsb.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.hsb +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 (hsb) +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/hsb/140.10.2/Mozilla.Firefox.ESR.hsb.yaml b/manifests/m/Mozilla/Firefox/ESR/hsb/140.10.2/Mozilla.Firefox.ESR.hsb.yaml new file mode 100644 index 000000000000..8eb9bebaac08 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/hsb/140.10.2/Mozilla.Firefox.ESR.hsb.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.hsb +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/hy-AM/140.10.2/Mozilla.Firefox.ESR.hy-AM.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/hy-AM/140.10.2/Mozilla.Firefox.ESR.hy-AM.installer.yaml new file mode 100644 index 000000000000..5b547d94f79f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/hy-AM/140.10.2/Mozilla.Firefox.ESR.hy-AM.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.hy-AM +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/hy-AM/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 5F07078E1A485C7A6039C95E97AD1FA04AAC8AA6C896697B7A2C729F0C0899FD + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 hy-AM) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/hy-AM/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: E0C1BB740759CAF771F3FC761113003A844715F99DD1CDB11481A2F9305DE2E9 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 hy-AM) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/hy-AM/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 4631BA05AE557AD9AE47238D33D2FBA6FC3E9A6BF9F7813F4A901E2863497807 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 hy-AM) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/hy-AM/140.10.2/Mozilla.Firefox.ESR.hy-AM.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/hy-AM/140.10.2/Mozilla.Firefox.ESR.hy-AM.locale.de-DE.yaml new file mode 100644 index 000000000000..06cca16ece00 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/hy-AM/140.10.2/Mozilla.Firefox.ESR.hy-AM.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.hy-AM +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 (hy-AM) +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/hy-AM/140.10.2/Mozilla.Firefox.ESR.hy-AM.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/hy-AM/140.10.2/Mozilla.Firefox.ESR.hy-AM.locale.en-US.yaml new file mode 100644 index 000000000000..2d53c1458f83 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/hy-AM/140.10.2/Mozilla.Firefox.ESR.hy-AM.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.hy-AM +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 (hy-AM) +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/hy-AM/140.10.2/Mozilla.Firefox.ESR.hy-AM.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/hy-AM/140.10.2/Mozilla.Firefox.ESR.hy-AM.locale.zh-CN.yaml new file mode 100644 index 000000000000..a09ed9ebc36e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/hy-AM/140.10.2/Mozilla.Firefox.ESR.hy-AM.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.hy-AM +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 (hy-AM) +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/hy-AM/140.10.2/Mozilla.Firefox.ESR.hy-AM.yaml b/manifests/m/Mozilla/Firefox/ESR/hy-AM/140.10.2/Mozilla.Firefox.ESR.hy-AM.yaml new file mode 100644 index 000000000000..6d249520d97c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/hy-AM/140.10.2/Mozilla.Firefox.ESR.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.ESR.hy-AM +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/id/140.10.2/Mozilla.Firefox.ESR.id.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/id/140.10.2/Mozilla.Firefox.ESR.id.installer.yaml new file mode 100644 index 000000000000..dac685b99b39 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/id/140.10.2/Mozilla.Firefox.ESR.id.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.id +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/id/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 6DCBFCAC52DBC8A2BEB578B12C53414C8D7B7F3087E14EC604E9C9401A477CFF + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 id) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/id/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: AFC47FE811476BE8EE64B5CE2D36A33D12DF923F7D86AF1A1E20300A67C0C3A6 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 id) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/id/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 9B324B812884DC891B89C56972DA283275C180DB1EFDF9A61FA18F65F61FDE9A + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 id) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/id/140.10.2/Mozilla.Firefox.ESR.id.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/id/140.10.2/Mozilla.Firefox.ESR.id.locale.de-DE.yaml new file mode 100644 index 000000000000..f34c7a7ed27e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/id/140.10.2/Mozilla.Firefox.ESR.id.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.id +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 (id) +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/id/140.10.2/Mozilla.Firefox.ESR.id.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/id/140.10.2/Mozilla.Firefox.ESR.id.locale.en-US.yaml new file mode 100644 index 000000000000..4aedd74996bc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/id/140.10.2/Mozilla.Firefox.ESR.id.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.id +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 (id) +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/id/140.10.2/Mozilla.Firefox.ESR.id.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/id/140.10.2/Mozilla.Firefox.ESR.id.locale.zh-CN.yaml new file mode 100644 index 000000000000..ee20dc8bb18c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/id/140.10.2/Mozilla.Firefox.ESR.id.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.id +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 (id) +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/id/140.10.2/Mozilla.Firefox.ESR.id.yaml b/manifests/m/Mozilla/Firefox/ESR/id/140.10.2/Mozilla.Firefox.ESR.id.yaml new file mode 100644 index 000000000000..f5f0347ab9be --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/id/140.10.2/Mozilla.Firefox.ESR.id.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.id +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/is/140.10.2/Mozilla.Firefox.ESR.is.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/is/140.10.2/Mozilla.Firefox.ESR.is.installer.yaml new file mode 100644 index 000000000000..2af5298d7562 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/is/140.10.2/Mozilla.Firefox.ESR.is.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.is +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/is/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: EB5E5A9054D6492A84E2DE4EA1DAF2248DAAA21D539A418A3F6D39AE8D7D59FB + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 is) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/is/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: D3E59CB8AAA07484177CFAF2E65CC236D5D7BBD73AD3F0B8D94C4B22D0CF2CB8 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 is) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/is/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 28CA715A8AAD22A9A783FDFE57FEF88821CE265FBA15AF54D932045106BA06D9 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 is) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/is/140.10.2/Mozilla.Firefox.ESR.is.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/is/140.10.2/Mozilla.Firefox.ESR.is.locale.de-DE.yaml new file mode 100644 index 000000000000..2f466dc8af39 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/is/140.10.2/Mozilla.Firefox.ESR.is.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.is +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 (is) +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/is/140.10.2/Mozilla.Firefox.ESR.is.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/is/140.10.2/Mozilla.Firefox.ESR.is.locale.en-US.yaml new file mode 100644 index 000000000000..6a512a6a4280 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/is/140.10.2/Mozilla.Firefox.ESR.is.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.is +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 (is) +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/is/140.10.2/Mozilla.Firefox.ESR.is.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/is/140.10.2/Mozilla.Firefox.ESR.is.locale.zh-CN.yaml new file mode 100644 index 000000000000..700a3d1fc450 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/is/140.10.2/Mozilla.Firefox.ESR.is.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.is +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 (is) +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/is/140.10.2/Mozilla.Firefox.ESR.is.yaml b/manifests/m/Mozilla/Firefox/ESR/is/140.10.2/Mozilla.Firefox.ESR.is.yaml new file mode 100644 index 000000000000..946187b89368 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/is/140.10.2/Mozilla.Firefox.ESR.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.ESR.is +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ja/140.10.2/Mozilla.Firefox.ESR.ja.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/ja/140.10.2/Mozilla.Firefox.ESR.ja.installer.yaml new file mode 100644 index 000000000000..fb4f99ff74c4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ja/140.10.2/Mozilla.Firefox.ESR.ja.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.ja +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/ja/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 9A244D367FDEE7C91D6A5B23879C76B4F236558936F821606F940BD4AC3D236F + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 ja) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/ja/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 87194C352DB82A07DF349621EB567D7CB2579B1E126AFCFB324E2F73EE281307 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 ja) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/ja/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: D99F311EFC4D4A79376374B06CA47DF8471C70C62C3ADD30A64016877F9F7A59 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 ja) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ja/140.10.2/Mozilla.Firefox.ESR.ja.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/ja/140.10.2/Mozilla.Firefox.ESR.ja.locale.de-DE.yaml new file mode 100644 index 000000000000..47dce03f17dc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ja/140.10.2/Mozilla.Firefox.ESR.ja.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.ja +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 (ja) +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/ja/140.10.2/Mozilla.Firefox.ESR.ja.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/ja/140.10.2/Mozilla.Firefox.ESR.ja.locale.en-US.yaml new file mode 100644 index 000000000000..2e9987308518 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ja/140.10.2/Mozilla.Firefox.ESR.ja.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.ja +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 (ja) +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/ja/140.10.2/Mozilla.Firefox.ESR.ja.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/ja/140.10.2/Mozilla.Firefox.ESR.ja.locale.zh-CN.yaml new file mode 100644 index 000000000000..a9aa7c62ae84 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ja/140.10.2/Mozilla.Firefox.ESR.ja.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.ja +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 (ja) +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/ja/140.10.2/Mozilla.Firefox.ESR.ja.yaml b/manifests/m/Mozilla/Firefox/ESR/ja/140.10.2/Mozilla.Firefox.ESR.ja.yaml new file mode 100644 index 000000000000..6c105c911931 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ja/140.10.2/Mozilla.Firefox.ESR.ja.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.ja +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/lij/140.10.2/Mozilla.Firefox.ESR.lij.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/lij/140.10.2/Mozilla.Firefox.ESR.lij.installer.yaml new file mode 100644 index 000000000000..edf6cead289e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/lij/140.10.2/Mozilla.Firefox.ESR.lij.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.lij +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/lij/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 5939A4E6BFDD1572033ACC7F2E76DBAED819E99046996B06C4F39ADFB70D7456 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 lij) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/lij/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: C029FF2F4C98E0EB0E8B38A03F44F535B8281474882A5F01D506DBCE9E1FEB48 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 lij) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/lij/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: F1B855955F3A6B841D1C726625B5D59F210D2667395C5DA83703BC1228094D86 + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 lij) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/lij/140.10.2/Mozilla.Firefox.ESR.lij.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/lij/140.10.2/Mozilla.Firefox.ESR.lij.locale.de-DE.yaml new file mode 100644 index 000000000000..c71fbb637cfd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/lij/140.10.2/Mozilla.Firefox.ESR.lij.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.lij +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 (lij) +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/lij/140.10.2/Mozilla.Firefox.ESR.lij.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/lij/140.10.2/Mozilla.Firefox.ESR.lij.locale.en-US.yaml new file mode 100644 index 000000000000..85c4cad0c8e7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/lij/140.10.2/Mozilla.Firefox.ESR.lij.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.lij +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 (lij) +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/lij/140.10.2/Mozilla.Firefox.ESR.lij.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/lij/140.10.2/Mozilla.Firefox.ESR.lij.locale.zh-CN.yaml new file mode 100644 index 000000000000..837a884f0be1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/lij/140.10.2/Mozilla.Firefox.ESR.lij.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.lij +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 (lij) +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/lij/140.10.2/Mozilla.Firefox.ESR.lij.yaml b/manifests/m/Mozilla/Firefox/ESR/lij/140.10.2/Mozilla.Firefox.ESR.lij.yaml new file mode 100644 index 000000000000..af3841132e4b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/lij/140.10.2/Mozilla.Firefox.ESR.lij.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.lij +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/lt/140.10.2/Mozilla.Firefox.ESR.lt.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/lt/140.10.2/Mozilla.Firefox.ESR.lt.installer.yaml new file mode 100644 index 000000000000..bd899b9a7742 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/lt/140.10.2/Mozilla.Firefox.ESR.lt.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.lt +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/lt/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: D14DE4BA4552DB78E86107F85C2418ECC15C0CE464EFD5D21872720FEF6358D7 + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 lt) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/lt/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 5F9A6F476DCDBADAC68450737E44F158139A176375859818EC1AAEB7706A4A05 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 lt) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/lt/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 7893C111C70F69A51959FFBA2F39CA9B284322C2E117B39A36C66BB6758D784B + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 lt) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/lt/140.10.2/Mozilla.Firefox.ESR.lt.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/lt/140.10.2/Mozilla.Firefox.ESR.lt.locale.de-DE.yaml new file mode 100644 index 000000000000..d0c8276e3b64 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/lt/140.10.2/Mozilla.Firefox.ESR.lt.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.lt +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 (lt) +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/lt/140.10.2/Mozilla.Firefox.ESR.lt.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/lt/140.10.2/Mozilla.Firefox.ESR.lt.locale.en-US.yaml new file mode 100644 index 000000000000..418ac00d73d6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/lt/140.10.2/Mozilla.Firefox.ESR.lt.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.lt +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 (lt) +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/lt/140.10.2/Mozilla.Firefox.ESR.lt.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/lt/140.10.2/Mozilla.Firefox.ESR.lt.locale.zh-CN.yaml new file mode 100644 index 000000000000..0991f20ffffc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/lt/140.10.2/Mozilla.Firefox.ESR.lt.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.lt +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 (lt) +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/lt/140.10.2/Mozilla.Firefox.ESR.lt.yaml b/manifests/m/Mozilla/Firefox/ESR/lt/140.10.2/Mozilla.Firefox.ESR.lt.yaml new file mode 100644 index 000000000000..9f84ed3bed57 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/lt/140.10.2/Mozilla.Firefox.ESR.lt.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.lt +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/lv/140.10.2/Mozilla.Firefox.ESR.lv.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/lv/140.10.2/Mozilla.Firefox.ESR.lv.installer.yaml new file mode 100644 index 000000000000..c3ec574beaa3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/lv/140.10.2/Mozilla.Firefox.ESR.lv.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.lv +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/lv/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 9542AB53FD71D82208FE794D25A71CED178582A76AD07D925354E821CF8C504B + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 lv) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/lv/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 6AA22BC2FE38EBFB0C02D37503619483213B2CB8B04A08348A517ED8FEEE914B + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 lv) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/lv/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: AFAA70E6DC0914865156B4EFF0E276ED9994CB676C67E3EF74809B70B9D55A6D + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 lv) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/lv/140.10.2/Mozilla.Firefox.ESR.lv.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/lv/140.10.2/Mozilla.Firefox.ESR.lv.locale.de-DE.yaml new file mode 100644 index 000000000000..a7b3350388c4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/lv/140.10.2/Mozilla.Firefox.ESR.lv.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.lv +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 (lv) +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/lv/140.10.2/Mozilla.Firefox.ESR.lv.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/lv/140.10.2/Mozilla.Firefox.ESR.lv.locale.en-US.yaml new file mode 100644 index 000000000000..c03c95407494 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/lv/140.10.2/Mozilla.Firefox.ESR.lv.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.lv +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 (lv) +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/lv/140.10.2/Mozilla.Firefox.ESR.lv.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/lv/140.10.2/Mozilla.Firefox.ESR.lv.locale.zh-CN.yaml new file mode 100644 index 000000000000..bbd97af49274 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/lv/140.10.2/Mozilla.Firefox.ESR.lv.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.lv +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 (lv) +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/lv/140.10.2/Mozilla.Firefox.ESR.lv.yaml b/manifests/m/Mozilla/Firefox/ESR/lv/140.10.2/Mozilla.Firefox.ESR.lv.yaml new file mode 100644 index 000000000000..618e9d2ce672 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/lv/140.10.2/Mozilla.Firefox.ESR.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.ESR.lv +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/ESR/my/140.10.2/Mozilla.Firefox.ESR.my.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/my/140.10.2/Mozilla.Firefox.ESR.my.installer.yaml new file mode 100644 index 000000000000..84354a933346 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/my/140.10.2/Mozilla.Firefox.ESR.my.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.my +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/my/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: A70936FE3035FCCD25F470FFC5252BBBBE5C66199FA938837AA32B756AC75B1A + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 my) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/my/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 5F2C533AE6CB7BCD622C72CB2BDDF8D710E41B85AABDFD47D2C211BBE31561FD + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 my) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/my/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 9FEBC26B480E9168E5D84254C165430EC14832DF8B9B14C0EE3A55F421144D2F + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 my) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/my/140.10.2/Mozilla.Firefox.ESR.my.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/my/140.10.2/Mozilla.Firefox.ESR.my.locale.de-DE.yaml new file mode 100644 index 000000000000..3b5ebe825afe --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/my/140.10.2/Mozilla.Firefox.ESR.my.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.my +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 (my) +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/my/140.10.2/Mozilla.Firefox.ESR.my.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/my/140.10.2/Mozilla.Firefox.ESR.my.locale.en-US.yaml new file mode 100644 index 000000000000..7474434703ac --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/my/140.10.2/Mozilla.Firefox.ESR.my.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.my +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 (my) +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/my/140.10.2/Mozilla.Firefox.ESR.my.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/my/140.10.2/Mozilla.Firefox.ESR.my.locale.zh-CN.yaml new file mode 100644 index 000000000000..6710985cd079 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/my/140.10.2/Mozilla.Firefox.ESR.my.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.my +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 (my) +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/my/140.10.2/Mozilla.Firefox.ESR.my.yaml b/manifests/m/Mozilla/Firefox/ESR/my/140.10.2/Mozilla.Firefox.ESR.my.yaml new file mode 100644 index 000000000000..d9e47db1a6bc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/my/140.10.2/Mozilla.Firefox.ESR.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.ESR.my +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ne-NP/140.10.2/Mozilla.Firefox.ESR.ne-NP.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/ne-NP/140.10.2/Mozilla.Firefox.ESR.ne-NP.installer.yaml new file mode 100644 index 000000000000..ecb33588eec6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ne-NP/140.10.2/Mozilla.Firefox.ESR.ne-NP.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.ne-NP +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/ne-NP/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 015FDB67D4697A5D6A642947B7E22A5253AD80EC9EBCE27FFBFCB1E1F66912CC + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 ne-NP) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/ne-NP/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 8C91EEF81C88D5D9459FEFEF8A479148325B05176E551B50600004531B06A440 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 ne-NP) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/ne-NP/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 688895DE3BF97E409AD584832825621BC716315ECB3299157BCF50F8DC42955B + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 ne-NP) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/ne-NP/140.10.2/Mozilla.Firefox.ESR.ne-NP.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/ne-NP/140.10.2/Mozilla.Firefox.ESR.ne-NP.locale.de-DE.yaml new file mode 100644 index 000000000000..9a4f208e21e4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ne-NP/140.10.2/Mozilla.Firefox.ESR.ne-NP.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.ne-NP +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 (ne-NP) +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/ne-NP/140.10.2/Mozilla.Firefox.ESR.ne-NP.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/ne-NP/140.10.2/Mozilla.Firefox.ESR.ne-NP.locale.en-US.yaml new file mode 100644 index 000000000000..3fe27919a40c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ne-NP/140.10.2/Mozilla.Firefox.ESR.ne-NP.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.ne-NP +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 (ne-NP) +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/ne-NP/140.10.2/Mozilla.Firefox.ESR.ne-NP.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/ne-NP/140.10.2/Mozilla.Firefox.ESR.ne-NP.locale.zh-CN.yaml new file mode 100644 index 000000000000..e08f45289508 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ne-NP/140.10.2/Mozilla.Firefox.ESR.ne-NP.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.ne-NP +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 (ne-NP) +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/ne-NP/140.10.2/Mozilla.Firefox.ESR.ne-NP.yaml b/manifests/m/Mozilla/Firefox/ESR/ne-NP/140.10.2/Mozilla.Firefox.ESR.ne-NP.yaml new file mode 100644 index 000000000000..d0f38d25c81c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/ne-NP/140.10.2/Mozilla.Firefox.ESR.ne-NP.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.ne-NP +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/nn-NO/140.10.2/Mozilla.Firefox.ESR.nn-NO.installer.yaml b/manifests/m/Mozilla/Firefox/ESR/nn-NO/140.10.2/Mozilla.Firefox.ESR.nn-NO.installer.yaml new file mode 100644 index 000000000000..c5a0a58d478a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/nn-NO/140.10.2/Mozilla.Firefox.ESR.nn-NO.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.nn-NO +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/nn-NO/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: 8687DD7F90C08C269B83B48B05F224C0D1D8BA0CD21C42FFEBF5ACB505E14CBE + ProductCode: Mozilla Firefox 140.10.2 ESR (x86 nn-NO) +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64/nn-NO/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: D7EA4CC194F1ADA5E7F5064728C8E1CC875B72C3E2436E865F248863174BEE72 + ProductCode: Mozilla Firefox 140.10.2 ESR (x64 nn-NO) +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/140.10.2esr/win64-aarch64/nn-NO/Firefox%20Setup%20140.10.2esr.exe + InstallerSha256: CB9318245FFF53B7905B7F58614649E0DA5274F085C6A0079CBF64946D76C94C + ProductCode: Mozilla Firefox 140.10.2 ESR (arm64 nn-NO) +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ESR/nn-NO/140.10.2/Mozilla.Firefox.ESR.nn-NO.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ESR/nn-NO/140.10.2/Mozilla.Firefox.ESR.nn-NO.locale.de-DE.yaml new file mode 100644 index 000000000000..07df0c7e8435 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/nn-NO/140.10.2/Mozilla.Firefox.ESR.nn-NO.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.nn-NO +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 (nn-NO) +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/nn-NO/140.10.2/Mozilla.Firefox.ESR.nn-NO.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ESR/nn-NO/140.10.2/Mozilla.Firefox.ESR.nn-NO.locale.en-US.yaml new file mode 100644 index 000000000000..16a26effb083 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/nn-NO/140.10.2/Mozilla.Firefox.ESR.nn-NO.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.nn-NO +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 (nn-NO) +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/nn-NO/140.10.2/Mozilla.Firefox.ESR.nn-NO.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ESR/nn-NO/140.10.2/Mozilla.Firefox.ESR.nn-NO.locale.zh-CN.yaml new file mode 100644 index 000000000000..a2de40dfee0f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/nn-NO/140.10.2/Mozilla.Firefox.ESR.nn-NO.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.nn-NO +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 (nn-NO) +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/nn-NO/140.10.2/Mozilla.Firefox.ESR.nn-NO.yaml b/manifests/m/Mozilla/Firefox/ESR/nn-NO/140.10.2/Mozilla.Firefox.ESR.nn-NO.yaml new file mode 100644 index 000000000000..c7907029fd38 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ESR/nn-NO/140.10.2/Mozilla.Firefox.ESR.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.ESR.nn-NO +PackageVersion: 140.10.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.installer.yaml b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.installer.yaml new file mode 100644 index 000000000000..ec9486006952 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.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.MSIX +PackageVersion: 150.0.2 +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.17763.0 +InstallerType: msix +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +PackageFamilyName: Mozilla.MozillaFirefox_jag0gd4e3s9p2 +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/multi/Firefox%20Setup%20150.0.2.msix + InstallerSha256: 2C04E26A384A51F35451F02FFC4D99FC1F847836769375E81259AF4974915D07 + SignatureSha256: 2D5D51C4F0352B2648A6999A0BDDBE3C1CA1A3742AC9FEA66C66147AECEC0053 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/multi/Firefox%20Setup%20150.0.2.msix + InstallerSha256: 013069FBDD8F87E3C0D540AAC9DF787CD224832B0A2C1581A00571431A756C68 + SignatureSha256: 67E5CA17BB0977B6AB63EAE8F701D6478ABF0BA6C7A7D28EFB5926EA84A6D9F6 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/multi/Firefox%20Setup%20150.0.2.msix + InstallerSha256: C3F5F16DDBC4E14600D6A856A57CB0CC63E7FDF64DDACE8B7420AEE160B15D61 + SignatureSha256: 2CC15D74CDA958073F439C82FF711564D6A7ECE80BF1604DD537857CD317F25A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.cs-CZ.yaml new file mode 100644 index 000000000000..307441aec33b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.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.MSIX +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/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.da-DK.yaml new file mode 100644 index 000000000000..0238f850c102 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.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.MSIX +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/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.de-DE.yaml new file mode 100644 index 000000000000..5b5ac3bc8999 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.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.MSIX +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/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.el-GR.yaml new file mode 100644 index 000000000000..c938fae4d347 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.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.MSIX +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/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.en-GB.yaml new file mode 100644 index 000000000000..40de8fe4e80c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.en-GB.yaml @@ -0,0 +1,23 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +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: +- 9nzvdkpmr9rd +- browser +- gecko +- internet +- pdfreader +- quantum +- spidermonkey +- web +- web-browser +- webpages +- websites +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.en-US.yaml new file mode 100644 index 000000000000..caa51483a652 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.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: Mozilla.Firefox.MSIX +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 (MSIX) +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: +- 9nzvdkpmr9rd +- browser +- gecko +- internet +- pdfreader +- quantum +- spidermonkey +- web +- web-browser +- webpages +- websites +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/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.es-MX.yaml new file mode 100644 index 000000000000..b97a5b93ac63 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.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.MSIX +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/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.fr-FR.yaml new file mode 100644 index 000000000000..ac0833d13b0e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.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.MSIX +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/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.hu-HU.yaml new file mode 100644 index 000000000000..11a6e5248e1f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.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.MSIX +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/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.ja-JP.yaml new file mode 100644 index 000000000000..e5a2342609b0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.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.MSIX +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/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.nb-NO.yaml new file mode 100644 index 000000000000..378d1c80f8c6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.nb-NO.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.MSIX +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: +- 9nzvdkpmr9rd +- internett +- nettleser +- nettlesing +- nettsider +- nettsteder +- pdfleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.ru-RU.yaml new file mode 100644 index 000000000000..e8d862a6a603 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.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.MSIX +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/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.ta-IN.yaml new file mode 100644 index 000000000000..63e62985c2fe --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.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.MSIX +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/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.locale.zh-CN.yaml new file mode 100644 index 000000000000..3e56c87b3de5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.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.MSIX +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/MSIX/150.0.2/Mozilla.Firefox.MSIX.yaml b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.yaml new file mode 100644 index 000000000000..48a35ed80171 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/MSIX/150.0.2/Mozilla.Firefox.MSIX.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.MSIX +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/az/150.0.2/Mozilla.Firefox.az.installer.yaml b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.installer.yaml new file mode 100644 index 000000000000..eedf8df65c38 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.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.az +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/az/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 7A7D07E7EBE46A6EB1F34270487B7C40195D5571181136F523C7B343F668A040 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/az/Firefox%20Setup%20150.0.2.exe + InstallerSha256: B99FCB8E7F09077786F48F32CCC16383BB007A588A2CD478DAB259531EBB0801 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/az/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 70534C03EBFF9E7A86A2DA0E8CFDDB7B4E696C3DF9F942D1B15CA165603EF4AE +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.locale.cs-CZ.yaml new file mode 100644 index 000000000000..8f45f23ddc26 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.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.az +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/az/150.0.2/Mozilla.Firefox.az.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.locale.da-DK.yaml new file mode 100644 index 000000000000..d2ab492942b8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.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.az +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/az/150.0.2/Mozilla.Firefox.az.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.locale.de-DE.yaml new file mode 100644 index 000000000000..1822384a2e21 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.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.az +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/az/150.0.2/Mozilla.Firefox.az.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.locale.el-GR.yaml new file mode 100644 index 000000000000..30aba55727f3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.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.az +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/az/150.0.2/Mozilla.Firefox.az.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.locale.en-GB.yaml new file mode 100644 index 000000000000..edc631871988 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.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.az +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/az/150.0.2/Mozilla.Firefox.az.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.locale.en-US.yaml new file mode 100644 index 000000000000..4dcbca44469d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.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.az +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 (az) +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/az/150.0.2/Mozilla.Firefox.az.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.locale.es-MX.yaml new file mode 100644 index 000000000000..19e9249c7caa --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.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.az +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/az/150.0.2/Mozilla.Firefox.az.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.locale.fr-FR.yaml new file mode 100644 index 000000000000..7dcd32e8e703 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.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.az +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/az/150.0.2/Mozilla.Firefox.az.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.locale.hu-HU.yaml new file mode 100644 index 000000000000..28664f273183 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.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.az +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/az/150.0.2/Mozilla.Firefox.az.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.locale.ja-JP.yaml new file mode 100644 index 000000000000..07e90110bf23 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.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.az +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/az/150.0.2/Mozilla.Firefox.az.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.locale.nb-NO.yaml new file mode 100644 index 000000000000..33e04a31b3be --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.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.az +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/az/150.0.2/Mozilla.Firefox.az.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.locale.ru-RU.yaml new file mode 100644 index 000000000000..554a5f41f7e2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.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.az +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/az/150.0.2/Mozilla.Firefox.az.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.locale.ta-IN.yaml new file mode 100644 index 000000000000..c2bcd52829e1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.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.az +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/az/150.0.2/Mozilla.Firefox.az.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.locale.zh-CN.yaml new file mode 100644 index 000000000000..a55748e67816 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.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.az +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/az/150.0.2/Mozilla.Firefox.az.yaml b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.yaml new file mode 100644 index 000000000000..9ddcecc651a2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/az/150.0.2/Mozilla.Firefox.az.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.az +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.installer.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.installer.yaml new file mode 100644 index 000000000000..527a50a9a4af --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/be/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 4B775353CC95F068BB742D2D1429C2CCD9987ABB52F02B6C0DCB90E225CDEB7D +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/be/Firefox%20Setup%20150.0.2.exe + InstallerSha256: C22046A5E41DDCA709E1E00E46351980520C91A86D80FCA1741FDE0F0BA9E018 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/be/Firefox%20Setup%20150.0.2.exe + InstallerSha256: B2E3402A2C819E1B4ECBEC528202AF2BF4A3393F22F62CDCCFD1230D5F7413B1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.cs-CZ.yaml new file mode 100644 index 000000000000..b9d9f3bef82b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.da-DK.yaml new file mode 100644 index 000000000000..5c30ec3b67b8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.de-DE.yaml new file mode 100644 index 000000000000..0db5800171b1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.el-GR.yaml new file mode 100644 index 000000000000..3adfda2c3382 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.en-GB.yaml new file mode 100644 index 000000000000..127691d57a5e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.en-US.yaml new file mode 100644 index 000000000000..c12fd5ce890c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (be) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.es-MX.yaml new file mode 100644 index 000000000000..ca1db28ea3c3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.fr-FR.yaml new file mode 100644 index 000000000000..9dd32d0dcd93 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.hu-HU.yaml new file mode 100644 index 000000000000..19dacc8c7f9c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.ja-JP.yaml new file mode 100644 index 000000000000..17e815fcd69c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.nb-NO.yaml new file mode 100644 index 000000000000..7278a19f823c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.ru-RU.yaml new file mode 100644 index 000000000000..77a7c75e4fd7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.ta-IN.yaml new file mode 100644 index 000000000000..500962677bb5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.zh-CN.yaml new file mode 100644 index 000000000000..40bbb65dd421 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.yaml b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.yaml new file mode 100644 index 000000000000..7702c02fa450 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/be/150.0.2/Mozilla.Firefox.be.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.be +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.installer.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.installer.yaml new file mode 100644 index 000000000000..7c2920108313 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/br/Firefox%20Setup%20150.0.2.exe + InstallerSha256: DFE786550D632627B6549B51D31DA6A04699645B0ACD699D40A6580D01833F35 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/br/Firefox%20Setup%20150.0.2.exe + InstallerSha256: DEC47D148E9C7F8BC11DA985FD67D5B0BA879A6DD43284FCC7AE5F75B2172967 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/br/Firefox%20Setup%20150.0.2.exe + InstallerSha256: A3382ABD8477012301D8E9C52F8312BB389CFA212F856CBF751FC8C400DA078C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.cs-CZ.yaml new file mode 100644 index 000000000000..6dc06c4cb724 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.da-DK.yaml new file mode 100644 index 000000000000..3f410a9e24ed --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.de-DE.yaml new file mode 100644 index 000000000000..e71122df8299 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.el-GR.yaml new file mode 100644 index 000000000000..cf53a67041ab --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.en-GB.yaml new file mode 100644 index 000000000000..ca2cc9ac3c67 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.en-US.yaml new file mode 100644 index 000000000000..a4f4b8ee32e3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (br) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.es-MX.yaml new file mode 100644 index 000000000000..ad29de4fefb0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.fr-FR.yaml new file mode 100644 index 000000000000..a074ac5ad0f6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.hu-HU.yaml new file mode 100644 index 000000000000..77e69d1c5f93 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.ja-JP.yaml new file mode 100644 index 000000000000..8271bb4806d1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.nb-NO.yaml new file mode 100644 index 000000000000..e50f6de09ddd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.ru-RU.yaml new file mode 100644 index 000000000000..484e6f902c8b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.ta-IN.yaml new file mode 100644 index 000000000000..3c0292260b5d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.zh-CN.yaml new file mode 100644 index 000000000000..93ddd411d8e1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.yaml b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.yaml new file mode 100644 index 000000000000..4496da172c92 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/br/150.0.2/Mozilla.Firefox.br.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.br +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.installer.yaml b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.installer.yaml new file mode 100644 index 000000000000..2e4b9ad76d8a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.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.bs +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/bs/Firefox%20Setup%20150.0.2.exe + InstallerSha256: DC820C6F4842BFE2A98D79CE9BD0B3F417A553EF9DE1E4E120F2422D49681481 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/bs/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 3C005A3A14BF04E2533F82876AF193C0F714C0C970994376E14C2D2451E9C6DC +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/bs/Firefox%20Setup%20150.0.2.exe + InstallerSha256: F0693DE9C93749A0FB70AEF5504973CA82B0E8BAB13089FB4EA102E011847B02 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.locale.cs-CZ.yaml new file mode 100644 index 000000000000..e6921dc76031 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.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.bs +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/bs/150.0.2/Mozilla.Firefox.bs.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.locale.da-DK.yaml new file mode 100644 index 000000000000..479a3462f510 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.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.bs +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/bs/150.0.2/Mozilla.Firefox.bs.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.locale.de-DE.yaml new file mode 100644 index 000000000000..1c1b6af8b76f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.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.bs +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/bs/150.0.2/Mozilla.Firefox.bs.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.locale.el-GR.yaml new file mode 100644 index 000000000000..a12e55095ae6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.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.bs +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/bs/150.0.2/Mozilla.Firefox.bs.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.locale.en-GB.yaml new file mode 100644 index 000000000000..90aecdf9ec75 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.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.bs +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/bs/150.0.2/Mozilla.Firefox.bs.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.locale.en-US.yaml new file mode 100644 index 000000000000..c2c818b66238 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.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.bs +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 (bs) +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/bs/150.0.2/Mozilla.Firefox.bs.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.locale.es-MX.yaml new file mode 100644 index 000000000000..72c990cb82a5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.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.bs +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/bs/150.0.2/Mozilla.Firefox.bs.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.locale.fr-FR.yaml new file mode 100644 index 000000000000..65898230826e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.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.bs +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/bs/150.0.2/Mozilla.Firefox.bs.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.locale.hu-HU.yaml new file mode 100644 index 000000000000..8faed2b0c680 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.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.bs +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/bs/150.0.2/Mozilla.Firefox.bs.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.locale.ja-JP.yaml new file mode 100644 index 000000000000..8a315f8bb0ed --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.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.bs +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/bs/150.0.2/Mozilla.Firefox.bs.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.locale.nb-NO.yaml new file mode 100644 index 000000000000..73f0a2008954 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.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.bs +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/bs/150.0.2/Mozilla.Firefox.bs.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.locale.ru-RU.yaml new file mode 100644 index 000000000000..8bc77d96d495 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.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.bs +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/bs/150.0.2/Mozilla.Firefox.bs.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.locale.ta-IN.yaml new file mode 100644 index 000000000000..58d8df0ebdf0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.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.bs +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/bs/150.0.2/Mozilla.Firefox.bs.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.locale.zh-CN.yaml new file mode 100644 index 000000000000..3619f4085beb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.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.bs +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/bs/150.0.2/Mozilla.Firefox.bs.yaml b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.yaml new file mode 100644 index 000000000000..e43f710d1161 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/bs/150.0.2/Mozilla.Firefox.bs.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.bs +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/es-AR/150.0.2/Mozilla.Firefox.es-AR.installer.yaml b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-AR.installer.yaml new file mode 100644 index 000000000000..6a6f7a4d7b67 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-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.es-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/es-AR/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 37D135F80A42A35DB10CAD19F622654A1C76ACBD116BC7CF420F44CA0F87E90E +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/es-AR/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 07BF74342E93DB4149D529EA65298AC300ECB9B3B6EE8F23DA997941FD092009 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/es-AR/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 0037431A096347D408708F359242951FA835682146CD1EAFFB5B744BC56AAAC6 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.cs-CZ.yaml new file mode 100644 index 000000000000..d71563392074 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-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.es-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/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.da-DK.yaml new file mode 100644 index 000000000000..56634574350a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-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.es-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/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.de-DE.yaml new file mode 100644 index 000000000000..3ca3e40b067b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-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.es-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/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.el-GR.yaml new file mode 100644 index 000000000000..beca457c9f33 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-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.es-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/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.en-GB.yaml new file mode 100644 index 000000000000..bf6bf988c018 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-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.es-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/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.en-US.yaml new file mode 100644 index 000000000000..d87aa359dfb7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-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.es-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 (es-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/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.es-MX.yaml new file mode 100644 index 000000000000..603d839638cb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-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.es-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/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.fr-FR.yaml new file mode 100644 index 000000000000..639dad27e953 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-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.es-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/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.hu-HU.yaml new file mode 100644 index 000000000000..ac302dc57e0f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-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.es-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/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.ja-JP.yaml new file mode 100644 index 000000000000..d03eefa61cd6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-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.es-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/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.nb-NO.yaml new file mode 100644 index 000000000000..4d06dc8605a8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-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.es-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/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.ru-RU.yaml new file mode 100644 index 000000000000..06ebf59a6325 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-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.es-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/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.ta-IN.yaml new file mode 100644 index 000000000000..a64b17c941f8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-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.es-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/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-AR.locale.zh-CN.yaml new file mode 100644 index 000000000000..d3a79ec9ed3b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-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.es-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/es-AR/150.0.2/Mozilla.Firefox.es-AR.yaml b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-AR.yaml new file mode 100644 index 000000000000..5d3655d5f986 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-AR/150.0.2/Mozilla.Firefox.es-AR.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.es-AR +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.installer.yaml b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.installer.yaml new file mode 100644 index 000000000000..f49e919f7924 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.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-CL +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-CL/Firefox%20Setup%20150.0.2.exe + InstallerSha256: B50BFAE157E557D3D12AF589D98D009B1DC7D41AB070803B79B0FE394C1D8FF7 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/es-CL/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 391F95D1AF30280C4C1AD916201074DAB1A7749071FE5152992AD75FDFE14B79 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/es-CL/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 2B34646C6FC66F10F87587F430DEA533F0CAD830A2A92093DC0C612C87BC4901 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.locale.cs-CZ.yaml new file mode 100644 index 000000000000..662515f8f88d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.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-CL +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-CL/150.0.2/Mozilla.Firefox.es-CL.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.locale.da-DK.yaml new file mode 100644 index 000000000000..60d935aeeabe --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.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-CL +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-CL/150.0.2/Mozilla.Firefox.es-CL.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.locale.de-DE.yaml new file mode 100644 index 000000000000..c9cf53d7dcef --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.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-CL +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-CL/150.0.2/Mozilla.Firefox.es-CL.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.locale.el-GR.yaml new file mode 100644 index 000000000000..d1d25d75234a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.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-CL +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-CL/150.0.2/Mozilla.Firefox.es-CL.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.locale.en-GB.yaml new file mode 100644 index 000000000000..a3c446e3c60c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.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-CL +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-CL/150.0.2/Mozilla.Firefox.es-CL.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.locale.en-US.yaml new file mode 100644 index 000000000000..44b84e9177ac --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.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-CL +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-CL) +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-CL/150.0.2/Mozilla.Firefox.es-CL.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.locale.es-MX.yaml new file mode 100644 index 000000000000..fdf2e837d592 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.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-CL +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-CL/150.0.2/Mozilla.Firefox.es-CL.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.locale.fr-FR.yaml new file mode 100644 index 000000000000..d93058047590 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.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-CL +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-CL/150.0.2/Mozilla.Firefox.es-CL.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.locale.hu-HU.yaml new file mode 100644 index 000000000000..d6f143799375 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.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-CL +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-CL/150.0.2/Mozilla.Firefox.es-CL.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.locale.ja-JP.yaml new file mode 100644 index 000000000000..4f6dbed17099 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.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-CL +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-CL/150.0.2/Mozilla.Firefox.es-CL.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.locale.nb-NO.yaml new file mode 100644 index 000000000000..a075a41517a4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.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-CL +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-CL/150.0.2/Mozilla.Firefox.es-CL.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.locale.ru-RU.yaml new file mode 100644 index 000000000000..fe4651f73b2c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.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-CL +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-CL/150.0.2/Mozilla.Firefox.es-CL.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.locale.ta-IN.yaml new file mode 100644 index 000000000000..2ce22ee15b92 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.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-CL +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-CL/150.0.2/Mozilla.Firefox.es-CL.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.locale.zh-CN.yaml new file mode 100644 index 000000000000..f9850b6bf4fb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.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-CL +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-CL/150.0.2/Mozilla.Firefox.es-CL.yaml b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.yaml new file mode 100644 index 000000000000..7f322a9cb024 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/es-CL/150.0.2/Mozilla.Firefox.es-CL.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-CL +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.installer.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.installer.yaml new file mode 100644 index 000000000000..e808fee49490 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/et/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 1F4ADA3A099ABF61D6CA30F2F9D2E377B91F83651C6DF2F3ADCCFB6544A81063 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/et/Firefox%20Setup%20150.0.2.exe + InstallerSha256: F59EFCC9E02D289C2BF0565641AE55FC0B1F4F212543033FE15FD704D43E5B85 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/et/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 490C539FCDC2A9B65E56F3C186B3A6ADECA7F48B614E7C656F8E9B151A719A6A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.cs-CZ.yaml new file mode 100644 index 000000000000..f9e6fafae470 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.da-DK.yaml new file mode 100644 index 000000000000..242c143d226c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.de-DE.yaml new file mode 100644 index 000000000000..bda44e5e1e7b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.el-GR.yaml new file mode 100644 index 000000000000..2558966d7334 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.en-GB.yaml new file mode 100644 index 000000000000..6b7295b83f96 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.en-US.yaml new file mode 100644 index 000000000000..ea22669ca961 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (et) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.es-MX.yaml new file mode 100644 index 000000000000..8be287bfd93f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.fr-FR.yaml new file mode 100644 index 000000000000..8f7d9e6ba6e7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.hu-HU.yaml new file mode 100644 index 000000000000..722c820eeab6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.ja-JP.yaml new file mode 100644 index 000000000000..7ee36a8323c5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.nb-NO.yaml new file mode 100644 index 000000000000..a08d020ab97b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.ru-RU.yaml new file mode 100644 index 000000000000..3a1a6ed03ce6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.ta-IN.yaml new file mode 100644 index 000000000000..6fd7dac2c5aa --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.zh-CN.yaml new file mode 100644 index 000000000000..b5216ce4b716 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.yaml b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.yaml new file mode 100644 index 000000000000..25ed6e55eab2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/et/150.0.2/Mozilla.Firefox.et.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.et +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.installer.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.installer.yaml new file mode 100644 index 000000000000..dabf0877bf6e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/eu/Firefox%20Setup%20150.0.2.exe + InstallerSha256: EBEB57F5DABA91C263772D4EDB5D5FD5098179C7DA29888DE224CADB2BAA9C78 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/eu/Firefox%20Setup%20150.0.2.exe + InstallerSha256: E4029CD981F4D2BFF55683314A615056A7084E329E610ADB3654FF85CBFF9C0F +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/eu/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 345FFF162091419AE1A8D138508145EFC8B4A7377FDDD350BA87456CB5D4AF2A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.cs-CZ.yaml new file mode 100644 index 000000000000..46b3e143f648 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.da-DK.yaml new file mode 100644 index 000000000000..43d13693c0e4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.de-DE.yaml new file mode 100644 index 000000000000..48a490ccd052 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.el-GR.yaml new file mode 100644 index 000000000000..ff28071dcb54 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.en-GB.yaml new file mode 100644 index 000000000000..f3ffcdadb16e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.en-US.yaml new file mode 100644 index 000000000000..43a15c30a2e8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (eu) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.es-MX.yaml new file mode 100644 index 000000000000..557cee605898 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.fr-FR.yaml new file mode 100644 index 000000000000..28cb56f8a1c6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.hu-HU.yaml new file mode 100644 index 000000000000..37e232fde76d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.ja-JP.yaml new file mode 100644 index 000000000000..66f90786f3dd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.nb-NO.yaml new file mode 100644 index 000000000000..5f45bcf9950e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.ru-RU.yaml new file mode 100644 index 000000000000..4c8b469d96d1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.ta-IN.yaml new file mode 100644 index 000000000000..a90a6c725659 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.zh-CN.yaml new file mode 100644 index 000000000000..1e794e2965b4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.yaml b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.yaml new file mode 100644 index 000000000000..f26a4a6fae18 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/eu/150.0.2/Mozilla.Firefox.eu.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.eu +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.installer.yaml b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.installer.yaml new file mode 100644 index 000000000000..5e60d7903254 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.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.fa +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/fa/Firefox%20Setup%20150.0.2.exe + InstallerSha256: AF548BC6D53BA1BBAA0A620BF0918D23BA7D03CE8C2FFC0FB2B81F0F3825B9A6 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/fa/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 1659A376F2DE9D35D2E31B4C6A3B599F7B87E67097726CE3BF947C4DC0FB7EF0 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/fa/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 93820D447D3E821214174152969639D5AF5159740660D4A6870D0821A5297C5A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.locale.cs-CZ.yaml new file mode 100644 index 000000000000..19ce8ec70892 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.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.fa +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/fa/150.0.2/Mozilla.Firefox.fa.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.locale.da-DK.yaml new file mode 100644 index 000000000000..458023f24301 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.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.fa +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/fa/150.0.2/Mozilla.Firefox.fa.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.locale.de-DE.yaml new file mode 100644 index 000000000000..216ef832b6d8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.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.fa +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/fa/150.0.2/Mozilla.Firefox.fa.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.locale.el-GR.yaml new file mode 100644 index 000000000000..4cee340e2222 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.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.fa +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/fa/150.0.2/Mozilla.Firefox.fa.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.locale.en-GB.yaml new file mode 100644 index 000000000000..bc9ca6dcd03f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.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.fa +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/fa/150.0.2/Mozilla.Firefox.fa.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.locale.en-US.yaml new file mode 100644 index 000000000000..e413d685850f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.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.fa +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 (fa) +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/fa/150.0.2/Mozilla.Firefox.fa.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.locale.es-MX.yaml new file mode 100644 index 000000000000..a594edbf8fc0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.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.fa +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/fa/150.0.2/Mozilla.Firefox.fa.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.locale.fr-FR.yaml new file mode 100644 index 000000000000..e5baa52115ea --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.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.fa +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/fa/150.0.2/Mozilla.Firefox.fa.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.locale.hu-HU.yaml new file mode 100644 index 000000000000..7501c9f11de2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.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.fa +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/fa/150.0.2/Mozilla.Firefox.fa.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.locale.ja-JP.yaml new file mode 100644 index 000000000000..fc1c2bf254a4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.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.fa +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/fa/150.0.2/Mozilla.Firefox.fa.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.locale.nb-NO.yaml new file mode 100644 index 000000000000..fd28be85886a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.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.fa +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/fa/150.0.2/Mozilla.Firefox.fa.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.locale.ru-RU.yaml new file mode 100644 index 000000000000..f0c203b527f2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.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.fa +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/fa/150.0.2/Mozilla.Firefox.fa.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.locale.ta-IN.yaml new file mode 100644 index 000000000000..a1ad0400d1e8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.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.fa +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/fa/150.0.2/Mozilla.Firefox.fa.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.locale.zh-CN.yaml new file mode 100644 index 000000000000..4df2a4963f44 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.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.fa +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/fa/150.0.2/Mozilla.Firefox.fa.yaml b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.yaml new file mode 100644 index 000000000000..a84c722fc81f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fa/150.0.2/Mozilla.Firefox.fa.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.fa +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.installer.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.installer.yaml new file mode 100644 index 000000000000..32848428b5d4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/ff/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 4E9283F4C5AC02A253D00D1DA7EFD89FE1E1EEB25FDE4FA573936AB41DCF37A4 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/ff/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 64CA90A972F53EAE8C272E8E7DAD2515E08478486D8E5698C680AD85D6991E2A +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/ff/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 4ACAA83C8706B14B05F87C8EFA19F86FF699F3AE038ACB2815EA6B0D28CF2795 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.cs-CZ.yaml new file mode 100644 index 000000000000..8f1613844d83 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.da-DK.yaml new file mode 100644 index 000000000000..e84f0800f3d6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.de-DE.yaml new file mode 100644 index 000000000000..899c3dffe638 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.el-GR.yaml new file mode 100644 index 000000000000..0859a3571666 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.en-GB.yaml new file mode 100644 index 000000000000..66b7ebcdf2b8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.en-US.yaml new file mode 100644 index 000000000000..391caf8c482f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (ff) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.es-MX.yaml new file mode 100644 index 000000000000..1d18d7835493 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.fr-FR.yaml new file mode 100644 index 000000000000..8076894c2739 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.hu-HU.yaml new file mode 100644 index 000000000000..63936d3683b3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.ja-JP.yaml new file mode 100644 index 000000000000..f1a4277f9012 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.nb-NO.yaml new file mode 100644 index 000000000000..751cc548039a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.ru-RU.yaml new file mode 100644 index 000000000000..dfb2bb1eeefe --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.ta-IN.yaml new file mode 100644 index 000000000000..143f22e5e130 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.zh-CN.yaml new file mode 100644 index 000000000000..7d14c5d3c9b3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.yaml b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.yaml new file mode 100644 index 000000000000..82a5e2e6494d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ff/150.0.2/Mozilla.Firefox.ff.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.ff +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.installer.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.installer.yaml new file mode 100644 index 000000000000..c9b1f0d54b16 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/fr/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 27B70EBE21963D6C2252C2495CE61FD821833572E06907EB47DA25F31BC8AB75 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/fr/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 977AD532BE7B55027CF5E83AC7F1DAE33D7CAC2682D3AEA8EDE62FAD52AC49DE +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/fr/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 71EC6788A9ED7166F526CA537936A1C96933291F25CCC561732DFAFE9EE70765 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.cs-CZ.yaml new file mode 100644 index 000000000000..be19f003c9ec --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.da-DK.yaml new file mode 100644 index 000000000000..6af482039134 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.de-DE.yaml new file mode 100644 index 000000000000..6d40821b3c45 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.el-GR.yaml new file mode 100644 index 000000000000..19330f58ed6e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.en-GB.yaml new file mode 100644 index 000000000000..94d86325b991 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.en-US.yaml new file mode 100644 index 000000000000..67d6facde03e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (fr) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.es-MX.yaml new file mode 100644 index 000000000000..de543a7d10be --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.fr-FR.yaml new file mode 100644 index 000000000000..426a7aaf8eb1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.hu-HU.yaml new file mode 100644 index 000000000000..5cbb74edbcdc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.ja-JP.yaml new file mode 100644 index 000000000000..dc69cc73e173 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.nb-NO.yaml new file mode 100644 index 000000000000..4752ee8a0eb0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.ru-RU.yaml new file mode 100644 index 000000000000..e1b7816a7275 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.ta-IN.yaml new file mode 100644 index 000000000000..7b94124c6c9b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.zh-CN.yaml new file mode 100644 index 000000000000..7a8d90b3b691 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.yaml b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.yaml new file mode 100644 index 000000000000..0f42b2d1f887 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/fr/150.0.2/Mozilla.Firefox.fr.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.fr +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.installer.yaml b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.installer.yaml new file mode 100644 index 000000000000..1e0acd580c6b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.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.ga-IE +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/ga-IE/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 2B52A292EC8B334634EC1915FE171969E8ED7408F6550521469831EA6938714A +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/ga-IE/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 833CB1D0BA7B9CF7C654B0767C110E3D78A09F0AA0779E014E8C1E9D63BF5F69 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/ga-IE/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 218294F95C60B20265ADEDF87D5BD485E099F499989F3E97830A0E2E6E66A7D9 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.cs-CZ.yaml new file mode 100644 index 000000000000..a7715a113c35 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.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.ga-IE +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/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.da-DK.yaml new file mode 100644 index 000000000000..0d08a0ff6e5b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.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.ga-IE +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/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.de-DE.yaml new file mode 100644 index 000000000000..701e2e518c9b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.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.ga-IE +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/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.el-GR.yaml new file mode 100644 index 000000000000..ad12f95b9801 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.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.ga-IE +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/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.en-GB.yaml new file mode 100644 index 000000000000..609a0bf24a13 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.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.ga-IE +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/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.en-US.yaml new file mode 100644 index 000000000000..dbcd0f4117cd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.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.ga-IE +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 (ga-IE) +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/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.es-MX.yaml new file mode 100644 index 000000000000..b31fc580b6f9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.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.ga-IE +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/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.fr-FR.yaml new file mode 100644 index 000000000000..422975931a4a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.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.ga-IE +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/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.hu-HU.yaml new file mode 100644 index 000000000000..6ed54f1a1523 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.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.ga-IE +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/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.ja-JP.yaml new file mode 100644 index 000000000000..d0fdbd7439f8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.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.ga-IE +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/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.nb-NO.yaml new file mode 100644 index 000000000000..cadc8fd63de9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.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.ga-IE +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/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.ru-RU.yaml new file mode 100644 index 000000000000..704e7867bcec --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.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.ga-IE +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/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.ta-IN.yaml new file mode 100644 index 000000000000..bd704e035d80 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.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.ga-IE +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/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.locale.zh-CN.yaml new file mode 100644 index 000000000000..f26eb4ef2ba6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.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.ga-IE +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/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.yaml b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.yaml new file mode 100644 index 000000000000..8409f5fb1d4a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/ga-IE/150.0.2/Mozilla.Firefox.ga-IE.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.ga-IE +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.installer.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.installer.yaml new file mode 100644 index 000000000000..9959e38bbc12 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/gd/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 9B70CC649EDBD20748E93DFB8596EEDEFD3EFF671A0659401B06E6BBAFFAEDAD +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/gd/Firefox%20Setup%20150.0.2.exe + InstallerSha256: FF4F5072840F3D367CBF80BF621864868CF07B98731B21C99FDC2753BF773356 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/gd/Firefox%20Setup%20150.0.2.exe + InstallerSha256: E5A11932F26470A50B1D61E89F7CE8E9A8A4591C5BFDA188B5860289F7B9E427 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.cs-CZ.yaml new file mode 100644 index 000000000000..5c03f212ba02 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.da-DK.yaml new file mode 100644 index 000000000000..3eceed02e458 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.de-DE.yaml new file mode 100644 index 000000000000..064593f95ba8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.el-GR.yaml new file mode 100644 index 000000000000..4b7058f939b8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.en-GB.yaml new file mode 100644 index 000000000000..aa6a40d009f1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.en-US.yaml new file mode 100644 index 000000000000..8cfee09c496c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (gd) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.es-MX.yaml new file mode 100644 index 000000000000..cd17e35ac745 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.fr-FR.yaml new file mode 100644 index 000000000000..6001bc165528 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.hu-HU.yaml new file mode 100644 index 000000000000..c613a6ac46cc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.ja-JP.yaml new file mode 100644 index 000000000000..477f1f019b97 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.nb-NO.yaml new file mode 100644 index 000000000000..5b4164fee36d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.ru-RU.yaml new file mode 100644 index 000000000000..62ec794b8b93 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.ta-IN.yaml new file mode 100644 index 000000000000..968c8f2b8b36 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.zh-CN.yaml new file mode 100644 index 000000000000..3032d25da106 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.yaml b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.yaml new file mode 100644 index 000000000000..43faed09156d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gd/150.0.2/Mozilla.Firefox.gd.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gd +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.installer.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.installer.yaml new file mode 100644 index 000000000000..a12d61f12efb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/gl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 2AC973A120B4F67CB4B542609E3C2A1475DC4DF504FB464ED2E3EE3D0E694A72 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/gl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 5199EE9A53183AC1FCCCF0B43D862EABB12A5F1E0843C358C73FDBE810F97FCD +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/gl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 541A9C8AF97AC6D14A5676169825E1DAF085E1EA4B621FD51AE6811694B5CCCE +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.cs-CZ.yaml new file mode 100644 index 000000000000..e7ca21734f3f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.da-DK.yaml new file mode 100644 index 000000000000..c95a4ece1a7f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.de-DE.yaml new file mode 100644 index 000000000000..6ea1b4ac892f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.el-GR.yaml new file mode 100644 index 000000000000..d0498a624cfe --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.en-GB.yaml new file mode 100644 index 000000000000..295f5e54e1f4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.en-US.yaml new file mode 100644 index 000000000000..ea08882fea1b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (gl) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.es-MX.yaml new file mode 100644 index 000000000000..840d3346417d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.fr-FR.yaml new file mode 100644 index 000000000000..84132b486ebe --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.hu-HU.yaml new file mode 100644 index 000000000000..60e74c3720cf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.ja-JP.yaml new file mode 100644 index 000000000000..7f7ee82cf722 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.nb-NO.yaml new file mode 100644 index 000000000000..943d4abddc56 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.ru-RU.yaml new file mode 100644 index 000000000000..1912e3107d0c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.ta-IN.yaml new file mode 100644 index 000000000000..55455581de83 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.zh-CN.yaml new file mode 100644 index 000000000000..44cf9bfe72e4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.yaml b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.yaml new file mode 100644 index 000000000000..9333d3b84b18 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gl/150.0.2/Mozilla.Firefox.gl.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gl +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.installer.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.installer.yaml new file mode 100644 index 000000000000..d7671c2baac4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/gn/Firefox%20Setup%20150.0.2.exe + InstallerSha256: BB6CE23CCC349CFEBBB32AF581CC2BB7B2D2F36757363D05AF29CB96C0EC6F81 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/gn/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 50259B15F61CBCBB6BF7CA63596A61B707E70DD8F7E2C19425649E7A7847701A +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/gn/Firefox%20Setup%20150.0.2.exe + InstallerSha256: D3194A3DCB3E83EB08AFA1402BC557939C84C40F23DFF46814D5C0DA00395117 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.cs-CZ.yaml new file mode 100644 index 000000000000..55bef0660d3e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.da-DK.yaml new file mode 100644 index 000000000000..336c4b0c4bd8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.de-DE.yaml new file mode 100644 index 000000000000..92a8a5d4264d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.el-GR.yaml new file mode 100644 index 000000000000..634ce643d681 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.en-GB.yaml new file mode 100644 index 000000000000..ac1dd25932c0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.en-US.yaml new file mode 100644 index 000000000000..b7583bd03035 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (gn) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.es-MX.yaml new file mode 100644 index 000000000000..9340024d66b6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.fr-FR.yaml new file mode 100644 index 000000000000..20cb3cb41d4c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.hu-HU.yaml new file mode 100644 index 000000000000..48b600d47877 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.ja-JP.yaml new file mode 100644 index 000000000000..4d25989fc285 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.nb-NO.yaml new file mode 100644 index 000000000000..6d117629c4c5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.ru-RU.yaml new file mode 100644 index 000000000000..2d527337b1cd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.ta-IN.yaml new file mode 100644 index 000000000000..63bfd331fbaf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.zh-CN.yaml new file mode 100644 index 000000000000..54568304e6c7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.yaml b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.yaml new file mode 100644 index 000000000000..0ffafccf79c2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gn/150.0.2/Mozilla.Firefox.gn.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gn +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.installer.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.installer.yaml new file mode 100644 index 000000000000..0f62201b28fc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/gu-IN/Firefox%20Setup%20150.0.2.exe + InstallerSha256: E6A0F1E9280C162024ECC3E1C02A54D9830463724A7E417985171F9FBF0A568D +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/gu-IN/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 846A3C66AE7639F081FC09C41E9C9DE643D21818BBFD5A180850CDF4B45F9E4C +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/gu-IN/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 44FC1158DF3FE90724F8D06534867B6A5E0615984D76E2CBEFAA9DC69F6E738E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.cs-CZ.yaml new file mode 100644 index 000000000000..a116f5bc87f2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.da-DK.yaml new file mode 100644 index 000000000000..44054404c6fd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.de-DE.yaml new file mode 100644 index 000000000000..a37d5bb140d8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.el-GR.yaml new file mode 100644 index 000000000000..09118e21fd52 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.en-GB.yaml new file mode 100644 index 000000000000..618c6e86fda8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.en-US.yaml new file mode 100644 index 000000000000..2af8a620a70c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (gu-IN) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.es-MX.yaml new file mode 100644 index 000000000000..b964966840da --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.fr-FR.yaml new file mode 100644 index 000000000000..4d750d005904 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.hu-HU.yaml new file mode 100644 index 000000000000..e96c738066b0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.ja-JP.yaml new file mode 100644 index 000000000000..1f1d9b4dd118 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.nb-NO.yaml new file mode 100644 index 000000000000..c14b20007033 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.ru-RU.yaml new file mode 100644 index 000000000000..17db10899148 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.ta-IN.yaml new file mode 100644 index 000000000000..d9651299ce57 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.zh-CN.yaml new file mode 100644 index 000000000000..04ad572ab9f7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.yaml b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.yaml new file mode 100644 index 000000000000..29e99b55b693 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/gu-IN/150.0.2/Mozilla.Firefox.gu-IN.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.gu-IN +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.installer.yaml b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.installer.yaml new file mode 100644 index 000000000000..24af4d2e7b6d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.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.he +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/he/Firefox%20Setup%20150.0.2.exe + InstallerSha256: DE91E1296597D5509F11B2294BA7D3082FF59B00654A6978459776BEE526D062 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/he/Firefox%20Setup%20150.0.2.exe + InstallerSha256: B962D5B8D264D938ECF8827354A769CA9A42A65C8BDB279DA9B0B0E4233A1084 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/he/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 24A5746A8F417B144DEB26B80D509C47043EDCBA031A45E66993CBB0474D6FE5 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.locale.cs-CZ.yaml new file mode 100644 index 000000000000..6871972f7d0d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.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.he +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/he/150.0.2/Mozilla.Firefox.he.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.locale.da-DK.yaml new file mode 100644 index 000000000000..7423e64e4e1f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.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.he +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/he/150.0.2/Mozilla.Firefox.he.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.locale.de-DE.yaml new file mode 100644 index 000000000000..61e21bee8c4d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.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.he +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/he/150.0.2/Mozilla.Firefox.he.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.locale.el-GR.yaml new file mode 100644 index 000000000000..d3de50b4fd8e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.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.he +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/he/150.0.2/Mozilla.Firefox.he.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.locale.en-GB.yaml new file mode 100644 index 000000000000..5cd23666e155 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.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.he +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/he/150.0.2/Mozilla.Firefox.he.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.locale.en-US.yaml new file mode 100644 index 000000000000..e093dbfe85cb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.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.he +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 (he) +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/he/150.0.2/Mozilla.Firefox.he.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.locale.es-MX.yaml new file mode 100644 index 000000000000..be7175a7f36c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.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.he +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/he/150.0.2/Mozilla.Firefox.he.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.locale.fr-FR.yaml new file mode 100644 index 000000000000..6d4d1737b8d3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.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.he +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/he/150.0.2/Mozilla.Firefox.he.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.locale.hu-HU.yaml new file mode 100644 index 000000000000..504ca99e9f9e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.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.he +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/he/150.0.2/Mozilla.Firefox.he.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.locale.ja-JP.yaml new file mode 100644 index 000000000000..02f6147bbcae --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.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.he +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/he/150.0.2/Mozilla.Firefox.he.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.locale.nb-NO.yaml new file mode 100644 index 000000000000..4c3333a3e1f2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.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.he +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/he/150.0.2/Mozilla.Firefox.he.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.locale.ru-RU.yaml new file mode 100644 index 000000000000..98f74cd3599b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.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.he +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/he/150.0.2/Mozilla.Firefox.he.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.locale.ta-IN.yaml new file mode 100644 index 000000000000..5b36c47e2d4e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.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.he +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/he/150.0.2/Mozilla.Firefox.he.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.locale.zh-CN.yaml new file mode 100644 index 000000000000..df9cb13db8b6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.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.he +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/he/150.0.2/Mozilla.Firefox.he.yaml b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.he.yaml new file mode 100644 index 000000000000..81ca01e6c689 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/he/150.0.2/Mozilla.Firefox.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.he +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/it/150.0.2/Mozilla.Firefox.it.installer.yaml b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.installer.yaml new file mode 100644 index 000000000000..d142ced959cb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.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.it +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/it/Firefox%20Setup%20150.0.2.exe + InstallerSha256: BA8EBF25E719B8FB72FE3B64244915EB6A845ACC98266A0A9B474E35678BB19E +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/it/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 287D8C830B270EE5AA37C7FD6AE82221CC4CBE439585C0F7D415CC44516EE595 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/it/Firefox%20Setup%20150.0.2.exe + InstallerSha256: BF34F8103D934490FA2DEA818B8B2FF05763614E9776A444146584DA9A83DB7F +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.locale.cs-CZ.yaml new file mode 100644 index 000000000000..61793c1073d6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.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.it +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/it/150.0.2/Mozilla.Firefox.it.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.locale.da-DK.yaml new file mode 100644 index 000000000000..f411c12f1259 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.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.it +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/it/150.0.2/Mozilla.Firefox.it.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.locale.de-DE.yaml new file mode 100644 index 000000000000..c5421d48507e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.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.it +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/it/150.0.2/Mozilla.Firefox.it.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.locale.el-GR.yaml new file mode 100644 index 000000000000..49780b16aa40 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.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.it +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/it/150.0.2/Mozilla.Firefox.it.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.locale.en-GB.yaml new file mode 100644 index 000000000000..b2565a5e4b07 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.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.it +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/it/150.0.2/Mozilla.Firefox.it.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.locale.en-US.yaml new file mode 100644 index 000000000000..9ba0fefc7709 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.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.it +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 (it) +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/it/150.0.2/Mozilla.Firefox.it.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.locale.es-MX.yaml new file mode 100644 index 000000000000..08c17da2ba89 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.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.it +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/it/150.0.2/Mozilla.Firefox.it.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.locale.fr-FR.yaml new file mode 100644 index 000000000000..9a791992db31 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.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.it +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/it/150.0.2/Mozilla.Firefox.it.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.locale.hu-HU.yaml new file mode 100644 index 000000000000..843185954c94 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.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.it +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/it/150.0.2/Mozilla.Firefox.it.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.locale.ja-JP.yaml new file mode 100644 index 000000000000..a04c60f24791 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.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.it +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/it/150.0.2/Mozilla.Firefox.it.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.locale.nb-NO.yaml new file mode 100644 index 000000000000..84090b2287ee --- /dev/null +++ b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.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.it +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/it/150.0.2/Mozilla.Firefox.it.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.locale.ru-RU.yaml new file mode 100644 index 000000000000..7fde365cb0ef --- /dev/null +++ b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.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.it +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/it/150.0.2/Mozilla.Firefox.it.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.locale.ta-IN.yaml new file mode 100644 index 000000000000..04f7259704df --- /dev/null +++ b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.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.it +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/it/150.0.2/Mozilla.Firefox.it.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.locale.zh-CN.yaml new file mode 100644 index 000000000000..c19cd55f6467 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.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.it +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/it/150.0.2/Mozilla.Firefox.it.yaml b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.yaml new file mode 100644 index 000000000000..754e85fd0f00 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/it/150.0.2/Mozilla.Firefox.it.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.it +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/nl/150.0.2/Mozilla.Firefox.nl.installer.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.installer.yaml new file mode 100644 index 000000000000..b676144aabf1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/nl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 893AC6409075184C558A66219A41D5279D84344C601BA6307F26AC2854CCC878 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/nl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 8F93103C379D56BE935AD8B7E93AF59198B2628B8DAF77FE2ED48B3B2F169943 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/nl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 2A918A8C55CEF7935B8F5B39A0841C7EF52D91C91D42E638B9C84DB02ACBF36B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.cs-CZ.yaml new file mode 100644 index 000000000000..d46fa70088a4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.da-DK.yaml new file mode 100644 index 000000000000..dd220b22e569 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.de-DE.yaml new file mode 100644 index 000000000000..ed9989c05a93 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.el-GR.yaml new file mode 100644 index 000000000000..b49b7fa50912 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.en-GB.yaml new file mode 100644 index 000000000000..39546d39f74c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.en-US.yaml new file mode 100644 index 000000000000..8b13956e92de --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (nl) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.es-MX.yaml new file mode 100644 index 000000000000..a146d5d173f2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.fr-FR.yaml new file mode 100644 index 000000000000..ec9daa716cd9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.hu-HU.yaml new file mode 100644 index 000000000000..57f398598b8d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.ja-JP.yaml new file mode 100644 index 000000000000..9e3f5ad75dd1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.nb-NO.yaml new file mode 100644 index 000000000000..09bac60ece2d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.ru-RU.yaml new file mode 100644 index 000000000000..5b81539537d2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.ta-IN.yaml new file mode 100644 index 000000000000..4fb153eed42b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.zh-CN.yaml new file mode 100644 index 000000000000..dd289174f262 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.yaml b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.yaml new file mode 100644 index 000000000000..a4f694699cc7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nl/150.0.2/Mozilla.Firefox.nl.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nl +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.installer.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.installer.yaml new file mode 100644 index 000000000000..0910f285ea62 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/nn-NO/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 7C9928BA83D17001788806DD69837C4F55D21DE85BDCAC4C1398204E090B0B53 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/nn-NO/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 48D001B368A6E1568315C7ECE08553CE0B8F3F23FC560A479AA3AD6C0454E207 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/nn-NO/Firefox%20Setup%20150.0.2.exe + InstallerSha256: EC3A4F9D2AF20969AAD9B1D61D3C2D7BBF25DAF5D5E3C2B10837BED429AFEE9E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.cs-CZ.yaml new file mode 100644 index 000000000000..a77d044aa4c1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.da-DK.yaml new file mode 100644 index 000000000000..10c0e94cf7f0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.de-DE.yaml new file mode 100644 index 000000000000..373d5520bfe4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.el-GR.yaml new file mode 100644 index 000000000000..5661cc68e86d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.en-GB.yaml new file mode 100644 index 000000000000..c22c9eab4e2d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.en-US.yaml new file mode 100644 index 000000000000..4bec71aa4fa0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (nn-NO) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.es-MX.yaml new file mode 100644 index 000000000000..677730512370 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.fr-FR.yaml new file mode 100644 index 000000000000..23d94c30570a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.hu-HU.yaml new file mode 100644 index 000000000000..86c9b40dc880 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.ja-JP.yaml new file mode 100644 index 000000000000..3fba350fd112 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.nb-NO.yaml new file mode 100644 index 000000000000..469dadeb210b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.ru-RU.yaml new file mode 100644 index 000000000000..0a937eaa9fec --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.ta-IN.yaml new file mode 100644 index 000000000000..800526dd2b7b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.zh-CN.yaml new file mode 100644 index 000000000000..bd2cc05d3bb9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.yaml b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.yaml new file mode 100644 index 000000000000..b49524fa6899 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/nn-NO/150.0.2/Mozilla.Firefox.nn-NO.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.nn-NO +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.installer.yaml b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.installer.yaml new file mode 100644 index 000000000000..536b88eb8431 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.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.oc +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/oc/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 015EA732EF7C33FA685B65836809D50CF1950418DDC413463AF0FCA7CA4DA42C +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/oc/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 25C5BABB82464087AB038A7D939A4E8EA8BAA5EE5818257F24469D7BF3852D5A +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/oc/Firefox%20Setup%20150.0.2.exe + InstallerSha256: BF533B606DD10AA4638BB484930A8857F541B4D99396E15169A5EFE1830629B4 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.locale.cs-CZ.yaml new file mode 100644 index 000000000000..527df5f14db9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.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.oc +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/oc/150.0.2/Mozilla.Firefox.oc.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.locale.da-DK.yaml new file mode 100644 index 000000000000..e6cba516ffa4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.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.oc +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/oc/150.0.2/Mozilla.Firefox.oc.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.locale.de-DE.yaml new file mode 100644 index 000000000000..ecc7448404e6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.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.oc +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/oc/150.0.2/Mozilla.Firefox.oc.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.locale.el-GR.yaml new file mode 100644 index 000000000000..08d5832eb29a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.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.oc +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/oc/150.0.2/Mozilla.Firefox.oc.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.locale.en-GB.yaml new file mode 100644 index 000000000000..6e82099497f5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.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.oc +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/oc/150.0.2/Mozilla.Firefox.oc.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.locale.en-US.yaml new file mode 100644 index 000000000000..761a2525ac1d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.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.oc +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 (oc) +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/oc/150.0.2/Mozilla.Firefox.oc.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.locale.es-MX.yaml new file mode 100644 index 000000000000..1395083f3810 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.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.oc +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/oc/150.0.2/Mozilla.Firefox.oc.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.locale.fr-FR.yaml new file mode 100644 index 000000000000..cb637c6bdb29 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.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.oc +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/oc/150.0.2/Mozilla.Firefox.oc.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.locale.hu-HU.yaml new file mode 100644 index 000000000000..1ae9e3221fcc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.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.oc +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/oc/150.0.2/Mozilla.Firefox.oc.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.locale.ja-JP.yaml new file mode 100644 index 000000000000..517797fa255b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.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.oc +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/oc/150.0.2/Mozilla.Firefox.oc.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.locale.nb-NO.yaml new file mode 100644 index 000000000000..1cae9035a4bd --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.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.oc +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/oc/150.0.2/Mozilla.Firefox.oc.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.locale.ru-RU.yaml new file mode 100644 index 000000000000..d45fae6e5ca2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.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.oc +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/oc/150.0.2/Mozilla.Firefox.oc.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.locale.ta-IN.yaml new file mode 100644 index 000000000000..74ed4dd7adde --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.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.oc +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/oc/150.0.2/Mozilla.Firefox.oc.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.locale.zh-CN.yaml new file mode 100644 index 000000000000..d8c09e472752 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.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.oc +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/oc/150.0.2/Mozilla.Firefox.oc.yaml b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.yaml new file mode 100644 index 000000000000..faa0224051ac --- /dev/null +++ b/manifests/m/Mozilla/Firefox/oc/150.0.2/Mozilla.Firefox.oc.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.oc +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/sc/150.0.2/Mozilla.Firefox.sc.installer.yaml b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.installer.yaml new file mode 100644 index 000000000000..271dcc91b7e7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.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.sc +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/sc/Firefox%20Setup%20150.0.2.exe + InstallerSha256: FC6BA1820A929A53848216AB175D26746C4AA7DC48D2BFB57817DE8A21F77157 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/sc/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 14D92C7FF2BE654D1BE5CC2F98BF710AA30ACAF6718A0E68005E927B11137C90 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/sc/Firefox%20Setup%20150.0.2.exe + InstallerSha256: B9F616F38CF78A0D0166E17BC669B126E12C048C91E4FF734C28B0B5C247C7A4 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.locale.cs-CZ.yaml new file mode 100644 index 000000000000..5a0cb70b4169 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.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.sc +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/sc/150.0.2/Mozilla.Firefox.sc.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.locale.da-DK.yaml new file mode 100644 index 000000000000..a9588f18eec2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.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.sc +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/sc/150.0.2/Mozilla.Firefox.sc.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.locale.de-DE.yaml new file mode 100644 index 000000000000..3739187f90e8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.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.sc +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/sc/150.0.2/Mozilla.Firefox.sc.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.locale.el-GR.yaml new file mode 100644 index 000000000000..b2656929aaf3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.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.sc +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/sc/150.0.2/Mozilla.Firefox.sc.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.locale.en-GB.yaml new file mode 100644 index 000000000000..0e32d425d7c0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.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.sc +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/sc/150.0.2/Mozilla.Firefox.sc.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.locale.en-US.yaml new file mode 100644 index 000000000000..d6b121a7b5d9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.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.sc +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 (sc) +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/sc/150.0.2/Mozilla.Firefox.sc.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.locale.es-MX.yaml new file mode 100644 index 000000000000..f92cad896524 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.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.sc +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/sc/150.0.2/Mozilla.Firefox.sc.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.locale.fr-FR.yaml new file mode 100644 index 000000000000..c4ad65dbbf2c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.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.sc +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/sc/150.0.2/Mozilla.Firefox.sc.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.locale.hu-HU.yaml new file mode 100644 index 000000000000..f966065274df --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.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.sc +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/sc/150.0.2/Mozilla.Firefox.sc.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.locale.ja-JP.yaml new file mode 100644 index 000000000000..3a07b88463cf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.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.sc +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/sc/150.0.2/Mozilla.Firefox.sc.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.locale.nb-NO.yaml new file mode 100644 index 000000000000..f8c49f485e39 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.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.sc +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/sc/150.0.2/Mozilla.Firefox.sc.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.locale.ru-RU.yaml new file mode 100644 index 000000000000..3cc1df0f6429 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.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.sc +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/sc/150.0.2/Mozilla.Firefox.sc.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.locale.ta-IN.yaml new file mode 100644 index 000000000000..6ab96ad2cd8a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.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.sc +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/sc/150.0.2/Mozilla.Firefox.sc.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.locale.zh-CN.yaml new file mode 100644 index 000000000000..be9ac08394a9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.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.sc +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/sc/150.0.2/Mozilla.Firefox.sc.yaml b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.yaml new file mode 100644 index 000000000000..b4630cc312f4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sc/150.0.2/Mozilla.Firefox.sc.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.sc +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.installer.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.installer.yaml new file mode 100644 index 000000000000..e6ee47919cb9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/sl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 6CADC7857776D89348E24DB9ECF4043DC58D25041CA058020E0F59779E86BF79 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/sl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: B13B42A54C2CBAFD929B5824B913A499BF1A26467E08E3F2A4E9544972E44BF8 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/sl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 812D750FD30434E8BC6518FF2B5E8329FF3941F67DBE79995E9BED65CDDA18A1 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.cs-CZ.yaml new file mode 100644 index 000000000000..1d292fe10375 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.da-DK.yaml new file mode 100644 index 000000000000..165220acba5d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.de-DE.yaml new file mode 100644 index 000000000000..ebe6cf37b881 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.el-GR.yaml new file mode 100644 index 000000000000..a2055f0a988d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.en-GB.yaml new file mode 100644 index 000000000000..217f69ef0758 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.en-US.yaml new file mode 100644 index 000000000000..6b6a06f65ad0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (sl) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.es-MX.yaml new file mode 100644 index 000000000000..20fb899534bb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.fr-FR.yaml new file mode 100644 index 000000000000..cd3ff1b49694 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.hu-HU.yaml new file mode 100644 index 000000000000..383e5d284714 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.ja-JP.yaml new file mode 100644 index 000000000000..e1f522e8ed9a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.nb-NO.yaml new file mode 100644 index 000000000000..a4dc07942327 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.ru-RU.yaml new file mode 100644 index 000000000000..4db29f628ba0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.ta-IN.yaml new file mode 100644 index 000000000000..ae3029c97911 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.zh-CN.yaml new file mode 100644 index 000000000000..9c5b0667ab93 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.yaml b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.yaml new file mode 100644 index 000000000000..f736f37d8090 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sl/150.0.2/Mozilla.Firefox.sl.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sl +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.installer.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.installer.yaml new file mode 100644 index 000000000000..eeca556629a1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/son/Firefox%20Setup%20150.0.2.exe + InstallerSha256: E1736BD57DE5BC0CB7E3B5E8DB0ADA7B2B6370BE03D12CFFF2FD01CAC2477770 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/son/Firefox%20Setup%20150.0.2.exe + InstallerSha256: E978282E335B92EDBB9F0D994CFD683D4D69BF0080BBB86581855D87AAAE3C78 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/son/Firefox%20Setup%20150.0.2.exe + InstallerSha256: A093B38187ED955405AA26E8E09863A40AA7FF23559880ECC9628131B4F1C503 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.cs-CZ.yaml new file mode 100644 index 000000000000..f3a53ca54d31 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.da-DK.yaml new file mode 100644 index 000000000000..a23a25f30ff2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.de-DE.yaml new file mode 100644 index 000000000000..154d00e4244b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.el-GR.yaml new file mode 100644 index 000000000000..748dd0689a56 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.en-GB.yaml new file mode 100644 index 000000000000..6aaa2a3491b8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.en-US.yaml new file mode 100644 index 000000000000..19759b3b1d6f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (son) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.es-MX.yaml new file mode 100644 index 000000000000..5db8569fa05b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.fr-FR.yaml new file mode 100644 index 000000000000..b5be19766d4d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.hu-HU.yaml new file mode 100644 index 000000000000..0a7b3ecf7092 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.ja-JP.yaml new file mode 100644 index 000000000000..fd2539cabb1f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.nb-NO.yaml new file mode 100644 index 000000000000..dccd2a66273f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.ru-RU.yaml new file mode 100644 index 000000000000..df5dc875a734 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.ta-IN.yaml new file mode 100644 index 000000000000..e7c3867122cc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.zh-CN.yaml new file mode 100644 index 000000000000..806309f41ee4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.yaml b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.yaml new file mode 100644 index 000000000000..e15c6cdc43f7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/son/150.0.2/Mozilla.Firefox.son.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.son +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.installer.yaml b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.installer.yaml new file mode 100644 index 000000000000..a03c0cea96e5 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.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.sq +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/sq/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 487F51D4B63F3AFA2E0DCF094C3D8E271A6641FA9B9FC3C521ED19992C1B401C +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/sq/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 1F354D41106F24C19C1AE90656900D6D5D0B25AD006BE81CF160CD7C9D5E501E +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/sq/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 3B5810EB0BB3060B266E2142253F4E4E6CF150574AB3ABAF7F4B65ADAC4655F3 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.locale.cs-CZ.yaml new file mode 100644 index 000000000000..09f7ff98b055 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.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.sq +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/sq/150.0.2/Mozilla.Firefox.sq.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.locale.da-DK.yaml new file mode 100644 index 000000000000..de02b2e63706 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.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.sq +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/sq/150.0.2/Mozilla.Firefox.sq.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.locale.de-DE.yaml new file mode 100644 index 000000000000..1d0ec7a6d9bc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.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.sq +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/sq/150.0.2/Mozilla.Firefox.sq.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.locale.el-GR.yaml new file mode 100644 index 000000000000..f2009f0a44fc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.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.sq +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/sq/150.0.2/Mozilla.Firefox.sq.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.locale.en-GB.yaml new file mode 100644 index 000000000000..1cb6e1a203f7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.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.sq +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/sq/150.0.2/Mozilla.Firefox.sq.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.locale.en-US.yaml new file mode 100644 index 000000000000..28aeb9d6c177 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.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.sq +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 (sq) +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/sq/150.0.2/Mozilla.Firefox.sq.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.locale.es-MX.yaml new file mode 100644 index 000000000000..36dbae120f0a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.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.sq +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/sq/150.0.2/Mozilla.Firefox.sq.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.locale.fr-FR.yaml new file mode 100644 index 000000000000..fff9ee63ee38 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.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.sq +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/sq/150.0.2/Mozilla.Firefox.sq.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.locale.hu-HU.yaml new file mode 100644 index 000000000000..7cb27b0b13d6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.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.sq +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/sq/150.0.2/Mozilla.Firefox.sq.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.locale.ja-JP.yaml new file mode 100644 index 000000000000..05eba97b056d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.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.sq +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/sq/150.0.2/Mozilla.Firefox.sq.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.locale.nb-NO.yaml new file mode 100644 index 000000000000..eb2afe726fa8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.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.sq +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/sq/150.0.2/Mozilla.Firefox.sq.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.locale.ru-RU.yaml new file mode 100644 index 000000000000..8b3be1de1cc3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.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.sq +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/sq/150.0.2/Mozilla.Firefox.sq.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.locale.ta-IN.yaml new file mode 100644 index 000000000000..c32557811064 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.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.sq +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/sq/150.0.2/Mozilla.Firefox.sq.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.locale.zh-CN.yaml new file mode 100644 index 000000000000..a24c59868f89 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.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.sq +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/sq/150.0.2/Mozilla.Firefox.sq.yaml b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.yaml new file mode 100644 index 000000000000..5059c6aaf713 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sq/150.0.2/Mozilla.Firefox.sq.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.sq +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.installer.yaml b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.installer.yaml new file mode 100644 index 000000000000..a00cef6d89c2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.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.sr +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/sr/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 4FFC92AA0B274045860D68A9EAC03775D9FA86C985293420FE6C1F1E3A0FAF68 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/sr/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 05796808847BC371569F10466134C496BA58F715EBB340816FEEEE3A52E434E3 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/sr/Firefox%20Setup%20150.0.2.exe + InstallerSha256: B3988866ACED89D16ED0FE6FF14112F5A714A5773BDE6F4C5BDAAEDEF8E2BD4C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.locale.cs-CZ.yaml new file mode 100644 index 000000000000..eb45f5b5afc8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.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.sr +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/sr/150.0.2/Mozilla.Firefox.sr.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.locale.da-DK.yaml new file mode 100644 index 000000000000..c9e6e500483a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.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.sr +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/sr/150.0.2/Mozilla.Firefox.sr.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.locale.de-DE.yaml new file mode 100644 index 000000000000..2d02fe7f6009 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.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.sr +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/sr/150.0.2/Mozilla.Firefox.sr.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.locale.el-GR.yaml new file mode 100644 index 000000000000..a72e41d3edaf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.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.sr +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/sr/150.0.2/Mozilla.Firefox.sr.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.locale.en-GB.yaml new file mode 100644 index 000000000000..9ed85fa06829 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.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.sr +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/sr/150.0.2/Mozilla.Firefox.sr.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.locale.en-US.yaml new file mode 100644 index 000000000000..8e2f78514c3f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.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.sr +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 (sr) +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/sr/150.0.2/Mozilla.Firefox.sr.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.locale.es-MX.yaml new file mode 100644 index 000000000000..03abf4b28e4a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.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.sr +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/sr/150.0.2/Mozilla.Firefox.sr.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.locale.fr-FR.yaml new file mode 100644 index 000000000000..490b9976b8c9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.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.sr +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/sr/150.0.2/Mozilla.Firefox.sr.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.locale.hu-HU.yaml new file mode 100644 index 000000000000..6d9f47134daf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.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.sr +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/sr/150.0.2/Mozilla.Firefox.sr.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.locale.ja-JP.yaml new file mode 100644 index 000000000000..06c81152105e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.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.sr +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/sr/150.0.2/Mozilla.Firefox.sr.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.locale.nb-NO.yaml new file mode 100644 index 000000000000..7d0b852977d2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.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.sr +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/sr/150.0.2/Mozilla.Firefox.sr.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.locale.ru-RU.yaml new file mode 100644 index 000000000000..7fad1c067dcb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.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.sr +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/sr/150.0.2/Mozilla.Firefox.sr.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.locale.ta-IN.yaml new file mode 100644 index 000000000000..d740f997dee2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.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.sr +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/sr/150.0.2/Mozilla.Firefox.sr.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.locale.zh-CN.yaml new file mode 100644 index 000000000000..4a9efcb1eded --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.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.sr +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/sr/150.0.2/Mozilla.Firefox.sr.yaml b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.yaml new file mode 100644 index 000000000000..9367b968e770 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sr/150.0.2/Mozilla.Firefox.sr.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.sr +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.installer.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.installer.yaml new file mode 100644 index 000000000000..7ceb907d1c91 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/sv-SE/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 09AFAE0C087E9A3730D9346AC2E8C6B47445F9DDD30216BFFDE1410841D13550 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/sv-SE/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 6FD2E4129E7D194F605AB1E9FF607AA703BD97D10366DB41422BFB88196A9556 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/sv-SE/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 494CFFED917A5D72F7795D2D0BBD92D397E96AD376D9EE08E32C00FF6C8BCA7C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.cs-CZ.yaml new file mode 100644 index 000000000000..7c14685aa506 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.da-DK.yaml new file mode 100644 index 000000000000..b37a29c48852 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.de-DE.yaml new file mode 100644 index 000000000000..6b1375100d5d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.el-GR.yaml new file mode 100644 index 000000000000..db472f28f0cf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.en-GB.yaml new file mode 100644 index 000000000000..d7aa1348f463 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.en-US.yaml new file mode 100644 index 000000000000..5c83b84c5e32 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (sv-SE) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.es-MX.yaml new file mode 100644 index 000000000000..b2e9481ca974 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.fr-FR.yaml new file mode 100644 index 000000000000..c57b4cb06a4f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.hu-HU.yaml new file mode 100644 index 000000000000..fed9d3e06279 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.ja-JP.yaml new file mode 100644 index 000000000000..2cc58b257a13 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.nb-NO.yaml new file mode 100644 index 000000000000..c274a9969780 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.ru-RU.yaml new file mode 100644 index 000000000000..dd26ca50ba74 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.ta-IN.yaml new file mode 100644 index 000000000000..0d275e214bf0 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.zh-CN.yaml new file mode 100644 index 000000000000..afed56b8561e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.yaml b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.yaml new file mode 100644 index 000000000000..1a2df6596a00 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/sv-SE/150.0.2/Mozilla.Firefox.sv-SE.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.sv-SE +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.installer.yaml b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.installer.yaml new file mode 100644 index 000000000000..08a3275f49f1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.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.szl +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/szl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: C4D5D5A4E5FE3D51CB82A71281CC35D5413AADE5E901D1F847D3DD3CB408AC1B +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/szl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 1D27E21BFF8561CD8F63B31D96ECB5C9CCE7D2913F2173DB08C14935284E604B +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/szl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: C17CBAEC9D5EAF97E9BFDDB15BFB069A3AE0C829BA78B79DE330AA01BF7C9A68 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.locale.cs-CZ.yaml new file mode 100644 index 000000000000..fa6fdaad0e98 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.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.szl +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/szl/150.0.2/Mozilla.Firefox.szl.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.locale.da-DK.yaml new file mode 100644 index 000000000000..84bd476414ac --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.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.szl +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/szl/150.0.2/Mozilla.Firefox.szl.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.locale.de-DE.yaml new file mode 100644 index 000000000000..d1541eb22c23 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.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.szl +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/szl/150.0.2/Mozilla.Firefox.szl.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.locale.el-GR.yaml new file mode 100644 index 000000000000..610104a7f626 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.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.szl +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/szl/150.0.2/Mozilla.Firefox.szl.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.locale.en-GB.yaml new file mode 100644 index 000000000000..71d64aed4eb7 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.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.szl +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/szl/150.0.2/Mozilla.Firefox.szl.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.locale.en-US.yaml new file mode 100644 index 000000000000..30ae5bbfec23 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.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.szl +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 (szl) +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/szl/150.0.2/Mozilla.Firefox.szl.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.locale.es-MX.yaml new file mode 100644 index 000000000000..82073075d36c --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.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.szl +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/szl/150.0.2/Mozilla.Firefox.szl.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.locale.fr-FR.yaml new file mode 100644 index 000000000000..ae7698c5549a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.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.szl +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/szl/150.0.2/Mozilla.Firefox.szl.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.locale.hu-HU.yaml new file mode 100644 index 000000000000..c5adce01215e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.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.szl +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/szl/150.0.2/Mozilla.Firefox.szl.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.locale.ja-JP.yaml new file mode 100644 index 000000000000..5dd454bec349 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.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.szl +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/szl/150.0.2/Mozilla.Firefox.szl.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.locale.nb-NO.yaml new file mode 100644 index 000000000000..e8fad81e7b20 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.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.szl +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/szl/150.0.2/Mozilla.Firefox.szl.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.locale.ru-RU.yaml new file mode 100644 index 000000000000..fb14e0ad0ac8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.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.szl +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/szl/150.0.2/Mozilla.Firefox.szl.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.locale.ta-IN.yaml new file mode 100644 index 000000000000..6f2448400c8f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.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.szl +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/szl/150.0.2/Mozilla.Firefox.szl.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.locale.zh-CN.yaml new file mode 100644 index 000000000000..2c514986e330 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.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.szl +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/szl/150.0.2/Mozilla.Firefox.szl.yaml b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.yaml new file mode 100644 index 000000000000..89cc92b8f7cc --- /dev/null +++ b/manifests/m/Mozilla/Firefox/szl/150.0.2/Mozilla.Firefox.szl.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.szl +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.installer.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.installer.yaml new file mode 100644 index 000000000000..0b1c9ff94d69 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.installer.yaml @@ -0,0 +1,40 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Silent: /S /PreventRebootRequired=true + SilentWithProgress: /S /PreventRebootRequired=true + InstallLocation: /InstallDirectoryPath="" +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +FileExtensions: +- avif +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Mozilla Firefox +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x86 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win32/tl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: AAC6E14B7CCBB42C393AC0A0CF3A7A1AC55784AEBC2440BB89C972F2ED7DD10F +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/tl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 0F01CE21F7D0ECE7EDC6E826AC08FBB08E386EF3DAEFCC1EBD4E38D299A85F3C +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/tl/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 6C36CDA888F32D47418D04E4B100FED5907A5F16BF8DA97714FA27193B6D054B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.cs-CZ.yaml new file mode 100644 index 000000000000..94437ba9956a --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.cs-CZ.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +PackageLocale: cs-CZ +PublisherUrl: https://www.mozilla.org/cs/ +PublisherSupportUrl: https://support.mozilla.org/cs/ +PrivacyUrl: https://www.mozilla.org/cs/privacy/firefox/ +PackageUrl: https://www.mozilla.org/cs/firefox/ +ShortDescription: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. +Description: Mozilla Firefox je svobodný multiplatformní webový prohlížeč, který vyvíjí ve spolupráci se stovkami dobrovolníků Mozilla Corporation, dceřiná společnost nadace Mozilla Foundation. První finální verze 1.0 byla vydána i v češtině 9. listopadu 2004 za velkého zájmu uživatelů i médií a stala se jedním z nejpoužívanějších programů s otevřeným kódem. Kromě oficiálně podporovaných platforem, kterými jsou Microsoft Windows, Android, Linux a macOS, je Firefox dostupný i pro FreeBSD, OS/2, RISC OS, SkyOS či BeOS. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.da-DK.yaml new file mode 100644 index 000000000000..3d7d5f39da33 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.da-DK.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +PackageLocale: da-DK +PublisherUrl: https://www.mozilla.org/da/ +PublisherSupportUrl: https://support.mozilla.org/da/ +PrivacyUrl: https://www.mozilla.org/en-US/privacy/firefox/ +PackageUrl: https://www.mozilla.org/da/firefox/ +ShortDescription: Mozilla Firefox er gratis og åben kildekode-software, udviklet af et fællesskab på tusinder fra hele verden. +Description: Firefox Browser, også kendt som Mozilla Firefox eller bare Firefox, er en gratis og open-source webbrowser udviklet af Mozilla Foundation og dens datterselskab, Mozilla Corporation. Firefox bruger Gecko-layoutmotoren til at gengive websider, som implementerer aktuelle og forventede webstandarder. I 2017 begyndte Firefox at inkorporere ny teknologi under kodeordet Quantum for at fremme parallelitet og et mere intuitivt brugergrænseflade. Firefox er officielt tilgængelig til Windows 7 eller nyere, macOS og Linux. Dens uofficielle porte er tilgængelige til forskellige Unix og Unix-lignende operativsystemer, herunder FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.de-DE.yaml new file mode 100644 index 000000000000..8561e3d7cec4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.de-DE.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +PackageLocale: de-DE +PublisherUrl: https://www.mozilla.org/de/ +PublisherSupportUrl: https://support.mozilla.org/de/ +PrivacyUrl: https://www.mozilla.org/de/privacy/firefox/ +PackageUrl: https://www.mozilla.org/de/firefox/ +ShortDescription: Mozilla Firefox ist ein freier und quelloffener Webbrowser. +Description: Mozilla Firefox, kurz Firefox genannt, ist ein freier Webbrowser des Mozilla-Projektes. Er wurde im September 2002 veröffentlicht. Firefox verwendet die Gecko-Layout-Engine zum Rendern von Webseiten, die aktuelle und erwartete Webstandards implementiert. Im Jahr 2017 begann Firefox mit der Einführung neuer Technologien unter dem Codenamen Quantum, um Parallelität und eine intuitivere Benutzeroberfläche zu fördern. Seine inoffiziellen Ports sind für verschiedene Unix- und Unix-ähnliche Betriebssysteme verfügbar, darunter FreeBSD, OpenBSD, NetBSD, illumos und Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.el-GR.yaml new file mode 100644 index 000000000000..5fcfe77e2be2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.el-GR.yaml @@ -0,0 +1,13 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +PackageLocale: el-GR +PublisherUrl: https://www.mozilla.org/el/ +PublisherSupportUrl: https://support.mozilla.org/el/ +PrivacyUrl: https://www.mozilla.org/el/privacy/firefox/ +PackageUrl: https://www.mozilla.org/el/firefox/ +ShortDescription: Firefox, ένα δωρεάν πρόγραμμα περιήγησης από τη Mozilla, μια μη κερδοσκοπική οργάνωση αφιερωμένη στην υγεία και το απόρρητο του διαδικτύου. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.en-GB.yaml new file mode 100644 index 000000000000..b8166b802351 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.en-GB.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +PackageLocale: en-GB +PublisherUrl: https://www.mozilla.org/en-GB/ +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.en-US.yaml new file mode 100644 index 000000000000..5fcccc0c3045 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.en-US.yaml @@ -0,0 +1,33 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +PackageLocale: en-US +Publisher: Mozilla +PublisherUrl: https://www.mozilla.org/ +PublisherSupportUrl: https://support.mozilla.org/ +PrivacyUrl: https://www.mozilla.org/privacy/firefox/ +Author: Mozilla Foundation +PackageName: Mozilla Firefox (tl) +PackageUrl: https://www.mozilla.org/firefox/ +License: MPL-2.0 +LicenseUrl: https://www.mozilla.org/MPL/2.0 +Copyright: © Firefox and Mozilla Developers; available under the MPL 2 license. +CopyrightUrl: https://www.mozilla.org/foundation/trademarks/policy +ShortDescription: Mozilla Firefox is free and open source software, built by a community of thousands from all over the world. +Description: Firefox Browser, also known as Mozilla Firefox or simply Firefox, is a free and open-source web browser developed by the Mozilla Foundation and its subsidiary, the Mozilla Corporation. Firefox uses the Gecko layout engine to render web pages, which implements current and anticipated web standards. In 2017, Firefox began incorporating new technology under the code name Quantum to promote parallelism and a more intuitive user interface. Firefox is officially available for Windows 7 or newer, macOS, and Linux. Its unofficial ports are available for various Unix and Unix-like operating systems including FreeBSD, OpenBSD, NetBSD, illumos, and Solaris Unix. +Moniker: firefox +Tags: +- browser +- gecko +- internet +- quantum +- spidermonkey +- web +- web-browser +- webpage +ReleaseNotes: We’re still preparing the notes for this release, and will post them here when they are ready. Please check back later. +ReleaseNotesUrl: https://www.firefox.com/en-US/firefox/150.0.2/releasenotes/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.es-MX.yaml new file mode 100644 index 000000000000..fd2166241794 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.es-MX.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +PackageLocale: es-MX +PublisherUrl: https://www.mozilla.org/es-MX/ +PublisherSupportUrl: https://support.mozilla.org/es/ +PrivacyUrl: https://www.mozilla.org/es/privacy/firefox/ +PackageUrl: https://www.mozilla.org/es-MX/firefox/ +ShortDescription: Mozilla Firefox es un software gratuito y de código abierto, creado por una comunidad de miles de personas de todo el mundo. +Description: Firefox Browser, también conocido como Mozilla Firefox o simplemente Firefox, es un navegador web gratuito y de código abierto desarrollado por Mozilla Foundation y su subsidiaria, Mozilla Corporation. Firefox utiliza el motor de diseño Gecko para representar páginas web, que implementa estándares web actuales y anticipados. En 2017, Firefox comenzó a incorporar nueva tecnología con el nombre en código Quantum para promover el paralelismo y una interfaz de usuario más intuitiva. Firefox está disponible oficialmente para Windows 7 o más reciente, macOS y Linux. Sus puertos no oficiales están disponibles para varios sistemas operativos Unix y similares a Unix, incluidos FreeBSD, OpenBSD, NetBSD, illumos y Solaris Unix. +Tags: +- navegador +- navegador-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.fr-FR.yaml new file mode 100644 index 000000000000..5739b0c8a419 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.fr-FR.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +PackageLocale: fr-FR +PublisherUrl: https://www.mozilla.org/fr/ +PublisherSupportUrl: https://support.mozilla.org/fr/ +PrivacyUrl: https://www.mozilla.org/fr/privacy/firefox/ +PackageUrl: https://www.mozilla.org/fr/firefox/ +ShortDescription: Mozilla Firefox est un logiciel libre et ouvert, réalisé par une communauté de milliers de contributeurs dans le monde. +Tags: +- navigateur +- navigateur-web +- web +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.hu-HU.yaml new file mode 100644 index 000000000000..569d26d4d0f9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.hu-HU.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +PackageLocale: hu-HU +PublisherUrl: https://www.mozilla.org/hu/ +PublisherSupportUrl: https://support.mozilla.org/hu/ +PrivacyUrl: https://www.mozilla.org/hu/privacy/firefox/ +PackageUrl: https://www.mozilla.org/hu/firefox/ +ShortDescription: A Mozilla Firefox egy ingyenes és nyílt forráskódú webböngésző. +Description: A Firefox böngésző, más néven Mozilla Firefox vagy egyszerűen Firefox, egy ingyenes és nyílt forráskódú webböngésző amelyet a Mozilla Foundation és leányvállalata, a Mozilla Corporation fejlesztett ki. A Firefox a Gecko elrendezési motor használja a weboldalak megjelenítéséhez, a jelenlegi és a várható webes szabványok szerint. 2017-ben a Firefox Quantum kódnéven új technológiát kezdett beépíteni a párhuzamos végrehajtást és a intuitívabb felhasználói felületet célozva meg. A Firefox hivatalosan elérhető Windows 7 vagy újabb, macOS és Linux rendszerekhez. Nem hivatalos portjai különféle Unix és Unix-szerű operációs rendszerekhez érhetők el, beleértve a FreeBSD-t, OpenBSD, NetBSD, illumos és Solaris Unix. +Tags: +- webbrowser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.ja-JP.yaml new file mode 100644 index 000000000000..3220e22553d4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.ja-JP.yaml @@ -0,0 +1,14 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +PackageLocale: ja-JP +PublisherUrl: https://www.mozilla.org/ja/ +PublisherSupportUrl: https://support.mozilla.org/ja/ +PrivacyUrl: https://www.mozilla.org/ja/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ja/firefox/ +ShortDescription: 高速で軽量、プライバシー重視のブラウザー +Description: Mozilla Firefox は無料のオープンソースソフトウェアであり、世界中の多数のコミュニティによって開発されています。 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.nb-NO.yaml new file mode 100644 index 000000000000..0321c3ae28e3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.nb-NO.yaml @@ -0,0 +1,16 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +PackageLocale: nb-NO +PublisherUrl: https://www.mozilla.org/nb-NO/ +PublisherSupportUrl: https://support.mozilla.org/nb-NO/ +PrivacyUrl: https://www.mozilla.org/nb-NO/privacy/firefox/ +PackageUrl: https://www.mozilla.org/nb-NO/firefox/ +ShortDescription: Mozilla Firefox er gratis programvare med åpen kildekode, bygget av et samfunn på tusenvis fra hele verden. +Description: Firefox Browser, også kjent som Mozilla Firefox eller bare Firefox, er en gratis nettleser med åpen kildekode utviklet av Mozilla Foundation og dets datterselskap, Mozilla Corporation. Firefox bruker Gecko-layoutmotoren til å gjengi nettsider, som implementerer gjeldende og forventede webstandarder. I 2017 begynte Firefox å innlemme ny teknologi under kodenavnet Quantum for å fremme parallellitet og et mer intuitivt brukergrensesnitt. Firefox er offisielt tilgjengelig for Windows 7 eller nyere, macOS og Linux. Dens uoffisielle porter er tilgjengelige for forskjellige Unix og Unix-lignende operativsystemer, inkludert FreeBSD, OpenBSD, NetBSD, illumos og Solaris Unix. +Tags: +- nettleser +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.ru-RU.yaml new file mode 100644 index 000000000000..bed197cc3c01 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.ru-RU.yaml @@ -0,0 +1,17 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +PackageLocale: ru-RU +PublisherUrl: https://www.mozilla.org/ru/ +PublisherSupportUrl: https://support.mozilla.org/ru/ +PrivacyUrl: https://www.mozilla.org/ru/privacy/firefox/ +PackageUrl: https://www.mozilla.org/ru/firefox/ +ShortDescription: Mozilla Firefox это бесплатное программное обеспечение с открытым исходным кодом, созданное сообществом тысяч людей со всего мира. +Description: Браузер Firefox, также известный как Mozilla Firefox или просто Firefox, - это бесплатный веб-браузер с открытым исходным кодом, разработанный Mozilla Foundation и его дочерней компанией Mozilla Corporation. Firefox использует механизм компоновки Gecko для отображения веб-страниц, который реализует текущие и ожидаемые веб-стандарты. В 2017 году Firefox начал включать новую технологию под кодовым названием Quantum, чтобы способствовать параллелизму и более интуитивному пользовательскому интерфейсу. Firefox официально доступен для Windows 7 или новее, macOS и Linux. Его неофициальные порты доступны для различных Unix и Unix-подобных операционных систем, включая FreeBSD, OpenBSD, NetBSD, illumos и Solaris Unix. +Tags: +- браузер +- веб-браузер +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.ta-IN.yaml new file mode 100644 index 000000000000..2063ea960cbf --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.ta-IN.yaml @@ -0,0 +1,20 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +PackageLocale: ta-IN +PublisherUrl: https://www.mozilla.org/ta/ +PublisherSupportUrl: https://support.mozilla.org/ta/ +Author: மொஸில்லா அறக்கட்டளை +ShortDescription: மொஸில்லா பயர்பாக்ஸ் என்பது இலவச மற்றும் திறந்த மூல மென்பொருளாகும், இது உலகம் முழுவதிலுமிருந்து ஆயிரக்கணக்கான சமூகத்தால் உருவாக்கப்பட்டது. +Description: பயர்பாக்ஸ் உலாவி, மொஸில்லா பயர்பாக்ஸ் அல்லது வெறுமனே பயர்பாக்ஸ் என்றும் அழைக்கப்படுகிறது, இது மொஸில்லா அறக்கட்டளை மற்றும் அதன் துணை நிறுவனமான மொஸில்லா கார்ப்பரேஷனால் உருவாக்கப்பட்ட ஒரு இலவச மற்றும் திறந்த மூல இணைய உலாவியாகும். பயர்பாக்ஸ் இணையப் பக்கங்களை வழங்குவதற்கு கெக்கோ தளவமைப்பு இயந்திரத்தைப் பயன்படுத்துகிறது, இது தற்போதைய மற்றும் எதிர்பார்க்கப்பட்ட இணையத் தரங்களைச் செயல்படுத்துகிறது. 2017 ஆம் ஆண்டில், இணையான மற்றும் மிகவும் உள்ளுணர்வு பயனர் இடைமுகத்தை மேம்படுத்துவதற்காக குவாண்டம் என்ற குறியீட்டு பெயரில் புதிய தொழில்நுட்பத்தை பயர்பாக்ஸ் இணைக்கத் தொடங்கியது. Firefox Windows 7 அல்லது புதிய, macOS மற்றும் Linux க்கு அதிகாரப்பூர்வமாக கிடைக்கிறது. அதன் அதிகாரப்பூர்வமற்ற போர்ட்கள் FreeBSD, OpenBSD, NetBSD, illumos மற்றும் Solaris Unix உள்ளிட்ட பல்வேறு Unix மற்றும் Unix போன்ற இயங்குதளங்களுக்கு கிடைக்கின்றன. +Tags: +- இணைய-உலாவி +- உலாவி +- குவாண்டம் +- குறுக்கு-தளம் +- கெக்கோ +- சிலந்தி-குரங்கு +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.zh-CN.yaml new file mode 100644 index 000000000000..8d11ce14a9f6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +PackageLocale: zh-CN +PublisherUrl: https://www.mozilla.org/zh-CN/ +PublisherSupportUrl: https://support.mozilla.org/zh-CN/ +PrivacyUrl: https://www.mozilla.org/zh-CN/privacy/firefox/ +Author: Mozilla 基金会 +PackageUrl: https://www.mozilla.org/zh-CN/firefox/ +ShortDescription: 开放安全的开源浏览器 +Description: Firefox 浏览器是唯一一款由非营利组织支持,不会将您的个人数据买给广告商,还能保护您个人信息的主流浏览器。 +Tags: +- gecko +- quantum +- spidermonkey +- 浏览器 +- 火狐 +- 火狐浏览器 +- 网页 +- 网页浏览器 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.yaml b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.yaml new file mode 100644 index 000000000000..1149a27545c3 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/tl/150.0.2/Mozilla.Firefox.tl.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Mozilla.Firefox.tl +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.installer.yaml b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.installer.yaml new file mode 100644 index 000000000000..4f9f68439150 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.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.trs +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/trs/Firefox%20Setup%20150.0.2.exe + InstallerSha256: BB97FD7700BF0F296628E0DE01847F44C07C173C5217CE86CEDBF13393D435CC +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/trs/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 2AEFCCF0A4A70C22D31AC49A79BC21D998FA6DCAF3EC70AFC3EA7F3EEDCE1216 +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/trs/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 6FD4625123AEA02AFC5D42AB79784B06A8BB6620444EBFE11F673168D1C8C11A +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.locale.cs-CZ.yaml new file mode 100644 index 000000000000..8152ddb3f8f1 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.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.trs +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/trs/150.0.2/Mozilla.Firefox.trs.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.locale.da-DK.yaml new file mode 100644 index 000000000000..8b4bc59695ed --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.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.trs +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/trs/150.0.2/Mozilla.Firefox.trs.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.locale.de-DE.yaml new file mode 100644 index 000000000000..de3bb22b4607 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.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.trs +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/trs/150.0.2/Mozilla.Firefox.trs.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.locale.el-GR.yaml new file mode 100644 index 000000000000..1e1b7c41a2eb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.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.trs +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/trs/150.0.2/Mozilla.Firefox.trs.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.locale.en-GB.yaml new file mode 100644 index 000000000000..bb6bbbdb958f --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.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.trs +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/trs/150.0.2/Mozilla.Firefox.trs.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.locale.en-US.yaml new file mode 100644 index 000000000000..0730aaf9fa40 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.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.trs +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 (trs) +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/trs/150.0.2/Mozilla.Firefox.trs.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.locale.es-MX.yaml new file mode 100644 index 000000000000..5f15ff4dedf9 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.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.trs +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/trs/150.0.2/Mozilla.Firefox.trs.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.locale.fr-FR.yaml new file mode 100644 index 000000000000..0e45fd69cb2d --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.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.trs +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/trs/150.0.2/Mozilla.Firefox.trs.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.locale.hu-HU.yaml new file mode 100644 index 000000000000..e7ed57dfbcbe --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.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.trs +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/trs/150.0.2/Mozilla.Firefox.trs.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.locale.ja-JP.yaml new file mode 100644 index 000000000000..541483fcb2d2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.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.trs +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/trs/150.0.2/Mozilla.Firefox.trs.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.locale.nb-NO.yaml new file mode 100644 index 000000000000..e74454967785 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.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.trs +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/trs/150.0.2/Mozilla.Firefox.trs.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.locale.ru-RU.yaml new file mode 100644 index 000000000000..309fd46ecdb2 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.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.trs +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/trs/150.0.2/Mozilla.Firefox.trs.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.locale.ta-IN.yaml new file mode 100644 index 000000000000..2cc971d11f59 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.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.trs +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/trs/150.0.2/Mozilla.Firefox.trs.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.locale.zh-CN.yaml new file mode 100644 index 000000000000..4a60adeaa863 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.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.trs +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/trs/150.0.2/Mozilla.Firefox.trs.yaml b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.yaml new file mode 100644 index 000000000000..fe08d7d41ecb --- /dev/null +++ b/manifests/m/Mozilla/Firefox/trs/150.0.2/Mozilla.Firefox.trs.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.trs +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.installer.yaml b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.installer.yaml new file mode 100644 index 000000000000..1fd1420ff2a6 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.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-CN +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-CN/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 9BD4ADFB0BB8A1E97BB5D2F869A6C354AF9885ADF7ABEF158DFDF4F0DD159C90 +- Architecture: x64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64/zh-CN/Firefox%20Setup%20150.0.2.exe + InstallerSha256: 6C7FB833EBB13637DAF750C7A2C611E2B6D8D324DC2463EED40E8478D0C791FC +- Architecture: arm64 + InstallerUrl: https://download-installer.cdn.mozilla.net/pub/firefox/releases/150.0.2/win64-aarch64/zh-CN/Firefox%20Setup%20150.0.2.exe + InstallerSha256: FC4D3F4330FA45090EC199C73032CFCD93C01C39BE10F61FAF46705E3BF4F335 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.cs-CZ.yaml b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.cs-CZ.yaml new file mode 100644 index 000000000000..92a87789fc32 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.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-CN +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-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.da-DK.yaml b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.da-DK.yaml new file mode 100644 index 000000000000..f9dc7fec2af4 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.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-CN +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-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.de-DE.yaml b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.de-DE.yaml new file mode 100644 index 000000000000..d830982fd779 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.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-CN +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-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.el-GR.yaml b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.el-GR.yaml new file mode 100644 index 000000000000..27ffe98e6198 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.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-CN +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-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.en-GB.yaml b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.en-GB.yaml new file mode 100644 index 000000000000..30af8992b17b --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.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-CN +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-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.en-US.yaml b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.en-US.yaml new file mode 100644 index 000000000000..110052d38d78 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.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-CN +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-CN) +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-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.es-MX.yaml b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.es-MX.yaml new file mode 100644 index 000000000000..2f594629c64e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.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-CN +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-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.fr-FR.yaml b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.fr-FR.yaml new file mode 100644 index 000000000000..96dde9e7be68 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.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-CN +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-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.hu-HU.yaml b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.hu-HU.yaml new file mode 100644 index 000000000000..25b2b36efb6e --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.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-CN +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-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.ja-JP.yaml b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.ja-JP.yaml new file mode 100644 index 000000000000..c200b3367353 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.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-CN +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-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.nb-NO.yaml b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.nb-NO.yaml new file mode 100644 index 000000000000..73990f374190 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.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-CN +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-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.ru-RU.yaml b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.ru-RU.yaml new file mode 100644 index 000000000000..dc39226143df --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.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-CN +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-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.ta-IN.yaml b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.ta-IN.yaml new file mode 100644 index 000000000000..db4cbc89c719 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.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-CN +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-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.zh-CN.yaml b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.locale.zh-CN.yaml new file mode 100644 index 000000000000..fb86f3ee27b8 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.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-CN +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-CN/150.0.2/Mozilla.Firefox.zh-CN.yaml b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.yaml new file mode 100644 index 000000000000..73104249fc04 --- /dev/null +++ b/manifests/m/Mozilla/Firefox/zh-CN/150.0.2/Mozilla.Firefox.zh-CN.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-CN +PackageVersion: 150.0.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/m/mikf/gallery-dl/1.32.1/mikf.gallery-dl.installer.yaml b/manifests/m/mikf/gallery-dl/1.32.1/mikf.gallery-dl.installer.yaml index a8af39cba03b..b87d8e2c0862 100644 --- a/manifests/m/mikf/gallery-dl/1.32.1/mikf.gallery-dl.installer.yaml +++ b/manifests/m/mikf/gallery-dl/1.32.1/mikf.gallery-dl.installer.yaml @@ -1,18 +1,31 @@ -# Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: mikf.gallery-dl PackageVersion: 1.32.1 +Platform: +- Windows.Desktop InstallerType: portable -Commands: -- gallery-dl -Dependencies: - PackageDependencies: - - PackageIdentifier: Microsoft.VCRedist.2015+.x86 ReleaseDate: 2026-05-03 Installers: +- Architecture: x64 + InstallerUrl: https://codeberg.org/mikf/gallery-dl/releases/download/v1.32.1/gallery-dl.exe + InstallerSha256: a258d78e154164049398d9d1b971a0c3056bc8f2fa3066d9c365c34241a82da6 + Commands: + - gallery-dl + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + AppsAndFeaturesEntries: + - DisplayName: gallery-dl (x64) - Architecture: x86 InstallerUrl: https://codeberg.org/mikf/gallery-dl/releases/download/v1.32.1/gallery-dl_x86.exe InstallerSha256: 1F7C220C702EBF92228CC9FE0437EFF6C08924BC759440908E9EA76307A51286 + Commands: + - gallery-dl86 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 + AppsAndFeaturesEntries: + - DisplayName: gallery-dl (x86) ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/n/Nanoleaf/NanoleafDesktop/2.3.5/Nanoleaf.NanoleafDesktop.installer.yaml b/manifests/n/Nanoleaf/NanoleafDesktop/2.3.5/Nanoleaf.NanoleafDesktop.installer.yaml deleted file mode 100644 index 32fb81a49078..000000000000 --- a/manifests/n/Nanoleaf/NanoleafDesktop/2.3.5/Nanoleaf.NanoleafDesktop.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# Automatically updated by the winget bot at 2025/Dec/13 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Nanoleaf.NanoleafDesktop -PackageVersion: 2.3.5 -InstallerType: nullsoft -Installers: -- Architecture: x64 - InstallerUrl: https://my.nanoleaf.me/api/v2/desktopApp/latest/win - InstallerSha256: D0854178791767FDC539AFF14FA469DDFC66471C021BC0517A5B67F3AC5F7BDD - Dependencies: - PackageDependencies: - - PackageIdentifier: Microsoft.VCRedist.2015+.x64 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/n/Nanoleaf/NanoleafDesktop/2.3.5/Nanoleaf.NanoleafDesktop.locale.en-US.yaml b/manifests/n/Nanoleaf/NanoleafDesktop/2.3.5/Nanoleaf.NanoleafDesktop.locale.en-US.yaml deleted file mode 100644 index 9e5b71c5676a..000000000000 --- a/manifests/n/Nanoleaf/NanoleafDesktop/2.3.5/Nanoleaf.NanoleafDesktop.locale.en-US.yaml +++ /dev/null @@ -1,22 +0,0 @@ -# Automatically updated by the winget bot at 2025/Dec/13 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Nanoleaf.NanoleafDesktop -PackageVersion: 2.3.5 -PackageLocale: en-US -Publisher: Nanoleaf -PublisherUrl: https://nanoleaf.me/en-US/about-us/ -PublisherSupportUrl: https://nanoleaf.me/en-US/contact-us/customer-support/ -PrivacyUrl: https://nanoleaf.me/en-US/about-us/privacy-policy/ -PackageName: Nanoleaf Desktop -PackageUrl: https://nanoleaf.me/en-US/integration/desktop-app/ -License: Proprietary -Copyright: Copyright © 2024 Nanoleaf -ShortDescription: Service for controlling Nanoleaf products in local network -Description: With the Nanoleaf Desktop App, you can control your 4D, Skylight, Lines, Shapes, Essentials*, Elements, Canvas or Light Panels from your computer (Windows or Mac). Create and download new Scenes, set Schedules and use your other favorite features right from your computer. The Desktop App was designed to simplify the management of larger installations and offer control of many different layouts at once. -Tags: -- nanoleaf -- lighting -- smart-home -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/n/NetEase/LobsterAI/2026.5.7/NetEase.LobsterAI.installer.yaml b/manifests/n/NetEase/LobsterAI/2026.5.7/NetEase.LobsterAI.installer.yaml new file mode 100644 index 000000000000..42adcc1a265f --- /dev/null +++ b/manifests/n/NetEase/LobsterAI/2026.5.7/NetEase.LobsterAI.installer.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: NetEase.LobsterAI +PackageVersion: 2026.5.7 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 63515710-f48a-5414-a457-1d6072fae8c4 +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/netease-youdao/LobsterAI/releases/download/2026.5.7/LobsterAI--win-x64.exe + InstallerSha256: 4F105B48A8C86B4F79C392A26AA1A87C2096C8364C8EE04B30EF9B3E859BE440 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/netease-youdao/LobsterAI/releases/download/2026.5.7/LobsterAI--win-x64.exe + InstallerSha256: 4F105B48A8C86B4F79C392A26AA1A87C2096C8364C8EE04B30EF9B3E859BE440 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetEase/LobsterAI/2026.5.7/NetEase.LobsterAI.locale.en-US.yaml b/manifests/n/NetEase/LobsterAI/2026.5.7/NetEase.LobsterAI.locale.en-US.yaml new file mode 100644 index 000000000000..4d95d71e1bae --- /dev/null +++ b/manifests/n/NetEase/LobsterAI/2026.5.7/NetEase.LobsterAI.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: NetEase.LobsterAI +PackageVersion: 2026.5.7 +PackageLocale: en-US +Author: NetEase Youdao Information Technology (Beijing) Co., Ltd. +PackageUrl: https://lobsterai.youdao.com/#/en/index +ShortDescription: A 24/7 personal assistant Agent that gets things done +Description: |- + LobsterAI is an all-in-one personal assistant Agent developed by NetEase Youdao. It works around the clock to handle your everyday tasks — data analysis, making presentations, generating videos, writing documents, searching the web, sending emails, scheduling tasks, and more. + At its core is Cowork mode — it executes tools, manipulates files, and runs commands in a local or sandboxed environment, all under your supervision. You can also chat with agent via Telegram, Discord, DingTalk or Feishu (Lark) and get work done from your phone anytime, anywhere. + Key Features + - All-in-One Productivity Assistant — Data analysis, PPT creation, video generation, document writing, web search, email — covers the full range of daily work + - Local + Sandbox Execution — Run tasks directly on your machine or in an isolated Alpine Linux sandbox + - Built-in Skills — Office document generation, web search, Playwright automation, Remotion video generation, and more + - Windows Built-in Python Runtime — Windows packages bundle a ready-to-use Python interpreter runtime; Python skill dependencies can be installed on demand + - Scheduled Tasks — Create recurring tasks via conversation or the GUI — daily news digests, inbox cleanup, periodic report generation, and more + - Persistent Memory — Automatically extracts user preferences and personal facts from conversations, remembers your habits across sessions, and gets smarter the more you use it + - Mobile via IM — Control your Agent remotely from your phone through Telegram, Discord, DingTalk, or Feishu + - Permission Gating — All tool invocations require explicit user approval before execution + - Cross-Platform — macOS (Intel + Apple Silicon), Windows, Linux desktop, plus mobile coverage via IM + - Local Data — SQLite storage keeps your chat history and configuration on your device +Tags: +- agent +- agentic +- ai +- chatbot +- claw +- large-language-model +- llm +ReleaseNotesUrl: https://lobsterai.youdao.com/#/en/changelog +Documentations: +- DocumentLabel: User Manual + DocumentUrl: https://lobsterai.youdao.com/#/en/docs/lobsterai_user_manual +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NetEase/LobsterAI/2026.5.7/NetEase.LobsterAI.locale.zh-CN.yaml b/manifests/n/NetEase/LobsterAI/2026.5.7/NetEase.LobsterAI.locale.zh-CN.yaml new file mode 100644 index 000000000000..b9c9255e2f88 --- /dev/null +++ b/manifests/n/NetEase/LobsterAI/2026.5.7/NetEase.LobsterAI.locale.zh-CN.yaml @@ -0,0 +1,68 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: NetEase.LobsterAI +PackageVersion: 2026.5.7 +PackageLocale: zh-CN +Publisher: LobsterAI +PublisherUrl: https://www.youdao.com/ +PublisherSupportUrl: https://github.com/netease-youdao/LobsterAI/issues +Author: 网易有道信息技术(北京)有限公司 +PackageName: LobsterAI +PackageUrl: https://lobsterai.youdao.com/ +License: MIT +LicenseUrl: https://github.com/netease-youdao/LobsterAI/blob/HEAD/LICENSE +Copyright: © 2026 NetEase Youdao +CopyrightUrl: https://c.youdao.com/dict/hardware/lobsterai/lobsterai_service.html +ShortDescription: 一个 7×24 小时帮你干活的全场景个人助理 Agent +Description: |- + LobsterAI 是由网易有道开发的全场景个人助理 Agent。它 7×24 小时待命,能够帮你完成日常办公中的各类事务 —— 数据分析、制作 PPT、生成视频、撰写文档、搜索信息、收发邮件、定时任务,以及更多。 + LobsterAI 的核心是 Cowork 模式,它能在本地或沙箱环境中执行工具、操作文件、运行命令,一切都在你的监督下自主完成。此外,LobsterAI 支持通过钉钉、飞书、Telegram、Discord 等 IM 平台远程触发,让你在手机上也能随时指挥 Agent 工作。 + 核心特性 + - 全场景办公助理 — 数据分析、PPT 制作、视频生成、文档撰写、Web 搜索、邮件收发,覆盖日常办公全流程 + - 本地 + 沙箱执行 — 任务执行支持本地直接运行或隔离的 Alpine Linux 沙箱 + - 内置技能 — 包括 Office 文档生成、Web 搜索、Playwright 自动化、Remotion 视频生成等 + - Windows 内置 Python 运行时 — Windows 安装包内置可直接使用的 Python 解释器运行时;Python 技能依赖可按需安装 + - 定时任务 — 支持对话式发起或 GUI 界面添加定时任务,如每日新闻收集、邮箱整理、周期性报告生成等 + - 持久记忆 — 自动从对话中提取用户偏好与个人信息,跨会话记住你的习惯,越用越懂你 + - IM 远程操控 — 通过钉钉、飞书、Telegram、Discord 在手机端随时触发 Agent + - 权限门控 — 所有敏感工具调用需用户明确批准后执行 + - 跨平台 — macOS(Intel + Apple Silicon)、Windows、Linux 桌面端,配合 IM 实现移动端覆盖 + - 数据本地化 — SQLite 本地存储,聊天记录和配置不离开你的设备 +Tags: +- 人工智能 +- 大语言模型 +- 智能体 +- 聊天机器人 +- 自主智能 +- 龙虾 +ReleaseNotes: |- + What's Changed + - fix(skills): improve Windows skill delete reliability and import feedback by @liuzhq1986 in https://github.com/netease-youdao/LobsterAI/pull/1881 + - feat(skill): upgrade youdaonote skill to 1.0.8 by @liuzhq1986 in https://github.com/netease-youdao/LobsterAI/pull/1882 + - refactor: remove dead engine-branching code by @btc69m979y-dotcom in https://github.com/netease-youdao/LobsterAI/pull/1884 + - feat(log): rotate gateway logs daily with 3-day retention by @fisherdaddy in https://github.com/netease-youdao/LobsterAI/pull/1892 + - fix: 修复由 ChatGPT oauth 引起的 /models 命令结果展示不全的问题 by @fisherdaddy in https://github.com/netease-youdao/LobsterAI/pull/1886 + - feat: POPO 多机器人实例支持 by @btc69m979y-dotcom in https://github.com/netease-youdao/LobsterAI/pull/1883 + - Liuzhq/fix skill import by @liuzhq1986 in https://github.com/netease-youdao/LobsterAI/pull/1888 + - fix: clean up lint warnings and disable no-explicit-any rule by @btc69m979y-dotcom in https://github.com/netease-youdao/LobsterAI/pull/1887 + - fix: add OpenClaw runtime patch for qwen vision catalog fallback by @fisherdaddy in https://github.com/netease-youdao/LobsterAI/pull/1889 + - fix: resolve Windows EPERM when deleting skill directories by @liuzhq1986 in https://github.com/netease-youdao/LobsterAI/pull/1891 + - feat: decouple main agent workspace from working directory by @btc69m979y-dotcom in https://github.com/netease-youdao/LobsterAI/pull/1890 + - fix: patch openclaw-weixin to read dmPolicy/allowFrom from config by @btc69m979y-dotcom in https://github.com/netease-youdao/LobsterAI/pull/1893 + - fix: reorder workspace migration to copy memory/ before MEMORY.md sync by @btc69m979y-dotcom in https://github.com/netease-youdao/LobsterAI/pull/1894 + - fix: 修复 markdown 表格偶尔渲染失败的问题 by @fisherdaddy in https://github.com/netease-youdao/LobsterAI/pull/1895 + - fix: 修复 IM 任务中修改模型不生效的问题 by @fisherdaddy in https://github.com/netease-youdao/LobsterAI/pull/1896 + - fix: 修复模型回复后不停止的问题 by @fisherdaddy in https://github.com/netease-youdao/LobsterAI/pull/1897 + - fix: 优化任务标题的展示逻辑 by @fisherdaddy in https://github.com/netease-youdao/LobsterAI/pull/1898 + - fix: 修复 main Agent 的 md 迁移后工作目录不生效的问题 by @fisherdaddy in https://github.com/netease-youdao/LobsterAI/pull/1899 + - [fix(cowork): harden assistant segment persistence for markdown table by @liuzhq1986 in https://github.com/netease-youdao/LobsterAI/pull/1900 + - fix: 修复 POPO 设置页面标题栏展示和 i18n 问题 by @btc69m979y-dotcom in https://github.com/netease-youdao/LobsterAI/pull/1901 + - Release/2026.05.01 by @liuzhq1986 in https://github.com/netease-youdao/LobsterAI/pull/1902 + Full Changelog: https://github.com/netease-youdao/LobsterAI/compare/2026.4.29...2026.5.7 +ReleaseNotesUrl: https://github.com/netease-youdao/LobsterAI/releases/tag/2026.5.7 +Documentations: +- DocumentLabel: 用户手册 + DocumentUrl: https://lobsterai.youdao.com/#/docs/lobsterai_user_manual +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.yaml b/manifests/n/NetEase/LobsterAI/2026.5.7/NetEase.LobsterAI.yaml similarity index 71% rename from manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.yaml rename to manifests/n/NetEase/LobsterAI/2026.5.7/NetEase.LobsterAI.yaml index 1a0794518e49..f2f8ef13fe5e 100644 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.yaml +++ b/manifests/n/NetEase/LobsterAI/2026.5.7/NetEase.LobsterAI.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.26042311 +PackageIdentifier: NetEase.LobsterAI +PackageVersion: 2026.5.7 DefaultLocale: zh-CN 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/n/NoMachine/NoMachine/9.5.7/NoMachine.NoMachine.installer.yaml b/manifests/n/NoMachine/NoMachine/9.5.7/NoMachine.NoMachine.installer.yaml new file mode 100644 index 000000000000..413bec1b168d --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/9.5.7/NoMachine.NoMachine.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine +PackageVersion: 9.5.7 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- nxr +- nxs +- nxv +- nxw +ProductCode: NoMachine_is1 +ReleaseDate: 2026-05-07 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + InstallerUrl: https://web9001.nomachine.com/download/9.5/Windows/nomachine_9.5.7_1_x86.exe + InstallerSha256: 585F5FBE9EB3A6B6BF5EC35962FA5EA0815010DCA78C87F5AC582D8ED61C0BDC +- Architecture: x64 + InstallerUrl: https://web9001.nomachine.com/download/9.5/Windows/nomachine_9.5.7_1_x64.exe + InstallerSha256: 72A5C43634771B4E658DDCD0651844A5AD966CC1AB6A53BCF3098E104D6D5E60 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/9.5.7/NoMachine.NoMachine.locale.en-US.yaml b/manifests/n/NoMachine/NoMachine/9.5.7/NoMachine.NoMachine.locale.en-US.yaml new file mode 100644 index 000000000000..454227922c7a --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/9.5.7/NoMachine.NoMachine.locale.en-US.yaml @@ -0,0 +1,43 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine +PackageVersion: 9.5.7 +PackageLocale: en-US +Publisher: NoMachine S.a.r.l. +PublisherUrl: https://www.nomachine.com/ +PublisherSupportUrl: https://www.nomachine.com/support +PrivacyUrl: https://kb.nomachine.com/AR05P00977 +Author: NoMachine S.à r.l. +PackageName: NoMachine +PackageUrl: https://downloads.nomachine.com/ +License: Freeware +LicenseUrl: https://www.nomachine.com/licensing +Copyright: Copyright 2002, 2026 © NoMachine +CopyrightUrl: https://www.nomachine.com/licensing +ShortDescription: Free remote desktop for everybody. This version contains both the server and the client side parts of the application. +Description: |- + Connect to any computer remotely at the speed of light. Thanks to our NX technology, NoMachine is the fastest and highest quality remote desktop you have ever tried. Reach your computer on the other side of the world in just a few clicks. Wherever your desktop is, you can access it from any other device and share it with who you want. NoMachine is your own personal server, private and secure. What’s more, it’s free. + NoMachine lets you access all your files, display all your videos, play all your audio, print and edit your documents, and move them around from wherever you are. All securely and under your control. Use it to share your desktop on-the-fly, record your screen content and much more. +Moniker: nomachine +Tags: +- remote +- remote-access +- remote-control +- remote-desktop +ReleaseNotes: |- + NoMachine makes available version 9.5.7, providing fixes for issues found in previous releases and a possible privilege escalation on Windows. It also sports updates to some third parties libraries and enhancements to support for CA certificates: + OpenSSL libraries shipped by NoMachine client and server packages have been updated to v3.0.20. The full list of CVE patched by the new OpenSSL v3.0.20 is available on their Official web site at: https://github.com/openssl/openssl/releases/tag/openssl-3.0.20. + The nxhtd component included in commercial server packages is based on httpd 2.4.67, changes in the new version of Apache are listed here: https://downloads.apache.org/httpd/CHANGES_2.4.67. + Additionally, trusted CA certificates for PKI authentication are now supported also for connections via Web and between cluster servers peers. See https://kb.nomachine.com/AR06W01292 for instructions. + Trouble Reports solved +ReleaseNotesUrl: https://kb.nomachine.com/SU05X00274 +Documentations: +- DocumentLabel: Documents + DocumentUrl: https://www.nomachine.com/documents +- DocumentLabel: FAQ + DocumentUrl: https://www.nomachine.com/faq +- DocumentLabel: Knowledge Base + DocumentUrl: https://kb.nomachine.com/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/9.5.7/NoMachine.NoMachine.locale.zh-CN.yaml b/manifests/n/NoMachine/NoMachine/9.5.7/NoMachine.NoMachine.locale.zh-CN.yaml new file mode 100644 index 000000000000..88fdc0559bc4 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/9.5.7/NoMachine.NoMachine.locale.zh-CN.yaml @@ -0,0 +1,26 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine +PackageVersion: 9.5.7 +PackageLocale: zh-CN +License: 免费软件 +ShortDescription: 人人可用的免费远程桌面。此版本包含应用程序的服务器端和客户端两部分。 +Description: |- + 以光速远程连接任意计算机。得益于我们的 NX 技术,NoMachine 是您体验过的最快速、最高质量的远程桌面解决方案。仅需轻点几下,即可触达世界另一端的计算机。无论您的桌面位于何处,都能从任何设备访问并与指定人员共享。NoMachine 是您专属的私人服务器,既安全又私密。更重要的是,它完全免费。 + 通过 NoMachine,您可以安全地访问所有文件、播放各类视频与音频、打印编辑文档,并能随时随地进行文件传输。所有操作均在您的掌控之下安全进行。它支持即时桌面共享、屏幕内容录制等丰富功能。 +Tags: +- 远程 +- 远程控制 +- 远程桌面 +- 远程访问 +- 远程连接 +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://www.nomachine.com/faq +- DocumentLabel: 文档 + DocumentUrl: https://www.nomachine.com/documents +- DocumentLabel: 知识库 + DocumentUrl: https://kb.nomachine.com/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/9.5.7/NoMachine.NoMachine.yaml b/manifests/n/NoMachine/NoMachine/9.5.7/NoMachine.NoMachine.yaml new file mode 100644 index 000000000000..f0111985abc0 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/9.5.7/NoMachine.NoMachine.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine +PackageVersion: 9.5.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.5.7/NoMachine.NoMachine.EnterpriseClient.installer.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.5.7/NoMachine.NoMachine.EnterpriseClient.installer.yaml new file mode 100644 index 000000000000..fbaa63aa7fd4 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.5.7/NoMachine.NoMachine.EnterpriseClient.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseClient +PackageVersion: 9.5.7 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- nxr +- nxs +- nxv +- nxw +ProductCode: NoMachine_is1 +ReleaseDate: 2026-05-07 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + InstallerUrl: https://web9001.nomachine.com/download/9.5/Windows/nomachine-enterprise-client_9.5.7_1_x86.exe + InstallerSha256: 3D4BEEF32D158A68299ACEB112EFAEF7ED08701A5B4E97FB96AFC547F4C7244F +- Architecture: x64 + InstallerUrl: https://web9001.nomachine.com/download/9.5/Windows/nomachine-enterprise-client_9.5.7_1_x64.exe + InstallerSha256: C26885BED2C4286436A53BF7AAA026098ECAB89E9B7863BB80D1AD0A93EB81AA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.5.7/NoMachine.NoMachine.EnterpriseClient.locale.en-US.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.5.7/NoMachine.NoMachine.EnterpriseClient.locale.en-US.yaml new file mode 100644 index 000000000000..94e90d75c53d --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.5.7/NoMachine.NoMachine.EnterpriseClient.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseClient +PackageVersion: 9.5.7 +PackageLocale: en-US +Publisher: NoMachine S.a.r.l. +PublisherUrl: https://www.nomachine.com/ +PublisherSupportUrl: https://www.nomachine.com/support +PrivacyUrl: https://kb.nomachine.com/AR05P00977 +Author: NoMachine S.à r.l. +PackageName: NoMachine Enterprise Client +PackageUrl: https://downloads.nomachine.com/ +License: Proprietary +LicenseUrl: https://www.nomachine.com/licensing +Copyright: Copyright 2002, 2026 © NoMachine +CopyrightUrl: https://www.nomachine.com/licensing +ShortDescription: Get access to all your remote PCs and desktop computers where you have provided a NoMachine server product. Do that with a minimal install, including only the client-side components of the NoMachine software suite. +Description: Enterprise Client enables fast and secure access to your remote PC or desktop computer where you have installed one of the NoMachine server products. It provides a powerful connection interface, named the NoMachine Player, packed with all the features you need to work with your remote desktop. This package is available for those who prefer just a standalone "client-side" application, either because regulatory requirements dictate that connecting clients must stay as thin clients, or simply because a scaled-down client app is your personal preference. It's free to download and can be used to connect remotely from any Windows, Linux, Mac, ARM or Raspberry device to a computer where you have installed a NoMachine Enterprise product or the NoMachine Free Edition. +Tags: +- remote +- remote-access +- remote-control +- remote-desktop +ReleaseNotes: |- + NoMachine makes available version 9.5.7, providing fixes for issues found in previous releases and a possible privilege escalation on Windows. It also sports updates to some third parties libraries and enhancements to support for CA certificates: + OpenSSL libraries shipped by NoMachine client and server packages have been updated to v3.0.20. The full list of CVE patched by the new OpenSSL v3.0.20 is available on their Official web site at: https://github.com/openssl/openssl/releases/tag/openssl-3.0.20. + The nxhtd component included in commercial server packages is based on httpd 2.4.67, changes in the new version of Apache are listed here: https://downloads.apache.org/httpd/CHANGES_2.4.67. + Additionally, trusted CA certificates for PKI authentication are now supported also for connections via Web and between cluster servers peers. See https://kb.nomachine.com/AR06W01292 for instructions. + Trouble Reports solved +ReleaseNotesUrl: https://kb.nomachine.com/SU05X00274 +PurchaseUrl: https://store.nomachine.com +Documentations: +- DocumentLabel: Documents + DocumentUrl: https://www.nomachine.com/documents +- DocumentLabel: Knowledge Base + DocumentUrl: https://kb.nomachine.com/ +- DocumentLabel: FAQ + DocumentUrl: https://www.nomachine.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.5.7/NoMachine.NoMachine.EnterpriseClient.locale.zh-CN.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.5.7/NoMachine.NoMachine.EnterpriseClient.locale.zh-CN.yaml new file mode 100644 index 000000000000..725a8878d567 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.5.7/NoMachine.NoMachine.EnterpriseClient.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseClient +PackageVersion: 9.5.7 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 访问您已安装 NoMachine 服务器产品的所有远程 PC 和桌面计算机。仅需最小化安装,包含 NoMachine 软件套件中的客户端组件即可实现。 +Description: 企业版客户端助您快速安全地访问已安装 NoMachine 服务器产品的远程 PC 或桌面计算机。它提供名为 NoMachine Player 的强大连接界面,集成了远程桌面工作所需的全部功能。该软件包专为以下用户设计:因合规要求连接客户端必须保持瘦客户端形态,或单纯偏好精简版客户端应用。本程序免费下载,支持从 Windows、Linux、Mac、ARM 或树莓派等设备远程连接至已安装 NoMachine 企业版产品或免费版的计算机。 +Tags: +- 远程 +- 远程控制 +- 远程桌面 +- 远程访问 +- 远程连接 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://www.nomachine.com/documents +- DocumentLabel: 知识库 + DocumentUrl: https://kb.nomachine.com/ +- DocumentLabel: 常见问题 + DocumentUrl: https://www.nomachine.com/faq +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.5.7/NoMachine.NoMachine.EnterpriseClient.yaml similarity index 72% rename from manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.yaml rename to manifests/n/NoMachine/NoMachine/EnterpriseClient/9.5.7/NoMachine.NoMachine.EnterpriseClient.yaml index 17f44c5f7c93..218411cf003d 100644 --- a/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.yaml +++ b/manifests/n/NoMachine/NoMachine/EnterpriseClient/9.5.7/NoMachine.NoMachine.EnterpriseClient.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: NoMachine.NoMachine.EnterpriseClient +PackageVersion: 9.5.7 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.installer.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.installer.yaml new file mode 100644 index 000000000000..19058951f2b4 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseCloudServer +PackageVersion: 9.5.7 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- nxr +- nxs +- nxv +- nxw +ProductCode: NoMachine_is1 +ReleaseDate: 2026-05-07 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + InstallerUrl: https://web9001.nomachine.com/packages/9.5-PRODUCTION/Windows/nomachine-enterprise-cloud-server_9.5.7_1_x86.exe + InstallerSha256: 45250DE5895CD52470BAB381FD30E96F6B7637929743366E51B714635F6B75E7 +- Architecture: x64 + InstallerUrl: https://web9001.nomachine.com/packages/9.5-PRODUCTION/Windows/nomachine-enterprise-cloud-server_9.5.7_1_x64.exe + InstallerSha256: 390BDD0A90A475A9BB99ADE581A6B22A595CB9AA0903733BEB403437ABE6CE08 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.locale.en-US.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.locale.en-US.yaml new file mode 100644 index 000000000000..4ee1c1135d5c --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseCloudServer +PackageVersion: 9.5.7 +PackageLocale: en-US +Publisher: NoMachine S.a.r.l. +PublisherUrl: https://www.nomachine.com/ +PublisherSupportUrl: https://www.nomachine.com/support +PrivacyUrl: https://kb.nomachine.com/AR05P00977 +Author: NoMachine S.à r.l. +PackageName: NoMachine Enterprise Cloud Server +PackageUrl: https://downloads.nomachine.com/ +License: Proprietary +LicenseUrl: https://www.nomachine.com/licensing +Copyright: Copyright 2002, 2026 © NoMachine +CopyrightUrl: https://www.nomachine.com/licensing +ShortDescription: A remote access gateway which securely tunnels connections to NoMachine Windows, macOS or Linux nodes as well as foreign Unix hosts residing on the corporate network. +Description: NoMachine Enterprise Cloud Server provides centralized remote access for unlimited users permitting work-from-home employees or off-site students to reach their desktop, on any OS, regardless of where they are or what device they’re using. By adding NoMachine Enterprise Desktops, Workstations, Terminal Servers, Enterprise Terminal Servers, even another Cloud Server, to Enterprise Cloud Server, organizations can unify access to any corporate computer and hosted resource. It conveniently converges any number of NoMachine nodes and also foreign X servers such as HP-UX, Solaris and AIX hosts. +Tags: +- remote +- remote-access +- remote-control +- remote-desktop +ReleaseNotes: |- + NoMachine makes available version 9.5.7, providing fixes for issues found in previous releases and a possible privilege escalation on Windows. It also sports updates to some third parties libraries and enhancements to support for CA certificates: + OpenSSL libraries shipped by NoMachine client and server packages have been updated to v3.0.20. The full list of CVE patched by the new OpenSSL v3.0.20 is available on their Official web site at: https://github.com/openssl/openssl/releases/tag/openssl-3.0.20. + The nxhtd component included in commercial server packages is based on httpd 2.4.67, changes in the new version of Apache are listed here: https://downloads.apache.org/httpd/CHANGES_2.4.67. + Additionally, trusted CA certificates for PKI authentication are now supported also for connections via Web and between cluster servers peers. See https://kb.nomachine.com/AR06W01292 for instructions. + Trouble Reports solved +ReleaseNotesUrl: https://kb.nomachine.com/SU05X00274 +PurchaseUrl: https://store.nomachine.com +Documentations: +- DocumentLabel: Documents + DocumentUrl: https://www.nomachine.com/documents +- DocumentLabel: Knowledge Base + DocumentUrl: https://kb.nomachine.com/ +- DocumentLabel: FAQ + DocumentUrl: https://www.nomachine.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.locale.zh-CN.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.locale.zh-CN.yaml new file mode 100644 index 000000000000..212f82dba2ac --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseCloudServer +PackageVersion: 9.5.7 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 一款远程接入网关,可安全建立通往 NoMachine Windows、macOS 或 Linux 节点以及企业网络内外部 Unix 主机的加密隧道。该方案完美实现大规模用户群体的统一接入,支持无限用户通过任意设备(包括网页浏览器)进行连接。 +Description: NoMachine 企业级云服务器为无限用户提供集中式远程访问,使居家办公人员或校外师生能够跨操作系统、跨地域、跨设备接入专属桌面。通过将 NoMachine 企业级桌面、工作站、终端服务器、企业级终端服务器乃至其他云服务器整合至企业级云服务器平台,机构可实现对所有企业计算机及托管资源的统一访问。该系统不仅能无缝汇聚任意数量的 NoMachine 节点,还可兼容 HP-UX、Solaris 和 AIX 等第三方 X 服务器主机。 +Tags: +- 远程 +- 远程控制 +- 远程桌面 +- 远程访问 +- 远程连接 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://www.nomachine.com/documents +- DocumentLabel: 知识库 + DocumentUrl: https://kb.nomachine.com/ +- DocumentLabel: 常见问题 + DocumentUrl: https://www.nomachine.com/faq +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.yaml new file mode 100644 index 000000000000..744094c78e1f --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServer/9.5.7/NoMachine.NoMachine.EnterpriseCloudServer.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseCloudServer +PackageVersion: 9.5.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseCloudServerCluster/9.5.7/NoMachine.NoMachine.EnterpriseCloudServerCluster.installer.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServerCluster/9.5.7/NoMachine.NoMachine.EnterpriseCloudServerCluster.installer.yaml new file mode 100644 index 000000000000..bba7f7aec4de --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServerCluster/9.5.7/NoMachine.NoMachine.EnterpriseCloudServerCluster.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseCloudServerCluster +PackageVersion: 9.5.7 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +FileExtensions: +- nxr +- nxs +- nxv +- nxw +ProductCode: NoMachine_is1 +ReleaseDate: 2026-05-07 +ElevationRequirement: elevatesSelf +Installers: +- Architecture: x86 + InstallerUrl: https://web9001.nomachine.com/packages/9.5-PRODUCTION/Windows/nomachine-enterprise-cloud-server-cluster_9.5.7_1_x86.exe + InstallerSha256: 937C6256AD093FDB3799ACD016E56CE8BD20D605F07DBC53C64562CD98A4BDE5 +- Architecture: x64 + InstallerUrl: https://web9001.nomachine.com/packages/9.5-PRODUCTION/Windows/nomachine-enterprise-cloud-server-cluster_9.5.7_1_x64.exe + InstallerSha256: B79D1733B2A23C2A9671009D0D5212D0C45E7B203CABC6CD81684B9EFE3A8072 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseCloudServerCluster/9.5.7/NoMachine.NoMachine.EnterpriseCloudServerCluster.locale.en-US.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServerCluster/9.5.7/NoMachine.NoMachine.EnterpriseCloudServerCluster.locale.en-US.yaml new file mode 100644 index 000000000000..e225afbb2154 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServerCluster/9.5.7/NoMachine.NoMachine.EnterpriseCloudServerCluster.locale.en-US.yaml @@ -0,0 +1,41 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseCloudServerCluster +PackageVersion: 9.5.7 +PackageLocale: en-US +Publisher: NoMachine S.a.r.l. +PublisherUrl: https://www.nomachine.com/ +PublisherSupportUrl: https://www.nomachine.com/support +PrivacyUrl: https://kb.nomachine.com/AR05P00977 +Author: NoMachine S.à r.l. +PackageName: NoMachine Enterprise Cloud Server Cluster +PackageUrl: https://downloads.nomachine.com/ +License: Proprietary +LicenseUrl: https://www.nomachine.com/licensing +Copyright: Copyright 2002, 2026 © NoMachine +CopyrightUrl: https://www.nomachine.com/licensing +ShortDescription: A powerful, resilient gateway to your entire desktop and server infrastructure with integrated high-availability and load-balancing capabilities providing automatic failover in the case of a server outage. +Description: Enterprise Cloud Server Cluster sits at the top of the NoMachine server stack, enabling organizations to converge unlimited user access to hosted desktops and server-based resources, as well as mitigate system or site failures through its built-in fail-over protection. By pairing two Enterprise Cluster Cloud Servers administrators can create an efficient and highly-available cluster to ensure continuity of service to users’ desktops and applications should there be an outage of one of the servers. If one Enterprise Cluster Cloud Server fails, user logins continue to be processed by the other server in the cluster. Tailored for organizations with large-scale deployments, it provides a secure, central gateway to remote desktops and computers hosted inside the corporate network. These resources can be any of the servers from the NoMachine for Enterprise range and also “foreign” X servers, permitting administrators to build a flexibile & highly available multi-tier infrastructure. +Tags: +- remote +- remote-access +- remote-control +- remote-desktop +ReleaseNotes: |- + NoMachine makes available version 9.5.7, providing fixes for issues found in previous releases and a possible privilege escalation on Windows. It also sports updates to some third parties libraries and enhancements to support for CA certificates: + OpenSSL libraries shipped by NoMachine client and server packages have been updated to v3.0.20. The full list of CVE patched by the new OpenSSL v3.0.20 is available on their Official web site at: https://github.com/openssl/openssl/releases/tag/openssl-3.0.20. + The nxhtd component included in commercial server packages is based on httpd 2.4.67, changes in the new version of Apache are listed here: https://downloads.apache.org/httpd/CHANGES_2.4.67. + Additionally, trusted CA certificates for PKI authentication are now supported also for connections via Web and between cluster servers peers. See https://kb.nomachine.com/AR06W01292 for instructions. + Trouble Reports solved +ReleaseNotesUrl: https://kb.nomachine.com/SU05X00274 +PurchaseUrl: https://store.nomachine.com +Documentations: +- DocumentLabel: Documents + DocumentUrl: https://www.nomachine.com/documents +- DocumentLabel: Knowledge Base + DocumentUrl: https://kb.nomachine.com/ +- DocumentLabel: FAQ + DocumentUrl: https://www.nomachine.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseCloudServerCluster/9.5.7/NoMachine.NoMachine.EnterpriseCloudServerCluster.locale.zh-CN.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServerCluster/9.5.7/NoMachine.NoMachine.EnterpriseCloudServerCluster.locale.zh-CN.yaml new file mode 100644 index 000000000000..d3b8bc3240b8 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServerCluster/9.5.7/NoMachine.NoMachine.EnterpriseCloudServerCluster.locale.zh-CN.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseCloudServerCluster +PackageVersion: 9.5.7 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: 一个强大、稳健的网关,为您的整个桌面和服务器基础设施提供集成的高可用性和负载均衡能力,在服务器故障时实现自动切换。无限用户可通过任意设备或网页浏览器安全无缝接入。 +Description: Enterprise Cloud Server Cluster 作为 NoMachine 服务器架构的核心组件,助力企业实现:集中管理无限用户对托管桌面及服务器资源的访问,并通过内置故障转移保护机制有效规避系统或站点级故障。通过部署双 Enterprise Cluster Cloud Servers,管理员可构建高效高可用的集群架构——当任一服务器发生中断时,仍能确保持续为用户提供桌面与应用服务。若集群中某节点失效,用户登录请求将自动由另一节点接管。 +Tags: +- 远程 +- 远程控制 +- 远程桌面 +- 远程访问 +- 远程连接 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://www.nomachine.com/documents +- DocumentLabel: 知识库 + DocumentUrl: https://kb.nomachine.com/ +- DocumentLabel: 常见问题 + DocumentUrl: https://www.nomachine.com/faq +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/n/NoMachine/NoMachine/EnterpriseCloudServerCluster/9.5.7/NoMachine.NoMachine.EnterpriseCloudServerCluster.yaml b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServerCluster/9.5.7/NoMachine.NoMachine.EnterpriseCloudServerCluster.yaml new file mode 100644 index 000000000000..ad83f40bbe29 --- /dev/null +++ b/manifests/n/NoMachine/NoMachine/EnterpriseCloudServerCluster/9.5.7/NoMachine.NoMachine.EnterpriseCloudServerCluster.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: NoMachine.NoMachine.EnterpriseCloudServerCluster +PackageVersion: 9.5.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/o/ONFStudios/OreNoFusen/3.2.2/ONFStudios.OreNoFusen.installer.yaml b/manifests/o/ONFStudios/OreNoFusen/3.2.2/ONFStudios.OreNoFusen.installer.yaml new file mode 100644 index 000000000000..070fb8cd41d0 --- /dev/null +++ b/manifests/o/ONFStudios/OreNoFusen/3.2.2/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.2.2 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +ReleaseDate: 2026-05-05 +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\ore-no-fusen' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/ore-no-fusen/ore-no-fusen/releases/download/v3.2.2/ore-no-fusen_3.2.2_x64-setup.exe + InstallerSha256: 42647CBE27E132D6AB142D7DBFF541EED79C2575CE671E9CA6A9889B8B8AE7E4 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/ONFStudios/OreNoFusen/3.2.2/ONFStudios.OreNoFusen.locale.en-US.yaml b/manifests/o/ONFStudios/OreNoFusen/3.2.2/ONFStudios.OreNoFusen.locale.en-US.yaml new file mode 100644 index 000000000000..cbb2c06f0074 --- /dev/null +++ b/manifests/o/ONFStudios/OreNoFusen/3.2.2/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.2.2 +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.2.2 +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.2.2/ONFStudios.OreNoFusen.yaml b/manifests/o/ONFStudios/OreNoFusen/3.2.2/ONFStudios.OreNoFusen.yaml new file mode 100644 index 000000000000..87a00197c006 --- /dev/null +++ b/manifests/o/ONFStudios/OreNoFusen/3.2.2/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.2.2 +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/Open-Component-Model/ocm-cli/0.41.0/Open-Component-Model.ocm-cli.installer.yaml b/manifests/o/Open-Component-Model/ocm-cli/0.41.0/Open-Component-Model.ocm-cli.installer.yaml new file mode 100644 index 000000000000..6a322da0c20f --- /dev/null +++ b/manifests/o/Open-Component-Model/ocm-cli/0.41.0/Open-Component-Model.ocm-cli.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: Open-Component-Model.ocm-cli +PackageVersion: 0.41.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: ocm.exe +ReleaseDate: 2026-05-05 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/open-component-model/ocm/releases/download/v0.41.0/ocm-0.41.0-windows-amd64.zip + InstallerSha256: 6BD01D267FFD4C497E39D9DCD785E82D833DA0FAC090DF03A7DD0731B71DB814 +- Architecture: arm64 + InstallerUrl: https://github.com/open-component-model/ocm/releases/download/v0.41.0/ocm-0.41.0-windows-arm64.zip + InstallerSha256: 566AA7461A994AA726F6917775E58406644F135E2EA238282BC8B4676A3D1FB4 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/Open-Component-Model/ocm-cli/0.41.0/Open-Component-Model.ocm-cli.locale.en-US.yaml b/manifests/o/Open-Component-Model/ocm-cli/0.41.0/Open-Component-Model.ocm-cli.locale.en-US.yaml new file mode 100644 index 000000000000..17efc6214bfa --- /dev/null +++ b/manifests/o/Open-Component-Model/ocm-cli/0.41.0/Open-Component-Model.ocm-cli.locale.en-US.yaml @@ -0,0 +1,42 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Open-Component-Model.ocm-cli +PackageVersion: 0.41.0 +PackageLocale: en-US +Publisher: SAP SE +PublisherUrl: https://github.com/open-component-model +PublisherSupportUrl: https://github.com/open-component-model/ocm/issues +PackageName: ocm-cli +PackageUrl: https://github.com/open-component-model/ocm +License: Apache-2.0 +LicenseUrl: https://github.com/open-component-model/ocm/blob/HEAD/LICENSE +ShortDescription: Open Component Model Command Line Interface (ocm-cli) +Tags: +- ocm +- open-component-model +ReleaseNotes: |- + What's Changed + 🚀 Features + - feat: add configurable HTTP client timeouts via config file by @piotrjanik in #1887 + - feat: add UpperCamelCase aliases for remaining access and input types by @morri-son in #1920 + 🐛 Bug Fixes + - fix: use oci.ParseRef for ociArtifact input validation by @fabianburth in #1927 + ⬆️ Dependencies + 9 changes + - chore(deps): bump go.opentelemetry.io/otel/sdk from 1.41.0 to 1.43.0 by @dependabot[bot] in #1902 + - chore(deps): bump go to 1.26.2 by @frewilhelm in #1905 + - chore(deps): bump helm.sh/helm/v4 from 4.1.3 to 4.1.4 by @dependabot[bot] in #1908 + - chore(deps): bump the go group with 9 updates by @dependabot[bot] in #1909 + - chore(deps): bump github.com/fluxcd/cli-utils from 0.37.2-flux.1 to 1.0.0 by @dependabot[bot] in #1910 + - chore: upgrade containerd to v2 by @frewilhelm in #1912 + - chore(deps): bump github.com/sigstore/timestamp-authority/v2 from 2.0.5 to 2.0.6 by @dependabot[bot] in #1913 + - chore(deps): bump the go group with 16 updates by @dependabot[bot] in #1922 + - chore: [releases/0.41] cherry-pick: bump github.com/jackc/pgx/v5 from 5.9.0 to 5.9.2 by @Skarlso in #1940 + 🧰 Maintenance + - chore: bump VERSION to 0.41.0-dev by @ocmbot[bot] in #1900 + - chore: fix the transport leak in getResolver by @Skarlso in #1918 + Full Changelog: v0.40...v0.41.0 +ReleaseNotesUrl: https://github.com/open-component-model/ocm/releases/tag/v0.41.0 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/Open-Component-Model/ocm-cli/0.41.0/Open-Component-Model.ocm-cli.yaml b/manifests/o/Open-Component-Model/ocm-cli/0.41.0/Open-Component-Model.ocm-cli.yaml new file mode 100644 index 000000000000..f58c3876e812 --- /dev/null +++ b/manifests/o/Open-Component-Model/ocm-cli/0.41.0/Open-Component-Model.ocm-cli.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: Open-Component-Model.ocm-cli +PackageVersion: 0.41.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenAI/Codex/0.129.0/OpenAI.Codex.installer.yaml b/manifests/o/OpenAI/Codex/0.129.0/OpenAI.Codex.installer.yaml new file mode 100644 index 000000000000..1854d2e46ac3 --- /dev/null +++ b/manifests/o/OpenAI/Codex/0.129.0/OpenAI.Codex.installer.yaml @@ -0,0 +1,37 @@ +# 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: OpenAI.Codex +PackageVersion: 0.129.0 +InstallerType: zip +NestedInstallerType: portable +Commands: +- codex +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + NestedInstallerFiles: + - RelativeFilePath: codex-command-runner.exe + - RelativeFilePath: codex-windows-sandbox-setup.exe + - RelativeFilePath: codex-x86_64-pc-windows-msvc.exe + PortableCommandAlias: codex + InstallerUrl: https://github.com/openai/codex/releases/download/rust-v0.129.0/codex-x86_64-pc-windows-msvc.exe.zip + InstallerSha256: 9C097AC0F7D7B158F5774E5CC6528AFBBFDC557B7C6B97E3F4EA7941D7471DD7 + Dependencies: + PackageDependencies: + - PackageIdentifier: BurntSushi.ripgrep.MSVC + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 +- Architecture: arm64 + NestedInstallerFiles: + - RelativeFilePath: codex-aarch64-pc-windows-msvc.exe + PortableCommandAlias: codex + - RelativeFilePath: codex-command-runner.exe + - RelativeFilePath: codex-windows-sandbox-setup.exe + InstallerUrl: https://github.com/openai/codex/releases/download/rust-v0.129.0/codex-aarch64-pc-windows-msvc.exe.zip + InstallerSha256: B08A8EDF2F712230175D83BF1C6F249CE2680C40D57FE0161A77800B4EAA5FA3 + Dependencies: + PackageDependencies: + - PackageIdentifier: BurntSushi.ripgrep.MSVC + - PackageIdentifier: Microsoft.VCRedist.2015+.arm64 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenAI/Codex/0.129.0/OpenAI.Codex.locale.en-US.yaml b/manifests/o/OpenAI/Codex/0.129.0/OpenAI.Codex.locale.en-US.yaml new file mode 100644 index 000000000000..6e7000dab987 --- /dev/null +++ b/manifests/o/OpenAI/Codex/0.129.0/OpenAI.Codex.locale.en-US.yaml @@ -0,0 +1,155 @@ +# 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: OpenAI.Codex +PackageVersion: 0.129.0 +PackageLocale: en-US +Publisher: OpenAI, Inc. +PublisherUrl: https://github.com/openai +PublisherSupportUrl: https://github.com/openai/codex/issues +Author: OpenAI, Inc. +PackageName: Codex CLI +PackageUrl: https://github.com/openai/codex +License: Apache-2.0 +LicenseUrl: https://github.com/openai/codex/blob/HEAD/LICENSE +Copyright: Copyright 2025 OpenAI +CopyrightUrl: https://github.com/openai/codex/blob/HEAD/NOTICE +ShortDescription: Codex CLI is an open‑source local coding agent that runs in your terminal, letting you write, edit, and understand code without leaving the command line. +Moniker: codex +Tags: +- agent +- ai +- cli +- llm +- openai +ReleaseNotes: |- + New Features + - The TUI now supports modal Vim editing in the composer, including /vim, default-mode config, and Vim-specific keymap contexts. (#18595) + - TUI workflows are easier to resume and copy from with a redesigned resume/fork picker, raw scrollback mode, /ide context injection, and workspace-aware /diff. (#20065, #20819, #20294, #21001) + - The status line can show theme-aware colors plus optional PR and branch-change summaries, and /keymap debug helps inspect terminal key events. (#19631, #20892, #20794) + - Plugin management now supports workspace sharing, share access controls, source filtering, local share path tracking, marketplace removal/upgrades, remote bundle sync, and admin-disabled status handling. (#20278, #21124, #21419, #20560, #19843, #20478, #20268, #20298) + - Hooks can be browsed and toggled from /hooks, can run before/after compaction, and can add PreToolUse context; Codex Apps auth and eligible MCP elicitations now surface through TUI/Guardian flows. (#19882, #19905, #20692, #19193, #19431) + - Experimental goals are now discoverable, stay paused across resume unless the user opts back in, and show clearer validation and multi-day duration output. (#20083, #20790, #20746, #20558) + Bug Fixes + - /copy works better in tmux, Alt+Enter and modified Delete/Backspace keys behave correctly, and Windows typing/paste latency was reduced. (#20207, #20535, #21058, #18914) + - Large paste placeholders and Ctrl+C-stashed drafts now survive clear/editor workflows without corrupting draft history. (#21091, #21190, #21351, #21397) + - TUI startup and accessibility were tightened by bounding terminal probes, clearing the first inline viewport render, and honoring animations = false for live rows. (#20654, #21450, #20564) + - Linux sandbox startup is more reliable across older bwrap, slow mount probes, symlink-protected paths, and shared /tmp setups. (#20628, #20111, #21127, #21234) + - Windows sandbox and exec policy now handle named pipes, ConPTY teardown, PowerShell-wrapped allow rules, worktree safe.directory, and unsafe Git options more reliably. (#20270, #20685, #20336, #21409, #21275) + - Fixed custom CA login behind TLS-inspecting proxies, Bedrock runtime endpoint reporting, dangerous project config keys, heredoc redirect approval matching, and unbounded MCP/hook output growth. (#20676, #20275, #20098, #20113, #20260, #21069) + Documentation + - Updated the embedded OpenAI Docs sample skill so API-key setup guidance stays aligned with other docs variants. (#21263) + - Documented how generated git commit attribution is gated by codex_git_commit and configured in config.toml. (#21379) + - Removed local-only planning/spec docs and redirected config docs toward the maintained external documentation surface. (#20896) + Chores + - Linux releases now build, publish, bundle, and verify a standalone bwrap fallback for npm and DotSlash installs. (#21255, #21256, #21257, #21312, #21285) + - Vendored Bubblewrap was updated to 0.11.2, including upstream security changes around setuid support. (#21389) + - Windows Bazel CI now uses faster cross-compilation for tests, clippy, and release-build checks, and Bazel now runs sharded Rust integration tests. (#20585, #20701, #21057) + - App-server and protocol internals were split and slimmed down, including transport extraction, protocol module decomposition, thread/message history moves, and tool-handler cleanup. (#20324, #20325, #20348, #20545, #21251, #21278, #21395) + - Analytics and diagnostics coverage expanded for tool lifecycles, goals, plugin skills, thread sources, service tiers, and PR issue labeling. (#17089, #17090, #20799, #20923, #20949, #20969, #20893) + Changelog + Full Changelog: rust-v0.128.0...rust-v0.129.0 + - #20278 feat: Add workspace plugin sharing APIs @xl-openai + - #20334 Make missing config clears no-ops @etraut-openai + - #20246 Gate multi-agent v2 tools independently of collab @jif-oai + - #20361 realtime: rename provider session ids @aibrahim-oai + - #20260 fix(core): truncate large mcp tool outputs in rollouts @owenlin0 + - #20083 Mark goals feature as experimental @etraut-openai + - #19843 /plugins: remove marketplace @canvrno-oai + - #20458 [Extension] Allowlist Chrome Extension in the tool_suggest tool @teddywyly-oai + - #20324 Remove core protocol dependency [1/2] @etraut-openai + - #20299 Move item event mapping into app-server-protocol @pakrym-oai + - #20325 Remove core protocol dependency [2/2] @etraut-openai + - #20471 Stop emitting item/fileChange/outputDelta output delta notifications @pakrym-oai + - #20245 [Codex] Add browser use external feature flag @khoi-oai + - #19882 Add /hooks browser for lifecycle hooks @abhinav-oai + - #20275 fix: show correct Bedrock runtime endpoint in /status @celia-oai + - #20270 [codex] Fix elevated Windows sandbox named-pipe access @iceweasel-oai + - #20463 feat(rollouts): store EventMsg::ApplyPatchEnd in limited history mode @owenlin0 + - #20101 install WFP filters for Windows sandbox setup @iceweasel-oai + - #20474 [plugin] Add Canva to suggesteable list. @mzeng-openai + - #20379 Send external import completion for sync imports @alexsong-oai + - #19280 [codex] Migrate thread turns list to thread store @wiltzius-openai + - #20348 Move plugin out of core. @xl-openai + - #19160 Make apply_patch streaming parser stateful @akshaynathan + - #20504 fix flaky test falls_back_to_registered_fallback_port_when_default_po… @owenlin0 + - #20098 fix: ignore dangerous project-level config keys @owenlin0 + - #20268 Sync remote installed plugin bundles @xli-oai + - #20502 fix(tui): set persist_extended_history: false @owenlin0 + - #20069 Bypass review for always-allow MCP tools in auto-review @maja-openai + - #18595 feat(tui): add vim composer mode @fcoury-oai + - #20267 Emit analytics for remote plugin installs @xli-oai + - #20499 fix(app-server): mark thread/turns/list and exclude_turns as experime… @owenlin0 + - #20522 Alias codex_hooks feature as hooks @abhinav-oai + - #20336 execpolicy: unwrap PowerShell -Command wrappers on Windows @iceweasel-oai + - #20113 fix(exec_policy) heredoc parsing file_redirect @dylan-hurd-oai + - #20341 app-server: switch remote control to protocol v3 segmentation @euroelessar + - #20300 [codex-analytics] centralize thread analytics state @rhan-oai + - #20484 [codex] Improve PR babysitter CI diagnostics and guardrails @wiltzius-openai + - #20298 Surface admin-disabled remote plugin status @xli-oai + - #20511 [codex] Remove unused event messages @pakrym-oai + - #19474 Make thread store process-scoped @wiltzius-openai + - #20558 Format multi-day goal durations in the TUI @etraut-openai + - #19631 Color TUI statusline from active theme @etraut-openai + - #20265 Refresh remote plugin cache on auth changes @xli-oai + - #20150 Add remote plugin skill read API @xli-oai + - #20560 feat: Track local paths for shared plugins @xl-openai + - #20600 chore: allow memories edition @jif-oai + - #20602 feat: ad-hoc instructions @jif-oai + - #20610 chore: improve remember prompt @jif-oai + - #20606 feat: seed ad-hoc memory extension instructions @jif-oai + - #20405 feat: export and replay effective config locks @jif-oai + - #20540 Move apply-patch file changes into turn items @pakrym-oai + - #20564 Enforce animations = false for screen readers @etraut-openai + - #20523 Remove no-tool goal continuation suppression @etraut-openai + - #20627 fix: cargo deny @jif-oai + - #20545 app-server: move transport into dedicated crate @euroelessar + - #20294 Add /ide context support to the TUI @etraut-openai + - #20630 [codex] Add Codex environment config @pakrym-oai + - #20524 deprecate legacy notify @abhinav-oai + - #20486 [codex] Migrate loaded thread/read history to ThreadStore @wiltzius-openai + - #20281 Use selected turn environments for runtime context @starr-openai + - #20535 fix(tui): restore alt-enter newline alias @fcoury-oai + - #20650 fix: reduce ConfigBuilder::build stack usage @jif-oai + - #20478 /plugins: add marketplace upgrade flow @canvrno-oai + - #20512 [codex] Emit image view as core item @pakrym-oai + - #20562 Use the 2025-06-18 elicitation capability shape @abhinav-oai + - #20674 Clear live hook rows when turns finalize @abhinav-oai + - #20646 Surface multi-environment choices in environment context @starr-openai + - #20542 Prune unused code-mode globals @cconger + - #20585 ci: cross-compile Windows Bazel tests @bolinfest + - #20701 ci: cross-compile Windows Bazel clippy @bolinfest + - #20676 Fix custom CA login behind TLS-inspecting proxies @jgershen-oai + - #20654 fix(tui): bound startup terminal probes @fcoury-oai + - #20566 [tool_suggest] More prompt polishes. @mzeng-openai + - #20751 Bound websocket request sends with idle timeout @pakrym-oai + - #20893 [codex] Add issue labeler area labels @etraut-openai + - #20896 Remove local docs and specs @etraut-openai + - #20897 [codex] Refactor app-server dispatch result flow @pakrym-oai + - #20677 [codex] Emit MCP tool calls as turn items @pakrym-oai + - #20973 feat: support template interpolation in multi-agent usage hints @jif-oai + - #20622 feat: memories mcp v1 @jif-oai + - #20773 feat: add remote compaction v2 Responses client path @jif-oai + - #20986 feat: add line offsets to memory read MCP @jif-oai + - #20991 feat: add max_lines to memories MCP read @jif-oai + - #20993 feat: paginate MCP memories list @jif-oai + - #20994 feat: make memories MCP list shallow @jif-oai + - #20996 feat: paginate memories MCP search results @jif-oai + - #20997 feat: add context lines to memories MCP search @jif-oai + - #20998 nit: renaming @jif-oai + - #21004 feat: support multi-query memories search @jif-oai + - #21006 nit: legacy @jif-oai + - #20815 Speed up /side parent restore replay @etraut-openai + - #20790 Keep paused goals paused on thread resume @etraut-openai + - #20940 [codex] Split app-server request processors @pakrym-oai + - #21023 typo @jif-oai + - #21012 memories/mcp: generate tool schemas with schemars @jif-oai + - #21010 memories-mcp: reject symlink traversal in local backend @jif-oai + - #20989 core: share responses request builder with compact requests @jif-oai + - #20853 [mcp-apps] Persist MCP Apps specific tool call end event. @mzeng-openai +ReleaseNotesUrl: https://github.com/openai/codex/releases/tag/rust-v0.129.0 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://developers.openai.com/codex/cli +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenAI/Codex/0.129.0/OpenAI.Codex.yaml b/manifests/o/OpenAI/Codex/0.129.0/OpenAI.Codex.yaml new file mode 100644 index 000000000000..65d8602d84ef --- /dev/null +++ b/manifests/o/OpenAI/Codex/0.129.0/OpenAI.Codex.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: OpenAI.Codex +PackageVersion: 0.129.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenWhisperSystems/Signal/8.9.0/OpenWhisperSystems.Signal.installer.yaml b/manifests/o/OpenWhisperSystems/Signal/8.9.0/OpenWhisperSystems.Signal.installer.yaml new file mode 100644 index 000000000000..af44e72b72f6 --- /dev/null +++ b/manifests/o/OpenWhisperSystems/Signal/8.9.0/OpenWhisperSystems.Signal.installer.yaml @@ -0,0 +1,21 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: OpenWhisperSystems.Signal +PackageVersion: 8.9.0 +InstallerType: nullsoft +Scope: user +InstallModes: +- silent +UpgradeBehavior: install +ProductCode: 7d96caee-06e6-597c-9f2f-c7bb2e0948b4 +ReleaseDate: 2026-05-07 +AppsAndFeaturesEntries: +- DisplayName: Signal 8.9.0 + ProductCode: 7d96caee-06e6-597c-9f2f-c7bb2e0948b4 +Installers: +- Architecture: x64 + InstallerUrl: https://updates.signal.org/desktop/signal-desktop-win-8.9.0.exe + InstallerSha256: 801EC50002BD0AAB90D55275F52FD7F13D2ABAE537F5E05E16CF20AC56D674CB +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenWhisperSystems/Signal/8.9.0/OpenWhisperSystems.Signal.locale.en-US.yaml b/manifests/o/OpenWhisperSystems/Signal/8.9.0/OpenWhisperSystems.Signal.locale.en-US.yaml new file mode 100644 index 000000000000..59cb66e9247f --- /dev/null +++ b/manifests/o/OpenWhisperSystems/Signal/8.9.0/OpenWhisperSystems.Signal.locale.en-US.yaml @@ -0,0 +1,34 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: OpenWhisperSystems.Signal +PackageVersion: 8.9.0 +PackageLocale: en-US +Publisher: Signal Messenger, LLC +PublisherUrl: https://www.signal.org/ +PublisherSupportUrl: https://github.com/signalapp/Signal-Desktop/issues +PrivacyUrl: https://www.signal.org/legal/#privacy-policy +Author: Signal Messenger, LLC +PackageName: Signal +PackageUrl: https://www.signal.org/ +License: AGPL-3.0 +LicenseUrl: https://github.com/signalapp/Signal-Desktop/blob/HEAD/LICENSE +Copyright: © 2013–2026 Signal, a 501c3 nonprofit. +CopyrightUrl: https://www.signal.org/legal/#terms-of-service +ShortDescription: Signal is an encrypted communications application. +Description: |- + Signal is an encrypted communications application. + It uses the Internet to send one-to-one and group messages, which can include files, voice notes, images and videos, and make one-to-one voice and video calls. +Moniker: signal +Tags: +- chat +- cross-platform +- encryption +- foss +- messaging +- open-source +- privacy +- security +- texting +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/OpenWhisperSystems/Signal/8.9.0/OpenWhisperSystems.Signal.yaml b/manifests/o/OpenWhisperSystems/Signal/8.9.0/OpenWhisperSystems.Signal.yaml new file mode 100644 index 000000000000..a98f57bd988c --- /dev/null +++ b/manifests/o/OpenWhisperSystems/Signal/8.9.0/OpenWhisperSystems.Signal.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: OpenWhisperSystems.Signal +PackageVersion: 8.9.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/obot-platform/obot/v0.21.1/obot-platform.obot.installer.yaml b/manifests/o/obot-platform/obot/v0.21.1/obot-platform.obot.installer.yaml new file mode 100644 index 000000000000..1be5042bd47f --- /dev/null +++ b/manifests/o/obot-platform/obot/v0.21.1/obot-platform.obot.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: obot-platform.obot +PackageVersion: v0.21.1 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: obot.exe + PortableCommandAlias: obot +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/obot-platform/obot/releases/download/v0.21.1/obot_v0.21.1_windows_amd64.zip + InstallerSha256: 220AE54354EB32777F281451183F017F7D45BB8C0D1A146143079F3E8066FC91 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-05-07 diff --git a/manifests/o/obot-platform/obot/v0.21.1/obot-platform.obot.locale.en-US.yaml b/manifests/o/obot-platform/obot/v0.21.1/obot-platform.obot.locale.en-US.yaml new file mode 100644 index 000000000000..35158db13861 --- /dev/null +++ b/manifests/o/obot-platform/obot/v0.21.1/obot-platform.obot.locale.en-US.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: obot-platform.obot +PackageVersion: v0.21.1 +PackageLocale: en-US +Publisher: Acorn Labs, Inc +PublisherUrl: https://github.com/obot-platform +PublisherSupportUrl: https://github.com/obot-platform/obot/issues +PackageName: obot +PackageUrl: https://github.com/obot-platform/obot +License: Apache 2.0 +ShortDescription: Obot is an open source enterprise agent platform. +Tags: +- ai +- mcp +- modelcontextprotocol +ReleaseNotesUrl: https://github.com/obot-platform/obot/releases/tag/v0.21.1 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/obot-platform/obot/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/o/obot-platform/obot/v0.21.1/obot-platform.obot.yaml b/manifests/o/obot-platform/obot/v0.21.1/obot-platform.obot.yaml new file mode 100644 index 000000000000..6754dcf756e6 --- /dev/null +++ b/manifests/o/obot-platform/obot/v0.21.1/obot-platform.obot.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: obot-platform.obot +PackageVersion: v0.21.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/PHP/PHP/NTS/8/2/8.2.31/PHP.PHP.NTS.8.2.installer.yaml b/manifests/p/PHP/PHP/NTS/8/2/8.2.31/PHP.PHP.NTS.8.2.installer.yaml new file mode 100644 index 000000000000..2bdad871dc1c --- /dev/null +++ b/manifests/p/PHP/PHP/NTS/8/2/8.2.31/PHP.PHP.NTS.8.2.installer.yaml @@ -0,0 +1,32 @@ +# Created with PHPWatch/winget-pkgs - https://github.com/PHPWatch/php-winget-manifest +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: PHP.PHP.NTS.8.2 +PackageVersion: 8.2.31 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: + - RelativeFilePath: php.exe + PortableCommandAlias: php +Commands: + - php + - php82 +UpgradeBehavior: install +ReleaseDate: 2026-05-05 +ArchiveBinariesDependOnPath: true +Installers: + - Architecture: x64 + InstallerUrl: https://downloads.php.net/~windows/releases/php-8.2.31-nts-Win32-vs16-x64.zip + InstallerSha256: 941bd3b87683eb16d5ffa7f5997de9a5e07ef08ba875048e5c4d95b4fc778162 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + - Architecture: x86 + InstallerUrl: https://downloads.php.net/~windows/releases/php-8.2.31-nts-Win32-vs16-x86.zip + InstallerSha256: 7e12f0da52d709f6d15d6acb90a0b7d50132abf3fec5fb90e879a5243c204e33 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/PHP/PHP/NTS/8/2/8.2.31/PHP.PHP.NTS.8.2.locale.en-US.yaml b/manifests/p/PHP/PHP/NTS/8/2/8.2.31/PHP.PHP.NTS.8.2.locale.en-US.yaml new file mode 100644 index 000000000000..7ef6e09ac7ce --- /dev/null +++ b/manifests/p/PHP/PHP/NTS/8/2/8.2.31/PHP.PHP.NTS.8.2.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created with PHPWatch/winget-pkgs - https://github.com/PHPWatch/php-winget-manifest +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: PHP.PHP.NTS.8.2 +Description: "PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML." +ShortDescription: PHP 8.2 - Non-thread safe +PackageVersion: 8.2.31 +ReleaseNotesUrl: https://www.php.net/ChangeLog-8.php#8.2.31 +PackageLocale: en-US +Publisher: PHP Group +PublisherUrl: https://php.net +PublisherSupportUrl: https://www.php.net/docs.php +Author: PHP Group +PackageName: PHP 8.2 - Non-thread safe +PackageUrl: https://php.net +License: PHP License v3.01 +LicenseUrl: https://www.php.net/license/3_01.txt +Copyright: (c) PHP Group +CopyrightUrl: https://www.php.net/credits.php +Moniker: php8.2 +Tags: + - php + - php82 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PHP/PHP/NTS/8/2/8.2.31/PHP.PHP.NTS.8.2.yaml b/manifests/p/PHP/PHP/NTS/8/2/8.2.31/PHP.PHP.NTS.8.2.yaml new file mode 100644 index 000000000000..356f72399ed1 --- /dev/null +++ b/manifests/p/PHP/PHP/NTS/8/2/8.2.31/PHP.PHP.NTS.8.2.yaml @@ -0,0 +1,8 @@ +# Created with PHPWatch/winget-pkgs - https://github.com/PHPWatch/php-winget-manifest +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: PHP.PHP.NTS.8.2 +PackageVersion: 8.2.31 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/PHP/PHP/NTS/8/5/8.5.6/PHP.PHP.NTS.8.5.installer.yaml b/manifests/p/PHP/PHP/NTS/8/5/8.5.6/PHP.PHP.NTS.8.5.installer.yaml new file mode 100644 index 000000000000..e12c46635b4f --- /dev/null +++ b/manifests/p/PHP/PHP/NTS/8/5/8.5.6/PHP.PHP.NTS.8.5.installer.yaml @@ -0,0 +1,32 @@ +# Created with PHPWatch/winget-pkgs - https://github.com/PHPWatch/php-winget-manifest +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: PHP.PHP.NTS.8.5 +PackageVersion: 8.5.6 +InstallerLocale: en-US +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: + - RelativeFilePath: php.exe + PortableCommandAlias: php +Commands: + - php + - php85 +UpgradeBehavior: install +ReleaseDate: 2026-05-06 +ArchiveBinariesDependOnPath: true +Installers: + - Architecture: x64 + InstallerUrl: https://downloads.php.net/~windows/releases/php-8.5.6-nts-Win32-vs17-x64.zip + InstallerSha256: e25cc9400a7d176f18074f677ef0159d6b04aecfb255c924d808b7144075092f + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x64 + - Architecture: x86 + InstallerUrl: https://downloads.php.net/~windows/releases/php-8.5.6-nts-Win32-vs17-x86.zip + InstallerSha256: 8f56f338afc366164bb675b0f6206db5dabcdd608c5fd176ff874aca78e9a056 + Dependencies: + PackageDependencies: + - PackageIdentifier: Microsoft.VCRedist.2015+.x86 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/PHP/PHP/NTS/8/5/8.5.6/PHP.PHP.NTS.8.5.locale.en-US.yaml b/manifests/p/PHP/PHP/NTS/8/5/8.5.6/PHP.PHP.NTS.8.5.locale.en-US.yaml new file mode 100644 index 000000000000..21e1c0f69afa --- /dev/null +++ b/manifests/p/PHP/PHP/NTS/8/5/8.5.6/PHP.PHP.NTS.8.5.locale.en-US.yaml @@ -0,0 +1,25 @@ +# Created with PHPWatch/winget-pkgs - https://github.com/PHPWatch/php-winget-manifest +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: PHP.PHP.NTS.8.5 +Description: "PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML." +ShortDescription: PHP 8.5 - Non-thread safe +PackageVersion: 8.5.6 +ReleaseNotesUrl: https://www.php.net/ChangeLog-8.php#8.5.6 +PackageLocale: en-US +Publisher: PHP Group +PublisherUrl: https://php.net +PublisherSupportUrl: https://www.php.net/docs.php +Author: PHP Group +PackageName: PHP 8.5 - Non-thread safe +PackageUrl: https://php.net +License: PHP License v3.01 +LicenseUrl: https://www.php.net/license/3_01.txt +Copyright: (c) PHP Group +CopyrightUrl: https://www.php.net/credits.php +Moniker: php8.5 +Tags: + - php + - php85 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PHP/PHP/NTS/8/5/8.5.6/PHP.PHP.NTS.8.5.yaml b/manifests/p/PHP/PHP/NTS/8/5/8.5.6/PHP.PHP.NTS.8.5.yaml new file mode 100644 index 000000000000..d3875d7f19b6 --- /dev/null +++ b/manifests/p/PHP/PHP/NTS/8/5/8.5.6/PHP.PHP.NTS.8.5.yaml @@ -0,0 +1,8 @@ +# Created with PHPWatch/winget-pkgs - https://github.com/PHPWatch/php-winget-manifest +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: PHP.PHP.NTS.8.5 +PackageVersion: 8.5.6 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/PIKCLOUD/PikPak/2.9.10/PIKCLOUD.PikPak.installer.yaml b/manifests/p/PIKCLOUD/PikPak/2.9.11/PIKCLOUD.PikPak.installer.yaml similarity index 82% rename from manifests/p/PIKCLOUD/PikPak/2.9.10/PIKCLOUD.PikPak.installer.yaml rename to manifests/p/PIKCLOUD/PikPak/2.9.11/PIKCLOUD.PikPak.installer.yaml index 8d4c291dfb89..aa258043d503 100644 --- a/manifests/p/PIKCLOUD/PikPak/2.9.10/PIKCLOUD.PikPak.installer.yaml +++ b/manifests/p/PIKCLOUD/PikPak/2.9.11/PIKCLOUD.PikPak.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: PIKCLOUD.PikPak -PackageVersion: 2.9.10 +PackageVersion: 2.9.11 InstallerType: nullsoft Scope: machine InstallerSwitches: @@ -16,6 +16,6 @@ ProductCode: PikPak Installers: - Architecture: x64 InstallerUrl: https://download.mypikpak.net/desktop/official_PikPak.exe - InstallerSha256: 744761B40DD93C878B7D598D02F1DD457F92373DCD8FF13D2F96495346CA312E + InstallerSha256: A6951FFD5B7385AAE9B296D341F273E7D084FE6E7042D1C830DB2CC855F67F2B ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/p/PIKCLOUD/PikPak/2.9.10/PIKCLOUD.PikPak.locale.en-US.yaml b/manifests/p/PIKCLOUD/PikPak/2.9.11/PIKCLOUD.PikPak.locale.en-US.yaml similarity index 98% rename from manifests/p/PIKCLOUD/PikPak/2.9.10/PIKCLOUD.PikPak.locale.en-US.yaml rename to manifests/p/PIKCLOUD/PikPak/2.9.11/PIKCLOUD.PikPak.locale.en-US.yaml index 23baeba07fa1..79db69872441 100644 --- a/manifests/p/PIKCLOUD/PikPak/2.9.10/PIKCLOUD.PikPak.locale.en-US.yaml +++ b/manifests/p/PIKCLOUD/PikPak/2.9.11/PIKCLOUD.PikPak.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: PIKCLOUD.PikPak -PackageVersion: 2.9.10 +PackageVersion: 2.9.11 PackageLocale: en-US Publisher: PIKCLOUD PTE.LTD. PublisherUrl: https://mypikpak.com/ diff --git a/manifests/p/PIKCLOUD/PikPak/2.9.10/PIKCLOUD.PikPak.locale.zh-CN.yaml b/manifests/p/PIKCLOUD/PikPak/2.9.11/PIKCLOUD.PikPak.locale.zh-CN.yaml similarity index 98% rename from manifests/p/PIKCLOUD/PikPak/2.9.10/PIKCLOUD.PikPak.locale.zh-CN.yaml rename to manifests/p/PIKCLOUD/PikPak/2.9.11/PIKCLOUD.PikPak.locale.zh-CN.yaml index cebe90372115..2b717811d92c 100644 --- a/manifests/p/PIKCLOUD/PikPak/2.9.10/PIKCLOUD.PikPak.locale.zh-CN.yaml +++ b/manifests/p/PIKCLOUD/PikPak/2.9.11/PIKCLOUD.PikPak.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: PIKCLOUD.PikPak -PackageVersion: 2.9.10 +PackageVersion: 2.9.11 PackageLocale: zh-CN Publisher: PIKCLOUD PTE.LTD. PublisherUrl: https://mypikpak.com/ diff --git a/manifests/p/PIKCLOUD/PikPak/2.9.10/PIKCLOUD.PikPak.yaml b/manifests/p/PIKCLOUD/PikPak/2.9.11/PIKCLOUD.PikPak.yaml similarity index 91% rename from manifests/p/PIKCLOUD/PikPak/2.9.10/PIKCLOUD.PikPak.yaml rename to manifests/p/PIKCLOUD/PikPak/2.9.11/PIKCLOUD.PikPak.yaml index 0728885a8a34..19bfd8cedba4 100644 --- a/manifests/p/PIKCLOUD/PikPak/2.9.10/PIKCLOUD.PikPak.yaml +++ b/manifests/p/PIKCLOUD/PikPak/2.9.11/PIKCLOUD.PikPak.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: PIKCLOUD.PikPak -PackageVersion: 2.9.10 +PackageVersion: 2.9.11 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/a/Amazon/AWSCLI/2.32.31/Amazon.AWSCLI.yaml b/manifests/p/Pantelis23/KernRift/v2.8.25/Pantelis23.KernRift.yaml similarity index 62% rename from manifests/a/Amazon/AWSCLI/2.32.31/Amazon.AWSCLI.yaml rename to manifests/p/Pantelis23/KernRift/v2.8.25/Pantelis23.KernRift.yaml index c04e842bbc02..c4dbfc96af73 100644 --- a/manifests/a/Amazon/AWSCLI/2.32.31/Amazon.AWSCLI.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: Amazon.AWSCLI -PackageVersion: 2.32.31 -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.1215/PerfectWorld.PerfectWorldArena.installer.yaml similarity index 65% rename from manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511/PerfectWorld.PerfectWorldArena.installer.yaml rename to manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511.1215/PerfectWorld.PerfectWorldArena.installer.yaml index 624fa994a1c7..2e9a53b02b4c 100644 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511/PerfectWorld.PerfectWorldArena.installer.yaml +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511.1215/PerfectWorld.PerfectWorldArena.installer.yaml @@ -1,20 +1,20 @@ -# 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 +# 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: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.25122511.1215 +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: 85D6CC545E22F0137BA74CDD19E15B6073D60DA7E5256C555710782DEB5DEA52 +ManifestType: installer +ManifestVersion: 1.12.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.1215/PerfectWorld.PerfectWorldArena.locale.en-US.yaml similarity index 82% rename from manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511/PerfectWorld.PerfectWorldArena.locale.en-US.yaml rename to manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511.1215/PerfectWorld.PerfectWorldArena.locale.en-US.yaml index 0f2d3a384863..7c01f2acf7f2 100644 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511/PerfectWorld.PerfectWorldArena.locale.en-US.yaml +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511.1215/PerfectWorld.PerfectWorldArena.locale.en-US.yaml @@ -1,25 +1,25 @@ -# 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 +# 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: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.25122511.1215 +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.12.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.1215/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml similarity index 90% rename from manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml rename to manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511.1215/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml index 09b97505933c..7a4b816506e1 100644 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511.1215/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml @@ -1,31 +1,31 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.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 +# 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: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.25122511.1215 +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.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511/PerfectWorld.PerfectWorldArena.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511.1215/PerfectWorld.PerfectWorldArena.yaml similarity index 51% rename from manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511/PerfectWorld.PerfectWorldArena.yaml rename to manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511.1215/PerfectWorld.PerfectWorldArena.yaml index a17a34930984..ccc892a4bd21 100644 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511/PerfectWorld.PerfectWorldArena.yaml +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.25122511.1215/PerfectWorld.PerfectWorldArena.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: PerfectWorld.PerfectWorldArena -PackageVersion: 1.0.25122511 -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: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.25122511.1215 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.installer.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511.1232/PerfectWorld.PerfectWorldArena.installer.yaml similarity index 72% rename from manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.installer.yaml rename to manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511.1232/PerfectWorld.PerfectWorldArena.installer.yaml index 6bf774117a3c..954631404403 100644 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.installer.yaml +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511.1232/PerfectWorld.PerfectWorldArena.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: 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 +# 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: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.26020511.1232 +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: 2C0786F2046C5F9870D504E6DBD5123FA771F6428F5D8E85B126D17D6300D237 +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.1232/PerfectWorld.PerfectWorldArena.locale.en-US.yaml similarity index 88% rename from manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.locale.en-US.yaml rename to manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511.1232/PerfectWorld.PerfectWorldArena.locale.en-US.yaml index 99865cecc14f..01110a5db3d5 100644 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.locale.en-US.yaml +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511.1232/PerfectWorld.PerfectWorldArena.locale.en-US.yaml @@ -1,25 +1,25 @@ -# 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 +# 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: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.26020511.1232 +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.1232/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml similarity index 87% rename from manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml rename to manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511.1232/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml index 1ceb138ee941..77d40f36e136 100644 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511.1232/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml @@ -1,24 +1,24 @@ -# 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 +# 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: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.26020511.1232 +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.26020511.1232/PerfectWorld.PerfectWorldArena.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511.1232/PerfectWorld.PerfectWorldArena.yaml new file mode 100644 index 000000000000..d83ff8e8ae2c --- /dev/null +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26020511.1232/PerfectWorld.PerfectWorldArena.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: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.26020511.1232 +DefaultLocale: en-US +ManifestType: version +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.1258/PerfectWorld.PerfectWorldArena.installer.yaml similarity index 72% rename from manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.installer.yaml rename to manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912.1258/PerfectWorld.PerfectWorldArena.installer.yaml index f634c1f1e743..32d3da9a2ada 100644 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.installer.yaml +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912.1258/PerfectWorld.PerfectWorldArena.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: 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 +# 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: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.26040912.1258 +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: 43A50D317D67F88716C9691CFB8925E2EBCE04F98E77CE1C76D5B0A91588B407 +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.1258/PerfectWorld.PerfectWorldArena.locale.en-US.yaml similarity index 85% rename from manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.locale.en-US.yaml rename to manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912.1258/PerfectWorld.PerfectWorldArena.locale.en-US.yaml index da4fb0581c58..d00425a1a454 100644 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.locale.en-US.yaml +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912.1258/PerfectWorld.PerfectWorldArena.locale.en-US.yaml @@ -1,19 +1,19 @@ -# 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 +# 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: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.26040912.1258 +PackageLocale: en-US +Author: Perfect World Zhengqi (Shanghai) Multimedia Technology Co., Ltd. +License: Proprietary +ShortDescription: Perfect World Arena is a comprehensive PvP platform developed by Perfect World for every player. It is low-threshold, easy to use, interaction aware, and professional yet fun. +Tags: +- csgo +- dota2 +- game +- gaming +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://pvp.wanmei.com/csgo/question/list +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912.1258/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml similarity index 88% rename from manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml rename to manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912.1258/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml index 9e3d0c75d0b4..e87caa6b4da4 100644 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912.1258/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml @@ -1,24 +1,24 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: PerfectWorld.PerfectWorldArena -PackageVersion: 1.0.26042311 -PackageLocale: zh-CN -Publisher: Perfect World -PublisherUrl: https://www.pwesports.cn/ -Author: 完美世界征奇(上海)多媒体科技有限公司 -PackageName: 完美世界竞技平台 -PackageUrl: https://pvp.wanmei.com/ -License: 专有软件 -Copyright: Copyright © 2026 Perfect World -ShortDescription: 完美世界竞技平台是一款由完美世界开发的适合每一位玩家的低门槛、易操作、重交互、兼具专业性与趣味性的集成式对战平台。 -Tags: -- csgo -- dota2 -- 游戏 -PurchaseUrl: https://pvp.wanmei.com/vip -Documentations: -- DocumentLabel: 常见问题 - DocumentUrl: https://pvp.wanmei.com/csgo/question/list -ManifestType: defaultLocale -ManifestVersion: 1.12.0 +# 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: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.26040912.1258 +PackageLocale: zh-CN +Publisher: Perfect World +PublisherUrl: https://www.pwesports.cn/ +Author: 完美世界征奇(上海)多媒体科技有限公司 +PackageName: 完美世界竞技平台 +PackageUrl: https://pvp.wanmei.com/ +License: 专有软件 +Copyright: Copyright © 2026 Perfect World +ShortDescription: 完美世界竞技平台是一款由完美世界开发的适合每一位玩家的低门槛、易操作、重交互、兼具专业性与趣味性的集成式对战平台。 +Tags: +- csgo +- dota2 +- 游戏 +PurchaseUrl: https://pvp.wanmei.com/vip +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://pvp.wanmei.com/csgo/question/list +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912.1258/PerfectWorld.PerfectWorldArena.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912.1258/PerfectWorld.PerfectWorldArena.yaml new file mode 100644 index 000000000000..b7413d8e407d --- /dev/null +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912.1258/PerfectWorld.PerfectWorldArena.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: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.26040912.1258 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.installer.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311.1265/PerfectWorld.PerfectWorldArena.installer.yaml similarity index 72% rename from manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.installer.yaml rename to manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311.1265/PerfectWorld.PerfectWorldArena.installer.yaml index b1110132dc53..ae2b7eecb3a5 100644 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.installer.yaml +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311.1265/PerfectWorld.PerfectWorldArena.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: PerfectWorld.PerfectWorldArena -PackageVersion: 1.0.26042311 -InstallerType: nullsoft -Scope: machine -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -FileExtensions: -- wmpvp -ProductCode: '{a9be7c93-59b5-5f11-bbb9-964db82cbf57}' -ReleaseDate: 2026-04-22 -Installers: -- Architecture: x86 - InstallerUrl: https://client.wmpvp.com/download/perfectworldarena_win32_v1.0.26042311.exe - InstallerSha256: 79B13E3889ADD6201E4A10017E5EF0559F1FFABF04C3F33D8A887ACFD688B23D -ManifestType: installer -ManifestVersion: 1.12.0 +# 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: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.26042311.1265 +InstallerType: nullsoft +Scope: machine +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +FileExtensions: +- wmpvp +ProductCode: '{a9be7c93-59b5-5f11-bbb9-964db82cbf57}' +ReleaseDate: 2026-04-22 +Installers: +- Architecture: x86 + InstallerUrl: https://client.wmpvp.com/download/perfectworldarena_win32_v1.0.26042311.exe + InstallerSha256: ADB5CE2B356D722F25D5B95B10417DFB3C999427A76D4CBBD67A396C51BEC0B0 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.locale.en-US.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311.1265/PerfectWorld.PerfectWorldArena.locale.en-US.yaml similarity index 85% rename from manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.locale.en-US.yaml rename to manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311.1265/PerfectWorld.PerfectWorldArena.locale.en-US.yaml index c00efb5351a9..e18e18cd2f3f 100644 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311/PerfectWorld.PerfectWorldArena.locale.en-US.yaml +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311.1265/PerfectWorld.PerfectWorldArena.locale.en-US.yaml @@ -1,19 +1,19 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: PerfectWorld.PerfectWorldArena -PackageVersion: 1.0.26042311 -PackageLocale: en-US -Author: Perfect World Zhengqi (Shanghai) Multimedia Technology Co., Ltd. -License: Proprietary -ShortDescription: Perfect World Arena is a comprehensive PvP platform developed by Perfect World for every player. It is low-threshold, easy to use, interaction aware, and professional yet fun. -Tags: -- csgo -- dota2 -- game -- gaming -Documentations: -- DocumentLabel: FAQ - DocumentUrl: https://pvp.wanmei.com/csgo/question/list -ManifestType: locale -ManifestVersion: 1.12.0 +# 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: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.26042311.1265 +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.26042311.1265/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml similarity index 88% rename from manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml rename to manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311.1265/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml index b17199306953..8bcda363708d 100644 --- a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26040912/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311.1265/PerfectWorld.PerfectWorldArena.locale.zh-CN.yaml @@ -1,24 +1,24 @@ -# 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 +# 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: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.26042311.1265 +PackageLocale: zh-CN +Publisher: Perfect World +PublisherUrl: https://www.pwesports.cn/ +Author: 完美世界征奇(上海)多媒体科技有限公司 +PackageName: 完美世界竞技平台 +PackageUrl: https://pvp.wanmei.com/ +License: 专有软件 +Copyright: Copyright © 2026 Perfect World +ShortDescription: 完美世界竞技平台是一款由完美世界开发的适合每一位玩家的低门槛、易操作、重交互、兼具专业性与趣味性的集成式对战平台。 +Tags: +- csgo +- dota2 +- 游戏 +PurchaseUrl: https://pvp.wanmei.com/vip +Documentations: +- DocumentLabel: 常见问题 + DocumentUrl: https://pvp.wanmei.com/csgo/question/list +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311.1265/PerfectWorld.PerfectWorldArena.yaml b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311.1265/PerfectWorld.PerfectWorldArena.yaml new file mode 100644 index 000000000000..80fcb2541ccd --- /dev/null +++ b/manifests/p/PerfectWorld/PerfectWorldArena/1.0.26042311.1265/PerfectWorld.PerfectWorldArena.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: PerfectWorld.PerfectWorldArena +PackageVersion: 1.0.26042311.1265 +DefaultLocale: zh-CN +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.installer.yaml b/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.installer.yaml deleted file mode 100644 index e05adf2236ea..000000000000 --- a/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.installer.yaml +++ /dev/null @@ -1,35 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: PostgreSQL.psqlODBC.mimalloc -PackageVersion: 17.00.0009 -Scope: machine -UpgradeBehavior: install -ReleaseDate: 2026-03-18 -Installers: -- Architecture: x86 - InstallerType: burn - InstallerUrl: https://github.com/postgresql-interfaces/psqlodbc/releases/download/REL-17_00_0009-mimalloc/psqlodbc-setup.exe - InstallerSha256: 88906E5DBE57165FE24AFE402E000B613CCE96DE4DF8C21A6A038C371B3B0AE0 - ProductCode: '{0aa860f3-94e4-4fe2-b72c-4c8305af5186}' -- Architecture: x64 - InstallerType: burn - InstallerUrl: https://github.com/postgresql-interfaces/psqlodbc/releases/download/REL-17_00_0009-mimalloc/psqlodbc-setup.exe - InstallerSha256: 88906E5DBE57165FE24AFE402E000B613CCE96DE4DF8C21A6A038C371B3B0AE0 - ProductCode: '{0aa860f3-94e4-4fe2-b72c-4c8305af5186}' -- Architecture: x86 - InstallerType: wix - InstallerUrl: https://github.com/postgresql-interfaces/psqlodbc/releases/download/REL-17_00_0009-mimalloc/psqlodbc_x86.msi - InstallerSha256: 9D85837FAF48418293263CE0EE2474F9D2BD7EE157241CB23310D792631E29F5 - InstallerSwitches: - InstallLocation: BASEDIR="" - ProductCode: '{FBC651D2-77BF-43EC-9FD3-0CF34EAF45E1}' -- Architecture: x64 - InstallerType: wix - InstallerUrl: https://github.com/postgresql-interfaces/psqlodbc/releases/download/REL-17_00_0009-mimalloc/psqlodbc_x64.msi - InstallerSha256: 5155121B83181C4050607CCC554423629A8F17D1F613AA5C3FADC7DE34109E09 - InstallerSwitches: - InstallLocation: BASEDIR="" - ProductCode: '{717B77DC-4978-4BFE-B814-0C560026B611}' -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.locale.en-US.yaml b/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.locale.en-US.yaml deleted file mode 100644 index 2a31c6ae7756..000000000000 --- a/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.locale.en-US.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: PostgreSQL.psqlODBC.mimalloc -PackageVersion: 17.00.0009 -PackageLocale: en-US -Publisher: PostgreSQL Global Development Group -PublisherUrl: https://www.postgresql.org/ -PublisherSupportUrl: https://github.com/postgresql-interfaces/psqlodbc/issues -PrivacyUrl: https://www.postgresql.org/about/policies/privacy/ -PackageName: psqlodbc (mimalloc version) -PackageUrl: https://odbc.postgresql.org/ -License: LGPL-2.0 -LicenseUrl: https://github.com/postgresql-interfaces/psqlodbc/blob/HEAD/license.txt -Copyright: Copyright © 1996-2026 The PostgreSQL Global Development Group -CopyrightUrl: https://www.postgresql.org/about/policies/trademarks/ -ShortDescription: The official PostgreSQL ODBC Driver. Use the mimalloc allocator for improved performance. -Tags: -- odbc -- postgresql -ReleaseNotesUrl: https://odbc.postgresql.org/docs/release.html -Documentations: -- DocumentLabel: FAQ - DocumentUrl: https://odbc.postgresql.org/faq.html -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.locale.zh-CN.yaml b/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.locale.zh-CN.yaml deleted file mode 100644 index b98f85d78902..000000000000 --- a/manifests/p/PostgreSQL/psqlODBC/mimalloc/17.00.0009/PostgreSQL.psqlODBC.mimalloc.locale.zh-CN.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: PostgreSQL.psqlODBC.mimalloc -PackageVersion: 17.00.0009 -PackageLocale: zh-CN -Publisher: PostgreSQL Global Development Group -PublisherUrl: https://www.postgresql.org/ -PublisherSupportUrl: https://github.com/postgresql-interfaces/psqlodbc/issues -PrivacyUrl: https://www.postgresql.org/about/policies/privacy/ -PackageName: psqlodbc (mimalloc 版) -PackageUrl: https://odbc.postgresql.org/ -License: LGPL-2.0 -LicenseUrl: https://github.com/postgresql-interfaces/psqlodbc/blob/HEAD/license.txt -Copyright: Copyright © 1996-2026 The PostgreSQL Global Development Group -CopyrightUrl: https://www.postgresql.org/about/policies/trademarks/ -ShortDescription: 官方 PostgreSQL ODBC 驱动。使用 mimalloc allocator 以提高性能。 -Tags: -- odbc -- postgresql -ReleaseNotesUrl: https://odbc.postgresql.org/docs/release.html -Documentations: -- DocumentLabel: 常见问题 - DocumentUrl: https://odbc.postgresql.org/faq.html -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/p/Pulover/PuloversMacroCreator/5.4.1/Pulover.PuloversMacroCreator.installer.yaml b/manifests/p/Pulover/PuloversMacroCreator/5.4.1/Pulover.PuloversMacroCreator.installer.yaml deleted file mode 100644 index e010437e6255..000000000000 --- a/manifests/p/Pulover/PuloversMacroCreator/5.4.1/Pulover.PuloversMacroCreator.installer.yaml +++ /dev/null @@ -1,26 +0,0 @@ -# Created with komac v2.13.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: Pulover.PuloversMacroCreator -PackageVersion: 5.4.1 -InstallerLocale: en-US -InstallerType: inno -Scope: machine -InstallModes: -- interactive -- silent -- silentWithProgress -UpgradeBehavior: install -ProductCode: '{223FFB42-2D49-4AF6-9EF2-82B7D0CAF8B4}_is1' -ReleaseDate: 2021-12-06 -AppsAndFeaturesEntries: -- ProductCode: '{223FFB42-2D49-4AF6-9EF2-82B7D0CAF8B4}_is1' -ElevationRequirement: elevatesSelf -InstallationMetadata: - DefaultInstallLocation: '%ProgramFiles%\MacroCreator' -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/Pulover/PuloversMacroCreator/releases/download/v5.4.1/MacroCreator-setup.exe - InstallerSha256: 92FFA6DA0BEA664F2499CFBEC2A578BF882ED861CBB218B384E6AF6EA589DDE9 -ManifestType: installer -ManifestVersion: 1.10.0 diff --git a/manifests/p/Pulover/PuloversMacroCreator/5.4.1/Pulover.PuloversMacroCreator.locale.en-US.yaml b/manifests/p/Pulover/PuloversMacroCreator/5.4.1/Pulover.PuloversMacroCreator.locale.en-US.yaml deleted file mode 100644 index 495a72139cab..000000000000 --- a/manifests/p/Pulover/PuloversMacroCreator/5.4.1/Pulover.PuloversMacroCreator.locale.en-US.yaml +++ /dev/null @@ -1,33 +0,0 @@ -# Created with komac v2.13.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json - -PackageIdentifier: Pulover.PuloversMacroCreator -PackageVersion: 5.4.1 -PackageLocale: en-US -Publisher: Cloversoft Serviços de Informática Ltda -PublisherUrl: https://github.com/Pulover -PublisherSupportUrl: https://github.com/Pulover/PuloversMacroCreator/issues -Author: Rodolfo U. Batista -PackageName: Pulover's Macro Creator -PackageUrl: https://www.macrocreator.com/ -License: Freeware -LicenseUrl: https://github.com/Pulover/PuloversMacroCreator?tab=License-1-ov-file -Copyright: Copyright © 2012-2021 Cloversoft Serviços de Informática Ltda -ShortDescription: Pulover’s Macro Creator is a Free Automation Tool and Script Generator. It is based on AutoHotkey language and provides users with multiple automation functions, as well as a built-in recorder. -Description: |- - Pulover’s Macro Creator is a Free Automation Tool and Script Generator. It is based on AutoHotkey language and provides users with multiple automation functions, as well as a built-in recorder. - - You can add not only keystrokes and mouse actions to your scripts but also manage windows, controls, files, strings, search images/pixels and even create If/Else Statements to control the flow of your macros! From simple repetitive tasks to complex automation projects, Pulover’s Macro Creator will save you hours of monotonous work. Everything with a friendly and intuitive interface. -Tags: -- ahk -- autohotkey -- automation -- robot -- rpa -- tesseract -ReleaseNotesUrl: https://github.com/Pulover/PuloversMacroCreator/releases/tag/v5.4.1 -Documentations: -- DocumentLabel: Help - DocumentUrl: https://www.macrocreator.com/help/ -ManifestType: defaultLocale -ManifestVersion: 1.10.0 diff --git a/manifests/p/Pulover/PuloversMacroCreator/5.4.1/Pulover.PuloversMacroCreator.yaml b/manifests/p/Pulover/PuloversMacroCreator/5.4.1/Pulover.PuloversMacroCreator.yaml deleted file mode 100644 index 8672cc32dce5..000000000000 --- a/manifests/p/Pulover/PuloversMacroCreator/5.4.1/Pulover.PuloversMacroCreator.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Created with komac v2.13.0 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: Pulover.PuloversMacroCreator -PackageVersion: 5.4.1 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 diff --git a/manifests/p/purocean/YankNote/3.89.1/purocean.YankNote.installer.yaml b/manifests/p/purocean/YankNote/3.89.1/purocean.YankNote.installer.yaml new file mode 100644 index 000000000000..b35ca200fb28 --- /dev/null +++ b/manifests/p/purocean/YankNote/3.89.1/purocean.YankNote.installer.yaml @@ -0,0 +1,23 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: purocean.YankNote +PackageVersion: 3.89.1 +InstallerLocale: en-US +Platform: +- Windows.Desktop +InstallerType: nullsoft +Scope: user +InstallModes: +- silent +UpgradeBehavior: install +ProductCode: 5f2adf60-437d-51b9-8ef9-da70e93bc3f1 +AppsAndFeaturesEntries: +- DisplayName: Yank Note 3.86.1 + ProductCode: 5f2adf60-437d-51b9-8ef9-da70e93bc3f1 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/purocean/yn/releases/download/v3.89.1/Yank-Note-win-x64-3.89.1.exe + InstallerSha256: BFEEF5F0E7F896515C3F92444AB8CB7CC81E0E1777C05D7FEA1436019417F188 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/p/purocean/YankNote/3.89.1/purocean.YankNote.locale.en-US.yaml b/manifests/p/purocean/YankNote/3.89.1/purocean.YankNote.locale.en-US.yaml new file mode 100644 index 000000000000..70e7e20ac08e --- /dev/null +++ b/manifests/p/purocean/YankNote/3.89.1/purocean.YankNote.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: purocean.YankNote +PackageVersion: 3.89.1 +PackageLocale: en-US +Publisher: purocean +PublisherUrl: https://github.com/purocean +PublisherSupportUrl: https://github.com/purocean/yn/issues +Author: purocean +PackageName: Yank Note +PackageUrl: https://github.com/purocean/yn +License: AGPL-3.0 +LicenseUrl: https://github.com/purocean/yn/blob/HEAD/LICENSE +CopyrightUrl: https://github.com/purocean/yn/blob/develop/LICENSE +ShortDescription: A hackable markdown note application for programmers +Description: |- + A Hackable Markdown Note Application for Programmers. + Version control, AI completion, mind map, documents encryption, code snippet running, integrated terminal, chart embedding, HTML applets, Reveal.js, plug-in, and macro replacement. +Tags: +- drawio +- editor +- electron +- gpt3 +- koa2 +- makrdown-it +- markdown +- mermaid +- monaco-editor +- node +- note +- openai +- plantuml +- progremmer +- reveal-js +- vue +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/p/purocean/YankNote/3.89.1/purocean.YankNote.yaml b/manifests/p/purocean/YankNote/3.89.1/purocean.YankNote.yaml new file mode 100644 index 000000000000..f235706bce36 --- /dev/null +++ b/manifests/p/purocean/YankNote/3.89.1/purocean.YankNote.yaml @@ -0,0 +1,8 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: purocean.YankNote +PackageVersion: 3.89.1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/q/qr243vbi/NekoBox/5.11.8/qr243vbi.NekoBox.installer.yaml b/manifests/q/qr243vbi/NekoBox/5.11.8/qr243vbi.NekoBox.installer.yaml deleted file mode 100644 index 818a526f544a..000000000000 --- a/manifests/q/qr243vbi/NekoBox/5.11.8/qr243vbi.NekoBox.installer.yaml +++ /dev/null @@ -1,30 +0,0 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json - -PackageIdentifier: qr243vbi.NekoBox -PackageVersion: 5.11.8 -InstallerLocale: en-US -InstallerType: nullsoft -Scope: user -ProductCode: NekoBox -ReleaseDate: 2026-05-05 -AppsAndFeaturesEntries: -- ProductCode: NekoBox - DisplayName: NekoBox - Publisher: qr243vbi -InstallModes: - - silentWithProgress - - silent -InstallerSwitches: - Silent: "/S /NOSCRIPT=1 /WINGET=1" - SilentWithProgress: "/S /NOSCRIPT=1 /WINGET=1" -InstallationMetadata: - DefaultInstallLocation: '%AppData%\NekoBox' -Installers: -- Architecture: x64 - InstallerUrl: https://github.com/qr243vbi/nekobox/releases/download/5.11.8/nekobox-5.11.8-windows64-installer.exe - InstallerSha256: A42FF95EEEA7D23E423B565B87CD27AF9D733DCF2AA72EAF11F7910FBA708F42 -- Architecture: arm64 - InstallerUrl: https://github.com/qr243vbi/nekobox/releases/download/5.11.8/nekobox-5.11.8-windows-arm64-installer.exe - InstallerSha256: 1D4EC278C210C46A05A5D7619F838141B17FC4919970210CCAF6DAADD82A2FBF -ManifestType: installer -ManifestVersion: 1.10.0 \ No newline at end of file diff --git a/manifests/q/qr243vbi/NekoBox/5.11.8/qr243vbi.NekoBox.locale.en-US.yaml b/manifests/q/qr243vbi/NekoBox/5.11.8/qr243vbi.NekoBox.locale.en-US.yaml deleted file mode 100644 index 2b10c255ae38..000000000000 --- a/manifests/q/qr243vbi/NekoBox/5.11.8/qr243vbi.NekoBox.locale.en-US.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json -PackageIdentifier: qr243vbi.NekoBox -PackageVersion: 5.11.8 -PackageLocale: en-US -Publisher: qr243vbi -PublisherUrl: https://github.com/qr243vbi -PublisherSupportUrl: https://github.com/qr243vbi/nekobox/issues -PackageName: NekoBox -PackageUrl: https://github.com/qr243vbi/nekobox -License: GPL-3.0 -LicenseUrl: https://github.com/qr243vbi/nekobox/blob/HEAD/LICENSE -ShortDescription: Cross-platform GUI proxy utility (Empowered by sing-box) -Tags: -- sing-box -- v2ray -- VLESS -- Vmess -- ShadowSocks -- Tor -- Mieru -- Trojan -- Hysteria -- Wireguard -- NyameBox -- TUIC -- SSH -- VPN -- ShadowTLS -- AnyTLS -ManifestType: defaultLocale -ManifestVersion: 1.10.0 \ No newline at end of file diff --git a/manifests/q/qr243vbi/NekoBox/5.11.8/qr243vbi.NekoBox.yaml b/manifests/q/qr243vbi/NekoBox/5.11.8/qr243vbi.NekoBox.yaml deleted file mode 100644 index 5066480cdd31..000000000000 --- a/manifests/q/qr243vbi/NekoBox/5.11.8/qr243vbi.NekoBox.yaml +++ /dev/null @@ -1,7 +0,0 @@ -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json - -PackageIdentifier: qr243vbi.NekoBox -PackageVersion: 5.11.8 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.10.0 \ No newline at end of file diff --git a/manifests/r/RII7/CSBuyscriptor/1.0/RII7.CSBuyscriptor.installer.yaml b/manifests/r/RII7/CSBuyscriptor/1.0/RII7.CSBuyscriptor.installer.yaml index 3cc3eea9cb13..7c009a7aee18 100644 --- a/manifests/r/RII7/CSBuyscriptor/1.0/RII7.CSBuyscriptor.installer.yaml +++ b/manifests/r/RII7/CSBuyscriptor/1.0/RII7.CSBuyscriptor.installer.yaml @@ -10,7 +10,7 @@ NestedInstallerFiles: PortableCommandAlias: csbuyscriptor Installers: - Architecture: x86 - InstallerUrl: https://rii7.com/assets/file/cb.zip + InstallerUrl: https://rii7.com/assets/file/cb_1.0.zip InstallerSha256: 3F36CB33D3E476D1DED1882482620F43CBC39A7FBF5E85359A2B9DE350FC1D2C ManifestType: installer ManifestVersion: 1.12.0 diff --git "a/manifests/r/ReceitaFederaldoBrasil/Escritura\303\247\303\243oDigitalECF/12.1.3/ReceitaFederaldoBrasil.Escritura\303\247\303\243oDigitalECF.installer.yaml" "b/manifests/r/ReceitaFederaldoBrasil/Escritura\303\247\303\243oDigitalECF/12.1.3/ReceitaFederaldoBrasil.Escritura\303\247\303\243oDigitalECF.installer.yaml" new file mode 100644 index 000000000000..5e833ab90e02 --- /dev/null +++ "b/manifests/r/ReceitaFederaldoBrasil/Escritura\303\247\303\243oDigitalECF/12.1.3/ReceitaFederaldoBrasil.Escritura\303\247\303\243oDigitalECF.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: ReceitaFederaldoBrasil.EscrituraçãoDigitalECF +PackageVersion: 12.1.3 +InstallerType: exe +InstallerSwitches: + Silent: -q -dir "C:\Arquivos de Programas RFB\Programas SPED\SpedECF" + SilentWithProgress: -q -splash -alerts -dir "C:\Arquivos de Programas RFB\Programas SPED\SpedECF" +Installers: +- Architecture: x64 + InstallerUrl: https://servicos.receita.fazenda.gov.br/publico/programas/Sped/ECF/SpedEcf_w64-12.1.3.exe + InstallerSha256: EFA5AAC7CD5A21045645F0B6E535498F486F2CF38C4EAB1F25535515C3F81511 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git "a/manifests/r/ReceitaFederaldoBrasil/Escritura\303\247\303\243oDigitalECF/12.1.3/ReceitaFederaldoBrasil.Escritura\303\247\303\243oDigitalECF.locale.pt-BR.yaml" "b/manifests/r/ReceitaFederaldoBrasil/Escritura\303\247\303\243oDigitalECF/12.1.3/ReceitaFederaldoBrasil.Escritura\303\247\303\243oDigitalECF.locale.pt-BR.yaml" new file mode 100644 index 000000000000..d3841b820646 --- /dev/null +++ "b/manifests/r/ReceitaFederaldoBrasil/Escritura\303\247\303\243oDigitalECF/12.1.3/ReceitaFederaldoBrasil.Escritura\303\247\303\243oDigitalECF.locale.pt-BR.yaml" @@ -0,0 +1,13 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ReceitaFederaldoBrasil.EscrituraçãoDigitalECF +PackageVersion: 12.1.3 +PackageLocale: pt-BR +Publisher: Receita Federal do Brasil +PackageName: Escrituração Digital ECF +License: Public +Copyright: Receita Federal do Brasil +ShortDescription: Escrituração Digital ECF +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git "a/manifests/r/ReceitaFederaldoBrasil/Escritura\303\247\303\243oDigitalECF/12.1.3/ReceitaFederaldoBrasil.Escritura\303\247\303\243oDigitalECF.yaml" "b/manifests/r/ReceitaFederaldoBrasil/Escritura\303\247\303\243oDigitalECF/12.1.3/ReceitaFederaldoBrasil.Escritura\303\247\303\243oDigitalECF.yaml" new file mode 100644 index 000000000000..f8512649e733 --- /dev/null +++ "b/manifests/r/ReceitaFederaldoBrasil/Escritura\303\247\303\243oDigitalECF/12.1.3/ReceitaFederaldoBrasil.Escritura\303\247\303\243oDigitalECF.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: ReceitaFederaldoBrasil.EscrituraçãoDigitalECF +PackageVersion: 12.1.3 +DefaultLocale: pt-BR +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.installer.yaml b/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.installer.yaml new file mode 100644 index 000000000000..98270f299962 --- /dev/null +++ b/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.installer.yaml @@ -0,0 +1,24 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: RiotGames.Valorant.NA +PackageVersion: 123.0.2.3988 +InstallerType: exe +Scope: user +InstallModes: +- interactive +- silentWithProgress +InstallerSwitches: + Silent: --skip-to-install + SilentWithProgress: --skip-to-install + InstallLocation: --install-path="" + Log: --log-root="" + Custom: --disable-auto-launch +RequireExplicitUpgrade: true +Installers: +- Architecture: x64 + InstallerUrl: https://valorant.secure.dyn.riotcdn.net/channels/public/x/installer/current/live.live.na.exe + InstallerSha256: A2D9F9BE91DA09E95FEF0B6C2285D74F84316A0174A1DAD3DB475C88D2B78F10 + ProductCode: Riot Game valorant.live +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.locale.en-US.yaml b/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.locale.en-US.yaml new file mode 100644 index 000000000000..7085a308c778 --- /dev/null +++ b/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.locale.en-US.yaml @@ -0,0 +1,24 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: RiotGames.Valorant.NA +PackageVersion: 123.0.2.3988 +PackageLocale: en-US +Publisher: Riot Games, Inc +PublisherUrl: https://www.riotgames.com/ +PublisherSupportUrl: https://support-valorant.riotgames.com/ +PrivacyUrl: https://www.riotgames.com/en/privacy-notice +Author: Riot Games, Inc. +PackageName: VALORANT (North America server) +PackageUrl: https://playvalorant.com/ +License: Proprietary +LicenseUrl: https://www.riotgames.com/en/terms-of-service +Copyright: Copyright © 2024 Riot Games +ShortDescription: A 5v5 character-based tactical shooter +Description: A 5v5 character-based tactical FPS by Riot Games where precise gunplay meets unique agent abilities. +Moniker: valorant +Tags: +- fps +- game +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.locale.zh-CN.yaml b/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.locale.zh-CN.yaml new file mode 100644 index 000000000000..9de7b6d43a04 --- /dev/null +++ b/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: RiotGames.Valorant.NA +PackageVersion: 123.0.2.3988 +PackageLocale: zh-CN +Publisher: Riot Games, Inc +PublisherUrl: https://www.riotgames.com/zh-cn +PublisherSupportUrl: https://support-valorant.riotgames.com/ +PrivacyUrl: https://www.riotgames.com/en/privacy-notice +Author: Riot Games, Inc. +PackageName: VALORANT(北美服务器) +PackageUrl: https://playvalorant.com/ +License: 专有软件 +LicenseUrl: https://www.riotgames.com/en/terms-of-service +Copyright: Copyright © 2024 Riot Games +ShortDescription: 以角色为核心的 5 对 5 战略射击游戏 +Description: 一款以角色为核心的 5 对 5 第一人称战略射击游戏,展现精准射击与特务独门技能的完美结合。 +Tags: +- fps +- 无畏契约 +- 游戏 +- 特战英豪 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.yaml b/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.yaml new file mode 100644 index 000000000000..12ea45835fd6 --- /dev/null +++ b/manifests/r/RiotGames/Valorant/NA/123.0.2.3988/RiotGames.Valorant.NA.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: RiotGames.Valorant.NA +PackageVersion: 123.0.2.3988 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/RodZill4/MaterialMaker/1.6/RodZill4.MaterialMaker.installer.yaml b/manifests/r/RodZill4/MaterialMaker/1.6/RodZill4.MaterialMaker.installer.yaml new file mode 100644 index 000000000000..d51feb8988c4 --- /dev/null +++ b/manifests/r/RodZill4/MaterialMaker/1.6/RodZill4.MaterialMaker.installer.yaml @@ -0,0 +1,19 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: RodZill4.MaterialMaker +PackageVersion: '1.6' +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: material_maker_1_6_windows/material_maker.exe +InstallModes: +- silent +UpgradeBehavior: uninstallPrevious +ReleaseDate: 2026-04-18 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/RodZill4/material-maker/releases/download/1.6/material_maker_1_6_windows.zip + InstallerSha256: F8A07EF149B227FD7E193139589FC9877D5638A98DAE755C6832D7C93CEDA5BA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/RodZill4/MaterialMaker/1.6/RodZill4.MaterialMaker.locale.en-US.yaml b/manifests/r/RodZill4/MaterialMaker/1.6/RodZill4.MaterialMaker.locale.en-US.yaml new file mode 100644 index 000000000000..82e5a806d265 --- /dev/null +++ b/manifests/r/RodZill4/MaterialMaker/1.6/RodZill4.MaterialMaker.locale.en-US.yaml @@ -0,0 +1,86 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: RodZill4.MaterialMaker +PackageVersion: '1.6' +PackageLocale: en-US +Publisher: RodZill4 +PublisherUrl: https://github.com/RodZill4 +PublisherSupportUrl: https://github.com/RodZill4/material-maker/issues +Author: Rodz Labs +PackageName: Material Maker +PackageUrl: https://github.com/RodZill4/material-maker +License: MIT +LicenseUrl: https://github.com/RodZill4/material-maker/blob/HEAD/LICENSE.md +Copyright: Copyright (c) 2018-2025 Rodolphe Suescun and contributors +CopyrightUrl: https://github.com/RodZill4/material-maker/blob/master/LICENSE.md +ShortDescription: | + A procedural textures authoring and 3D model painting tool based on the Godot game engine +Description: | + This is a tool based on Godot Engine that can be used to create textures procedurally and paint 3D models. Its user interface is based on Godot's GraphEdit node: textures and brushes are described as interconnected nodes. +Tags: +- glsl +- godot-engine +- godotengine +- material-maker +- painting +- procedural-generation +- texture-synthesis +- textures +ReleaseNotes: |- + General + - Allowed closing named parameter dialog via window button (contributed by williamchange) + - Implemented vertical tabs in the Preferences dialog (contributed by williamchange) + - Improved debug console link navigation (contributed by williamchange) + - Enabled tab rearrangement for projects panel (contributed by williamchange) + - Made tab styles more consistent (contributed by williamchange) + - Updated icons to use SVG when possible (contributed by williamchange) + - Configured default FileDialog path to user's home directory (contributed by williamchange) + - Added documentation for user interface shortcuts (contributed by williamchange) + - Added a menu item to show examples folder (contributed by williamchange) + - Added documentation for user interface shortcuts (contributed by williamchange) + Graph view + - Updated graph navigation to retain subgraph offsets (contributed by williamchange) + - Added circuit/metro style (diagonal) connections (contributed by williamchange) + - Implemented node grabbing via G key (contributed by williamchange) + - Added drag and drop support for image parameter (contributed by williamchange) + - Made the close/minimize node buttons optional (contributed by williamchange) + - Improved node interaction when zoomed out (contributed by williamchange) + - Added port previews for group input nodes (contributed by williamchange) + - Improved remote parameters rearrangement (contributed by williamchange) + - Added edge scrolling when dragging connection (contributed by williamchange) + Library + - Show top-level section labels in the Library panel in bold (contributed by williamchange) + - Modified the "Update library item" action to keep the thumbnail (contributed by williamchange) + 2D Preview + - Improved $node to use node title in 2D export (contributed by williamchange) + - Updated 2D preview to gizmos during transform until LMB is released (contributed by williamchange) + 3D Preview + - Added alternative inputs for graph panning/camera orbiting (contributed by williamchange) + Nodes + - Added controlled variations and related nodes + - Implemented portal nodes (contributed by williamchange) + - Added a variadic Color Pick node (contributed by myaaaaaaaaa) + - Added a basic glTF exporter for static PBR materials (contributed by myaaaaaaaaa) + - Added lacunarity for FBM noise node (contributed by williamchange) + - Added gabor noise for FBM noise node (contributed by williamchange) + - Improved export node to support $ variables (contributed by williamchange) + Bug Fixes + - Fixed crash when adjusting BPP in pixels node (contributed by williamchange) + - Fixed Morphology node Y dilation to use resolution (contributed by DevFika) + - Fixed SDF FBM node not displaying correctly (contributed by williamchange) + - Fixed opaque background for tooltip/popup menu panels (contributed by williamchange) + - Reintroduced AO export for Blender export target (contributed by williamchange) + - Placed graph UI (hierarchy and subgraph controls) above nodes (contributed by williamchange) + - Updated reroute/preview2d bg checker to match defaults (contributed by williamchange) + - Fixed console meta navigation on multiple clicks (contributed by williamchange) + - Fixed group parameters using default values from linked widgets (contributed by williamchange) + - Fixed hierarchy/subgraph UI position (contributed by williamchange) + - Fixed crash when opening named parameter editor (contributed by williamchange) + - Fixed zoom in/out buttons conflicting with node align (contributed by williamchange) + - Added check to prevent self-referencing in float parameter editor (contributed by williamchange) + - Fixed lattice, pixels, polygon views not centering (contributed by williamchange) + - Fixed default lattice point positions (contributed by williamchange) +ReleaseNotesUrl: https://github.com/RodZill4/material-maker/releases/tag/1.6 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Argente/StartupManager/4.0.6.1/Argente.StartupManager.yaml b/manifests/r/RodZill4/MaterialMaker/1.6/RodZill4.MaterialMaker.yaml similarity index 71% rename from manifests/a/Argente/StartupManager/4.0.6.1/Argente.StartupManager.yaml rename to manifests/r/RodZill4/MaterialMaker/1.6/RodZill4.MaterialMaker.yaml index 5605b1972630..dc6da2073cd3 100644 --- a/manifests/a/Argente/StartupManager/4.0.6.1/Argente.StartupManager.yaml +++ b/manifests/r/RodZill4/MaterialMaker/1.6/RodZill4.MaterialMaker.yaml @@ -1,8 +1,8 @@ # Created with komac v2.16.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: Argente.StartupManager -PackageVersion: 4.0.6.1 +PackageIdentifier: RodZill4.MaterialMaker +PackageVersion: '1.6' DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/r/RoxyBrowser/RoxyBrowser/3.6.9/RoxyBrowser.RoxyBrowser.installer.yaml b/manifests/r/RoxyBrowser/RoxyBrowser/3.6.9/RoxyBrowser.RoxyBrowser.installer.yaml index 1658b09dd54e..9c1771b267fd 100644 --- a/manifests/r/RoxyBrowser/RoxyBrowser/3.6.9/RoxyBrowser.RoxyBrowser.installer.yaml +++ b/manifests/r/RoxyBrowser/RoxyBrowser/3.6.9/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.12.0.schema.json - -PackageIdentifier: RoxyBrowser.RoxyBrowser -PackageVersion: 3.6.9 -InstallerType: nullsoft -InstallerSwitches: - Upgrade: --updated -UpgradeBehavior: install -ProductCode: 5633cfcb-8c5e-5d87-b6fa-ae51c376d817 -ReleaseDate: 2026-01-15 -Installers: -- Architecture: x86 - Scope: user - InstallerUrl: https://lumibrowser-hk.oss-cn-hongkong.aliyuncs.com/public/package/app/Windows/32/3.6.9/RoxyBrowser_x86_3.6.9.exe - InstallerSha256: FE2D992BF7BFCE2A907100A355B12CB3B5CF7E01B12657B38C4B75E8EA6E636D - InstallerSwitches: - Custom: /currentuser -- Architecture: x86 - Scope: machine - InstallerUrl: https://lumibrowser-hk.oss-cn-hongkong.aliyuncs.com/public/package/app/Windows/32/3.6.9/RoxyBrowser_x86_3.6.9.exe - InstallerSha256: FE2D992BF7BFCE2A907100A355B12CB3B5CF7E01B12657B38C4B75E8EA6E636D - InstallerSwitches: - Custom: /allusers -- Architecture: x64 - Scope: user - InstallerUrl: https://lumibrowser-hk.oss-cn-hongkong.aliyuncs.com/public/package/app/Windows/64/3.6.9/RoxyBrowser_x64_3.6.9.exe - InstallerSha256: 53DF6F8178C110B98E942F856C72B14BA1060649647E01EEB59761252FECCC8D - InstallerSwitches: - Custom: /currentuser -- Architecture: x64 - Scope: machine - InstallerUrl: https://lumibrowser-hk.oss-cn-hongkong.aliyuncs.com/public/package/app/Windows/64/3.6.9/RoxyBrowser_x64_3.6.9.exe - InstallerSha256: 53DF6F8178C110B98E942F856C72B14BA1060649647E01EEB59761252FECCC8D - 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: RoxyBrowser.RoxyBrowser +PackageVersion: 3.6.9 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 5633cfcb-8c5e-5d87-b6fa-ae51c376d817 +ReleaseDate: 2026-01-15 +Installers: +- Architecture: x86 + Scope: user + InstallerUrl: https://lumibrowser-hk.oss-cn-hongkong.aliyuncs.com/public/package/app/Windows/32/3.6.9/RoxyBrowser_x86_3.6.9.exe + InstallerSha256: 592C977D367B5C4DEC4552044D0DA6722E0A17EE1786BE949AC4E8C38840BFD3 + InstallerSwitches: + Custom: /currentuser +- Architecture: x86 + Scope: machine + InstallerUrl: https://lumibrowser-hk.oss-cn-hongkong.aliyuncs.com/public/package/app/Windows/32/3.6.9/RoxyBrowser_x86_3.6.9.exe + InstallerSha256: 592C977D367B5C4DEC4552044D0DA6722E0A17EE1786BE949AC4E8C38840BFD3 + InstallerSwitches: + Custom: /allusers +- Architecture: x64 + Scope: user + InstallerUrl: https://lumibrowser-hk.oss-cn-hongkong.aliyuncs.com/public/package/app/Windows/64/3.6.9/RoxyBrowser_x64_3.6.9.exe + InstallerSha256: 802772FDF40CDAFEE728A71387D30D448EE7B3FC04D159874B2E42502DD61ADD + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://lumibrowser-hk.oss-cn-hongkong.aliyuncs.com/public/package/app/Windows/64/3.6.9/RoxyBrowser_x64_3.6.9.exe + InstallerSha256: 802772FDF40CDAFEE728A71387D30D448EE7B3FC04D159874B2E42502DD61ADD + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/RoxyBrowser/RoxyBrowser/3.6.9/RoxyBrowser.RoxyBrowser.locale.en-US.yaml b/manifests/r/RoxyBrowser/RoxyBrowser/3.6.9/RoxyBrowser.RoxyBrowser.locale.en-US.yaml index 92df83bb600c..5963a6469af9 100644 --- a/manifests/r/RoxyBrowser/RoxyBrowser/3.6.9/RoxyBrowser.RoxyBrowser.locale.en-US.yaml +++ b/manifests/r/RoxyBrowser/RoxyBrowser/3.6.9/RoxyBrowser.RoxyBrowser.locale.en-US.yaml @@ -1,27 +1,27 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: RoxyBrowser.RoxyBrowser -PackageVersion: 3.6.9 -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: © 2026 RoxyBrowser -CopyrightUrl: https://roxybrowser.com/copyright/user -ShortDescription: A premier antidetect browser that streamlines your workflow effortlessly -Tags: -- browser -- internet -- web -- webpage -ReleaseNotes: |- - 1. Fixed some known issues - 2. Optimized some functions -PurchaseUrl: https://roxybrowser.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: RoxyBrowser.RoxyBrowser +PackageVersion: 3.6.9 +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: © 2026 RoxyBrowser +CopyrightUrl: https://roxybrowser.com/copyright/user +ShortDescription: A premier antidetect browser that streamlines your workflow effortlessly +Tags: +- browser +- internet +- web +- webpage +ReleaseNotes: |- + 1. Fixed some known issues + 2. Optimized some functions +PurchaseUrl: https://roxybrowser.com/pricing +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RoxyBrowser/RoxyBrowser/3.6.9/RoxyBrowser.RoxyBrowser.locale.zh-CN.yaml b/manifests/r/RoxyBrowser/RoxyBrowser/3.6.9/RoxyBrowser.RoxyBrowser.locale.zh-CN.yaml index f74b4b10d9e7..09ef7cf24dcb 100644 --- a/manifests/r/RoxyBrowser/RoxyBrowser/3.6.9/RoxyBrowser.RoxyBrowser.locale.zh-CN.yaml +++ b/manifests/r/RoxyBrowser/RoxyBrowser/3.6.9/RoxyBrowser.RoxyBrowser.locale.zh-CN.yaml @@ -1,23 +1,23 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: RoxyBrowser.RoxyBrowser -PackageVersion: 3.6.9 -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. 优化了部分功能 -PurchaseUrl: https://roxybrowser.com/zh/pricing -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: RoxyBrowser.RoxyBrowser +PackageVersion: 3.6.9 +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. 优化了部分功能 +PurchaseUrl: https://roxybrowser.com/zh/pricing +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/r/RoxyBrowser/RoxyBrowser/3.6.9/RoxyBrowser.RoxyBrowser.yaml b/manifests/r/RoxyBrowser/RoxyBrowser/3.6.9/RoxyBrowser.RoxyBrowser.yaml index c1442a0b48f4..fed8006df3ec 100644 --- a/manifests/r/RoxyBrowser/RoxyBrowser/3.6.9/RoxyBrowser.RoxyBrowser.yaml +++ b/manifests/r/RoxyBrowser/RoxyBrowser/3.6.9/RoxyBrowser.RoxyBrowser.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: RoxyBrowser.RoxyBrowser -PackageVersion: 3.6.9 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.12.0 +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: RoxyBrowser.RoxyBrowser +PackageVersion: 3.6.9 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/r/Ruihu/Apifox/2.8.27/Ruihu.Apifox.installer.yaml b/manifests/r/Ruihu/Apifox/2.8.27/Ruihu.Apifox.installer.yaml new file mode 100644 index 000000000000..7d77995c7a2e --- /dev/null +++ b/manifests/r/Ruihu/Apifox/2.8.27/Ruihu.Apifox.installer.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Ruihu.Apifox +PackageVersion: 2.8.27 +InstallerType: nullsoft +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ReleaseDate: 2026-05-06 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://file-assets.apifox.com/download/2.8.27/Apifox-2.8.27.exe + InstallerSha256: F1D49BE4462A81620C2D09E161A3D963925DDFF2D3D57BCB30059043B1CEE6C0 + InstallerSwitches: + Custom: /currentuser +- Architecture: x64 + Scope: machine + InstallerUrl: https://file-assets.apifox.com/download/2.8.27/Apifox-2.8.27.exe + InstallerSha256: F1D49BE4462A81620C2D09E161A3D963925DDFF2D3D57BCB30059043B1CEE6C0 + InstallerSwitches: + Custom: /allusers +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/r/Ruihu/Apifox/2.8.27/Ruihu.Apifox.locale.en-US.yaml b/manifests/r/Ruihu/Apifox/2.8.27/Ruihu.Apifox.locale.en-US.yaml new file mode 100644 index 000000000000..0b128754dd99 --- /dev/null +++ b/manifests/r/Ruihu/Apifox/2.8.27/Ruihu.Apifox.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Ruihu.Apifox +PackageVersion: 2.8.27 +PackageLocale: en-US +Author: Guangzhou Ruihu Technology Co., Ltd. +License: Freeware +ShortDescription: All-in-one collaboration platform for API documentation, API debugging, API Mock and API test automation. +Description: |- + Apifox is an all-in-one collaboration platform for API documentation, API debugging, API Mock and API test automation, positioning Postman + Swagger + Mock + JMeter. + With one system and one data, it solves data sync problems among multiple systems. + As long as the API documentation is defined, API debugging, API data Mock, API test automation can be used directly without the need to redefine; API documentation shares the same tool with API development and debugging, so once the API debugging is completed, it can be ensured that it is identical to the definition of the API documentation. + Efficient, timely and accurate! +Tags: +- api +- automation +- china +- debug +- develop +- development +- interface +- internet +- network +- prc +- request +- response +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/r/Ruihu/Apifox/2.8.27/Ruihu.Apifox.locale.zh-CN.yaml b/manifests/r/Ruihu/Apifox/2.8.27/Ruihu.Apifox.locale.zh-CN.yaml new file mode 100644 index 000000000000..82a36e5dd493 --- /dev/null +++ b/manifests/r/Ruihu/Apifox/2.8.27/Ruihu.Apifox.locale.zh-CN.yaml @@ -0,0 +1,25 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Ruihu.Apifox +PackageVersion: 2.8.27 +PackageLocale: zh-CN +Publisher: Apifox Team +Author: 广州睿狐科技有限公司 +PackageName: Apifox +License: 免费软件 +Copyright: Copyright © 2026 Apifox Team +ShortDescription: API 文档、API 调试、API Mock、API 自动化测试一体化协作平台 +Description: Apifox 是 API 文档、API 调试、API Mock、API 自动化测试一体化协作平台,定位 Postman + Swagger + Mock + JMeter。通过一套系统、一份数据,解决多个系统之间的数据同步问题。只要定义好 API 文档,API 调试、API 数据 Mock、API 自动化测试就可以直接使用,无需再次定义;API 文档和 API 开发调试使用同一个工具,API 调试完成后即可保证和 API 文档定义完全一致。高效、及时、准确! +Tags: +- api +- 互联网 +- 响应 +- 开发 +- 接口 +- 网络 +- 自动化 +- 请求 +- 调试 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/r/Ruihu/Apifox/2.8.27/Ruihu.Apifox.yaml b/manifests/r/Ruihu/Apifox/2.8.27/Ruihu.Apifox.yaml new file mode 100644 index 000000000000..a3ae6e28ba42 --- /dev/null +++ b/manifests/r/Ruihu/Apifox/2.8.27/Ruihu.Apifox.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: Ruihu.Apifox +PackageVersion: 2.8.27 +DefaultLocale: zh-CN +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/SST/OpenCodeDesktop/1.14.40/SST.OpenCodeDesktop.installer.yaml b/manifests/s/SST/OpenCodeDesktop/1.14.40/SST.OpenCodeDesktop.installer.yaml new file mode 100644 index 000000000000..6387cfc9954e --- /dev/null +++ b/manifests/s/SST/OpenCodeDesktop/1.14.40/SST.OpenCodeDesktop.installer.yaml @@ -0,0 +1,23 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: SST.OpenCodeDesktop +PackageVersion: 1.14.40 +InstallerType: nullsoft +Scope: user +ProductCode: d074f30d-5f88-5885-b075-be1348cc7676 +ReleaseDate: 2026-05-07 +AppsAndFeaturesEntries: +- DisplayName: OpenCode 1.14.40 + ProductCode: d074f30d-5f88-5885-b075-be1348cc7676 +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\OpenCode' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/anomalyco/opencode/releases/download/v1.14.40/opencode-desktop-win-x64.exe + InstallerSha256: D69A3DD7DCC6CB93FD285C0BB1056625949D3F531938986DA87F7D1975299CEE +- Architecture: arm64 + InstallerUrl: https://github.com/anomalyco/opencode/releases/download/v1.14.40/opencode-desktop-win-arm64.exe + InstallerSha256: EA6680B88ACA9CF55AB4C5C7F12EEAE5FDD2D13731AD0C1A5F0C60CA743D6C1E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/OpenCodeDesktop/1.14.40/SST.OpenCodeDesktop.locale.en-US.yaml b/manifests/s/SST/OpenCodeDesktop/1.14.40/SST.OpenCodeDesktop.locale.en-US.yaml new file mode 100644 index 000000000000..c1bf07a30258 --- /dev/null +++ b/manifests/s/SST/OpenCodeDesktop/1.14.40/SST.OpenCodeDesktop.locale.en-US.yaml @@ -0,0 +1,86 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: SST.OpenCodeDesktop +PackageVersion: 1.14.40 +PackageLocale: en-US +Publisher: OpenCode +PublisherUrl: https://anoma.ly/ +PublisherSupportUrl: https://github.com/anomalyco/opencode/issues +PackageName: OpenCode +PackageUrl: https://opencode.ai/ +License: MIT +LicenseUrl: https://github.com/anomalyco/opencode/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 opencode +ShortDescription: OpenCode is an open source agent that helps you write and run code with any AI model. It's available as a terminal-based interface, desktop app, or IDE extension. +Description: |- + opencode is an AI coding agent. It features: + - A responsive, native, themeable terminal UI and desktop app. + - Automatically loads the right LSPs, so the LLMs make fewer mistakes. + - Have multiple agents working in parallel on the same project. + - Create shareable links to any session for reference or to debug. + - Log in with Anthropic to use your Claude Pro or Claude Max account. + - Supports 75+ LLM providers through Models.dev, including local models. +Tags: +- ai +- code +- coding +- develop +- development +- programming +ReleaseNotes: |- + Core + + Improvements + - Support .well-known/opencode configs that point to a separate remote config file. + + Bugfixes + - Preserve assistant text when replaying signed reasoning blocks. (@edevil) + - Return consistent not-found errors for missing sessions. + - Apply CORS headers before auth so browser clients can reach legacy server endpoints. + - Fix serve, web, and ACP network options triggering runtime re-entry errors. + - Only show connected workspaces in warp flows, and carry the new directory into the session after warping. + - Restore web terminal CSP allowances. + - Sanitize invalid surrogate characters before provider transforms. + - Fix Cloudflare AI Gateway provider options for OpenAI-compatible models. (@NathanDrake2406) + - Use the current workspace with /new, including local-project warps. + - Keep editor selection context stable until it is sent. + - Retry server_is_overloaded API errors automatically. + - Restore Mistral Medium 3.5 variants so model selection works correctly. + - Show compaction summaries before retained tail messages. + + TUI + + Bugfixes + - Keep the selected model when model data refreshes. + - Fix /agent create to use the /agents path. (@OpeOginni) + + Desktop + + Improvements + - Allow trusted app windows to write to the clipboard without permission failures. + + Bugfixes + - Ignore broken pipe (EPIPE) errors in desktop console logging. + - Stop auto-installing updates when quitting the app. + - Silence noisy browser API Sentry reports in production. + - Prevent sync bootstrap queries from failing during app startup. + Thank you to 6 community contributors: + - @OpeOginni: + - fix(TUI): update agent create target path from "/agent" to "/agents" (#14427) + - @NathanDrake2406: + - fix(cf-ai-gateway): route provider options through openaiCompatible key (#24432) (#25573) + - @imduchuyyy: + - docs: update desktop app references from Tauri to Electron (#25965) + - @kill74: + - docs: fix CLI attach section order (#25749) + - @zharinov: + - fix(ui): preserve SVG tags in DOMPurify config for KaTeX math rendering (#25866) + - @edevil: + - fix(provider): preserve assistant message content when reasoning blocks present (#21370) +ReleaseNotesUrl: https://github.com/anomalyco/opencode/releases/tag/v1.14.40 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://opencode.ai/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/OpenCodeDesktop/1.14.40/SST.OpenCodeDesktop.yaml b/manifests/s/SST/OpenCodeDesktop/1.14.40/SST.OpenCodeDesktop.yaml new file mode 100644 index 000000000000..263ce472402c --- /dev/null +++ b/manifests/s/SST/OpenCodeDesktop/1.14.40/SST.OpenCodeDesktop.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: SST.OpenCodeDesktop +PackageVersion: 1.14.40 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/OpenCodeDesktop/1.14.41/SST.OpenCodeDesktop.installer.yaml b/manifests/s/SST/OpenCodeDesktop/1.14.41/SST.OpenCodeDesktop.installer.yaml new file mode 100644 index 000000000000..ad51149847ea --- /dev/null +++ b/manifests/s/SST/OpenCodeDesktop/1.14.41/SST.OpenCodeDesktop.installer.yaml @@ -0,0 +1,23 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: SST.OpenCodeDesktop +PackageVersion: 1.14.41 +InstallerType: nullsoft +Scope: user +ProductCode: d074f30d-5f88-5885-b075-be1348cc7676 +ReleaseDate: 2026-05-07 +AppsAndFeaturesEntries: +- DisplayName: OpenCode 1.14.41 + ProductCode: d074f30d-5f88-5885-b075-be1348cc7676 +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\OpenCode' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/anomalyco/opencode/releases/download/v1.14.41/opencode-desktop-win-x64.exe + InstallerSha256: C5E650F41B2924F51F58E64BE14B446D89A7CA7881F9552577D0C65E72B1D6D9 +- Architecture: arm64 + InstallerUrl: https://github.com/anomalyco/opencode/releases/download/v1.14.41/opencode-desktop-win-arm64.exe + InstallerSha256: B243AB11FCED7713197C0C4AE2382867C14CDAD7FF803B1F1297F7BD68525D68 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/OpenCodeDesktop/1.14.41/SST.OpenCodeDesktop.locale.en-US.yaml b/manifests/s/SST/OpenCodeDesktop/1.14.41/SST.OpenCodeDesktop.locale.en-US.yaml new file mode 100644 index 000000000000..a535f35f81dc --- /dev/null +++ b/manifests/s/SST/OpenCodeDesktop/1.14.41/SST.OpenCodeDesktop.locale.en-US.yaml @@ -0,0 +1,71 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: SST.OpenCodeDesktop +PackageVersion: 1.14.41 +PackageLocale: en-US +Publisher: OpenCode +PublisherUrl: https://anoma.ly/ +PublisherSupportUrl: https://github.com/anomalyco/opencode/issues +PackageName: OpenCode +PackageUrl: https://opencode.ai/ +License: MIT +LicenseUrl: https://github.com/anomalyco/opencode/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 opencode +ShortDescription: OpenCode is an open source agent that helps you write and run code with any AI model. It's available as a terminal-based interface, desktop app, or IDE extension. +Description: |- + opencode is an AI coding agent. It features: + - A responsive, native, themeable terminal UI and desktop app. + - Automatically loads the right LSPs, so the LLMs make fewer mistakes. + - Have multiple agents working in parallel on the same project. + - Create shareable links to any session for reference or to debug. + - Log in with Anthropic to use your Claude Pro or Claude Max account. + - Supports 75+ LLM providers through Models.dev, including local models. +Tags: +- ai +- code +- coding +- develop +- development +- programming +ReleaseNotes: |- + Core + + Bugfixes + - Restored formatter output handling so formatting still works when formatters write to stdout or stderr. (@ferdinandyb) + + Improvements + - Warping a session to another workspace can now carry over your uncommitted file changes. + + TUI + + Bugfixes + - Restored custom provider setup in /connect. + + Desktop + + Bugfixes + - Added a macOS Settings menu entry. (@jessedi0n) + + Improvements + - Moved the desktop app's local server into a separate utility process for more reliable startup and shutdown. + + Extensions + + Improvements + - ACP clients now restore the last model, mode, and effort when loading sessions, and can close sessions cleanly. + Thank you to 4 community contributors: + - @carmithersh: + - docs: add opencode-jfrog-plugin to ecosystem list for JFrog integration (#26019) + - @jessedi0n: + - fix(desktop): add macOS settings menu entry (#26081) + - @ferdinandyb: + - fix(format): restore stdout/stderr ignore for formatter processes (#26037) + - @YGoetschel: + - fix: guard undefined contents in diff renderer to fix share viewer SSR crash (#21763) +ReleaseNotesUrl: https://github.com/anomalyco/opencode/releases/tag/v1.14.41 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://opencode.ai/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/OpenCodeDesktop/1.14.41/SST.OpenCodeDesktop.yaml b/manifests/s/SST/OpenCodeDesktop/1.14.41/SST.OpenCodeDesktop.yaml new file mode 100644 index 000000000000..d59b1e503cd7 --- /dev/null +++ b/manifests/s/SST/OpenCodeDesktop/1.14.41/SST.OpenCodeDesktop.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: SST.OpenCodeDesktop +PackageVersion: 1.14.41 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/opencode/1.14.41/SST.opencode.installer.yaml b/manifests/s/SST/opencode/1.14.41/SST.opencode.installer.yaml new file mode 100644 index 000000000000..64126428a30e --- /dev/null +++ b/manifests/s/SST/opencode/1.14.41/SST.opencode.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: SST.opencode +PackageVersion: 1.14.41 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: opencode.exe +Commands: +- opencode +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/anomalyco/opencode/releases/download/v1.14.41/opencode-windows-x64.zip + InstallerSha256: A36CB7D69FC0C3F75FF7F1811F794028E0E1CE8B6CADE7C2D2A785A94276E0B9 +- Architecture: arm64 + InstallerUrl: https://github.com/anomalyco/opencode/releases/download/v1.14.41/opencode-windows-arm64.zip + InstallerSha256: 167968EA1DDA7BB99761C2C2D84D58432C754768F04FFD29C86F08BC9F0A96A4 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/opencode/1.14.41/SST.opencode.locale.en-US.yaml b/manifests/s/SST/opencode/1.14.41/SST.opencode.locale.en-US.yaml new file mode 100644 index 000000000000..92b99a9626fa --- /dev/null +++ b/manifests/s/SST/opencode/1.14.41/SST.opencode.locale.en-US.yaml @@ -0,0 +1,62 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: SST.opencode +PackageVersion: 1.14.41 +PackageLocale: en-US +Publisher: SST +PublisherUrl: https://sst.dev/ +PublisherSupportUrl: https://github.com/sst/opencode/issues +PackageName: opencode +PackageUrl: https://opencode.ai/ +License: MIT +LicenseUrl: https://github.com/sst/opencode/blob/HEAD/LICENSE +Copyright: Copyright (c) 2026 opencode +ShortDescription: The AI coding agent built for the terminal. +Description: |- + opencode is an AI coding agent built for the terminal. It features: + - A responsive, native, themeable terminal UI. + - Automatically loads the right LSPs, so the LLMs make fewer mistakes. + - Have multiple agents working in parallel on the same project. + - Create shareable links to any session for reference or to debug. + - Log in with Anthropic to use your Claude Pro or Claude Max account. + - Supports 75+ LLM providers through Models.dev, including local models. +Tags: +- ai +- code +- coding +- develop +- development +- programming +ReleaseNotes: |- + Core + Bugfixes + - Restored formatter output handling so formatting still works when formatters write to stdout or stderr. (@ferdinandyb) + Improvements + - Warping a session to another workspace can now carry over your uncommitted file changes. + TUI + Bugfixes + - Restored custom provider setup in /connect. + Desktop + Bugfixes + - Added a macOS Settings menu entry. (@jessedi0n) + Improvements + - Moved the desktop app's local server into a separate utility process for more reliable startup and shutdown. + Extensions + Improvements + - ACP clients now restore the last model, mode, and effort when loading sessions, and can close sessions cleanly. + Thank you to 4 community contributors: + - @carmithersh: + - docs: add opencode-jfrog-plugin to ecosystem list for JFrog integration (#26019) + - @jessedi0n: + - fix(desktop): add macOS settings menu entry (#26081) + - @ferdinandyb: + - fix(format): restore stdout/stderr ignore for formatter processes (#26037) + - @YGoetschel: + - fix: guard undefined contents in diff renderer to fix share viewer SSR crash (#21763) +ReleaseNotesUrl: https://github.com/anomalyco/opencode/releases/tag/v1.14.41 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://opencode.ai/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/opencode/1.14.41/SST.opencode.locale.zh-CN.yaml b/manifests/s/SST/opencode/1.14.41/SST.opencode.locale.zh-CN.yaml new file mode 100644 index 000000000000..762cba517403 --- /dev/null +++ b/manifests/s/SST/opencode/1.14.41/SST.opencode.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: SST.opencode +PackageVersion: 1.14.41 +PackageLocale: zh-CN +ShortDescription: 专为终端打造的 AI 编程助手 +Description: |- + opencode 是一款专为终端打造的 AI 编程助手,具备以下特性: + - 响应式、原生、可主题定制的终端界面 + - 自动加载正确的 LSP,减少 LLM 的错误率 + - 支持多个智能体并行处理同一项目 + - 可为任何会话生成可分享链接,便于参考或调试 + - 支持通过 Anthropic 登录使用 Claude Pro 或 Claude Max 账户 + - 通过 Models.dev 集成 75+ 个 LLM 服务提供商,包括本地模型 +Tags: +- ai +- 代码 +- 开发 +- 编程 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://opencode.ai/docs/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SST/opencode/1.14.41/SST.opencode.yaml b/manifests/s/SST/opencode/1.14.41/SST.opencode.yaml new file mode 100644 index 000000000000..fe0effa9eced --- /dev/null +++ b/manifests/s/SST/opencode/1.14.41/SST.opencode.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: SST.opencode +PackageVersion: 1.14.41 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.151/Serverdata.AscendTeamsDesktopPlugin.installer.yaml b/manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.192/Serverdata.AscendTeamsDesktopPlugin.installer.yaml similarity index 77% rename from manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.151/Serverdata.AscendTeamsDesktopPlugin.installer.yaml rename to manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.192/Serverdata.AscendTeamsDesktopPlugin.installer.yaml index 4fd3a47459ea..f8b2334cd611 100644 --- a/manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.151/Serverdata.AscendTeamsDesktopPlugin.installer.yaml +++ b/manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.192/Serverdata.AscendTeamsDesktopPlugin.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Serverdata.AscendTeamsDesktopPlugin -PackageVersion: 1.0.151 +PackageVersion: 1.0.192 UpgradeBehavior: install Protocols: - ascend-teams-plugin @@ -11,7 +11,7 @@ Installers: InstallerType: nullsoft Scope: user InstallerUrl: https://cp.serverdata.net/voice/pbx/TeamsWidgetReleases/Ascend/Latest-Win/ascend-teams-desktop-plugin.exe - InstallerSha256: F6537E4C8F71E3E8FE8B9D8F742C1FA539C5758423CAB579751A65F50D3270B4 + InstallerSha256: B79EA3CBDC2090E27C2E6F704C9F263814E1402860F90A02E3527C84E58CB3AA InstallerSwitches: Upgrade: --updated Custom: /currentuser @@ -20,7 +20,7 @@ Installers: InstallerType: nullsoft Scope: machine InstallerUrl: https://cp.serverdata.net/voice/pbx/TeamsWidgetReleases/Ascend/Latest-Win/ascend-teams-desktop-plugin.exe - InstallerSha256: F6537E4C8F71E3E8FE8B9D8F742C1FA539C5758423CAB579751A65F50D3270B4 + InstallerSha256: B79EA3CBDC2090E27C2E6F704C9F263814E1402860F90A02E3527C84E58CB3AA InstallerSwitches: Upgrade: --updated Custom: /allusers @@ -29,7 +29,7 @@ Installers: InstallerType: nullsoft Scope: user InstallerUrl: https://cp.serverdata.net/voice/pbx/TeamsWidgetReleases/Ascend/Latest-Win/ascend-teams-desktop-plugin.exe - InstallerSha256: F6537E4C8F71E3E8FE8B9D8F742C1FA539C5758423CAB579751A65F50D3270B4 + InstallerSha256: B79EA3CBDC2090E27C2E6F704C9F263814E1402860F90A02E3527C84E58CB3AA InstallerSwitches: Upgrade: --updated Custom: /currentuser @@ -38,7 +38,7 @@ Installers: InstallerType: nullsoft Scope: machine InstallerUrl: https://cp.serverdata.net/voice/pbx/TeamsWidgetReleases/Ascend/Latest-Win/ascend-teams-desktop-plugin.exe - InstallerSha256: F6537E4C8F71E3E8FE8B9D8F742C1FA539C5758423CAB579751A65F50D3270B4 + InstallerSha256: B79EA3CBDC2090E27C2E6F704C9F263814E1402860F90A02E3527C84E58CB3AA InstallerSwitches: Upgrade: --updated Custom: /allusers @@ -47,20 +47,20 @@ Installers: InstallerType: wix Scope: machine InstallerUrl: https://cp.serverdata.net/voice/pbx/TeamsWidgetReleases/Ascend/Latest-Win/ascend-teams-desktop-plugin-ia32.msi - InstallerSha256: 933EB794708CB503533B542051BE4E92E1F412DCE9D4AE67BD92A065CA441F5B + InstallerSha256: E2A9FB75FBD4974EB21C75E1D9EC1B78782A34F67EEC831FCA64F5B085056FCE InstallerSwitches: InstallLocation: APPLICATIONFOLDER="" - ProductCode: '{9989FD05-EB04-498D-80F5-7FDD5D6B28BE}' + ProductCode: '{ED140176-12E5-4B16-91BD-C6C751020DC1}' AppsAndFeaturesEntries: - UpgradeCode: '{CF16BCB6-47F6-4A4E-AC5B-B1B12D879EAE}' - Architecture: x64 InstallerType: wix Scope: machine InstallerUrl: https://cp.serverdata.net/voice/pbx/TeamsWidgetReleases/Ascend/Latest-Win/ascend-teams-desktop-plugin-x64.msi - InstallerSha256: 579FEFEAFAF467895BD9C2E6862156A786DF025B1F31B57D3C5ABC90AC994BB4 + InstallerSha256: 3326AE17CB1519C777A953C6FCFB5928A6D5F6595DCAAA1C5C9A1243E10A264B InstallerSwitches: InstallLocation: APPLICATIONFOLDER="" - ProductCode: '{FFB950EA-9724-4011-84F6-3C428A1C1475}' + ProductCode: '{0AD4E796-1596-4678-86BE-5099702BD685}' AppsAndFeaturesEntries: - UpgradeCode: '{CF16BCB6-47F6-4A4E-AC5B-B1B12D879EAE}' ManifestType: installer diff --git a/manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.151/Serverdata.AscendTeamsDesktopPlugin.locale.en-US.yaml b/manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.192/Serverdata.AscendTeamsDesktopPlugin.locale.en-US.yaml similarity index 97% rename from manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.151/Serverdata.AscendTeamsDesktopPlugin.locale.en-US.yaml rename to manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.192/Serverdata.AscendTeamsDesktopPlugin.locale.en-US.yaml index fc4b98e1fd37..8e687836d36f 100644 --- a/manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.151/Serverdata.AscendTeamsDesktopPlugin.locale.en-US.yaml +++ b/manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.192/Serverdata.AscendTeamsDesktopPlugin.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Serverdata.AscendTeamsDesktopPlugin -PackageVersion: 1.0.151 +PackageVersion: 1.0.192 PackageLocale: en-US Publisher: Serverdata.net, Inc. PrivacyUrl: https://serverdata.net/legal/privacy-policy.php diff --git a/manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.151/Serverdata.AscendTeamsDesktopPlugin.locale.zh-CN.yaml b/manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.192/Serverdata.AscendTeamsDesktopPlugin.locale.zh-CN.yaml similarity index 93% rename from manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.151/Serverdata.AscendTeamsDesktopPlugin.locale.zh-CN.yaml rename to manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.192/Serverdata.AscendTeamsDesktopPlugin.locale.zh-CN.yaml index 0119346c7eac..1e6e37d6a552 100644 --- a/manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.151/Serverdata.AscendTeamsDesktopPlugin.locale.zh-CN.yaml +++ b/manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.192/Serverdata.AscendTeamsDesktopPlugin.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Serverdata.AscendTeamsDesktopPlugin -PackageVersion: 1.0.151 +PackageVersion: 1.0.192 PackageLocale: zh-CN License: 专有软件 ShortDescription: 适用于 Microsoft Teams 用户的 Ascend Teams 嵌入式桌面应用。 diff --git a/manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.151/Serverdata.AscendTeamsDesktopPlugin.yaml b/manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.192/Serverdata.AscendTeamsDesktopPlugin.yaml similarity index 91% rename from manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.151/Serverdata.AscendTeamsDesktopPlugin.yaml rename to manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.192/Serverdata.AscendTeamsDesktopPlugin.yaml index 836909173f62..2a0d9fd3b4b0 100644 --- a/manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.151/Serverdata.AscendTeamsDesktopPlugin.yaml +++ b/manifests/s/Serverdata/AscendTeamsDesktopPlugin/1.0.192/Serverdata.AscendTeamsDesktopPlugin.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Serverdata.AscendTeamsDesktopPlugin -PackageVersion: 1.0.151 +PackageVersion: 1.0.192 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.151/Serverdata.ElevateTeamsDesktopPlugin.installer.yaml b/manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.192/Serverdata.ElevateTeamsDesktopPlugin.installer.yaml similarity index 77% rename from manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.151/Serverdata.ElevateTeamsDesktopPlugin.installer.yaml rename to manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.192/Serverdata.ElevateTeamsDesktopPlugin.installer.yaml index 67ad686c8f4c..7535ac110a71 100644 --- a/manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.151/Serverdata.ElevateTeamsDesktopPlugin.installer.yaml +++ b/manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.192/Serverdata.ElevateTeamsDesktopPlugin.installer.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json PackageIdentifier: Serverdata.ElevateTeamsDesktopPlugin -PackageVersion: 1.0.151 +PackageVersion: 1.0.192 UpgradeBehavior: install Protocols: - elevate-teams-plugin @@ -11,7 +11,7 @@ Installers: InstallerType: nullsoft Scope: user InstallerUrl: https://cp.serverdata.net/voice/pbx/TeamsWidgetReleases/Default/Latest-Win/elevate-teams-desktop-plugin.exe - InstallerSha256: 33435751D83D2FA30EBBF859C004792A609A684E51F09CDB0D7B6E1EDFA1E1EF + InstallerSha256: 14C357BA92AC222EF569977AA72C0B95D5E8B0ED67D33FFE354DC718B7737531 InstallerSwitches: Upgrade: --updated Custom: /currentuser @@ -20,7 +20,7 @@ Installers: InstallerType: nullsoft Scope: machine InstallerUrl: https://cp.serverdata.net/voice/pbx/TeamsWidgetReleases/Default/Latest-Win/elevate-teams-desktop-plugin.exe - InstallerSha256: 33435751D83D2FA30EBBF859C004792A609A684E51F09CDB0D7B6E1EDFA1E1EF + InstallerSha256: 14C357BA92AC222EF569977AA72C0B95D5E8B0ED67D33FFE354DC718B7737531 InstallerSwitches: Upgrade: --updated Custom: /allusers @@ -29,7 +29,7 @@ Installers: InstallerType: nullsoft Scope: user InstallerUrl: https://cp.serverdata.net/voice/pbx/TeamsWidgetReleases/Default/Latest-Win/elevate-teams-desktop-plugin.exe - InstallerSha256: 33435751D83D2FA30EBBF859C004792A609A684E51F09CDB0D7B6E1EDFA1E1EF + InstallerSha256: 14C357BA92AC222EF569977AA72C0B95D5E8B0ED67D33FFE354DC718B7737531 InstallerSwitches: Upgrade: --updated Custom: /currentuser @@ -38,7 +38,7 @@ Installers: InstallerType: nullsoft Scope: machine InstallerUrl: https://cp.serverdata.net/voice/pbx/TeamsWidgetReleases/Default/Latest-Win/elevate-teams-desktop-plugin.exe - InstallerSha256: 33435751D83D2FA30EBBF859C004792A609A684E51F09CDB0D7B6E1EDFA1E1EF + InstallerSha256: 14C357BA92AC222EF569977AA72C0B95D5E8B0ED67D33FFE354DC718B7737531 InstallerSwitches: Upgrade: --updated Custom: /allusers @@ -47,20 +47,20 @@ Installers: InstallerType: wix Scope: machine InstallerUrl: https://cp.serverdata.net/voice/pbx/TeamsWidgetReleases/Default/Latest-Win/elevate-teams-desktop-plugin-ia32.msi - InstallerSha256: 223DD48A32AD57D8768795BEBD714916EDD69E0AC8234C5F5258E035D6097E3A + InstallerSha256: 8B481ADC775919C5E6F2F77A5A3C71A18B15257C5778D9E0EFD434A24DF10488 InstallerSwitches: InstallLocation: APPLICATIONFOLDER="" - ProductCode: '{041B1651-11C4-4266-B05F-EC877DCD1EDF}' + ProductCode: '{ED988CEC-1BF3-447A-AD80-BA7362D2293A}' AppsAndFeaturesEntries: - UpgradeCode: '{8093CACB-1F7C-41E2-8BCE-45F01EB98EC5}' - Architecture: x64 InstallerType: wix Scope: machine InstallerUrl: https://cp.serverdata.net/voice/pbx/TeamsWidgetReleases/Default/Latest-Win/elevate-teams-desktop-plugin-x64.msi - InstallerSha256: 5150B3309631E506EE50BB7275093F30E45F5B26B3E17C566F876AE69E035B19 + InstallerSha256: 3DC7F9DA77733377D396704EE8D27791B1D054B81424278A9C5417630B0CB130 InstallerSwitches: InstallLocation: APPLICATIONFOLDER="" - ProductCode: '{EA062E74-598E-48DA-BB5D-92007D7017F3}' + ProductCode: '{606C7FEF-9A2D-4A6B-B550-F6313C5B5BA3}' AppsAndFeaturesEntries: - UpgradeCode: '{8093CACB-1F7C-41E2-8BCE-45F01EB98EC5}' ManifestType: installer diff --git a/manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.151/Serverdata.ElevateTeamsDesktopPlugin.locale.en-US.yaml b/manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.192/Serverdata.ElevateTeamsDesktopPlugin.locale.en-US.yaml similarity index 97% rename from manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.151/Serverdata.ElevateTeamsDesktopPlugin.locale.en-US.yaml rename to manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.192/Serverdata.ElevateTeamsDesktopPlugin.locale.en-US.yaml index f2ba7ecec58b..4949e64a6fae 100644 --- a/manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.151/Serverdata.ElevateTeamsDesktopPlugin.locale.en-US.yaml +++ b/manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.192/Serverdata.ElevateTeamsDesktopPlugin.locale.en-US.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json PackageIdentifier: Serverdata.ElevateTeamsDesktopPlugin -PackageVersion: 1.0.151 +PackageVersion: 1.0.192 PackageLocale: en-US Publisher: Serverdata.net, Inc. PrivacyUrl: https://serverdata.net/legal/privacy-policy.php diff --git a/manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.151/Serverdata.ElevateTeamsDesktopPlugin.locale.zh-CN.yaml b/manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.192/Serverdata.ElevateTeamsDesktopPlugin.locale.zh-CN.yaml similarity index 93% rename from manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.151/Serverdata.ElevateTeamsDesktopPlugin.locale.zh-CN.yaml rename to manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.192/Serverdata.ElevateTeamsDesktopPlugin.locale.zh-CN.yaml index 6b58eb4320fa..083207f64bc0 100644 --- a/manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.151/Serverdata.ElevateTeamsDesktopPlugin.locale.zh-CN.yaml +++ b/manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.192/Serverdata.ElevateTeamsDesktopPlugin.locale.zh-CN.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: Serverdata.ElevateTeamsDesktopPlugin -PackageVersion: 1.0.151 +PackageVersion: 1.0.192 PackageLocale: zh-CN License: 专有软件 ShortDescription: 适用于 Microsoft Teams 用户的 Elevate Teams 嵌入式桌面应用 diff --git a/manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.151/Serverdata.ElevateTeamsDesktopPlugin.yaml b/manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.192/Serverdata.ElevateTeamsDesktopPlugin.yaml similarity index 91% rename from manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.151/Serverdata.ElevateTeamsDesktopPlugin.yaml rename to manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.192/Serverdata.ElevateTeamsDesktopPlugin.yaml index 1af889240638..b03d9abbeb83 100644 --- a/manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.151/Serverdata.ElevateTeamsDesktopPlugin.yaml +++ b/manifests/s/Serverdata/ElevateTeamsDesktopPlugin/1.0.192/Serverdata.ElevateTeamsDesktopPlugin.yaml @@ -2,7 +2,7 @@ # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json PackageIdentifier: Serverdata.ElevateTeamsDesktopPlugin -PackageVersion: 1.0.151 +PackageVersion: 1.0.192 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.installer.yaml b/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.installer.yaml index 16cbba1eec61..768dcd08aa44 100644 --- a/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.installer.yaml +++ b/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.installer.yaml @@ -8,13 +8,13 @@ Scope: machine Protocols: - http - https -ProductCode: '{c2ff8380-a7b4-4540-ae44-8a893b84030d}' -ReleaseDate: 2026-05-05 +ProductCode: '{3f670df1-e223-427c-9811-c7857ca81ad4}' +ReleaseDate: 2026-05-06 AppsAndFeaturesEntries: - DisplayName: ServoShell Installers: - Architecture: x64 - InstallerUrl: https://github.com/servo/servo-nightly-builds/releases/download/2026-05-05/servo-x86_64-windows-msvc.exe - InstallerSha256: 1FAE3372A26927DD7C17056D8CAA73B5B1C1A3359A37E2CAD45DF5B885069D6E + InstallerUrl: https://github.com/servo/servo-nightly-builds/releases/download/2026-05-06/servo-x86_64-windows-msvc.exe + InstallerSha256: 9FE91B23D11EEFC2C7BB2C21B9A7449EF64174CA5A18F7ED38A04406583388FD ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.locale.en-US.yaml b/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.locale.en-US.yaml index e22a3f452894..659c180d2f5c 100644 --- a/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.locale.en-US.yaml +++ b/manifests/s/Servo/Servo/Nightly/1.0/Servo.Servo.Nightly.locale.en-US.yaml @@ -19,8 +19,8 @@ Tags: - web - web-browser - webpage -ReleaseNotes: Nightly build based on servo/servo@ff92c642de7f4f1c71ccd001bffa7df895cb0ffc -ReleaseNotesUrl: https://github.com/servo/servo-nightly-builds/releases/tag/2026-05-05 +ReleaseNotes: Nightly build based on servo/servo@4118d6fd5b732994e0d1bb29021c2e4723d2b6c9 +ReleaseNotesUrl: https://github.com/servo/servo-nightly-builds/releases/tag/2026-05-06 Documentations: - DocumentLabel: Wiki DocumentUrl: https://github.com/servo/servo/wiki diff --git a/manifests/s/Shilihu/Mubu/5.4.1/Shilihu.Mubu.installer.yaml b/manifests/s/Shilihu/Mubu/5.4.1/Shilihu.Mubu.installer.yaml index 8917d7d75d38..18a966b7bdcb 100644 --- a/manifests/s/Shilihu/Mubu/5.4.1/Shilihu.Mubu.installer.yaml +++ b/manifests/s/Shilihu/Mubu/5.4.1/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.1 -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.1/win/Mubu-5.4.1-ia32.exe - InstallerSha256: 106830D2E2B901405430DCA368CE36DA3A7CE5DFAF5A238FBB3D453A47B94C15 -- Architecture: x64 - InstallerUrl: https://assets.mubu.com/client/5.4.1/win/Mubu-5.4.1-x64.exe - InstallerSha256: 602C14E9C27442B1EF05D30B039C31E1B168EF9E4B2B126A384793C4EEDE5A32 -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.1 +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.1/win/Mubu-5.4.1-ia32.exe + InstallerSha256: 2D394706BCC2BA2764D6A53F145C3B32ADB457451ACCBFE58894E2C0354E5EAF +- Architecture: x64 + InstallerUrl: https://assets.mubu.com/client/5.4.1/win/Mubu-5.4.1-x64.exe + InstallerSha256: 8D0A7D5FE067D4F7AF6B4D8A02FB4B82879F82BDDF46848446B30FA4FD9D1EA7 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/Shilihu/Mubu/5.4.1/Shilihu.Mubu.locale.en-US.yaml b/manifests/s/Shilihu/Mubu/5.4.1/Shilihu.Mubu.locale.en-US.yaml index 19c1051c339f..1a371b6ae819 100644 --- a/manifests/s/Shilihu/Mubu/5.4.1/Shilihu.Mubu.locale.en-US.yaml +++ b/manifests/s/Shilihu/Mubu/5.4.1/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.1 -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.1 +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.1/Shilihu.Mubu.locale.zh-CN.yaml b/manifests/s/Shilihu/Mubu/5.4.1/Shilihu.Mubu.locale.zh-CN.yaml index 8d535aa02935..0664f6e915e6 100644 --- a/manifests/s/Shilihu/Mubu/5.4.1/Shilihu.Mubu.locale.zh-CN.yaml +++ b/manifests/s/Shilihu/Mubu/5.4.1/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.1 -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.1 +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.1/Shilihu.Mubu.yaml b/manifests/s/Shilihu/Mubu/5.4.1/Shilihu.Mubu.yaml index dafb22ec62d5..6415e9cd5481 100644 --- a/manifests/s/Shilihu/Mubu/5.4.1/Shilihu.Mubu.yaml +++ b/manifests/s/Shilihu/Mubu/5.4.1/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.1 -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.1 +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/SmartBear/ReadyAPI/4.0.0/SmartBear.ReadyAPI.installer.yaml b/manifests/s/SmartBear/ReadyAPI/4.0.0/SmartBear.ReadyAPI.installer.yaml new file mode 100644 index 000000000000..4c00f3c98c7d --- /dev/null +++ b/manifests/s/SmartBear/ReadyAPI/4.0.0/SmartBear.ReadyAPI.installer.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: SmartBear.ReadyAPI +PackageVersion: 4.0.0 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: -q -Dinstall4j.suppressUnattendedReboot=true + SilentWithProgress: -q -splash "" -Dinstall4j.suppressUnattendedReboot=true + InstallLocation: -dir "" + Log: -Dinstall4j.log="" +UpgradeBehavior: install +ProductCode: 3080-8797-1984-6034 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.eviware.com/ready-api/4.0.0/ReadyAPI-x64-4.0.0.exe + InstallerSha256: 4AD2F62BF21C7CAEA3F03C517323000451A9CC670E40688C18C2DCD1069C05B5 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/SmartBear/ReadyAPI/4.0.0/SmartBear.ReadyAPI.locale.en-US.yaml b/manifests/s/SmartBear/ReadyAPI/4.0.0/SmartBear.ReadyAPI.locale.en-US.yaml new file mode 100644 index 000000000000..b32f56f4bfc3 --- /dev/null +++ b/manifests/s/SmartBear/ReadyAPI/4.0.0/SmartBear.ReadyAPI.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: SmartBear.ReadyAPI +PackageVersion: 4.0.0 +PackageLocale: en-US +Publisher: SmartBear Software +PublisherUrl: https://smartbear.com/ +PublisherSupportUrl: https://support.smartbear.com/ +PrivacyUrl: https://smartbear.com/privacy/ +Author: SmartBear Software Inc. +PackageName: ReadyAPI +PackageUrl: https://smartbear.com/product/ready-api/ +License: Proprietary +LicenseUrl: https://smartbear.com/terms-of-use/ +Copyright: Copyright (C) 2004-2026 smartbear.com +CopyrightUrl: https://smartbear.com/terms-of-use/ +ShortDescription: A low-code API testing platform for development teams that care about creating test automation across any workflow. +Tags: +- api +- automation +- debug +- develop +- development +- interface +- internet +- network +- request +- response +- rest +- rest-api +- soap +ReleaseNotesUrl: https://support.smartbear.com/readyapi/docs/en/what-s-new/version-history.html +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://support.smartbear.com/testengine/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SmartBear/ReadyAPI/4.0.0/SmartBear.ReadyAPI.locale.zh-CN.yaml b/manifests/s/SmartBear/ReadyAPI/4.0.0/SmartBear.ReadyAPI.locale.zh-CN.yaml new file mode 100644 index 000000000000..400ce1e824db --- /dev/null +++ b/manifests/s/SmartBear/ReadyAPI/4.0.0/SmartBear.ReadyAPI.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: SmartBear.ReadyAPI +PackageVersion: 4.0.0 +PackageLocale: zh-CN +ShortDescription: 为需要在工作流中创建测试自动化的开发团队所打造的低代码 API 测试平台。 +Tags: +- api +- rest +- rest-api +- soap +- 互联网 +- 响应 +- 开发 +- 接口 +- 网络 +- 自动化 +- 请求 +- 调试 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://support.smartbear.com/testengine/docs/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SmartBear/ReadyAPI/4.0.0/SmartBear.ReadyAPI.yaml b/manifests/s/SmartBear/ReadyAPI/4.0.0/SmartBear.ReadyAPI.yaml new file mode 100644 index 000000000000..c817148c684a --- /dev/null +++ b/manifests/s/SmartBear/ReadyAPI/4.0.0/SmartBear.ReadyAPI.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: SmartBear.ReadyAPI +PackageVersion: 4.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.installer.yaml b/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.installer.yaml new file mode 100644 index 000000000000..e5cc533516a5 --- /dev/null +++ b/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.installer.yaml @@ -0,0 +1,24 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: SmartBear.ReadyAPILoadUIAgent +PackageVersion: 4.0.0 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: -q -Dinstall4j.suppressUnattendedReboot=true + SilentWithProgress: -q -splash "" -Dinstall4j.suppressUnattendedReboot=true + InstallLocation: -dir "" + Log: -Dinstall4j.log="" +UpgradeBehavior: install +ProductCode: 9095-5466-5721-4690 +Installers: +- Architecture: x64 + InstallerUrl: https://dl.eviware.com/ready-api/4.0.0/LoadUIAgent-x64-4.0.0.exe + InstallerSha256: 031ABBA0757545023829568044DC85D70ECDF2E621605FAF1A25FF961297D1DA +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.locale.en-US.yaml b/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.locale.en-US.yaml new file mode 100644 index 000000000000..082064e8349c --- /dev/null +++ b/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: SmartBear.ReadyAPILoadUIAgent +PackageVersion: 4.0.0 +PackageLocale: en-US +Publisher: SmartBear Software +PublisherUrl: https://smartbear.com/ +PublisherSupportUrl: https://support.smartbear.com/ +PrivacyUrl: https://smartbear.com/privacy/ +Author: SmartBear Software Inc. +PackageName: ReadyAPI LoadUI Agent +PackageUrl: https://support.smartbear.com/readyapi/docs/en/performance-tests/distributed-load-testing/load-test-agents.html +License: Proprietary +LicenseUrl: https://smartbear.com/terms-of-use/ +Copyright: Copyright (C) 2004-2026 smartbear.com +CopyrightUrl: https://smartbear.com/terms-of-use/ +ShortDescription: Run distributed load tests on any number of Agents +Tags: +- readyapi +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.locale.zh-CN.yaml b/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.locale.zh-CN.yaml new file mode 100644 index 000000000000..ac16f345be09 --- /dev/null +++ b/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.locale.zh-CN.yaml @@ -0,0 +1,9 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: SmartBear.ReadyAPILoadUIAgent +PackageVersion: 4.0.0 +PackageLocale: zh-CN +ShortDescription: 在任意数量的代理上运行分布式负载测试 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.yaml b/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.yaml new file mode 100644 index 000000000000..33c40f4f5c56 --- /dev/null +++ b/manifests/s/SmartBear/ReadyAPILoadUIAgent/4.0.0/SmartBear.ReadyAPILoadUIAgent.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: SmartBear.ReadyAPILoadUIAgent +PackageVersion: 4.0.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/SoftPerfect/NetWorx/26.5/SoftPerfect.NetWorx.installer.yaml b/manifests/s/SoftPerfect/NetWorx/26.5/SoftPerfect.NetWorx.installer.yaml index 37d69ab9e978..576f3ba2ace0 100644 --- a/manifests/s/SoftPerfect/NetWorx/26.5/SoftPerfect.NetWorx.installer.yaml +++ b/manifests/s/SoftPerfect/NetWorx/26.5/SoftPerfect.NetWorx.installer.yaml @@ -10,6 +10,6 @@ ReleaseDate: 2026-05-07 Installers: - Architecture: x64 InstallerUrl: https://www.softperfect.com/download/files/networx_setup.exe - InstallerSha256: F036584F2C7A940558AF833238065AB80F58C90A66F7398D7C31BFB64692842C + InstallerSha256: 31BC5D103F091CEDB58A60643C1F55703135D3F7D6070374D20E816170FC35CB ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/s/SpecialK/SpecialK/26.4.1/SpecialK.SpecialK.installer.yaml b/manifests/s/SpecialK/SpecialK/26.4.1/SpecialK.SpecialK.installer.yaml index a908d4651c26..6a4c08b38e0d 100644 --- a/manifests/s/SpecialK/SpecialK/26.4.1/SpecialK.SpecialK.installer.yaml +++ b/manifests/s/SpecialK/SpecialK/26.4.1/SpecialK.SpecialK.installer.yaml @@ -1,23 +1,23 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: SpecialK.SpecialK -PackageVersion: 26.4.1 -InstallerType: inno -UpgradeBehavior: install -ProductCode: '{F4A43527-9457-424A-90A6-17CF02ACF677}_is1' -Installers: -- Architecture: x64 - Scope: user - InstallerUrl: https://sk-data.special-k.info/repository/SpecialK_26.4.1.exe - InstallerSha256: FDE7D793A402C2230117421530DDA12906365F57340023827F8FF7B2AAC2BB61 - InstallerSwitches: - Custom: /CURRENTUSER -- Architecture: x64 - Scope: machine - InstallerUrl: https://sk-data.special-k.info/repository/SpecialK_26.4.1.exe - InstallerSha256: FDE7D793A402C2230117421530DDA12906365F57340023827F8FF7B2AAC2BB61 - 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: SpecialK.SpecialK +PackageVersion: 26.4.1 +InstallerType: inno +UpgradeBehavior: install +ProductCode: '{F4A43527-9457-424A-90A6-17CF02ACF677}_is1' +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://sk-data.special-k.info/repository/SpecialK_26.4.1.exe + InstallerSha256: 47E681B4868F650CFD6897BDA7D2FB015FD6111B6C3BAF2343C9B1AD1F9EC219 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://sk-data.special-k.info/repository/SpecialK_26.4.1.exe + InstallerSha256: 47E681B4868F650CFD6897BDA7D2FB015FD6111B6C3BAF2343C9B1AD1F9EC219 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/SpecialK/SpecialK/26.4.1/SpecialK.SpecialK.locale.en-US.yaml b/manifests/s/SpecialK/SpecialK/26.4.1/SpecialK.SpecialK.locale.en-US.yaml index 23d792f79746..ce5e097803a8 100644 --- a/manifests/s/SpecialK/SpecialK/26.4.1/SpecialK.SpecialK.locale.en-US.yaml +++ b/manifests/s/SpecialK/SpecialK/26.4.1/SpecialK.SpecialK.locale.en-US.yaml @@ -1,46 +1,46 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: SpecialK.SpecialK -PackageVersion: 26.4.1 -PackageLocale: en-US -Publisher: The Special K Group -PublisherUrl: https://special-k.info/ -PublisherSupportUrl: https://github.com/SpecialKO/SpecialK/issues -PrivacyUrl: https://wiki.special-k.info/Privacy -PackageName: Special K -PackageUrl: https://special-k.info/ -License: GPL-3.0 -LicenseUrl: https://github.com/SpecialKO/SpecialK/blob/HEAD/LICENSE -Copyright: Copyleft 2019-2026 -ShortDescription: The Swiss Army Knife of PC Gaming -Description: Lovingly referred to as the Swiss Army Knife of PC gaming, Special K does a bit of everything. It is best known for fixing and enhancing graphics, its many detailed performance analysis and correction mods, and a constantly growing palette of tools that solve a wide variety of issues affecting PC games. -Moniker: specialk -Tags: -- framerate-fixer -- game -- game-modding -- gaming -- hdr -- hooking -- injection -- latency-analysis -- mod -- reverse-engineering -ReleaseNotes: |- - + Optimized SKIF gamepad input and eliminate spurious input while SKIF is inactive. - + DLSS Frame Generation "Native Pacing" is now on by default, and has Smooth, - Low-Latency and Ultra Low-Latency Modes. - + DLSS Frame Generation pacing reports output framerate instead of native now. - + Flip Metering is now enabled by default for DLSS Frame Generation. - + Added option to prevent the mouse cursor from unhiding the Windows taskbar - when moved to the edge of the screen while SK is locking the cursor to - the game window. - + Workaround GOG Galaxy DRM bug that causes crashes when unlocking achievements. -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://wiki.special-k.info/ -- DocumentLabel: FAQ - DocumentUrl: https://wiki.special-k.info/FAQ -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: SpecialK.SpecialK +PackageVersion: 26.4.1 +PackageLocale: en-US +Publisher: The Special K Group +PublisherUrl: https://special-k.info/ +PublisherSupportUrl: https://github.com/SpecialKO/SpecialK/issues +PrivacyUrl: https://wiki.special-k.info/Privacy +PackageName: Special K +PackageUrl: https://special-k.info/ +License: GPL-3.0 +LicenseUrl: https://github.com/SpecialKO/SpecialK/blob/HEAD/LICENSE +Copyright: Copyleft 2019-2026 +ShortDescription: The Swiss Army Knife of PC Gaming +Description: Lovingly referred to as the Swiss Army Knife of PC gaming, Special K does a bit of everything. It is best known for fixing and enhancing graphics, its many detailed performance analysis and correction mods, and a constantly growing palette of tools that solve a wide variety of issues affecting PC games. +Moniker: specialk +Tags: +- framerate-fixer +- game +- game-modding +- gaming +- hdr +- hooking +- injection +- latency-analysis +- mod +- reverse-engineering +ReleaseNotes: |- + + Optimized SKIF gamepad input and eliminate spurious input while SKIF is inactive. + + DLSS Frame Generation "Native Pacing" is now on by default, and has Smooth, + Low-Latency and Ultra Low-Latency Modes. + + DLSS Frame Generation pacing reports output framerate instead of native now. + + Flip Metering is now enabled by default for DLSS Frame Generation. + + Added option to prevent the mouse cursor from unhiding the Windows taskbar + when moved to the edge of the screen while SK is locking the cursor to + the game window. + + Workaround GOG Galaxy DRM bug that causes crashes when unlocking achievements. +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://wiki.special-k.info/ +- DocumentLabel: FAQ + DocumentUrl: https://wiki.special-k.info/FAQ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SpecialK/SpecialK/26.4.1/SpecialK.SpecialK.locale.zh-CN.yaml b/manifests/s/SpecialK/SpecialK/26.4.1/SpecialK.SpecialK.locale.zh-CN.yaml index 43969cef8e8e..4e9171482986 100644 --- a/manifests/s/SpecialK/SpecialK/26.4.1/SpecialK.SpecialK.locale.zh-CN.yaml +++ b/manifests/s/SpecialK/SpecialK/26.4.1/SpecialK.SpecialK.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: SpecialK.SpecialK -PackageVersion: 26.4.1 -PackageLocale: zh-CN -Publisher: The Special K Group -PublisherUrl: https://special-k.info/ -PublisherSupportUrl: https://github.com/SpecialKO/SpecialK/issues -PrivacyUrl: https://wiki.special-k.info/Privacy -PackageName: Special K -PackageUrl: https://special-k.info/ -License: GPL-3.0 -LicenseUrl: https://github.com/SpecialKO/SpecialK/blob/HEAD/LICENSE -Copyright: Copyleft 2019-2026 -ShortDescription: PC 游戏的瑞士军刀 -Description: Special K 被亲切地称为 PC 游戏的瑞士军刀,它无所不能。其最著名的是修复和增强图形,许多详细的性能分析和修正 MOD,以及不断增加的工具,可解决影响 PC 游戏的各种问题。 -Tags: -- hdr -- 帧率修复 -- 延迟分析 -- 模组 -- 注入 -- 游戏 -- 游戏模组 -- 逆向工程 -- 钩子 -Documentations: -- DocumentLabel: Wiki - DocumentUrl: https://wiki.special-k.info/ -- DocumentLabel: 常见问题 - DocumentUrl: https://wiki.special-k.info/FAQ -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: SpecialK.SpecialK +PackageVersion: 26.4.1 +PackageLocale: zh-CN +Publisher: The Special K Group +PublisherUrl: https://special-k.info/ +PublisherSupportUrl: https://github.com/SpecialKO/SpecialK/issues +PrivacyUrl: https://wiki.special-k.info/Privacy +PackageName: Special K +PackageUrl: https://special-k.info/ +License: GPL-3.0 +LicenseUrl: https://github.com/SpecialKO/SpecialK/blob/HEAD/LICENSE +Copyright: Copyleft 2019-2026 +ShortDescription: PC 游戏的瑞士军刀 +Description: Special K 被亲切地称为 PC 游戏的瑞士军刀,它无所不能。其最著名的是修复和增强图形,许多详细的性能分析和修正 MOD,以及不断增加的工具,可解决影响 PC 游戏的各种问题。 +Tags: +- hdr +- 帧率修复 +- 延迟分析 +- 模组 +- 注入 +- 游戏 +- 游戏模组 +- 逆向工程 +- 钩子 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://wiki.special-k.info/ +- DocumentLabel: 常见问题 + DocumentUrl: https://wiki.special-k.info/FAQ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/s/SpecialK/SpecialK/26.4.1/SpecialK.SpecialK.yaml b/manifests/s/SpecialK/SpecialK/26.4.1/SpecialK.SpecialK.yaml index 35002b7a3b39..dbf31c155d0d 100644 --- a/manifests/s/SpecialK/SpecialK/26.4.1/SpecialK.SpecialK.yaml +++ b/manifests/s/SpecialK/SpecialK/26.4.1/SpecialK.SpecialK.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: SpecialK.SpecialK -PackageVersion: 26.4.1 -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: SpecialK.SpecialK +PackageVersion: 26.4.1 +DefaultLocale: en-US +ManifestType: version +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/StirlingTools/StirlingPDF/2.5.3/StirlingTools.StirlingPDF.installer.yaml b/manifests/s/StirlingTools/StirlingPDF/2.5.3/StirlingTools.StirlingPDF.installer.yaml index 703508e41213..fb5cc7d6b5d8 100644 --- a/manifests/s/StirlingTools/StirlingPDF/2.5.3/StirlingTools.StirlingPDF.installer.yaml +++ b/manifests/s/StirlingTools/StirlingPDF/2.5.3/StirlingTools.StirlingPDF.installer.yaml @@ -1,4 +1,4 @@ -# Created with WinGet Updater 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: StirlingTools.StirlingPDF @@ -18,6 +18,6 @@ InstallationMetadata: Installers: - Architecture: x64 InstallerUrl: https://github.com/Stirling-Tools/Stirling-PDF/releases/download/v2.5.3/Stirling-PDF-windows-x86_64.msi - InstallerSha256: 3EB20BBD4C4B7FD22D062595A42F1E9F7C28E47BE1AD786CAEB9CADE5EE4EFBA + InstallerSha256: 3372AFB6FE338B113FE678151B2E4AAD7C78766F6105E03209916A30B1D8A3C9 ManifestType: installer ManifestVersion: 1.12.0 diff --git a/manifests/s/StirlingTools/StirlingPDF/2.5.3/StirlingTools.StirlingPDF.locale.en-US.yaml b/manifests/s/StirlingTools/StirlingPDF/2.5.3/StirlingTools.StirlingPDF.locale.en-US.yaml index fe74fcd8e515..8ec138e5c3a5 100644 --- a/manifests/s/StirlingTools/StirlingPDF/2.5.3/StirlingTools.StirlingPDF.locale.en-US.yaml +++ b/manifests/s/StirlingTools/StirlingPDF/2.5.3/StirlingTools.StirlingPDF.locale.en-US.yaml @@ -1,4 +1,4 @@ -# Created with WinGet Updater 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: StirlingTools.StirlingPDF @@ -52,4 +52,3 @@ ReleaseNotes: |- ReleaseNotesUrl: https://github.com/Stirling-Tools/Stirling-PDF/releases/tag/v2.5.3 ManifestType: defaultLocale ManifestVersion: 1.12.0 - diff --git a/manifests/s/StirlingTools/StirlingPDF/2.5.3/StirlingTools.StirlingPDF.yaml b/manifests/s/StirlingTools/StirlingPDF/2.5.3/StirlingTools.StirlingPDF.yaml index 07a780ddba0c..05b74e094d5c 100644 --- a/manifests/s/StirlingTools/StirlingPDF/2.5.3/StirlingTools.StirlingPDF.yaml +++ b/manifests/s/StirlingTools/StirlingPDF/2.5.3/StirlingTools.StirlingPDF.yaml @@ -1,4 +1,4 @@ -# Created with WinGet Updater 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: StirlingTools.StirlingPDF diff --git a/manifests/s/Streamlink/Streamlink/8.4.0-1/Streamlink.Streamlink.installer.yaml b/manifests/s/Streamlink/Streamlink/8.4.0-1/Streamlink.Streamlink.installer.yaml new file mode 100644 index 000000000000..2e827a2a34b3 --- /dev/null +++ b/manifests/s/Streamlink/Streamlink/8.4.0-1/Streamlink.Streamlink.installer.yaml @@ -0,0 +1,31 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Streamlink.Streamlink +PackageVersion: 8.4.0-1 +InstallerType: nullsoft +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: Streamlink +ReleaseDate: 2026-05-06 +AppsAndFeaturesEntries: +- ProductCode: Streamlink +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Streamlink' +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/streamlink/windows-builds/releases/download/8.4.0-1/streamlink-8.4.0-1-py314-x86_64.exe + InstallerSha256: A25AF2447B265E297953E3F6016AA3983ACB1411BB349E862BC5BE62BDBA7A33 + InstallerSwitches: + Custom: /CURRENTUSER +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/streamlink/windows-builds/releases/download/8.4.0-1/streamlink-8.4.0-1-py314-x86_64.exe + InstallerSha256: A25AF2447B265E297953E3F6016AA3983ACB1411BB349E862BC5BE62BDBA7A33 + InstallerSwitches: + Custom: /ALLUSERS +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/Streamlink/Streamlink/8.4.0-1/Streamlink.Streamlink.locale.en-US.yaml b/manifests/s/Streamlink/Streamlink/8.4.0-1/Streamlink.Streamlink.locale.en-US.yaml new file mode 100644 index 000000000000..fb955bd1c635 --- /dev/null +++ b/manifests/s/Streamlink/Streamlink/8.4.0-1/Streamlink.Streamlink.locale.en-US.yaml @@ -0,0 +1,46 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Streamlink.Streamlink +PackageVersion: 8.4.0-1 +PackageLocale: en-US +Publisher: Streamlink +PublisherUrl: https://github.com/streamlink +PublisherSupportUrl: https://github.com/streamlink/streamlink/issues +Author: Streamlink +PackageName: Streamlink +PackageUrl: https://streamlink.github.io/ +License: BSD-2-Clause +LicenseUrl: https://github.com/streamlink/windows-builds/blob/HEAD/LICENSE +Copyright: |- + Copyright (c) 2011-2016, Christopher Rosell + Copyright (c) 2016-2026, Streamlink Team + All rights reserved. +CopyrightUrl: https://github.com/streamlink/streamlink/blob/HEAD/LICENSE +ShortDescription: Streamlink is a CLI utility which pipes video streams from various services into a video player, such as VLC. +Description: |- + Streamlink is a command-line utility which pipes video streams from various services into a video player, such as VLC or mpv. The main purpose of Streamlink is to avoid resource-heavy and unoptimized websites, while still allowing the user to enjoy various streamed content. There is also a Python API available for developers who want access to the stream data. + + This project was forked from Livestreamer, which is no longer maintained. +Tags: +- cli +- livestream +- streaming +- streaming-services +- twitch +- vlc +ReleaseNotes: |- + 📝 Changelog + See the full Streamlink 8.4.0 release changelog here. + - Updated Streamlink to 8.4.0 with important security fixes, updated its dependencies + + ⚙️ Instructions + See the README.md for all the details about the installers and portable archives. + Further information can be found in Streamlink's install docs and Command-Line Interface usage guide. + + ❤️ Support + If you think that Streamlink is useful and if you want to keep the project alive, then please consider supporting its maintainers by sending a small and optionally recurring tip via the available options. + Your support is very much appreciated, thank you! +ReleaseNotesUrl: https://github.com/streamlink/windows-builds/releases/tag/8.4.0-1 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/Streamlink/Streamlink/8.4.0-1/Streamlink.Streamlink.yaml b/manifests/s/Streamlink/Streamlink/8.4.0-1/Streamlink.Streamlink.yaml new file mode 100644 index 000000000000..f522003a883b --- /dev/null +++ b/manifests/s/Streamlink/Streamlink/8.4.0-1/Streamlink.Streamlink.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Streamlink.Streamlink +PackageVersion: 8.4.0-1 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/s/sonicboom15/daimon/0.2.8/sonicboom15.daimon.installer.yaml b/manifests/s/sonicboom15/daimon/0.2.8/sonicboom15.daimon.installer.yaml new file mode 100644 index 000000000000..8a42495848f9 --- /dev/null +++ b/manifests/s/sonicboom15/daimon/0.2.8/sonicboom15.daimon.installer.yaml @@ -0,0 +1,17 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: sonicboom15.daimon +PackageVersion: 0.2.8 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: daimon.exe + PortableCommandAlias: daimon +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/sonicboom15/daimon/releases/download/v0.2.8/daimon_0.2.8_windows_amd64.zip + InstallerSha256: 080BE07322107BE77715532E831AB53812930CEB82284CADB5867B76DD67EAE0 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/s/sonicboom15/daimon/0.2.8/sonicboom15.daimon.locale.en-US.yaml b/manifests/s/sonicboom15/daimon/0.2.8/sonicboom15.daimon.locale.en-US.yaml new file mode 100644 index 000000000000..465478955a7c --- /dev/null +++ b/manifests/s/sonicboom15/daimon/0.2.8/sonicboom15.daimon.locale.en-US.yaml @@ -0,0 +1,38 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: sonicboom15.daimon +PackageVersion: 0.2.8 +PackageLocale: en-US +Publisher: sonicboom15 +PublisherUrl: https://github.com/sonicboom15 +PublisherSupportUrl: https://github.com/sonicboom15/daimon/issues +PackageName: daimon +PackageUrl: https://github.com/sonicboom15/daimon +License: Apache-2.0 +LicenseUrl: https://github.com/sonicboom15/daimon/blob/HEAD/LICENSE +ShortDescription: The spirit that runs alongside your AI app. A pluggable sidecar runtime for LLMs, memory, and tools. +ReleaseNotes: |- + Changelog + - e30f3f4: ci: pass WINGET_TOKEN as action input, not env var (@sonicboom15) + Install + macOS / Linux — Homebrew + brew tap sonicboom15/tap + brew install daimon + Windows — Winget + winget install sonicboom15.daimon + Windows — Scoop + scoop bucket add sonicboom15 https://github.com/sonicboom15/scoop-bucket + scoop install daimon + Linux — apt + # Download the .deb from assets below + sudo dpkg -i daimon_0.2.8_linux_amd64.deb + Linux — rpm + # Download the .rpm from assets below + sudo rpm -i daimon_0.2.8_linux_amd64.rpm +ReleaseNotesUrl: https://github.com/sonicboom15/daimon/releases/tag/v0.2.8 +Documentations: +- DocumentLabel: Wiki + DocumentUrl: https://github.com/sonicboom15/daimon/wiki +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/s/sonicboom15/daimon/0.2.8/sonicboom15.daimon.yaml b/manifests/s/sonicboom15/daimon/0.2.8/sonicboom15.daimon.yaml new file mode 100644 index 000000000000..cfdcbcca4333 --- /dev/null +++ b/manifests/s/sonicboom15/daimon/0.2.8/sonicboom15.daimon.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: sonicboom15.daimon +PackageVersion: 0.2.8 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/t/T-Troll/AlienFXTools/9.5.1/T-Troll.AlienFXTools.installer.yaml b/manifests/t/T-Troll/AlienFXTools/9.5.1/T-Troll.AlienFXTools.installer.yaml new file mode 100644 index 000000000000..44bd79bbb1b7 --- /dev/null +++ b/manifests/t/T-Troll/AlienFXTools/9.5.1/T-Troll.AlienFXTools.installer.yaml @@ -0,0 +1,20 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: T-Troll.AlienFXTools +PackageVersion: 9.5.1 +InstallerLocale: en-US +InstallerType: msi +Scope: user +ProductCode: '{909D9874-7FF7-4535-BC9F-3235A3FD550A}' +ReleaseDate: 2026-05-05 +AppsAndFeaturesEntries: +- DisplayVersion: 9.5.100 + ProductCode: '{909D9874-7FF7-4535-BC9F-3235A3FD550A}' + UpgradeCode: '{EFC2D182-AE5E-4585-92D3-0759F77F59AA}' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/T-Troll/alienfx-tools/releases/download/9.5.1/alienfx-tools.msi + InstallerSha256: 3DA7D246E4252A6ECBB8505EF221582D0B00B2E9A258B870B40AA7FB8572381B +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/T-Troll/AlienFXTools/9.5.1/T-Troll.AlienFXTools.locale.en-US.yaml b/manifests/t/T-Troll/AlienFXTools/9.5.1/T-Troll.AlienFXTools.locale.en-US.yaml new file mode 100644 index 000000000000..742654024558 --- /dev/null +++ b/manifests/t/T-Troll/AlienFXTools/9.5.1/T-Troll.AlienFXTools.locale.en-US.yaml @@ -0,0 +1,60 @@ +# Created with komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: T-Troll.AlienFXTools +PackageVersion: 9.5.1 +PackageLocale: en-US +Publisher: T-Troll +PublisherUrl: https://github.com/T-Troll +PublisherSupportUrl: https://discord.gg/XU6UJbN9J5 +Author: T-Troll +PackageName: AlienFX Tools +PackageUrl: https://github.com/T-Troll/alienfx-tools +License: MIT +LicenseUrl: https://github.com/T-Troll/alienfx-tools/blob/HEAD/LICENSE +ShortDescription: Alienware systems lights, fans, and power control tools and apps +Description: AWCC alternative in 500kb. You can control your system lights (including hardware and software effects such as system parameters monitoring, ambient lights, sound haptic), fans, temperatures, power settings, and a lot more. +Moniker: AlienFX-Tools +Tags: +- alienfx +- alienfx-usb-controller +- alienware +- alienware-computer +- alienware-fans +- cli +- cplusplus +- fan-control +- gui +- light-control +- lighting-effects +- power-control +- windows-10 +ReleaseNotes: |- + Important! If you are using tools for the first time, please read the Beginner's guide and AlienFX-GUI readme to configure its concept and operation principle. + Fan-SDK_V1.zip has binaries built against older fan control versions; use it only in case you know what you're doing (or have Aurora R7), Check the readme file inside the archive first to configure it to work! + Changes in this release: + AlienFX-GUI, AlienFan-GUI: + - Tray tooltip reworked: + - It now shows fan RPM percent instead of bare RPMs (a more compact view for longer descriptions). + - Bug fixed: The tool crashed for a very long fan list (e.g., a desktop system with a lot of fans). + AlienFX-GUI: + - Bug fixed: The tool crashed if the first profile was active and removed using the "Profiles" tab's profile remove function. + - Bug fixed: The tool crashed at start if an active profile was not found (e.g., after the situation described above). In this case, a new profile will be created (and can be deleted later at the "Profiles" tab). +ReleaseNotesUrl: https://github.com/T-Troll/alienfx-tools/releases/tag/9.5.1 +Documentations: +- DocumentLabel: AlienFX Control Application (CLI) + DocumentUrl: https://github.com/T-Troll/alienfx-tools/blob/master/Doc/alienfx-cli.md +- DocumentLabel: AlienFX Control application + DocumentUrl: https://github.com/T-Troll/alienfx-tools/blob/master/Doc/alienfx-gui.md +- DocumentLabel: AlienFX Monitor + DocumentUrl: https://github.com/T-Troll/alienfx-tools/blob/master/Doc/alienfx-mon.md +- DocumentLabel: AlienFan Control + DocumentUrl: https://github.com/T-Troll/alienfx-tools/blob/master/Doc/alienfan-gui.md +- DocumentLabel: AlienFan Control (CLI) + DocumentUrl: https://github.com/T-Troll/alienfx-tools/blob/master/Doc/alienfan-cli.md +- DocumentLabel: Beginner's guide + DocumentUrl: https://github.com/T-Troll/alienfx-tools/wiki/How-to-start-(Beginner's-guide) +- DocumentLabel: LightFX emulator + DocumentUrl: https://github.com/T-Troll/alienfx-tools/blob/master/Doc/LightFX.md +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/a/Argente/RegistryCleaner/4.0.7.2/Argente.RegistryCleaner.yaml b/manifests/t/T-Troll/AlienFXTools/9.5.1/T-Troll.AlienFXTools.yaml similarity index 71% rename from manifests/a/Argente/RegistryCleaner/4.0.7.2/Argente.RegistryCleaner.yaml rename to manifests/t/T-Troll/AlienFXTools/9.5.1/T-Troll.AlienFXTools.yaml index f90954f89d72..0898c285a937 100644 --- a/manifests/a/Argente/RegistryCleaner/4.0.7.2/Argente.RegistryCleaner.yaml +++ b/manifests/t/T-Troll/AlienFXTools/9.5.1/T-Troll.AlienFXTools.yaml @@ -1,8 +1,8 @@ # Created with komac v2.16.0 # yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json -PackageIdentifier: Argente.RegistryCleaner -PackageVersion: 4.0.7.2 +PackageIdentifier: T-Troll.AlienFXTools +PackageVersion: 9.5.1 DefaultLocale: en-US ManifestType: version ManifestVersion: 1.12.0 diff --git a/manifests/t/TandemHealth/Tandem/MSI/.validation b/manifests/t/TandemHealth/Tandem/MSI/.validation new file mode 100644 index 000000000000..9ac1993837cc --- /dev/null +++ b/manifests/t/TandemHealth/Tandem/MSI/.validation @@ -0,0 +1 @@ +{"ValidationVersion":"1.0.0","Waivers":[{"WaiverId":"977ee3a1-e6eb-4214-93e2-0b00d31d15c3","TestPlan":"Policy-Test-2.9","PackagePath":"manifests/t/TandemHealth/Tandem/MSI/26.03.10","CommitId":"8cc7b28f0adf21f75e6c6cba887ed4dbf68e0457"}],"InstallationVerification":{"Executables":[]}} \ No newline at end of file diff --git a/manifests/t/TandemHealth/Tandem/MSI/26.03.10/TandemHealth.Tandem.MSI.locale.no.yaml b/manifests/t/TandemHealth/Tandem/MSI/26.03.10/TandemHealth.Tandem.MSI.locale.nb-NO.yaml similarity index 91% rename from manifests/t/TandemHealth/Tandem/MSI/26.03.10/TandemHealth.Tandem.MSI.locale.no.yaml rename to manifests/t/TandemHealth/Tandem/MSI/26.03.10/TandemHealth.Tandem.MSI.locale.nb-NO.yaml index deff482ca8c1..1ec1311ea11b 100644 --- a/manifests/t/TandemHealth/Tandem/MSI/26.03.10/TandemHealth.Tandem.MSI.locale.no.yaml +++ b/manifests/t/TandemHealth/Tandem/MSI/26.03.10/TandemHealth.Tandem.MSI.locale.nb-NO.yaml @@ -1,9 +1,8 @@ -# Created with YamlCreate.ps1 Dumplings Mod # yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json PackageIdentifier: TandemHealth.Tandem.MSI PackageVersion: 26.03.10 -PackageLocale: "no" +PackageLocale: nb-NO PublisherUrl: https://tandemhealth.ai/no/ PrivacyUrl: https://tandemhealth.ai/no/juridisk/personvern PackageUrl: https://tandemhealth.ai/no/produkt/nedlastinger diff --git a/manifests/t/Thunder/Thunder/12.4.9.3916/Thunder.Thunder.installer.yaml b/manifests/t/Thunder/Thunder/12.4.9.3916/Thunder.Thunder.installer.yaml index 045324f06451..14f74c80f51a 100644 --- a/manifests/t/Thunder/Thunder/12.4.9.3916/Thunder.Thunder.installer.yaml +++ b/manifests/t/Thunder/Thunder/12.4.9.3916/Thunder.Thunder.installer.yaml @@ -1,38 +1,38 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: Thunder.Thunder -PackageVersion: 12.4.9.3916 -InstallerType: exe -Scope: machine -InstallModes: -- interactive -- silent -InstallerSwitches: - Silent: /S - SilentWithProgress: /S - InstallLocation: /InstallPath:"" - Upgrade: /LiveUpdate -ExpectedReturnCodes: -- InstallerReturnCode: -101 - ReturnResponse: installInProgress -UpgradeBehavior: install -Protocols: -- ed2k -- magnet -- thunder -- thunderx -FileExtensions: -- downlist -- td -- thunderskin -- torrent -- xlb -- xltd -ProductCode: thunder_is1 -Installers: -- Architecture: x86 - InstallerUrl: https://down.sandai.net/thunder11/XunLeiSetup12.4.9.3916.exe - InstallerSha256: 42604E9003DF153465EC17937C996FBA65D772D1B91B7874ACBB0E5FBF739236 -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: Thunder.Thunder +PackageVersion: 12.4.9.3916 +InstallerType: exe +Scope: machine +InstallModes: +- interactive +- silent +InstallerSwitches: + Silent: /S + SilentWithProgress: /S + InstallLocation: /InstallPath:"" + Upgrade: /LiveUpdate +ExpectedReturnCodes: +- InstallerReturnCode: -101 + ReturnResponse: installInProgress +UpgradeBehavior: install +Protocols: +- ed2k +- magnet +- thunder +- thunderx +FileExtensions: +- downlist +- td +- thunderskin +- torrent +- xlb +- xltd +ProductCode: thunder_is1 +Installers: +- Architecture: x86 + InstallerUrl: https://down.sandai.net/thunder11/XunLeiSetup12.4.9.3916.exe + InstallerSha256: C57339A3833D4121A997CA1706E34DE2EF27A4BD0CF766AD54A811A8FEB7C53C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/Thunder/Thunder/12.4.9.3916/Thunder.Thunder.locale.en-US.yaml b/manifests/t/Thunder/Thunder/12.4.9.3916/Thunder.Thunder.locale.en-US.yaml index 05b3612029af..4856f8587246 100644 --- a/manifests/t/Thunder/Thunder/12.4.9.3916/Thunder.Thunder.locale.en-US.yaml +++ b/manifests/t/Thunder/Thunder/12.4.9.3916/Thunder.Thunder.locale.en-US.yaml @@ -1,31 +1,31 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: Thunder.Thunder -PackageVersion: 12.4.9.3916 -PackageLocale: en-US -Publisher: 迅雷网络技术有限公司 -PublisherUrl: https://www.xunlei.com -PublisherSupportUrl: https://bbs.xunlei.com -PrivacyUrl: https://i.xunlei.com/policy/privacy.html -Author: Thunderbolt Network Technology Co., Ltd. -PackageName: 迅雷 -PackageUrl: https://pc.xunlei.com/ -License: Proprietary -LicenseUrl: https://i.xunlei.com/policy/agreement.html -Copyright: © 2003-2026 Xunlei Networking Technologies LTD -ShortDescription: Broadband Download, Thunder in a Flash! -Moniker: xunlei -Tags: -- bittorrent -- bt -- download -- downloader -- ed2k -- emule -- magnet -- p2p -- torrent -PurchaseUrl: https://vip.xunlei.com/index-new.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: Thunder.Thunder +PackageVersion: 12.4.9.3916 +PackageLocale: en-US +Publisher: 迅雷网络技术有限公司 +PublisherUrl: https://www.xunlei.com +PublisherSupportUrl: https://bbs.xunlei.com +PrivacyUrl: https://i.xunlei.com/policy/privacy.html +Author: Thunderbolt Network Technology Co., Ltd. +PackageName: 迅雷 +PackageUrl: https://pc.xunlei.com/ +License: Proprietary +LicenseUrl: https://i.xunlei.com/policy/agreement.html +Copyright: © 2003-2026 Xunlei Networking Technologies LTD +ShortDescription: Broadband Download, Thunder in a Flash! +Moniker: xunlei +Tags: +- bittorrent +- bt +- download +- downloader +- ed2k +- emule +- magnet +- p2p +- torrent +PurchaseUrl: https://vip.xunlei.com/index-new.html +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/Thunder/Thunder/12.4.9.3916/Thunder.Thunder.locale.zh-CN.yaml b/manifests/t/Thunder/Thunder/12.4.9.3916/Thunder.Thunder.locale.zh-CN.yaml index f9ccfb452be8..84831e5801f8 100644 --- a/manifests/t/Thunder/Thunder/12.4.9.3916/Thunder.Thunder.locale.zh-CN.yaml +++ b/manifests/t/Thunder/Thunder/12.4.9.3916/Thunder.Thunder.locale.zh-CN.yaml @@ -1,29 +1,29 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: Thunder.Thunder -PackageVersion: 12.4.9.3916 -PackageLocale: zh-CN -Publisher: 迅雷网络技术有限公司 -PublisherUrl: https://www.xunlei.com -PublisherSupportUrl: https://bbs.xunlei.com -PrivacyUrl: https://i.xunlei.com/policy/privacy.html -Author: 深圳市迅雷网络技术有限公司 -PackageName: 迅雷 -PackageUrl: https://pc.xunlei.com/ -License: 专有软件 -LicenseUrl: https://i.xunlei.com/policy/agreement.html -Copyright: © 2003-2026 深圳市迅雷网络技术有限公司 -ShortDescription: 宽带下载,迅雷不及掩耳 -Tags: -- ed2k -- emule -- p2p -- 下载 -- 下载器 -- 磁力链接 -- 磁链 -- 种子 -PurchaseUrl: https://vip.xunlei.com/index-new.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: Thunder.Thunder +PackageVersion: 12.4.9.3916 +PackageLocale: zh-CN +Publisher: 迅雷网络技术有限公司 +PublisherUrl: https://www.xunlei.com +PublisherSupportUrl: https://bbs.xunlei.com +PrivacyUrl: https://i.xunlei.com/policy/privacy.html +Author: 深圳市迅雷网络技术有限公司 +PackageName: 迅雷 +PackageUrl: https://pc.xunlei.com/ +License: 专有软件 +LicenseUrl: https://i.xunlei.com/policy/agreement.html +Copyright: © 2003-2026 深圳市迅雷网络技术有限公司 +ShortDescription: 宽带下载,迅雷不及掩耳 +Tags: +- ed2k +- emule +- p2p +- 下载 +- 下载器 +- 磁力链接 +- 磁链 +- 种子 +PurchaseUrl: https://vip.xunlei.com/index-new.html +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/t/Thunder/Thunder/12.4.9.3916/Thunder.Thunder.yaml b/manifests/t/Thunder/Thunder/12.4.9.3916/Thunder.Thunder.yaml index d1241772ae21..338345a586ee 100644 --- a/manifests/t/Thunder/Thunder/12.4.9.3916/Thunder.Thunder.yaml +++ b/manifests/t/Thunder/Thunder/12.4.9.3916/Thunder.Thunder.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: Thunder.Thunder -PackageVersion: 12.4.9.3916 -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: Thunder.Thunder +PackageVersion: 12.4.9.3916 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/t/TorProject/TorBrowser/15.0.12/TorProject.TorBrowser.installer.yaml b/manifests/t/TorProject/TorBrowser/15.0.12/TorProject.TorBrowser.installer.yaml new file mode 100644 index 000000000000..c789cf35d3e1 --- /dev/null +++ b/manifests/t/TorProject/TorBrowser/15.0.12/TorProject.TorBrowser.installer.yaml @@ -0,0 +1,28 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: TorProject.TorBrowser +PackageVersion: 15.0.12 +InstallerType: nullsoft +Scope: user +InstallModes: +- silent +UpgradeBehavior: install +Protocols: +- http +- https +FileExtensions: +- htm +- html +ReleaseDate: 2026-05-07 +InstallationMetadata: + DefaultInstallLocation: Desktop\Tor Browser +Installers: +- Architecture: x86 + InstallerUrl: https://archive.torproject.org/tor-package-archive/torbrowser/15.0.12/tor-browser-windows-i686-portable-15.0.12.exe + InstallerSha256: D82AC01E3BF5193EFB7AAA0BEB50621CD314628237F70DE5ED03A31B6641BC8B +- Architecture: x64 + InstallerUrl: https://archive.torproject.org/tor-package-archive/torbrowser/15.0.12/tor-browser-windows-x86_64-portable-15.0.12.exe + InstallerSha256: 856D7192969115523C1E93391FC3389D612B31CF01E155284FD8BF6F0E783CDB +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/TorProject/TorBrowser/15.0.12/TorProject.TorBrowser.locale.en-US.yaml b/manifests/t/TorProject/TorBrowser/15.0.12/TorProject.TorBrowser.locale.en-US.yaml new file mode 100644 index 000000000000..784c3a7cac60 --- /dev/null +++ b/manifests/t/TorProject/TorBrowser/15.0.12/TorProject.TorBrowser.locale.en-US.yaml @@ -0,0 +1,52 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: TorProject.TorBrowser +PackageVersion: 15.0.12 +PackageLocale: en-US +Publisher: Tor Project +PublisherUrl: https://www.torproject.org/ +PublisherSupportUrl: https://support.torproject.org/ +Author: Tor Project +PackageName: Tor Browser +PackageUrl: https://www.torproject.org/ +License: MPL-2.0 +LicenseUrl: https://support.torproject.org/about/distribute-tor/ +ShortDescription: Protect yourself against tracking, surveillance, and censorship. +Description: The Tor software protects you by bouncing your communications around a distributed network of relays run by volunteers all around the world, it prevents somebody watching your Internet connection from learning what sites you visit, it prevents the sites you visit from learning your physical location, and it lets you access sites which are blocked. +Moniker: tor-browser +Tags: +- anonymity +- browser +- cross-platform +- foss +- gecko +- network +- open-source +- privacy +- relay +- security +- tor +- web-browser +ReleaseNotes: |- + Changelog + All Platforms + - Updated tor to 0.4.9.7 + - Bug tor-browser#44940: Rebase Tor Browser stable onto 140.10.2esr + Windows + macOS + Linux + - Updated Firefox to 140.10.2esr + - Bug tor-browser#44746: Funding the Commons Implementation (Desktop) + Android + - Updated GeckoView to 140.10.2esr + - Bug tor-browser#44747: Funding the Commons Implementation (Android) + Build System + All Platforms + - Bug tor-browser-build#41781: Fix clean section in rbm.local.conf.example +ReleaseNotesUrl: https://blog.torproject.org/new-release-tor-browser-15012 +Documentations: +- DocumentLabel: Glossary + DocumentUrl: https://support.torproject.org/glossary/ +- DocumentLabel: User Manual + DocumentUrl: https://tb-manual.torproject.org/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/TorProject/TorBrowser/15.0.12/TorProject.TorBrowser.yaml b/manifests/t/TorProject/TorBrowser/15.0.12/TorProject.TorBrowser.yaml new file mode 100644 index 000000000000..523308900a3a --- /dev/null +++ b/manifests/t/TorProject/TorBrowser/15.0.12/TorProject.TorBrowser.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: TorProject.TorBrowser +PackageVersion: 15.0.12 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tutanota/Tutanota/348.260506.0/Tutanota.Tutanota.installer.yaml b/manifests/t/Tutanota/Tutanota/348.260506.0/Tutanota.Tutanota.installer.yaml new file mode 100644 index 000000000000..c9c42cb7d4a3 --- /dev/null +++ b/manifests/t/Tutanota/Tutanota/348.260506.0/Tutanota.Tutanota.installer.yaml @@ -0,0 +1,27 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Tutanota.Tutanota +PackageVersion: 348.260506.0 +InstallerType: nullsoft +InstallModes: +- interactive +- silent +UpgradeBehavior: install +ProductCode: 450699d2-1c81-5ee5-aec6-08dddb7af9d7 +ReleaseDate: 2026-05-07 +AppsAndFeaturesEntries: +- DisplayName: Tuta Mail 348.260506.0 + ProductCode: 450699d2-1c81-5ee5-aec6-08dddb7af9d7 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://github.com/tutao/tutanota/releases/download/tutanota-desktop-release-348.260506.0/tutanota-desktop-win.exe + InstallerSha256: 6A0B4B4E3D13959E24B732AE358993D8CF8FFA3B09735086DEE6804058843972 +- Architecture: x64 + Scope: machine + InstallerUrl: https://github.com/tutao/tutanota/releases/download/tutanota-desktop-release-348.260506.0/tutanota-desktop-win.exe + InstallerSha256: 6A0B4B4E3D13959E24B732AE358993D8CF8FFA3B09735086DEE6804058843972 + ElevationRequirement: elevatesSelf +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tutanota/Tutanota/348.260506.0/Tutanota.Tutanota.locale.en-US.yaml b/manifests/t/Tutanota/Tutanota/348.260506.0/Tutanota.Tutanota.locale.en-US.yaml new file mode 100644 index 000000000000..47d2825a2708 --- /dev/null +++ b/manifests/t/Tutanota/Tutanota/348.260506.0/Tutanota.Tutanota.locale.en-US.yaml @@ -0,0 +1,79 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: Tutanota.Tutanota +PackageVersion: 348.260506.0 +PackageLocale: en-US +Publisher: Tutao GmbH +PublisherUrl: https://tuta.com/ +PublisherSupportUrl: https://github.com/tutao/tutanota/issues +Author: Tutao GmbH +PackageName: Tutanota Desktop +PackageUrl: https://github.com/tutao/tutanota +License: GPL-3.0 +LicenseUrl: https://github.com/tutao/tutanota/blob/HEAD/LICENSE.txt +Copyright: Copyright © 2022 Tutao GmbH +ShortDescription: Tutanota is an email client with a strong focus on security and privacy that lets you encrypt emails on all your devices. +Description: |- + Tutanota is the worlds most secure email service, easy to use and private by design. + With end-to-end encryption and 2FA, your emails have never been more secure. + The built-in encryption guarantees that your mailbox belongs to you. + Nobody can decrypt or read your data. +Moniker: tutanota +Tags: +- calendar +- email +- email-client +- encryption +- end-to-end-encryption +- privacy +- private +- secure +ReleaseNotes: |- + What's new + - Change mark unread behavior to only mark the latest mail in the current list when list is set to group by conversation #9545 + - Add "Reapply inbox rules" action to Settings > Email > Inbox rules #10461 + - Enforcing password change should apply to new users #10458 + - Allow navigating to Settings > Email > Undo send using Quick Actions #10492 + - Improvements to similar contact name comparison #10497 + - Ignore extra whitespace when comparing contacts for merging #10497 + - Too much empty space in the MailViewerHeader when the sender name isn't set #9547 + - Always pass id encoding when comparing ids of entities #10746 + - Update Request Size Limit Map #10523 + - Update Electron to v42.0.0 + + Bugfixes + - Incorrect counters caused by counter fixup while client is still syncing #10761 + - Index quick extend action does nothing on Free Accounts #10700 + - Search URL is not updated when viewing different mails in the list #10674 + - Cannot set offline range date more than 20 years from settings #10673 + - Uncaught Illegal key length error when entering incorrect Recovery Key #10602 + - Inbox rule priority not respected when "Never send it to spam" is unchecked #10598 + - Drafted email will not delete #10522 + - No contact found when viewing a contact list entry if the contact's email address has uppercase characters #10499 + - Invalid SpellCheckerDictionaryDownloadURL when updateUrl isn't set #10490 + - Spellchecker doesn't work on first launch until spellcheck language is changed #10487 + - ProgrammingError when loading mailDetailsBlob immediately after sending a draft #10476 + - Be able to properly undo deleted inline image #10468 + - Check for email count text is not correct #10467 + - [windows] EPERM, Permission denied error when setting Default mail handler #10435 + - Mac client update fails when the client is ran from a read-only volume #10185 + - Unset repository url error during custom desktop release #10465 + + Milestone + https://github.com/tutao/tutanota/milestone/422?closed=1 + + Asset Checksums (SHA256) + tutanota-desktop-linux.AppImage: + 4b3842d9917ad127d7ba0a5be11187576ea3b5746aaaece7cef82bfe1f225327 + tutanota-desktop-win.exe: + 6a0b4b4e3d13959e24b732ae358993d8cf8ffa3b09735086dee6804058843972 + tutanota-desktop-mac.dmg: + 240f49ee8bc9b00e80454b8e8645c8cb65146d2d851646766bc97eed4c003ea8 +ReleaseNotesUrl: https://github.com/tutao/tutanota/releases/tag/tutanota-desktop-release-348.260506.0 +PurchaseUrl: https://tutanota.com/pricing +Documentations: +- DocumentLabel: FAQ + DocumentUrl: https://tutanota.com/faq +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/Tutanota/Tutanota/348.260506.0/Tutanota.Tutanota.yaml b/manifests/t/Tutanota/Tutanota/348.260506.0/Tutanota.Tutanota.yaml new file mode 100644 index 000000000000..9c9f02de69c2 --- /dev/null +++ b/manifests/t/Tutanota/Tutanota/348.260506.0/Tutanota.Tutanota.yaml @@ -0,0 +1,8 @@ +# Created by Anthelion using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: Tutanota.Tutanota +PackageVersion: 348.260506.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/t/t8y2/DBX/0.4.3/t8y2.DBX.installer.yaml b/manifests/t/t8y2/DBX/0.4.3/t8y2.DBX.installer.yaml new file mode 100644 index 000000000000..572190b13741 --- /dev/null +++ b/manifests/t/t8y2/DBX/0.4.3/t8y2.DBX.installer.yaml @@ -0,0 +1,26 @@ +# Created with WinGet Tracker using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: t8y2.DBX +PackageVersion: 0.4.3 +InstallerLocale: en-US +InstallerType: nullsoft +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: DBX +ReleaseDate: 2026-05-07 +AppsAndFeaturesEntries: +- Publisher: dbx + ProductCode: DBX +InstallationMetadata: + DefaultInstallLocation: '%LocalAppData%\DBX' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/t8y2/dbx/releases/download/v0.4.3/DBX_0.4.3_x64-setup.exe + InstallerSha256: 32489B6AED9FB86DF8923BD7C513E6A5F85841F01CCE38FDB2D4204DC9D6E82C +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/t/t8y2/DBX/0.4.3/t8y2.DBX.locale.en-US.yaml b/manifests/t/t8y2/DBX/0.4.3/t8y2.DBX.locale.en-US.yaml new file mode 100644 index 000000000000..1e754c824c69 --- /dev/null +++ b/manifests/t/t8y2/DBX/0.4.3/t8y2.DBX.locale.en-US.yaml @@ -0,0 +1,111 @@ +# Created with WinGet Tracker using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: t8y2.DBX +PackageVersion: 0.4.3 +PackageLocale: en-US +Publisher: t8y2 +PublisherUrl: https://github.com/t8y2 +PublisherSupportUrl: https://github.com/t8y2/dbx/issues +Author: t8y2 +PackageName: DBX +PackageUrl: https://github.com/t8y2/dbx +License: AGPL-3.0 +LicenseUrl: https://github.com/t8y2/dbx/blob/HEAD/LICENSE +ShortDescription: 15MB,lightweight, cross-platform database client. Supports MySQL, PostgreSQL, SQLite, Redis, MongoDB, DuckDB, ClickHouse, SQL Server and more. +Tags: +- clickhouse +- database +- database-client +- database-management +- duckdb +- gui +- mongodb +- mysql +- postgresql +- redis +- rust +- sql-server +- sqlite +- tauri +- vue +ReleaseNotes: |- + 新功能 + - 结果集数据编辑 — 当查询为单表且包含主键时,可以在查询结果集中双击单元格直接修改数据,修改以事务形式提交或回滚 (contributed by @rarnu) + - 设置默认数据库 — 支持在数据库树和顶部选择区域设置/取消默认数据库,新建查询时优先使用默认数据库 (contributed by @Bacon2994) + - Elasticsearch REST 查询 — SQL 编辑器支持对 Elasticsearch 执行 REST 风格查询 + - SQL 编辑器 Ctrl+点击 — 在 SQL 编辑器中按住 Ctrl(Mac 为 Cmd)点击表名查看建表 DDL,点击列名查看列信息 (contributed by @rarnu) + - 达梦数据库支持 — 新增 DM(达梦)数据库 ODBC 连接支持 + - GaussDB 原生驱动 — GaussDB/openGauss 从 ODBC 切换为原生 Rust 驱动,连接更稳定、无需额外安装 ODBC 驱动 + - 侧栏表管理菜单 — 侧栏表/视图右键菜单新增截断、删除、复制名称等管理操作 + - 数据迁移 Upsert 模式 — 数据迁移支持 Upsert 模式,遇到主键冲突时自动更新而非报错 + - 侧栏模糊搜索 — 表和 Schema 筛选支持模糊搜索 + - AI 助手 Markdown 渲染 — AI 助手回复内容支持 Markdown 格式渲染 + 改进 + - BigInt 精度保持 — 超出 JavaScript 安全整数范围的 BigInt 值不再丢失精度 + - 更新体验优化 — 更新对话框在下载和安装期间锁定,release notes 以 Markdown 格式渲染 + - 事务执行可靠性 — 修复事务内多条语句可能在不同连接上执行的问题,BEGIN 失败时直接报错而非静默降级 + 修复 + - macOS 应用无法打开 — 修复 macOS 版本安装后无法启动的问题,正确打包 ODBC 动态库 + - PostgreSQL 补全异常 — 修复 PostgreSQL 自动补全失败后导致所有后续补全都不可用的问题 + - SQL Server Unicode — 修复 SQL Server i16 列元数据处理和 Unicode 字符串缺少 N'' 前缀的问题 + - 分页排序丢失 — 修复翻页后排序顺序被重置的问题 + - CSV 导出中文 — CSV 导出添加 UTF-8 BOM,修复 Excel 打开中文乱码 + - 查询错误提示 — 查询错误改为弹窗提示,不再作为表格行显示 + - Oracle 连接修复 — 修复 Oracle bit vector buffer 溢出问题 + - GaussDB 连接迁移 — 旧版 GaussDB/openGauss 连接自动迁移到原生驱动 + - Oracle/达梦 Schema 过滤 — 过滤 Oracle 和达梦的系统 Schema,侧栏只显示用户 Schema + 下载安装 + 系统要求 + ────────┬──────────────────────────────┬─────────────────────────────────── + 操作系统│最低版本 │架构 + ────────┼──────────────────────────────┼─────────────────────────────────── + Windows │Windows 10 或更高版本 │x64 + ────────┼──────────────────────────────┼─────────────────────────────────── + macOS │macOS 12 (Monterey) 或更高版本│Intel (x64) / Apple Silicon (arm64) + ────────┼──────────────────────────────┼─────────────────────────────────── + Linux │见下表 │x64 + ────────┴──────────────────────────────┴─────────────────────────────────── + Windows + ───────────────────────┬──────────────────────────────── + 文件 │说明 + ───────────────────────┼──────────────────────────────── + DBX_0.4.3_x64-setup.exe│推荐 — NSIS 安装包,支持自动更新 + ───────────────────────┼──────────────────────────────── + DBX_0.4.3_x64_en-US.msi│MSI 安装包,适用于企业部署 + ───────────────────────┴──────────────────────────────── + Scoop: + scoop bucket add dbx https://github.com/t8y2/scoop-bucket + scoop install dbx + 更新: + scoop update dbx + macOS + ─────────────────────┬───────────────────────────────────────── + 文件 │说明 + ─────────────────────┼───────────────────────────────────────── + DBX_0.4.3_aarch64.dmg│推荐 — 适用于 Apple Silicon (M1/M2/M3/M4) + ─────────────────────┼───────────────────────────────────────── + DBX_0.4.3_x64.dmg │适用于 Intel Mac + ─────────────────────┴───────────────────────────────────────── + Homebrew: + brew install --cask t8y2/tap/dbx + 更新: + brew upgrade --cask t8y2/tap/dbx + Linux + ──────────────────────────────────────┬─────────┬───────────────────────────────────────────────────── + 发行版 │推荐格式 │安装方式 + ──────────────────────────────────────┼─────────┼───────────────────────────────────────────────────── + Ubuntu / Debian / Linux Mint / Pop!_OS│.deb │sudo dpkg -i DBX_*.deb 或 sudo apt install + │ │./DBX_*.deb + ──────────────────────────────────────┼─────────┼───────────────────────────────────────────────────── + Fedora / RHEL / CentOS / Rocky Linux │.rpm │sudo rpm -i DBX-*.rpm 或 sudo dnf install ./DBX-*.rpm + ──────────────────────────────────────┼─────────┼───────────────────────────────────────────────────── + openSUSE │.rpm │sudo zypper install ./DBX-*.rpm + ──────────────────────────────────────┼─────────┼───────────────────────────────────────────────────── + Arch Linux / Manjaro │.AppImage│添加执行权限后运行 + ──────────────────────────────────────┼─────────┼───────────────────────────────────────────────────── + 其他发行版 │.AppImage│chmod +x DBX_*.AppImage && ./DBX_*.AppImage + ──────────────────────────────────────┴─────────┴───────────────────────────────────────────────────── +ReleaseNotesUrl: https://github.com/t8y2/dbx/releases/tag/v0.4.3 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/t/t8y2/DBX/0.4.3/t8y2.DBX.yaml b/manifests/t/t8y2/DBX/0.4.3/t8y2.DBX.yaml new file mode 100644 index 000000000000..e294d8cc1aac --- /dev/null +++ b/manifests/t/t8y2/DBX/0.4.3/t8y2.DBX.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Tracker using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: t8y2.DBX +PackageVersion: 0.4.3 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/t/tisun2/OofManager/1.0.10/tisun2.OofManager.installer.yaml b/manifests/t/tisun2/OofManager/1.0.10/tisun2.OofManager.installer.yaml new file mode 100644 index 000000000000..5163142531c1 --- /dev/null +++ b/manifests/t/tisun2/OofManager/1.0.10/tisun2.OofManager.installer.yaml @@ -0,0 +1,22 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.10.0.schema.json + +PackageIdentifier: tisun2.OofManager +PackageVersion: 1.0.10 +MinimumOSVersion: 10.0.0.0 +InstallerType: inno +Scope: user +InstallModes: + - interactive + - silent + - silentWithProgress +InstallerSwitches: + Silent: /VERYSILENT /SUPPRESSMSGBOXES /NORESTART + SilentWithProgress: /SILENT /SUPPRESSMSGBOXES /NORESTART +UpgradeBehavior: install +ReleaseDate: 2026-05-07 +Installers: + - Architecture: x64 + InstallerUrl: https://github.com/tisun2/OofManager/releases/download/v1.0.10/OofManagerSetup.exe + InstallerSha256: 685C1B826C8E92C4B4E5785A4064BC2C9ACEA8426EFAFA8F1294F28179217980 +ManifestType: installer +ManifestVersion: 1.10.0 diff --git a/manifests/t/tisun2/OofManager/1.0.10/tisun2.OofManager.locale.en-US.yaml b/manifests/t/tisun2/OofManager/1.0.10/tisun2.OofManager.locale.en-US.yaml new file mode 100644 index 000000000000..b9b36d1980bf --- /dev/null +++ b/manifests/t/tisun2/OofManager/1.0.10/tisun2.OofManager.locale.en-US.yaml @@ -0,0 +1,32 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.10.0.schema.json + +PackageIdentifier: tisun2.OofManager +PackageVersion: 1.0.10 +PackageLocale: en-US +Publisher: tisun2 +PublisherUrl: https://github.com/tisun2 +PublisherSupportUrl: https://github.com/tisun2/OofManager/issues +PackageName: OOF Manager +PackageUrl: https://github.com/tisun2/OofManager +License: MIT +LicenseUrl: https://github.com/tisun2/OofManager/blob/main/LICENSE +Copyright: Copyright (c) tisun2 +ShortDescription: Manage Microsoft 365 / Exchange Online Out-of-Office (Automatic Reply) settings without opening Outlook. +Description: |- + OOF Manager is a lightweight Windows desktop tool that manages your Microsoft 365 mailbox's + Out-of-Office (Automatic Reply) state for you. Sign in once, configure your weekly work hours + and reply text, and OOF Manager auto-toggles your OOF on/off at the schedule boundaries. + It also pushes the next off-hours window to Exchange as a Scheduled OOF, so the server keeps + switching auto-replies even when this app is closed. +Moniker: oofmanager +Tags: + - exchange + - microsoft-365 + - office-365 + - out-of-office + - oof + - outlook + - autoreply +ReleaseNotesUrl: https://github.com/tisun2/OofManager/releases/tag/v1.0.10 +ManifestType: defaultLocale +ManifestVersion: 1.10.0 diff --git a/manifests/t/tisun2/OofManager/1.0.10/tisun2.OofManager.yaml b/manifests/t/tisun2/OofManager/1.0.10/tisun2.OofManager.yaml new file mode 100644 index 000000000000..07d36f52353f --- /dev/null +++ b/manifests/t/tisun2/OofManager/1.0.10/tisun2.OofManager.yaml @@ -0,0 +1,7 @@ +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.10.0.schema.json + +PackageIdentifier: tisun2.OofManager +PackageVersion: 1.0.10 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.10.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.installer.yaml b/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.installer.yaml deleted file mode 100644 index ad4eaa413fcb..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.4.9 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: VidJuice UniTube_is1 -ReleaseDate: 2026-03-11 -Installers: -- Architecture: x64 - InstallerUrl: https://download.vidjuice.com/unitube.exe?v=7.4.9 - InstallerSha256: 774C80C96C66E435B35E80770D5DD25F2B78EA0E8D9FAB2627EAE84BB11479BE -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.locale.en-US.yaml b/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.locale.en-US.yaml deleted file mode 100644 index 6d0a80b83654..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.4.9 -PackageLocale: en-US -Publisher: Mobee Technology Co., Limited -PublisherUrl: https://www.vidjuice.com/ -PublisherSupportUrl: https://www.vidjuice.com/support/ -PrivacyUrl: https://www.vidjuice.com/privacy-policy/ -PackageName: VidJuice UniTube -PackageUrl: https://www.vidjuice.com/download/ -License: Proprietary -LicenseUrl: https://www.vidjuice.com/terms-of-service/ -Copyright: Copyright © 2026 VidJuice. All rights reserved. -CopyrightUrl: https://www.vidjuice.com/terms-of-service/ -ShortDescription: Download videos and audios from 10,000+ sites across all your devices -Tags: -- audio -- audio-downloader -- download -- downloader -- media -- media-downloader -- video -- video-downloader -ReleaseNotes: 1. Fixed some bugs. -ReleaseNotesUrl: https://www.vidjuice.com/tech-specs/unitube-update-history/ -PurchaseUrl: https://www.vidjuice.com/pricing/unitube-video-downloader/ -Documentations: -- DocumentLabel: User Guide - DocumentUrl: https://www.vidjuice.com/guide/how-to-download-online-videos-with-vidjuice-unitube/ -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.locale.zh-CN.yaml b/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.locale.zh-CN.yaml deleted file mode 100644 index a95e691caf4a..000000000000 --- a/manifests/v/VidJuice/UniTube/7.4.9/VidJuice.UniTube.locale.zh-CN.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.4.9 -PackageLocale: zh-CN -Publisher: Mobee Technology Co., Limited -PublisherUrl: https://zh-cn.vidjuice.com/ -PublisherSupportUrl: https://zh-cn.vidjuice.com/support/ -PrivacyUrl: https://zh-cn.vidjuice.com/privacy-policy/ -PackageName: VidJuice UniTube -PackageUrl: https://zh-cn.vidjuice.com/download/ -License: 专有软件 -LicenseUrl: https://zh-cn.vidjuice.com/terms-of-service/ -Copyright: Copyright © 2026 VidJuice. All rights reserved. -CopyrightUrl: https://zh-cn.vidjuice.com/terms-of-service/ -ShortDescription: 在所有设备上从 10,000+ 网站下载视频和音频 -Tags: -- 下载 -- 下载器 -- 媒体 -- 视频 -- 音乐 -- 音频 -ReleaseNotesUrl: https://zh-cn.vidjuice.com/tech-specs/unitube-update-history -PurchaseUrl: https://zh-cn.vidjuice.com/pricing/unitube-video-downloader/ -Documentations: -- DocumentLabel: 用户指南 - DocumentUrl: https://zh-cn.vidjuice.com/guide/how-to-download-online-videos-with-vidjuice-unitube/ -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.installer.yaml b/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.installer.yaml deleted file mode 100644 index 030e328b74ae..000000000000 --- a/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.5.0 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: VidJuice UniTube_is1 -ReleaseDate: 2026-03-16 -Installers: -- Architecture: x64 - InstallerUrl: https://download.vidjuice.com/unitube.exe?v=7.5.0 - InstallerSha256: E6EC242A6B8289ACC91BAA305EF960C3D0E639FC9519E61A72D7357D29F13DE3 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.locale.en-US.yaml b/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.locale.en-US.yaml deleted file mode 100644 index a08b699307b1..000000000000 --- a/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.5.0 -PackageLocale: en-US -Publisher: Mobee Technology Co., Limited -PublisherUrl: https://www.vidjuice.com/ -PublisherSupportUrl: https://www.vidjuice.com/support/ -PrivacyUrl: https://www.vidjuice.com/privacy-policy/ -PackageName: VidJuice UniTube -PackageUrl: https://www.vidjuice.com/download/ -License: Proprietary -LicenseUrl: https://www.vidjuice.com/terms-of-service/ -Copyright: Copyright © 2026 VidJuice. All rights reserved. -CopyrightUrl: https://www.vidjuice.com/terms-of-service/ -ShortDescription: Download videos and audios from 10,000+ sites across all your devices -Tags: -- audio -- audio-downloader -- download -- downloader -- media -- media-downloader -- video -- video-downloader -ReleaseNotes: 1. Fixed some bugs. -ReleaseNotesUrl: https://www.vidjuice.com/tech-specs/unitube-update-history/ -PurchaseUrl: https://www.vidjuice.com/pricing/unitube-video-downloader/ -Documentations: -- DocumentLabel: User Guide - DocumentUrl: https://www.vidjuice.com/guide/how-to-download-online-videos-with-vidjuice-unitube/ -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.locale.zh-CN.yaml b/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.locale.zh-CN.yaml deleted file mode 100644 index 5415f30dec91..000000000000 --- a/manifests/v/VidJuice/UniTube/7.5.0/VidJuice.UniTube.locale.zh-CN.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.5.0 -PackageLocale: zh-CN -Publisher: Mobee Technology Co., Limited -PublisherUrl: https://zh-cn.vidjuice.com/ -PublisherSupportUrl: https://zh-cn.vidjuice.com/support/ -PrivacyUrl: https://zh-cn.vidjuice.com/privacy-policy/ -PackageName: VidJuice UniTube -PackageUrl: https://zh-cn.vidjuice.com/download/ -License: 专有软件 -LicenseUrl: https://zh-cn.vidjuice.com/terms-of-service/ -Copyright: Copyright © 2026 VidJuice. All rights reserved. -CopyrightUrl: https://zh-cn.vidjuice.com/terms-of-service/ -ShortDescription: 在所有设备上从 10,000+ 网站下载视频和音频 -Tags: -- 下载 -- 下载器 -- 媒体 -- 视频 -- 音乐 -- 音频 -ReleaseNotesUrl: https://zh-cn.vidjuice.com/tech-specs/unitube-update-history -PurchaseUrl: https://zh-cn.vidjuice.com/pricing/unitube-video-downloader/ -Documentations: -- DocumentLabel: 用户指南 - DocumentUrl: https://zh-cn.vidjuice.com/guide/how-to-download-online-videos-with-vidjuice-unitube/ -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.installer.yaml b/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.installer.yaml deleted file mode 100644 index 7b6d9487219f..000000000000 --- a/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.installer.yaml +++ /dev/null @@ -1,16 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.5.1 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -ProductCode: VidJuice UniTube_is1 -ReleaseDate: 2026-03-21 -Installers: -- Architecture: x64 - InstallerUrl: https://download.vidjuice.com/unitube.exe?v=7.5.1 - InstallerSha256: 870991984D8378E2C040A0968A4EF07E46F4D38112B1BCE2DFAC7CD298E20750 -ManifestType: installer -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.locale.en-US.yaml b/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.locale.en-US.yaml deleted file mode 100644 index 58a2af3b5a8d..000000000000 --- a/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.locale.en-US.yaml +++ /dev/null @@ -1,34 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.5.1 -PackageLocale: en-US -Publisher: Mobee Technology Co., Limited -PublisherUrl: https://www.vidjuice.com/ -PublisherSupportUrl: https://www.vidjuice.com/support/ -PrivacyUrl: https://www.vidjuice.com/privacy-policy/ -PackageName: VidJuice UniTube -PackageUrl: https://www.vidjuice.com/download/ -License: Proprietary -LicenseUrl: https://www.vidjuice.com/terms-of-service/ -Copyright: Copyright © 2026 VidJuice. All rights reserved. -CopyrightUrl: https://www.vidjuice.com/terms-of-service/ -ShortDescription: Download videos and audios from 10,000+ sites across all your devices -Tags: -- audio -- audio-downloader -- download -- downloader -- media -- media-downloader -- video -- video-downloader -ReleaseNotes: 1. Fixed some bugs. -ReleaseNotesUrl: https://www.vidjuice.com/tech-specs/unitube-update-history/ -PurchaseUrl: https://www.vidjuice.com/pricing/unitube-video-downloader/ -Documentations: -- DocumentLabel: User Guide - DocumentUrl: https://www.vidjuice.com/guide/how-to-download-online-videos-with-vidjuice-unitube/ -ManifestType: defaultLocale -ManifestVersion: 1.12.0 diff --git a/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.locale.zh-CN.yaml b/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.locale.zh-CN.yaml deleted file mode 100644 index a318650cd65f..000000000000 --- a/manifests/v/VidJuice/UniTube/7.5.1/VidJuice.UniTube.locale.zh-CN.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json - -PackageIdentifier: VidJuice.UniTube -PackageVersion: 7.5.1 -PackageLocale: zh-CN -Publisher: Mobee Technology Co., Limited -PublisherUrl: https://zh-cn.vidjuice.com/ -PublisherSupportUrl: https://zh-cn.vidjuice.com/support/ -PrivacyUrl: https://zh-cn.vidjuice.com/privacy-policy/ -PackageName: VidJuice UniTube -PackageUrl: https://zh-cn.vidjuice.com/download/ -License: 专有软件 -LicenseUrl: https://zh-cn.vidjuice.com/terms-of-service/ -Copyright: Copyright © 2026 VidJuice. All rights reserved. -CopyrightUrl: https://zh-cn.vidjuice.com/terms-of-service/ -ShortDescription: 在所有设备上从 10,000+ 网站下载视频和音频 -Tags: -- 下载 -- 下载器 -- 媒体 -- 视频 -- 音乐 -- 音频 -ReleaseNotesUrl: https://zh-cn.vidjuice.com/tech-specs/unitube-update-history -PurchaseUrl: https://zh-cn.vidjuice.com/pricing/unitube-video-downloader/ -Documentations: -- DocumentLabel: 用户指南 - DocumentUrl: https://zh-cn.vidjuice.com/guide/how-to-download-online-videos-with-vidjuice-unitube/ -ManifestType: locale -ManifestVersion: 1.12.0 diff --git a/manifests/w/Wharflab/Tally/0.41.0/Wharflab.Tally.installer.yaml b/manifests/w/Wharflab/Tally/0.41.0/Wharflab.Tally.installer.yaml new file mode 100644 index 000000000000..328e6864654a --- /dev/null +++ b/manifests/w/Wharflab/Tally/0.41.0/Wharflab.Tally.installer.yaml @@ -0,0 +1,24 @@ +# Created by tally release automation +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.9.0.schema.json + +PackageIdentifier: Wharflab.Tally +PackageVersion: 0.41.0 +Commands: &1 +- tally +FileExtensions: +- dockerfile +- containerfile +ReleaseDate: '2026-05-06' +Installers: +- Architecture: x64 + InstallerType: portable + InstallerUrl: https://github.com/wharflab/tally/releases/download/v0.41.0/tally_0.41.0_Windows_x86_64.exe + InstallerSha256: 415963C66AFFD718F755703678E0DEBB726EE87480E5E9218521CBC1FA51AFE6 + Commands: *1 +- Architecture: arm64 + InstallerType: portable + InstallerUrl: https://github.com/wharflab/tally/releases/download/v0.41.0/tally_0.41.0_Windows_arm64.exe + InstallerSha256: 6A4BFF4D1F1803B57CC29DF744F39131B18EDDABFD8A57E71114FCB838C969CD + Commands: *1 +ManifestType: installer +ManifestVersion: 1.9.0 diff --git a/manifests/w/Wharflab/Tally/0.41.0/Wharflab.Tally.locale.en-US.yaml b/manifests/w/Wharflab/Tally/0.41.0/Wharflab.Tally.locale.en-US.yaml new file mode 100644 index 000000000000..e375295ecd7f --- /dev/null +++ b/manifests/w/Wharflab/Tally/0.41.0/Wharflab.Tally.locale.en-US.yaml @@ -0,0 +1,27 @@ +# Created by tally release automation +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.9.0.schema.json + +PackageIdentifier: Wharflab.Tally +PackageVersion: 0.41.0 +PackageLocale: en-US +Publisher: Wharflab +PublisherUrl: https://github.com/wharflab +PublisherSupportUrl: https://github.com/wharflab/tally/issues +PackageName: Tally +PackageUrl: https://github.com/wharflab/tally +ShortDescription: Dockerfile linter and formatter with first-class PowerShell and + Windows container support. +Moniker: tally +License: AGPL-3.0-only +LicenseUrl: https://github.com/wharflab/tally/blob/main/LICENSE +ReleaseNotesUrl: https://github.com/wharflab/tally/releases/tag/v0.41.0 +Documentations: +- DocumentLabel: Docs + DocumentUrl: https://tally.wharflab.com/ +Tags: +- docker +- dockerfile +- containerfile +- linter +ManifestType: defaultLocale +ManifestVersion: 1.9.0 diff --git a/manifests/w/Wharflab/Tally/0.41.0/Wharflab.Tally.yaml b/manifests/w/Wharflab/Tally/0.41.0/Wharflab.Tally.yaml new file mode 100644 index 000000000000..d096d5eca639 --- /dev/null +++ b/manifests/w/Wharflab/Tally/0.41.0/Wharflab.Tally.yaml @@ -0,0 +1,8 @@ +# Created by tally release automation +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.9.0.schema.json + +PackageIdentifier: Wharflab.Tally +PackageVersion: 0.41.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.9.0 diff --git a/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26125.1736/WinsiderSS.SystemInformer.Canary.installer.yaml b/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26125.1736/WinsiderSS.SystemInformer.Canary.installer.yaml new file mode 100644 index 000000000000..0f1fe2506aa5 --- /dev/null +++ b/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26125.1736/WinsiderSS.SystemInformer.Canary.installer.yaml @@ -0,0 +1,25 @@ +# Created using wingetcreate 1.12.8.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: WinsiderSS.SystemInformer.Canary +PackageVersion: 4.0.26125.1736 +InstallerType: exe +Scope: machine +InstallModes: +- silent +- silentWithProgress +- interactive +InstallerSwitches: + Silent: -install -silent + SilentWithProgress: -install -silent + Interactive: -install + Upgrade: -update -silent +ProductCode: SystemInformer-Canary +ElevationRequirement: elevatesSelf +Installers: +- Architecture: neutral + InstallerUrl: https://github.com/winsiderss/si-builds/releases/download/4.0.26125.1736/systeminformer-build-canary-setup.exe + InstallerSha256: 8FF88718EF9C0D7F0AF77E105753FB87217B84E8A466318C0E28DD59F23997A0 +ManifestType: installer +ManifestVersion: 1.12.0 +ReleaseDate: 2026-05-05 diff --git a/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26125.1736/WinsiderSS.SystemInformer.Canary.locale.en-US.yaml b/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26125.1736/WinsiderSS.SystemInformer.Canary.locale.en-US.yaml new file mode 100644 index 000000000000..e6444ad767a6 --- /dev/null +++ b/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26125.1736/WinsiderSS.SystemInformer.Canary.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: WinsiderSS.SystemInformer.Canary +PackageVersion: 4.0.26125.1736 +PackageLocale: en-US +Publisher: Winsider Seminars & Solutions, Inc. +PublisherUrl: https://windows-internals.com/ +PublisherSupportUrl: https://github.com/winsiderss/systeminformer/issues +PackageName: System Informer (Canary) +PackageUrl: https://system-informer.com/ +License: MIT License +LicenseUrl: https://github.com/winsiderss/systeminformer/blob/master/LICENSE.txt +Copyright: Copyright (c) Winsider Seminars & Solutions, Inc. All rights reserved. +CopyrightUrl: https://github.com/winsiderss/systeminformer/blob/master/COPYRIGHT.txt +ShortDescription: System Informer is a free, powerful, multi-purpose tool that helps you monitor system resources, debug software and detect malware. +Moniker: systeminformer-canary +Tags: +- windows +- debugger +- security +- benchmarking +- process-manager +- performance +- monitor +- monitoring +- realtime +- administrator +- process-monitor +- performance-tuning +- profiling +- monitor-performance +- performance-monitoring +- system-monitor +ReleaseNotesUrl: https://github.com/winsiderss/si-builds/releases/tag/4.0.26125.1736 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26125.1736/WinsiderSS.SystemInformer.Canary.yaml b/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26125.1736/WinsiderSS.SystemInformer.Canary.yaml new file mode 100644 index 000000000000..c67de064f9df --- /dev/null +++ b/manifests/w/WinsiderSS/SystemInformer/Canary/4.0.26125.1736/WinsiderSS.SystemInformer.Canary.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: WinsiderSS.SystemInformer.Canary +PackageVersion: 4.0.26125.1736 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.installer.yaml b/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.installer.yaml new file mode 100644 index 000000000000..a1d2b4567b25 --- /dev/null +++ b/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.installer.yaml @@ -0,0 +1,34 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: WireGuard.WireGuard +PackageVersion: "1.1" +InstallerType: wix +Scope: machine +InstallerSwitches: + Custom: DO_NOT_LAUNCH=1 +UpgradeBehavior: install +FileExtensions: +- conf +- zip +Installers: +- Architecture: x86 + InstallerUrl: https://download.wireguard.com/windows-client/wireguard-x86-1.1.msi + InstallerSha256: 71811698D544607E6BD94BBFFF14E936B186DA53B2934FF74D736DAA74105481 + ProductCode: '{B90DE94F-FC4B-4FEF-ACDF-BD2BA2A545FB}' + AppsAndFeaturesEntries: + - UpgradeCode: '{62754A0A-FEE9-4412-B739-E8DA2E7C9405}' +- Architecture: x64 + InstallerUrl: https://download.wireguard.com/windows-client/wireguard-amd64-1.1.msi + InstallerSha256: 6DAA5D37A9E2950DFB8C48B95AB8E562CB2BAD1C785D020F38F97BEA4C6A5566 + ProductCode: '{99A54A94-4BE0-4374-B3A6-F504E826DDF8}' + AppsAndFeaturesEntries: + - UpgradeCode: '{5E5A1DA5-BA36-404D-92EC-41050D1C799C}' +- Architecture: arm64 + InstallerUrl: https://download.wireguard.com/windows-client/wireguard-arm64-1.1.msi + InstallerSha256: A2A67FBB2DB199525C35CE79EA6DD9031B116BA46561F2B993FB858668440131 + ProductCode: '{C55D0D9D-310E-4767-8382-BC4BBBBE6FDB}' + AppsAndFeaturesEntries: + - UpgradeCode: '{7FF76099-8940-4D3E-99B9-50A3B3CA1EE9}' +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.locale.en-US.yaml b/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.locale.en-US.yaml new file mode 100644 index 000000000000..41f689c0cb06 --- /dev/null +++ b/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.locale.en-US.yaml @@ -0,0 +1,29 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: WireGuard.WireGuard +PackageVersion: "1.1" +PackageLocale: en-US +Publisher: WireGuard LLC +PublisherUrl: https://www.wireguard.com/ +PublisherSupportUrl: https://www.wireguard.com/#about-the-project +Author: WireGuard LLC +PackageName: WireGuard +PackageUrl: https://www.wireguard.com/install/ +License: MIT +LicenseUrl: https://git.zx2c4.com/wireguard-windows/tree/COPYING +Copyright: Copyright © 2015-2026 Jason A. Donenfeld. All Rights Reserved. +ShortDescription: Fast, Modern, Secure VPN Tunnel +Description: WireGuard® is an extremely simple yet fast and modern VPN that utilizes state-of-the-art cryptography. It aims to be faster, simpler, leaner, and more useful than IPsec, while avoiding the massive headache. It intends to be considerably more performant than OpenVPN. WireGuard is designed as a general purpose VPN for running on embedded interfaces and super computers alike, fit for many different circumstances. Initially released for the Linux kernel, it is now cross-platform (Windows, macOS, BSD, iOS, Android) and widely deployable. It is currently under heavy development, but already it might be regarded as the most secure, easiest to use, and simplest VPN solution in the industry. +Moniker: wireguard +Tags: +- network +- secure +- security +- tunnel +- vpn +Documentations: +- DocumentLabel: Quick Start + DocumentUrl: https://www.wireguard.com/quickstart/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.locale.zh-CN.yaml b/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.locale.zh-CN.yaml new file mode 100644 index 000000000000..c9f3b5d16249 --- /dev/null +++ b/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.locale.zh-CN.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: WireGuard.WireGuard +PackageVersion: "1.1" +PackageLocale: zh-CN +ShortDescription: 快速、现代、安全的 VPN 隧道 +Description: WireGuard® 是一款极其简单却快速现代的 VPN,采用尖端加密技术。它旨在比 IPsec 更快、更简洁、更轻量且更实用,同时规避了复杂性问题,性能也显著优于 OpenVPN。作为通用型 VPN,WireGuard 既能运行于嵌入式设备,也可部署于超级计算机,适应多种应用场景。最初为 Linux 内核开发,现已支持跨平台(Windows、macOS、BSD、iOS、Android)广泛部署。尽管仍在积极开发中,它已被业界视为当前最安全、最易用且最简洁的 VPN 解决方案。 +Tags: +- vpn +- 安全 +- 网络 +- 隧道 +Documentations: +- DocumentLabel: 快速入门 + DocumentUrl: https://www.wireguard.com/quickstart/ +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.yaml b/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.yaml new file mode 100644 index 000000000000..28af2b2ee534 --- /dev/null +++ b/manifests/w/WireGuard/WireGuard/1.1/WireGuard.WireGuard.yaml @@ -0,0 +1,8 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: WireGuard.WireGuard +PackageVersion: "1.1" +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/w/WorkdayInc/PlanningforExcel/2024.209.1006.116/WorkdayInc.PlanningforExcel.installer.yaml b/manifests/w/WorkdayInc/PlanningforExcel/2024.209.1006.116/WorkdayInc.PlanningforExcel.installer.yaml deleted file mode 100644 index f61d33511474..000000000000 --- a/manifests/w/WorkdayInc/PlanningforExcel/2024.209.1006.116/WorkdayInc.PlanningforExcel.installer.yaml +++ /dev/null @@ -1,15 +0,0 @@ -# Automatically updated by the winget bot at 2024/Sep/21 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.5.0.schema.json - -PackageIdentifier: WorkdayInc.PlanningforExcel -PackageVersion: 2024.209.1006.116 -Installers: -- Architecture: neutral - InstallerType: burn - InstallerUrl: https://clickonce.adaptiveinsights.com/planning/latest/WorkdayAdaptivePlanningExcelSetup.exe - InstallerSha256: EA021C9B725C083880F543E1A060E79950AD6E650F96E00175727CE321145F81 - InstallerSwitches: - Silent: /quiet - SilentWithProgress: /quiet -ManifestType: installer -ManifestVersion: 1.5.0 diff --git a/manifests/w/WorkdayInc/PlanningforExcel/2024.209.1006.116/WorkdayInc.PlanningforExcel.locale.en-US.yaml b/manifests/w/WorkdayInc/PlanningforExcel/2024.209.1006.116/WorkdayInc.PlanningforExcel.locale.en-US.yaml deleted file mode 100644 index 285959bdc1f0..000000000000 --- a/manifests/w/WorkdayInc/PlanningforExcel/2024.209.1006.116/WorkdayInc.PlanningforExcel.locale.en-US.yaml +++ /dev/null @@ -1,13 +0,0 @@ -# Automatically updated by the winget bot at 2024/Sep/21 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.5.0.schema.json - -PackageIdentifier: WorkdayInc.PlanningforExcel -PackageVersion: 2024.209.1006.116 -PackageLocale: en-US -Publisher: Workday, Inc. -PackageName: Planning for Excel -License: Proprietary -Copyright: Copyright (c) Workday, Inc.. All rights reserved. -ShortDescription: Enables companies of all sizes to collaboratively plan and model, easily access real-time analytics, and streamline complex reporting. -ManifestType: defaultLocale -ManifestVersion: 1.5.0 diff --git a/manifests/w/WorkdayInc/PlanningforExcel/2024.209.1006.116/WorkdayInc.PlanningforExcel.yaml b/manifests/w/WorkdayInc/PlanningforExcel/2024.209.1006.116/WorkdayInc.PlanningforExcel.yaml deleted file mode 100644 index 3304107ba1bc..000000000000 --- a/manifests/w/WorkdayInc/PlanningforExcel/2024.209.1006.116/WorkdayInc.PlanningforExcel.yaml +++ /dev/null @@ -1,8 +0,0 @@ -# Automatically updated by the winget bot at 2024/Sep/21 -# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.5.0.schema.json - -PackageIdentifier: WorkdayInc.PlanningforExcel -PackageVersion: 2024.209.1006.116 -DefaultLocale: en-US -ManifestType: version -ManifestVersion: 1.5.0 diff --git a/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.installer.yaml b/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.installer.yaml new file mode 100644 index 000000000000..1943dde17f81 --- /dev/null +++ b/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.installer.yaml @@ -0,0 +1,33 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: WorksMobile.NAVERWORKS +PackageVersion: 4.5.1.7 +InstallerLocale: ko-KR +Platform: +- Windows.Desktop +MinimumOSVersion: 10.0.0.0 +InstallerType: nullsoft +Scope: user +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +Installers: +- Architecture: x86 + InstallerUrl: https://download.worksmobile.com/k/wminst/r/naverworks/deploy_pcmsgapp_win32_exe + InstallerSha256: 032B9C9161398689D202FF573EC90FAB421F0E5652D618123D551E73DBC5B779 + AppsAndFeaturesEntries: + - DisplayName: WORKS + Publisher: Works Mobile Corp. + ProductCode: NaverWorks +- Architecture: x64 + InstallerUrl: https://download.worksmobile.com/k/wminst/r/naverworks/deploy_pcmsgapp_win64_exe + InstallerSha256: 032B9C9161398689D202FF573EC90FAB421F0E5652D618123D551E73DBC5B779 + AppsAndFeaturesEntries: + - DisplayName: WORKS + Publisher: Works Mobile Corp. + ProductCode: NaverWorks +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.locale.en-US.yaml b/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.locale.en-US.yaml new file mode 100644 index 000000000000..486e52634488 --- /dev/null +++ b/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.locale.en-US.yaml @@ -0,0 +1,22 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: WorksMobile.NAVERWORKS +PackageVersion: 4.5.1.7 +PackageLocale: en-US +Publisher: Works Mobile Corp. +PublisherUrl: https://naver.worksmobile.com +PublisherSupportUrl: https://guide.worksmobile.com/kr/ +PrivacyUrl: https://www.ncloud.com/policy/infou/infou +Author: Works Mobile Corp. +PackageName: WORKS +PackageUrl: https://naver.worksmobile.com +License: Proprietary +LicenseUrl: https://www.ncloud.com/policy/terms/works +Copyright: © Works Mobile Corp. +CopyrightUrl: https://www.ncloud.com/policy/terms/works +ShortDescription: NAVER WORKS is business communication tool developed by Naver Cloud Corp. (Naver Cloud Platform, NCP) and Works Mobile Corp. +Description: NAVER WORKS is business communication tool developed by Naver Cloud Corp. (Naver Cloud Platform, NCP) and Works Mobile Corp. +Moniker: naverworks +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.locale.ko-KR.yaml b/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.locale.ko-KR.yaml new file mode 100644 index 000000000000..ec1fcc3afb02 --- /dev/null +++ b/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.locale.ko-KR.yaml @@ -0,0 +1,21 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: WorksMobile.NAVERWORKS +PackageVersion: 4.5.1.7 +PackageLocale: ko-KR +Publisher: Works Mobile Corp. +PublisherUrl: https://naver.worksmobile.com +PublisherSupportUrl: https://guide.worksmobile.com/kr/ +PrivacyUrl: https://www.ncloud.com/policy/infou/infou +Author: Works Mobile Corp. +PackageName: NAVER WORKS +PackageUrl: https://naver.worksmobile.com +License: Proprietary +LicenseUrl: https://www.ncloud.com/policy/terms/works +Copyright: © Works Mobile Corp. +CopyrightUrl: https://www.ncloud.com/policy/terms/works +ShortDescription: 네이버 웍스는 네이버 클라우드 (Naver Cloud Platform, NCP)와 웍스 모바일이 개발 한 비즈니스 커뮤니케이션 도구입니다. +Description: 네이버 웍스는 네이버 클라우드 (Naver Cloud Platform, NCP)와 웍스 모바일이 개발 한 비즈니스 커뮤니케이션 도구입니다. +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.yaml b/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.yaml new file mode 100644 index 000000000000..5a935866d4bb --- /dev/null +++ b/manifests/w/WorksMobile/NAVERWORKS/4.5.1.7/WorksMobile.NAVERWORKS.yaml @@ -0,0 +1,8 @@ +# Automatically updated by the winget bot at 2026/May/07 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: WorksMobile.NAVERWORKS +PackageVersion: 4.5.1.7 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/w/wasmCloud/wash/2.1.0/wasmCloud.wash.installer.yaml b/manifests/w/wasmCloud/wash/2.1.0/wasmCloud.wash.installer.yaml new file mode 100644 index 000000000000..790475629990 --- /dev/null +++ b/manifests/w/wasmCloud/wash/2.1.0/wasmCloud.wash.installer.yaml @@ -0,0 +1,17 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: wasmCloud.wash +PackageVersion: 2.1.0 +InstallerType: zip +NestedInstallerType: portable +NestedInstallerFiles: +- RelativeFilePath: wash.exe + PortableCommandAlias: wash +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/wasmCloud/wasmCloud/releases/download/v2.1.0/wash-x86_64-pc-windows-msvc.zip + InstallerSha256: DA07FC3D17BA554584C54066F3F3633D066A445C4CF9C0980C3A6B15F45A09D4 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/w/wasmCloud/wash/2.1.0/wasmCloud.wash.locale.en-US.yaml b/manifests/w/wasmCloud/wash/2.1.0/wasmCloud.wash.locale.en-US.yaml new file mode 100644 index 000000000000..e658cfed4430 --- /dev/null +++ b/manifests/w/wasmCloud/wash/2.1.0/wasmCloud.wash.locale.en-US.yaml @@ -0,0 +1,85 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: wasmCloud.wash +PackageVersion: 2.1.0 +PackageLocale: en-US +Publisher: wasmCloud +PublisherUrl: https://wasmcloud.com/ +PublisherSupportUrl: https://github.com/wasmCloud/wasmCloud/issues +Author: The wasmCloud Authors +PackageName: wash +PackageUrl: https://wasmcloud.com/docs/wash/ +License: Apache-2.0 +LicenseUrl: https://github.com/wasmCloud/wasmCloud/blob/HEAD/LICENSE +Copyright: Copyright The wasmCloud Authors +ShortDescription: The wasmCloud Shell (wash) - a CLI for building, running, and managing WebAssembly components and wasmCloud applications. +Description: |- + wash is the wasmCloud Shell, a single CLI tool for working with WebAssembly components and wasmCloud. + - Build WebAssembly components from multiple languages with `wash build` + - Iterate quickly with a live dev loop using `wash dev` + - Run a local wasmCloud host and deploy applications + - Manage plugins and WIT interfaces +Moniker: wash +Tags: +- cli +- component +- rust +- wasi +- wasm +- wasmcloud +- webassembly +- wit +ReleaseNotes: |- + What's Changed + - fix(http): return typed RouteError with accurate HTTP status codes by @Aditya1404Sal in #5082 + - chore: rm passing wash prefix to brew by @dphilla in #5083 + - feat: Expand DevRouter and DynamicRouter Tests by @Aditya1404Sal in #5064 + - chore: upgrade async-nats to 0.47 by @ricochet in #5087 + - [bugfix] Add port name to hello-world by @jfleitz in #5090 + - Fix workload readiness for NATS subs by @ricochet in #5086 + - docs(templates): reorganize Rust templates and add HTTP handler set by @ericgregory in #5084 + - ci: re-enable dependabot for main and release-1.9.x by @officialasishkumar in #5035 + - chore(deps): bump the all-docker group across 2 directories with 1 update by @dependabot[bot] in #5091 + - chore: upgrade to go 1.26 by @ricochet in #5095 + - chore(deps): bump the all-github-actions group across 6 directories with 24 updates by @dependabot[bot] in #5093 + - chore(deps): bump the all-go group across 2 directories with 12 updates by @dependabot[bot] in #5092 + - fix(test): wait on the host by @ricochet in #5100 + - fix(operator): gate WorkloadDeployment Ready on replica availability by @ricochet in #5101 + - chore(security): bump wasmtime, drop rustls-pemfile, add cargo audit by @ricochet in #5102 + - ci: automated release train by @ricochet in #5098 + - ci: disable 1.9 dependabot by @ricochet in #5097 + - fix: remove canary-v2 now that canary exists by @ricochet in #5104 + - chore(deps): bump the all-go group across 1 directory with 3 updates by @dependabot[bot] in #5103 + - ci: fix sed for release-train by @ricochet in #5105 + - backout publishing wash-runtime by @ricochet in #5106 + - release: v2.0.6 by @automation-wasmcloud in #5107 + - harden release train CI by @ricochet in #5108 + - pass sha input for release-tag by @ricochet in #5109 + - chore(deps): bump the all-github-actions group across 2 directories with 1 update by @dependabot[bot] in #5112 + - chore(deps): bump go.wasmcloud.dev/runtime-operator/v2 from 2.0.5 to 2.0.6 in /runtime-gateway in the all-go group across 1 directory by @dependabot[bot] in #5111 + - ci: make package-manager publishing best-effort by @ricochet in #5110 + - fix(dev): friendly url by @ricochet in #5114 + - ci: OpenSSF Scorecard workflow by @ricochet in #5115 + - ci: fix scorecard publish and harden workflows by @ricochet in #5118 + - Revert "ci: fix scorecard publish and harden workflows" by @ricochet in #5119 + - ci: lint workflows and actions by @ricochet in #5120 + - ci(zizmor): grant write for security upload by @ricochet in #5123 + - release: v2.0.7 by @automation-wasmcloud in #5124 + - feat: support plugins in services by @MendyBerger in #5122 + - Add micro benchmarks for http invocation by @ricochet in #5063 + - docs(governance): MAINTAINERS.md with ci-maintainers by @ricochet in #5130 + - ci: hardening with zizmor by @ricochet in #5129 + - ci: docker images without the v by @ricochet in #5131 + - Add Host location and namespace deployment support by @jfleitz in #5128 + - ci: add codeql workflow by @ricochet in #5133 + - release: v2.1.0 by @automation-wasmcloud in #5134 + New Contributors + - @officialasishkumar made their first contribution in #5035 + - @MendyBerger made their first contribution in #5122 + Full Changelog: v2.0.5...v2.1.0 +ReleaseNotesUrl: https://github.com/wasmCloud/wasmCloud/releases/tag/v2.1.0 +Documentations: +- DocumentUrl: https://wasmcloud.com/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/w/wasmCloud/wash/2.1.0/wasmCloud.wash.yaml b/manifests/w/wasmCloud/wash/2.1.0/wasmCloud.wash.yaml new file mode 100644 index 000000000000..aa6121e81c32 --- /dev/null +++ b/manifests/w/wasmCloud/wash/2.1.0/wasmCloud.wash.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: wasmCloud.wash +PackageVersion: 2.1.0 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/x/xLightsSequencer/xLights/2026.08/xLightsSequencer.xLights.installer.yaml b/manifests/x/xLightsSequencer/xLights/2026.08/xLightsSequencer.xLights.installer.yaml new file mode 100644 index 000000000000..1536c113ccb3 --- /dev/null +++ b/manifests/x/xLightsSequencer/xLights/2026.08/xLightsSequencer.xLights.installer.yaml @@ -0,0 +1,29 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: xLightsSequencer.xLights +PackageVersion: '2026.08' +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +InstallerSwitches: + Silent: /sp- /verysilent /norestart + SilentWithProgress: /sp- /silent /norestart +UpgradeBehavior: install +ProductCode: xLights_is1 +ReleaseDate: 2026-05-08 +AppsAndFeaturesEntries: +- ProductCode: xLights_is1 +ElevationRequirement: elevatesSelf +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\xLights' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/xLightsSequencer/xLights/releases/download/2026.08/xLights64_2026_8.exe + InstallerSha256: 095E1BA3ABF9EBE7255BA73A3FA3D8C567B6154C690050962F8BE12180DE3BF8 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/x/xLightsSequencer/xLights/2026.08/xLightsSequencer.xLights.locale.en-US.yaml b/manifests/x/xLightsSequencer/xLights/2026.08/xLightsSequencer.xLights.locale.en-US.yaml new file mode 100644 index 000000000000..6961a675a238 --- /dev/null +++ b/manifests/x/xLightsSequencer/xLights/2026.08/xLightsSequencer.xLights.locale.en-US.yaml @@ -0,0 +1,52 @@ +# 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: xLightsSequencer.xLights +PackageVersion: '2026.08' +PackageLocale: en-US +Publisher: xLightsSequencer +PublisherUrl: https://github.com/xLightsSequencer/ +PublisherSupportUrl: https://github.com/xLightsSequencer/xLights/issues +PackageName: xLights +PackageUrl: https://github.com/xLightsSequencer/xLights +License: GPL-3.0 +LicenseUrl: https://github.com/xLightsSequencer/xLights/blob/HEAD/License.txt +ShortDescription: xLights is a free and open source program that enables you to design, create and play amazing lighting displays through the use of DMX controllers, E1.31 Ethernet controllers and more. +ReleaseNotes: |- + 2026.08 — May 7, 2026 + Enhancements + - dkulp — When a JobPool worker thread dies from an unhandled C++ exception, the log now records the exception type, what() message, and the in-flight job name instead of just "unknown exception". Helps diagnose render-thread crashes. + - agfazio — Add "Also add alias to model" checkbox to the Select Model dialog shown when renaming a missing submodel during sequence load. + - charlie — Right-click a timing track → "Search for Lyrics Online..." searches LRCLIB by song title/artist (auto-filled from sequence header) and imports the chosen result's synced .lrc lyrics as a phrase-per-line timing track. + - dkulp — macoS: Hook up Apple "Speech Recognizer" to Apple Intelligence to create timing tracks. Really only usable for very clean voice tracks and "Announcement" kind of things. + - dkulp — Liquid effect: velocity slider rescaled to allow full use of range instead of just values between 0 and 6 providing visual changes + - dkulp — Liquid effect: now frame-rate independent. Sequences imported between different frame rates render visually the same instead of emitting more particles per second at higher frame rates. Flow is now particles-per-second; Warm Up Frames renamed to Warm Up Time (hundredths of a second). Particle solver sub-stepping adapts to the frame rate. Existing sequences migrate automatically using each sequence's stored frame interval. + - dkulp — Liquid effect: Flow slider is now non-linear (linear 0-500 to 2000 particles/sec, exponential 500-1000 to 20000 particles/sec) with a sub-frame accumulator so low slider values emit occasionally instead of jumping straight from 0 to a constant stream. + - derwin12 — Add duration to lrclib lyric results + - derwin12 — Add option to add alias when opening a sequence and missing models were found + - derwin12 — Provide option to select which groups to import to when importing from layout + - dkulp — Liquid effect: added an Enabled checkbox for particle source 1 (defaults to on) + - dkulp — Linux: text rendering switched from wxGraphicsContext (Cairo+Pango) to a portable FreeType+HarfBuzz+Fontconfig backend in src-core/. Text and Shape effects can now render on background threads on Linux (previously forced to the main thread because the wx/Pango stack isn't off-thread safe), parallelizing rendering of sequences with heavy text/emoji content. + Bug Fixes + - dkulp — Fix House Preview / Model Preview floating panes coming up gray after a perspective load (would only render once manually docked and re-floated). The fix runs the same dock+refloat cycle automatically right after perspective load, preserving the saved float position. + - dkulp — Fix status bar stuck showing "Batch Rendering ... ## sequences left to render" after cancelling a batch render or batch check-sequence with Escape. + - MrPierreB — Fix house-preview video export producing dark/washed-out colors on Windows and when uploaded to YouTube. Also fixes Windows GPU encoder selection to prefer the correct hardware encoder (NVIDIA, AMD, or Intel) for faster exports. + - agfazio — Fix channel numbers not recalculating after deleting a model from the layout. + - dkulp — macOS: fix Metal compute-render buffer leak. MetalComputeUtilities was double-retaining MTLBuffer/MTLTexture objects allocated via newBufferWith*/newTextureWithDescriptor: but releasing only once, leaking a reference per render-buffer resize. + - dkulp — Fix scrambled rendering of interlaced animated GIFs (Pictures effect, etc.). + - dkulp — macOS: process the unselect-effect / choicebook-page-change events synchronously before starting an effect-button drag, instead of posting them async. Posted events were firing inside DoDragDrop's nested event loop, racing with AppKit's NSCoreDragManager and producing a null deref inside NSCoreDragProcessSourceDrag. Suspected cause of the AppKit drag crash. + - dkulp — Fix EXC_BAD_ACCESS in MetalRenderBufferComputeData::bufferResized when a model has nodes with zero coordinates. Empty-coord nodes now use the same -1 sentinel as out-of-bounds single-coord nodes instead of dereferencing past end of vector. + - derwin12 — Validate values for fadein/fadeout and add check for bad values in Check Sequence (#6297) + - derwin12 — Fix Dimensions showing incorrectly in 2D vs 3D (#6294) + - derwin12 — Some WMA music files were hard crashing. (#6306) + - derwin12 — Restored the missing assets alert (#6276) + - derwin12 — Fix in the lua script for batch rendering + - derwin12 — Imported sequences placed media in inocrrect folder if sequence was not previously saved + - derwin12 — Fix download model search (#6252) + - dkulp — Circles effect: GPU (Metal) path was clearing non-circle pixels to (0,0,0,0), wiping the buffer's pre-existing contents. Now leaves background pixels untouched, matching the CPU and ISPC paths. + Changes + - dkulp — Windows shader effect: GL work now runs on a dedicated worker thread inside GLContextManager instead of being dispatched to the wx UI thread. + - dkulp — Render engine cleanup: removed the main-thread effect render queue and all the wx CallAfter / drain plumbing that supported it. No effect now needs main-thread dispatch. +ReleaseNotesUrl: https://github.com/xLightsSequencer/xLights/releases/tag/2026.08 +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/x/xLightsSequencer/xLights/2026.08/xLightsSequencer.xLights.yaml b/manifests/x/xLightsSequencer/xLights/2026.08/xLightsSequencer.xLights.yaml new file mode 100644 index 000000000000..755f3537e899 --- /dev/null +++ b/manifests/x/xLightsSequencer/xLights/2026.08/xLightsSequencer.xLights.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: xLightsSequencer.xLights +PackageVersion: '2026.08' +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/y/Yandex/Music/5.101.2/Yandex.Music.installer.yaml b/manifests/y/Yandex/Music/5.101.2/Yandex.Music.installer.yaml new file mode 100644 index 000000000000..b42d66f3376d --- /dev/null +++ b/manifests/y/Yandex/Music/5.101.2/Yandex.Music.installer.yaml @@ -0,0 +1,18 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Yandex.Music +PackageVersion: 5.101.2 +InstallerType: nullsoft +Scope: user +InstallerSwitches: + Upgrade: --updated +UpgradeBehavior: install +ProductCode: 49494f9d-1887-5500-9c55-ef4cf0614971 +ReleaseDate: 2026-05-07 +Installers: +- Architecture: x64 + InstallerUrl: https://music-desktop-application.s3.yandex.net/stable/Yandex_Music_x64_5.101.2.exe + InstallerSha256: 9FC7364DF492A6BAA209CD6272C6F23612ADDEB8E25A0025A54AAC2392227F8E +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/y/Yandex/Music/5.101.2/Yandex.Music.locale.en-US.yaml b/manifests/y/Yandex/Music/5.101.2/Yandex.Music.locale.en-US.yaml new file mode 100644 index 000000000000..81beb8a0140d --- /dev/null +++ b/manifests/y/Yandex/Music/5.101.2/Yandex.Music.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: Yandex.Music +PackageVersion: 5.101.2 +PackageLocale: en-US +Publisher: Яндекс Музыка +PublisherUrl: https://yandex.com/ +PublisherSupportUrl: https://yandex.com/support/ +PrivacyUrl: https://yandex.com/legal/confidential/en/ +Author: YANDEX LLC +PackageName: Яндекс Музыка +PackageUrl: https://music.yandex.com/ +License: Proprietary +LicenseUrl: https://yandex.com/legal/ +Copyright: Copyright © 2026 Яндекс Музыка +ShortDescription: Yandex Music is a service for finding and listening to music and podcasts that provides personalized recommendations for each user. +Tags: +- album +- artist +- audio +- episode +- music +- playlist +- podcast +- radio +- song +- sound +- streaming +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/y/Yandex/Music/5.101.2/Yandex.Music.locale.zh-CN.yaml b/manifests/y/Yandex/Music/5.101.2/Yandex.Music.locale.zh-CN.yaml new file mode 100644 index 000000000000..477681ea9ff8 --- /dev/null +++ b/manifests/y/Yandex/Music/5.101.2/Yandex.Music.locale.zh-CN.yaml @@ -0,0 +1,22 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Yandex.Music +PackageVersion: 5.101.2 +PackageLocale: zh-CN +License: 专有软件 +ShortDescription: Yandex Music 是一项寻找和收听音乐和播客的服务,可为每位用户提供个性化推荐。 +Tags: +- 专辑 +- 广播 +- 播客 +- 歌单 +- 歌手 +- 歌曲 +- 流媒体 +- 艺人 +- 节目 +- 音乐 +- 音频 +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/y/Yandex/Music/5.101.2/Yandex.Music.yaml b/manifests/y/Yandex/Music/5.101.2/Yandex.Music.yaml new file mode 100644 index 000000000000..de605e3f2942 --- /dev/null +++ b/manifests/y/Yandex/Music/5.101.2/Yandex.Music.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: Yandex.Music +PackageVersion: 5.101.2 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/z/ZedIndustries/Zed/Preview/1.2.1-pre/ZedIndustries.Zed.Preview.installer.yaml b/manifests/z/ZedIndustries/Zed/Preview/1.2.1-pre/ZedIndustries.Zed.Preview.installer.yaml new file mode 100644 index 000000000000..954a4c7235c7 --- /dev/null +++ b/manifests/z/ZedIndustries/Zed/Preview/1.2.1-pre/ZedIndustries.Zed.Preview.installer.yaml @@ -0,0 +1,29 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: ZedIndustries.Zed.Preview +PackageVersion: 1.2.1-pre +InstallerLocale: en-US +InstallerType: inno +Scope: machine +InstallModes: +- interactive +- silent +- silentWithProgress +UpgradeBehavior: install +ProductCode: '{F70E4811-D0E2-4D88-AC99-D63752799F95}_is1' +ReleaseDate: 2026-05-06 +AppsAndFeaturesEntries: +- DisplayVersion: 1.2.1 + ProductCode: '{F70E4811-D0E2-4D88-AC99-D63752799F95}_is1' +InstallationMetadata: + DefaultInstallLocation: '%ProgramFiles%\Zed Preview' +Installers: +- Architecture: x64 + InstallerUrl: https://github.com/zed-industries/zed/releases/download/v1.2.1-pre/Zed-x86_64.exe + InstallerSha256: 73876D56DE59B3BEA946FA34A67F5BE27377E464E8917D4B01F599C0CE62F7F2 +- Architecture: arm64 + InstallerUrl: https://github.com/zed-industries/zed/releases/download/v1.2.1-pre/Zed-aarch64.exe + InstallerSha256: 3ABDF279CF6F729FD5C52D913295DF6EF042254F0CAA90F3282CFFC2136BFA0D +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/z/ZedIndustries/Zed/Preview/1.2.1-pre/ZedIndustries.Zed.Preview.locale.en-US.yaml b/manifests/z/ZedIndustries/Zed/Preview/1.2.1-pre/ZedIndustries.Zed.Preview.locale.en-US.yaml new file mode 100644 index 000000000000..a8fad62c1dc4 --- /dev/null +++ b/manifests/z/ZedIndustries/Zed/Preview/1.2.1-pre/ZedIndustries.Zed.Preview.locale.en-US.yaml @@ -0,0 +1,44 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json + +PackageIdentifier: ZedIndustries.Zed.Preview +PackageVersion: 1.2.1-pre +PackageLocale: en-US +Publisher: Zed Industries +PublisherUrl: https://zed.dev/ +PublisherSupportUrl: https://zed.dev/support +PrivacyUrl: https://zed.dev/privacy-policy +Author: The Zed Industries Authors +PackageName: Zed Preview +PackageUrl: https://zed.dev/windows +License: GPL-3.0 +LicenseUrl: https://github.com/zed-industries/zed/blob/main/LICENSE-GPL +Copyright: Copyright 2022 - 2025 Zed Industries, Inc. +ShortDescription: High-performance, multiplayer code editor from the creators of Atom and Tree-sitter. +Description: |- + Zed is a next-generation code editor designed for high-performance collaboration with humans and AI. + + - Written from scratch in Rust to efficiently leverage multiple CPU cores and your GPU. + - Integrate upcoming LLMs into your workflow to generate, transform, and analyze code. + - Chat with teammates, write notes together, and share your screen and project. All included. + - Zed now speaks WSL. You can open a Linux distro as a first-class “remote” target, edit projects that live inside it. + - All of Zed’s AI features, including edit predictions and ACP-powered agents, are fully supported on Windows. + - All Zed extensions now work seamlessly on Windows; no special steps, no caveats. + - To run on almost all Windows versions, including VMs, we created a new rendering backend based on DirectX 11. +Tags: +- code-editor +- developer-tools +- editor +- text-editor +ReleaseNotes: |- + - Fixed ACP agents failing to launch on Windows with "The system cannot find the file specified" (#55946) + - Fixed inotify event queue overflows on Linux (#55941) +ReleaseNotesUrl: https://github.com/zed-industries/zed/releases/tag/v1.2.1-pre +PurchaseUrl: https://zed.dev/pricing +Documentations: +- DocumentLabel: Community Links + DocumentUrl: https://zed.dev/community-links +- DocumentLabel: Getting Started + DocumentUrl: https://zed.dev/docs/ +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/z/ZedIndustries/Zed/Preview/1.2.1-pre/ZedIndustries.Zed.Preview.yaml b/manifests/z/ZedIndustries/Zed/Preview/1.2.1-pre/ZedIndustries.Zed.Preview.yaml new file mode 100644 index 000000000000..01669f7e0c12 --- /dev/null +++ b/manifests/z/ZedIndustries/Zed/Preview/1.2.1-pre/ZedIndustries.Zed.Preview.yaml @@ -0,0 +1,8 @@ +# Created with WinGet Releaser using komac v2.16.0 +# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json + +PackageIdentifier: ZedIndustries.Zed.Preview +PackageVersion: 1.2.1-pre +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/z/ZhaoKeli/FastGestures/2.2.71/ZhaoKeli.FastGestures.installer.yaml b/manifests/z/ZhaoKeli/FastGestures/2.2.71/ZhaoKeli.FastGestures.installer.yaml index ed1f04a29131..f900033647df 100644 --- a/manifests/z/ZhaoKeli/FastGestures/2.2.71/ZhaoKeli.FastGestures.installer.yaml +++ b/manifests/z/ZhaoKeli/FastGestures/2.2.71/ZhaoKeli.FastGestures.installer.yaml @@ -1,21 +1,21 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json - -PackageIdentifier: ZhaoKeli.FastGestures -PackageVersion: 2.2.71 -InstallerType: inno -Scope: machine -UpgradeBehavior: install -Protocols: -- fg -ProductCode: '{44140521-A4AA-4325-96AF-17D0876D1F9A}_is1' -ReleaseDate: 2026-04-22 -Installers: -- Architecture: x86 - InstallerUrl: https://github.com/zhaokeli/FastGestures/releases/download/2.2.71/FastGestures-Setup-v2.2.71_x86.exe - InstallerSha256: B171C772850AF488F7A3580D31051B778AC00F3FEF129FFEC5A6667EB075A6B0 -- Architecture: x64 - InstallerUrl: https://github.com/zhaokeli/FastGestures/releases/download/2.2.71/FastGestures-Setup-v2.2.71_x64.exe - InstallerSha256: 8D150914C41E5A861F08A726C037AB6097D8BF79B5B0AD480BDD654C24E290D0 -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: ZhaoKeli.FastGestures +PackageVersion: 2.2.71 +InstallerType: inno +Scope: machine +UpgradeBehavior: install +Protocols: +- fg +ProductCode: '{44140521-A4AA-4325-96AF-17D0876D1F9A}_is1' +ReleaseDate: 2026-04-22 +Installers: +- Architecture: x86 + InstallerUrl: https://github.com/zhaokeli/FastGestures/releases/download/2.2.71/FastGestures-Setup-v2.2.71_x86.exe + InstallerSha256: 89ECB9CED93521892599EB1FD3DB11806EA1B0218D89CEA6018499D6D13B4C88 +- Architecture: x64 + InstallerUrl: https://github.com/zhaokeli/FastGestures/releases/download/2.2.71/FastGestures-Setup-v2.2.71_x64.exe + InstallerSha256: 7EAC9532245BEF647E65BE3E2F0FB15DE8CB615C86F3CE54CF3BFF3F8E9BBA78 +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/z/ZhaoKeli/FastGestures/2.2.71/ZhaoKeli.FastGestures.locale.en-US.yaml b/manifests/z/ZhaoKeli/FastGestures/2.2.71/ZhaoKeli.FastGestures.locale.en-US.yaml index ccd58f9038bd..df541c0fe91f 100644 --- a/manifests/z/ZhaoKeli/FastGestures/2.2.71/ZhaoKeli.FastGestures.locale.en-US.yaml +++ b/manifests/z/ZhaoKeli/FastGestures/2.2.71/ZhaoKeli.FastGestures.locale.en-US.yaml @@ -1,32 +1,32 @@ -# Created with YamlCreate.ps1 Dumplings Mod -# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json - -PackageIdentifier: ZhaoKeli.FastGestures -PackageVersion: 2.2.71 -PackageLocale: en-US -Publisher: 赵克立 -PublisherUrl: https://www.zhaokeli.com/ -PublisherSupportUrl: https://github.com/zhaokeli/FastGestures/issues -Author: Zhao Keli -PackageName: 鼠标/触控板全局手势 -PackageUrl: https://fg.zhaokeli.com/ -License: Proprietary -Copyright: Copyright (C) 2026 -ShortDescription: Mouse/Touchpad/Touchscreen Gestures -Tags: -- cursor -- gesture -- mouse -- productivity -- screen -- tool -- touchpad -- touchscreen -- trackpad -- utility -ReleaseNotesUrl: https://github.com/zhaokeli/FastGestures/releases/tag/2.2.71 -Documentations: -- DocumentLabel: Documentation - DocumentUrl: https://fg.zhaokeli.com/doc -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: ZhaoKeli.FastGestures +PackageVersion: 2.2.71 +PackageLocale: en-US +Publisher: 赵克立 +PublisherUrl: https://www.zhaokeli.com/ +PublisherSupportUrl: https://github.com/zhaokeli/FastGestures/issues +Author: Zhao Keli +PackageName: 鼠标/触控板全局手势 +PackageUrl: https://fg.zhaokeli.com/ +License: Proprietary +Copyright: Copyright (C) 2026 +ShortDescription: Mouse/Touchpad/Touchscreen Gestures +Tags: +- cursor +- gesture +- mouse +- productivity +- screen +- tool +- touchpad +- touchscreen +- trackpad +- utility +ReleaseNotesUrl: https://github.com/zhaokeli/FastGestures/releases/tag/2.2.71 +Documentations: +- DocumentLabel: Documentation + DocumentUrl: https://fg.zhaokeli.com/doc +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/z/ZhaoKeli/FastGestures/2.2.71/ZhaoKeli.FastGestures.locale.zh-CN.yaml b/manifests/z/ZhaoKeli/FastGestures/2.2.71/ZhaoKeli.FastGestures.locale.zh-CN.yaml index dbb95b734494..17ef6a30e106 100644 --- a/manifests/z/ZhaoKeli/FastGestures/2.2.71/ZhaoKeli.FastGestures.locale.zh-CN.yaml +++ b/manifests/z/ZhaoKeli/FastGestures/2.2.71/ZhaoKeli.FastGestures.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: ZhaoKeli.FastGestures -PackageVersion: 2.2.71 -PackageLocale: zh-CN -Publisher: 赵克立 -PublisherUrl: https://www.zhaokeli.com/ -PublisherSupportUrl: https://github.com/zhaokeli/FastGestures/issues -Author: 赵克立 -PackageName: 鼠标/触控板全局手势 -PackageUrl: https://fg.zhaokeli.com/ -License: 专有软件 -Copyright: Copyright (C) 2026 -ShortDescription: 鼠标/触控板/屏手势 -Tags: -- 工具 -- 手势 -- 指针 -- 效率 -- 生产力 -- 触控板 -- 触摸屏 -- 鼠标 -ReleaseNotes: |- - 修复 - - 修复虚拟触控屏检测 - - 其它已知反馈问题 -ReleaseNotesUrl: https://github.com/zhaokeli/FastGestures/releases/tag/2.2.71 -Documentations: -- DocumentLabel: 文档 - DocumentUrl: https://fg.zhaokeli.com/doc -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: ZhaoKeli.FastGestures +PackageVersion: 2.2.71 +PackageLocale: zh-CN +Publisher: 赵克立 +PublisherUrl: https://www.zhaokeli.com/ +PublisherSupportUrl: https://github.com/zhaokeli/FastGestures/issues +Author: 赵克立 +PackageName: 鼠标/触控板全局手势 +PackageUrl: https://fg.zhaokeli.com/ +License: 专有软件 +Copyright: Copyright (C) 2026 +ShortDescription: 鼠标/触控板/屏手势 +Tags: +- 工具 +- 手势 +- 指针 +- 效率 +- 生产力 +- 触控板 +- 触摸屏 +- 鼠标 +ReleaseNotes: |- + 修复 + - 修复虚拟触控屏检测 + - 其它已知反馈问题 +ReleaseNotesUrl: https://github.com/zhaokeli/FastGestures/releases/tag/2.2.71 +Documentations: +- DocumentLabel: 文档 + DocumentUrl: https://fg.zhaokeli.com/doc +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/z/ZhaoKeli/FastGestures/2.2.71/ZhaoKeli.FastGestures.yaml b/manifests/z/ZhaoKeli/FastGestures/2.2.71/ZhaoKeli.FastGestures.yaml index 3acb5d322bf5..f8bbd5818270 100644 --- a/manifests/z/ZhaoKeli/FastGestures/2.2.71/ZhaoKeli.FastGestures.yaml +++ b/manifests/z/ZhaoKeli/FastGestures/2.2.71/ZhaoKeli.FastGestures.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: ZhaoKeli.FastGestures -PackageVersion: 2.2.71 -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: ZhaoKeli.FastGestures +PackageVersion: 2.2.71 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0 diff --git a/manifests/z/Zoho/Ulaa/148.0.7778.120/Zoho.Ulaa.installer.yaml b/manifests/z/Zoho/Ulaa/148.0.7778.120/Zoho.Ulaa.installer.yaml new file mode 100644 index 000000000000..a717f48bd7b5 --- /dev/null +++ b/manifests/z/Zoho/Ulaa/148.0.7778.120/Zoho.Ulaa.installer.yaml @@ -0,0 +1,51 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json + +PackageIdentifier: Zoho.Ulaa +PackageVersion: 148.0.7778.120 +InstallerType: exe +InstallModes: +- silent +InstallerSwitches: + Log: --verbose-logging --log-file="" +ExpectedReturnCodes: +- InstallerReturnCode: 3 + ReturnResponse: alreadyInstalled +- InstallerReturnCode: 4 + ReturnResponse: downgrade +- InstallerReturnCode: 22 + ReturnResponse: cancelledByUser +- InstallerReturnCode: 60 + ReturnResponse: installInProgress +UpgradeBehavior: install +Protocols: +- http +- https +- mailto +- tel +FileExtensions: +- htm +- html +- pdf +- shtml +- svg +- webp +- xht +- xhtml +ProductCode: Zoho Ulaa +ReleaseDate: 2026-05-06 +Installers: +- Architecture: x64 + Scope: user + InstallerUrl: https://ulaa.zoho.com/release/win/Ulaa-Browser-v2.43.0.exe + InstallerSha256: 0893DEF91AEB3D81047BD8572E4C6A747FFBB3E6B6A854C07DFC7BEADFB6911C + InstallerSwitches: + Custom: --do-not-launch-chrome +- Architecture: x64 + Scope: machine + InstallerUrl: https://ulaa.zoho.com/release/win/Ulaa-Browser-v2.43.0.exe + InstallerSha256: 0893DEF91AEB3D81047BD8572E4C6A747FFBB3E6B6A854C07DFC7BEADFB6911C + InstallerSwitches: + Custom: --do-not-launch-chrome --system-level +ManifestType: installer +ManifestVersion: 1.12.0 diff --git a/manifests/z/Zoho/Ulaa/148.0.7778.120/Zoho.Ulaa.locale.en-US.yaml b/manifests/z/Zoho/Ulaa/148.0.7778.120/Zoho.Ulaa.locale.en-US.yaml new file mode 100644 index 000000000000..e376728b1267 --- /dev/null +++ b/manifests/z/Zoho/Ulaa/148.0.7778.120/Zoho.Ulaa.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: Zoho.Ulaa +PackageVersion: 148.0.7778.120 +PackageLocale: en-US +Publisher: Ulaa +PublisherUrl: https://www.zoho.com/ +PublisherSupportUrl: https://ulaa.com/feedback +PrivacyUrl: https://www.zoho.com/privacy.html +Author: Zoho Corporation +PackageName: Ulaa +PackageUrl: https://ulaa.com/ +License: Proprietary +LicenseUrl: https://ulaa.com/eula.html +Copyright: Copyright 2026 Zoho Corp. All rights reserved. +CopyrightUrl: https://ulaa.com/eula.html +ShortDescription: A browser that respects your privacy, protects your personal data, and is designed to upgrade the way you work online. +Tags: +- browser +- chromium +- internet +- manifestv3 +- mv3 +- web +- webpage +Documentations: +- DocumentLabel: Help + DocumentUrl: https://ulaabrowser.zohodesk.com/portal/home +ManifestType: defaultLocale +ManifestVersion: 1.12.0 diff --git a/manifests/z/Zoho/Ulaa/148.0.7778.120/Zoho.Ulaa.locale.zh-CN.yaml b/manifests/z/Zoho/Ulaa/148.0.7778.120/Zoho.Ulaa.locale.zh-CN.yaml new file mode 100644 index 000000000000..7871ffbbec60 --- /dev/null +++ b/manifests/z/Zoho/Ulaa/148.0.7778.120/Zoho.Ulaa.locale.zh-CN.yaml @@ -0,0 +1,19 @@ +# Created with YamlCreate.ps1 Dumplings Mod +# yaml-language-server: $schema=https://aka.ms/winget-manifest.locale.1.12.0.schema.json + +PackageIdentifier: Zoho.Ulaa +PackageVersion: 148.0.7778.120 +PackageLocale: zh-CN +License: 专有软件 +Copyright: 版权所有 2026 Zoho Corp. 保留所有权利。 +ShortDescription: 一款尊重隐私、保护个人数据的浏览器,旨在提升您的在线工作方式。 +Tags: +- chromium +- 互联网 +- 浏览器 +- 网页 +Documentations: +- DocumentLabel: 帮助 + DocumentUrl: https://ulaabrowser.zohodesk.com/portal/home +ManifestType: locale +ManifestVersion: 1.12.0 diff --git a/manifests/z/Zoho/Ulaa/148.0.7778.120/Zoho.Ulaa.yaml b/manifests/z/Zoho/Ulaa/148.0.7778.120/Zoho.Ulaa.yaml new file mode 100644 index 000000000000..0a5b3c0abf55 --- /dev/null +++ b/manifests/z/Zoho/Ulaa/148.0.7778.120/Zoho.Ulaa.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: Zoho.Ulaa +PackageVersion: 148.0.7778.120 +DefaultLocale: en-US +ManifestType: version +ManifestVersion: 1.12.0